@boyernick/standard-ui-react 0.1.0
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 +9 -0
- package/package.json +46 -0
- package/src/accordion.tsx +84 -0
- package/src/alert-dialog.tsx +101 -0
- package/src/attachment.tsx +138 -0
- package/src/autocomplete.tsx +281 -0
- package/src/avatar.tsx +56 -0
- package/src/badge.tsx +28 -0
- package/src/brand.tsx +70 -0
- package/src/breadcrumb.tsx +81 -0
- package/src/button.tsx +129 -0
- package/src/calendar.tsx +84 -0
- package/src/card.tsx +54 -0
- package/src/carousel.tsx +253 -0
- package/src/chart.tsx +185 -0
- package/src/checkbox-group.tsx +14 -0
- package/src/checkbox.tsx +31 -0
- package/src/code-block.tsx +124 -0
- package/src/collapsible.tsx +61 -0
- package/src/combobox.tsx +324 -0
- package/src/command.tsx +377 -0
- package/src/context-menu.tsx +250 -0
- package/src/dialog.tsx +78 -0
- package/src/drawer.tsx +156 -0
- package/src/empty.tsx +52 -0
- package/src/field.tsx +75 -0
- package/src/fieldset.tsx +25 -0
- package/src/form.tsx +14 -0
- package/src/icons.tsx +91 -0
- package/src/illustrations.tsx +167 -0
- package/src/image-modal.tsx +110 -0
- package/src/index.ts +833 -0
- package/src/input.tsx +68 -0
- package/src/lib/cn.ts +3 -0
- package/src/lib/motion.ts +23 -0
- package/src/markdown-editor.tsx +302 -0
- package/src/menu.tsx +205 -0
- package/src/menubar.tsx +22 -0
- package/src/meter.tsx +61 -0
- package/src/navigation-menu.tsx +217 -0
- package/src/number-field.tsx +119 -0
- package/src/orb.tsx +33 -0
- package/src/otp-field.tsx +45 -0
- package/src/pagination.tsx +91 -0
- package/src/popover.tsx +92 -0
- package/src/preview-card.tsx +103 -0
- package/src/progress.tsx +60 -0
- package/src/radio.tsx +43 -0
- package/src/scroll-area.tsx +67 -0
- package/src/select.tsx +161 -0
- package/src/separator.tsx +17 -0
- package/src/sidebar.tsx +82 -0
- package/src/skeleton.tsx +32 -0
- package/src/slider.tsx +56 -0
- package/src/sounds.tsx +270 -0
- package/src/spinner.tsx +45 -0
- package/src/switch.tsx +19 -0
- package/src/table.tsx +81 -0
- package/src/tabs.tsx +62 -0
- package/src/text-animate.tsx +155 -0
- package/src/textarea.tsx +58 -0
- package/src/ticker.tsx +74 -0
- package/src/toast.tsx +142 -0
- package/src/toggle.tsx +32 -0
- package/src/toolbar.tsx +75 -0
- package/src/tooltip.tsx +55 -0
- package/src/video-player.tsx +241 -0
package/src/index.ts
ADDED
|
@@ -0,0 +1,833 @@
|
|
|
1
|
+
export { Button, buttonVariants, type ButtonProps } from "./button";
|
|
2
|
+
export { Input, inputVariants, type InputProps } from "./input";
|
|
3
|
+
export { Badge, badgeVariants, type BadgeProps } from "./badge";
|
|
4
|
+
export { Switch, type SwitchProps } from "./switch";
|
|
5
|
+
export { Checkbox, type CheckboxProps } from "./checkbox";
|
|
6
|
+
export { CheckboxGroup, type CheckboxGroupProps } from "./checkbox-group";
|
|
7
|
+
export {
|
|
8
|
+
Accordion,
|
|
9
|
+
AccordionItem,
|
|
10
|
+
AccordionHeader,
|
|
11
|
+
AccordionTrigger,
|
|
12
|
+
AccordionPanel,
|
|
13
|
+
type AccordionProps,
|
|
14
|
+
type AccordionItemProps,
|
|
15
|
+
type AccordionHeaderProps,
|
|
16
|
+
type AccordionTriggerProps,
|
|
17
|
+
type AccordionPanelProps,
|
|
18
|
+
} from "./accordion";
|
|
19
|
+
export {
|
|
20
|
+
AlertDialog,
|
|
21
|
+
AlertDialogTrigger,
|
|
22
|
+
AlertDialogPortal,
|
|
23
|
+
AlertDialogBackdrop,
|
|
24
|
+
AlertDialogPopup,
|
|
25
|
+
AlertDialogTitle,
|
|
26
|
+
AlertDialogDescription,
|
|
27
|
+
AlertDialogClose,
|
|
28
|
+
AlertDialogHeader,
|
|
29
|
+
type AlertDialogProps,
|
|
30
|
+
type AlertDialogTriggerProps,
|
|
31
|
+
type AlertDialogPortalProps,
|
|
32
|
+
type AlertDialogBackdropProps,
|
|
33
|
+
type AlertDialogPopupProps,
|
|
34
|
+
type AlertDialogTitleProps,
|
|
35
|
+
type AlertDialogDescriptionProps,
|
|
36
|
+
type AlertDialogCloseProps,
|
|
37
|
+
type AlertDialogHeaderProps,
|
|
38
|
+
} from "./alert-dialog";
|
|
39
|
+
export {
|
|
40
|
+
Autocomplete,
|
|
41
|
+
AutocompleteValue,
|
|
42
|
+
AutocompleteTrigger,
|
|
43
|
+
AutocompleteInput,
|
|
44
|
+
AutocompleteInputGroup,
|
|
45
|
+
AutocompleteIcon,
|
|
46
|
+
AutocompleteClear,
|
|
47
|
+
AutocompleteList,
|
|
48
|
+
AutocompleteStatus,
|
|
49
|
+
AutocompletePortal,
|
|
50
|
+
AutocompleteBackdrop,
|
|
51
|
+
AutocompletePositioner,
|
|
52
|
+
AutocompletePopup,
|
|
53
|
+
AutocompleteArrow,
|
|
54
|
+
AutocompleteGroup,
|
|
55
|
+
AutocompleteGroupLabel,
|
|
56
|
+
AutocompleteItem,
|
|
57
|
+
AutocompleteRow,
|
|
58
|
+
AutocompleteCollection,
|
|
59
|
+
AutocompleteEmpty,
|
|
60
|
+
AutocompleteSeparator,
|
|
61
|
+
useAutocompleteFilter,
|
|
62
|
+
useAutocompleteFilteredItems,
|
|
63
|
+
type AutocompleteProps,
|
|
64
|
+
type AutocompleteValueProps,
|
|
65
|
+
type AutocompleteTriggerProps,
|
|
66
|
+
type AutocompleteInputProps,
|
|
67
|
+
type AutocompleteInputGroupProps,
|
|
68
|
+
type AutocompleteIconProps,
|
|
69
|
+
type AutocompleteClearProps,
|
|
70
|
+
type AutocompleteListProps,
|
|
71
|
+
type AutocompleteStatusProps,
|
|
72
|
+
type AutocompletePortalProps,
|
|
73
|
+
type AutocompleteBackdropProps,
|
|
74
|
+
type AutocompletePositionerProps,
|
|
75
|
+
type AutocompletePopupProps,
|
|
76
|
+
type AutocompleteArrowProps,
|
|
77
|
+
type AutocompleteGroupProps,
|
|
78
|
+
type AutocompleteGroupLabelProps,
|
|
79
|
+
type AutocompleteItemProps,
|
|
80
|
+
type AutocompleteRowProps,
|
|
81
|
+
type AutocompleteCollectionProps,
|
|
82
|
+
type AutocompleteEmptyProps,
|
|
83
|
+
type AutocompleteSeparatorProps,
|
|
84
|
+
} from "./autocomplete";
|
|
85
|
+
export {
|
|
86
|
+
Avatar,
|
|
87
|
+
AvatarImage,
|
|
88
|
+
AvatarFallback,
|
|
89
|
+
avatarVariants,
|
|
90
|
+
type AvatarProps,
|
|
91
|
+
type AvatarImageProps,
|
|
92
|
+
type AvatarFallbackProps,
|
|
93
|
+
} from "./avatar";
|
|
94
|
+
export { Calendar, type CalendarProps } from "./calendar";
|
|
95
|
+
export {
|
|
96
|
+
Card,
|
|
97
|
+
CardHeader,
|
|
98
|
+
CardTitle,
|
|
99
|
+
CardDescription,
|
|
100
|
+
CardContent,
|
|
101
|
+
CardFooter,
|
|
102
|
+
type CardProps,
|
|
103
|
+
type CardHeaderProps,
|
|
104
|
+
type CardTitleProps,
|
|
105
|
+
type CardDescriptionProps,
|
|
106
|
+
type CardContentProps,
|
|
107
|
+
type CardFooterProps,
|
|
108
|
+
} from "./card";
|
|
109
|
+
export {
|
|
110
|
+
ChartContainer,
|
|
111
|
+
ChartTooltip,
|
|
112
|
+
ChartTooltipContent,
|
|
113
|
+
ChartLegend,
|
|
114
|
+
ChartLegendContent,
|
|
115
|
+
Area,
|
|
116
|
+
AreaChart,
|
|
117
|
+
Bar,
|
|
118
|
+
BarChart,
|
|
119
|
+
CartesianGrid,
|
|
120
|
+
Line,
|
|
121
|
+
LineChart,
|
|
122
|
+
ResponsiveContainer,
|
|
123
|
+
XAxis,
|
|
124
|
+
YAxis,
|
|
125
|
+
type ChartContainerProps,
|
|
126
|
+
type ChartTooltipProps,
|
|
127
|
+
type ChartTooltipContentProps,
|
|
128
|
+
type ChartLegendProps,
|
|
129
|
+
type ChartLegendContentProps,
|
|
130
|
+
} from "./chart";
|
|
131
|
+
export {
|
|
132
|
+
Collapsible,
|
|
133
|
+
CollapsibleTrigger,
|
|
134
|
+
CollapsiblePanel,
|
|
135
|
+
type CollapsibleProps,
|
|
136
|
+
type CollapsibleTriggerProps,
|
|
137
|
+
type CollapsiblePanelProps,
|
|
138
|
+
} from "./collapsible";
|
|
139
|
+
export {
|
|
140
|
+
Command,
|
|
141
|
+
CommandTrigger,
|
|
142
|
+
CommandPortal,
|
|
143
|
+
CommandBackdrop,
|
|
144
|
+
CommandPopup,
|
|
145
|
+
CommandToolbar,
|
|
146
|
+
CommandInput,
|
|
147
|
+
CommandActions,
|
|
148
|
+
CommandClear,
|
|
149
|
+
CommandDivider,
|
|
150
|
+
CommandClose,
|
|
151
|
+
CommandContent,
|
|
152
|
+
CommandFilters,
|
|
153
|
+
CommandFilter,
|
|
154
|
+
CommandList,
|
|
155
|
+
CommandItem,
|
|
156
|
+
CommandEmpty,
|
|
157
|
+
CommandTitle,
|
|
158
|
+
CommandDialogTitle,
|
|
159
|
+
type CommandProps,
|
|
160
|
+
type CommandTriggerProps,
|
|
161
|
+
type CommandPortalProps,
|
|
162
|
+
type CommandBackdropProps,
|
|
163
|
+
type CommandPopupProps,
|
|
164
|
+
type CommandToolbarProps,
|
|
165
|
+
type CommandInputProps,
|
|
166
|
+
type CommandActionsProps,
|
|
167
|
+
type CommandClearProps,
|
|
168
|
+
type CommandDividerProps,
|
|
169
|
+
type CommandCloseProps,
|
|
170
|
+
type CommandContentProps,
|
|
171
|
+
type CommandFiltersProps,
|
|
172
|
+
type CommandFilterProps,
|
|
173
|
+
type CommandListProps,
|
|
174
|
+
type CommandItemProps,
|
|
175
|
+
type CommandEmptyProps,
|
|
176
|
+
type CommandTitleProps,
|
|
177
|
+
type CommandDialogTitleProps,
|
|
178
|
+
} from "./command";
|
|
179
|
+
export {
|
|
180
|
+
ContextMenu,
|
|
181
|
+
ContextMenuTrigger,
|
|
182
|
+
ContextMenuPortal,
|
|
183
|
+
ContextMenuBackdrop,
|
|
184
|
+
ContextMenuPositioner,
|
|
185
|
+
ContextMenuPopup,
|
|
186
|
+
ContextMenuArrow,
|
|
187
|
+
ContextMenuItem,
|
|
188
|
+
ContextMenuLinkItem,
|
|
189
|
+
ContextMenuSeparator,
|
|
190
|
+
ContextMenuGroup,
|
|
191
|
+
ContextMenuGroupLabel,
|
|
192
|
+
ContextMenuCheckboxItem,
|
|
193
|
+
ContextMenuCheckboxItemIndicator,
|
|
194
|
+
ContextMenuRadioGroup,
|
|
195
|
+
ContextMenuRadioItem,
|
|
196
|
+
ContextMenuRadioItemIndicator,
|
|
197
|
+
ContextMenuSubmenuRoot,
|
|
198
|
+
ContextMenuSubmenuTrigger,
|
|
199
|
+
type ContextMenuProps,
|
|
200
|
+
type ContextMenuTriggerProps,
|
|
201
|
+
type ContextMenuPortalProps,
|
|
202
|
+
type ContextMenuBackdropProps,
|
|
203
|
+
type ContextMenuPositionerProps,
|
|
204
|
+
type ContextMenuPopupProps,
|
|
205
|
+
type ContextMenuArrowProps,
|
|
206
|
+
type ContextMenuItemProps,
|
|
207
|
+
type ContextMenuLinkItemProps,
|
|
208
|
+
type ContextMenuSeparatorProps,
|
|
209
|
+
type ContextMenuGroupProps,
|
|
210
|
+
type ContextMenuGroupLabelProps,
|
|
211
|
+
type ContextMenuCheckboxItemProps,
|
|
212
|
+
type ContextMenuCheckboxItemIndicatorProps,
|
|
213
|
+
type ContextMenuRadioGroupProps,
|
|
214
|
+
type ContextMenuRadioItemProps,
|
|
215
|
+
type ContextMenuRadioItemIndicatorProps,
|
|
216
|
+
type ContextMenuSubmenuRootProps,
|
|
217
|
+
type ContextMenuSubmenuTriggerProps,
|
|
218
|
+
} from "./context-menu";
|
|
219
|
+
export {
|
|
220
|
+
Combobox,
|
|
221
|
+
ComboboxLabel,
|
|
222
|
+
ComboboxInput,
|
|
223
|
+
ComboboxInputGroup,
|
|
224
|
+
ComboboxTrigger,
|
|
225
|
+
ComboboxIcon,
|
|
226
|
+
ComboboxClear,
|
|
227
|
+
ComboboxValue,
|
|
228
|
+
ComboboxPortal,
|
|
229
|
+
ComboboxBackdrop,
|
|
230
|
+
ComboboxPositioner,
|
|
231
|
+
ComboboxPopup,
|
|
232
|
+
ComboboxArrow,
|
|
233
|
+
ComboboxList,
|
|
234
|
+
ComboboxItem,
|
|
235
|
+
ComboboxItemIndicator,
|
|
236
|
+
ComboboxEmpty,
|
|
237
|
+
ComboboxStatus,
|
|
238
|
+
ComboboxGroup,
|
|
239
|
+
ComboboxGroupLabel,
|
|
240
|
+
ComboboxSeparator,
|
|
241
|
+
ComboboxCollection,
|
|
242
|
+
ComboboxChips,
|
|
243
|
+
ComboboxChip,
|
|
244
|
+
ComboboxChipRemove,
|
|
245
|
+
ComboboxRow,
|
|
246
|
+
useComboboxFilter,
|
|
247
|
+
useFilteredItems,
|
|
248
|
+
type ComboboxProps,
|
|
249
|
+
type ComboboxLabelProps,
|
|
250
|
+
type ComboboxInputProps,
|
|
251
|
+
type ComboboxInputGroupProps,
|
|
252
|
+
type ComboboxTriggerProps,
|
|
253
|
+
type ComboboxIconProps,
|
|
254
|
+
type ComboboxClearProps,
|
|
255
|
+
type ComboboxValueProps,
|
|
256
|
+
type ComboboxPortalProps,
|
|
257
|
+
type ComboboxBackdropProps,
|
|
258
|
+
type ComboboxPositionerProps,
|
|
259
|
+
type ComboboxPopupProps,
|
|
260
|
+
type ComboboxArrowProps,
|
|
261
|
+
type ComboboxListProps,
|
|
262
|
+
type ComboboxItemProps,
|
|
263
|
+
type ComboboxItemIndicatorProps,
|
|
264
|
+
type ComboboxEmptyProps,
|
|
265
|
+
type ComboboxStatusProps,
|
|
266
|
+
type ComboboxGroupProps,
|
|
267
|
+
type ComboboxGroupLabelProps,
|
|
268
|
+
type ComboboxSeparatorProps,
|
|
269
|
+
type ComboboxCollectionProps,
|
|
270
|
+
type ComboboxChipsProps,
|
|
271
|
+
type ComboboxChipProps,
|
|
272
|
+
type ComboboxChipRemoveProps,
|
|
273
|
+
type ComboboxRowProps,
|
|
274
|
+
} from "./combobox";
|
|
275
|
+
export {
|
|
276
|
+
Drawer,
|
|
277
|
+
DrawerProvider,
|
|
278
|
+
DrawerTrigger,
|
|
279
|
+
DrawerPortal,
|
|
280
|
+
DrawerBackdrop,
|
|
281
|
+
DrawerViewport,
|
|
282
|
+
DrawerPopup,
|
|
283
|
+
DrawerContent,
|
|
284
|
+
DrawerTitle,
|
|
285
|
+
DrawerDescription,
|
|
286
|
+
DrawerClose,
|
|
287
|
+
DrawerSwipeArea,
|
|
288
|
+
DrawerIndent,
|
|
289
|
+
DrawerIndentBackground,
|
|
290
|
+
DrawerHeader,
|
|
291
|
+
createDrawerHandle,
|
|
292
|
+
type DrawerProps,
|
|
293
|
+
type DrawerProviderProps,
|
|
294
|
+
type DrawerTriggerProps,
|
|
295
|
+
type DrawerPortalProps,
|
|
296
|
+
type DrawerBackdropProps,
|
|
297
|
+
type DrawerViewportProps,
|
|
298
|
+
type DrawerPopupProps,
|
|
299
|
+
type DrawerContentProps,
|
|
300
|
+
type DrawerTitleProps,
|
|
301
|
+
type DrawerDescriptionProps,
|
|
302
|
+
type DrawerCloseProps,
|
|
303
|
+
type DrawerSwipeAreaProps,
|
|
304
|
+
type DrawerIndentProps,
|
|
305
|
+
type DrawerIndentBackgroundProps,
|
|
306
|
+
type DrawerHeaderProps,
|
|
307
|
+
} from "./drawer";
|
|
308
|
+
export {
|
|
309
|
+
Dialog,
|
|
310
|
+
DialogTrigger,
|
|
311
|
+
DialogPortal,
|
|
312
|
+
DialogBackdrop,
|
|
313
|
+
DialogPopup,
|
|
314
|
+
DialogTitle,
|
|
315
|
+
DialogDescription,
|
|
316
|
+
DialogClose,
|
|
317
|
+
DialogHeader,
|
|
318
|
+
type DialogProps,
|
|
319
|
+
type DialogTriggerProps,
|
|
320
|
+
type DialogPortalProps,
|
|
321
|
+
type DialogBackdropProps,
|
|
322
|
+
type DialogPopupProps,
|
|
323
|
+
type DialogTitleProps,
|
|
324
|
+
type DialogDescriptionProps,
|
|
325
|
+
type DialogCloseProps,
|
|
326
|
+
type DialogHeaderProps,
|
|
327
|
+
} from "./dialog";
|
|
328
|
+
export {
|
|
329
|
+
Field,
|
|
330
|
+
FieldLabel,
|
|
331
|
+
FieldDescription,
|
|
332
|
+
FieldError,
|
|
333
|
+
FieldControl,
|
|
334
|
+
FieldValidity,
|
|
335
|
+
FieldItem,
|
|
336
|
+
type FieldProps,
|
|
337
|
+
type FieldLabelProps,
|
|
338
|
+
type FieldDescriptionProps,
|
|
339
|
+
type FieldErrorProps,
|
|
340
|
+
type FieldControlProps,
|
|
341
|
+
type FieldValidityProps,
|
|
342
|
+
type FieldItemProps,
|
|
343
|
+
} from "./field";
|
|
344
|
+
export {
|
|
345
|
+
Fieldset,
|
|
346
|
+
FieldsetLegend,
|
|
347
|
+
type FieldsetProps,
|
|
348
|
+
type FieldsetLegendProps,
|
|
349
|
+
} from "./fieldset";
|
|
350
|
+
export { Form, type FormProps } from "./form";
|
|
351
|
+
export {
|
|
352
|
+
Meter,
|
|
353
|
+
MeterLabel,
|
|
354
|
+
MeterValue,
|
|
355
|
+
MeterTrack,
|
|
356
|
+
MeterIndicator,
|
|
357
|
+
type MeterProps,
|
|
358
|
+
type MeterLabelProps,
|
|
359
|
+
type MeterValueProps,
|
|
360
|
+
type MeterTrackProps,
|
|
361
|
+
type MeterIndicatorProps,
|
|
362
|
+
} from "./meter";
|
|
363
|
+
export {
|
|
364
|
+
Menu,
|
|
365
|
+
MenuTrigger,
|
|
366
|
+
MenuPortal,
|
|
367
|
+
MenuBackdrop,
|
|
368
|
+
MenuPositioner,
|
|
369
|
+
MenuPopup,
|
|
370
|
+
MenuArrow,
|
|
371
|
+
MenuItem,
|
|
372
|
+
MenuLinkItem,
|
|
373
|
+
MenuSeparator,
|
|
374
|
+
MenuGroup,
|
|
375
|
+
MenuGroupLabel,
|
|
376
|
+
MenuCheckboxItem,
|
|
377
|
+
MenuCheckboxItemIndicator,
|
|
378
|
+
MenuRadioGroup,
|
|
379
|
+
MenuRadioItem,
|
|
380
|
+
MenuRadioItemIndicator,
|
|
381
|
+
MenuSubmenuRoot,
|
|
382
|
+
MenuSubmenuTrigger,
|
|
383
|
+
MenuViewport,
|
|
384
|
+
type MenuProps,
|
|
385
|
+
type MenuTriggerProps,
|
|
386
|
+
type MenuPortalProps,
|
|
387
|
+
type MenuBackdropProps,
|
|
388
|
+
type MenuPositionerProps,
|
|
389
|
+
type MenuPopupProps,
|
|
390
|
+
type MenuArrowProps,
|
|
391
|
+
type MenuItemProps,
|
|
392
|
+
type MenuLinkItemProps,
|
|
393
|
+
type MenuSeparatorProps,
|
|
394
|
+
type MenuGroupProps,
|
|
395
|
+
type MenuGroupLabelProps,
|
|
396
|
+
type MenuCheckboxItemProps,
|
|
397
|
+
type MenuCheckboxItemIndicatorProps,
|
|
398
|
+
type MenuRadioGroupProps,
|
|
399
|
+
type MenuRadioItemProps,
|
|
400
|
+
type MenuRadioItemIndicatorProps,
|
|
401
|
+
type MenuSubmenuRootProps,
|
|
402
|
+
type MenuSubmenuTriggerProps,
|
|
403
|
+
type MenuViewportProps,
|
|
404
|
+
} from "./menu";
|
|
405
|
+
export { Menubar, type MenubarProps } from "./menubar";
|
|
406
|
+
export {
|
|
407
|
+
NumberField,
|
|
408
|
+
NumberFieldGroup,
|
|
409
|
+
NumberFieldInput,
|
|
410
|
+
NumberFieldIncrement,
|
|
411
|
+
NumberFieldDecrement,
|
|
412
|
+
NumberFieldScrubArea,
|
|
413
|
+
NumberFieldScrubAreaCursor,
|
|
414
|
+
type NumberFieldProps,
|
|
415
|
+
type NumberFieldGroupProps,
|
|
416
|
+
type NumberFieldInputProps,
|
|
417
|
+
type NumberFieldIncrementProps,
|
|
418
|
+
type NumberFieldDecrementProps,
|
|
419
|
+
type NumberFieldScrubAreaProps,
|
|
420
|
+
type NumberFieldScrubAreaCursorProps,
|
|
421
|
+
} from "./number-field";
|
|
422
|
+
export {
|
|
423
|
+
NavigationMenu,
|
|
424
|
+
NavigationMenuList,
|
|
425
|
+
NavigationMenuItem,
|
|
426
|
+
NavigationMenuTrigger,
|
|
427
|
+
NavigationMenuContent,
|
|
428
|
+
NavigationMenuPortal,
|
|
429
|
+
NavigationMenuPositioner,
|
|
430
|
+
NavigationMenuViewport,
|
|
431
|
+
NavigationMenuBackdrop,
|
|
432
|
+
NavigationMenuPopup,
|
|
433
|
+
NavigationMenuArrow,
|
|
434
|
+
NavigationMenuLink,
|
|
435
|
+
NavigationMenuIcon,
|
|
436
|
+
navigationMenuTriggerClassName,
|
|
437
|
+
type NavigationMenuProps,
|
|
438
|
+
type NavigationMenuListProps,
|
|
439
|
+
type NavigationMenuItemProps,
|
|
440
|
+
type NavigationMenuTriggerProps,
|
|
441
|
+
type NavigationMenuContentProps,
|
|
442
|
+
type NavigationMenuPortalProps,
|
|
443
|
+
type NavigationMenuPositionerProps,
|
|
444
|
+
type NavigationMenuViewportProps,
|
|
445
|
+
type NavigationMenuBackdropProps,
|
|
446
|
+
type NavigationMenuPopupProps,
|
|
447
|
+
type NavigationMenuArrowProps,
|
|
448
|
+
type NavigationMenuLinkProps,
|
|
449
|
+
type NavigationMenuIconProps,
|
|
450
|
+
} from "./navigation-menu";
|
|
451
|
+
export {
|
|
452
|
+
OTPField,
|
|
453
|
+
OTPFieldInput,
|
|
454
|
+
OTPFieldSeparator,
|
|
455
|
+
type OTPFieldProps,
|
|
456
|
+
type OTPFieldInputProps,
|
|
457
|
+
type OTPFieldSeparatorProps,
|
|
458
|
+
} from "./otp-field";
|
|
459
|
+
export {
|
|
460
|
+
Popover,
|
|
461
|
+
PopoverTrigger,
|
|
462
|
+
PopoverPortal,
|
|
463
|
+
PopoverPositioner,
|
|
464
|
+
PopoverPopup,
|
|
465
|
+
PopoverTitle,
|
|
466
|
+
PopoverDescription,
|
|
467
|
+
PopoverClose,
|
|
468
|
+
PopoverArrow,
|
|
469
|
+
type PopoverProps,
|
|
470
|
+
type PopoverTriggerProps,
|
|
471
|
+
type PopoverPortalProps,
|
|
472
|
+
type PopoverPositionerProps,
|
|
473
|
+
type PopoverPopupProps,
|
|
474
|
+
type PopoverTitleProps,
|
|
475
|
+
type PopoverDescriptionProps,
|
|
476
|
+
type PopoverCloseProps,
|
|
477
|
+
type PopoverArrowProps,
|
|
478
|
+
} from "./popover";
|
|
479
|
+
export {
|
|
480
|
+
PreviewCard,
|
|
481
|
+
PreviewCardTrigger,
|
|
482
|
+
PreviewCardPortal,
|
|
483
|
+
PreviewCardBackdrop,
|
|
484
|
+
PreviewCardPositioner,
|
|
485
|
+
PreviewCardPopup,
|
|
486
|
+
PreviewCardArrow,
|
|
487
|
+
PreviewCardViewport,
|
|
488
|
+
createPreviewCardHandle,
|
|
489
|
+
type PreviewCardProps,
|
|
490
|
+
type PreviewCardTriggerProps,
|
|
491
|
+
type PreviewCardPortalProps,
|
|
492
|
+
type PreviewCardBackdropProps,
|
|
493
|
+
type PreviewCardPositionerProps,
|
|
494
|
+
type PreviewCardPopupProps,
|
|
495
|
+
type PreviewCardArrowProps,
|
|
496
|
+
type PreviewCardViewportProps,
|
|
497
|
+
} from "./preview-card";
|
|
498
|
+
export {
|
|
499
|
+
Progress,
|
|
500
|
+
ProgressLabel,
|
|
501
|
+
ProgressValue,
|
|
502
|
+
ProgressTrack,
|
|
503
|
+
ProgressIndicator,
|
|
504
|
+
type ProgressProps,
|
|
505
|
+
type ProgressLabelProps,
|
|
506
|
+
type ProgressValueProps,
|
|
507
|
+
type ProgressTrackProps,
|
|
508
|
+
type ProgressIndicatorProps,
|
|
509
|
+
} from "./progress";
|
|
510
|
+
export {
|
|
511
|
+
RadioGroup,
|
|
512
|
+
Radio,
|
|
513
|
+
RadioIndicator,
|
|
514
|
+
type RadioGroupProps,
|
|
515
|
+
type RadioProps,
|
|
516
|
+
type RadioIndicatorProps,
|
|
517
|
+
} from "./radio";
|
|
518
|
+
export {
|
|
519
|
+
ScrollArea,
|
|
520
|
+
ScrollAreaViewport,
|
|
521
|
+
ScrollAreaContent,
|
|
522
|
+
ScrollAreaScrollbar,
|
|
523
|
+
ScrollAreaThumb,
|
|
524
|
+
type ScrollAreaProps,
|
|
525
|
+
type ScrollAreaViewportProps,
|
|
526
|
+
type ScrollAreaContentProps,
|
|
527
|
+
type ScrollAreaScrollbarProps,
|
|
528
|
+
type ScrollAreaThumbProps,
|
|
529
|
+
} from "./scroll-area";
|
|
530
|
+
export {
|
|
531
|
+
Select,
|
|
532
|
+
SelectTrigger,
|
|
533
|
+
SelectValue,
|
|
534
|
+
SelectIcon,
|
|
535
|
+
SelectPortal,
|
|
536
|
+
SelectPositioner,
|
|
537
|
+
SelectPopup,
|
|
538
|
+
SelectList,
|
|
539
|
+
SelectItem,
|
|
540
|
+
SelectItemText,
|
|
541
|
+
SelectItemIndicator,
|
|
542
|
+
SelectGroup,
|
|
543
|
+
SelectGroupLabel,
|
|
544
|
+
SelectSeparator,
|
|
545
|
+
type SelectProps,
|
|
546
|
+
type SelectTriggerProps,
|
|
547
|
+
type SelectValueProps,
|
|
548
|
+
type SelectIconProps,
|
|
549
|
+
type SelectPortalProps,
|
|
550
|
+
type SelectPositionerProps,
|
|
551
|
+
type SelectPopupProps,
|
|
552
|
+
type SelectListProps,
|
|
553
|
+
type SelectItemProps,
|
|
554
|
+
type SelectItemTextProps,
|
|
555
|
+
type SelectItemIndicatorProps,
|
|
556
|
+
type SelectGroupProps,
|
|
557
|
+
type SelectGroupLabelProps,
|
|
558
|
+
type SelectSeparatorProps,
|
|
559
|
+
} from "./select";
|
|
560
|
+
export { Separator, type SeparatorProps } from "./separator";
|
|
561
|
+
export {
|
|
562
|
+
Slider,
|
|
563
|
+
SliderControl,
|
|
564
|
+
SliderTrack,
|
|
565
|
+
SliderIndicator,
|
|
566
|
+
SliderThumb,
|
|
567
|
+
type SliderProps,
|
|
568
|
+
type SliderControlProps,
|
|
569
|
+
type SliderTrackProps,
|
|
570
|
+
type SliderIndicatorProps,
|
|
571
|
+
type SliderThumbProps,
|
|
572
|
+
} from "./slider";
|
|
573
|
+
export {
|
|
574
|
+
Tabs,
|
|
575
|
+
TabsList,
|
|
576
|
+
TabsTab,
|
|
577
|
+
TabsIndicator,
|
|
578
|
+
TabsPanel,
|
|
579
|
+
type TabsProps,
|
|
580
|
+
type TabsListProps,
|
|
581
|
+
type TabsTabProps,
|
|
582
|
+
type TabsIndicatorProps,
|
|
583
|
+
type TabsPanelProps,
|
|
584
|
+
} from "./tabs";
|
|
585
|
+
export { Textarea, textareaVariants, type TextareaProps } from "./textarea";
|
|
586
|
+
export {
|
|
587
|
+
ToastProvider,
|
|
588
|
+
ToastPortal,
|
|
589
|
+
ToastViewport,
|
|
590
|
+
ToastRoot,
|
|
591
|
+
ToastContent,
|
|
592
|
+
ToastTitle,
|
|
593
|
+
ToastDescription,
|
|
594
|
+
ToastAction,
|
|
595
|
+
ToastClose,
|
|
596
|
+
ToastPositioner,
|
|
597
|
+
ToastArrow,
|
|
598
|
+
useToastManager,
|
|
599
|
+
createToastManager,
|
|
600
|
+
type ToastProviderProps,
|
|
601
|
+
type ToastPortalProps,
|
|
602
|
+
type ToastViewportProps,
|
|
603
|
+
type ToastRootProps,
|
|
604
|
+
type ToastContentProps,
|
|
605
|
+
type ToastTitleProps,
|
|
606
|
+
type ToastDescriptionProps,
|
|
607
|
+
type ToastActionProps,
|
|
608
|
+
type ToastCloseProps,
|
|
609
|
+
type ToastPositionerProps,
|
|
610
|
+
type ToastArrowProps,
|
|
611
|
+
} from "./toast";
|
|
612
|
+
export {
|
|
613
|
+
Toggle,
|
|
614
|
+
ToggleGroup,
|
|
615
|
+
type ToggleProps,
|
|
616
|
+
type ToggleGroupProps,
|
|
617
|
+
} from "./toggle";
|
|
618
|
+
export {
|
|
619
|
+
Toolbar,
|
|
620
|
+
ToolbarGroup,
|
|
621
|
+
ToolbarButton,
|
|
622
|
+
ToolbarLink,
|
|
623
|
+
ToolbarInput,
|
|
624
|
+
ToolbarSeparator,
|
|
625
|
+
type ToolbarProps,
|
|
626
|
+
type ToolbarGroupProps,
|
|
627
|
+
type ToolbarButtonProps,
|
|
628
|
+
type ToolbarLinkProps,
|
|
629
|
+
type ToolbarInputProps,
|
|
630
|
+
type ToolbarSeparatorProps,
|
|
631
|
+
} from "./toolbar";
|
|
632
|
+
export {
|
|
633
|
+
Attachment,
|
|
634
|
+
AttachmentList,
|
|
635
|
+
AttachmentItem,
|
|
636
|
+
AttachmentPreview,
|
|
637
|
+
AttachmentName,
|
|
638
|
+
AttachmentRemove,
|
|
639
|
+
type AttachmentProps,
|
|
640
|
+
type AttachmentListProps,
|
|
641
|
+
type AttachmentItemProps,
|
|
642
|
+
type AttachmentPreviewProps,
|
|
643
|
+
type AttachmentNameProps,
|
|
644
|
+
type AttachmentRemoveProps,
|
|
645
|
+
} from "./attachment";
|
|
646
|
+
export {
|
|
647
|
+
Breadcrumb,
|
|
648
|
+
BreadcrumbList,
|
|
649
|
+
BreadcrumbItem,
|
|
650
|
+
BreadcrumbLink,
|
|
651
|
+
BreadcrumbPage,
|
|
652
|
+
BreadcrumbSeparator,
|
|
653
|
+
type BreadcrumbProps,
|
|
654
|
+
type BreadcrumbListProps,
|
|
655
|
+
type BreadcrumbItemProps,
|
|
656
|
+
type BreadcrumbLinkProps,
|
|
657
|
+
type BreadcrumbPageProps,
|
|
658
|
+
type BreadcrumbSeparatorProps,
|
|
659
|
+
} from "./breadcrumb";
|
|
660
|
+
export {
|
|
661
|
+
Empty,
|
|
662
|
+
EmptyIcon,
|
|
663
|
+
EmptyTitle,
|
|
664
|
+
EmptyDescription,
|
|
665
|
+
EmptyActions,
|
|
666
|
+
type EmptyProps,
|
|
667
|
+
type EmptyIconProps,
|
|
668
|
+
type EmptyTitleProps,
|
|
669
|
+
type EmptyDescriptionProps,
|
|
670
|
+
type EmptyActionsProps,
|
|
671
|
+
} from "./empty";
|
|
672
|
+
export { Orb, orbVariants, type OrbProps } from "./orb";
|
|
673
|
+
export {
|
|
674
|
+
Pagination,
|
|
675
|
+
PaginationContent,
|
|
676
|
+
PaginationItem,
|
|
677
|
+
PaginationLink,
|
|
678
|
+
PaginationPrevious,
|
|
679
|
+
PaginationNext,
|
|
680
|
+
PaginationEllipsis,
|
|
681
|
+
type PaginationProps,
|
|
682
|
+
type PaginationContentProps,
|
|
683
|
+
type PaginationItemProps,
|
|
684
|
+
type PaginationLinkProps,
|
|
685
|
+
type PaginationPreviousProps,
|
|
686
|
+
type PaginationNextProps,
|
|
687
|
+
type PaginationEllipsisProps,
|
|
688
|
+
} from "./pagination";
|
|
689
|
+
export {
|
|
690
|
+
Sidebar,
|
|
691
|
+
SidebarHeader,
|
|
692
|
+
SidebarContent,
|
|
693
|
+
SidebarFooter,
|
|
694
|
+
SidebarNav,
|
|
695
|
+
SidebarNavItem,
|
|
696
|
+
SidebarGroup,
|
|
697
|
+
SidebarGroupLabel,
|
|
698
|
+
type SidebarProps,
|
|
699
|
+
type SidebarHeaderProps,
|
|
700
|
+
type SidebarContentProps,
|
|
701
|
+
type SidebarFooterProps,
|
|
702
|
+
type SidebarNavProps,
|
|
703
|
+
type SidebarNavItemProps,
|
|
704
|
+
type SidebarGroupProps,
|
|
705
|
+
type SidebarGroupLabelProps,
|
|
706
|
+
} from "./sidebar";
|
|
707
|
+
export { Skeleton, skeletonVariants, type SkeletonProps } from "./skeleton";
|
|
708
|
+
export { Spinner, spinnerVariants, type SpinnerProps } from "./spinner";
|
|
709
|
+
export {
|
|
710
|
+
Carousel,
|
|
711
|
+
CarouselContent,
|
|
712
|
+
CarouselItem,
|
|
713
|
+
CarouselPrevious,
|
|
714
|
+
CarouselNext,
|
|
715
|
+
useCarousel,
|
|
716
|
+
type CarouselApi,
|
|
717
|
+
type CarouselProps,
|
|
718
|
+
type CarouselContentProps,
|
|
719
|
+
type CarouselItemProps,
|
|
720
|
+
type CarouselPreviousProps,
|
|
721
|
+
type CarouselNextProps,
|
|
722
|
+
} from "./carousel";
|
|
723
|
+
export {
|
|
724
|
+
SoundsProvider,
|
|
725
|
+
Sound,
|
|
726
|
+
SoundToggle,
|
|
727
|
+
useSounds,
|
|
728
|
+
type SoundId,
|
|
729
|
+
type SoundsProviderProps,
|
|
730
|
+
type SoundProps,
|
|
731
|
+
type SoundToggleProps,
|
|
732
|
+
} from "./sounds";
|
|
733
|
+
export {
|
|
734
|
+
VideoPlayer,
|
|
735
|
+
type VideoPlayerProps,
|
|
736
|
+
} from "./video-player";
|
|
737
|
+
export {
|
|
738
|
+
ImageModal,
|
|
739
|
+
ImageModalTrigger,
|
|
740
|
+
ImageModalContent,
|
|
741
|
+
type ImageModalProps,
|
|
742
|
+
type ImageModalTriggerProps,
|
|
743
|
+
type ImageModalContentProps,
|
|
744
|
+
} from "./image-modal";
|
|
745
|
+
export {
|
|
746
|
+
Ticker,
|
|
747
|
+
TickerItem,
|
|
748
|
+
type TickerProps,
|
|
749
|
+
type TickerItemProps,
|
|
750
|
+
} from "./ticker";
|
|
751
|
+
export {
|
|
752
|
+
Table,
|
|
753
|
+
TableHeader,
|
|
754
|
+
TableBody,
|
|
755
|
+
TableFooter,
|
|
756
|
+
TableRow,
|
|
757
|
+
TableHead,
|
|
758
|
+
TableCell,
|
|
759
|
+
TableCaption,
|
|
760
|
+
type TableProps,
|
|
761
|
+
type TableHeaderProps,
|
|
762
|
+
type TableBodyProps,
|
|
763
|
+
type TableFooterProps,
|
|
764
|
+
type TableRowProps,
|
|
765
|
+
type TableHeadProps,
|
|
766
|
+
type TableCellProps,
|
|
767
|
+
type TableCaptionProps,
|
|
768
|
+
} from "./table";
|
|
769
|
+
export {
|
|
770
|
+
TooltipProvider,
|
|
771
|
+
Tooltip,
|
|
772
|
+
TooltipTrigger,
|
|
773
|
+
TooltipPortal,
|
|
774
|
+
TooltipPositioner,
|
|
775
|
+
TooltipPopup,
|
|
776
|
+
type TooltipProviderProps,
|
|
777
|
+
type TooltipProps,
|
|
778
|
+
type TooltipTriggerProps,
|
|
779
|
+
type TooltipPortalProps,
|
|
780
|
+
type TooltipPositionerProps,
|
|
781
|
+
type TooltipPopupProps,
|
|
782
|
+
} from "./tooltip";
|
|
783
|
+
export {
|
|
784
|
+
CENTRAL_ICON_SIZE,
|
|
785
|
+
withCentralIconDefaults,
|
|
786
|
+
iconGallery,
|
|
787
|
+
IconBell,
|
|
788
|
+
IconChainLink1,
|
|
789
|
+
IconCheckmark1,
|
|
790
|
+
IconChevronBottom,
|
|
791
|
+
IconChevronDownSmall,
|
|
792
|
+
IconChevronRightSmall,
|
|
793
|
+
IconClipboard,
|
|
794
|
+
IconCrossSmall,
|
|
795
|
+
IconHome,
|
|
796
|
+
IconMagnifyingGlass,
|
|
797
|
+
IconMinus,
|
|
798
|
+
IconMoon,
|
|
799
|
+
IconPeople,
|
|
800
|
+
IconPlus,
|
|
801
|
+
IconSettingsGear1,
|
|
802
|
+
IconSquareBehindSquare6,
|
|
803
|
+
IconSun,
|
|
804
|
+
IconX,
|
|
805
|
+
type CentralIconProps,
|
|
806
|
+
type CentralIconComponent,
|
|
807
|
+
} from "./icons";
|
|
808
|
+
export { CodeBlock, type CodeBlockProps } from "./code-block";
|
|
809
|
+
export {
|
|
810
|
+
MarkdownEditor,
|
|
811
|
+
MarkdownEditorToolbar,
|
|
812
|
+
MarkdownEditorInput,
|
|
813
|
+
MarkdownEditorPreview,
|
|
814
|
+
type MarkdownEditorProps,
|
|
815
|
+
type MarkdownEditorToolbarProps,
|
|
816
|
+
type MarkdownEditorInputProps,
|
|
817
|
+
type MarkdownEditorPreviewProps,
|
|
818
|
+
} from "./markdown-editor";
|
|
819
|
+
export {
|
|
820
|
+
IllustrationEmpty,
|
|
821
|
+
IllustrationError,
|
|
822
|
+
IllustrationSuccess,
|
|
823
|
+
IllustrationSearch,
|
|
824
|
+
type IllustrationProps,
|
|
825
|
+
} from "./illustrations"
|
|
826
|
+
export { BrandMark, BrandWordmark, type BrandMarkProps, type BrandWordmarkProps } from "./brand"
|
|
827
|
+
export {
|
|
828
|
+
TextAnimate,
|
|
829
|
+
type TextAnimateProps,
|
|
830
|
+
type TextAnimateEffect,
|
|
831
|
+
} from "./text-animate"
|
|
832
|
+
export { cn } from "./lib/cn"
|
|
833
|
+
export { motion } from "./lib/motion"
|