@saas-ui/react 2.0.0-next.3 → 2.0.0-next.6

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 +91 -0
  2. package/package.json +13 -13
package/CHANGELOG.md CHANGED
@@ -1,5 +1,86 @@
1
1
  # @saas-ui/react
2
2
 
3
+ ## 2.0.0-next.6
4
+
5
+ ### Major Changes
6
+
7
+ - 37e38165: Auth forms can now be used standalone, to build custom solutions.
8
+ - 532011d6: Restructured the Select component to make it atomic, the new composition is Select, SelectButton, SelectList and SelectOption.
9
+ - 39e778d8: Form will now render AutoField by default when no children are passed.
10
+
11
+ ### Minor Changes
12
+
13
+ - 532011d6: Select can now supports theming using the SuiSelect theme config.
14
+ - 6dd737ce: Select field now renders invalid state.
15
+ - c85541cb: AutoForm field props can now be overridden using the fields prop on Form
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies [37e38165]
20
+ - Updated dependencies [532011d6]
21
+ - Updated dependencies [532011d6]
22
+ - Updated dependencies [6dd737ce]
23
+ - Updated dependencies [c85541cb]
24
+ - Updated dependencies [39e778d8]
25
+ - @saas-ui/auth@2.0.0-next.6
26
+ - @saas-ui/forms@2.0.0-next.6
27
+ - @saas-ui/data-table@2.0.0-next.6
28
+ - @saas-ui/modals@2.0.0-next.6
29
+
30
+ ## 2.0.0-next.5
31
+
32
+ ### Major Changes
33
+
34
+ - 61b27fa6: Stepper useNext and usePrev hooks renamed to useStepperNextButton and useStepperPrevButton
35
+
36
+ ### Minor Changes
37
+
38
+ - a8ea24da: PasswordInput now accepts leftAddon property.
39
+
40
+ ### Patch Changes
41
+
42
+ - Updated dependencies [a8ea24da]
43
+ - Updated dependencies [61b27fa6]
44
+ - @saas-ui/forms@2.0.0-next.5
45
+ - @saas-ui/core@2.0.0-next.5
46
+ - @saas-ui/auth@2.0.0-next.5
47
+ - @saas-ui/modals@2.0.0-next.5
48
+ - @saas-ui/data-table@2.0.0-next.5
49
+ - @saas-ui/hotkeys@2.0.0-next.5
50
+
51
+ ## 2.0.0-next.4
52
+
53
+ ### Major Changes
54
+
55
+ - 83f54180: ErrorBoundary errorComponent property renamed to fallback to be consistent with Suspense.
56
+ - 83f54180: Secondary button now uses solid variant and gray colorScheme.
57
+ - 83f54180: Renamed Loader to LoadingOverlay.
58
+
59
+ ### Minor Changes
60
+
61
+ - 83f54180: Added new tertiary button variant.
62
+ - 27a68bca: useLocalStorage now updates all hook instances on the current page when the value changed
63
+
64
+ ### Patch Changes
65
+
66
+ - ba61612f: Fixed useSnackbar return type, always returns toastId.
67
+ - 83f54180: Fix NavItem focus outline color.
68
+ - Updated dependencies [83f54180]
69
+ - Updated dependencies [ba61612f]
70
+ - Updated dependencies [83f54180]
71
+ - Updated dependencies [83f54180]
72
+ - Updated dependencies [83f54180]
73
+ - Updated dependencies [83f54180]
74
+ - Updated dependencies [27a68bca]
75
+ - @saas-ui/core@2.0.0-next.4
76
+ - @saas-ui/theme@2.0.0-next.3
77
+ - @saas-ui/hooks@2.0.0-next.2
78
+ - @saas-ui/auth@2.0.0-next.4
79
+ - @saas-ui/data-table@2.0.0-next.4
80
+ - @saas-ui/forms@2.0.0-next.4
81
+ - @saas-ui/hotkeys@2.0.0-next.4
82
+ - @saas-ui/modals@2.0.0-next.4
83
+
3
84
  ## 2.0.0-next.3
4
85
 
5
86
  ### Patch Changes
@@ -94,6 +175,16 @@
94
175
  - @saas-ui/nprogress@2.0.0-next.0
95
176
  - @saas-ui/theme@2.0.0-next.0
96
177
 
178
+ ## 1.9.1
179
+
180
+ ### Patch Changes
181
+
182
+ - 382e095: InputRightButton no longer exported from forms package to prevent conflicts.
183
+ - Updated dependencies [382e095]
184
+ - @saas-ui/forms@1.5.3
185
+ - @saas-ui/auth@1.7.4
186
+ - @saas-ui/modals@1.5.5
187
+
97
188
  ## 1.9.0
98
189
 
99
190
  ### Minor Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@saas-ui/react",
3
- "version": "2.0.0-next.3",
4
- "description": "Saas UI - The frontend stack for SaaS companies.",
3
+ "version": "2.0.0-next.6",
4
+ "description": "Saas UI - The React component library for startups.",
5
5
  "source": "src/index.ts",
6
6
  "exports": {
7
7
  ".": {
@@ -55,18 +55,18 @@
55
55
  "url": "https://storybook.saas-ui.dev"
56
56
  },
57
57
  "dependencies": {
58
- "@chakra-ui/react-utils": "^2.0.11",
59
- "@chakra-ui/system": "^2.3.8",
60
- "@chakra-ui/utils": "^2.0.14",
61
- "@saas-ui/auth": "2.0.0-next.3",
62
- "@saas-ui/core": "2.0.0-next.3",
63
- "@saas-ui/data-table": "2.0.0-next.3",
64
- "@saas-ui/forms": "2.0.0-next.3",
65
- "@saas-ui/hooks": "2.0.0-next.1",
66
- "@saas-ui/hotkeys": "2.0.0-next.3",
67
- "@saas-ui/modals": "2.0.0-next.3",
58
+ "@chakra-ui/react-utils": "^2.0.12",
59
+ "@chakra-ui/system": "^2.5.5",
60
+ "@chakra-ui/utils": "^2.0.15",
61
+ "@saas-ui/auth": "2.0.0-next.6",
62
+ "@saas-ui/core": "2.0.0-next.5",
63
+ "@saas-ui/data-table": "2.0.0-next.6",
64
+ "@saas-ui/forms": "2.0.0-next.6",
65
+ "@saas-ui/hooks": "2.0.0-next.2",
66
+ "@saas-ui/hotkeys": "2.0.0-next.5",
67
+ "@saas-ui/modals": "2.0.0-next.6",
68
68
  "@saas-ui/nprogress": "2.0.0-next.1",
69
- "@saas-ui/theme": "2.0.0-next.2"
69
+ "@saas-ui/theme": "2.0.0-next.3"
70
70
  },
71
71
  "peerDependencies": {
72
72
  "@chakra-ui/react": ">=2.4.0",