@saas-ui/modals 2.0.0-rc.32 → 2.0.0
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 +53 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,58 @@
|
|
1
1
|
# @saas-ui/modals
|
2
2
|
|
3
|
+
## 2.0.0
|
4
|
+
|
5
|
+
### Major Changes
|
6
|
+
|
7
|
+
- f1e99198: Restructured packages.
|
8
|
+
|
9
|
+
### Minor Changes
|
10
|
+
|
11
|
+
- 84e59fec: Added new createModals method to create typesafe modals managers with support for custom modals
|
12
|
+
- 1177329d: BaseModal now accepts header, content and footer props
|
13
|
+
- 046e42b8: Updated to Chakra UI 2.7
|
14
|
+
- 2d18cdc2: New createFormDialog function to create Zod or Yup specific FormDialogs
|
15
|
+
- 2366db6a: ConfirmDialog now supports an async onConfirm prop and shows a spinner when a promise is returned
|
16
|
+
|
17
|
+
### Patch Changes
|
18
|
+
|
19
|
+
- 1563cc9a: BaseDrawer now accepts header, content and footer props.
|
20
|
+
- d725a5da: Fix esm bundle import
|
21
|
+
- d725a5da: Bump version
|
22
|
+
- f1e99198: Migrated from microbundle to tsup for builds
|
23
|
+
- cc713117: Fix issue where onCloseComplete would not be called
|
24
|
+
- 0319aa57: Bump version
|
25
|
+
- 166978bd: Fix esm bundle filename.
|
26
|
+
- Updated dependencies [84e59fec]
|
27
|
+
- Updated dependencies [d7c87a31]
|
28
|
+
- Updated dependencies [d725a5da]
|
29
|
+
- Updated dependencies [532011d6]
|
30
|
+
- Updated dependencies [a8ea24da]
|
31
|
+
- Updated dependencies [6d3f5717]
|
32
|
+
- Updated dependencies [d725a5da]
|
33
|
+
- Updated dependencies [532011d6]
|
34
|
+
- Updated dependencies [f1e99198]
|
35
|
+
- Updated dependencies [01ac442f]
|
36
|
+
- Updated dependencies [046e42b8]
|
37
|
+
- Updated dependencies [8b82d945]
|
38
|
+
- Updated dependencies [2d18cdc2]
|
39
|
+
- Updated dependencies [a9ca90dd]
|
40
|
+
- Updated dependencies [6dd737ce]
|
41
|
+
- Updated dependencies [a7ef6dd9]
|
42
|
+
- Updated dependencies [6c63217c]
|
43
|
+
- Updated dependencies [d6e9a39d]
|
44
|
+
- Updated dependencies [c85541cb]
|
45
|
+
- Updated dependencies [b5912297]
|
46
|
+
- Updated dependencies [f1e99198]
|
47
|
+
- Updated dependencies [39e778d8]
|
48
|
+
- Updated dependencies [27a68bca]
|
49
|
+
- Updated dependencies [0319aa57]
|
50
|
+
- Updated dependencies [166978bd]
|
51
|
+
- Updated dependencies [5ac0e9ba]
|
52
|
+
- @saas-ui/forms@2.0.0
|
53
|
+
- @saas-ui/react-utils@2.0.0
|
54
|
+
- @saas-ui/hooks@2.0.0
|
55
|
+
|
3
56
|
## 2.0.0-rc.32
|
4
57
|
|
5
58
|
### Patch Changes
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@saas-ui/modals",
|
3
|
-
"version": "2.0.0
|
3
|
+
"version": "2.0.0",
|
4
4
|
"description": "A modal manager for Chakra UI",
|
5
5
|
"source": "src/index.ts",
|
6
6
|
"exports": {
|
@@ -59,9 +59,9 @@
|
|
59
59
|
"dependencies": {
|
60
60
|
"@chakra-ui/react-utils": "^2.0.12",
|
61
61
|
"@chakra-ui/utils": "^2.0.15",
|
62
|
-
"@saas-ui/forms": "2.0.0
|
63
|
-
"@saas-ui/hooks": "2.0.0
|
64
|
-
"@saas-ui/react-utils": "2.0.0
|
62
|
+
"@saas-ui/forms": "2.0.0",
|
63
|
+
"@saas-ui/hooks": "2.0.0",
|
64
|
+
"@saas-ui/react-utils": "2.0.0"
|
65
65
|
},
|
66
66
|
"peerDependencies": {
|
67
67
|
"@chakra-ui/react": ">=2.4.9",
|