@saas-ui/modals 1.5.5 → 1.5.7
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 +20 -0
- package/package.json +5 -4
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,25 @@
|
|
1
1
|
# @saas-ui/modals
|
2
2
|
|
3
|
+
## 1.5.7
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- Fix types path
|
8
|
+
- Updated dependencies
|
9
|
+
- @saas-ui/button@1.4.2
|
10
|
+
- @saas-ui/forms@1.5.5
|
11
|
+
- @saas-ui/menu@1.4.3
|
12
|
+
|
13
|
+
## 1.5.6
|
14
|
+
|
15
|
+
### Patch Changes
|
16
|
+
|
17
|
+
- b2302a3: Add types to package.json exports
|
18
|
+
- Updated dependencies [b2302a3]
|
19
|
+
- @saas-ui/button@1.4.1
|
20
|
+
- @saas-ui/forms@1.5.4
|
21
|
+
- @saas-ui/menu@1.4.2
|
22
|
+
|
3
23
|
## 1.5.5
|
4
24
|
|
5
25
|
### Patch Changes
|
package/package.json
CHANGED
@@ -1,11 +1,12 @@
|
|
1
1
|
{
|
2
2
|
"name": "@saas-ui/modals",
|
3
|
-
"version": "1.5.
|
3
|
+
"version": "1.5.7",
|
4
4
|
"description": "A modal manager for Chakra UI",
|
5
5
|
"source": "src/index.ts",
|
6
6
|
"exports": {
|
7
7
|
".": {
|
8
8
|
"require": "./dist/index.js",
|
9
|
+
"types": "./dist/index.d.ts",
|
9
10
|
"import": "./dist/index.modern.mjs"
|
10
11
|
},
|
11
12
|
"./src": {
|
@@ -57,9 +58,9 @@
|
|
57
58
|
},
|
58
59
|
"dependencies": {
|
59
60
|
"@chakra-ui/utils": "^2.0.14",
|
60
|
-
"@saas-ui/button": "1.4.
|
61
|
-
"@saas-ui/forms": "1.5.
|
62
|
-
"@saas-ui/menu": "1.4.
|
61
|
+
"@saas-ui/button": "1.4.2",
|
62
|
+
"@saas-ui/forms": "1.5.5",
|
63
|
+
"@saas-ui/menu": "1.4.3"
|
63
64
|
},
|
64
65
|
"peerDependencies": {
|
65
66
|
"@chakra-ui/react": ">=2.4.6",
|