@saas-ui/forms 1.0.2 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,38 @@
1
1
  # @saas-ui/forms
2
2
 
3
+ ## 1.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - @saas-ui/stepper@1.1.1
8
+
9
+ ## 1.1.0
10
+
11
+ ### Minor Changes
12
+
13
+ - f6ec7dc: Fixed issue where Next.js would not resolve Chakra UI components correctly.
14
+
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies [f6ec7dc]
18
+ - @saas-ui/button@1.1.0
19
+ - @saas-ui/input-right-button@1.1.0
20
+ - @saas-ui/number-input@1.1.0
21
+ - @saas-ui/password-input@1.1.0
22
+ - @saas-ui/pin-input@1.1.0
23
+ - @saas-ui/radio@1.1.0
24
+ - @saas-ui/react-utils@1.1.0
25
+ - @saas-ui/select@1.1.0
26
+ - @saas-ui/stepper@1.1.0
27
+
28
+ ## 1.0.3
29
+
30
+ ### Patch Changes
31
+
32
+ - e14c2e1: Make sure FormStep onSubmit does not throw an error when no promise is returned.
33
+ - Updated dependencies [8d03628]
34
+ - @saas-ui/password-input@1.0.2
35
+
3
36
  ## 1.0.2
4
37
 
5
38
  ### Patch Changes
package/ajv/package.json CHANGED
@@ -1,11 +1,20 @@
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",