@saas-ui/react 2.0.0-next.0 → 2.0.0-next.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/CHANGELOG.md +41 -0
  2. package/package.json +12 -12
package/CHANGELOG.md CHANGED
@@ -1,5 +1,46 @@
1
1
  # @saas-ui/react
2
2
 
3
+ ## 2.0.0-next.2
4
+
5
+ ### Major Changes
6
+
7
+ - 0a11d7b6: Renamed Sidebar condensed variant to compact.
8
+ - 76887bda: Sidebar breakpoints property renamed to toggleBreakpoint. Now expects a single breakpoint or false to disable auto toggle.
9
+
10
+ ### Minor Changes
11
+
12
+ - 76887bda: AppShell now controls the Sidebar disclosure state.
13
+ - 76887bda: SidebarToggleButton can now be used outside of the Sidebar context, using the new AppShell context.
14
+
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies [0a11d7b6]
18
+ - Updated dependencies [76887bda]
19
+ - Updated dependencies [76887bda]
20
+ - Updated dependencies [76887bda]
21
+ - @saas-ui/core@2.0.0-next.2
22
+ - @saas-ui/auth@2.0.0-next.2
23
+ - @saas-ui/data-table@2.0.0-next.2
24
+ - @saas-ui/forms@2.0.0-next.2
25
+ - @saas-ui/hotkeys@2.0.0-next.2
26
+ - @saas-ui/modals@2.0.0-next.2
27
+
28
+ ## 2.0.0-next.1
29
+
30
+ ### Patch Changes
31
+
32
+ - 166978bd: Fix esm bundle filename.
33
+ - Updated dependencies [166978bd]
34
+ - @saas-ui/auth@2.0.0-next.1
35
+ - @saas-ui/core@2.0.0-next.1
36
+ - @saas-ui/data-table@2.0.0-next.1
37
+ - @saas-ui/forms@2.0.0-next.1
38
+ - @saas-ui/hooks@2.0.0-next.1
39
+ - @saas-ui/hotkeys@2.0.0-next.1
40
+ - @saas-ui/modals@2.0.0-next.1
41
+ - @saas-ui/nprogress@2.0.0-next.1
42
+ - @saas-ui/theme@2.0.0-next.1
43
+
3
44
  ## 2.0.0-next.0
4
45
 
5
46
  ### Major Changes
package/package.json CHANGED
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "@saas-ui/react",
3
- "version": "2.0.0-next.0",
3
+ "version": "2.0.0-next.2",
4
4
  "description": "Saas UI - The frontend stack for SaaS companies.",
5
5
  "source": "src/index.ts",
6
6
  "exports": {
7
7
  ".": {
8
8
  "require": "./dist/index.js",
9
- "import": "./dist/index.modern.mjs"
9
+ "import": "./dist/index.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.mjs",
16
+ "module": "./dist/index.mjs",
17
17
  "types": "./dist/index.d.ts",
18
18
  "scripts": {
19
19
  "clean": "rimraf --no-glob ./dist",
@@ -58,15 +58,15 @@
58
58
  "@chakra-ui/react-utils": "^2.0.11",
59
59
  "@chakra-ui/system": "^2.3.8",
60
60
  "@chakra-ui/utils": "^2.0.14",
61
- "@saas-ui/auth": "2.0.0-next.0",
62
- "@saas-ui/core": "2.0.0-next.0",
63
- "@saas-ui/data-table": "2.0.0-next.0",
64
- "@saas-ui/forms": "2.0.0-next.0",
65
- "@saas-ui/hooks": "2.0.0-next.0",
66
- "@saas-ui/hotkeys": "2.0.0-next.0",
67
- "@saas-ui/modals": "2.0.0-next.0",
68
- "@saas-ui/nprogress": "2.0.0-next.0",
69
- "@saas-ui/theme": "2.0.0-next.0"
61
+ "@saas-ui/auth": "2.0.0-next.2",
62
+ "@saas-ui/core": "2.0.0-next.2",
63
+ "@saas-ui/data-table": "2.0.0-next.2",
64
+ "@saas-ui/forms": "2.0.0-next.2",
65
+ "@saas-ui/hooks": "2.0.0-next.1",
66
+ "@saas-ui/hotkeys": "2.0.0-next.2",
67
+ "@saas-ui/modals": "2.0.0-next.2",
68
+ "@saas-ui/nprogress": "2.0.0-next.1",
69
+ "@saas-ui/theme": "2.0.0-next.1"
70
70
  },
71
71
  "peerDependencies": {
72
72
  "@chakra-ui/react": ">=2.4.0",