@saas-ui/modals 1.0.0-rc.6 → 1.0.0-rc.9
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 +31 -0
- package/README.md +18 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,36 @@
|
|
1
1
|
# @saas-ui/modals
|
2
2
|
|
3
|
+
## 1.0.0-rc.9
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- Updated dependencies [43dff99]
|
8
|
+
- Updated dependencies [d4afda3]
|
9
|
+
- Updated dependencies [43dff99]
|
10
|
+
- Updated dependencies [38f7171]
|
11
|
+
- Updated dependencies [870db1f]
|
12
|
+
- @saas-ui/forms@1.0.0-rc.9
|
13
|
+
- @saas-ui/button@1.0.0-rc.4
|
14
|
+
- @saas-ui/menu@1.0.0-rc.5
|
15
|
+
|
16
|
+
## 1.0.0-rc.8
|
17
|
+
|
18
|
+
### Patch Changes
|
19
|
+
|
20
|
+
- dc6376f: Updated all readme files, added better descriptions and links to docs and source code.
|
21
|
+
- Updated dependencies [dc6376f]
|
22
|
+
- Updated dependencies [68f5d3b]
|
23
|
+
- @saas-ui/button@1.0.0-rc.3
|
24
|
+
- @saas-ui/forms@1.0.0-rc.8
|
25
|
+
- @saas-ui/menu@1.0.0-rc.4
|
26
|
+
|
27
|
+
## 1.0.0-rc.7
|
28
|
+
|
29
|
+
### Patch Changes
|
30
|
+
|
31
|
+
- Updated dependencies
|
32
|
+
- @saas-ui/forms@1.0.0-rc.7
|
33
|
+
|
3
34
|
## 1.0.0-rc.6
|
4
35
|
|
5
36
|
### Patch Changes
|
package/README.md
CHANGED
@@ -1,6 +1,15 @@
|
|
1
1
|
# @saas-ui/modal
|
2
2
|
|
3
|
-
|
3
|
+
Chakra UI modals manager.
|
4
|
+
|
5
|
+
Build in modal types:
|
6
|
+
|
7
|
+
- Modal
|
8
|
+
- Drawer
|
9
|
+
- Form
|
10
|
+
- Dialog
|
11
|
+
- ConfirmDialog
|
12
|
+
- MenuDialog
|
4
13
|
|
5
14
|
## Installation
|
6
15
|
|
@@ -74,6 +83,14 @@ function MyComponent() {
|
|
74
83
|
}
|
75
84
|
```
|
76
85
|
|
86
|
+
## Docs
|
87
|
+
|
88
|
+
https://www.saas-ui.dev/docs/overlay/modals-manager
|
89
|
+
|
90
|
+
## Source
|
91
|
+
|
92
|
+
https://github.com/saas-js/saas-ui/tree/next/packages/saas-ui-modals
|
93
|
+
|
77
94
|
## License
|
78
95
|
|
79
96
|
MIT - Appulse Software
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@saas-ui/modals",
|
3
|
-
"version": "1.0.0-rc.
|
3
|
+
"version": "1.0.0-rc.9",
|
4
4
|
"description": "A modal manager for Chakra UI",
|
5
5
|
"source": "src/index.ts",
|
6
6
|
"exports": {
|
@@ -56,9 +56,9 @@
|
|
56
56
|
"url": "https://storybook.saas-ui.dev"
|
57
57
|
},
|
58
58
|
"dependencies": {
|
59
|
-
"@saas-ui/button": "1.0.0-rc.
|
60
|
-
"@saas-ui/forms": "1.0.0-rc.
|
61
|
-
"@saas-ui/menu": "1.0.0-rc.
|
59
|
+
"@saas-ui/button": "1.0.0-rc.4",
|
60
|
+
"@saas-ui/forms": "1.0.0-rc.9",
|
61
|
+
"@saas-ui/menu": "1.0.0-rc.5"
|
62
62
|
},
|
63
63
|
"peerDependencies": {
|
64
64
|
"@chakra-ui/react": ">=2.1.0",
|