@saas-ui/forms 0.1.0 → 0.1.5

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +61 -0
  2. package/package.json +16 -12
package/CHANGELOG.md CHANGED
@@ -1,5 +1,66 @@
1
1
  # @saas-ui/forms
2
2
 
3
+ ## 0.1.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @saas-ui/select@0.1.4
9
+ - @saas-ui/button@0.1.5
10
+ - @saas-ui/input-right-button@0.1.5
11
+ - @saas-ui/password-input@0.1.5
12
+
13
+ ## 0.1.4
14
+
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies
18
+ - @saas-ui/button@0.1.4
19
+ - @saas-ui/input-right-button@0.1.4
20
+ - @saas-ui/password-input@0.1.4
21
+
22
+ ## 0.1.3
23
+
24
+ ### Patch Changes
25
+
26
+ - Improved exports configuration
27
+ - Updated dependencies
28
+ - @saas-ui/button@0.1.3
29
+ - @saas-ui/input-right-button@0.1.3
30
+ - @saas-ui/number-input@0.1.3
31
+ - @saas-ui/password-input@0.1.3
32
+ - @saas-ui/pin-input@0.1.3
33
+ - @saas-ui/radio@0.1.3
34
+ - @saas-ui/select@0.1.3
35
+
36
+ ## 0.1.2
37
+
38
+ ### Patch Changes
39
+
40
+ - Republish with correct deps
41
+ - Updated dependencies
42
+ - @saas-ui/button@0.1.2
43
+ - @saas-ui/input-right-button@0.1.2
44
+ - @saas-ui/number-input@0.1.2
45
+ - @saas-ui/password-input@0.1.2
46
+ - @saas-ui/pin-input@0.1.2
47
+ - @saas-ui/radio@0.1.2
48
+ - @saas-ui/select@0.1.2
49
+
50
+ ## 0.1.1
51
+
52
+ ### Patch Changes
53
+
54
+ - Fix version mismatch
55
+ - Updated dependencies
56
+ - @saas-ui/button@0.1.1
57
+ - @saas-ui/input-right-button@0.1.1
58
+ - @saas-ui/number-input@0.1.1
59
+ - @saas-ui/password-input@0.1.1
60
+ - @saas-ui/pin-input@0.1.1
61
+ - @saas-ui/radio@0.1.1
62
+ - @saas-ui/select@0.1.1
63
+
3
64
  ## 0.1.0
4
65
 
5
66
  ### Minor Changes
package/package.json CHANGED
@@ -1,12 +1,16 @@
1
1
  {
2
2
  "name": "@saas-ui/forms",
3
- "version": "0.1.0",
3
+ "version": "0.1.5",
4
4
  "description": "Theme and components agnostic SaasProvider",
5
5
  "source": "src/index.ts",
6
6
  "exports": {
7
- "require": "./dist/index.js",
8
- "development": "./src/index.ts",
9
- "default": "./dist/index.modern.js"
7
+ ".": {
8
+ "require": "./dist/index.js",
9
+ "default": "./dist/index.modern.js"
10
+ },
11
+ "./src": {
12
+ "default": "./src/index.ts"
13
+ }
10
14
  },
11
15
  "main": "./dist/index.js",
12
16
  "module": "./dist/index.modern.js",
@@ -55,13 +59,13 @@
55
59
  },
56
60
  "dependencies": {
57
61
  "@hookform/resolvers": "^2.8.3",
58
- "@saas-ui/button": "workspace:*",
59
- "@saas-ui/input-right-button": "workspace:*",
60
- "@saas-ui/number-input": "workspace:*",
61
- "@saas-ui/password-input": "workspace:*",
62
- "@saas-ui/pin-input": "workspace:*",
63
- "@saas-ui/radio": "workspace:*",
64
- "@saas-ui/select": "workspace:*",
62
+ "@saas-ui/button": "0.1.5",
63
+ "@saas-ui/input-right-button": "0.1.5",
64
+ "@saas-ui/number-input": "0.1.3",
65
+ "@saas-ui/password-input": "0.1.5",
66
+ "@saas-ui/pin-input": "0.1.3",
67
+ "@saas-ui/radio": "0.1.3",
68
+ "@saas-ui/select": "0.1.4",
65
69
  "react-hook-form": "^7.22.0"
66
70
  },
67
71
  "peerDependencies": {
@@ -72,4 +76,4 @@
72
76
  "optionalDependencies": {
73
77
  "yup": "^0.32.11"
74
78
  }
75
- }
79
+ }