@saas-ui/react 3.0.0-next.13 → 3.0.0-next.15
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 +15 -0
- package/dist/_tsup-dts-rollup.d.cts +213 -29
- package/dist/_tsup-dts-rollup.d.ts +213 -29
- package/dist/{chunk-DEP2DH7P.js → chunk-7FXZN5MX.js} +20 -11
- package/dist/{chunk-D72A4SU3.js → chunk-GQYL3VVZ.js} +1 -1
- package/dist/{chunk-RBG43JK2.js → chunk-LFITUDGB.js} +212 -45
- package/dist/{chunk-GXOQVOKP.js → chunk-NBNSPEJB.js} +1 -1
- package/dist/chunk-NRC2PKPJ.js +60 -0
- package/dist/components/info-tip/index.js +3 -3
- package/dist/components/menu/index.cjs +20 -11
- package/dist/components/menu/index.js +1 -1
- package/dist/components/section/index.cjs +81 -0
- package/dist/components/section/index.d.cts +2 -0
- package/dist/components/section/index.d.ts +2 -0
- package/dist/components/section/index.js +10 -0
- package/dist/components/toaster/index.cjs +1 -1
- package/dist/components/toaster/index.js +1 -1
- package/dist/components/toggle-tip/index.js +2 -2
- package/dist/index.cjs +331 -94
- package/dist/index.d.cts +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +121 -107
- package/dist/preset.cjs +211 -44
- package/dist/preset.js +1 -1
- package/package.json +2 -2
- package/dist/{chunk-OWFY465Z.js → chunk-QITSWCWX.js} +3 -3
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,20 @@
|
|
1
1
|
# @saas-ui/react
|
2
2
|
|
3
|
+
## 3.0.0-next.15
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- d4fb186: Added Section component
|
8
|
+
- a169eb7: Fixed issue where Toast close trigger would render two buttons
|
9
|
+
- d4fb186: Export createListCollection
|
10
|
+
|
11
|
+
## 3.0.0-next.14
|
12
|
+
|
13
|
+
### Patch Changes
|
14
|
+
|
15
|
+
- 78d7999: fix: export Sidebar.Provider props type
|
16
|
+
- 042ec4f: Added start and endElement props to Menu.CheckboxItem and RadioItem
|
17
|
+
|
3
18
|
## 3.0.0-next.13
|
4
19
|
|
5
20
|
### Patch Changes
|