Skip to content

Commit

Permalink
release: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
edmundhung committed Jan 17, 2023
1 parent 8aebe2e commit cc204be
Show file tree
Hide file tree
Showing 14 changed files with 58 additions and 58 deletions.
4 changes: 2 additions & 2 deletions examples/async-validation/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
"start": "remix-serve build"
},
"dependencies": {
"@conform-to/react": "0.5.0-pre.0",
"@conform-to/zod": "0.5.0-pre.0",
"@conform-to/react": "0.5.0",
"@conform-to/zod": "0.5.0",
"@remix-run/node": "^1.9.0",
"@remix-run/react": "^1.9.0",
"@remix-run/serve": "^1.9.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/chakra-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"private": true,
"dependencies": {
"@chakra-ui/react": "^2.4.2",
"@conform-to/react": "0.5.0-pre.0",
"@conform-to/react": "0.5.0",
"@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
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@conform-example/headless-ui",
"private": true,
"dependencies": {
"@conform-to/react": "0.5.0-pre.0",
"@conform-to/react": "0.5.0",
"@headlessui/react": "^1.7.4",
"@heroicons/react": "^2.0.13",
"react": "^18.2.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/material-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@conform-example/material-ui",
"private": true,
"dependencies": {
"@conform-to/react": "0.5.0-pre.0",
"@conform-to/react": "0.5.0",
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@mui/material": "^5.10.2",
Expand Down
4 changes: 2 additions & 2 deletions examples/nested-list/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
"start": "remix-serve build"
},
"dependencies": {
"@conform-to/react": "0.5.0-pre.0",
"@conform-to/zod": "0.5.0-pre.0",
"@conform-to/react": "0.5.0",
"@conform-to/zod": "0.5.0",
"@remix-run/node": "^1.9.0",
"@remix-run/react": "^1.9.0",
"@remix-run/serve": "^1.9.0",
Expand Down
4 changes: 2 additions & 2 deletions examples/server-validation/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
"start": "remix-serve build"
},
"dependencies": {
"@conform-to/react": "0.5.0-pre.0",
"@conform-to/zod": "0.5.0-pre.0",
"@conform-to/react": "0.5.0",
"@conform-to/zod": "0.5.0",
"@remix-run/node": "^1.9.0",
"@remix-run/react": "^1.9.0",
"@remix-run/serve": "^1.9.0",
Expand Down
4 changes: 2 additions & 2 deletions examples/yup/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
"start": "remix-serve build"
},
"dependencies": {
"@conform-to/react": "0.5.0-pre.0",
"@conform-to/yup": "0.5.0-pre.0",
"@conform-to/react": "0.5.0",
"@conform-to/yup": "0.5.0",
"@remix-run/node": "^1.9.0",
"@remix-run/react": "^1.9.0",
"@remix-run/serve": "^1.9.0",
Expand Down
4 changes: 2 additions & 2 deletions examples/zod/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
"start": "remix-serve build"
},
"dependencies": {
"@conform-to/react": "0.5.0-pre.0",
"@conform-to/zod": "0.5.0-pre.0",
"@conform-to/react": "0.5.0",
"@conform-to/zod": "0.5.0",
"@remix-run/node": "^1.9.0",
"@remix-run/react": "^1.9.0",
"@remix-run/serve": "^1.9.0",
Expand Down
68 changes: 34 additions & 34 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion packages/conform-dom/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@conform-to/dom",
"description": "A set of opinionated helpers built on top of the Constraint Validation API",
"license": "MIT",
"version": "0.5.0-pre.0",
"version": "0.5.0",
"main": "index.js",
"module": "module/index.js",
"repository": {
Expand Down
8 changes: 4 additions & 4 deletions packages/conform-react/hooks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ interface Form<Schema extends Record<string, any>> {
* Returns properties required to hook into form events.
* Applied custom validation and define when error should be reported.
*
* @see https://github.com/edmundhung/conform/tree/v0.4.1/packages/conform-react/README.md#useform
* @see https://conform.guide/api/react#useform
*/
export function useForm<Schema extends Record<string, any>>(
config: FormConfig<Schema> = {},
Expand Down Expand Up @@ -407,7 +407,7 @@ export interface FieldsetConfig<Schema extends Record<string, any>> {
/**
* Returns all the information about the fieldset.
*
* @see https://github.com/edmundhung/conform/tree/v0.4.1/packages/conform-react/README.md#usefieldset
* @see https://conform.guide/api/react#usefieldset
*/
export function useFieldset<Schema extends Record<string, any>>(
ref: RefObject<HTMLFormElement | HTMLFieldSetElement>,
Expand Down Expand Up @@ -591,7 +591,7 @@ export function useFieldset<Schema extends Record<string, any>>(
* Returns a list of key and config, with a group of helpers
* configuring buttons for list manipulation
*
* @see https://github.com/edmundhung/conform/tree/v0.4.1/packages/conform-react/README.md#usefieldlist
* @see https://conform.guide/api/react#usefieldlist
*/
export function useFieldList<Payload = any>(
ref: RefObject<HTMLFormElement | HTMLFieldSetElement>,
Expand Down Expand Up @@ -802,7 +802,7 @@ interface InputControl<Element extends { focus: () => void }> {
* This is particular useful when integrating dropdown and datepicker whichs
* introduces custom input mode.
*
* @see https://github.com/edmundhung/conform/tree/v0.4.1/packages/conform-react/README.md#usecontrolledinput
* @see https://conform.guide/api/react#usecontrolledinput
*/
export function useControlledInput<
Element extends { focus: () => void } = HTMLInputElement,
Expand Down
4 changes: 2 additions & 2 deletions packages/conform-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@conform-to/react",
"description": "Conform view adapter for react",
"license": "MIT",
"version": "0.5.0-pre.0",
"version": "0.5.0",
"main": "index.js",
"module": "module/index.js",
"repository": {
Expand All @@ -19,7 +19,7 @@
"url": "https://github.com/edmundhung/conform/issues"
},
"dependencies": {
"@conform-to/dom": "0.5.0-pre.0"
"@conform-to/dom": "0.5.0"
},
"peerDependencies": {
"react": ">=16.8"
Expand Down
4 changes: 2 additions & 2 deletions packages/conform-yup/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@conform-to/yup",
"description": "Conform helpers for integrating with yup",
"license": "MIT",
"version": "0.5.0-pre.0",
"version": "0.5.0",
"main": "index.js",
"module": "module/index.js",
"repository": {
Expand All @@ -14,7 +14,7 @@
"url": "https://github.com/edmundhung/conform/issues"
},
"peerDependencies": {
"@conform-to/dom": "0.5.0-pre.0",
"@conform-to/dom": "0.5.0",
"yup": ">=0.32.0"
},
"devDependencies": {
Expand Down
Loading

0 comments on commit cc204be

Please sign in to comment.