Skip to content

Commit

Permalink
release: v1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
edmundhung committed Apr 28, 2024
1 parent dfc8f73 commit be32a14
Show file tree
Hide file tree
Showing 13 changed files with 33 additions and 33 deletions.
2 changes: 1 addition & 1 deletion README
Expand Up @@ -8,7 +8,7 @@
╚══════╝ ╚═════╝ ╚═╝ ╚══╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝


Version 1.1.2 / License MIT / Copyright (c) 2024 Edmund Hung
Version 1.1.3 / License MIT / Copyright (c) 2024 Edmund Hung

A type-safe form validation library utilizing web fundamentals to progressively enhance HTML Forms with full support for server frameworks like Remix and Next.js.

Expand Down
2 changes: 1 addition & 1 deletion examples/chakra-ui/package.json
Expand Up @@ -3,7 +3,7 @@
"private": true,
"dependencies": {
"@chakra-ui/react": "^2.4.2",
"@conform-to/react": "1.1.2",
"@conform-to/react": "1.1.3",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"framer-motion": "^7.6.19",
Expand Down
2 changes: 1 addition & 1 deletion examples/headless-ui/package.json
Expand Up @@ -2,7 +2,7 @@
"name": "@conform-example/headless-ui",
"private": true,
"dependencies": {
"@conform-to/react": "1.1.2",
"@conform-to/react": "1.1.3",
"@headlessui/react": "^1.7.13",
"@heroicons/react": "^2.0.18",
"react": "^18.2.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/material-ui/package.json
Expand Up @@ -2,7 +2,7 @@
"name": "@conform-example/material-ui",
"private": true,
"dependencies": {
"@conform-to/react": "1.1.2",
"@conform-to/react": "1.1.3",
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@mui/material": "^5.10.2",
Expand Down
4 changes: 2 additions & 2 deletions examples/nextjs/package.json
Expand Up @@ -9,8 +9,8 @@
"lint": "next lint"
},
"dependencies": {
"@conform-to/react": "1.1.2",
"@conform-to/zod": "1.1.2",
"@conform-to/react": "1.1.3",
"@conform-to/zod": "1.1.3",
"next": "14.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
Expand Down
4 changes: 2 additions & 2 deletions examples/radix-ui/package.json
Expand Up @@ -10,8 +10,8 @@
"preview": "vite preview"
},
"dependencies": {
"@conform-to/react": "^1.1.2",
"@conform-to/zod": "^1.1.2",
"@conform-to/react": "^1.1.3",
"@conform-to/zod": "^1.1.3",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-radio-group": "^1.1.3",
Expand Down
4 changes: 2 additions & 2 deletions examples/react-router/package.json
Expand Up @@ -7,8 +7,8 @@
"serve": "vite preview"
},
"dependencies": {
"@conform-to/react": "1.1.2",
"@conform-to/zod": "1.1.2",
"@conform-to/react": "1.1.3",
"@conform-to/zod": "1.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.15.0",
Expand Down
4 changes: 2 additions & 2 deletions examples/remix/package.json
Expand Up @@ -9,8 +9,8 @@
"start": "remix-serve build"
},
"dependencies": {
"@conform-to/react": "1.1.2",
"@conform-to/zod": "1.1.2",
"@conform-to/react": "1.1.3",
"@conform-to/zod": "1.1.3",
"@remix-run/node": "^1.19.3",
"@remix-run/react": "^1.19.3",
"@remix-run/serve": "^1.19.3",
Expand Down
2 changes: 1 addition & 1 deletion packages/conform-dom/package.json
Expand Up @@ -3,7 +3,7 @@
"description": "A set of opinionated helpers built on top of the Constraint Validation API",
"homepage": "https://conform.guide",
"license": "MIT",
"version": "1.1.2",
"version": "1.1.3",
"main": "index.js",
"module": "index.mjs",
"types": "index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions packages/conform-react/package.json
Expand Up @@ -3,7 +3,7 @@
"description": "Conform view adapter for react",
"homepage": "https://conform.guide",
"license": "MIT",
"version": "1.1.2",
"version": "1.1.3",
"main": "index.js",
"module": "index.mjs",
"types": "index.d.ts",
Expand Down Expand Up @@ -39,7 +39,7 @@
"url": "https://github.com/edmundhung/conform/issues"
},
"dependencies": {
"@conform-to/dom": "1.1.2"
"@conform-to/dom": "1.1.3"
},
"devDependencies": {
"@babel/core": "^7.17.8",
Expand Down
4 changes: 2 additions & 2 deletions packages/conform-yup/package.json
Expand Up @@ -3,7 +3,7 @@
"description": "Conform helpers for integrating with yup",
"homepage": "https://conform.guide",
"license": "MIT",
"version": "1.1.2",
"version": "1.1.3",
"main": "index.js",
"module": "index.mjs",
"types": "index.d.ts",
Expand Down Expand Up @@ -34,7 +34,7 @@
"url": "https://github.com/edmundhung/conform/issues"
},
"peerDependencies": {
"@conform-to/dom": "1.1.2",
"@conform-to/dom": "1.1.3",
"yup": ">=0.32.0"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/conform-zod/package.json
Expand Up @@ -3,7 +3,7 @@
"description": "Conform helpers for integrating with Zod",
"homepage": "https://conform.guide",
"license": "MIT",
"version": "1.1.2",
"version": "1.1.3",
"main": "index.js",
"module": "index.mjs",
"types": "index.d.ts",
Expand Down Expand Up @@ -34,7 +34,7 @@
"url": "https://github.com/edmundhung/conform/issues"
},
"dependencies": {
"@conform-to/dom": "1.1.2"
"@conform-to/dom": "1.1.3"
},
"peerDependencies": {
"zod": "^3.21.0"
Expand Down
28 changes: 14 additions & 14 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit be32a14

Please sign in to comment.