raft-ui 0.0.1
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/README.md +24 -0
- package/dist/cn.d.mts +2 -0
- package/dist/cn.mjs +2 -0
- package/dist/index.d.mts +2710 -0
- package/dist/index.mjs +4821 -0
- package/dist/label-DWq4ia5I.mjs +115 -0
- package/dist/styled-props-B3SNekJg.d.mts +16 -0
- package/dist/wip.d.mts +1238 -0
- package/dist/wip.mjs +1416 -0
- package/package.json +70 -0
- package/src/components/avatar/avatar.tsx +375 -0
- package/src/components/avatar/index.ts +17 -0
- package/src/components/badge/badge.tsx +393 -0
- package/src/components/badge/index.ts +2 -0
- package/src/components/banner/banner.tsx +269 -0
- package/src/components/banner/index.ts +8 -0
- package/src/components/bottom-sheet/bottom-sheet.tsx +152 -0
- package/src/components/bottom-sheet/index.ts +22 -0
- package/src/components/button/button.tsx +497 -0
- package/src/components/button/index.ts +2 -0
- package/src/components/checkbox/checkbox-indicator.tsx +128 -0
- package/src/components/checkbox/checkbox.tsx +350 -0
- package/src/components/checkbox/index.ts +2 -0
- package/src/components/combobox/combobox.tsx +603 -0
- package/src/components/combobox/index.ts +52 -0
- package/src/components/context-menu/context-menu.tsx +380 -0
- package/src/components/context-menu/index.ts +34 -0
- package/src/components/conversation-preview-card/conversation-preview-card.tsx +336 -0
- package/src/components/conversation-preview-card/index.ts +32 -0
- package/src/components/description-list/description-list.tsx +116 -0
- package/src/components/description-list/index.ts +14 -0
- package/src/components/dropdown-menu/dropdown-menu.tsx +405 -0
- package/src/components/dropdown-menu/index.ts +38 -0
- package/src/components/empty-state/empty-state.tsx +177 -0
- package/src/components/empty-state/index.ts +16 -0
- package/src/components/field/field.tsx +125 -0
- package/src/components/field/index.ts +18 -0
- package/src/components/inline-code/index.ts +2 -0
- package/src/components/inline-code/inline-code.tsx +33 -0
- package/src/components/input/index.ts +2 -0
- package/src/components/input/input.tsx +76 -0
- package/src/components/input-group/index.ts +7 -0
- package/src/components/input-group/input-group.tsx +215 -0
- package/src/components/kbd/index.ts +2 -0
- package/src/components/kbd/kbd.tsx +43 -0
- package/src/components/label/index.ts +7 -0
- package/src/components/label/label.tsx +99 -0
- package/src/components/lightbox/index.ts +24 -0
- package/src/components/lightbox/lightbox.tsx +245 -0
- package/src/components/list-item/index.ts +20 -0
- package/src/components/list-item/list-item.tsx +263 -0
- package/src/components/media-list-item/index.ts +20 -0
- package/src/components/media-list-item/media-list-item.tsx +169 -0
- package/src/components/notification-center/index.ts +39 -0
- package/src/components/notification-center/notification-center.tsx +558 -0
- package/src/components/panel-header/index.ts +22 -0
- package/src/components/panel-header/panel-header.tsx +199 -0
- package/src/components/popover/index.ts +30 -0
- package/src/components/popover/popover.tsx +248 -0
- package/src/components/preview-shell/index.ts +2 -0
- package/src/components/preview-shell/preview-shell.tsx +51 -0
- package/src/components/quoted-message-card/index.ts +36 -0
- package/src/components/quoted-message-card/quoted-message-card.tsx +391 -0
- package/src/components/radio-group/index.ts +6 -0
- package/src/components/radio-group/radio-group.tsx +119 -0
- package/src/components/section-header/index.ts +16 -0
- package/src/components/section-header/section-header.tsx +117 -0
- package/src/components/section-label/index.ts +2 -0
- package/src/components/section-label/section-label.tsx +38 -0
- package/src/components/segmented-control/index.ts +12 -0
- package/src/components/segmented-control/segmented-control.tsx +129 -0
- package/src/components/select/index.ts +40 -0
- package/src/components/select/select.tsx +382 -0
- package/src/components/spinner/index.ts +2 -0
- package/src/components/spinner/spinner.tsx +228 -0
- package/src/components/status/index.ts +2 -0
- package/src/components/status/status.tsx +152 -0
- package/src/components/tabs/index.ts +24 -0
- package/src/components/tabs/tabs.tsx +417 -0
- package/src/components/text/index.ts +2 -0
- package/src/components/text/text.tsx +130 -0
- package/src/components/textarea/index.ts +2 -0
- package/src/components/textarea/textarea.tsx +136 -0
- package/src/components/toggle-group/index.ts +12 -0
- package/src/components/toggle-group/toggle-group.tsx +111 -0
- package/src/components/tooltip/index.ts +14 -0
- package/src/components/tooltip/tooltip.tsx +186 -0
- package/src/fonts/brutal.css +2 -0
- package/src/index.ts +404 -0
- package/src/legacy/AttentionDot.tsx +28 -0
- package/src/legacy/AvatarListRow.tsx +87 -0
- package/src/legacy/AvatarSlot.tsx +157 -0
- package/src/legacy/Badge.tsx +95 -0
- package/src/legacy/Banner.tsx +74 -0
- package/src/legacy/BottomSheet.tsx +76 -0
- package/src/legacy/CheckMarker.tsx +72 -0
- package/src/legacy/Checkbox.tsx +81 -0
- package/src/legacy/ConversationPreviewCard.tsx +169 -0
- package/src/legacy/DismissBackdrop.tsx +68 -0
- package/src/legacy/EmptyState.tsx +63 -0
- package/src/legacy/ExperimentalBadge.tsx +19 -0
- package/src/legacy/FormField.tsx +106 -0
- package/src/legacy/KeyValueRow.tsx +67 -0
- package/src/legacy/Lightbox.tsx +119 -0
- package/src/legacy/NotificationCenter.tsx +217 -0
- package/src/legacy/PanelHeader.tsx +94 -0
- package/src/legacy/PreviewShell.tsx +40 -0
- package/src/legacy/QuotedMessageCard.tsx +181 -0
- package/src/legacy/ReorderablePanelTabs.tsx +151 -0
- package/src/legacy/SandboxedPreviewFrame.tsx +59 -0
- package/src/legacy/SearchInput.tsx +23 -0
- package/src/legacy/SectionEyebrow.tsx +60 -0
- package/src/legacy/SectionHeader.tsx +68 -0
- package/src/legacy/SegmentedControl.tsx +74 -0
- package/src/legacy/SlugInput.tsx +29 -0
- package/src/legacy/Spinner.tsx +89 -0
- package/src/legacy/StatusDot.tsx +51 -0
- package/src/legacy/SurfaceListItem.tsx +32 -0
- package/src/legacy/Textarea.tsx +137 -0
- package/src/legacy/button.tsx +100 -0
- package/src/legacy/context-menu-divider.tsx +12 -0
- package/src/legacy/menu-item.tsx +66 -0
- package/src/legacy/selection-popover.tsx +212 -0
- package/src/legacy/server-switcher-menu.tsx +203 -0
- package/src/legacy/source.css +240 -0
- package/src/lib/cn.ts +1 -0
- package/src/lib/styled-props.ts +11 -0
- package/src/lib/theme/theme-context.ts +28 -0
- package/src/lib/theme/theme-provider.tsx +181 -0
- package/src/lib/theme/use-theme.ts +12 -0
- package/src/lib/tv.ts +29 -0
- package/src/lib/without-children.ts +6 -0
- package/src/styles.css +467 -0
- package/src/wip.ts +255 -0
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,2710 @@
|
|
|
1
|
+
import { n as VariantProps, t as StyledProps } from "./styled-props-B3SNekJg.mjs";
|
|
2
|
+
import { cn } from "./cn.mjs";
|
|
3
|
+
import { Button as Button$1 } from "@base-ui/react/button";
|
|
4
|
+
import { ComponentPropsWithRef, ReactNode } from "react";
|
|
5
|
+
import { useRender } from "@base-ui/react/use-render";
|
|
6
|
+
import { Checkbox as Checkbox$1 } from "@base-ui/react/checkbox";
|
|
7
|
+
import { Avatar as Avatar$1, ContextMenu as ContextMenu$1 } from "@base-ui/react";
|
|
8
|
+
import { Menu } from "@base-ui/react/menu";
|
|
9
|
+
import { Tooltip as Tooltip$1 } from "@base-ui/react/tooltip";
|
|
10
|
+
import { Popover as Popover$1 } from "@base-ui/react/popover";
|
|
11
|
+
import { Input as Input$1 } from "@base-ui/react/input";
|
|
12
|
+
import { Combobox as Combobox$1 } from "@base-ui/react/combobox";
|
|
13
|
+
import { Select as Select$1 } from "@base-ui/react/select";
|
|
14
|
+
import { Radio } from "@base-ui/react/radio";
|
|
15
|
+
import { RadioGroup as RadioGroup$1 } from "@base-ui/react/radio-group";
|
|
16
|
+
import { Tabs as Tabs$1 } from "@base-ui/react/tabs";
|
|
17
|
+
|
|
18
|
+
//#region src/components/button/button.d.ts
|
|
19
|
+
declare const buttonVariants: import("tailwind-variants/lite").TVReturnType<{
|
|
20
|
+
theme: {
|
|
21
|
+
brutal: {
|
|
22
|
+
root: string[];
|
|
23
|
+
};
|
|
24
|
+
elegant: {
|
|
25
|
+
root: string[];
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
variant: {
|
|
29
|
+
primary: {
|
|
30
|
+
root: string[];
|
|
31
|
+
};
|
|
32
|
+
default: {
|
|
33
|
+
root: string[];
|
|
34
|
+
};
|
|
35
|
+
information: {
|
|
36
|
+
root: string[];
|
|
37
|
+
};
|
|
38
|
+
muted: {
|
|
39
|
+
root: string[];
|
|
40
|
+
};
|
|
41
|
+
accent: {
|
|
42
|
+
root: string[];
|
|
43
|
+
};
|
|
44
|
+
warning: {
|
|
45
|
+
root: string[];
|
|
46
|
+
};
|
|
47
|
+
outline: {
|
|
48
|
+
root: string[];
|
|
49
|
+
};
|
|
50
|
+
ghost: {
|
|
51
|
+
root: string[];
|
|
52
|
+
};
|
|
53
|
+
link: {
|
|
54
|
+
root: string[];
|
|
55
|
+
};
|
|
56
|
+
"danger-secondary": {
|
|
57
|
+
root: string[];
|
|
58
|
+
};
|
|
59
|
+
danger: {
|
|
60
|
+
root: string[];
|
|
61
|
+
};
|
|
62
|
+
"danger-outline": {
|
|
63
|
+
root: string[];
|
|
64
|
+
};
|
|
65
|
+
};
|
|
66
|
+
size: {
|
|
67
|
+
xs: {
|
|
68
|
+
root: string[];
|
|
69
|
+
};
|
|
70
|
+
sm: {
|
|
71
|
+
root: string[];
|
|
72
|
+
};
|
|
73
|
+
md: {
|
|
74
|
+
root: string[];
|
|
75
|
+
};
|
|
76
|
+
lg: {
|
|
77
|
+
root: string[];
|
|
78
|
+
};
|
|
79
|
+
"icon-xs": {
|
|
80
|
+
root: string[];
|
|
81
|
+
};
|
|
82
|
+
"icon-sm": {
|
|
83
|
+
root: string[];
|
|
84
|
+
};
|
|
85
|
+
"icon-md": {
|
|
86
|
+
root: string[];
|
|
87
|
+
};
|
|
88
|
+
"icon-lg": {
|
|
89
|
+
root: string[];
|
|
90
|
+
};
|
|
91
|
+
};
|
|
92
|
+
}, {
|
|
93
|
+
root: string[];
|
|
94
|
+
content: string;
|
|
95
|
+
loadingIndicator: string;
|
|
96
|
+
}, undefined, {
|
|
97
|
+
theme: {
|
|
98
|
+
brutal: {
|
|
99
|
+
root: string[];
|
|
100
|
+
};
|
|
101
|
+
elegant: {
|
|
102
|
+
root: string[];
|
|
103
|
+
};
|
|
104
|
+
};
|
|
105
|
+
variant: {
|
|
106
|
+
primary: {
|
|
107
|
+
root: string[];
|
|
108
|
+
};
|
|
109
|
+
default: {
|
|
110
|
+
root: string[];
|
|
111
|
+
};
|
|
112
|
+
information: {
|
|
113
|
+
root: string[];
|
|
114
|
+
};
|
|
115
|
+
muted: {
|
|
116
|
+
root: string[];
|
|
117
|
+
};
|
|
118
|
+
accent: {
|
|
119
|
+
root: string[];
|
|
120
|
+
};
|
|
121
|
+
warning: {
|
|
122
|
+
root: string[];
|
|
123
|
+
};
|
|
124
|
+
outline: {
|
|
125
|
+
root: string[];
|
|
126
|
+
};
|
|
127
|
+
ghost: {
|
|
128
|
+
root: string[];
|
|
129
|
+
};
|
|
130
|
+
link: {
|
|
131
|
+
root: string[];
|
|
132
|
+
};
|
|
133
|
+
"danger-secondary": {
|
|
134
|
+
root: string[];
|
|
135
|
+
};
|
|
136
|
+
danger: {
|
|
137
|
+
root: string[];
|
|
138
|
+
};
|
|
139
|
+
"danger-outline": {
|
|
140
|
+
root: string[];
|
|
141
|
+
};
|
|
142
|
+
};
|
|
143
|
+
size: {
|
|
144
|
+
xs: {
|
|
145
|
+
root: string[];
|
|
146
|
+
};
|
|
147
|
+
sm: {
|
|
148
|
+
root: string[];
|
|
149
|
+
};
|
|
150
|
+
md: {
|
|
151
|
+
root: string[];
|
|
152
|
+
};
|
|
153
|
+
lg: {
|
|
154
|
+
root: string[];
|
|
155
|
+
};
|
|
156
|
+
"icon-xs": {
|
|
157
|
+
root: string[];
|
|
158
|
+
};
|
|
159
|
+
"icon-sm": {
|
|
160
|
+
root: string[];
|
|
161
|
+
};
|
|
162
|
+
"icon-md": {
|
|
163
|
+
root: string[];
|
|
164
|
+
};
|
|
165
|
+
"icon-lg": {
|
|
166
|
+
root: string[];
|
|
167
|
+
};
|
|
168
|
+
};
|
|
169
|
+
}, {
|
|
170
|
+
root: string[];
|
|
171
|
+
content: string;
|
|
172
|
+
loadingIndicator: string;
|
|
173
|
+
}, import("tailwind-variants/lite").TVReturnType<{
|
|
174
|
+
theme: {
|
|
175
|
+
brutal: {
|
|
176
|
+
root: string[];
|
|
177
|
+
};
|
|
178
|
+
elegant: {
|
|
179
|
+
root: string[];
|
|
180
|
+
};
|
|
181
|
+
};
|
|
182
|
+
variant: {
|
|
183
|
+
primary: {
|
|
184
|
+
root: string[];
|
|
185
|
+
};
|
|
186
|
+
default: {
|
|
187
|
+
root: string[];
|
|
188
|
+
};
|
|
189
|
+
information: {
|
|
190
|
+
root: string[];
|
|
191
|
+
};
|
|
192
|
+
muted: {
|
|
193
|
+
root: string[];
|
|
194
|
+
};
|
|
195
|
+
accent: {
|
|
196
|
+
root: string[];
|
|
197
|
+
};
|
|
198
|
+
warning: {
|
|
199
|
+
root: string[];
|
|
200
|
+
};
|
|
201
|
+
outline: {
|
|
202
|
+
root: string[];
|
|
203
|
+
};
|
|
204
|
+
ghost: {
|
|
205
|
+
root: string[];
|
|
206
|
+
};
|
|
207
|
+
link: {
|
|
208
|
+
root: string[];
|
|
209
|
+
};
|
|
210
|
+
"danger-secondary": {
|
|
211
|
+
root: string[];
|
|
212
|
+
};
|
|
213
|
+
danger: {
|
|
214
|
+
root: string[];
|
|
215
|
+
};
|
|
216
|
+
"danger-outline": {
|
|
217
|
+
root: string[];
|
|
218
|
+
};
|
|
219
|
+
};
|
|
220
|
+
size: {
|
|
221
|
+
xs: {
|
|
222
|
+
root: string[];
|
|
223
|
+
};
|
|
224
|
+
sm: {
|
|
225
|
+
root: string[];
|
|
226
|
+
};
|
|
227
|
+
md: {
|
|
228
|
+
root: string[];
|
|
229
|
+
};
|
|
230
|
+
lg: {
|
|
231
|
+
root: string[];
|
|
232
|
+
};
|
|
233
|
+
"icon-xs": {
|
|
234
|
+
root: string[];
|
|
235
|
+
};
|
|
236
|
+
"icon-sm": {
|
|
237
|
+
root: string[];
|
|
238
|
+
};
|
|
239
|
+
"icon-md": {
|
|
240
|
+
root: string[];
|
|
241
|
+
};
|
|
242
|
+
"icon-lg": {
|
|
243
|
+
root: string[];
|
|
244
|
+
};
|
|
245
|
+
};
|
|
246
|
+
}, {
|
|
247
|
+
root: string[];
|
|
248
|
+
content: string;
|
|
249
|
+
loadingIndicator: string;
|
|
250
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
251
|
+
type ButtonProps = StyledProps<Button$1.Props> & Omit<VariantProps<typeof buttonVariants>, "theme"> & {
|
|
252
|
+
loading?: boolean;
|
|
253
|
+
loadingLabel?: string;
|
|
254
|
+
};
|
|
255
|
+
declare function Button({
|
|
256
|
+
variant,
|
|
257
|
+
size,
|
|
258
|
+
loading,
|
|
259
|
+
loadingLabel,
|
|
260
|
+
disabled,
|
|
261
|
+
className,
|
|
262
|
+
children,
|
|
263
|
+
render,
|
|
264
|
+
nativeButton,
|
|
265
|
+
...props
|
|
266
|
+
}: ButtonProps): import("react").JSX.Element;
|
|
267
|
+
//#endregion
|
|
268
|
+
//#region src/components/checkbox/checkbox.d.ts
|
|
269
|
+
declare const checkbox: import("tailwind-variants/lite").TVReturnType<{
|
|
270
|
+
theme: {
|
|
271
|
+
brutal: {};
|
|
272
|
+
elegant: {
|
|
273
|
+
root: string[];
|
|
274
|
+
graphic: string[];
|
|
275
|
+
};
|
|
276
|
+
};
|
|
277
|
+
variant: {
|
|
278
|
+
default: {};
|
|
279
|
+
primary: {};
|
|
280
|
+
};
|
|
281
|
+
color: {
|
|
282
|
+
default: {};
|
|
283
|
+
primary: {};
|
|
284
|
+
};
|
|
285
|
+
size: {
|
|
286
|
+
sm: {
|
|
287
|
+
root: string;
|
|
288
|
+
};
|
|
289
|
+
md: {
|
|
290
|
+
root: string;
|
|
291
|
+
};
|
|
292
|
+
};
|
|
293
|
+
}, {
|
|
294
|
+
root: string[];
|
|
295
|
+
indicator: string[];
|
|
296
|
+
graphic: string[];
|
|
297
|
+
outerRect: string[];
|
|
298
|
+
overlayRect: string[];
|
|
299
|
+
mark: string[];
|
|
300
|
+
checkMark: string[];
|
|
301
|
+
indeterminateMark: string[];
|
|
302
|
+
}, undefined, {
|
|
303
|
+
theme: {
|
|
304
|
+
brutal: {};
|
|
305
|
+
elegant: {
|
|
306
|
+
root: string[];
|
|
307
|
+
graphic: string[];
|
|
308
|
+
};
|
|
309
|
+
};
|
|
310
|
+
variant: {
|
|
311
|
+
default: {};
|
|
312
|
+
primary: {};
|
|
313
|
+
};
|
|
314
|
+
color: {
|
|
315
|
+
default: {};
|
|
316
|
+
primary: {};
|
|
317
|
+
};
|
|
318
|
+
size: {
|
|
319
|
+
sm: {
|
|
320
|
+
root: string;
|
|
321
|
+
};
|
|
322
|
+
md: {
|
|
323
|
+
root: string;
|
|
324
|
+
};
|
|
325
|
+
};
|
|
326
|
+
}, {
|
|
327
|
+
root: string[];
|
|
328
|
+
indicator: string[];
|
|
329
|
+
graphic: string[];
|
|
330
|
+
outerRect: string[];
|
|
331
|
+
overlayRect: string[];
|
|
332
|
+
mark: string[];
|
|
333
|
+
checkMark: string[];
|
|
334
|
+
indeterminateMark: string[];
|
|
335
|
+
}, import("tailwind-variants/lite").TVReturnType<{
|
|
336
|
+
theme: {
|
|
337
|
+
brutal: {};
|
|
338
|
+
elegant: {
|
|
339
|
+
root: string[];
|
|
340
|
+
graphic: string[];
|
|
341
|
+
};
|
|
342
|
+
};
|
|
343
|
+
variant: {
|
|
344
|
+
default: {};
|
|
345
|
+
primary: {};
|
|
346
|
+
};
|
|
347
|
+
color: {
|
|
348
|
+
default: {};
|
|
349
|
+
primary: {};
|
|
350
|
+
};
|
|
351
|
+
size: {
|
|
352
|
+
sm: {
|
|
353
|
+
root: string;
|
|
354
|
+
};
|
|
355
|
+
md: {
|
|
356
|
+
root: string;
|
|
357
|
+
};
|
|
358
|
+
};
|
|
359
|
+
}, {
|
|
360
|
+
root: string[];
|
|
361
|
+
indicator: string[];
|
|
362
|
+
graphic: string[];
|
|
363
|
+
outerRect: string[];
|
|
364
|
+
overlayRect: string[];
|
|
365
|
+
mark: string[];
|
|
366
|
+
checkMark: string[];
|
|
367
|
+
indeterminateMark: string[];
|
|
368
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
369
|
+
type CheckboxProps = StyledProps<Checkbox$1.Root.Props> & Omit<VariantProps<typeof checkbox>, "theme">;
|
|
370
|
+
declare function Checkbox({
|
|
371
|
+
size,
|
|
372
|
+
color,
|
|
373
|
+
variant,
|
|
374
|
+
className,
|
|
375
|
+
...props
|
|
376
|
+
}: CheckboxProps): import("react").JSX.Element;
|
|
377
|
+
//#endregion
|
|
378
|
+
//#region src/components/kbd/kbd.d.ts
|
|
379
|
+
type KbdProps = ComponentPropsWithRef<"kbd">;
|
|
380
|
+
declare function Kbd({
|
|
381
|
+
className,
|
|
382
|
+
...props
|
|
383
|
+
}: KbdProps): import("react").JSX.Element;
|
|
384
|
+
type KbdGroupProps = ComponentPropsWithRef<"span">;
|
|
385
|
+
declare function KbdGroup({
|
|
386
|
+
className,
|
|
387
|
+
...props
|
|
388
|
+
}: KbdGroupProps): import("react").JSX.Element;
|
|
389
|
+
//#endregion
|
|
390
|
+
//#region src/components/context-menu/context-menu.d.ts
|
|
391
|
+
type ContextMenuProps = ContextMenu$1.Root.Props;
|
|
392
|
+
declare function ContextMenu(props: ContextMenuProps): import("react").JSX.Element;
|
|
393
|
+
type ContextMenuSubmenuProps = ContextMenu$1.SubmenuRoot.Props;
|
|
394
|
+
declare function ContextMenuSubmenu(props: ContextMenuSubmenuProps): import("react").JSX.Element;
|
|
395
|
+
type ContextMenuTriggerProps = StyledProps<ContextMenu$1.Trigger.Props>;
|
|
396
|
+
declare function ContextMenuTrigger({
|
|
397
|
+
className,
|
|
398
|
+
...props
|
|
399
|
+
}: ContextMenuTriggerProps): import("react").JSX.Element;
|
|
400
|
+
type ContextMenuPortalProps = ContextMenu$1.Portal.Props;
|
|
401
|
+
declare function ContextMenuPortal(props: ContextMenuPortalProps): import("react").JSX.Element;
|
|
402
|
+
type ContextMenuContentProps = StyledProps<ContextMenu$1.Popup.Props> & Partial<Pick<ContextMenu$1.Positioner.Props, "align" | "alignOffset" | "anchor" | "arrowPadding" | "collisionAvoidance" | "collisionBoundary" | "collisionPadding" | "disableAnchorTracking" | "positionMethod" | "side" | "sideOffset" | "sticky">> & {
|
|
403
|
+
portalProps?: ContextMenuPortalProps;
|
|
404
|
+
};
|
|
405
|
+
declare function ContextMenuContent({
|
|
406
|
+
align,
|
|
407
|
+
alignOffset,
|
|
408
|
+
anchor,
|
|
409
|
+
arrowPadding,
|
|
410
|
+
collisionAvoidance,
|
|
411
|
+
collisionBoundary,
|
|
412
|
+
collisionPadding,
|
|
413
|
+
disableAnchorTracking,
|
|
414
|
+
positionMethod,
|
|
415
|
+
side,
|
|
416
|
+
sideOffset,
|
|
417
|
+
sticky,
|
|
418
|
+
portalProps,
|
|
419
|
+
className,
|
|
420
|
+
...props
|
|
421
|
+
}: ContextMenuContentProps): import("react").JSX.Element;
|
|
422
|
+
type ContextMenuItemProps = StyledProps<ContextMenu$1.Item.Props>;
|
|
423
|
+
declare function ContextMenuItem({
|
|
424
|
+
className,
|
|
425
|
+
...props
|
|
426
|
+
}: ContextMenuItemProps): import("react").JSX.Element;
|
|
427
|
+
type ContextMenuSubmenuTriggerProps = StyledProps<ContextMenu$1.SubmenuTrigger.Props>;
|
|
428
|
+
declare function ContextMenuSubmenuTrigger({
|
|
429
|
+
className,
|
|
430
|
+
...props
|
|
431
|
+
}: ContextMenuSubmenuTriggerProps): import("react").JSX.Element;
|
|
432
|
+
type ContextMenuLabelProps = StyledProps<ComponentPropsWithRef<"div">>;
|
|
433
|
+
declare function ContextMenuLabel({
|
|
434
|
+
className,
|
|
435
|
+
...props
|
|
436
|
+
}: ContextMenuLabelProps): import("react").JSX.Element;
|
|
437
|
+
type ContextMenuShortcutProps = KbdProps;
|
|
438
|
+
declare function ContextMenuShortcut({
|
|
439
|
+
className,
|
|
440
|
+
...props
|
|
441
|
+
}: ContextMenuShortcutProps): import("react").JSX.Element;
|
|
442
|
+
type ContextMenuSeparatorProps = StyledProps<ContextMenu$1.Separator.Props>;
|
|
443
|
+
declare function ContextMenuSeparator({
|
|
444
|
+
className,
|
|
445
|
+
...props
|
|
446
|
+
}: ContextMenuSeparatorProps): import("react").JSX.Element;
|
|
447
|
+
type ContextMenuRadioGroupProps = StyledProps<ContextMenu$1.RadioGroup.Props>;
|
|
448
|
+
declare function ContextMenuRadioGroup({
|
|
449
|
+
...props
|
|
450
|
+
}: ContextMenuRadioGroupProps): import("react").JSX.Element;
|
|
451
|
+
type ContextMenuRadioItemProps = StyledProps<ContextMenu$1.RadioItem.Props>;
|
|
452
|
+
declare function ContextMenuRadioItem({
|
|
453
|
+
className,
|
|
454
|
+
children,
|
|
455
|
+
...props
|
|
456
|
+
}: ContextMenuRadioItemProps): import("react").JSX.Element;
|
|
457
|
+
type ContextMenuRadioItemIndicatorProps = StyledProps<ContextMenu$1.RadioItemIndicator.Props>;
|
|
458
|
+
declare function ContextMenuRadioItemIndicator({
|
|
459
|
+
className,
|
|
460
|
+
...props
|
|
461
|
+
}: ContextMenuRadioItemIndicatorProps): import("react").JSX.Element;
|
|
462
|
+
type ContextMenuCheckboxItemProps = StyledProps<ContextMenu$1.CheckboxItem.Props>;
|
|
463
|
+
declare function ContextMenuCheckboxItem({
|
|
464
|
+
className,
|
|
465
|
+
children,
|
|
466
|
+
...props
|
|
467
|
+
}: ContextMenuCheckboxItemProps): import("react").JSX.Element;
|
|
468
|
+
type ContextMenuCheckboxItemIndicatorProps = StyledProps<ContextMenu$1.CheckboxItemIndicator.Props>;
|
|
469
|
+
declare function ContextMenuCheckboxItemIndicator({
|
|
470
|
+
className,
|
|
471
|
+
...props
|
|
472
|
+
}: ContextMenuCheckboxItemIndicatorProps): import("react").JSX.Element;
|
|
473
|
+
//#endregion
|
|
474
|
+
//#region src/components/badge/badge.d.ts
|
|
475
|
+
declare const badge: import("tailwind-variants/lite").TVReturnType<{
|
|
476
|
+
theme: {
|
|
477
|
+
brutal: {
|
|
478
|
+
root: string[];
|
|
479
|
+
};
|
|
480
|
+
elegant: {
|
|
481
|
+
root: string[];
|
|
482
|
+
};
|
|
483
|
+
};
|
|
484
|
+
appearance: {
|
|
485
|
+
solid: {
|
|
486
|
+
root: string;
|
|
487
|
+
};
|
|
488
|
+
soft: {
|
|
489
|
+
root: string;
|
|
490
|
+
};
|
|
491
|
+
outline: {
|
|
492
|
+
root: string;
|
|
493
|
+
};
|
|
494
|
+
};
|
|
495
|
+
variant: {
|
|
496
|
+
default: {
|
|
497
|
+
root: string;
|
|
498
|
+
};
|
|
499
|
+
primary: {
|
|
500
|
+
root: string;
|
|
501
|
+
};
|
|
502
|
+
information: {
|
|
503
|
+
root: string;
|
|
504
|
+
};
|
|
505
|
+
muted: {
|
|
506
|
+
root: string;
|
|
507
|
+
};
|
|
508
|
+
accent: {
|
|
509
|
+
root: string;
|
|
510
|
+
};
|
|
511
|
+
success: {
|
|
512
|
+
root: string;
|
|
513
|
+
};
|
|
514
|
+
warning: {
|
|
515
|
+
root: string;
|
|
516
|
+
};
|
|
517
|
+
danger: {
|
|
518
|
+
root: string;
|
|
519
|
+
};
|
|
520
|
+
};
|
|
521
|
+
uppercase: {
|
|
522
|
+
true: {
|
|
523
|
+
root: string;
|
|
524
|
+
};
|
|
525
|
+
false: {
|
|
526
|
+
root: string;
|
|
527
|
+
};
|
|
528
|
+
};
|
|
529
|
+
}, {
|
|
530
|
+
root: string[];
|
|
531
|
+
}, undefined, {
|
|
532
|
+
theme: {
|
|
533
|
+
brutal: {
|
|
534
|
+
root: string[];
|
|
535
|
+
};
|
|
536
|
+
elegant: {
|
|
537
|
+
root: string[];
|
|
538
|
+
};
|
|
539
|
+
};
|
|
540
|
+
appearance: {
|
|
541
|
+
solid: {
|
|
542
|
+
root: string;
|
|
543
|
+
};
|
|
544
|
+
soft: {
|
|
545
|
+
root: string;
|
|
546
|
+
};
|
|
547
|
+
outline: {
|
|
548
|
+
root: string;
|
|
549
|
+
};
|
|
550
|
+
};
|
|
551
|
+
variant: {
|
|
552
|
+
default: {
|
|
553
|
+
root: string;
|
|
554
|
+
};
|
|
555
|
+
primary: {
|
|
556
|
+
root: string;
|
|
557
|
+
};
|
|
558
|
+
information: {
|
|
559
|
+
root: string;
|
|
560
|
+
};
|
|
561
|
+
muted: {
|
|
562
|
+
root: string;
|
|
563
|
+
};
|
|
564
|
+
accent: {
|
|
565
|
+
root: string;
|
|
566
|
+
};
|
|
567
|
+
success: {
|
|
568
|
+
root: string;
|
|
569
|
+
};
|
|
570
|
+
warning: {
|
|
571
|
+
root: string;
|
|
572
|
+
};
|
|
573
|
+
danger: {
|
|
574
|
+
root: string;
|
|
575
|
+
};
|
|
576
|
+
};
|
|
577
|
+
uppercase: {
|
|
578
|
+
true: {
|
|
579
|
+
root: string;
|
|
580
|
+
};
|
|
581
|
+
false: {
|
|
582
|
+
root: string;
|
|
583
|
+
};
|
|
584
|
+
};
|
|
585
|
+
}, {
|
|
586
|
+
root: string[];
|
|
587
|
+
}, import("tailwind-variants/lite").TVReturnType<{
|
|
588
|
+
theme: {
|
|
589
|
+
brutal: {
|
|
590
|
+
root: string[];
|
|
591
|
+
};
|
|
592
|
+
elegant: {
|
|
593
|
+
root: string[];
|
|
594
|
+
};
|
|
595
|
+
};
|
|
596
|
+
appearance: {
|
|
597
|
+
solid: {
|
|
598
|
+
root: string;
|
|
599
|
+
};
|
|
600
|
+
soft: {
|
|
601
|
+
root: string;
|
|
602
|
+
};
|
|
603
|
+
outline: {
|
|
604
|
+
root: string;
|
|
605
|
+
};
|
|
606
|
+
};
|
|
607
|
+
variant: {
|
|
608
|
+
default: {
|
|
609
|
+
root: string;
|
|
610
|
+
};
|
|
611
|
+
primary: {
|
|
612
|
+
root: string;
|
|
613
|
+
};
|
|
614
|
+
information: {
|
|
615
|
+
root: string;
|
|
616
|
+
};
|
|
617
|
+
muted: {
|
|
618
|
+
root: string;
|
|
619
|
+
};
|
|
620
|
+
accent: {
|
|
621
|
+
root: string;
|
|
622
|
+
};
|
|
623
|
+
success: {
|
|
624
|
+
root: string;
|
|
625
|
+
};
|
|
626
|
+
warning: {
|
|
627
|
+
root: string;
|
|
628
|
+
};
|
|
629
|
+
danger: {
|
|
630
|
+
root: string;
|
|
631
|
+
};
|
|
632
|
+
};
|
|
633
|
+
uppercase: {
|
|
634
|
+
true: {
|
|
635
|
+
root: string;
|
|
636
|
+
};
|
|
637
|
+
false: {
|
|
638
|
+
root: string;
|
|
639
|
+
};
|
|
640
|
+
};
|
|
641
|
+
}, {
|
|
642
|
+
root: string[];
|
|
643
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
644
|
+
type BadgeProps = useRender.ComponentProps<"span"> & Omit<VariantProps<typeof badge>, "theme">;
|
|
645
|
+
declare function BadgeRoot({
|
|
646
|
+
appearance,
|
|
647
|
+
variant,
|
|
648
|
+
uppercase,
|
|
649
|
+
className,
|
|
650
|
+
render,
|
|
651
|
+
...props
|
|
652
|
+
}: BadgeProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
653
|
+
declare function Experimental(props: Omit<BadgeProps, "appearance" | "variant" | "uppercase">): import("react").JSX.Element;
|
|
654
|
+
declare const Badge: typeof BadgeRoot & {
|
|
655
|
+
Experimental: typeof Experimental;
|
|
656
|
+
};
|
|
657
|
+
//#endregion
|
|
658
|
+
//#region src/components/dropdown-menu/dropdown-menu.d.ts
|
|
659
|
+
type DropdownMenuProps = Menu.Root.Props;
|
|
660
|
+
declare function DropdownMenu(props: DropdownMenuProps): import("react").JSX.Element;
|
|
661
|
+
type DropdownMenuSubmenuProps = Menu.SubmenuRoot.Props;
|
|
662
|
+
declare function DropdownMenuSubmenu(props: DropdownMenuSubmenuProps): import("react").JSX.Element;
|
|
663
|
+
type DropdownMenuTriggerProps = StyledProps<Menu.Trigger.Props>;
|
|
664
|
+
declare function DropdownMenuTrigger({
|
|
665
|
+
className,
|
|
666
|
+
...props
|
|
667
|
+
}: DropdownMenuTriggerProps): import("react").JSX.Element;
|
|
668
|
+
type DropdownMenuPortalProps = Menu.Portal.Props;
|
|
669
|
+
declare function DropdownMenuPortal(props: DropdownMenuPortalProps): import("react").JSX.Element;
|
|
670
|
+
type DropdownMenuPopupProps = ComponentPropsWithRef<"div">;
|
|
671
|
+
declare function DropdownMenuPopup({
|
|
672
|
+
className,
|
|
673
|
+
...props
|
|
674
|
+
}: DropdownMenuPopupProps): import("react").JSX.Element;
|
|
675
|
+
type DropdownMenuContentProps = StyledProps<Menu.Popup.Props> & Pick<Menu.Positioner.Props, "align" | "alignOffset" | "anchor" | "arrowPadding" | "collisionAvoidance" | "collisionBoundary" | "collisionPadding" | "disableAnchorTracking" | "positionMethod" | "side" | "sideOffset" | "sticky"> & {
|
|
676
|
+
portalProps?: DropdownMenuPortalProps;
|
|
677
|
+
};
|
|
678
|
+
declare function DropdownMenuContent({
|
|
679
|
+
align,
|
|
680
|
+
alignOffset,
|
|
681
|
+
anchor,
|
|
682
|
+
arrowPadding,
|
|
683
|
+
collisionAvoidance,
|
|
684
|
+
collisionBoundary,
|
|
685
|
+
collisionPadding,
|
|
686
|
+
disableAnchorTracking,
|
|
687
|
+
positionMethod,
|
|
688
|
+
side,
|
|
689
|
+
sideOffset,
|
|
690
|
+
sticky,
|
|
691
|
+
portalProps,
|
|
692
|
+
className,
|
|
693
|
+
...props
|
|
694
|
+
}: DropdownMenuContentProps): import("react").JSX.Element;
|
|
695
|
+
type DropdownMenuItemProps = StyledProps<Menu.Item.Props>;
|
|
696
|
+
declare function DropdownMenuItem({
|
|
697
|
+
className,
|
|
698
|
+
...props
|
|
699
|
+
}: DropdownMenuItemProps): import("react").JSX.Element;
|
|
700
|
+
type DropdownMenuSubmenuTriggerProps = StyledProps<Menu.SubmenuTrigger.Props>;
|
|
701
|
+
declare function DropdownMenuSubmenuTrigger({
|
|
702
|
+
className,
|
|
703
|
+
...props
|
|
704
|
+
}: DropdownMenuSubmenuTriggerProps): import("react").JSX.Element;
|
|
705
|
+
type DropdownMenuLabelProps = StyledProps<ComponentPropsWithRef<"div">>;
|
|
706
|
+
declare function DropdownMenuLabel({
|
|
707
|
+
className,
|
|
708
|
+
...props
|
|
709
|
+
}: DropdownMenuLabelProps): import("react").JSX.Element;
|
|
710
|
+
type DropdownMenuShortcutProps = KbdProps;
|
|
711
|
+
declare function DropdownMenuShortcut({
|
|
712
|
+
className,
|
|
713
|
+
...props
|
|
714
|
+
}: DropdownMenuShortcutProps): import("react").JSX.Element;
|
|
715
|
+
type DropdownMenuItemCountProps = BadgeProps;
|
|
716
|
+
declare function DropdownMenuItemCount({
|
|
717
|
+
className,
|
|
718
|
+
...props
|
|
719
|
+
}: DropdownMenuItemCountProps): import("react").JSX.Element;
|
|
720
|
+
type DropdownMenuSeparatorProps = StyledProps<Menu.Separator.Props>;
|
|
721
|
+
declare function DropdownMenuSeparator({
|
|
722
|
+
className,
|
|
723
|
+
...props
|
|
724
|
+
}: DropdownMenuSeparatorProps): import("react").JSX.Element;
|
|
725
|
+
type DropdownMenuRadioGroupProps = StyledProps<Menu.RadioGroup.Props>;
|
|
726
|
+
declare function DropdownMenuRadioGroup({
|
|
727
|
+
...props
|
|
728
|
+
}: DropdownMenuRadioGroupProps): import("react").JSX.Element;
|
|
729
|
+
type DropdownMenuRadioItemProps = StyledProps<Menu.RadioItem.Props>;
|
|
730
|
+
declare function DropdownMenuRadioItem({
|
|
731
|
+
className,
|
|
732
|
+
children,
|
|
733
|
+
...props
|
|
734
|
+
}: DropdownMenuRadioItemProps): import("react").JSX.Element;
|
|
735
|
+
type DropdownMenuRadioItemIndicatorProps = StyledProps<Menu.RadioItemIndicator.Props>;
|
|
736
|
+
declare function DropdownMenuRadioItemIndicator({
|
|
737
|
+
className,
|
|
738
|
+
...props
|
|
739
|
+
}: DropdownMenuRadioItemIndicatorProps): import("react").JSX.Element;
|
|
740
|
+
type DropdownMenuCheckboxItemProps = StyledProps<Menu.CheckboxItem.Props>;
|
|
741
|
+
declare function DropdownMenuCheckboxItem({
|
|
742
|
+
className,
|
|
743
|
+
children,
|
|
744
|
+
...props
|
|
745
|
+
}: DropdownMenuCheckboxItemProps): import("react").JSX.Element;
|
|
746
|
+
type DropdownMenuCheckboxItemIndicatorProps = StyledProps<Menu.CheckboxItemIndicator.Props>;
|
|
747
|
+
declare function DropdownMenuCheckboxItemIndicator({
|
|
748
|
+
className,
|
|
749
|
+
...props
|
|
750
|
+
}: DropdownMenuCheckboxItemIndicatorProps): import("react").JSX.Element;
|
|
751
|
+
//#endregion
|
|
752
|
+
//#region src/components/tooltip/tooltip.d.ts
|
|
753
|
+
type TooltipProviderProps = Tooltip$1.Provider.Props;
|
|
754
|
+
declare function TooltipProvider({
|
|
755
|
+
delay,
|
|
756
|
+
...props
|
|
757
|
+
}: TooltipProviderProps): import("react").JSX.Element;
|
|
758
|
+
type TooltipProps = Tooltip$1.Root.Props;
|
|
759
|
+
declare function Tooltip(props: TooltipProps): import("react").JSX.Element;
|
|
760
|
+
type TooltipTriggerProps = StyledProps<Tooltip$1.Trigger.Props>;
|
|
761
|
+
declare function TooltipTrigger({
|
|
762
|
+
className,
|
|
763
|
+
...props
|
|
764
|
+
}: TooltipTriggerProps): import("react").JSX.Element;
|
|
765
|
+
type TooltipPortalProps = Tooltip$1.Portal.Props;
|
|
766
|
+
declare function TooltipPortal(props: TooltipPortalProps): import("react").JSX.Element;
|
|
767
|
+
type TooltipContentProps = StyledProps<Tooltip$1.Popup.Props> & Pick<Tooltip$1.Positioner.Props, "align" | "alignOffset" | "anchor" | "arrowPadding" | "collisionAvoidance" | "collisionBoundary" | "collisionPadding" | "disableAnchorTracking" | "positionMethod" | "side" | "sideOffset" | "sticky"> & {
|
|
768
|
+
portalProps?: TooltipPortalProps;
|
|
769
|
+
};
|
|
770
|
+
declare function TooltipContent({
|
|
771
|
+
align,
|
|
772
|
+
alignOffset,
|
|
773
|
+
anchor,
|
|
774
|
+
arrowPadding,
|
|
775
|
+
collisionAvoidance,
|
|
776
|
+
collisionBoundary,
|
|
777
|
+
collisionPadding,
|
|
778
|
+
disableAnchorTracking,
|
|
779
|
+
positionMethod,
|
|
780
|
+
side,
|
|
781
|
+
sideOffset,
|
|
782
|
+
sticky,
|
|
783
|
+
portalProps,
|
|
784
|
+
className,
|
|
785
|
+
children,
|
|
786
|
+
...props
|
|
787
|
+
}: TooltipContentProps): import("react").JSX.Element;
|
|
788
|
+
//#endregion
|
|
789
|
+
//#region src/components/popover/popover.d.ts
|
|
790
|
+
type PopoverProps = Popover$1.Root.Props;
|
|
791
|
+
declare function Popover(props: PopoverProps): import("react").JSX.Element;
|
|
792
|
+
type PopoverTriggerProps = StyledProps<Popover$1.Trigger.Props>;
|
|
793
|
+
declare function PopoverTrigger({
|
|
794
|
+
className,
|
|
795
|
+
...props
|
|
796
|
+
}: PopoverTriggerProps): import("react").JSX.Element;
|
|
797
|
+
type PopoverPortalProps = Popover$1.Portal.Props;
|
|
798
|
+
declare function PopoverPortal(props: PopoverPortalProps): import("react").JSX.Element;
|
|
799
|
+
type PopoverPopupProps = ComponentPropsWithRef<"div">;
|
|
800
|
+
declare function PopoverPopup({
|
|
801
|
+
className,
|
|
802
|
+
...props
|
|
803
|
+
}: PopoverPopupProps): import("react").JSX.Element;
|
|
804
|
+
type PopoverContentProps = StyledProps<Popover$1.Popup.Props> & Pick<Popover$1.Positioner.Props, "align" | "alignOffset" | "anchor" | "arrowPadding" | "collisionAvoidance" | "collisionBoundary" | "collisionPadding" | "disableAnchorTracking" | "positionMethod" | "side" | "sideOffset" | "sticky"> & {
|
|
805
|
+
portalProps?: PopoverPortalProps;
|
|
806
|
+
};
|
|
807
|
+
declare function PopoverContent({
|
|
808
|
+
align,
|
|
809
|
+
alignOffset,
|
|
810
|
+
anchor,
|
|
811
|
+
arrowPadding,
|
|
812
|
+
collisionAvoidance,
|
|
813
|
+
collisionBoundary,
|
|
814
|
+
collisionPadding,
|
|
815
|
+
disableAnchorTracking,
|
|
816
|
+
positionMethod,
|
|
817
|
+
side,
|
|
818
|
+
sideOffset,
|
|
819
|
+
sticky,
|
|
820
|
+
portalProps,
|
|
821
|
+
className,
|
|
822
|
+
...props
|
|
823
|
+
}: PopoverContentProps): import("react").JSX.Element;
|
|
824
|
+
type PopoverViewportProps = StyledProps<Popover$1.Viewport.Props>;
|
|
825
|
+
declare function PopoverViewport({
|
|
826
|
+
className,
|
|
827
|
+
...props
|
|
828
|
+
}: PopoverViewportProps): import("react").JSX.Element;
|
|
829
|
+
type PopoverHeaderProps = ComponentPropsWithRef<"div">;
|
|
830
|
+
declare function PopoverHeader({
|
|
831
|
+
className,
|
|
832
|
+
...props
|
|
833
|
+
}: PopoverHeaderProps): import("react").JSX.Element;
|
|
834
|
+
type PopoverSeparatorProps = StyledProps<ComponentPropsWithRef<"div">>;
|
|
835
|
+
declare function PopoverSeparator({
|
|
836
|
+
className,
|
|
837
|
+
...props
|
|
838
|
+
}: PopoverSeparatorProps): import("react").JSX.Element;
|
|
839
|
+
type PopoverTitleProps = StyledProps<Popover$1.Title.Props>;
|
|
840
|
+
declare function PopoverTitle({
|
|
841
|
+
className,
|
|
842
|
+
...props
|
|
843
|
+
}: PopoverTitleProps): import("react").JSX.Element;
|
|
844
|
+
type PopoverDescriptionProps = StyledProps<Popover$1.Description.Props>;
|
|
845
|
+
declare function PopoverDescription({
|
|
846
|
+
className,
|
|
847
|
+
...props
|
|
848
|
+
}: PopoverDescriptionProps): import("react").JSX.Element;
|
|
849
|
+
type PopoverCloseProps = StyledProps<Popover$1.Close.Props>;
|
|
850
|
+
declare function PopoverClose({
|
|
851
|
+
className,
|
|
852
|
+
...props
|
|
853
|
+
}: PopoverCloseProps): import("react").JSX.Element;
|
|
854
|
+
type PopoverArrowProps = StyledProps<Popover$1.Arrow.Props>;
|
|
855
|
+
declare function PopoverArrow({
|
|
856
|
+
className,
|
|
857
|
+
...props
|
|
858
|
+
}: PopoverArrowProps): import("react").JSX.Element;
|
|
859
|
+
type PopoverBackdropProps = StyledProps<Popover$1.Backdrop.Props>;
|
|
860
|
+
declare function PopoverBackdrop({
|
|
861
|
+
className,
|
|
862
|
+
...props
|
|
863
|
+
}: PopoverBackdropProps): import("react").JSX.Element;
|
|
864
|
+
//#endregion
|
|
865
|
+
//#region src/components/label/label.d.ts
|
|
866
|
+
declare const label: import("tailwind-variants/lite").TVReturnType<{
|
|
867
|
+
theme: {
|
|
868
|
+
brutal: {
|
|
869
|
+
root: string;
|
|
870
|
+
sub: string;
|
|
871
|
+
};
|
|
872
|
+
elegant: {
|
|
873
|
+
root: string;
|
|
874
|
+
sub: string;
|
|
875
|
+
};
|
|
876
|
+
};
|
|
877
|
+
size: {
|
|
878
|
+
sm: {
|
|
879
|
+
root: string;
|
|
880
|
+
};
|
|
881
|
+
md: {
|
|
882
|
+
root: string;
|
|
883
|
+
};
|
|
884
|
+
};
|
|
885
|
+
}, {
|
|
886
|
+
root: string[];
|
|
887
|
+
asterisk: string[];
|
|
888
|
+
sub: string[];
|
|
889
|
+
}, undefined, {
|
|
890
|
+
theme: {
|
|
891
|
+
brutal: {
|
|
892
|
+
root: string;
|
|
893
|
+
sub: string;
|
|
894
|
+
};
|
|
895
|
+
elegant: {
|
|
896
|
+
root: string;
|
|
897
|
+
sub: string;
|
|
898
|
+
};
|
|
899
|
+
};
|
|
900
|
+
size: {
|
|
901
|
+
sm: {
|
|
902
|
+
root: string;
|
|
903
|
+
};
|
|
904
|
+
md: {
|
|
905
|
+
root: string;
|
|
906
|
+
};
|
|
907
|
+
};
|
|
908
|
+
}, {
|
|
909
|
+
root: string[];
|
|
910
|
+
asterisk: string[];
|
|
911
|
+
sub: string[];
|
|
912
|
+
}, import("tailwind-variants/lite").TVReturnType<{
|
|
913
|
+
theme: {
|
|
914
|
+
brutal: {
|
|
915
|
+
root: string;
|
|
916
|
+
sub: string;
|
|
917
|
+
};
|
|
918
|
+
elegant: {
|
|
919
|
+
root: string;
|
|
920
|
+
sub: string;
|
|
921
|
+
};
|
|
922
|
+
};
|
|
923
|
+
size: {
|
|
924
|
+
sm: {
|
|
925
|
+
root: string;
|
|
926
|
+
};
|
|
927
|
+
md: {
|
|
928
|
+
root: string;
|
|
929
|
+
};
|
|
930
|
+
};
|
|
931
|
+
}, {
|
|
932
|
+
root: string[];
|
|
933
|
+
asterisk: string[];
|
|
934
|
+
sub: string[];
|
|
935
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
936
|
+
type LabelProps = useRender.ComponentProps<"label"> & Omit<VariantProps<typeof label>, "theme"> & {
|
|
937
|
+
disabled?: boolean;
|
|
938
|
+
};
|
|
939
|
+
declare function LabelRoot({
|
|
940
|
+
size,
|
|
941
|
+
disabled,
|
|
942
|
+
className,
|
|
943
|
+
render,
|
|
944
|
+
...props
|
|
945
|
+
}: LabelProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
946
|
+
type LabelAsteriskProps = ComponentPropsWithRef<"span">;
|
|
947
|
+
declare function LabelAsterisk({
|
|
948
|
+
className,
|
|
949
|
+
children,
|
|
950
|
+
...props
|
|
951
|
+
}: LabelAsteriskProps): import("react").JSX.Element;
|
|
952
|
+
type LabelSubProps = ComponentPropsWithRef<"span">;
|
|
953
|
+
declare function LabelSub({
|
|
954
|
+
className,
|
|
955
|
+
...props
|
|
956
|
+
}: LabelSubProps): import("react").JSX.Element;
|
|
957
|
+
type LabelOptionalProps = LabelSubProps;
|
|
958
|
+
declare function LabelOptional({
|
|
959
|
+
children,
|
|
960
|
+
...props
|
|
961
|
+
}: LabelOptionalProps): import("react").JSX.Element;
|
|
962
|
+
declare const Label: typeof LabelRoot & {
|
|
963
|
+
Asterisk: typeof LabelAsterisk;
|
|
964
|
+
Optional: typeof LabelOptional;
|
|
965
|
+
Sub: typeof LabelSub;
|
|
966
|
+
};
|
|
967
|
+
//#endregion
|
|
968
|
+
//#region src/lib/without-children.d.ts
|
|
969
|
+
/**
|
|
970
|
+
* Element props without `children` — for leaf components (dots, markers) that
|
|
971
|
+
* render no caller content. React ships `ComponentPropsWithoutRef` but no
|
|
972
|
+
* equivalent that subtracts children, so this names the one-off `Omit`.
|
|
973
|
+
*/
|
|
974
|
+
type WithoutChildren<P> = Omit<P, "children">;
|
|
975
|
+
//#endregion
|
|
976
|
+
//#region src/components/input/input.d.ts
|
|
977
|
+
type InputBehaviorProps = {
|
|
978
|
+
/**
|
|
979
|
+
* Add common password-manager ignore hints for non-credential fields where
|
|
980
|
+
* extension overlays would obscure custom UI.
|
|
981
|
+
*/
|
|
982
|
+
suppressPasswordManager?: boolean;
|
|
983
|
+
};
|
|
984
|
+
type InputProps = WithoutChildren<StyledProps<Input$1.Props>> & InputBehaviorProps;
|
|
985
|
+
declare function Input({
|
|
986
|
+
suppressPasswordManager,
|
|
987
|
+
className,
|
|
988
|
+
...props
|
|
989
|
+
}: InputProps): import("react").JSX.Element;
|
|
990
|
+
//#endregion
|
|
991
|
+
//#region src/components/input-group/input-group.d.ts
|
|
992
|
+
declare const inputGroup: import("tailwind-variants/lite").TVReturnType<{
|
|
993
|
+
theme: {
|
|
994
|
+
brutal: {
|
|
995
|
+
root: string[];
|
|
996
|
+
addon: string[];
|
|
997
|
+
text: string[];
|
|
998
|
+
control: string[];
|
|
999
|
+
};
|
|
1000
|
+
elegant: {
|
|
1001
|
+
root: string[];
|
|
1002
|
+
addon: string[];
|
|
1003
|
+
text: string[];
|
|
1004
|
+
control: string[];
|
|
1005
|
+
};
|
|
1006
|
+
};
|
|
1007
|
+
align: {
|
|
1008
|
+
"inline-start": {
|
|
1009
|
+
addon: string;
|
|
1010
|
+
text: string;
|
|
1011
|
+
};
|
|
1012
|
+
"inline-end": {
|
|
1013
|
+
addon: string;
|
|
1014
|
+
text: string;
|
|
1015
|
+
};
|
|
1016
|
+
};
|
|
1017
|
+
variant: {
|
|
1018
|
+
default: {};
|
|
1019
|
+
container: {
|
|
1020
|
+
addon: string[];
|
|
1021
|
+
text: string[];
|
|
1022
|
+
};
|
|
1023
|
+
};
|
|
1024
|
+
}, {
|
|
1025
|
+
root: string[];
|
|
1026
|
+
addon: string[];
|
|
1027
|
+
text: string[];
|
|
1028
|
+
control: string[];
|
|
1029
|
+
}, undefined, {
|
|
1030
|
+
theme: {
|
|
1031
|
+
brutal: {
|
|
1032
|
+
root: string[];
|
|
1033
|
+
addon: string[];
|
|
1034
|
+
text: string[];
|
|
1035
|
+
control: string[];
|
|
1036
|
+
};
|
|
1037
|
+
elegant: {
|
|
1038
|
+
root: string[];
|
|
1039
|
+
addon: string[];
|
|
1040
|
+
text: string[];
|
|
1041
|
+
control: string[];
|
|
1042
|
+
};
|
|
1043
|
+
};
|
|
1044
|
+
align: {
|
|
1045
|
+
"inline-start": {
|
|
1046
|
+
addon: string;
|
|
1047
|
+
text: string;
|
|
1048
|
+
};
|
|
1049
|
+
"inline-end": {
|
|
1050
|
+
addon: string;
|
|
1051
|
+
text: string;
|
|
1052
|
+
};
|
|
1053
|
+
};
|
|
1054
|
+
variant: {
|
|
1055
|
+
default: {};
|
|
1056
|
+
container: {
|
|
1057
|
+
addon: string[];
|
|
1058
|
+
text: string[];
|
|
1059
|
+
};
|
|
1060
|
+
};
|
|
1061
|
+
}, {
|
|
1062
|
+
root: string[];
|
|
1063
|
+
addon: string[];
|
|
1064
|
+
text: string[];
|
|
1065
|
+
control: string[];
|
|
1066
|
+
}, import("tailwind-variants/lite").TVReturnType<{
|
|
1067
|
+
theme: {
|
|
1068
|
+
brutal: {
|
|
1069
|
+
root: string[];
|
|
1070
|
+
addon: string[];
|
|
1071
|
+
text: string[];
|
|
1072
|
+
control: string[];
|
|
1073
|
+
};
|
|
1074
|
+
elegant: {
|
|
1075
|
+
root: string[];
|
|
1076
|
+
addon: string[];
|
|
1077
|
+
text: string[];
|
|
1078
|
+
control: string[];
|
|
1079
|
+
};
|
|
1080
|
+
};
|
|
1081
|
+
align: {
|
|
1082
|
+
"inline-start": {
|
|
1083
|
+
addon: string;
|
|
1084
|
+
text: string;
|
|
1085
|
+
};
|
|
1086
|
+
"inline-end": {
|
|
1087
|
+
addon: string;
|
|
1088
|
+
text: string;
|
|
1089
|
+
};
|
|
1090
|
+
};
|
|
1091
|
+
variant: {
|
|
1092
|
+
default: {};
|
|
1093
|
+
container: {
|
|
1094
|
+
addon: string[];
|
|
1095
|
+
text: string[];
|
|
1096
|
+
};
|
|
1097
|
+
};
|
|
1098
|
+
}, {
|
|
1099
|
+
root: string[];
|
|
1100
|
+
addon: string[];
|
|
1101
|
+
text: string[];
|
|
1102
|
+
control: string[];
|
|
1103
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
1104
|
+
type InputGroupProps = ComponentPropsWithRef<"div">;
|
|
1105
|
+
declare function InputGroup({
|
|
1106
|
+
className,
|
|
1107
|
+
...props
|
|
1108
|
+
}: InputGroupProps): import("react").JSX.Element;
|
|
1109
|
+
type InputGroupAddonProps = ComponentPropsWithRef<"div"> & Pick<VariantProps<typeof inputGroup>, "align" | "variant">;
|
|
1110
|
+
declare function InputGroupAddonRoot({
|
|
1111
|
+
align,
|
|
1112
|
+
variant,
|
|
1113
|
+
className,
|
|
1114
|
+
...props
|
|
1115
|
+
}: InputGroupAddonProps): import("react").JSX.Element;
|
|
1116
|
+
type InputGroupAddonTextProps = ComponentPropsWithRef<"span"> & Pick<VariantProps<typeof inputGroup>, "align" | "variant">;
|
|
1117
|
+
declare function TextAddon({
|
|
1118
|
+
align,
|
|
1119
|
+
variant,
|
|
1120
|
+
className,
|
|
1121
|
+
...props
|
|
1122
|
+
}: InputGroupAddonTextProps): import("react").JSX.Element;
|
|
1123
|
+
declare const InputGroupAddon: typeof InputGroupAddonRoot & {
|
|
1124
|
+
Text: typeof TextAddon;
|
|
1125
|
+
};
|
|
1126
|
+
type InputGroupInputProps = WithoutChildren<StyledProps<Input$1.Props>> & InputBehaviorProps;
|
|
1127
|
+
declare function InputGroupInput({
|
|
1128
|
+
className,
|
|
1129
|
+
suppressPasswordManager,
|
|
1130
|
+
...props
|
|
1131
|
+
}: InputGroupInputProps): import("react").JSX.Element;
|
|
1132
|
+
//#endregion
|
|
1133
|
+
//#region src/components/combobox/combobox.d.ts
|
|
1134
|
+
type ComboboxProps<Value, Multiple extends boolean | undefined = false> = Combobox$1.Root.Props<Value, Multiple>;
|
|
1135
|
+
declare function Combobox<Value, Multiple extends boolean | undefined = false>({
|
|
1136
|
+
defaultInputValue,
|
|
1137
|
+
defaultValue,
|
|
1138
|
+
inputValue,
|
|
1139
|
+
onInputValueChange,
|
|
1140
|
+
onValueChange,
|
|
1141
|
+
value,
|
|
1142
|
+
...props
|
|
1143
|
+
}: ComboboxProps<Value, Multiple>): import("react").JSX.Element;
|
|
1144
|
+
type ComboboxLabelProps = StyledProps<Combobox$1.Label.Props>;
|
|
1145
|
+
declare function ComboboxLabel({
|
|
1146
|
+
className,
|
|
1147
|
+
...props
|
|
1148
|
+
}: ComboboxLabelProps): import("react").JSX.Element;
|
|
1149
|
+
type ComboboxValueProps = Combobox$1.Value.Props;
|
|
1150
|
+
declare function ComboboxValue(props: ComboboxValueProps): import("react").JSX.Element;
|
|
1151
|
+
type ComboboxTriggerProps = StyledProps<Combobox$1.Trigger.Props>;
|
|
1152
|
+
declare function ComboboxTrigger({
|
|
1153
|
+
className,
|
|
1154
|
+
children,
|
|
1155
|
+
render,
|
|
1156
|
+
...props
|
|
1157
|
+
}: ComboboxTriggerProps): import("react").JSX.Element;
|
|
1158
|
+
type ComboboxTriggerIndicatorProps = StyledProps<ComponentPropsWithRef<"span">>;
|
|
1159
|
+
declare function ComboboxTriggerIndicator({
|
|
1160
|
+
className,
|
|
1161
|
+
...props
|
|
1162
|
+
}: ComboboxTriggerIndicatorProps): import("react").JSX.Element;
|
|
1163
|
+
type ComboboxInputGroupProps = StyledProps<Combobox$1.InputGroup.Props>;
|
|
1164
|
+
declare function ComboboxInputGroup({
|
|
1165
|
+
className,
|
|
1166
|
+
...props
|
|
1167
|
+
}: ComboboxInputGroupProps): import("react").JSX.Element;
|
|
1168
|
+
type ComboboxControlProps = StyledProps<Combobox$1.InputGroup.Props>;
|
|
1169
|
+
declare function ComboboxControl({
|
|
1170
|
+
className,
|
|
1171
|
+
...props
|
|
1172
|
+
}: ComboboxControlProps): import("react").JSX.Element;
|
|
1173
|
+
type ComboboxInputProps = StyledProps<Combobox$1.Input.Props> & {
|
|
1174
|
+
suppressPasswordManager?: boolean;
|
|
1175
|
+
};
|
|
1176
|
+
declare function ComboboxInput({
|
|
1177
|
+
suppressPasswordManager,
|
|
1178
|
+
className,
|
|
1179
|
+
...props
|
|
1180
|
+
}: ComboboxInputProps): import("react").JSX.Element;
|
|
1181
|
+
type ComboboxPortalProps = Combobox$1.Portal.Props;
|
|
1182
|
+
declare function ComboboxPortal(props: ComboboxPortalProps): import("react").JSX.Element;
|
|
1183
|
+
type ComboboxPopupProps = ComponentPropsWithRef<"div">;
|
|
1184
|
+
declare function ComboboxPopup({
|
|
1185
|
+
className,
|
|
1186
|
+
...props
|
|
1187
|
+
}: ComboboxPopupProps): import("react").JSX.Element;
|
|
1188
|
+
type ComboboxHeaderProps = ComponentPropsWithRef<"div">;
|
|
1189
|
+
declare function ComboboxHeader({
|
|
1190
|
+
className,
|
|
1191
|
+
...props
|
|
1192
|
+
}: ComboboxHeaderProps): import("react").JSX.Element;
|
|
1193
|
+
type ComboboxSeparatorProps = StyledProps<ComponentPropsWithRef<"div">>;
|
|
1194
|
+
declare function ComboboxSeparator({
|
|
1195
|
+
className,
|
|
1196
|
+
...props
|
|
1197
|
+
}: ComboboxSeparatorProps): import("react").JSX.Element;
|
|
1198
|
+
type ComboboxContentProps = StyledProps<Combobox$1.Popup.Props> & Pick<Combobox$1.Positioner.Props, "align" | "alignOffset" | "anchor" | "arrowPadding" | "collisionAvoidance" | "collisionBoundary" | "collisionPadding" | "disableAnchorTracking" | "positionMethod" | "side" | "sideOffset" | "sticky"> & {
|
|
1199
|
+
portalProps?: ComboboxPortalProps;
|
|
1200
|
+
};
|
|
1201
|
+
declare function ComboboxContent({
|
|
1202
|
+
align,
|
|
1203
|
+
alignOffset,
|
|
1204
|
+
anchor,
|
|
1205
|
+
arrowPadding,
|
|
1206
|
+
collisionAvoidance,
|
|
1207
|
+
collisionBoundary,
|
|
1208
|
+
collisionPadding,
|
|
1209
|
+
disableAnchorTracking,
|
|
1210
|
+
positionMethod,
|
|
1211
|
+
side,
|
|
1212
|
+
sideOffset,
|
|
1213
|
+
sticky,
|
|
1214
|
+
portalProps,
|
|
1215
|
+
className,
|
|
1216
|
+
initialFocus,
|
|
1217
|
+
finalFocus,
|
|
1218
|
+
...props
|
|
1219
|
+
}: ComboboxContentProps): import("react").JSX.Element;
|
|
1220
|
+
type ComboboxListProps = StyledProps<Combobox$1.List.Props>;
|
|
1221
|
+
declare function ComboboxList({
|
|
1222
|
+
className,
|
|
1223
|
+
...props
|
|
1224
|
+
}: ComboboxListProps): import("react").JSX.Element;
|
|
1225
|
+
type ComboboxItemProps = StyledProps<Combobox$1.Item.Props>;
|
|
1226
|
+
declare function ComboboxItem({
|
|
1227
|
+
className,
|
|
1228
|
+
...props
|
|
1229
|
+
}: ComboboxItemProps): import("react").JSX.Element;
|
|
1230
|
+
type ComboboxItemIndicatorProps = StyledProps<Combobox$1.ItemIndicator.Props>;
|
|
1231
|
+
declare function ComboboxItemIndicator({
|
|
1232
|
+
className,
|
|
1233
|
+
children,
|
|
1234
|
+
...props
|
|
1235
|
+
}: ComboboxItemIndicatorProps): import("react").JSX.Element;
|
|
1236
|
+
type ComboboxClearProps = StyledProps<Combobox$1.Clear.Props>;
|
|
1237
|
+
declare function ComboboxClear({
|
|
1238
|
+
className,
|
|
1239
|
+
children,
|
|
1240
|
+
keepMounted,
|
|
1241
|
+
...props
|
|
1242
|
+
}: ComboboxClearProps): import("react").JSX.Element;
|
|
1243
|
+
type ComboboxEmptyProps = StyledProps<Combobox$1.Empty.Props>;
|
|
1244
|
+
declare function ComboboxEmpty({
|
|
1245
|
+
className,
|
|
1246
|
+
children,
|
|
1247
|
+
...props
|
|
1248
|
+
}: ComboboxEmptyProps): import("react").JSX.Element;
|
|
1249
|
+
type ComboboxGroupProps = StyledProps<Combobox$1.Group.Props>;
|
|
1250
|
+
declare function ComboboxGroup({
|
|
1251
|
+
className,
|
|
1252
|
+
...props
|
|
1253
|
+
}: ComboboxGroupProps): import("react").JSX.Element;
|
|
1254
|
+
type ComboboxGroupLabelProps = StyledProps<Combobox$1.GroupLabel.Props>;
|
|
1255
|
+
declare function ComboboxGroupLabel({
|
|
1256
|
+
className,
|
|
1257
|
+
...props
|
|
1258
|
+
}: ComboboxGroupLabelProps): import("react").JSX.Element;
|
|
1259
|
+
type ComboboxRowProps = StyledProps<Combobox$1.Row.Props>;
|
|
1260
|
+
declare function ComboboxRow({
|
|
1261
|
+
className,
|
|
1262
|
+
...props
|
|
1263
|
+
}: ComboboxRowProps): import("react").JSX.Element;
|
|
1264
|
+
type ComboboxCollectionProps = Combobox$1.Collection.Props;
|
|
1265
|
+
declare function ComboboxCollection(props: ComboboxCollectionProps): import("react").JSX.Element;
|
|
1266
|
+
type ComboboxChipsProps = StyledProps<Combobox$1.Chips.Props>;
|
|
1267
|
+
declare function ComboboxChips({
|
|
1268
|
+
className,
|
|
1269
|
+
...props
|
|
1270
|
+
}: ComboboxChipsProps): import("react").JSX.Element;
|
|
1271
|
+
type ComboboxChipProps = StyledProps<Combobox$1.Chip.Props>;
|
|
1272
|
+
declare function ComboboxChip({
|
|
1273
|
+
className,
|
|
1274
|
+
...props
|
|
1275
|
+
}: ComboboxChipProps): import("react").JSX.Element;
|
|
1276
|
+
type ComboboxChipRemoveProps = StyledProps<Combobox$1.ChipRemove.Props>;
|
|
1277
|
+
declare function ComboboxChipRemove({
|
|
1278
|
+
className,
|
|
1279
|
+
children,
|
|
1280
|
+
...props
|
|
1281
|
+
}: ComboboxChipRemoveProps): import("react").JSX.Element;
|
|
1282
|
+
//#endregion
|
|
1283
|
+
//#region src/components/select/select.d.ts
|
|
1284
|
+
type SelectProps<Value, Multiple extends boolean | undefined = false> = Select$1.Root.Props<Value, Multiple>;
|
|
1285
|
+
declare function Select<Value, Multiple extends boolean | undefined = false>(props: SelectProps<Value, Multiple>): import("react").JSX.Element;
|
|
1286
|
+
type SelectTriggerProps = StyledProps<Select$1.Trigger.Props>;
|
|
1287
|
+
declare function SelectTrigger({
|
|
1288
|
+
className,
|
|
1289
|
+
children,
|
|
1290
|
+
render,
|
|
1291
|
+
...props
|
|
1292
|
+
}: SelectTriggerProps): import("react").JSX.Element;
|
|
1293
|
+
type SelectValueProps = StyledProps<Select$1.Value.Props>;
|
|
1294
|
+
declare function SelectValue({
|
|
1295
|
+
className,
|
|
1296
|
+
...props
|
|
1297
|
+
}: SelectValueProps): import("react").JSX.Element;
|
|
1298
|
+
type SelectIconProps = StyledProps<Select$1.Icon.Props>;
|
|
1299
|
+
declare function SelectIcon({
|
|
1300
|
+
className,
|
|
1301
|
+
children,
|
|
1302
|
+
...props
|
|
1303
|
+
}: SelectIconProps): import("react").JSX.Element;
|
|
1304
|
+
type SelectPortalProps = Select$1.Portal.Props;
|
|
1305
|
+
declare function SelectPortal(props: SelectPortalProps): import("react").JSX.Element;
|
|
1306
|
+
type SelectPopupProps = ComponentPropsWithRef<"div">;
|
|
1307
|
+
declare function SelectPopup({
|
|
1308
|
+
className,
|
|
1309
|
+
...props
|
|
1310
|
+
}: SelectPopupProps): import("react").JSX.Element;
|
|
1311
|
+
type SelectContentProps = StyledProps<Select$1.Popup.Props> & Pick<Select$1.Positioner.Props, "align" | "alignItemWithTrigger" | "alignOffset" | "anchor" | "arrowPadding" | "collisionAvoidance" | "collisionBoundary" | "collisionPadding" | "disableAnchorTracking" | "positionMethod" | "side" | "sideOffset" | "sticky"> & {
|
|
1312
|
+
portalProps?: SelectPortalProps;
|
|
1313
|
+
};
|
|
1314
|
+
declare function SelectContent({
|
|
1315
|
+
align,
|
|
1316
|
+
alignItemWithTrigger,
|
|
1317
|
+
alignOffset,
|
|
1318
|
+
anchor,
|
|
1319
|
+
arrowPadding,
|
|
1320
|
+
collisionAvoidance,
|
|
1321
|
+
collisionBoundary,
|
|
1322
|
+
collisionPadding,
|
|
1323
|
+
disableAnchorTracking,
|
|
1324
|
+
positionMethod,
|
|
1325
|
+
side,
|
|
1326
|
+
sideOffset,
|
|
1327
|
+
sticky,
|
|
1328
|
+
portalProps,
|
|
1329
|
+
className,
|
|
1330
|
+
...props
|
|
1331
|
+
}: SelectContentProps): import("react").JSX.Element;
|
|
1332
|
+
type SelectListProps = StyledProps<Select$1.List.Props>;
|
|
1333
|
+
declare function SelectList({
|
|
1334
|
+
className,
|
|
1335
|
+
...props
|
|
1336
|
+
}: SelectListProps): import("react").JSX.Element;
|
|
1337
|
+
type SelectItemProps = StyledProps<Select$1.Item.Props>;
|
|
1338
|
+
declare function SelectItem({
|
|
1339
|
+
className,
|
|
1340
|
+
...props
|
|
1341
|
+
}: SelectItemProps): import("react").JSX.Element;
|
|
1342
|
+
type SelectItemIndicatorProps = StyledProps<Select$1.ItemIndicator.Props>;
|
|
1343
|
+
declare function SelectItemIndicator({
|
|
1344
|
+
className,
|
|
1345
|
+
children,
|
|
1346
|
+
...props
|
|
1347
|
+
}: SelectItemIndicatorProps): import("react").JSX.Element;
|
|
1348
|
+
type SelectItemTextProps = StyledProps<Select$1.ItemText.Props>;
|
|
1349
|
+
declare function SelectItemText({
|
|
1350
|
+
className,
|
|
1351
|
+
...props
|
|
1352
|
+
}: SelectItemTextProps): import("react").JSX.Element;
|
|
1353
|
+
type SelectLabelProps = StyledProps<Select$1.Label.Props>;
|
|
1354
|
+
declare function SelectLabel({
|
|
1355
|
+
className,
|
|
1356
|
+
...props
|
|
1357
|
+
}: SelectLabelProps): import("react").JSX.Element;
|
|
1358
|
+
type SelectGroupProps = StyledProps<Select$1.Group.Props>;
|
|
1359
|
+
declare function SelectGroup({
|
|
1360
|
+
className,
|
|
1361
|
+
...props
|
|
1362
|
+
}: SelectGroupProps): import("react").JSX.Element;
|
|
1363
|
+
type SelectGroupLabelProps = StyledProps<Select$1.GroupLabel.Props>;
|
|
1364
|
+
declare function SelectGroupLabel({
|
|
1365
|
+
className,
|
|
1366
|
+
...props
|
|
1367
|
+
}: SelectGroupLabelProps): import("react").JSX.Element;
|
|
1368
|
+
type SelectSeparatorProps = StyledProps<ComponentPropsWithRef<"div">>;
|
|
1369
|
+
declare function SelectSeparator({
|
|
1370
|
+
className,
|
|
1371
|
+
...props
|
|
1372
|
+
}: SelectSeparatorProps): import("react").JSX.Element;
|
|
1373
|
+
type SelectScrollUpArrowProps = StyledProps<Select$1.ScrollUpArrow.Props>;
|
|
1374
|
+
declare function SelectScrollUpArrow({
|
|
1375
|
+
className,
|
|
1376
|
+
children,
|
|
1377
|
+
...props
|
|
1378
|
+
}: SelectScrollUpArrowProps): import("react").JSX.Element;
|
|
1379
|
+
type SelectScrollDownArrowProps = StyledProps<Select$1.ScrollDownArrow.Props>;
|
|
1380
|
+
declare function SelectScrollDownArrow({
|
|
1381
|
+
className,
|
|
1382
|
+
children,
|
|
1383
|
+
...props
|
|
1384
|
+
}: SelectScrollDownArrowProps): import("react").JSX.Element;
|
|
1385
|
+
type SelectArrowProps = StyledProps<Select$1.Arrow.Props>;
|
|
1386
|
+
declare function SelectArrow({
|
|
1387
|
+
className,
|
|
1388
|
+
...props
|
|
1389
|
+
}: SelectArrowProps): import("react").JSX.Element;
|
|
1390
|
+
//#endregion
|
|
1391
|
+
//#region src/components/radio-group/radio-group.d.ts
|
|
1392
|
+
type RadioGroupProps<T extends string = string> = StyledProps<Omit<RadioGroup$1.Props<T>, "aria-label">> & {
|
|
1393
|
+
ariaLabel?: string;
|
|
1394
|
+
};
|
|
1395
|
+
declare function RadioGroup<T extends string = string>({
|
|
1396
|
+
ariaLabel,
|
|
1397
|
+
className,
|
|
1398
|
+
...props
|
|
1399
|
+
}: RadioGroupProps<T>): import("react").JSX.Element;
|
|
1400
|
+
type RadioGroupIndicatorProps = StyledProps<Radio.Indicator.Props>;
|
|
1401
|
+
declare function RadioGroupIndicator({
|
|
1402
|
+
className,
|
|
1403
|
+
children,
|
|
1404
|
+
...props
|
|
1405
|
+
}: RadioGroupIndicatorProps): import("react").JSX.Element;
|
|
1406
|
+
type RadioGroupItemProps<T extends string = string> = StyledProps<Radio.Root.Props<T>> & {
|
|
1407
|
+
appearance?: "default" | "none";
|
|
1408
|
+
};
|
|
1409
|
+
declare function RadioGroupItem<T extends string = string>({
|
|
1410
|
+
appearance,
|
|
1411
|
+
className,
|
|
1412
|
+
children,
|
|
1413
|
+
...props
|
|
1414
|
+
}: RadioGroupItemProps<T>): import("react").JSX.Element;
|
|
1415
|
+
//#endregion
|
|
1416
|
+
//#region src/components/segmented-control/segmented-control.d.ts
|
|
1417
|
+
declare const segmentedControl: import("tailwind-variants/lite").TVReturnType<{
|
|
1418
|
+
theme: {
|
|
1419
|
+
brutal: {
|
|
1420
|
+
item: string[];
|
|
1421
|
+
count: string[];
|
|
1422
|
+
};
|
|
1423
|
+
elegant: {
|
|
1424
|
+
root: string[];
|
|
1425
|
+
item: string[];
|
|
1426
|
+
count: string[];
|
|
1427
|
+
};
|
|
1428
|
+
};
|
|
1429
|
+
disabled: {
|
|
1430
|
+
true: {
|
|
1431
|
+
root: string;
|
|
1432
|
+
};
|
|
1433
|
+
false: {
|
|
1434
|
+
root: string;
|
|
1435
|
+
};
|
|
1436
|
+
};
|
|
1437
|
+
}, {
|
|
1438
|
+
root: string[];
|
|
1439
|
+
item: string[];
|
|
1440
|
+
label: string[];
|
|
1441
|
+
count: string[];
|
|
1442
|
+
}, undefined, {
|
|
1443
|
+
theme: {
|
|
1444
|
+
brutal: {
|
|
1445
|
+
item: string[];
|
|
1446
|
+
count: string[];
|
|
1447
|
+
};
|
|
1448
|
+
elegant: {
|
|
1449
|
+
root: string[];
|
|
1450
|
+
item: string[];
|
|
1451
|
+
count: string[];
|
|
1452
|
+
};
|
|
1453
|
+
};
|
|
1454
|
+
disabled: {
|
|
1455
|
+
true: {
|
|
1456
|
+
root: string;
|
|
1457
|
+
};
|
|
1458
|
+
false: {
|
|
1459
|
+
root: string;
|
|
1460
|
+
};
|
|
1461
|
+
};
|
|
1462
|
+
}, {
|
|
1463
|
+
root: string[];
|
|
1464
|
+
item: string[];
|
|
1465
|
+
label: string[];
|
|
1466
|
+
count: string[];
|
|
1467
|
+
}, import("tailwind-variants/lite").TVReturnType<{
|
|
1468
|
+
theme: {
|
|
1469
|
+
brutal: {
|
|
1470
|
+
item: string[];
|
|
1471
|
+
count: string[];
|
|
1472
|
+
};
|
|
1473
|
+
elegant: {
|
|
1474
|
+
root: string[];
|
|
1475
|
+
item: string[];
|
|
1476
|
+
count: string[];
|
|
1477
|
+
};
|
|
1478
|
+
};
|
|
1479
|
+
disabled: {
|
|
1480
|
+
true: {
|
|
1481
|
+
root: string;
|
|
1482
|
+
};
|
|
1483
|
+
false: {
|
|
1484
|
+
root: string;
|
|
1485
|
+
};
|
|
1486
|
+
};
|
|
1487
|
+
}, {
|
|
1488
|
+
root: string[];
|
|
1489
|
+
item: string[];
|
|
1490
|
+
label: string[];
|
|
1491
|
+
count: string[];
|
|
1492
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
1493
|
+
type SegmentedControlProps<T extends string = string> = StyledProps<Omit<RadioGroup$1.Props<T>, "aria-label">> & Omit<VariantProps<typeof segmentedControl>, "theme"> & {
|
|
1494
|
+
ariaLabel?: string;
|
|
1495
|
+
};
|
|
1496
|
+
declare function SegmentedControl<T extends string = string>({
|
|
1497
|
+
ariaLabel,
|
|
1498
|
+
disabled,
|
|
1499
|
+
className,
|
|
1500
|
+
...props
|
|
1501
|
+
}: SegmentedControlProps<T>): import("react").JSX.Element;
|
|
1502
|
+
type SegmentedControlItemProps<T extends string = string> = StyledProps<Radio.Root.Props<T>>;
|
|
1503
|
+
declare function SegmentedControlItem<T extends string = string>({
|
|
1504
|
+
className,
|
|
1505
|
+
...props
|
|
1506
|
+
}: SegmentedControlItemProps<T>): import("react").JSX.Element;
|
|
1507
|
+
type SegmentedControlLabelProps = ComponentPropsWithRef<"span">;
|
|
1508
|
+
declare function SegmentedControlLabel({
|
|
1509
|
+
className,
|
|
1510
|
+
...props
|
|
1511
|
+
}: SegmentedControlLabelProps): import("react").JSX.Element;
|
|
1512
|
+
type SegmentedControlCountProps = ComponentPropsWithRef<"span">;
|
|
1513
|
+
declare function SegmentedControlCount({
|
|
1514
|
+
className,
|
|
1515
|
+
...props
|
|
1516
|
+
}: SegmentedControlCountProps): import("react").JSX.Element;
|
|
1517
|
+
//#endregion
|
|
1518
|
+
//#region src/components/textarea/textarea.d.ts
|
|
1519
|
+
type TextareaProps = WithoutChildren<ComponentPropsWithRef<"textarea">>;
|
|
1520
|
+
type TextareaGroupProps = ComponentPropsWithRef<"div">;
|
|
1521
|
+
declare function TextareaGroup({
|
|
1522
|
+
className,
|
|
1523
|
+
...props
|
|
1524
|
+
}: TextareaGroupProps): import("react").JSX.Element;
|
|
1525
|
+
declare function Textarea({
|
|
1526
|
+
className,
|
|
1527
|
+
...props
|
|
1528
|
+
}: TextareaProps): import("react").JSX.Element;
|
|
1529
|
+
interface TextareaCounterProps extends WithoutChildren<ComponentPropsWithRef<"span">> {
|
|
1530
|
+
value?: string;
|
|
1531
|
+
count?: number;
|
|
1532
|
+
limit: number;
|
|
1533
|
+
getLength?: (value: string) => number;
|
|
1534
|
+
}
|
|
1535
|
+
declare function TextareaCounter({
|
|
1536
|
+
value,
|
|
1537
|
+
count,
|
|
1538
|
+
limit,
|
|
1539
|
+
getLength,
|
|
1540
|
+
className,
|
|
1541
|
+
...props
|
|
1542
|
+
}: TextareaCounterProps): import("react").JSX.Element;
|
|
1543
|
+
//#endregion
|
|
1544
|
+
//#region src/components/avatar/avatar.d.ts
|
|
1545
|
+
declare const avatar: import("tailwind-variants/lite").TVReturnType<{
|
|
1546
|
+
theme: {
|
|
1547
|
+
brutal: {
|
|
1548
|
+
root: string;
|
|
1549
|
+
fallback: string;
|
|
1550
|
+
badge: string[];
|
|
1551
|
+
group: string[];
|
|
1552
|
+
};
|
|
1553
|
+
elegant: {
|
|
1554
|
+
root: string[];
|
|
1555
|
+
image: string[];
|
|
1556
|
+
fallback: string[];
|
|
1557
|
+
badge: string[];
|
|
1558
|
+
group: string[];
|
|
1559
|
+
};
|
|
1560
|
+
};
|
|
1561
|
+
type: {
|
|
1562
|
+
agent: {};
|
|
1563
|
+
human: {};
|
|
1564
|
+
};
|
|
1565
|
+
size: {
|
|
1566
|
+
xl: {
|
|
1567
|
+
root: string;
|
|
1568
|
+
};
|
|
1569
|
+
lg: {
|
|
1570
|
+
root: string;
|
|
1571
|
+
};
|
|
1572
|
+
md: {
|
|
1573
|
+
root: string;
|
|
1574
|
+
};
|
|
1575
|
+
sm: {
|
|
1576
|
+
root: string;
|
|
1577
|
+
};
|
|
1578
|
+
xs: {
|
|
1579
|
+
root: string;
|
|
1580
|
+
};
|
|
1581
|
+
"2xs": {
|
|
1582
|
+
root: string;
|
|
1583
|
+
};
|
|
1584
|
+
};
|
|
1585
|
+
}, {
|
|
1586
|
+
root: string[];
|
|
1587
|
+
image: string[];
|
|
1588
|
+
fallback: string[];
|
|
1589
|
+
badge: string[];
|
|
1590
|
+
group: string[];
|
|
1591
|
+
}, undefined, {
|
|
1592
|
+
theme: {
|
|
1593
|
+
brutal: {
|
|
1594
|
+
root: string;
|
|
1595
|
+
fallback: string;
|
|
1596
|
+
badge: string[];
|
|
1597
|
+
group: string[];
|
|
1598
|
+
};
|
|
1599
|
+
elegant: {
|
|
1600
|
+
root: string[];
|
|
1601
|
+
image: string[];
|
|
1602
|
+
fallback: string[];
|
|
1603
|
+
badge: string[];
|
|
1604
|
+
group: string[];
|
|
1605
|
+
};
|
|
1606
|
+
};
|
|
1607
|
+
type: {
|
|
1608
|
+
agent: {};
|
|
1609
|
+
human: {};
|
|
1610
|
+
};
|
|
1611
|
+
size: {
|
|
1612
|
+
xl: {
|
|
1613
|
+
root: string;
|
|
1614
|
+
};
|
|
1615
|
+
lg: {
|
|
1616
|
+
root: string;
|
|
1617
|
+
};
|
|
1618
|
+
md: {
|
|
1619
|
+
root: string;
|
|
1620
|
+
};
|
|
1621
|
+
sm: {
|
|
1622
|
+
root: string;
|
|
1623
|
+
};
|
|
1624
|
+
xs: {
|
|
1625
|
+
root: string;
|
|
1626
|
+
};
|
|
1627
|
+
"2xs": {
|
|
1628
|
+
root: string;
|
|
1629
|
+
};
|
|
1630
|
+
};
|
|
1631
|
+
}, {
|
|
1632
|
+
root: string[];
|
|
1633
|
+
image: string[];
|
|
1634
|
+
fallback: string[];
|
|
1635
|
+
badge: string[];
|
|
1636
|
+
group: string[];
|
|
1637
|
+
}, import("tailwind-variants/lite").TVReturnType<{
|
|
1638
|
+
theme: {
|
|
1639
|
+
brutal: {
|
|
1640
|
+
root: string;
|
|
1641
|
+
fallback: string;
|
|
1642
|
+
badge: string[];
|
|
1643
|
+
group: string[];
|
|
1644
|
+
};
|
|
1645
|
+
elegant: {
|
|
1646
|
+
root: string[];
|
|
1647
|
+
image: string[];
|
|
1648
|
+
fallback: string[];
|
|
1649
|
+
badge: string[];
|
|
1650
|
+
group: string[];
|
|
1651
|
+
};
|
|
1652
|
+
};
|
|
1653
|
+
type: {
|
|
1654
|
+
agent: {};
|
|
1655
|
+
human: {};
|
|
1656
|
+
};
|
|
1657
|
+
size: {
|
|
1658
|
+
xl: {
|
|
1659
|
+
root: string;
|
|
1660
|
+
};
|
|
1661
|
+
lg: {
|
|
1662
|
+
root: string;
|
|
1663
|
+
};
|
|
1664
|
+
md: {
|
|
1665
|
+
root: string;
|
|
1666
|
+
};
|
|
1667
|
+
sm: {
|
|
1668
|
+
root: string;
|
|
1669
|
+
};
|
|
1670
|
+
xs: {
|
|
1671
|
+
root: string;
|
|
1672
|
+
};
|
|
1673
|
+
"2xs": {
|
|
1674
|
+
root: string;
|
|
1675
|
+
};
|
|
1676
|
+
};
|
|
1677
|
+
}, {
|
|
1678
|
+
root: string[];
|
|
1679
|
+
image: string[];
|
|
1680
|
+
fallback: string[];
|
|
1681
|
+
badge: string[];
|
|
1682
|
+
group: string[];
|
|
1683
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
1684
|
+
type AvatarSize = NonNullable<VariantProps<typeof avatar>["size"]>;
|
|
1685
|
+
type AvatarProps = StyledProps<Avatar$1.Root.Props> & Required<Pick<VariantProps<typeof avatar>, "size" | "type">>;
|
|
1686
|
+
declare function Avatar({
|
|
1687
|
+
size,
|
|
1688
|
+
type,
|
|
1689
|
+
className,
|
|
1690
|
+
children,
|
|
1691
|
+
...props
|
|
1692
|
+
}: AvatarProps): import("react").JSX.Element;
|
|
1693
|
+
type AvatarImageProps = StyledProps<Avatar$1.Image.Props>;
|
|
1694
|
+
declare function AvatarImage({
|
|
1695
|
+
className,
|
|
1696
|
+
...props
|
|
1697
|
+
}: AvatarImageProps): import("react").JSX.Element;
|
|
1698
|
+
type AvatarFallbackProps = StyledProps<Avatar$1.Fallback.Props>;
|
|
1699
|
+
declare function AvatarFallback({
|
|
1700
|
+
className,
|
|
1701
|
+
children,
|
|
1702
|
+
...props
|
|
1703
|
+
}: AvatarFallbackProps): import("react").JSX.Element;
|
|
1704
|
+
type AvatarBadgeProps = ComponentPropsWithRef<"span">;
|
|
1705
|
+
declare function AvatarBadge({
|
|
1706
|
+
className,
|
|
1707
|
+
...props
|
|
1708
|
+
}: AvatarBadgeProps): import("react").JSX.Element;
|
|
1709
|
+
type AvatarGroupProps = ComponentPropsWithRef<"div">;
|
|
1710
|
+
declare function AvatarGroup({
|
|
1711
|
+
className,
|
|
1712
|
+
...props
|
|
1713
|
+
}: AvatarGroupProps): import("react").JSX.Element;
|
|
1714
|
+
type AvatarGroupCountProps = ComponentPropsWithRef<"span"> & {
|
|
1715
|
+
/** Matches the frame scale of the sibling avatars. */size: AvatarSize;
|
|
1716
|
+
};
|
|
1717
|
+
declare function AvatarGroupCount({
|
|
1718
|
+
size,
|
|
1719
|
+
className,
|
|
1720
|
+
...props
|
|
1721
|
+
}: AvatarGroupCountProps): import("react").JSX.Element;
|
|
1722
|
+
//#endregion
|
|
1723
|
+
//#region src/components/inline-code/inline-code.d.ts
|
|
1724
|
+
type InlineCodeProps = ComponentPropsWithRef<"code">;
|
|
1725
|
+
declare function InlineCode({
|
|
1726
|
+
className,
|
|
1727
|
+
...props
|
|
1728
|
+
}: InlineCodeProps): import("react").JSX.Element;
|
|
1729
|
+
//#endregion
|
|
1730
|
+
//#region src/components/status/status.d.ts
|
|
1731
|
+
declare const status$1: import("tailwind-variants/lite").TVReturnType<{
|
|
1732
|
+
theme: {
|
|
1733
|
+
brutal: {};
|
|
1734
|
+
elegant: {};
|
|
1735
|
+
};
|
|
1736
|
+
size: {
|
|
1737
|
+
xs: {
|
|
1738
|
+
root: string;
|
|
1739
|
+
};
|
|
1740
|
+
sm: {
|
|
1741
|
+
root: string;
|
|
1742
|
+
};
|
|
1743
|
+
md: {
|
|
1744
|
+
root: string;
|
|
1745
|
+
};
|
|
1746
|
+
lg: {
|
|
1747
|
+
root: string;
|
|
1748
|
+
};
|
|
1749
|
+
};
|
|
1750
|
+
pulse: {
|
|
1751
|
+
true: {
|
|
1752
|
+
root: string;
|
|
1753
|
+
};
|
|
1754
|
+
false: {
|
|
1755
|
+
root: string;
|
|
1756
|
+
};
|
|
1757
|
+
};
|
|
1758
|
+
}, undefined, undefined, {
|
|
1759
|
+
theme: {
|
|
1760
|
+
brutal: {
|
|
1761
|
+
root: string;
|
|
1762
|
+
};
|
|
1763
|
+
elegant: {};
|
|
1764
|
+
};
|
|
1765
|
+
variant: {
|
|
1766
|
+
default: {
|
|
1767
|
+
root: string;
|
|
1768
|
+
};
|
|
1769
|
+
primary: {
|
|
1770
|
+
root: string;
|
|
1771
|
+
};
|
|
1772
|
+
information: {
|
|
1773
|
+
root: string;
|
|
1774
|
+
};
|
|
1775
|
+
muted: {
|
|
1776
|
+
root: string;
|
|
1777
|
+
};
|
|
1778
|
+
accent: {
|
|
1779
|
+
root: string;
|
|
1780
|
+
};
|
|
1781
|
+
success: {
|
|
1782
|
+
root: string;
|
|
1783
|
+
};
|
|
1784
|
+
warning: {
|
|
1785
|
+
root: string;
|
|
1786
|
+
};
|
|
1787
|
+
danger: {
|
|
1788
|
+
root: string;
|
|
1789
|
+
};
|
|
1790
|
+
};
|
|
1791
|
+
}, {
|
|
1792
|
+
root: string[];
|
|
1793
|
+
}, import("tailwind-variants/lite").TVReturnType<{
|
|
1794
|
+
theme: {
|
|
1795
|
+
brutal: {
|
|
1796
|
+
root: string;
|
|
1797
|
+
};
|
|
1798
|
+
elegant: {};
|
|
1799
|
+
};
|
|
1800
|
+
variant: {
|
|
1801
|
+
default: {
|
|
1802
|
+
root: string;
|
|
1803
|
+
};
|
|
1804
|
+
primary: {
|
|
1805
|
+
root: string;
|
|
1806
|
+
};
|
|
1807
|
+
information: {
|
|
1808
|
+
root: string;
|
|
1809
|
+
};
|
|
1810
|
+
muted: {
|
|
1811
|
+
root: string;
|
|
1812
|
+
};
|
|
1813
|
+
accent: {
|
|
1814
|
+
root: string;
|
|
1815
|
+
};
|
|
1816
|
+
success: {
|
|
1817
|
+
root: string;
|
|
1818
|
+
};
|
|
1819
|
+
warning: {
|
|
1820
|
+
root: string;
|
|
1821
|
+
};
|
|
1822
|
+
danger: {
|
|
1823
|
+
root: string;
|
|
1824
|
+
};
|
|
1825
|
+
};
|
|
1826
|
+
}, {
|
|
1827
|
+
root: string[];
|
|
1828
|
+
}, undefined, {
|
|
1829
|
+
theme: {
|
|
1830
|
+
brutal: {
|
|
1831
|
+
root: string;
|
|
1832
|
+
};
|
|
1833
|
+
elegant: {};
|
|
1834
|
+
};
|
|
1835
|
+
variant: {
|
|
1836
|
+
default: {
|
|
1837
|
+
root: string;
|
|
1838
|
+
};
|
|
1839
|
+
primary: {
|
|
1840
|
+
root: string;
|
|
1841
|
+
};
|
|
1842
|
+
information: {
|
|
1843
|
+
root: string;
|
|
1844
|
+
};
|
|
1845
|
+
muted: {
|
|
1846
|
+
root: string;
|
|
1847
|
+
};
|
|
1848
|
+
accent: {
|
|
1849
|
+
root: string;
|
|
1850
|
+
};
|
|
1851
|
+
success: {
|
|
1852
|
+
root: string;
|
|
1853
|
+
};
|
|
1854
|
+
warning: {
|
|
1855
|
+
root: string;
|
|
1856
|
+
};
|
|
1857
|
+
danger: {
|
|
1858
|
+
root: string;
|
|
1859
|
+
};
|
|
1860
|
+
};
|
|
1861
|
+
}, {
|
|
1862
|
+
root: string[];
|
|
1863
|
+
}, import("tailwind-variants/lite").TVReturnType<{
|
|
1864
|
+
theme: {
|
|
1865
|
+
brutal: {
|
|
1866
|
+
root: string;
|
|
1867
|
+
};
|
|
1868
|
+
elegant: {};
|
|
1869
|
+
};
|
|
1870
|
+
variant: {
|
|
1871
|
+
default: {
|
|
1872
|
+
root: string;
|
|
1873
|
+
};
|
|
1874
|
+
primary: {
|
|
1875
|
+
root: string;
|
|
1876
|
+
};
|
|
1877
|
+
information: {
|
|
1878
|
+
root: string;
|
|
1879
|
+
};
|
|
1880
|
+
muted: {
|
|
1881
|
+
root: string;
|
|
1882
|
+
};
|
|
1883
|
+
accent: {
|
|
1884
|
+
root: string;
|
|
1885
|
+
};
|
|
1886
|
+
success: {
|
|
1887
|
+
root: string;
|
|
1888
|
+
};
|
|
1889
|
+
warning: {
|
|
1890
|
+
root: string;
|
|
1891
|
+
};
|
|
1892
|
+
danger: {
|
|
1893
|
+
root: string;
|
|
1894
|
+
};
|
|
1895
|
+
};
|
|
1896
|
+
}, {
|
|
1897
|
+
root: string[];
|
|
1898
|
+
}, undefined, unknown, unknown, undefined>>>;
|
|
1899
|
+
type StatusProps = Omit<useRender.ComponentProps<"span">, "children"> & Omit<VariantProps<typeof status$1>, "theme">;
|
|
1900
|
+
declare function StatusRoot({
|
|
1901
|
+
size,
|
|
1902
|
+
variant,
|
|
1903
|
+
pulse,
|
|
1904
|
+
className,
|
|
1905
|
+
render,
|
|
1906
|
+
...props
|
|
1907
|
+
}: StatusProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
1908
|
+
declare const Status: typeof StatusRoot;
|
|
1909
|
+
//#endregion
|
|
1910
|
+
//#region src/components/spinner/spinner.d.ts
|
|
1911
|
+
declare const spinner: import("tailwind-variants/lite").TVReturnType<{
|
|
1912
|
+
theme: {
|
|
1913
|
+
brutal: {};
|
|
1914
|
+
elegant: {};
|
|
1915
|
+
};
|
|
1916
|
+
size: {
|
|
1917
|
+
sm: {};
|
|
1918
|
+
lg: {};
|
|
1919
|
+
};
|
|
1920
|
+
}, {
|
|
1921
|
+
root: string[];
|
|
1922
|
+
glyph: string;
|
|
1923
|
+
ring: string;
|
|
1924
|
+
}, undefined, {
|
|
1925
|
+
theme: {
|
|
1926
|
+
brutal: {};
|
|
1927
|
+
elegant: {};
|
|
1928
|
+
};
|
|
1929
|
+
size: {
|
|
1930
|
+
sm: {};
|
|
1931
|
+
lg: {};
|
|
1932
|
+
};
|
|
1933
|
+
}, {
|
|
1934
|
+
root: string[];
|
|
1935
|
+
glyph: string;
|
|
1936
|
+
ring: string;
|
|
1937
|
+
}, import("tailwind-variants/lite").TVReturnType<{
|
|
1938
|
+
theme: {
|
|
1939
|
+
brutal: {};
|
|
1940
|
+
elegant: {};
|
|
1941
|
+
};
|
|
1942
|
+
size: {
|
|
1943
|
+
sm: {};
|
|
1944
|
+
lg: {};
|
|
1945
|
+
};
|
|
1946
|
+
}, {
|
|
1947
|
+
root: string[];
|
|
1948
|
+
glyph: string;
|
|
1949
|
+
ring: string;
|
|
1950
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
1951
|
+
type SpinnerProps = WithoutChildren<useRender.ComponentProps<"span">> & Omit<VariantProps<typeof spinner>, "theme">;
|
|
1952
|
+
declare function Spinner({
|
|
1953
|
+
size,
|
|
1954
|
+
className,
|
|
1955
|
+
render,
|
|
1956
|
+
...props
|
|
1957
|
+
}: SpinnerProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
1958
|
+
//#endregion
|
|
1959
|
+
//#region src/components/banner/banner.d.ts
|
|
1960
|
+
declare const banner: import("tailwind-variants/lite").TVReturnType<{
|
|
1961
|
+
theme: {
|
|
1962
|
+
brutal: {
|
|
1963
|
+
root: string[];
|
|
1964
|
+
title: string[];
|
|
1965
|
+
description: string[];
|
|
1966
|
+
action: string[];
|
|
1967
|
+
};
|
|
1968
|
+
elegant: {
|
|
1969
|
+
root: string[];
|
|
1970
|
+
title: string[];
|
|
1971
|
+
description: string[];
|
|
1972
|
+
action: string[];
|
|
1973
|
+
};
|
|
1974
|
+
};
|
|
1975
|
+
status: {
|
|
1976
|
+
default: {};
|
|
1977
|
+
destructive: {};
|
|
1978
|
+
warning: {};
|
|
1979
|
+
info: {};
|
|
1980
|
+
success: {};
|
|
1981
|
+
};
|
|
1982
|
+
size: {
|
|
1983
|
+
sm: {};
|
|
1984
|
+
md: {};
|
|
1985
|
+
lg: {};
|
|
1986
|
+
};
|
|
1987
|
+
align: {
|
|
1988
|
+
top: {
|
|
1989
|
+
action: string;
|
|
1990
|
+
};
|
|
1991
|
+
middle: {
|
|
1992
|
+
action: string;
|
|
1993
|
+
};
|
|
1994
|
+
};
|
|
1995
|
+
}, {
|
|
1996
|
+
root: string[];
|
|
1997
|
+
title: string[];
|
|
1998
|
+
description: string[];
|
|
1999
|
+
action: string[];
|
|
2000
|
+
}, undefined, {
|
|
2001
|
+
theme: {
|
|
2002
|
+
brutal: {
|
|
2003
|
+
root: string[];
|
|
2004
|
+
title: string[];
|
|
2005
|
+
description: string[];
|
|
2006
|
+
action: string[];
|
|
2007
|
+
};
|
|
2008
|
+
elegant: {
|
|
2009
|
+
root: string[];
|
|
2010
|
+
title: string[];
|
|
2011
|
+
description: string[];
|
|
2012
|
+
action: string[];
|
|
2013
|
+
};
|
|
2014
|
+
};
|
|
2015
|
+
status: {
|
|
2016
|
+
default: {};
|
|
2017
|
+
destructive: {};
|
|
2018
|
+
warning: {};
|
|
2019
|
+
info: {};
|
|
2020
|
+
success: {};
|
|
2021
|
+
};
|
|
2022
|
+
size: {
|
|
2023
|
+
sm: {};
|
|
2024
|
+
md: {};
|
|
2025
|
+
lg: {};
|
|
2026
|
+
};
|
|
2027
|
+
align: {
|
|
2028
|
+
top: {
|
|
2029
|
+
action: string;
|
|
2030
|
+
};
|
|
2031
|
+
middle: {
|
|
2032
|
+
action: string;
|
|
2033
|
+
};
|
|
2034
|
+
};
|
|
2035
|
+
}, {
|
|
2036
|
+
root: string[];
|
|
2037
|
+
title: string[];
|
|
2038
|
+
description: string[];
|
|
2039
|
+
action: string[];
|
|
2040
|
+
}, import("tailwind-variants/lite").TVReturnType<{
|
|
2041
|
+
theme: {
|
|
2042
|
+
brutal: {
|
|
2043
|
+
root: string[];
|
|
2044
|
+
title: string[];
|
|
2045
|
+
description: string[];
|
|
2046
|
+
action: string[];
|
|
2047
|
+
};
|
|
2048
|
+
elegant: {
|
|
2049
|
+
root: string[];
|
|
2050
|
+
title: string[];
|
|
2051
|
+
description: string[];
|
|
2052
|
+
action: string[];
|
|
2053
|
+
};
|
|
2054
|
+
};
|
|
2055
|
+
status: {
|
|
2056
|
+
default: {};
|
|
2057
|
+
destructive: {};
|
|
2058
|
+
warning: {};
|
|
2059
|
+
info: {};
|
|
2060
|
+
success: {};
|
|
2061
|
+
};
|
|
2062
|
+
size: {
|
|
2063
|
+
sm: {};
|
|
2064
|
+
md: {};
|
|
2065
|
+
lg: {};
|
|
2066
|
+
};
|
|
2067
|
+
align: {
|
|
2068
|
+
top: {
|
|
2069
|
+
action: string;
|
|
2070
|
+
};
|
|
2071
|
+
middle: {
|
|
2072
|
+
action: string;
|
|
2073
|
+
};
|
|
2074
|
+
};
|
|
2075
|
+
}, {
|
|
2076
|
+
root: string[];
|
|
2077
|
+
title: string[];
|
|
2078
|
+
description: string[];
|
|
2079
|
+
action: string[];
|
|
2080
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
2081
|
+
type BannerStatus = NonNullable<VariantProps<typeof banner>["status"]>;
|
|
2082
|
+
type BannerProps = useRender.ComponentProps<"div"> & Omit<VariantProps<typeof banner>, "theme" | "align"> & {
|
|
2083
|
+
status: BannerStatus;
|
|
2084
|
+
};
|
|
2085
|
+
declare function Banner({
|
|
2086
|
+
status,
|
|
2087
|
+
size,
|
|
2088
|
+
className,
|
|
2089
|
+
render,
|
|
2090
|
+
...props
|
|
2091
|
+
}: BannerProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
2092
|
+
type BannerTitleProps = useRender.ComponentProps<"div">;
|
|
2093
|
+
declare function BannerTitle({
|
|
2094
|
+
render,
|
|
2095
|
+
className,
|
|
2096
|
+
...props
|
|
2097
|
+
}: BannerTitleProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
2098
|
+
type BannerDescriptionProps = useRender.ComponentProps<"div">;
|
|
2099
|
+
declare function BannerDescription({
|
|
2100
|
+
render,
|
|
2101
|
+
className,
|
|
2102
|
+
...props
|
|
2103
|
+
}: BannerDescriptionProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
2104
|
+
type BannerActionProps = Omit<useRender.ComponentProps<"div">, "align"> & Pick<VariantProps<typeof banner>, "align">;
|
|
2105
|
+
declare function BannerAction({
|
|
2106
|
+
align,
|
|
2107
|
+
render,
|
|
2108
|
+
className,
|
|
2109
|
+
...props
|
|
2110
|
+
}: BannerActionProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
2111
|
+
//#endregion
|
|
2112
|
+
//#region src/components/empty-state/empty-state.d.ts
|
|
2113
|
+
type EmptyStateProps = useRender.ComponentProps<"div">;
|
|
2114
|
+
declare function EmptyState({
|
|
2115
|
+
render,
|
|
2116
|
+
className,
|
|
2117
|
+
...props
|
|
2118
|
+
}: EmptyStateProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
2119
|
+
type EmptyStateContentProps = useRender.ComponentProps<"div">;
|
|
2120
|
+
declare function EmptyStateContent({
|
|
2121
|
+
render,
|
|
2122
|
+
className,
|
|
2123
|
+
...props
|
|
2124
|
+
}: EmptyStateContentProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
2125
|
+
type EmptyStateIconProps = useRender.ComponentProps<"div">;
|
|
2126
|
+
declare function EmptyStateIcon({
|
|
2127
|
+
render,
|
|
2128
|
+
className,
|
|
2129
|
+
...props
|
|
2130
|
+
}: EmptyStateIconProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
2131
|
+
type EmptyStateTitleProps = useRender.ComponentProps<"div">;
|
|
2132
|
+
declare function EmptyStateTitle({
|
|
2133
|
+
render,
|
|
2134
|
+
className,
|
|
2135
|
+
...props
|
|
2136
|
+
}: EmptyStateTitleProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
2137
|
+
type EmptyStateDescriptionProps = useRender.ComponentProps<"div">;
|
|
2138
|
+
declare function EmptyStateDescription({
|
|
2139
|
+
render,
|
|
2140
|
+
className,
|
|
2141
|
+
...props
|
|
2142
|
+
}: EmptyStateDescriptionProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
2143
|
+
type EmptyStateActionsProps = useRender.ComponentProps<"div">;
|
|
2144
|
+
declare function EmptyStateActions({
|
|
2145
|
+
render,
|
|
2146
|
+
className,
|
|
2147
|
+
...props
|
|
2148
|
+
}: EmptyStateActionsProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
2149
|
+
//#endregion
|
|
2150
|
+
//#region src/components/notification-center/notification-center.d.ts
|
|
2151
|
+
declare const notificationCenter: import("tailwind-variants/lite").TVReturnType<{
|
|
2152
|
+
theme: {
|
|
2153
|
+
brutal: {
|
|
2154
|
+
popup: string[];
|
|
2155
|
+
header: string[];
|
|
2156
|
+
title: string[];
|
|
2157
|
+
count: string[];
|
|
2158
|
+
list: string[];
|
|
2159
|
+
itemRow: string[];
|
|
2160
|
+
itemIcon: string[];
|
|
2161
|
+
itemTitle: string[];
|
|
2162
|
+
actionButton: never[];
|
|
2163
|
+
};
|
|
2164
|
+
elegant: {
|
|
2165
|
+
popup: string[];
|
|
2166
|
+
header: string[];
|
|
2167
|
+
title: string[];
|
|
2168
|
+
count: string[];
|
|
2169
|
+
list: string[];
|
|
2170
|
+
itemRow: string[];
|
|
2171
|
+
itemIcon: string[];
|
|
2172
|
+
itemTitle: string[];
|
|
2173
|
+
itemBody: string[];
|
|
2174
|
+
actionButton: string[];
|
|
2175
|
+
};
|
|
2176
|
+
};
|
|
2177
|
+
viewport: {
|
|
2178
|
+
desktop: {
|
|
2179
|
+
popup: string;
|
|
2180
|
+
};
|
|
2181
|
+
mobile: {
|
|
2182
|
+
popup: string;
|
|
2183
|
+
};
|
|
2184
|
+
};
|
|
2185
|
+
size: {
|
|
2186
|
+
sm: {
|
|
2187
|
+
popup: string;
|
|
2188
|
+
};
|
|
2189
|
+
md: {
|
|
2190
|
+
popup: string;
|
|
2191
|
+
};
|
|
2192
|
+
lg: {
|
|
2193
|
+
popup: string;
|
|
2194
|
+
};
|
|
2195
|
+
};
|
|
2196
|
+
read: {
|
|
2197
|
+
true: {
|
|
2198
|
+
item: string;
|
|
2199
|
+
};
|
|
2200
|
+
false: {
|
|
2201
|
+
item: string;
|
|
2202
|
+
};
|
|
2203
|
+
};
|
|
2204
|
+
status: {
|
|
2205
|
+
error: {};
|
|
2206
|
+
warning: {};
|
|
2207
|
+
info: {};
|
|
2208
|
+
success: {};
|
|
2209
|
+
};
|
|
2210
|
+
actionVariant: {
|
|
2211
|
+
primary: {};
|
|
2212
|
+
secondary: {};
|
|
2213
|
+
};
|
|
2214
|
+
}, {
|
|
2215
|
+
popup: string[];
|
|
2216
|
+
header: string[];
|
|
2217
|
+
title: string[];
|
|
2218
|
+
count: string[];
|
|
2219
|
+
scroller: string[];
|
|
2220
|
+
list: string[];
|
|
2221
|
+
item: string[];
|
|
2222
|
+
itemRow: string[];
|
|
2223
|
+
itemIcon: string[];
|
|
2224
|
+
itemContent: string[];
|
|
2225
|
+
itemTitle: string[];
|
|
2226
|
+
itemBody: string[];
|
|
2227
|
+
itemActions: string[];
|
|
2228
|
+
actionButton: never[];
|
|
2229
|
+
}, undefined, {
|
|
2230
|
+
theme: {
|
|
2231
|
+
brutal: {
|
|
2232
|
+
popup: string[];
|
|
2233
|
+
header: string[];
|
|
2234
|
+
title: string[];
|
|
2235
|
+
count: string[];
|
|
2236
|
+
list: string[];
|
|
2237
|
+
itemRow: string[];
|
|
2238
|
+
itemIcon: string[];
|
|
2239
|
+
itemTitle: string[];
|
|
2240
|
+
actionButton: never[];
|
|
2241
|
+
};
|
|
2242
|
+
elegant: {
|
|
2243
|
+
popup: string[];
|
|
2244
|
+
header: string[];
|
|
2245
|
+
title: string[];
|
|
2246
|
+
count: string[];
|
|
2247
|
+
list: string[];
|
|
2248
|
+
itemRow: string[];
|
|
2249
|
+
itemIcon: string[];
|
|
2250
|
+
itemTitle: string[];
|
|
2251
|
+
itemBody: string[];
|
|
2252
|
+
actionButton: string[];
|
|
2253
|
+
};
|
|
2254
|
+
};
|
|
2255
|
+
viewport: {
|
|
2256
|
+
desktop: {
|
|
2257
|
+
popup: string;
|
|
2258
|
+
};
|
|
2259
|
+
mobile: {
|
|
2260
|
+
popup: string;
|
|
2261
|
+
};
|
|
2262
|
+
};
|
|
2263
|
+
size: {
|
|
2264
|
+
sm: {
|
|
2265
|
+
popup: string;
|
|
2266
|
+
};
|
|
2267
|
+
md: {
|
|
2268
|
+
popup: string;
|
|
2269
|
+
};
|
|
2270
|
+
lg: {
|
|
2271
|
+
popup: string;
|
|
2272
|
+
};
|
|
2273
|
+
};
|
|
2274
|
+
read: {
|
|
2275
|
+
true: {
|
|
2276
|
+
item: string;
|
|
2277
|
+
};
|
|
2278
|
+
false: {
|
|
2279
|
+
item: string;
|
|
2280
|
+
};
|
|
2281
|
+
};
|
|
2282
|
+
status: {
|
|
2283
|
+
error: {};
|
|
2284
|
+
warning: {};
|
|
2285
|
+
info: {};
|
|
2286
|
+
success: {};
|
|
2287
|
+
};
|
|
2288
|
+
actionVariant: {
|
|
2289
|
+
primary: {};
|
|
2290
|
+
secondary: {};
|
|
2291
|
+
};
|
|
2292
|
+
}, {
|
|
2293
|
+
popup: string[];
|
|
2294
|
+
header: string[];
|
|
2295
|
+
title: string[];
|
|
2296
|
+
count: string[];
|
|
2297
|
+
scroller: string[];
|
|
2298
|
+
list: string[];
|
|
2299
|
+
item: string[];
|
|
2300
|
+
itemRow: string[];
|
|
2301
|
+
itemIcon: string[];
|
|
2302
|
+
itemContent: string[];
|
|
2303
|
+
itemTitle: string[];
|
|
2304
|
+
itemBody: string[];
|
|
2305
|
+
itemActions: string[];
|
|
2306
|
+
actionButton: never[];
|
|
2307
|
+
}, import("tailwind-variants/lite").TVReturnType<{
|
|
2308
|
+
theme: {
|
|
2309
|
+
brutal: {
|
|
2310
|
+
popup: string[];
|
|
2311
|
+
header: string[];
|
|
2312
|
+
title: string[];
|
|
2313
|
+
count: string[];
|
|
2314
|
+
list: string[];
|
|
2315
|
+
itemRow: string[];
|
|
2316
|
+
itemIcon: string[];
|
|
2317
|
+
itemTitle: string[];
|
|
2318
|
+
actionButton: never[];
|
|
2319
|
+
};
|
|
2320
|
+
elegant: {
|
|
2321
|
+
popup: string[];
|
|
2322
|
+
header: string[];
|
|
2323
|
+
title: string[];
|
|
2324
|
+
count: string[];
|
|
2325
|
+
list: string[];
|
|
2326
|
+
itemRow: string[];
|
|
2327
|
+
itemIcon: string[];
|
|
2328
|
+
itemTitle: string[];
|
|
2329
|
+
itemBody: string[];
|
|
2330
|
+
actionButton: string[];
|
|
2331
|
+
};
|
|
2332
|
+
};
|
|
2333
|
+
viewport: {
|
|
2334
|
+
desktop: {
|
|
2335
|
+
popup: string;
|
|
2336
|
+
};
|
|
2337
|
+
mobile: {
|
|
2338
|
+
popup: string;
|
|
2339
|
+
};
|
|
2340
|
+
};
|
|
2341
|
+
size: {
|
|
2342
|
+
sm: {
|
|
2343
|
+
popup: string;
|
|
2344
|
+
};
|
|
2345
|
+
md: {
|
|
2346
|
+
popup: string;
|
|
2347
|
+
};
|
|
2348
|
+
lg: {
|
|
2349
|
+
popup: string;
|
|
2350
|
+
};
|
|
2351
|
+
};
|
|
2352
|
+
read: {
|
|
2353
|
+
true: {
|
|
2354
|
+
item: string;
|
|
2355
|
+
};
|
|
2356
|
+
false: {
|
|
2357
|
+
item: string;
|
|
2358
|
+
};
|
|
2359
|
+
};
|
|
2360
|
+
status: {
|
|
2361
|
+
error: {};
|
|
2362
|
+
warning: {};
|
|
2363
|
+
info: {};
|
|
2364
|
+
success: {};
|
|
2365
|
+
};
|
|
2366
|
+
actionVariant: {
|
|
2367
|
+
primary: {};
|
|
2368
|
+
secondary: {};
|
|
2369
|
+
};
|
|
2370
|
+
}, {
|
|
2371
|
+
popup: string[];
|
|
2372
|
+
header: string[];
|
|
2373
|
+
title: string[];
|
|
2374
|
+
count: string[];
|
|
2375
|
+
scroller: string[];
|
|
2376
|
+
list: string[];
|
|
2377
|
+
item: string[];
|
|
2378
|
+
itemRow: string[];
|
|
2379
|
+
itemIcon: string[];
|
|
2380
|
+
itemContent: string[];
|
|
2381
|
+
itemTitle: string[];
|
|
2382
|
+
itemBody: string[];
|
|
2383
|
+
itemActions: string[];
|
|
2384
|
+
actionButton: never[];
|
|
2385
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
2386
|
+
type NotificationCenterProps = Popover$1.Root.Props;
|
|
2387
|
+
declare function NotificationCenter({
|
|
2388
|
+
modal,
|
|
2389
|
+
...props
|
|
2390
|
+
}: NotificationCenterProps): import("react").JSX.Element;
|
|
2391
|
+
type NotificationCenterTriggerProps = Popover$1.Trigger.Props;
|
|
2392
|
+
declare function NotificationCenterTrigger(props: NotificationCenterTriggerProps): import("react").JSX.Element;
|
|
2393
|
+
type NotificationCenterPortalProps = Popover$1.Portal.Props;
|
|
2394
|
+
type NotificationCenterPopupProps = StyledProps<Popover$1.Popup.Props> & Pick<VariantProps<typeof notificationCenter>, "size" | "viewport"> & Pick<Popover$1.Positioner.Props, "align" | "alignOffset" | "anchor" | "arrowPadding" | "collisionAvoidance" | "collisionBoundary" | "collisionPadding" | "disableAnchorTracking" | "positionMethod" | "side" | "sideOffset" | "sticky"> & {
|
|
2395
|
+
portalProps?: NotificationCenterPortalProps;
|
|
2396
|
+
};
|
|
2397
|
+
declare function NotificationCenterPopup({
|
|
2398
|
+
viewport,
|
|
2399
|
+
size,
|
|
2400
|
+
className,
|
|
2401
|
+
initialFocus,
|
|
2402
|
+
"aria-label": ariaLabel,
|
|
2403
|
+
align,
|
|
2404
|
+
alignOffset,
|
|
2405
|
+
anchor,
|
|
2406
|
+
arrowPadding,
|
|
2407
|
+
collisionAvoidance,
|
|
2408
|
+
collisionBoundary,
|
|
2409
|
+
collisionPadding,
|
|
2410
|
+
disableAnchorTracking,
|
|
2411
|
+
positionMethod,
|
|
2412
|
+
side,
|
|
2413
|
+
sideOffset,
|
|
2414
|
+
sticky,
|
|
2415
|
+
portalProps,
|
|
2416
|
+
...props
|
|
2417
|
+
}: NotificationCenterPopupProps): import("react").JSX.Element;
|
|
2418
|
+
type NotificationCenterHeaderProps = useRender.ComponentProps<"div">;
|
|
2419
|
+
declare function NotificationCenterHeader({
|
|
2420
|
+
render,
|
|
2421
|
+
className,
|
|
2422
|
+
...props
|
|
2423
|
+
}: NotificationCenterHeaderProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
2424
|
+
type NotificationCenterTitleProps = useRender.ComponentProps<"span">;
|
|
2425
|
+
declare function NotificationCenterTitle({
|
|
2426
|
+
render,
|
|
2427
|
+
className,
|
|
2428
|
+
...props
|
|
2429
|
+
}: NotificationCenterTitleProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
2430
|
+
type NotificationCenterCountProps = useRender.ComponentProps<"span">;
|
|
2431
|
+
declare function NotificationCenterCount({
|
|
2432
|
+
render,
|
|
2433
|
+
className,
|
|
2434
|
+
...props
|
|
2435
|
+
}: NotificationCenterCountProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
2436
|
+
type NotificationCenterScrollerProps = useRender.ComponentProps<"div">;
|
|
2437
|
+
declare function NotificationCenterScroller({
|
|
2438
|
+
render,
|
|
2439
|
+
className,
|
|
2440
|
+
...props
|
|
2441
|
+
}: NotificationCenterScrollerProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
2442
|
+
type NotificationCenterListProps = useRender.ComponentProps<"ul">;
|
|
2443
|
+
declare function NotificationCenterList({
|
|
2444
|
+
render,
|
|
2445
|
+
className,
|
|
2446
|
+
"aria-label": ariaLabel,
|
|
2447
|
+
...props
|
|
2448
|
+
}: NotificationCenterListProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
2449
|
+
type NotificationCenterItemProps = useRender.ComponentProps<"li"> & Pick<VariantProps<typeof notificationCenter>, "read">;
|
|
2450
|
+
declare function NotificationCenterItem({
|
|
2451
|
+
read,
|
|
2452
|
+
render,
|
|
2453
|
+
className,
|
|
2454
|
+
...props
|
|
2455
|
+
}: NotificationCenterItemProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
2456
|
+
type NotificationCenterItemRowProps = useRender.ComponentProps<"div">;
|
|
2457
|
+
declare function NotificationCenterItemRow({
|
|
2458
|
+
render,
|
|
2459
|
+
className,
|
|
2460
|
+
...props
|
|
2461
|
+
}: NotificationCenterItemRowProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
2462
|
+
type NotificationCenterItemIconProps = useRender.ComponentProps<"div"> & Pick<VariantProps<typeof notificationCenter>, "status">;
|
|
2463
|
+
declare function NotificationCenterItemIcon({
|
|
2464
|
+
status,
|
|
2465
|
+
render,
|
|
2466
|
+
className,
|
|
2467
|
+
children,
|
|
2468
|
+
"aria-label": ariaLabel,
|
|
2469
|
+
...props
|
|
2470
|
+
}: NotificationCenterItemIconProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
2471
|
+
type NotificationCenterItemContentProps = useRender.ComponentProps<"div">;
|
|
2472
|
+
declare function NotificationCenterItemContent({
|
|
2473
|
+
render,
|
|
2474
|
+
className,
|
|
2475
|
+
...props
|
|
2476
|
+
}: NotificationCenterItemContentProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
2477
|
+
type NotificationCenterItemTitleProps = useRender.ComponentProps<"div">;
|
|
2478
|
+
declare function NotificationCenterItemTitle({
|
|
2479
|
+
render,
|
|
2480
|
+
className,
|
|
2481
|
+
...props
|
|
2482
|
+
}: NotificationCenterItemTitleProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
2483
|
+
type NotificationCenterItemBodyProps = useRender.ComponentProps<"div">;
|
|
2484
|
+
declare function NotificationCenterItemBody({
|
|
2485
|
+
render,
|
|
2486
|
+
className,
|
|
2487
|
+
...props
|
|
2488
|
+
}: NotificationCenterItemBodyProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
2489
|
+
type NotificationCenterItemActionsProps = useRender.ComponentProps<"div">;
|
|
2490
|
+
declare function NotificationCenterItemActions({
|
|
2491
|
+
render,
|
|
2492
|
+
className,
|
|
2493
|
+
...props
|
|
2494
|
+
}: NotificationCenterItemActionsProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
2495
|
+
type NotificationCenterActionButtonProps = Omit<ButtonProps, "className" | "size" | "variant"> & {
|
|
2496
|
+
className?: string;
|
|
2497
|
+
variant?: VariantProps<typeof notificationCenter>["actionVariant"];
|
|
2498
|
+
};
|
|
2499
|
+
declare function NotificationCenterActionButton({
|
|
2500
|
+
variant,
|
|
2501
|
+
className,
|
|
2502
|
+
...props
|
|
2503
|
+
}: NotificationCenterActionButtonProps): import("react").JSX.Element;
|
|
2504
|
+
type NotificationCenterEmptyStateProps = EmptyStateProps;
|
|
2505
|
+
declare function NotificationCenterEmptyState(props: NotificationCenterEmptyStateProps): import("react").JSX.Element;
|
|
2506
|
+
//#endregion
|
|
2507
|
+
//#region src/components/tabs/tabs.d.ts
|
|
2508
|
+
declare const tabs: import("tailwind-variants/lite").TVReturnType<{
|
|
2509
|
+
theme: {
|
|
2510
|
+
brutal: {
|
|
2511
|
+
list: string[];
|
|
2512
|
+
background: string;
|
|
2513
|
+
tab: string[];
|
|
2514
|
+
};
|
|
2515
|
+
elegant: {};
|
|
2516
|
+
};
|
|
2517
|
+
variant: {
|
|
2518
|
+
default: {};
|
|
2519
|
+
underline: {};
|
|
2520
|
+
};
|
|
2521
|
+
}, {
|
|
2522
|
+
root: string[];
|
|
2523
|
+
list: string[];
|
|
2524
|
+
background: string[];
|
|
2525
|
+
tab: string[];
|
|
2526
|
+
content: string[];
|
|
2527
|
+
label: string[];
|
|
2528
|
+
panel: string[];
|
|
2529
|
+
indicator: string[];
|
|
2530
|
+
}, undefined, {
|
|
2531
|
+
theme: {
|
|
2532
|
+
brutal: {
|
|
2533
|
+
list: string[];
|
|
2534
|
+
background: string;
|
|
2535
|
+
tab: string[];
|
|
2536
|
+
};
|
|
2537
|
+
elegant: {};
|
|
2538
|
+
};
|
|
2539
|
+
variant: {
|
|
2540
|
+
default: {};
|
|
2541
|
+
underline: {};
|
|
2542
|
+
};
|
|
2543
|
+
}, {
|
|
2544
|
+
root: string[];
|
|
2545
|
+
list: string[];
|
|
2546
|
+
background: string[];
|
|
2547
|
+
tab: string[];
|
|
2548
|
+
content: string[];
|
|
2549
|
+
label: string[];
|
|
2550
|
+
panel: string[];
|
|
2551
|
+
indicator: string[];
|
|
2552
|
+
}, import("tailwind-variants/lite").TVReturnType<{
|
|
2553
|
+
theme: {
|
|
2554
|
+
brutal: {
|
|
2555
|
+
list: string[];
|
|
2556
|
+
background: string;
|
|
2557
|
+
tab: string[];
|
|
2558
|
+
};
|
|
2559
|
+
elegant: {};
|
|
2560
|
+
};
|
|
2561
|
+
variant: {
|
|
2562
|
+
default: {};
|
|
2563
|
+
underline: {};
|
|
2564
|
+
};
|
|
2565
|
+
}, {
|
|
2566
|
+
root: string[];
|
|
2567
|
+
list: string[];
|
|
2568
|
+
background: string[];
|
|
2569
|
+
tab: string[];
|
|
2570
|
+
content: string[];
|
|
2571
|
+
label: string[];
|
|
2572
|
+
panel: string[];
|
|
2573
|
+
indicator: string[];
|
|
2574
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
2575
|
+
type TabsListVariant = "default" | "underline";
|
|
2576
|
+
type TabsProps<T extends string = string> = StyledProps<Omit<Tabs$1.Root.Props, "defaultValue" | "onValueChange" | "value">> & Omit<VariantProps<typeof tabs>, "theme"> & {
|
|
2577
|
+
value?: T;
|
|
2578
|
+
defaultValue?: T;
|
|
2579
|
+
onValueChange?: (value: T, eventDetails: Tabs$1.Root.ChangeEventDetails) => void;
|
|
2580
|
+
};
|
|
2581
|
+
declare function Tabs<T extends string = string>({
|
|
2582
|
+
value,
|
|
2583
|
+
defaultValue,
|
|
2584
|
+
onValueChange,
|
|
2585
|
+
className,
|
|
2586
|
+
...props
|
|
2587
|
+
}: TabsProps<T>): import("react").JSX.Element;
|
|
2588
|
+
type TabsListProps = StyledProps<Tabs$1.List.Props> & {
|
|
2589
|
+
variant?: TabsListVariant;
|
|
2590
|
+
};
|
|
2591
|
+
declare function TabsList({
|
|
2592
|
+
className,
|
|
2593
|
+
children,
|
|
2594
|
+
variant,
|
|
2595
|
+
...props
|
|
2596
|
+
}: TabsListProps): import("react").JSX.Element;
|
|
2597
|
+
type SortableTabsListProps<T extends string = string> = TabsListProps & {
|
|
2598
|
+
value: readonly T[];
|
|
2599
|
+
onReorder: (value: T[]) => void;
|
|
2600
|
+
};
|
|
2601
|
+
declare function SortableTabsList<T extends string = string>({
|
|
2602
|
+
value,
|
|
2603
|
+
onReorder,
|
|
2604
|
+
children,
|
|
2605
|
+
variant,
|
|
2606
|
+
...props
|
|
2607
|
+
}: SortableTabsListProps<T>): import("react").JSX.Element;
|
|
2608
|
+
type TabsTabProps<T extends string = string> = StyledProps<Tabs$1.Tab.Props> & {
|
|
2609
|
+
value: T;
|
|
2610
|
+
};
|
|
2611
|
+
declare function TabsTab<T extends string = string>({
|
|
2612
|
+
value,
|
|
2613
|
+
...props
|
|
2614
|
+
}: TabsTabProps<T>): import("react").JSX.Element;
|
|
2615
|
+
type SortableTabsTabProps<T extends string = string> = TabsTabProps<T>;
|
|
2616
|
+
declare function SortableTabsTab<T extends string = string>({
|
|
2617
|
+
value,
|
|
2618
|
+
...props
|
|
2619
|
+
}: SortableTabsTabProps<T>): import("react").JSX.Element;
|
|
2620
|
+
type TabsLabelProps = ComponentPropsWithRef<"span">;
|
|
2621
|
+
declare function TabsLabel({
|
|
2622
|
+
className,
|
|
2623
|
+
...props
|
|
2624
|
+
}: TabsLabelProps): import("react").JSX.Element;
|
|
2625
|
+
type TabsPanelProps = StyledProps<Tabs$1.Panel.Props>;
|
|
2626
|
+
declare function TabsPanel({
|
|
2627
|
+
className,
|
|
2628
|
+
...props
|
|
2629
|
+
}: TabsPanelProps): import("react").JSX.Element;
|
|
2630
|
+
type TabsBackgroundProps = ComponentPropsWithRef<"span">;
|
|
2631
|
+
declare function TabsBackground({
|
|
2632
|
+
className,
|
|
2633
|
+
...props
|
|
2634
|
+
}: TabsBackgroundProps): import("react").JSX.Element;
|
|
2635
|
+
type TabsIndicatorProps = StyledProps<Tabs$1.Indicator.Props>;
|
|
2636
|
+
declare function TabsIndicator({
|
|
2637
|
+
className,
|
|
2638
|
+
...props
|
|
2639
|
+
}: TabsIndicatorProps): import("react").JSX.Element;
|
|
2640
|
+
type OrderedTabItem<T extends string = string> = {
|
|
2641
|
+
id: T;
|
|
2642
|
+
};
|
|
2643
|
+
declare function useOrderedTabs<T extends OrderedTabItem<string>>(items: readonly T[], storedOrder: readonly string[]): T[];
|
|
2644
|
+
//#endregion
|
|
2645
|
+
//#region src/lib/theme/theme-context.d.ts
|
|
2646
|
+
/** Visual style family. Mode (light/dark/system) is a separate axis. */
|
|
2647
|
+
type Theme = "brutal" | "elegant";
|
|
2648
|
+
type ThemeMode = "light" | "dark" | "system";
|
|
2649
|
+
type ResolvedThemeMode = Exclude<ThemeMode, "system">;
|
|
2650
|
+
type SetThemeOptions = {
|
|
2651
|
+
mode?: ThemeMode;
|
|
2652
|
+
};
|
|
2653
|
+
type SetTheme = {
|
|
2654
|
+
(theme: "brutal"): void;
|
|
2655
|
+
(theme: "elegant", options?: SetThemeOptions): void;
|
|
2656
|
+
};
|
|
2657
|
+
type ThemeState = {
|
|
2658
|
+
theme: Theme;
|
|
2659
|
+
setTheme: SetTheme;
|
|
2660
|
+
mode: ThemeMode;
|
|
2661
|
+
resolvedMode: ResolvedThemeMode;
|
|
2662
|
+
};
|
|
2663
|
+
//#endregion
|
|
2664
|
+
//#region src/lib/theme/theme-provider.d.ts
|
|
2665
|
+
interface ThemeProviderProps {
|
|
2666
|
+
/**
|
|
2667
|
+
* Controlled visual style family. Keep using this for isolated previews and
|
|
2668
|
+
* component matrix surfaces that should not own global DOM state.
|
|
2669
|
+
*/
|
|
2670
|
+
theme?: Theme;
|
|
2671
|
+
defaultTheme?: Theme;
|
|
2672
|
+
onThemeChange?: (theme: Theme) => void;
|
|
2673
|
+
/** Controlled light/dark behavior for the elegant family. */
|
|
2674
|
+
mode?: ThemeMode;
|
|
2675
|
+
defaultMode?: ThemeMode;
|
|
2676
|
+
onModeChange?: (mode: ThemeMode) => void;
|
|
2677
|
+
/**
|
|
2678
|
+
* Persist uncontrolled family and mode selections. The mode key appends
|
|
2679
|
+
* "-mode" unless `modeStorageKey` is provided.
|
|
2680
|
+
*/
|
|
2681
|
+
storageKey?: string;
|
|
2682
|
+
modeStorageKey?: string;
|
|
2683
|
+
/**
|
|
2684
|
+
* Sync the active family/mode onto `document.documentElement`.
|
|
2685
|
+
* Defaults to true for app-level providers. Set to false for nested previews
|
|
2686
|
+
* or component islands that should not mutate the app root.
|
|
2687
|
+
*/
|
|
2688
|
+
syncDom?: boolean;
|
|
2689
|
+
children: ReactNode;
|
|
2690
|
+
}
|
|
2691
|
+
declare function ThemeProvider({
|
|
2692
|
+
theme,
|
|
2693
|
+
defaultTheme,
|
|
2694
|
+
onThemeChange,
|
|
2695
|
+
mode,
|
|
2696
|
+
defaultMode,
|
|
2697
|
+
onModeChange,
|
|
2698
|
+
storageKey,
|
|
2699
|
+
modeStorageKey,
|
|
2700
|
+
syncDom,
|
|
2701
|
+
children
|
|
2702
|
+
}: ThemeProviderProps): import("react").JSX.Element;
|
|
2703
|
+
//#endregion
|
|
2704
|
+
//#region src/lib/theme/use-theme.d.ts
|
|
2705
|
+
/** Read the active style family for theme-aware component recipes. */
|
|
2706
|
+
declare function useThemeFamily(): Theme;
|
|
2707
|
+
/** Read and update the application-level RUI theme selection. */
|
|
2708
|
+
declare function useTheme(): ThemeState;
|
|
2709
|
+
//#endregion
|
|
2710
|
+
export { Avatar, AvatarBadge, type AvatarBadgeProps, AvatarFallback, type AvatarFallbackProps, AvatarGroup, AvatarGroupCount, type AvatarGroupCountProps, type AvatarGroupProps, AvatarImage, type AvatarImageProps, type AvatarProps, type AvatarSize, Badge, type BadgeProps, Banner, BannerAction, type BannerActionProps, BannerDescription, type BannerDescriptionProps, type BannerProps, type BannerStatus, BannerTitle, type BannerTitleProps, Button, type ButtonProps, Checkbox, type CheckboxProps, Combobox, ComboboxChip, type ComboboxChipProps, ComboboxChipRemove, type ComboboxChipRemoveProps, ComboboxChips, type ComboboxChipsProps, ComboboxClear, type ComboboxClearProps, ComboboxCollection, type ComboboxCollectionProps, ComboboxContent, type ComboboxContentProps, ComboboxControl, type ComboboxControlProps, ComboboxEmpty, type ComboboxEmptyProps, ComboboxGroup, ComboboxGroupLabel, type ComboboxGroupLabelProps, type ComboboxGroupProps, ComboboxHeader, type ComboboxHeaderProps, ComboboxInput, ComboboxInputGroup, type ComboboxInputGroupProps, type ComboboxInputProps, ComboboxItem, ComboboxItemIndicator, type ComboboxItemIndicatorProps, type ComboboxItemProps, ComboboxLabel, type ComboboxLabelProps, ComboboxList, type ComboboxListProps, ComboboxPopup, type ComboboxPopupProps, ComboboxPortal, type ComboboxPortalProps, type ComboboxProps, ComboboxRow, type ComboboxRowProps, ComboboxSeparator, type ComboboxSeparatorProps, ComboboxTrigger, ComboboxTriggerIndicator, type ComboboxTriggerIndicatorProps, type ComboboxTriggerProps, ComboboxValue, type ComboboxValueProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuCheckboxItemIndicator, type ContextMenuCheckboxItemIndicatorProps, type ContextMenuCheckboxItemProps, ContextMenuContent, type ContextMenuContentProps, ContextMenuItem, type ContextMenuItemProps, ContextMenuLabel, type ContextMenuLabelProps, ContextMenuPortal, type ContextMenuPortalProps, type ContextMenuProps, ContextMenuRadioGroup, type ContextMenuRadioGroupProps, ContextMenuRadioItem, ContextMenuRadioItemIndicator, type ContextMenuRadioItemIndicatorProps, type ContextMenuRadioItemProps, ContextMenuSeparator, type ContextMenuSeparatorProps, ContextMenuShortcut, type ContextMenuShortcutProps, ContextMenuSubmenu, type ContextMenuSubmenuProps, ContextMenuSubmenuTrigger, type ContextMenuSubmenuTriggerProps, ContextMenuTrigger, type ContextMenuTriggerProps, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuCheckboxItemIndicator, type DropdownMenuCheckboxItemIndicatorProps, type DropdownMenuCheckboxItemProps, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuItem, DropdownMenuItemCount, type DropdownMenuItemCountProps, type DropdownMenuItemProps, DropdownMenuLabel, type DropdownMenuLabelProps, DropdownMenuPopup, type DropdownMenuPopupProps, DropdownMenuPortal, type DropdownMenuPortalProps, type DropdownMenuProps, DropdownMenuRadioGroup, type DropdownMenuRadioGroupProps, DropdownMenuRadioItem, DropdownMenuRadioItemIndicator, type DropdownMenuRadioItemIndicatorProps, type DropdownMenuRadioItemProps, DropdownMenuSeparator, type DropdownMenuSeparatorProps, DropdownMenuShortcut, type DropdownMenuShortcutProps, DropdownMenuSubmenu, type DropdownMenuSubmenuProps, DropdownMenuSubmenuTrigger, type DropdownMenuSubmenuTriggerProps, DropdownMenuTrigger, type DropdownMenuTriggerProps, EmptyState, EmptyStateActions, type EmptyStateActionsProps, EmptyStateContent, type EmptyStateContentProps, EmptyStateDescription, type EmptyStateDescriptionProps, EmptyStateIcon, type EmptyStateIconProps, type EmptyStateProps, EmptyStateTitle, type EmptyStateTitleProps, InlineCode, type InlineCodeProps, Input, InputGroup, InputGroupAddon, type InputGroupAddonProps, type InputGroupAddonTextProps, InputGroupInput, type InputGroupInputProps, type InputGroupProps, type InputProps, Kbd, KbdGroup, type KbdGroupProps, type KbdProps, Label, LabelAsterisk, type LabelAsteriskProps, LabelOptional, type LabelOptionalProps, type LabelProps, LabelSub, type LabelSubProps, NotificationCenter, NotificationCenterActionButton, type NotificationCenterActionButtonProps, NotificationCenterCount, type NotificationCenterCountProps, NotificationCenterEmptyState, type NotificationCenterEmptyStateProps, NotificationCenterHeader, type NotificationCenterHeaderProps, NotificationCenterItem, NotificationCenterItemActions, type NotificationCenterItemActionsProps, NotificationCenterItemBody, type NotificationCenterItemBodyProps, NotificationCenterItemContent, type NotificationCenterItemContentProps, NotificationCenterItemIcon, type NotificationCenterItemIconProps, type NotificationCenterItemProps, NotificationCenterItemRow, type NotificationCenterItemRowProps, NotificationCenterItemTitle, type NotificationCenterItemTitleProps, NotificationCenterList, type NotificationCenterListProps, NotificationCenterPopup, type NotificationCenterPopupProps, type NotificationCenterPortalProps, type NotificationCenterProps, NotificationCenterScroller, type NotificationCenterScrollerProps, NotificationCenterTitle, type NotificationCenterTitleProps, NotificationCenterTrigger, type NotificationCenterTriggerProps, type OrderedTabItem, Popover, PopoverArrow, type PopoverArrowProps, PopoverBackdrop, type PopoverBackdropProps, PopoverClose, type PopoverCloseProps, PopoverContent, type PopoverContentProps, PopoverDescription, type PopoverDescriptionProps, PopoverHeader, type PopoverHeaderProps, PopoverPopup, type PopoverPopupProps, PopoverPortal, type PopoverPortalProps, type PopoverProps, PopoverSeparator, type PopoverSeparatorProps, PopoverTitle, type PopoverTitleProps, PopoverTrigger, type PopoverTriggerProps, PopoverViewport, type PopoverViewportProps, RadioGroup, RadioGroupIndicator, type RadioGroupIndicatorProps, RadioGroupItem, type RadioGroupItemProps, type RadioGroupProps, type ResolvedThemeMode, SegmentedControl, SegmentedControlCount, type SegmentedControlCountProps, SegmentedControlItem, type SegmentedControlItemProps, SegmentedControlLabel, type SegmentedControlLabelProps, type SegmentedControlProps, Select, SelectArrow, type SelectArrowProps, SelectContent, type SelectContentProps, SelectGroup, SelectGroupLabel, type SelectGroupLabelProps, type SelectGroupProps, SelectIcon, type SelectIconProps, SelectItem, SelectItemIndicator, type SelectItemIndicatorProps, type SelectItemProps, SelectItemText, type SelectItemTextProps, SelectLabel, type SelectLabelProps, SelectList, type SelectListProps, SelectPopup, type SelectPopupProps, SelectPortal, type SelectPortalProps, type SelectProps, SelectScrollDownArrow, type SelectScrollDownArrowProps, SelectScrollUpArrow, type SelectScrollUpArrowProps, SelectSeparator, type SelectSeparatorProps, SelectTrigger, type SelectTriggerProps, SelectValue, type SelectValueProps, type SetTheme, type SetThemeOptions, SortableTabsList, type SortableTabsListProps, SortableTabsTab, type SortableTabsTabProps, Spinner, type SpinnerProps, Status, type StatusProps, Tabs, TabsBackground, type TabsBackgroundProps, TabsIndicator, type TabsIndicatorProps, TabsLabel, type TabsLabelProps, TabsList, type TabsListProps, TabsPanel, type TabsPanelProps, type TabsProps, TabsTab, type TabsTabProps, Textarea, TextareaCounter, type TextareaCounterProps, TextareaGroup, type TextareaGroupProps, type TextareaProps, type Theme, type ThemeMode, ThemeProvider, type ThemeProviderProps, type ThemeState, Tooltip, TooltipContent, type TooltipContentProps, TooltipPortal, type TooltipPortalProps, type TooltipProps, TooltipProvider, type TooltipProviderProps, TooltipTrigger, type TooltipTriggerProps, buttonVariants, cn, useOrderedTabs, useTheme, useThemeFamily };
|