forked from raystack/apsara
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: create form-builder-v2 * feat: add prefix-suffix label * feat: update condition rendering label * feat: add error helper form * chore: bump version * feat: add none error animation field * feat: implement flexibility react-hook-form ref
- Loading branch information
1 parent
98b647d
commit d8b10ee
Showing
24 changed files
with
605 additions
and
158 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@goto-company/apsara", | ||
"version": "0.10.2", | ||
"version": "0.11.0", | ||
"description": "A list of base components for apsara", | ||
"author": "Praveen Yadav <[email protected]>", | ||
"license": "Apache-2.0", | ||
|
@@ -32,7 +32,8 @@ | |
"homepage": "https://goto.github.io/apsara/", | ||
"peerDependencies": { | ||
"react": "^16.13.1", | ||
"react-dom": "^16.13.1" | ||
"react-dom": "^16.13.1", | ||
"react-hook-form": "7.43.1" | ||
}, | ||
"dependencies": { | ||
"@ant-design/icons": "^4.2.2", | ||
|
@@ -75,7 +76,9 @@ | |
"react-window": "^1.8.5", | ||
"react-window-infinite-loader": "^1.0.5", | ||
"styled-components": "^5.2.0", | ||
"styled-system": "^5.1.5" | ||
"styled-system": "^5.1.5", | ||
"@hookform/error-message": "2.0.1", | ||
"react-hook-form": "7.43.1" | ||
}, | ||
"devDependencies": { | ||
"@rollup/plugin-json": "^4.1.0", | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export const PREFIX_CLS = "apsara-input"; |
Oops, something went wrong.