@saas-ui/react 3.0.0-next.14 → 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 +8 -0
- package/dist/_tsup-dts-rollup.d.cts +189 -19
- package/dist/_tsup-dts-rollup.d.ts +189 -19
- 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/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 +309 -81
- package/dist/index.d.cts +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +124 -110
- package/dist/preset.cjs +211 -44
- package/dist/preset.js +1 -1
- package/package.json +1 -1
- package/dist/{chunk-OWFY465Z.js → chunk-QITSWCWX.js} +3 -3
package/dist/index.d.cts
CHANGED
|
@@ -14,6 +14,8 @@ export { defineStyle } from './_tsup-dts-rollup.cjs';
|
|
|
14
14
|
export { defineTextStyles } from './_tsup-dts-rollup.cjs';
|
|
15
15
|
export { defineTokens } from './_tsup-dts-rollup.cjs';
|
|
16
16
|
export { chakra } from './_tsup-dts-rollup.cjs';
|
|
17
|
+
export { createRecipeContext } from './_tsup-dts-rollup.cjs';
|
|
18
|
+
export { createSlotRecipeContext } from './_tsup-dts-rollup.cjs';
|
|
17
19
|
export { useRecipe } from './_tsup-dts-rollup.cjs';
|
|
18
20
|
export { useSlotRecipe } from './_tsup-dts-rollup.cjs';
|
|
19
21
|
export { useChakraContext } from './_tsup-dts-rollup.cjs';
|
|
@@ -28,6 +30,8 @@ export { useBreakpoint } from './_tsup-dts-rollup.cjs';
|
|
|
28
30
|
export { useBreakpointValue } from './_tsup-dts-rollup.cjs';
|
|
29
31
|
export { useControllableState } from './_tsup-dts-rollup.cjs';
|
|
30
32
|
export { useDisclosure } from './_tsup-dts-rollup.cjs';
|
|
33
|
+
export { createListCollection } from './_tsup-dts-rollup.cjs';
|
|
34
|
+
export { createContext } from './_tsup-dts-rollup.cjs';
|
|
31
35
|
export { UseDisclosureProps } from './_tsup-dts-rollup.cjs';
|
|
32
36
|
export { UseDisclosureReturn } from './_tsup-dts-rollup.cjs';
|
|
33
37
|
export { UseControllableStateProps } from './_tsup-dts-rollup.cjs';
|
|
@@ -240,6 +244,8 @@ export { QrCode } from './_tsup-dts-rollup.cjs';
|
|
|
240
244
|
export { useQrCode } from './_tsup-dts-rollup.cjs';
|
|
241
245
|
export { UseQrCodeProps } from './_tsup-dts-rollup.cjs';
|
|
242
246
|
export { UseQrCodeReturn } from './_tsup-dts-rollup.cjs';
|
|
247
|
+
export { Section } from './_tsup-dts-rollup.cjs';
|
|
248
|
+
export { useSectionStyles } from './_tsup-dts-rollup.cjs';
|
|
243
249
|
export { Show } from './_tsup-dts-rollup.cjs';
|
|
244
250
|
export { ShowProps } from './_tsup-dts-rollup.cjs';
|
|
245
251
|
export { Spacer } from './_tsup-dts-rollup.cjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -14,6 +14,8 @@ export { defineStyle } from './_tsup-dts-rollup.js';
|
|
|
14
14
|
export { defineTextStyles } from './_tsup-dts-rollup.js';
|
|
15
15
|
export { defineTokens } from './_tsup-dts-rollup.js';
|
|
16
16
|
export { chakra } from './_tsup-dts-rollup.js';
|
|
17
|
+
export { createRecipeContext } from './_tsup-dts-rollup.js';
|
|
18
|
+
export { createSlotRecipeContext } from './_tsup-dts-rollup.js';
|
|
17
19
|
export { useRecipe } from './_tsup-dts-rollup.js';
|
|
18
20
|
export { useSlotRecipe } from './_tsup-dts-rollup.js';
|
|
19
21
|
export { useChakraContext } from './_tsup-dts-rollup.js';
|
|
@@ -28,6 +30,8 @@ export { useBreakpoint } from './_tsup-dts-rollup.js';
|
|
|
28
30
|
export { useBreakpointValue } from './_tsup-dts-rollup.js';
|
|
29
31
|
export { useControllableState } from './_tsup-dts-rollup.js';
|
|
30
32
|
export { useDisclosure } from './_tsup-dts-rollup.js';
|
|
33
|
+
export { createListCollection } from './_tsup-dts-rollup.js';
|
|
34
|
+
export { createContext } from './_tsup-dts-rollup.js';
|
|
31
35
|
export { UseDisclosureProps } from './_tsup-dts-rollup.js';
|
|
32
36
|
export { UseDisclosureReturn } from './_tsup-dts-rollup.js';
|
|
33
37
|
export { UseControllableStateProps } from './_tsup-dts-rollup.js';
|
|
@@ -240,6 +244,8 @@ export { QrCode } from './_tsup-dts-rollup.js';
|
|
|
240
244
|
export { useQrCode } from './_tsup-dts-rollup.js';
|
|
241
245
|
export { UseQrCodeProps } from './_tsup-dts-rollup.js';
|
|
242
246
|
export { UseQrCodeReturn } from './_tsup-dts-rollup.js';
|
|
247
|
+
export { Section } from './_tsup-dts-rollup.js';
|
|
248
|
+
export { useSectionStyles } from './_tsup-dts-rollup.js';
|
|
243
249
|
export { Show } from './_tsup-dts-rollup.js';
|
|
244
250
|
export { ShowProps } from './_tsup-dts-rollup.js';
|
|
245
251
|
export { Spacer } from './_tsup-dts-rollup.js';
|
package/dist/index.js
CHANGED
|
@@ -1,9 +1,22 @@
|
|
|
1
1
|
import {
|
|
2
|
-
|
|
3
|
-
|
|
2
|
+
Em,
|
|
3
|
+
Strong,
|
|
4
|
+
Text
|
|
5
|
+
} from "./chunk-J5UCKCIO.js";
|
|
4
6
|
import {
|
|
5
7
|
Wrap
|
|
6
8
|
} from "./chunk-LGLJ2QUW.js";
|
|
9
|
+
import {
|
|
10
|
+
VisuallyHidden
|
|
11
|
+
} from "./chunk-HHTTORZ6.js";
|
|
12
|
+
import {
|
|
13
|
+
Tabs,
|
|
14
|
+
useTabsContext,
|
|
15
|
+
useTabsStyles
|
|
16
|
+
} from "./chunk-5YNHX4C7.js";
|
|
17
|
+
import {
|
|
18
|
+
Textarea
|
|
19
|
+
} from "./chunk-CQD32UVJ.js";
|
|
7
20
|
import {
|
|
8
21
|
Tag
|
|
9
22
|
} from "./chunk-WJZED26X.js";
|
|
@@ -13,47 +26,46 @@ import {
|
|
|
13
26
|
import {
|
|
14
27
|
Toaster,
|
|
15
28
|
toast
|
|
16
|
-
} from "./chunk-
|
|
29
|
+
} from "./chunk-NBNSPEJB.js";
|
|
30
|
+
import {
|
|
31
|
+
Toggle
|
|
32
|
+
} from "./chunk-PEVIP5UT.js";
|
|
17
33
|
import {
|
|
18
34
|
Tooltip
|
|
19
35
|
} from "./chunk-7MCVXFWM.js";
|
|
20
36
|
import {
|
|
21
|
-
|
|
22
|
-
} from "./chunk-
|
|
23
|
-
import {
|
|
24
|
-
Em,
|
|
25
|
-
Strong,
|
|
26
|
-
Text
|
|
27
|
-
} from "./chunk-J5UCKCIO.js";
|
|
28
|
-
import {
|
|
29
|
-
VisuallyHidden
|
|
30
|
-
} from "./chunk-HHTTORZ6.js";
|
|
37
|
+
Slider
|
|
38
|
+
} from "./chunk-HREBIPVW.js";
|
|
31
39
|
import {
|
|
32
|
-
|
|
33
|
-
|
|
40
|
+
HStack,
|
|
41
|
+
Stack,
|
|
42
|
+
StackSeparator,
|
|
43
|
+
VStack
|
|
44
|
+
} from "./chunk-QNKQFCKJ.js";
|
|
34
45
|
import {
|
|
35
46
|
stat_exports
|
|
36
47
|
} from "./chunk-3RHNNKPC.js";
|
|
37
48
|
import {
|
|
38
49
|
Status
|
|
39
50
|
} from "./chunk-U3EPRSD3.js";
|
|
51
|
+
import {
|
|
52
|
+
steps_exports
|
|
53
|
+
} from "./chunk-XQTIY2ND.js";
|
|
40
54
|
import {
|
|
41
55
|
Switch
|
|
42
56
|
} from "./chunk-3E6URZ5P.js";
|
|
43
|
-
import {
|
|
44
|
-
namespace_exports
|
|
45
|
-
} from "./chunk-2UMNJBGS.js";
|
|
46
57
|
import {
|
|
47
58
|
Table
|
|
48
59
|
} from "./chunk-TH6YCBEG.js";
|
|
49
60
|
import {
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
useTabsStyles
|
|
53
|
-
} from "./chunk-5YNHX4C7.js";
|
|
61
|
+
namespace_exports
|
|
62
|
+
} from "./chunk-2UMNJBGS.js";
|
|
54
63
|
import {
|
|
55
64
|
Show
|
|
56
65
|
} from "./chunk-LU2H6GWC.js";
|
|
66
|
+
import {
|
|
67
|
+
Separator
|
|
68
|
+
} from "./chunk-27OMFCPD.js";
|
|
57
69
|
import {
|
|
58
70
|
Skeleton,
|
|
59
71
|
SkeletonCircle,
|
|
@@ -69,18 +81,15 @@ import {
|
|
|
69
81
|
SkipNavContent,
|
|
70
82
|
SkipNavLink
|
|
71
83
|
} from "./chunk-GDDJYUWM.js";
|
|
72
|
-
import {
|
|
73
|
-
Slider
|
|
74
|
-
} from "./chunk-HREBIPVW.js";
|
|
75
84
|
import {
|
|
76
85
|
Spacer
|
|
77
86
|
} from "./chunk-UAX5344Y.js";
|
|
78
87
|
import {
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
} from "./chunk-
|
|
88
|
+
Radio
|
|
89
|
+
} from "./chunk-PZWP36YA.js";
|
|
90
|
+
import {
|
|
91
|
+
RadioGroup
|
|
92
|
+
} from "./chunk-NCNHDETB.js";
|
|
84
93
|
import {
|
|
85
94
|
radio_card_exports
|
|
86
95
|
} from "./chunk-KRJG7H4W.js";
|
|
@@ -88,40 +97,39 @@ import {
|
|
|
88
97
|
RatingGroup
|
|
89
98
|
} from "./chunk-HQVBJT5Y.js";
|
|
90
99
|
import {
|
|
91
|
-
|
|
92
|
-
} from "./chunk-
|
|
100
|
+
SearchInput
|
|
101
|
+
} from "./chunk-C5YLE76Q.js";
|
|
102
|
+
import {
|
|
103
|
+
section_exports,
|
|
104
|
+
useSectionStyles
|
|
105
|
+
} from "./chunk-NRC2PKPJ.js";
|
|
93
106
|
import {
|
|
94
107
|
SegmentedControl
|
|
95
108
|
} from "./chunk-KFDVVTMT.js";
|
|
96
109
|
import {
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
} from "./chunk-C5YLE76Q.js";
|
|
102
|
-
import {
|
|
103
|
-
Separator
|
|
104
|
-
} from "./chunk-27OMFCPD.js";
|
|
110
|
+
Persona,
|
|
111
|
+
PersonaAvatar,
|
|
112
|
+
defaultPersonaPresenceOptions
|
|
113
|
+
} from "./chunk-TYGGMKHU.js";
|
|
105
114
|
import {
|
|
106
115
|
PinInput
|
|
107
116
|
} from "./chunk-RYKJOZ3B.js";
|
|
108
|
-
import {
|
|
109
|
-
page_exports,
|
|
110
|
-
usePageStyles
|
|
111
|
-
} from "./chunk-ZJ2VD224.js";
|
|
112
117
|
import {
|
|
113
118
|
Presence
|
|
114
119
|
} from "./chunk-PONMXNY4.js";
|
|
120
|
+
import {
|
|
121
|
+
ProgressCircle
|
|
122
|
+
} from "./chunk-7HAGRXKM.js";
|
|
123
|
+
import {
|
|
124
|
+
Progress
|
|
125
|
+
} from "./chunk-6YZ76Q2W.js";
|
|
115
126
|
import {
|
|
116
127
|
QrCode,
|
|
117
128
|
useQrCode
|
|
118
129
|
} from "./chunk-PAZQUPKN.js";
|
|
119
130
|
import {
|
|
120
|
-
|
|
121
|
-
} from "./chunk-
|
|
122
|
-
import {
|
|
123
|
-
RadioGroup
|
|
124
|
-
} from "./chunk-NCNHDETB.js";
|
|
131
|
+
Mark
|
|
132
|
+
} from "./chunk-EWCBYJA7.js";
|
|
125
133
|
import {
|
|
126
134
|
menu_exports
|
|
127
135
|
} from "./chunk-7FXZN5MX.js";
|
|
@@ -129,70 +137,67 @@ import {
|
|
|
129
137
|
NativeSelect
|
|
130
138
|
} from "./chunk-TKJXJEXT.js";
|
|
131
139
|
import {
|
|
132
|
-
|
|
133
|
-
} from "./chunk-
|
|
140
|
+
NumberInput
|
|
141
|
+
} from "./chunk-RFBD2ZNL.js";
|
|
134
142
|
import {
|
|
135
143
|
navbar_exports
|
|
136
144
|
} from "./chunk-DJNPK2LM.js";
|
|
137
|
-
import {
|
|
138
|
-
NumberInput
|
|
139
|
-
} from "./chunk-RFBD2ZNL.js";
|
|
140
145
|
import {
|
|
141
146
|
pagination_exports
|
|
142
147
|
} from "./chunk-6XSCENTR.js";
|
|
148
|
+
import {
|
|
149
|
+
page_exports,
|
|
150
|
+
usePageStyles
|
|
151
|
+
} from "./chunk-ZJ2VD224.js";
|
|
143
152
|
import {
|
|
144
153
|
PasswordInput
|
|
145
154
|
} from "./chunk-TXIFPX2A.js";
|
|
146
155
|
import {
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
defaultPersonaPresenceOptions
|
|
150
|
-
} from "./chunk-TYGGMKHU.js";
|
|
156
|
+
Image
|
|
157
|
+
} from "./chunk-FD2V4Y66.js";
|
|
151
158
|
import {
|
|
152
159
|
List
|
|
153
160
|
} from "./chunk-C5KFNMWU.js";
|
|
161
|
+
import {
|
|
162
|
+
Loader
|
|
163
|
+
} from "./chunk-DHFAFRZ4.js";
|
|
154
164
|
import {
|
|
155
165
|
loading_overlay_exports
|
|
156
166
|
} from "./chunk-BDS3APRG.js";
|
|
157
167
|
import {
|
|
158
168
|
Spinner
|
|
159
169
|
} from "./chunk-MK3OG2I4.js";
|
|
160
|
-
import {
|
|
161
|
-
Mark
|
|
162
|
-
} from "./chunk-EWCBYJA7.js";
|
|
163
170
|
import {
|
|
164
171
|
Heading
|
|
165
172
|
} from "./chunk-HZX4AGO5.js";
|
|
166
173
|
import {
|
|
167
174
|
Highlight
|
|
168
175
|
} from "./chunk-TGEP2YAT.js";
|
|
176
|
+
import {
|
|
177
|
+
hover_card_exports
|
|
178
|
+
} from "./chunk-MZ2RY4NU.js";
|
|
169
179
|
import {
|
|
170
180
|
Icon
|
|
171
181
|
} from "./chunk-M3DJWM6D.js";
|
|
172
182
|
import {
|
|
173
183
|
IconBadge
|
|
174
184
|
} from "./chunk-NSFGACD7.js";
|
|
175
|
-
import {
|
|
176
|
-
hover_card_exports
|
|
177
|
-
} from "./chunk-MZ2RY4NU.js";
|
|
178
|
-
import {
|
|
179
|
-
Image
|
|
180
|
-
} from "./chunk-FD2V4Y66.js";
|
|
181
185
|
import {
|
|
182
186
|
InfoTip
|
|
183
|
-
} from "./chunk-
|
|
187
|
+
} from "./chunk-GQYL3VVZ.js";
|
|
184
188
|
import {
|
|
185
189
|
ToggleTip
|
|
186
|
-
} from "./chunk-
|
|
187
|
-
import {
|
|
188
|
-
Portal
|
|
189
|
-
} from "./chunk-UZUMIWPJ.js";
|
|
190
|
+
} from "./chunk-QITSWCWX.js";
|
|
190
191
|
import {
|
|
191
192
|
popover_exports
|
|
192
193
|
} from "./chunk-FVUEAELO.js";
|
|
193
194
|
import {
|
|
194
|
-
|
|
195
|
-
} from "./chunk-
|
|
195
|
+
Portal
|
|
196
|
+
} from "./chunk-UZUMIWPJ.js";
|
|
197
|
+
import {
|
|
198
|
+
file_upload_exports,
|
|
199
|
+
useFileUploadContext
|
|
200
|
+
} from "./chunk-VVTDE7NH.js";
|
|
196
201
|
import {
|
|
197
202
|
FocusTrap
|
|
198
203
|
} from "./chunk-EWATHRZA.js";
|
|
@@ -200,6 +205,9 @@ import {
|
|
|
200
205
|
FormatByte,
|
|
201
206
|
FormatNumber
|
|
202
207
|
} from "./chunk-6WZK2RBQ.js";
|
|
208
|
+
import {
|
|
209
|
+
Float
|
|
210
|
+
} from "./chunk-XD7U6L2E.js";
|
|
203
211
|
import {
|
|
204
212
|
Grid,
|
|
205
213
|
GridItem,
|
|
@@ -212,58 +220,57 @@ import {
|
|
|
212
220
|
Group
|
|
213
221
|
} from "./chunk-3CKGT42F.js";
|
|
214
222
|
import {
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
useFieldStyles
|
|
218
|
-
} from "./chunk-XX2OY7LK.js";
|
|
223
|
+
dialog_exports
|
|
224
|
+
} from "./chunk-HXNGSQQG.js";
|
|
219
225
|
import {
|
|
220
226
|
Editable
|
|
221
227
|
} from "./chunk-TEQVVR3W.js";
|
|
222
|
-
import {
|
|
223
|
-
drawer_exports
|
|
224
|
-
} from "./chunk-HHKMVSL4.js";
|
|
225
228
|
import {
|
|
226
229
|
EnvironmentProvider,
|
|
227
230
|
useEnvironmentContext
|
|
228
231
|
} from "./chunk-LFOA3DZO.js";
|
|
232
|
+
import {
|
|
233
|
+
drawer_exports
|
|
234
|
+
} from "./chunk-HHKMVSL4.js";
|
|
229
235
|
import {
|
|
230
236
|
EmptyState
|
|
231
237
|
} from "./chunk-NGGISORT.js";
|
|
238
|
+
import {
|
|
239
|
+
Field,
|
|
240
|
+
useFieldContext,
|
|
241
|
+
useFieldStyles
|
|
242
|
+
} from "./chunk-XX2OY7LK.js";
|
|
243
|
+
import {
|
|
244
|
+
Flex
|
|
245
|
+
} from "./chunk-JQVOMAD5.js";
|
|
232
246
|
import {
|
|
233
247
|
Fieldset,
|
|
234
248
|
useFieldsetContext
|
|
235
249
|
} from "./chunk-FPRTN3I7.js";
|
|
236
250
|
import {
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
} from "./chunk-VVTDE7NH.js";
|
|
251
|
+
Checkmark
|
|
252
|
+
} from "./chunk-UIP2CHMU.js";
|
|
240
253
|
import {
|
|
241
|
-
|
|
242
|
-
} from "./chunk-
|
|
254
|
+
Code
|
|
255
|
+
} from "./chunk-YMCOU2N5.js";
|
|
243
256
|
import {
|
|
244
257
|
Collapsible
|
|
245
258
|
} from "./chunk-PEJYADAS.js";
|
|
246
|
-
import {
|
|
247
|
-
Code
|
|
248
|
-
} from "./chunk-YMCOU2N5.js";
|
|
249
259
|
import {
|
|
250
260
|
ColorPicker
|
|
251
261
|
} from "./chunk-JR5RLXCK.js";
|
|
252
262
|
import {
|
|
253
263
|
ColorSwatch
|
|
254
264
|
} from "./chunk-TYMVLD3B.js";
|
|
265
|
+
import {
|
|
266
|
+
Container
|
|
267
|
+
} from "./chunk-PIQURQGB.js";
|
|
255
268
|
import {
|
|
256
269
|
Command
|
|
257
270
|
} from "./chunk-5ZKEXMBN.js";
|
|
258
271
|
import {
|
|
259
272
|
Kbd
|
|
260
273
|
} from "./chunk-OQU4LWZW.js";
|
|
261
|
-
import {
|
|
262
|
-
Container
|
|
263
|
-
} from "./chunk-PIQURQGB.js";
|
|
264
|
-
import {
|
|
265
|
-
dialog_exports
|
|
266
|
-
} from "./chunk-HXNGSQQG.js";
|
|
267
274
|
import {
|
|
268
275
|
DataList,
|
|
269
276
|
useDataListStyles
|
|
@@ -283,9 +290,6 @@ import {
|
|
|
283
290
|
import {
|
|
284
291
|
CheckboxCard
|
|
285
292
|
} from "./chunk-NLMFEUVO.js";
|
|
286
|
-
import {
|
|
287
|
-
Checkmark
|
|
288
|
-
} from "./chunk-UIP2CHMU.js";
|
|
289
293
|
import {
|
|
290
294
|
ClientOnly
|
|
291
295
|
} from "./chunk-4N4SHDPB.js";
|
|
@@ -301,11 +305,6 @@ import {
|
|
|
301
305
|
InputPropsProvider
|
|
302
306
|
} from "./chunk-BLSGOJQ7.js";
|
|
303
307
|
import "./chunk-KTLWEUNW.js";
|
|
304
|
-
import "./chunk-YHQ5JGCC.js";
|
|
305
|
-
import {
|
|
306
|
-
Avatar,
|
|
307
|
-
AvatarGroup
|
|
308
|
-
} from "./chunk-FN7TU5F5.js";
|
|
309
308
|
import {
|
|
310
309
|
BackButton
|
|
311
310
|
} from "./chunk-KHCQMSP7.js";
|
|
@@ -318,27 +317,32 @@ import {
|
|
|
318
317
|
useLink,
|
|
319
318
|
useSui
|
|
320
319
|
} from "./chunk-ZULBHMWG.js";
|
|
320
|
+
import {
|
|
321
|
+
Bleed
|
|
322
|
+
} from "./chunk-Y2S4O4UY.js";
|
|
321
323
|
import {
|
|
322
324
|
Badge,
|
|
323
325
|
BadgePropsProvider
|
|
324
326
|
} from "./chunk-R2J5USV6.js";
|
|
327
|
+
import "./chunk-YHQ5JGCC.js";
|
|
325
328
|
import {
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
Blockquote
|
|
330
|
-
} from "./chunk-GSWLAOIM.js";
|
|
329
|
+
Avatar,
|
|
330
|
+
AvatarGroup
|
|
331
|
+
} from "./chunk-FN7TU5F5.js";
|
|
331
332
|
import {
|
|
332
333
|
Box,
|
|
333
334
|
Span
|
|
334
335
|
} from "./chunk-AA5L5WPD.js";
|
|
336
|
+
import {
|
|
337
|
+
Blockquote
|
|
338
|
+
} from "./chunk-GSWLAOIM.js";
|
|
335
339
|
import {
|
|
336
340
|
breadcrumb_exports
|
|
337
341
|
} from "./chunk-CRFTMIQA.js";
|
|
338
342
|
import {
|
|
339
343
|
defaultConfig,
|
|
340
344
|
defaultSystem
|
|
341
|
-
} from "./chunk-
|
|
345
|
+
} from "./chunk-LFITUDGB.js";
|
|
342
346
|
import "./chunk-QAAKAKP7.js";
|
|
343
347
|
import {
|
|
344
348
|
accordion_exports
|
|
@@ -386,6 +390,8 @@ import {
|
|
|
386
390
|
defineTextStyles,
|
|
387
391
|
defineTokens,
|
|
388
392
|
chakra,
|
|
393
|
+
createRecipeContext,
|
|
394
|
+
createSlotRecipeContext,
|
|
389
395
|
useRecipe,
|
|
390
396
|
useSlotRecipe,
|
|
391
397
|
useChakraContext,
|
|
@@ -396,7 +402,9 @@ import {
|
|
|
396
402
|
useBreakpoint,
|
|
397
403
|
useBreakpointValue,
|
|
398
404
|
useControllableState,
|
|
399
|
-
useDisclosure
|
|
405
|
+
useDisclosure,
|
|
406
|
+
createListCollection,
|
|
407
|
+
createContext
|
|
400
408
|
} from "@chakra-ui/react";
|
|
401
409
|
export {
|
|
402
410
|
accordion_exports as Accordion,
|
|
@@ -489,6 +497,7 @@ export {
|
|
|
489
497
|
RadioGroup,
|
|
490
498
|
RatingGroup,
|
|
491
499
|
SearchInput,
|
|
500
|
+
section_exports as Section,
|
|
492
501
|
SegmentedControl,
|
|
493
502
|
namespace_exports as Select,
|
|
494
503
|
Separator,
|
|
@@ -527,7 +536,11 @@ export {
|
|
|
527
536
|
VisuallyHidden,
|
|
528
537
|
Wrap,
|
|
529
538
|
chakra,
|
|
539
|
+
createContext,
|
|
530
540
|
createIcon,
|
|
541
|
+
createListCollection,
|
|
542
|
+
createRecipeContext,
|
|
543
|
+
createSlotRecipeContext,
|
|
531
544
|
createSystem,
|
|
532
545
|
defaultConfig,
|
|
533
546
|
defaultPersonaPresenceOptions,
|
|
@@ -562,6 +575,7 @@ export {
|
|
|
562
575
|
usePageStyles,
|
|
563
576
|
useQrCode,
|
|
564
577
|
useRecipe,
|
|
578
|
+
useSectionStyles,
|
|
565
579
|
useSidebar,
|
|
566
580
|
useSidebarItemStyles,
|
|
567
581
|
useSidebarStyles,
|