@saas-ui/react 3.0.0-next.4 → 3.0.0-next.5
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 +6 -0
- package/dist/_tsup-dts-rollup.d.cts +14 -0
- package/dist/_tsup-dts-rollup.d.ts +14 -0
- package/dist/index.cjs +10 -2
- package/dist/index.d.cts +5 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +119 -111
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -221,6 +221,7 @@ import { Toggle } from '@chakra-ui/react/toggle';
|
|
221
221
|
import type { Token } from '@chakra-ui/react/styled-system';
|
222
222
|
import { Tooltip as Tooltip_2 } from '@chakra-ui/react/tooltip';
|
223
223
|
import { UnstyledProp } from '@chakra-ui/react/styled-system';
|
224
|
+
import { useChakraContext } from '@chakra-ui/react/styled-system';
|
224
225
|
import { useStepsContext as useContext } from '@chakra-ui/react/steps';
|
225
226
|
import { useDataListStyles } from '@chakra-ui/react/data-list';
|
226
227
|
import { useEnvironmentContext } from '@chakra-ui/react/env';
|
@@ -229,13 +230,16 @@ import { useFieldsetContext } from '@chakra-ui/react/fieldset';
|
|
229
230
|
import { useFieldStyles } from '@chakra-ui/react/field';
|
230
231
|
import { useFileUploadContext } from '@chakra-ui/react/file-upload';
|
231
232
|
import { useLocaleContext } from '@chakra-ui/react/locale';
|
233
|
+
import { useRecipe } from '@chakra-ui/react/styled-system';
|
232
234
|
import { UseRecipeOptions } from '@chakra-ui/react';
|
233
235
|
import { useSidebar } from '@saas-ui/core/sidebar';
|
234
236
|
import { UseSidebarReturn } from '@saas-ui/core/sidebar';
|
237
|
+
import { useSlotRecipe } from '@chakra-ui/react/styled-system';
|
235
238
|
import { UseSlotRecipeOptions } from '@chakra-ui/react';
|
236
239
|
import { useTabs } from '@chakra-ui/react/tabs';
|
237
240
|
import { useTabsContext } from '@chakra-ui/react/tabs';
|
238
241
|
import { useTabsStyles } from '@chakra-ui/react/tabs';
|
242
|
+
import { useToken } from '@chakra-ui/react/styled-system';
|
239
243
|
import { VisuallyHidden } from '@chakra-ui/react/visually-hidden';
|
240
244
|
import { VStack } from '@chakra-ui/react/stack';
|
241
245
|
import { WithContextOptions } from '@chakra-ui/react';
|
@@ -4128,6 +4132,8 @@ borderRadius: "panel.lg";
|
|
4128
4132
|
export { HStack }
|
4129
4133
|
export { HStack as HStack_alias_1 }
|
4130
4134
|
|
4135
|
+
export { HTMLChakraProps }
|
4136
|
+
|
4131
4137
|
export { Icon }
|
4132
4138
|
export { Icon as Icon_alias_1 }
|
4133
4139
|
|
@@ -14935,6 +14941,8 @@ export declare const UpTrend: React_2.ForwardRefExoticComponent<BadgeProps & Rea
|
|
14935
14941
|
|
14936
14942
|
export declare const useAppShellStyles: () => Record<string, SystemStyleObject_2>;
|
14937
14943
|
|
14944
|
+
export { useChakraContext }
|
14945
|
+
|
14938
14946
|
export declare const useClassNames: () => Record<string, string>;
|
14939
14947
|
|
14940
14948
|
export { useContext }
|
@@ -14981,6 +14989,8 @@ export { usePageStyles as usePageStyles_alias_2 }
|
|
14981
14989
|
|
14982
14990
|
export declare const usePersonaStyles: () => Record<string, SystemStyleObject_2>;
|
14983
14991
|
|
14992
|
+
export { useRecipe }
|
14993
|
+
|
14984
14994
|
export declare const useRecipeResult: (props: any) => {
|
14985
14995
|
styles: Record<string, SystemStyleObject_2>;
|
14986
14996
|
classNames: Record<string, string>;
|
@@ -15004,6 +15014,8 @@ export { useSidebarStyles }
|
|
15004
15014
|
export { useSidebarStyles as useSidebarStyles_alias_1 }
|
15005
15015
|
export { useSidebarStyles as useSidebarStyles_alias_2 }
|
15006
15016
|
|
15017
|
+
export { useSlotRecipe }
|
15018
|
+
|
15007
15019
|
declare const useSui: () => SuiContextValue;
|
15008
15020
|
export { useSui }
|
15009
15021
|
export { useSui as useSui_alias_1 }
|
@@ -15017,6 +15029,8 @@ export { useTabsContext as useTabsContext_alias_1 }
|
|
15017
15029
|
export { useTabsStyles }
|
15018
15030
|
export { useTabsStyles as useTabsStyles_alias_1 }
|
15019
15031
|
|
15032
|
+
export { useToken }
|
15033
|
+
|
15020
15034
|
export declare const utilities: {
|
15021
15035
|
focusRing: {
|
15022
15036
|
values: string[];
|
@@ -221,6 +221,7 @@ import { Toggle } from '@chakra-ui/react/toggle';
|
|
221
221
|
import type { Token } from '@chakra-ui/react/styled-system';
|
222
222
|
import { Tooltip as Tooltip_2 } from '@chakra-ui/react/tooltip';
|
223
223
|
import { UnstyledProp } from '@chakra-ui/react/styled-system';
|
224
|
+
import { useChakraContext } from '@chakra-ui/react/styled-system';
|
224
225
|
import { useStepsContext as useContext } from '@chakra-ui/react/steps';
|
225
226
|
import { useDataListStyles } from '@chakra-ui/react/data-list';
|
226
227
|
import { useEnvironmentContext } from '@chakra-ui/react/env';
|
@@ -229,13 +230,16 @@ import { useFieldsetContext } from '@chakra-ui/react/fieldset';
|
|
229
230
|
import { useFieldStyles } from '@chakra-ui/react/field';
|
230
231
|
import { useFileUploadContext } from '@chakra-ui/react/file-upload';
|
231
232
|
import { useLocaleContext } from '@chakra-ui/react/locale';
|
233
|
+
import { useRecipe } from '@chakra-ui/react/styled-system';
|
232
234
|
import { UseRecipeOptions } from '@chakra-ui/react';
|
233
235
|
import { useSidebar } from '@saas-ui/core/sidebar';
|
234
236
|
import { UseSidebarReturn } from '@saas-ui/core/sidebar';
|
237
|
+
import { useSlotRecipe } from '@chakra-ui/react/styled-system';
|
235
238
|
import { UseSlotRecipeOptions } from '@chakra-ui/react';
|
236
239
|
import { useTabs } from '@chakra-ui/react/tabs';
|
237
240
|
import { useTabsContext } from '@chakra-ui/react/tabs';
|
238
241
|
import { useTabsStyles } from '@chakra-ui/react/tabs';
|
242
|
+
import { useToken } from '@chakra-ui/react/styled-system';
|
239
243
|
import { VisuallyHidden } from '@chakra-ui/react/visually-hidden';
|
240
244
|
import { VStack } from '@chakra-ui/react/stack';
|
241
245
|
import { WithContextOptions } from '@chakra-ui/react';
|
@@ -4128,6 +4132,8 @@ borderRadius: "panel.lg";
|
|
4128
4132
|
export { HStack }
|
4129
4133
|
export { HStack as HStack_alias_1 }
|
4130
4134
|
|
4135
|
+
export { HTMLChakraProps }
|
4136
|
+
|
4131
4137
|
export { Icon }
|
4132
4138
|
export { Icon as Icon_alias_1 }
|
4133
4139
|
|
@@ -14935,6 +14941,8 @@ export declare const UpTrend: React_2.ForwardRefExoticComponent<BadgeProps & Rea
|
|
14935
14941
|
|
14936
14942
|
export declare const useAppShellStyles: () => Record<string, SystemStyleObject_2>;
|
14937
14943
|
|
14944
|
+
export { useChakraContext }
|
14945
|
+
|
14938
14946
|
export declare const useClassNames: () => Record<string, string>;
|
14939
14947
|
|
14940
14948
|
export { useContext }
|
@@ -14981,6 +14989,8 @@ export { usePageStyles as usePageStyles_alias_2 }
|
|
14981
14989
|
|
14982
14990
|
export declare const usePersonaStyles: () => Record<string, SystemStyleObject_2>;
|
14983
14991
|
|
14992
|
+
export { useRecipe }
|
14993
|
+
|
14984
14994
|
export declare const useRecipeResult: (props: any) => {
|
14985
14995
|
styles: Record<string, SystemStyleObject_2>;
|
14986
14996
|
classNames: Record<string, string>;
|
@@ -15004,6 +15014,8 @@ export { useSidebarStyles }
|
|
15004
15014
|
export { useSidebarStyles as useSidebarStyles_alias_1 }
|
15005
15015
|
export { useSidebarStyles as useSidebarStyles_alias_2 }
|
15006
15016
|
|
15017
|
+
export { useSlotRecipe }
|
15018
|
+
|
15007
15019
|
declare const useSui: () => SuiContextValue;
|
15008
15020
|
export { useSui }
|
15009
15021
|
export { useSui as useSui_alias_1 }
|
@@ -15017,6 +15029,8 @@ export { useTabsContext as useTabsContext_alias_1 }
|
|
15017
15029
|
export { useTabsStyles }
|
15018
15030
|
export { useTabsStyles as useTabsStyles_alias_1 }
|
15019
15031
|
|
15032
|
+
export { useToken }
|
15033
|
+
|
15020
15034
|
export declare const utilities: {
|
15021
15035
|
focusRing: {
|
15022
15036
|
values: string[];
|
package/dist/index.cjs
CHANGED
@@ -171,6 +171,7 @@ __export(index_exports, {
|
|
171
171
|
defineTextStyles: () => import_styled_system72.defineTextStyles,
|
172
172
|
defineTokens: () => import_styled_system72.defineTokens,
|
173
173
|
toast: () => toast,
|
174
|
+
useChakraContext: () => import_styled_system72.useChakraContext,
|
174
175
|
useDataListStyles: () => import_data_list.useDataListStyles,
|
175
176
|
useEnvironmentContext: () => import_env.useEnvironmentContext,
|
176
177
|
useFieldContext: () => import_field.useFieldContext,
|
@@ -179,12 +180,15 @@ __export(index_exports, {
|
|
179
180
|
useFileUploadContext: () => import_file_upload2.useFileUploadContext,
|
180
181
|
useLink: () => useLink,
|
181
182
|
usePageStyles: () => usePageStyles,
|
183
|
+
useRecipe: () => import_styled_system72.useRecipe,
|
182
184
|
useSidebar: () => import_sidebar2.useSidebar,
|
183
185
|
useSidebarItemStyles: () => useSidebarItemStyles,
|
184
186
|
useSidebarStyles: () => useSidebarStyles,
|
187
|
+
useSlotRecipe: () => import_styled_system72.useSlotRecipe,
|
185
188
|
useSui: () => useSui,
|
186
189
|
useTabsContext: () => import_tabs.useTabsContext,
|
187
|
-
useTabsStyles: () => import_tabs.useTabsStyles
|
190
|
+
useTabsStyles: () => import_tabs.useTabsStyles,
|
191
|
+
useToken: () => import_styled_system72.useToken
|
188
192
|
});
|
189
193
|
module.exports = __toCommonJS(index_exports);
|
190
194
|
|
@@ -12208,6 +12212,7 @@ var import_wrap = require("@chakra-ui/react/wrap");
|
|
12208
12212
|
defineTextStyles,
|
12209
12213
|
defineTokens,
|
12210
12214
|
toast,
|
12215
|
+
useChakraContext,
|
12211
12216
|
useDataListStyles,
|
12212
12217
|
useEnvironmentContext,
|
12213
12218
|
useFieldContext,
|
@@ -12216,10 +12221,13 @@ var import_wrap = require("@chakra-ui/react/wrap");
|
|
12216
12221
|
useFileUploadContext,
|
12217
12222
|
useLink,
|
12218
12223
|
usePageStyles,
|
12224
|
+
useRecipe,
|
12219
12225
|
useSidebar,
|
12220
12226
|
useSidebarItemStyles,
|
12221
12227
|
useSidebarStyles,
|
12228
|
+
useSlotRecipe,
|
12222
12229
|
useSui,
|
12223
12230
|
useTabsContext,
|
12224
|
-
useTabsStyles
|
12231
|
+
useTabsStyles,
|
12232
|
+
useToken
|
12225
12233
|
});
|
package/dist/index.d.cts
CHANGED
@@ -14,10 +14,15 @@ 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 { useRecipe } from './_tsup-dts-rollup.cjs';
|
18
|
+
export { useSlotRecipe } from './_tsup-dts-rollup.cjs';
|
19
|
+
export { useChakraContext } from './_tsup-dts-rollup.cjs';
|
20
|
+
export { useToken } from './_tsup-dts-rollup.cjs';
|
17
21
|
export { RecipeProps } from './_tsup-dts-rollup.cjs';
|
18
22
|
export { SlotRecipeProps } from './_tsup-dts-rollup.cjs';
|
19
23
|
export { RecipeDefinition } from './_tsup-dts-rollup.cjs';
|
20
24
|
export { SlotRecipeDefinition } from './_tsup-dts-rollup.cjs';
|
25
|
+
export { HTMLChakraProps } from './_tsup-dts-rollup.cjs';
|
21
26
|
export { SuiProvider } from './_tsup-dts-rollup.cjs';
|
22
27
|
export { SuiContext } from './_tsup-dts-rollup.cjs';
|
23
28
|
export { useLink } from './_tsup-dts-rollup.cjs';
|
package/dist/index.d.ts
CHANGED
@@ -14,10 +14,15 @@ 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 { useRecipe } from './_tsup-dts-rollup.js';
|
18
|
+
export { useSlotRecipe } from './_tsup-dts-rollup.js';
|
19
|
+
export { useChakraContext } from './_tsup-dts-rollup.js';
|
20
|
+
export { useToken } from './_tsup-dts-rollup.js';
|
17
21
|
export { RecipeProps } from './_tsup-dts-rollup.js';
|
18
22
|
export { SlotRecipeProps } from './_tsup-dts-rollup.js';
|
19
23
|
export { RecipeDefinition } from './_tsup-dts-rollup.js';
|
20
24
|
export { SlotRecipeDefinition } from './_tsup-dts-rollup.js';
|
25
|
+
export { HTMLChakraProps } from './_tsup-dts-rollup.js';
|
21
26
|
export { SuiProvider } from './_tsup-dts-rollup.js';
|
22
27
|
export { SuiContext } from './_tsup-dts-rollup.js';
|
23
28
|
export { useLink } from './_tsup-dts-rollup.js';
|
package/dist/index.js
CHANGED
@@ -1,33 +1,39 @@
|
|
1
|
-
import {
|
2
|
-
Em,
|
3
|
-
Strong,
|
4
|
-
Text
|
5
|
-
} from "./chunk-J5UCKCIO.js";
|
6
1
|
import {
|
7
2
|
Wrap
|
8
3
|
} from "./chunk-LGLJ2QUW.js";
|
9
4
|
import {
|
10
|
-
|
11
|
-
} from "./chunk-
|
5
|
+
VisuallyHidden
|
6
|
+
} from "./chunk-HHTTORZ6.js";
|
12
7
|
import {
|
13
8
|
Timeline
|
14
9
|
} from "./chunk-QLN2CBY6.js";
|
15
10
|
import {
|
16
11
|
Textarea
|
17
12
|
} from "./chunk-CQD32UVJ.js";
|
18
|
-
import {
|
19
|
-
Toggle
|
20
|
-
} from "./chunk-PEVIP5UT.js";
|
21
13
|
import {
|
22
14
|
Toaster,
|
23
15
|
toast
|
24
16
|
} from "./chunk-5RWFHB7W.js";
|
17
|
+
import {
|
18
|
+
Tag
|
19
|
+
} from "./chunk-WJZED26X.js";
|
20
|
+
import {
|
21
|
+
Toggle
|
22
|
+
} from "./chunk-PEVIP5UT.js";
|
25
23
|
import {
|
26
24
|
Tooltip
|
27
25
|
} from "./chunk-7MCVXFWM.js";
|
28
26
|
import {
|
29
|
-
|
30
|
-
|
27
|
+
Em,
|
28
|
+
Strong,
|
29
|
+
Text
|
30
|
+
} from "./chunk-J5UCKCIO.js";
|
31
|
+
import {
|
32
|
+
stat_exports
|
33
|
+
} from "./chunk-3RHNNKPC.js";
|
34
|
+
import {
|
35
|
+
Status
|
36
|
+
} from "./chunk-U3EPRSD3.js";
|
31
37
|
import {
|
32
38
|
HStack,
|
33
39
|
Stack,
|
@@ -35,41 +41,31 @@ import {
|
|
35
41
|
VStack
|
36
42
|
} from "./chunk-QNKQFCKJ.js";
|
37
43
|
import {
|
38
|
-
|
39
|
-
} from "./chunk-
|
40
|
-
import {
|
41
|
-
Status
|
42
|
-
} from "./chunk-U3EPRSD3.js";
|
44
|
+
Switch
|
45
|
+
} from "./chunk-3E6URZ5P.js";
|
43
46
|
import {
|
44
47
|
Table
|
45
48
|
} from "./chunk-TH6YCBEG.js";
|
46
49
|
import {
|
47
50
|
steps_exports
|
48
51
|
} from "./chunk-I2J6U5Z4.js";
|
49
|
-
import {
|
50
|
-
Switch
|
51
|
-
} from "./chunk-3E6URZ5P.js";
|
52
52
|
import {
|
53
53
|
Tabs,
|
54
54
|
useTabsContext,
|
55
55
|
useTabsStyles
|
56
56
|
} from "./chunk-5YNHX4C7.js";
|
57
57
|
import {
|
58
|
-
|
59
|
-
} from "./chunk-
|
60
|
-
import {
|
61
|
-
Show
|
62
|
-
} from "./chunk-LU2H6GWC.js";
|
63
|
-
import {
|
64
|
-
SkipNavContent,
|
65
|
-
SkipNavLink
|
66
|
-
} from "./chunk-GDDJYUWM.js";
|
58
|
+
SegmentedControl
|
59
|
+
} from "./chunk-KFDVVTMT.js";
|
67
60
|
import {
|
68
61
|
sidebar_exports,
|
69
62
|
useSidebar,
|
70
63
|
useSidebarItemStyles,
|
71
64
|
useSidebarStyles
|
72
65
|
} from "./chunk-U23VDAWJ.js";
|
66
|
+
import {
|
67
|
+
namespace_exports
|
68
|
+
} from "./chunk-BVISYY3B.js";
|
73
69
|
import {
|
74
70
|
Skeleton,
|
75
71
|
SkeletonCircle,
|
@@ -78,12 +74,16 @@ import {
|
|
78
74
|
import {
|
79
75
|
Spacer
|
80
76
|
} from "./chunk-UAX5344Y.js";
|
77
|
+
import {
|
78
|
+
SkipNavContent,
|
79
|
+
SkipNavLink
|
80
|
+
} from "./chunk-GDDJYUWM.js";
|
81
81
|
import {
|
82
82
|
Slider
|
83
83
|
} from "./chunk-HREBIPVW.js";
|
84
84
|
import {
|
85
|
-
|
86
|
-
} from "./chunk-
|
85
|
+
Radio
|
86
|
+
} from "./chunk-PZWP36YA.js";
|
87
87
|
import {
|
88
88
|
radio_card_exports
|
89
89
|
} from "./chunk-KRJG7H4W.js";
|
@@ -100,40 +100,40 @@ import {
|
|
100
100
|
Separator
|
101
101
|
} from "./chunk-27OMFCPD.js";
|
102
102
|
import {
|
103
|
-
|
104
|
-
} from "./chunk-
|
105
|
-
import {
|
106
|
-
Persona,
|
107
|
-
PersonaAvatar,
|
108
|
-
defaultPersonaPresenceOptions
|
109
|
-
} from "./chunk-TYGGMKHU.js";
|
103
|
+
Show
|
104
|
+
} from "./chunk-LU2H6GWC.js";
|
110
105
|
import {
|
111
106
|
PinInput
|
112
107
|
} from "./chunk-RYKJOZ3B.js";
|
108
|
+
import {
|
109
|
+
Portal
|
110
|
+
} from "./chunk-UZUMIWPJ.js";
|
113
111
|
import {
|
114
112
|
Presence
|
115
113
|
} from "./chunk-PONMXNY4.js";
|
116
114
|
import {
|
117
|
-
|
118
|
-
} from "./chunk-
|
115
|
+
ProgressCircle
|
116
|
+
} from "./chunk-7HAGRXKM.js";
|
119
117
|
import {
|
120
118
|
Progress
|
121
119
|
} from "./chunk-6YZ76Q2W.js";
|
120
|
+
import {
|
121
|
+
Persona,
|
122
|
+
PersonaAvatar,
|
123
|
+
defaultPersonaPresenceOptions
|
124
|
+
} from "./chunk-TYGGMKHU.js";
|
122
125
|
import {
|
123
126
|
QrCode
|
124
127
|
} from "./chunk-K3MFCSAW.js";
|
125
|
-
import {
|
126
|
-
Radio
|
127
|
-
} from "./chunk-PZWP36YA.js";
|
128
|
-
import {
|
129
|
-
menu_exports
|
130
|
-
} from "./chunk-ZNQNBTWF.js";
|
131
128
|
import {
|
132
129
|
NativeSelect
|
133
130
|
} from "./chunk-5OUNZEYB.js";
|
134
131
|
import {
|
135
132
|
NumberInput
|
136
133
|
} from "./chunk-RFBD2ZNL.js";
|
134
|
+
import {
|
135
|
+
menu_exports
|
136
|
+
} from "./chunk-ZNQNBTWF.js";
|
137
137
|
import {
|
138
138
|
navbar_exports
|
139
139
|
} from "./chunk-DJNPK2LM.js";
|
@@ -141,12 +141,6 @@ import {
|
|
141
141
|
page_exports,
|
142
142
|
usePageStyles
|
143
143
|
} from "./chunk-ZJ2VD224.js";
|
144
|
-
import {
|
145
|
-
loading_overlay_exports
|
146
|
-
} from "./chunk-BDS3APRG.js";
|
147
|
-
import {
|
148
|
-
Spinner
|
149
|
-
} from "./chunk-MK3OG2I4.js";
|
150
144
|
import {
|
151
145
|
pagination_exports
|
152
146
|
} from "./chunk-L4JB7UFV.js";
|
@@ -168,6 +162,12 @@ import {
|
|
168
162
|
import {
|
169
163
|
Loader
|
170
164
|
} from "./chunk-DHFAFRZ4.js";
|
165
|
+
import {
|
166
|
+
loading_overlay_exports
|
167
|
+
} from "./chunk-BDS3APRG.js";
|
168
|
+
import {
|
169
|
+
Spinner
|
170
|
+
} from "./chunk-MK3OG2I4.js";
|
171
171
|
import {
|
172
172
|
Mark
|
173
173
|
} from "./chunk-EWCBYJA7.js";
|
@@ -175,57 +175,56 @@ import {
|
|
175
175
|
Heading
|
176
176
|
} from "./chunk-HZX4AGO5.js";
|
177
177
|
import {
|
178
|
-
|
179
|
-
} from "./chunk-
|
180
|
-
import {
|
181
|
-
Icon
|
182
|
-
} from "./chunk-M3DJWM6D.js";
|
178
|
+
Highlight
|
179
|
+
} from "./chunk-TGEP2YAT.js";
|
183
180
|
import {
|
184
181
|
hover_card_exports
|
185
182
|
} from "./chunk-MZ2RY4NU.js";
|
183
|
+
import {
|
184
|
+
Icon
|
185
|
+
} from "./chunk-M3DJWM6D.js";
|
186
186
|
import {
|
187
187
|
IconBadge
|
188
188
|
} from "./chunk-NSFGACD7.js";
|
189
189
|
import {
|
190
190
|
Image
|
191
191
|
} from "./chunk-FD2V4Y66.js";
|
192
|
-
import {
|
193
|
-
FocusTrap
|
194
|
-
} from "./chunk-EWATHRZA.js";
|
195
192
|
import {
|
196
193
|
Float
|
197
194
|
} from "./chunk-XD7U6L2E.js";
|
198
195
|
import {
|
199
|
-
|
200
|
-
|
201
|
-
} from "./chunk-
|
196
|
+
Fieldset,
|
197
|
+
useFieldsetContext
|
198
|
+
} from "./chunk-FPRTN3I7.js";
|
202
199
|
import {
|
203
|
-
|
204
|
-
} from "./chunk-
|
200
|
+
FocusTrap
|
201
|
+
} from "./chunk-EWATHRZA.js";
|
205
202
|
import {
|
206
203
|
FormatByte,
|
207
204
|
FormatNumber
|
208
205
|
} from "./chunk-6WZK2RBQ.js";
|
206
|
+
import {
|
207
|
+
Grid
|
208
|
+
} from "./chunk-EZZW6JOU.js";
|
209
|
+
import {
|
210
|
+
grid_list_exports
|
211
|
+
} from "./chunk-ZUT5GZTD.js";
|
209
212
|
import {
|
210
213
|
Group
|
211
214
|
} from "./chunk-3CKGT42F.js";
|
212
215
|
import {
|
213
|
-
|
214
|
-
} from "./chunk-
|
215
|
-
import {
|
216
|
-
DataList,
|
217
|
-
useDataListStyles
|
218
|
-
} from "./chunk-52XM5VXJ.js";
|
216
|
+
dialog_exports
|
217
|
+
} from "./chunk-HHUVJRPT.js";
|
219
218
|
import {
|
220
|
-
|
221
|
-
|
222
|
-
} from "./chunk-LFOA3DZO.js";
|
219
|
+
drawer_exports
|
220
|
+
} from "./chunk-KH7E5C3C.js";
|
223
221
|
import {
|
224
222
|
Editable
|
225
223
|
} from "./chunk-TEQVVR3W.js";
|
226
224
|
import {
|
227
|
-
|
228
|
-
|
225
|
+
EnvironmentProvider,
|
226
|
+
useEnvironmentContext
|
227
|
+
} from "./chunk-LFOA3DZO.js";
|
229
228
|
import {
|
230
229
|
EmptyState
|
231
230
|
} from "./chunk-NGGISORT.js";
|
@@ -235,24 +234,21 @@ import {
|
|
235
234
|
useFieldStyles
|
236
235
|
} from "./chunk-XX2OY7LK.js";
|
237
236
|
import {
|
238
|
-
|
239
|
-
|
240
|
-
} from "./chunk-
|
241
|
-
import {
|
242
|
-
Code
|
243
|
-
} from "./chunk-YMCOU2N5.js";
|
237
|
+
file_upload_exports,
|
238
|
+
useFileUploadContext
|
239
|
+
} from "./chunk-EJOXGWHK.js";
|
244
240
|
import {
|
245
241
|
Collapsible
|
246
242
|
} from "./chunk-PEJYADAS.js";
|
243
|
+
import {
|
244
|
+
Code
|
245
|
+
} from "./chunk-YMCOU2N5.js";
|
247
246
|
import {
|
248
247
|
ColorPicker
|
249
248
|
} from "./chunk-JR5RLXCK.js";
|
250
249
|
import {
|
251
250
|
ColorSwatch
|
252
251
|
} from "./chunk-TYMVLD3B.js";
|
253
|
-
import {
|
254
|
-
Container
|
255
|
-
} from "./chunk-PIQURQGB.js";
|
256
252
|
import {
|
257
253
|
Command
|
258
254
|
} from "./chunk-5ZKEXMBN.js";
|
@@ -260,23 +256,38 @@ import {
|
|
260
256
|
Kbd
|
261
257
|
} from "./chunk-OQU4LWZW.js";
|
262
258
|
import {
|
263
|
-
|
264
|
-
} from "./chunk-
|
259
|
+
Container
|
260
|
+
} from "./chunk-PIQURQGB.js";
|
261
|
+
import {
|
262
|
+
clipboard_exports
|
263
|
+
} from "./chunk-YX44E5NF.js";
|
264
|
+
import {
|
265
|
+
Input,
|
266
|
+
InputAddon,
|
267
|
+
InputElement,
|
268
|
+
InputGroup,
|
269
|
+
InputPropsProvider
|
270
|
+
} from "./chunk-BLSGOJQ7.js";
|
271
|
+
import "./chunk-KTLWEUNW.js";
|
272
|
+
import {
|
273
|
+
DataList,
|
274
|
+
useDataListStyles
|
275
|
+
} from "./chunk-52XM5VXJ.js";
|
265
276
|
import {
|
266
277
|
ButtonGroup
|
267
278
|
} from "./chunk-7PWVK3NL.js";
|
268
|
-
import {
|
269
|
-
Center
|
270
|
-
} from "./chunk-46OCNELO.js";
|
271
279
|
import {
|
272
280
|
Card
|
273
281
|
} from "./chunk-7DF4NQNZ.js";
|
274
282
|
import {
|
275
|
-
|
276
|
-
} from "./chunk-
|
283
|
+
Center
|
284
|
+
} from "./chunk-46OCNELO.js";
|
277
285
|
import {
|
278
286
|
Checkbox
|
279
287
|
} from "./chunk-Z3SWPGPQ.js";
|
288
|
+
import {
|
289
|
+
CheckboxCard
|
290
|
+
} from "./chunk-NLMFEUVO.js";
|
280
291
|
import {
|
281
292
|
Checkmark
|
282
293
|
} from "./chunk-UIP2CHMU.js";
|
@@ -284,21 +295,8 @@ import {
|
|
284
295
|
ClientOnly
|
285
296
|
} from "./chunk-4N4SHDPB.js";
|
286
297
|
import {
|
287
|
-
|
288
|
-
} from "./chunk-
|
289
|
-
import {
|
290
|
-
Input,
|
291
|
-
InputAddon,
|
292
|
-
InputElement,
|
293
|
-
InputGroup,
|
294
|
-
InputPropsProvider
|
295
|
-
} from "./chunk-BLSGOJQ7.js";
|
296
|
-
import "./chunk-KTLWEUNW.js";
|
297
|
-
import "./chunk-YHQ5JGCC.js";
|
298
|
-
import {
|
299
|
-
Avatar,
|
300
|
-
AvatarGroup
|
301
|
-
} from "./chunk-FN7TU5F5.js";
|
298
|
+
AspectRatio
|
299
|
+
} from "./chunk-BSE7ZUP5.js";
|
302
300
|
import {
|
303
301
|
BackButton
|
304
302
|
} from "./chunk-LKPWSC6O.js";
|
@@ -355,9 +353,11 @@ import "./chunk-OME35FUG.js";
|
|
355
353
|
import {
|
356
354
|
AppShell
|
357
355
|
} from "./chunk-YTTZX7ZE.js";
|
356
|
+
import "./chunk-YHQ5JGCC.js";
|
358
357
|
import {
|
359
|
-
|
360
|
-
|
358
|
+
Avatar,
|
359
|
+
AvatarGroup
|
360
|
+
} from "./chunk-FN7TU5F5.js";
|
361
361
|
import "./chunk-RTMS5TJN.js";
|
362
362
|
|
363
363
|
// src/index.ts
|
@@ -375,7 +375,11 @@ import {
|
|
375
375
|
defineStyle,
|
376
376
|
defineTextStyles,
|
377
377
|
defineTokens,
|
378
|
-
chakra
|
378
|
+
chakra,
|
379
|
+
useRecipe,
|
380
|
+
useSlotRecipe,
|
381
|
+
useChakraContext,
|
382
|
+
useToken
|
379
383
|
} from "@chakra-ui/react/styled-system";
|
380
384
|
export {
|
381
385
|
accordion_exports as Accordion,
|
@@ -519,6 +523,7 @@ export {
|
|
519
523
|
defineTextStyles,
|
520
524
|
defineTokens,
|
521
525
|
toast,
|
526
|
+
useChakraContext,
|
522
527
|
useDataListStyles,
|
523
528
|
useEnvironmentContext,
|
524
529
|
useFieldContext,
|
@@ -527,10 +532,13 @@ export {
|
|
527
532
|
useFileUploadContext,
|
528
533
|
useLink,
|
529
534
|
usePageStyles,
|
535
|
+
useRecipe,
|
530
536
|
useSidebar,
|
531
537
|
useSidebarItemStyles,
|
532
538
|
useSidebarStyles,
|
539
|
+
useSlotRecipe,
|
533
540
|
useSui,
|
534
541
|
useTabsContext,
|
535
|
-
useTabsStyles
|
542
|
+
useTabsStyles,
|
543
|
+
useToken
|
536
544
|
};
|