@saas-ui/react 2.0.0-next.5 → 2.0.0-next.7
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 +39 -0
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,44 @@
|
|
|
1
1
|
# @saas-ui/react
|
|
2
2
|
|
|
3
|
+
## 2.0.0-next.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [7052dad3]
|
|
8
|
+
- @saas-ui/core@2.0.0-next.6
|
|
9
|
+
- @saas-ui/auth@2.0.0-next.7
|
|
10
|
+
- @saas-ui/data-table@2.0.0-next.7
|
|
11
|
+
- @saas-ui/forms@2.0.0-next.7
|
|
12
|
+
- @saas-ui/hotkeys@2.0.0-next.6
|
|
13
|
+
- @saas-ui/modals@2.0.0-next.7
|
|
14
|
+
|
|
15
|
+
## 2.0.0-next.6
|
|
16
|
+
|
|
17
|
+
### Major Changes
|
|
18
|
+
|
|
19
|
+
- 37e38165: Auth forms can now be used standalone, to build custom solutions.
|
|
20
|
+
- 532011d6: Restructured the Select component to make it atomic, the new composition is Select, SelectButton, SelectList and SelectOption.
|
|
21
|
+
- 39e778d8: Form will now render AutoField by default when no children are passed.
|
|
22
|
+
|
|
23
|
+
### Minor Changes
|
|
24
|
+
|
|
25
|
+
- 532011d6: Select can now supports theming using the SuiSelect theme config.
|
|
26
|
+
- 6dd737ce: Select field now renders invalid state.
|
|
27
|
+
- c85541cb: AutoForm field props can now be overridden using the fields prop on Form
|
|
28
|
+
|
|
29
|
+
### Patch Changes
|
|
30
|
+
|
|
31
|
+
- Updated dependencies [37e38165]
|
|
32
|
+
- Updated dependencies [532011d6]
|
|
33
|
+
- Updated dependencies [532011d6]
|
|
34
|
+
- Updated dependencies [6dd737ce]
|
|
35
|
+
- Updated dependencies [c85541cb]
|
|
36
|
+
- Updated dependencies [39e778d8]
|
|
37
|
+
- @saas-ui/auth@2.0.0-next.6
|
|
38
|
+
- @saas-ui/forms@2.0.0-next.6
|
|
39
|
+
- @saas-ui/data-table@2.0.0-next.6
|
|
40
|
+
- @saas-ui/modals@2.0.0-next.6
|
|
41
|
+
|
|
3
42
|
## 2.0.0-next.5
|
|
4
43
|
|
|
5
44
|
### Major Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@saas-ui/react",
|
|
3
|
-
"version": "2.0.0-next.
|
|
3
|
+
"version": "2.0.0-next.7",
|
|
4
4
|
"description": "Saas UI - The React component library for startups.",
|
|
5
5
|
"source": "src/index.ts",
|
|
6
6
|
"exports": {
|
|
@@ -55,16 +55,16 @@
|
|
|
55
55
|
"url": "https://storybook.saas-ui.dev"
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"@chakra-ui/react-utils": "^2.0.
|
|
59
|
-
"@chakra-ui/system": "^2.
|
|
60
|
-
"@chakra-ui/utils": "^2.0.
|
|
61
|
-
"@saas-ui/auth": "2.0.0-next.
|
|
62
|
-
"@saas-ui/core": "2.0.0-next.
|
|
63
|
-
"@saas-ui/data-table": "2.0.0-next.
|
|
64
|
-
"@saas-ui/forms": "2.0.0-next.
|
|
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.7",
|
|
62
|
+
"@saas-ui/core": "2.0.0-next.6",
|
|
63
|
+
"@saas-ui/data-table": "2.0.0-next.7",
|
|
64
|
+
"@saas-ui/forms": "2.0.0-next.7",
|
|
65
65
|
"@saas-ui/hooks": "2.0.0-next.2",
|
|
66
|
-
"@saas-ui/hotkeys": "2.0.0-next.
|
|
67
|
-
"@saas-ui/modals": "2.0.0-next.
|
|
66
|
+
"@saas-ui/hotkeys": "2.0.0-next.6",
|
|
67
|
+
"@saas-ui/modals": "2.0.0-next.7",
|
|
68
68
|
"@saas-ui/nprogress": "2.0.0-next.1",
|
|
69
69
|
"@saas-ui/theme": "2.0.0-next.3"
|
|
70
70
|
},
|