Skip to content

Commit 7be7bc8

Browse files
committed
release: v1.1.1
1 parent 4819d51 commit 7be7bc8

File tree

13 files changed

+33
-33
lines changed

13 files changed

+33
-33
lines changed

README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
╚══════╝ ╚═════╝ ╚═╝ ╚══╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝
99

1010

11-
Version 1.1.0 / License MIT / Copyright (c) 2024 Edmund Hung
11+
Version 1.1.1 / License MIT / Copyright (c) 2024 Edmund Hung
1212

1313
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.
1414

examples/chakra-ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"private": true,
44
"dependencies": {
55
"@chakra-ui/react": "^2.4.2",
6-
"@conform-to/react": "1.1.0",
6+
"@conform-to/react": "1.1.1",
77
"@emotion/react": "^11.10.5",
88
"@emotion/styled": "^11.10.5",
99
"framer-motion": "^7.6.19",

examples/headless-ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@conform-example/headless-ui",
33
"private": true,
44
"dependencies": {
5-
"@conform-to/react": "1.1.0",
5+
"@conform-to/react": "1.1.1",
66
"@headlessui/react": "^1.7.13",
77
"@heroicons/react": "^2.0.18",
88
"react": "^18.2.0",

examples/material-ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@conform-example/material-ui",
33
"private": true,
44
"dependencies": {
5-
"@conform-to/react": "1.1.0",
5+
"@conform-to/react": "1.1.1",
66
"@emotion/react": "^11.10.0",
77
"@emotion/styled": "^11.10.0",
88
"@mui/material": "^5.10.2",

examples/nextjs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
"lint": "next lint"
1010
},
1111
"dependencies": {
12-
"@conform-to/react": "1.1.0",
13-
"@conform-to/zod": "1.1.0",
12+
"@conform-to/react": "1.1.1",
13+
"@conform-to/zod": "1.1.1",
1414
"next": "14.0.4",
1515
"react": "^18.2.0",
1616
"react-dom": "^18.2.0",

examples/radix-ui/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
"preview": "vite preview"
1111
},
1212
"dependencies": {
13-
"@conform-to/react": "^1.1.0",
14-
"@conform-to/zod": "^1.1.0",
13+
"@conform-to/react": "^1.1.1",
14+
"@conform-to/zod": "^1.1.1",
1515
"@radix-ui/react-checkbox": "^1.0.4",
1616
"@radix-ui/react-icons": "^1.3.0",
1717
"@radix-ui/react-radio-group": "^1.1.3",

examples/react-router/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
"serve": "vite preview"
88
},
99
"dependencies": {
10-
"@conform-to/react": "1.1.0",
11-
"@conform-to/zod": "1.1.0",
10+
"@conform-to/react": "1.1.1",
11+
"@conform-to/zod": "1.1.1",
1212
"react": "^18.2.0",
1313
"react-dom": "^18.2.0",
1414
"react-router-dom": "^6.15.0",

examples/remix/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
"start": "remix-serve build"
1010
},
1111
"dependencies": {
12-
"@conform-to/react": "1.1.0",
13-
"@conform-to/zod": "1.1.0",
12+
"@conform-to/react": "1.1.1",
13+
"@conform-to/zod": "1.1.1",
1414
"@remix-run/node": "^1.19.3",
1515
"@remix-run/react": "^1.19.3",
1616
"@remix-run/serve": "^1.19.3",

packages/conform-dom/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "A set of opinionated helpers built on top of the Constraint Validation API",
44
"homepage": "https://conform.guide",
55
"license": "MIT",
6-
"version": "1.1.0",
6+
"version": "1.1.1",
77
"main": "index.js",
88
"module": "index.mjs",
99
"types": "index.d.ts",

packages/conform-react/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Conform view adapter for react",
44
"homepage": "https://conform.guide",
55
"license": "MIT",
6-
"version": "1.1.0",
6+
"version": "1.1.1",
77
"main": "index.js",
88
"module": "index.mjs",
99
"types": "index.d.ts",
@@ -30,7 +30,7 @@
3030
"url": "https://github.com/edmundhung/conform/issues"
3131
},
3232
"dependencies": {
33-
"@conform-to/dom": "1.1.0"
33+
"@conform-to/dom": "1.1.1"
3434
},
3535
"devDependencies": {
3636
"@types/react": "^18.2.43",

0 commit comments

Comments
 (0)