@saas-ui/modals 0.6.0-next.1 → 0.6.0-next.4

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 +39 -0
  2. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -1,5 +1,35 @@
1
1
  # @saas-ui/modals
2
2
 
3
+ ## 0.6.0-next.4
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated Chakra to 2.1.2
8
+ - Updated dependencies
9
+ - @saas-ui/button@0.5.0-next.4
10
+ - @saas-ui/forms@0.8.0-next.4
11
+ - @saas-ui/menu@0.6.0-next.4
12
+
13
+ ## 0.6.0-next.3
14
+
15
+ ### Patch Changes
16
+
17
+ - Bump version
18
+ - Updated dependencies
19
+ - @saas-ui/button@0.5.0-next.3
20
+ - @saas-ui/forms@0.8.0-next.3
21
+ - @saas-ui/menu@0.6.0-next.3
22
+
23
+ ## 0.6.0-next.2
24
+
25
+ ### Patch Changes
26
+
27
+ - 1fdf52a: Modern bundles now use .mjs extension.
28
+ - Updated dependencies [1fdf52a]
29
+ - @saas-ui/button@0.5.0-next.2
30
+ - @saas-ui/forms@0.8.0-next.2
31
+ - @saas-ui/menu@0.6.0-next.2
32
+
3
33
  ## 0.6.0-next.1
4
34
 
5
35
  ### Patch Changes
@@ -25,6 +55,15 @@
25
55
  - @saas-ui/forms@0.8.0-next.0
26
56
  - @saas-ui/menu@0.6.0-next.0
27
57
 
58
+ ## 0.5.13
59
+
60
+ ### Patch Changes
61
+
62
+ - Updated dependencies [0dbec1a]
63
+ - @saas-ui/button@0.4.1
64
+ - @saas-ui/forms@0.7.9
65
+ - @saas-ui/menu@0.5.5
66
+
28
67
  ## 0.5.12
29
68
 
30
69
  ### Patch Changes
package/package.json CHANGED
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "@saas-ui/modals",
3
- "version": "0.6.0-next.1",
3
+ "version": "0.6.0-next.4",
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
- "default": "./dist/index.modern.js"
9
+ "default": "./dist/index.modern.mjs"
10
10
  },
11
11
  "./src": {
12
12
  "default": "./src/index.ts"
13
13
  }
14
14
  },
15
15
  "main": "./dist/index.js",
16
- "module": "./dist/index.modern.js",
16
+ "module": "./dist/index.modern.mjs",
17
17
  "types": "./dist/index.d.ts",
18
18
  "scripts": {
19
19
  "clean": "rimraf dist",
@@ -56,9 +56,9 @@
56
56
  "url": "https://storybook.saas-ui.dev"
57
57
  },
58
58
  "dependencies": {
59
- "@saas-ui/button": "0.5.0-next.1",
60
- "@saas-ui/forms": "0.8.0-next.1",
61
- "@saas-ui/menu": "0.6.0-next.1"
59
+ "@saas-ui/button": "0.5.0-next.4",
60
+ "@saas-ui/forms": "0.8.0-next.4",
61
+ "@saas-ui/menu": "0.6.0-next.4"
62
62
  },
63
63
  "peerDependencies": {
64
64
  "@chakra-ui/react": ">=2.1.0",