-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: add support validationBehavior aria * chore: add validationBehavior to Provider * chore: add autocomplete validation test * chore: add checkbox validation test * fix(input): require condition * docs: add description of validationBehavior props * chore: add support validationBehavior props for date components * docs(dates): add description of validationBehavior props * chore: add changeset * chore: format * chore: fix test * fix: select validationBehavior is not support yet * fix: select validationBehavior not supported yet * feat: add form component with input support * feat: add support form context * chore: wip add support for form server errors * chore: add support checkbox server validation * chore: add support radio server validation * chore: update pnpm-lock.yaml * chore: add support input server validation * chore: add support autocomplete server validation * chore(form): add server validation stories * chore: fix test * chore: add date-picker validation test * chore: update form stories * chore: add changeset * chore: update react-aria version * chore: add pnpm-lock.yaml * chore: update react-aria version * chore: add comment * chore: update react-aria version * chore: fix change set * chore: export form component in the main package * chore: upgrade react-aria * chore: fixed internationalized/date version * fix: build error * chore: upgrade docs react-aria version * fix: remove comment * fix: debug setting * chore(docs): update sponsor (#3904) * chore(docs): remove Scrumbuiss * chore(docs): remove Scrumbuiss logo * chore(docs): replace va by posthog (#4123) * chore(changeset): change to patch * refactor: react-aria-components remove to decrease package size, logic moved to the form package --------- Co-authored-by: Junior Garcia <[email protected]> Co-authored-by: WK Wong <[email protected]>
- Loading branch information
1 parent
ee4870d
commit eafdb7d
Showing
94 changed files
with
2,902 additions
and
1,566 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@nextui-org/table": patch | ||
--- | ||
|
||
The `layoutNode` prop has been removed due to the update to react-aria. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
--- | ||
"@nextui-org/accordion": patch | ||
"@nextui-org/avatar": patch | ||
"@nextui-org/breadcrumbs": patch | ||
"@nextui-org/button": patch | ||
"@nextui-org/calendar": patch | ||
"@nextui-org/card": patch | ||
"@nextui-org/chip": patch | ||
"@nextui-org/date-input": patch | ||
"@nextui-org/divider": patch | ||
"@nextui-org/dropdown": patch | ||
"@nextui-org/kbd": patch | ||
"@nextui-org/link": patch | ||
"@nextui-org/listbox": patch | ||
"@nextui-org/menu": patch | ||
"@nextui-org/modal": patch | ||
"@nextui-org/navbar": patch | ||
"@nextui-org/pagination": patch | ||
"@nextui-org/popover": patch | ||
"@nextui-org/progress": patch | ||
"@nextui-org/select": patch | ||
"@nextui-org/slider": patch | ||
"@nextui-org/snippet": patch | ||
"@nextui-org/switch": patch | ||
"@nextui-org/tabs": patch | ||
"@nextui-org/tooltip": patch | ||
"@nextui-org/user": patch | ||
"@nextui-org/react": patch | ||
"@nextui-org/system": patch | ||
"@nextui-org/system-rsc": patch | ||
"@nextui-org/use-aria-accordion": patch | ||
"@nextui-org/use-aria-accordion-item": patch | ||
"@nextui-org/use-aria-button": patch | ||
"@nextui-org/use-aria-link": patch | ||
"@nextui-org/use-aria-menu": patch | ||
"@nextui-org/use-aria-modal-overlay": patch | ||
"@nextui-org/use-aria-multiselect": patch | ||
"@nextui-org/use-aria-overlay": patch | ||
"@nextui-org/use-aria-toggle-button": patch | ||
"@nextui-org/use-disclosure": patch | ||
"@nextui-org/use-intersection-observer": patch | ||
"@nextui-org/use-is-mobile": patch | ||
"@nextui-org/use-pagination": patch | ||
"@nextui-org/aria-utils": patch | ||
--- | ||
|
||
update react-aria version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@nextui-org/form": patch | ||
--- | ||
|
||
add form component |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
"@nextui-org/autocomplete": patch | ||
"@nextui-org/checkbox": patch | ||
"@nextui-org/date-picker": patch | ||
"@nextui-org/input": patch | ||
"@nextui-org/radio": patch | ||
--- | ||
|
||
support server validation with form |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,5 +10,5 @@ | |
}, | ||
"tailwindCSS.experimental.classRegex": [ | ||
["([\"'`][^\"'`]*.*?[\"'`])", "[\"'`]([^\"'`]*).*?[\"'`]"] | ||
] | ||
], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.