@saas-ui/forms 1.0.1 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,41 @@
1
1
  # @saas-ui/forms
2
2
 
3
+ ## 1.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - f6ec7dc: Fixed issue where Next.js would not resolve Chakra UI components correctly.
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [f6ec7dc]
12
+ - @saas-ui/button@1.1.0
13
+ - @saas-ui/input-right-button@1.1.0
14
+ - @saas-ui/number-input@1.1.0
15
+ - @saas-ui/password-input@1.1.0
16
+ - @saas-ui/pin-input@1.1.0
17
+ - @saas-ui/radio@1.1.0
18
+ - @saas-ui/react-utils@1.1.0
19
+ - @saas-ui/select@1.1.0
20
+ - @saas-ui/stepper@1.1.0
21
+
22
+ ## 1.0.3
23
+
24
+ ### Patch Changes
25
+
26
+ - e14c2e1: Make sure FormStep onSubmit does not throw an error when no promise is returned.
27
+ - Updated dependencies [8d03628]
28
+ - @saas-ui/password-input@1.0.2
29
+
30
+ ## 1.0.2
31
+
32
+ ### Patch Changes
33
+
34
+ - fe754e6: Fixed Hook Form 7.33 compatibility.
35
+ - Updated dependencies [fe1e333]
36
+ - @saas-ui/input-right-button@1.0.1
37
+ - @saas-ui/password-input@1.0.1
38
+
3
39
  ## 1.0.1
4
40
 
5
41
  ### Patch Changes
package/ajv/package.json CHANGED
@@ -1,18 +1,27 @@
1
1
  {
2
- "name": "ajv",
2
+ "name": "ajv-resolver",
3
3
  "description": "Saas UI Forms field resolver: ajv",
4
4
  "version": "1.0.0",
5
5
  "private": true,
6
+ "exports": {
7
+ ".": {
8
+ "require": "./../dist/ajv/index.js",
9
+ "import": "./../dist/ajv/index.modern.js"
10
+ },
11
+ "./src": {
12
+ "default": "./src/index.ts"
13
+ }
14
+ },
6
15
  "source": "./src/index.ts",
7
16
  "main": "../dist/ajv/index.js",
8
- "module": "../dist/ajv/index.modern.mjs",
17
+ "module": "../dist/ajv/index.modern.js",
9
18
  "types": "../dist/ajv/index.d.ts",
10
19
  "author": "Eelco Wiersma <eelco@appulse.nl>",
11
20
  "license": "MIT",
12
21
  "peerDependencies": {
13
22
  "@chakra-ui/utils": "^2.0.2",
14
- "@hookform/resolvers": "^2.9.0",
15
- "react-hook-form": "^7.31.3",
23
+ "@hookform/resolvers": "^2.9.3",
24
+ "react-hook-form": "^7.33.1",
16
25
  "ajv": "^8.11.0"
17
26
  }
18
27
  }