@vllnt/ui 0.1.11 → 0.2.0-canary.4abf494

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.
Files changed (100) hide show
  1. package/CHANGELOG.md +104 -0
  2. package/README.md +106 -1
  3. package/dist/components/activity-heatmap/activity-heatmap.js +168 -0
  4. package/dist/components/activity-heatmap/index.js +6 -0
  5. package/dist/components/activity-log/activity-log.js +256 -0
  6. package/dist/components/activity-log/index.js +6 -0
  7. package/dist/components/ai-chat-input/ai-chat-input.js +107 -0
  8. package/dist/components/ai-chat-input/index.js +4 -0
  9. package/dist/components/ai-message-bubble/ai-message-bubble.js +119 -0
  10. package/dist/components/ai-message-bubble/index.js +6 -0
  11. package/dist/components/ai-source-citation/ai-source-citation.js +39 -0
  12. package/dist/components/ai-source-citation/index.js +6 -0
  13. package/dist/components/ai-streaming-text/ai-streaming-text.js +41 -0
  14. package/dist/components/ai-streaming-text/index.js +6 -0
  15. package/dist/components/ai-tool-call-display/ai-tool-call-display.js +93 -0
  16. package/dist/components/ai-tool-call-display/index.js +6 -0
  17. package/dist/components/animated-text/animated-text.js +328 -0
  18. package/dist/components/animated-text/index.js +4 -0
  19. package/dist/components/annotation/annotation.js +49 -0
  20. package/dist/components/annotation/index.js +8 -0
  21. package/dist/components/avatar-group/avatar-group.js +82 -0
  22. package/dist/components/avatar-group/index.js +10 -0
  23. package/dist/components/border-beam/border-beam.js +51 -0
  24. package/dist/components/border-beam/index.js +4 -0
  25. package/dist/components/candlestick-chart/candlestick-chart.js +215 -0
  26. package/dist/components/candlestick-chart/index.js +6 -0
  27. package/dist/components/combobox/combobox.js +130 -0
  28. package/dist/components/combobox/index.js +4 -0
  29. package/dist/components/countdown-timer/countdown-timer.js +184 -0
  30. package/dist/components/countdown-timer/index.js +4 -0
  31. package/dist/components/credit-badge/credit-badge.js +59 -0
  32. package/dist/components/credit-badge/index.js +6 -0
  33. package/dist/components/data-list/data-list.js +99 -0
  34. package/dist/components/data-list/index.js +16 -0
  35. package/dist/components/data-table/data-table.js +242 -0
  36. package/dist/components/data-table/index.js +6 -0
  37. package/dist/components/date-picker/date-picker.js +74 -0
  38. package/dist/components/date-picker/index.js +4 -0
  39. package/dist/components/file-upload/file-upload.js +227 -0
  40. package/dist/components/file-upload/index.js +4 -0
  41. package/dist/components/flashcard/flashcard.js +66 -0
  42. package/dist/components/flashcard/index.js +4 -0
  43. package/dist/components/index.js +172 -1
  44. package/dist/components/live-feed/index.js +4 -0
  45. package/dist/components/live-feed/live-feed.js +168 -0
  46. package/dist/components/market-treemap/index.js +6 -0
  47. package/dist/components/market-treemap/market-treemap.js +100 -0
  48. package/dist/components/marquee/index.js +4 -0
  49. package/dist/components/marquee/marquee.js +98 -0
  50. package/dist/components/metric-gauge/index.js +6 -0
  51. package/dist/components/metric-gauge/metric-gauge.js +213 -0
  52. package/dist/components/model-selector/model-selector.js +11 -2
  53. package/dist/components/number-input/index.js +4 -0
  54. package/dist/components/number-input/number-input.js +167 -0
  55. package/dist/components/number-ticker/index.js +4 -0
  56. package/dist/components/number-ticker/number-ticker.js +63 -0
  57. package/dist/components/order-book/index.js +6 -0
  58. package/dist/components/order-book/order-book.js +128 -0
  59. package/dist/components/password-input/index.js +4 -0
  60. package/dist/components/password-input/password-input.js +45 -0
  61. package/dist/components/plan-badge/index.js +6 -0
  62. package/dist/components/plan-badge/plan-badge.js +67 -0
  63. package/dist/components/rating/index.js +4 -0
  64. package/dist/components/rating/rating.js +121 -0
  65. package/dist/components/role-badge/index.js +6 -0
  66. package/dist/components/role-badge/role-badge.js +50 -0
  67. package/dist/components/scope-selector/index.js +6 -0
  68. package/dist/components/scope-selector/scope-selector.js +336 -0
  69. package/dist/components/severity-badge/index.js +8 -0
  70. package/dist/components/severity-badge/severity-badge.js +163 -0
  71. package/dist/components/sparkline-grid/index.js +6 -0
  72. package/dist/components/sparkline-grid/sparkline-grid.js +92 -0
  73. package/dist/components/spinner/index.js +5 -1
  74. package/dist/components/spinner/unicode-spinner.js +708 -0
  75. package/dist/components/stat-card/index.js +5 -0
  76. package/dist/components/stat-card/stat-card.js +102 -0
  77. package/dist/components/status-board/index.js +6 -0
  78. package/dist/components/status-board/status-board.js +138 -0
  79. package/dist/components/status-indicator/index.js +10 -0
  80. package/dist/components/status-indicator/status-indicator.js +175 -0
  81. package/dist/components/stepper/index.js +4 -0
  82. package/dist/components/stepper/stepper.js +117 -0
  83. package/dist/components/subscription-card/index.js +6 -0
  84. package/dist/components/subscription-card/subscription-card.js +161 -0
  85. package/dist/components/ticker-tape/index.js +6 -0
  86. package/dist/components/ticker-tape/ticker-tape.js +106 -0
  87. package/dist/components/tour/index.js +4 -0
  88. package/dist/components/tour/tour.js +157 -0
  89. package/dist/components/usage-breakdown/index.js +6 -0
  90. package/dist/components/usage-breakdown/usage-breakdown.js +140 -0
  91. package/dist/components/wallet-card/index.js +4 -0
  92. package/dist/components/wallet-card/wallet-card.js +115 -0
  93. package/dist/components/watchlist/index.js +6 -0
  94. package/dist/components/watchlist/watchlist.js +110 -0
  95. package/dist/components/world-clock-bar/index.js +6 -0
  96. package/dist/components/world-clock-bar/world-clock-bar.js +101 -0
  97. package/dist/index.d.ts +1173 -7
  98. package/dist/test-setup.js +19 -0
  99. package/package.json +27 -6
  100. package/styles.css +55 -0
package/dist/index.d.ts CHANGED
@@ -5,6 +5,7 @@ import { VariantProps } from 'class-variance-authority';
5
5
  import * as react from 'react';
6
6
  import react__default, { ReactNode, Component, ErrorInfo } from 'react';
7
7
  import * as DialogPrimitive from '@radix-ui/react-dialog';
8
+ import { DayPicker } from 'react-day-picker';
8
9
  import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
9
10
  import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
10
11
  import * as LabelPrimitive from '@radix-ui/react-label';
@@ -26,6 +27,7 @@ import * as HoverCardPrimitive from '@radix-ui/react-hover-card';
26
27
  import * as ContextMenuPrimitive from '@radix-ui/react-context-menu';
27
28
  import * as MenubarPrimitive from '@radix-ui/react-menubar';
28
29
  import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
30
+ import { RowData, ColumnDef, Row } from '@tanstack/react-table';
29
31
  import * as AvatarPrimitive from '@radix-ui/react-avatar';
30
32
  import * as SeparatorPrimitive from '@radix-ui/react-separator';
31
33
  import * as AspectRatioPrimitive from '@radix-ui/react-aspect-ratio';
@@ -33,7 +35,6 @@ import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
33
35
  import { Separator as Separator$1, Panel, Group } from 'react-resizable-panels';
34
36
  import * as CollapsiblePrimitive from '@radix-ui/react-collapsible';
35
37
  import useEmblaCarousel, { UseEmblaCarouselType } from 'embla-carousel-react';
36
- import { DayPicker } from 'react-day-picker';
37
38
  import { ThemeProviderProps } from 'next-themes';
38
39
  import { Edge, FitViewOptions, Node } from '@xyflow/react';
39
40
  import { ClassValue } from 'clsx';
@@ -214,6 +215,41 @@ declare const CommandShortcut: {
214
215
  displayName: string;
215
216
  };
216
217
 
218
+ type ComboboxOption = {
219
+ disabled?: boolean;
220
+ keywords?: string[];
221
+ label: string;
222
+ value: string;
223
+ };
224
+ type ComboboxProps = {
225
+ className?: string;
226
+ commandClassName?: string;
227
+ emptyText?: string;
228
+ onValueChange?: (value: string) => void;
229
+ options: ComboboxOption[];
230
+ placeholder?: string;
231
+ searchPlaceholder?: string;
232
+ triggerClassName?: string;
233
+ value?: string;
234
+ };
235
+ declare const Combobox: react.ForwardRefExoticComponent<ComboboxProps & react.RefAttributes<HTMLButtonElement>>;
236
+
237
+ type CalendarProps = React.ComponentProps<typeof DayPicker>;
238
+ declare function Calendar({ className, classNames, showOutsideDays, ...props }: CalendarProps): react_jsx_runtime.JSX.Element;
239
+ declare namespace Calendar {
240
+ var displayName: string;
241
+ }
242
+
243
+ type DatePickerProps = {
244
+ buttonClassName?: string;
245
+ calendarProps?: Omit<CalendarProps, "mode" | "onSelect" | "selected">;
246
+ className?: string;
247
+ onValueChange?: (date?: Date) => void;
248
+ placeholder?: string;
249
+ value?: Date;
250
+ };
251
+ declare const DatePicker: react.ForwardRefExoticComponent<DatePickerProps & react.RefAttributes<HTMLButtonElement>>;
252
+
217
253
  declare const Dialog: react.FC<DialogPrimitive.DialogProps>;
218
254
  declare const DialogTrigger: react.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & react.RefAttributes<HTMLButtonElement>>;
219
255
  declare const DialogPortal: react.FC<DialogPrimitive.DialogPortalProps>;
@@ -260,8 +296,45 @@ declare const Input: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProp
260
296
 
261
297
  declare const Checkbox: react.ForwardRefExoticComponent<Omit<CheckboxPrimitive.CheckboxProps & react.RefAttributes<HTMLButtonElement>, "ref"> & react.RefAttributes<HTMLButtonElement>>;
262
298
 
299
+ type FileUploadProps = Omit<react.ComponentPropsWithoutRef<"input">, "onChange" | "type" | "value"> & {
300
+ browseLabel?: string;
301
+ dropzoneText?: string;
302
+ files?: File[];
303
+ helperText?: string;
304
+ onFilesChange?: (files: File[]) => void;
305
+ };
306
+ declare const FileUpload: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTMLProps<react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "onChange" | "type" | "value"> & {
307
+ browseLabel?: string;
308
+ dropzoneText?: string;
309
+ files?: File[];
310
+ helperText?: string;
311
+ onFilesChange?: (files: File[]) => void;
312
+ } & react.RefAttributes<HTMLInputElement>>;
313
+
263
314
  declare const Label: react.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & react.RefAttributes<HTMLLabelElement>, "ref"> & VariantProps<(props?: class_variance_authority_types.ClassProp | undefined) => string> & react.RefAttributes<HTMLLabelElement>>;
264
315
 
316
+ type NumberInputProps = Omit<react.ComponentPropsWithoutRef<"input">, "defaultValue" | "onChange" | "type" | "value"> & {
317
+ defaultValue?: number;
318
+ onValueChange?: (value?: number) => void;
319
+ step?: number;
320
+ value?: number;
321
+ };
322
+ declare const NumberInput: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTMLProps<react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "defaultValue" | "onChange" | "type" | "value"> & {
323
+ defaultValue?: number;
324
+ onValueChange?: (value?: number) => void;
325
+ step?: number;
326
+ value?: number;
327
+ } & react.RefAttributes<HTMLInputElement>>;
328
+
329
+ type PasswordInputProps = Omit<react.ComponentPropsWithoutRef<"input">, "type"> & {
330
+ hideLabel?: string;
331
+ showLabel?: string;
332
+ };
333
+ declare const PasswordInput: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTMLProps<react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "type"> & {
334
+ hideLabel?: string;
335
+ showLabel?: string;
336
+ } & react.RefAttributes<HTMLInputElement>>;
337
+
265
338
  declare const Switch: react.ForwardRefExoticComponent<Omit<SwitchPrimitives.SwitchProps & react.RefAttributes<HTMLButtonElement>, "ref"> & react.RefAttributes<HTMLButtonElement>>;
266
339
 
267
340
  type ToastProps = {
@@ -281,6 +354,141 @@ declare const ToastDescription: react.ForwardRefExoticComponent<react.HTMLAttrib
281
354
 
282
355
  declare const Toaster: ({ ...props }: ToasterProps) => react_jsx_runtime.JSX.Element;
283
356
 
357
+ type AIChatInputProps = React.ComponentPropsWithoutRef<"form"> & {
358
+ /** Disables editing and submit actions. */
359
+ disabled?: boolean;
360
+ /** Optional helper text shown below the prompt field. */
361
+ helperText?: string;
362
+ /** Whether the submit action is in progress. */
363
+ isSubmitting?: boolean;
364
+ /** Called whenever the textarea value changes. */
365
+ onValueChange?: (value: string) => void;
366
+ /** Optional status text shown beside helper copy. */
367
+ status?: string;
368
+ /** Label for the submit button. */
369
+ submitLabel?: string;
370
+ /** Props forwarded to the textarea primitive. */
371
+ textareaProps?: React.TextareaHTMLAttributes<HTMLTextAreaElement>;
372
+ /** Optional controls rendered above the footer row. */
373
+ toolbar?: React.ReactNode;
374
+ /** Controlled textarea value. */
375
+ value?: string;
376
+ };
377
+ declare const AIChatInput: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.FormHTMLAttributes<HTMLFormElement>, HTMLFormElement>, "ref"> & {
378
+ /** Disables editing and submit actions. */
379
+ disabled?: boolean;
380
+ /** Optional helper text shown below the prompt field. */
381
+ helperText?: string;
382
+ /** Whether the submit action is in progress. */
383
+ isSubmitting?: boolean;
384
+ /** Called whenever the textarea value changes. */
385
+ onValueChange?: (value: string) => void;
386
+ /** Optional status text shown beside helper copy. */
387
+ status?: string;
388
+ /** Label for the submit button. */
389
+ submitLabel?: string;
390
+ /** Props forwarded to the textarea primitive. */
391
+ textareaProps?: React.TextareaHTMLAttributes<HTMLTextAreaElement>;
392
+ /** Optional controls rendered above the footer row. */
393
+ toolbar?: React.ReactNode;
394
+ /** Controlled textarea value. */
395
+ value?: string;
396
+ } & react.RefAttributes<HTMLFormElement>>;
397
+
398
+ declare const bubbleVariants: (props?: ({
399
+ messageRole?: "user" | "system" | "assistant" | "tool" | null | undefined;
400
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
401
+ type AIMessageBubbleProps = React.ComponentPropsWithoutRef<"div"> & VariantProps<typeof bubbleVariants> & {
402
+ /** Optional short label describing the speaker. */
403
+ author?: string;
404
+ /** Bubble body content. */
405
+ children: React.ReactNode;
406
+ /** Optional status badge for the message. */
407
+ status?: string;
408
+ /** Optional timestamp or relative time label. */
409
+ timestamp?: string;
410
+ };
411
+ declare const AIMessageBubble: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & VariantProps<(props?: ({
412
+ messageRole?: "user" | "system" | "assistant" | "tool" | null | undefined;
413
+ } & class_variance_authority_types.ClassProp) | undefined) => string> & {
414
+ /** Optional short label describing the speaker. */
415
+ author?: string;
416
+ /** Bubble body content. */
417
+ children: React.ReactNode;
418
+ /** Optional status badge for the message. */
419
+ status?: string;
420
+ /** Optional timestamp or relative time label. */
421
+ timestamp?: string;
422
+ } & react.RefAttributes<HTMLDivElement>>;
423
+
424
+ type AISourceCitationProps = React.ComponentPropsWithoutRef<"a"> & {
425
+ /** Optional short excerpt from the cited source. */
426
+ snippet?: string;
427
+ /** Source label such as domain, document, or collection. */
428
+ source: string;
429
+ /** Primary citation title. */
430
+ title: string;
431
+ };
432
+ declare const AISourceCitation: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "ref"> & {
433
+ /** Optional short excerpt from the cited source. */
434
+ snippet?: string;
435
+ /** Source label such as domain, document, or collection. */
436
+ source: string;
437
+ /** Primary citation title. */
438
+ title: string;
439
+ } & react.RefAttributes<HTMLAnchorElement>>;
440
+
441
+ type AIStreamingTextProps = React.ComponentPropsWithoutRef<"div"> & {
442
+ /** Cursor glyph shown while streaming. */
443
+ cursor?: string;
444
+ /** Whether new content is still arriving. */
445
+ isStreaming?: boolean;
446
+ /** Whether to show the streaming cursor. */
447
+ showCursor?: boolean;
448
+ /** Text content available from the stream. */
449
+ text: string;
450
+ };
451
+ declare const AIStreamingText: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
452
+ /** Cursor glyph shown while streaming. */
453
+ cursor?: string;
454
+ /** Whether new content is still arriving. */
455
+ isStreaming?: boolean;
456
+ /** Whether to show the streaming cursor. */
457
+ showCursor?: boolean;
458
+ /** Text content available from the stream. */
459
+ text: string;
460
+ } & react.RefAttributes<HTMLDivElement>>;
461
+
462
+ type AIToolCallStatus = "complete" | "error" | "queued" | "running";
463
+ type AIToolCallDisplayProps = React.ComponentPropsWithoutRef<"div"> & {
464
+ /** Short description of the tool output. */
465
+ description?: string;
466
+ /** Optional execution duration label. */
467
+ duration?: string;
468
+ /** Serialized tool arguments or input payload. */
469
+ input?: string;
470
+ /** Serialized tool result or output payload. */
471
+ output?: string;
472
+ /** Current tool execution state. */
473
+ status?: AIToolCallStatus;
474
+ /** Name of the tool. */
475
+ toolName: string;
476
+ };
477
+ declare const AIToolCallDisplay: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
478
+ /** Short description of the tool output. */
479
+ description?: string;
480
+ /** Optional execution duration label. */
481
+ duration?: string;
482
+ /** Serialized tool arguments or input payload. */
483
+ input?: string;
484
+ /** Serialized tool result or output payload. */
485
+ output?: string;
486
+ /** Current tool execution state. */
487
+ status?: AIToolCallStatus;
488
+ /** Name of the tool. */
489
+ toolName: string;
490
+ } & react.RefAttributes<HTMLDivElement>>;
491
+
284
492
  type TextareaProps = React.TextareaHTMLAttributes<HTMLTextAreaElement>;
285
493
  declare const Textarea: react.ForwardRefExoticComponent<TextareaProps & react.RefAttributes<HTMLTextAreaElement>>;
286
494
 
@@ -483,6 +691,47 @@ declare const NavigationMenuLink: react.ForwardRefExoticComponent<NavigationMenu
483
691
  declare const NavigationMenuViewport: react.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuViewportProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
484
692
  declare const NavigationMenuIndicator: react.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuIndicatorProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
485
693
 
694
+ type DataTableFilterOption = {
695
+ label: string;
696
+ value: string;
697
+ };
698
+ type DataTableFilter = {
699
+ columnId: string;
700
+ label: string;
701
+ options: DataTableFilterOption[];
702
+ };
703
+ type DataTableProps<TData extends RowData> = react.HTMLAttributes<HTMLDivElement> & {
704
+ caption?: string;
705
+ columns: ColumnDef<TData>[];
706
+ data: TData[];
707
+ emptyMessage?: string;
708
+ enableFiltering?: boolean;
709
+ enablePagination?: boolean;
710
+ enableSelection?: boolean;
711
+ filterableColumns?: DataTableFilter[];
712
+ getRowId?: (originalRow: TData, index: number, parent?: Row<TData>) => string;
713
+ pageSize?: number;
714
+ searchPlaceholder?: string;
715
+ };
716
+ declare function DataTableComponent<TData extends RowData>({ caption, className, columns, data, emptyMessage, enableFiltering, enablePagination, enableSelection, filterableColumns, getRowId, pageSize, searchPlaceholder, ...props }: DataTableProps<TData>): react_jsx_runtime.JSX.Element;
717
+
718
+ declare const dataListVariants: (props?: ({
719
+ density?: "default" | "compact" | null | undefined;
720
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
721
+ declare const dataListItemVariants: (props?: ({
722
+ density?: "default" | "compact" | null | undefined;
723
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
724
+ type DataListProps = react.HTMLAttributes<HTMLDListElement> & VariantProps<typeof dataListVariants>;
725
+ declare const DataList: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLDListElement> & VariantProps<(props?: ({
726
+ density?: "default" | "compact" | null | undefined;
727
+ } & class_variance_authority_types.ClassProp) | undefined) => string> & react.RefAttributes<HTMLDListElement>>;
728
+ type DataListItemProps = react.HTMLAttributes<HTMLDivElement> & VariantProps<typeof dataListItemVariants>;
729
+ declare const DataListItem: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLDivElement> & VariantProps<(props?: ({
730
+ density?: "default" | "compact" | null | undefined;
731
+ } & class_variance_authority_types.ClassProp) | undefined) => string> & react.RefAttributes<HTMLDivElement>>;
732
+ declare const DataListLabel: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLElement> & react.RefAttributes<HTMLElement>>;
733
+ declare const DataListValue: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLElement> & react.RefAttributes<HTMLElement>>;
734
+
486
735
  declare const Table: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLTableElement> & react.RefAttributes<HTMLTableElement>>;
487
736
  declare const TableHeader: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLTableSectionElement> & react.RefAttributes<HTMLTableSectionElement>>;
488
737
  declare const TableBody: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLTableSectionElement> & react.RefAttributes<HTMLTableSectionElement>>;
@@ -496,6 +745,30 @@ declare const Avatar: react.ForwardRefExoticComponent<Omit<AvatarPrimitive.Avata
496
745
  declare const AvatarImage: react.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarImageProps & react.RefAttributes<HTMLImageElement>, "ref"> & react.RefAttributes<HTMLImageElement>>;
497
746
  declare const AvatarFallback: react.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarFallbackProps & react.RefAttributes<HTMLSpanElement>, "ref"> & react.RefAttributes<HTMLSpanElement>>;
498
747
 
748
+ declare const avatarGroupVariants: (props?: ({
749
+ size?: "lg" | "sm" | "md" | null | undefined;
750
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
751
+ declare const avatarItemVariants: (props?: ({
752
+ size?: "lg" | "sm" | "md" | null | undefined;
753
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
754
+ type AvatarGroupItem = {
755
+ alt: string;
756
+ fallback: string;
757
+ src?: string;
758
+ };
759
+ type AvatarGroupProps = react.HTMLAttributes<HTMLDivElement> & VariantProps<typeof avatarGroupVariants> & {
760
+ items: AvatarGroupItem[];
761
+ max?: number;
762
+ overflowLabel?: (hiddenCount: number) => string;
763
+ };
764
+ declare const AvatarGroup: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLDivElement> & VariantProps<(props?: ({
765
+ size?: "lg" | "sm" | "md" | null | undefined;
766
+ } & class_variance_authority_types.ClassProp) | undefined) => string> & {
767
+ items: AvatarGroupItem[];
768
+ max?: number;
769
+ overflowLabel?: (hiddenCount: number) => string;
770
+ } & react.RefAttributes<HTMLDivElement>>;
771
+
499
772
  declare function Skeleton({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
500
773
 
501
774
  declare const Separator: react.ForwardRefExoticComponent<Omit<SeparatorPrimitive.SeparatorProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
@@ -509,6 +782,55 @@ declare const Alert: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLDi
509
782
  declare const AlertTitle: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLHeadingElement> & react.RefAttributes<HTMLParagraphElement>>;
510
783
  declare const AlertDescription: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLParagraphElement> & react.RefAttributes<HTMLParagraphElement>>;
511
784
 
785
+ declare const statCardVariants: (props?: ({
786
+ tone?: "neutral" | "danger" | "success" | "warning" | null | undefined;
787
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
788
+ type StatCardTrend = "down" | "neutral" | "up";
789
+ type StatCardProps = react.HTMLAttributes<HTMLDivElement> & VariantProps<typeof statCardVariants> & {
790
+ change?: react.ReactNode;
791
+ description?: react.ReactNode;
792
+ icon?: react.ReactNode;
793
+ label: react.ReactNode;
794
+ meta?: react.ReactNode;
795
+ trend?: StatCardTrend;
796
+ value: react.ReactNode;
797
+ };
798
+ declare const StatCard: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLDivElement> & VariantProps<(props?: ({
799
+ tone?: "neutral" | "danger" | "success" | "warning" | null | undefined;
800
+ } & class_variance_authority_types.ClassProp) | undefined) => string> & {
801
+ change?: react.ReactNode;
802
+ description?: react.ReactNode;
803
+ icon?: react.ReactNode;
804
+ label: react.ReactNode;
805
+ meta?: react.ReactNode;
806
+ trend?: StatCardTrend;
807
+ value: react.ReactNode;
808
+ } & react.RefAttributes<HTMLDivElement>>;
809
+
810
+ declare const statusIndicatorVariants: (props?: ({
811
+ size?: "lg" | "sm" | "md" | null | undefined;
812
+ tone?: "neutral" | "danger" | "success" | "warning" | "info" | null | undefined;
813
+ variant?: "outline" | "soft" | "solid" | null | undefined;
814
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
815
+ declare const dotVariants: (props?: ({
816
+ size?: "lg" | "sm" | "md" | null | undefined;
817
+ tone?: "neutral" | "danger" | "success" | "warning" | "info" | null | undefined;
818
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
819
+ type StatusIndicatorProps = react.HTMLAttributes<HTMLSpanElement> & VariantProps<typeof statusIndicatorVariants> & {
820
+ label?: string;
821
+ pulse?: boolean;
822
+ showDot?: boolean;
823
+ };
824
+ declare const StatusIndicator: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLSpanElement> & VariantProps<(props?: ({
825
+ size?: "lg" | "sm" | "md" | null | undefined;
826
+ tone?: "neutral" | "danger" | "success" | "warning" | "info" | null | undefined;
827
+ variant?: "outline" | "soft" | "solid" | null | undefined;
828
+ } & class_variance_authority_types.ClassProp) | undefined) => string> & {
829
+ label?: string;
830
+ pulse?: boolean;
831
+ showDot?: boolean;
832
+ } & react.RefAttributes<HTMLSpanElement>>;
833
+
512
834
  declare const AspectRatio: react.ForwardRefExoticComponent<AspectRatioPrimitive.AspectRatioProps & react.RefAttributes<HTMLDivElement>>;
513
835
 
514
836
  declare const ScrollArea: react.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
@@ -550,17 +872,384 @@ declare const CarouselNext: react.ForwardRefExoticComponent<Omit<{
550
872
  variant?: "default" | "destructive" | "outline" | "secondary" | "link" | "ghost" | null | undefined;
551
873
  } & class_variance_authority_types.ClassProp) | undefined) => string> & react.RefAttributes<HTMLButtonElement>, "ref"> & react.RefAttributes<HTMLButtonElement>>;
552
874
 
553
- type CalendarProps = React.ComponentProps<typeof DayPicker>;
554
- declare function Calendar({ className, classNames, showOutsideDays, ...props }: CalendarProps): react_jsx_runtime.JSX.Element;
555
- declare namespace Calendar {
556
- var displayName: string;
557
- }
875
+ type BorderBeamProps = react.ComponentPropsWithoutRef<"span"> & {
876
+ borderWidth?: number;
877
+ colorFrom?: string;
878
+ colorTo?: string;
879
+ delay?: number;
880
+ duration?: number;
881
+ reverse?: boolean;
882
+ };
883
+ declare const BorderBeam: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & {
884
+ borderWidth?: number;
885
+ colorFrom?: string;
886
+ colorTo?: string;
887
+ delay?: number;
888
+ duration?: number;
889
+ reverse?: boolean;
890
+ } & react.RefAttributes<HTMLSpanElement>>;
891
+
892
+ type ActivityHeatmapItem = {
893
+ count: number;
894
+ date: string;
895
+ };
896
+ type ActivityHeatmapProps = react.ComponentPropsWithoutRef<"div"> & {
897
+ data: ActivityHeatmapItem[];
898
+ description?: string;
899
+ endDate?: Date | number | string;
900
+ title?: string;
901
+ weeks?: number;
902
+ };
903
+ declare const ActivityHeatmap: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
904
+ data: ActivityHeatmapItem[];
905
+ description?: string;
906
+ endDate?: Date | number | string;
907
+ title?: string;
908
+ weeks?: number;
909
+ } & react.RefAttributes<HTMLDivElement>>;
910
+
911
+ type CountdownTimerProps = react.ComponentPropsWithoutRef<"div"> & {
912
+ deadline: Date | number | string;
913
+ description?: string;
914
+ now?: Date | number | string;
915
+ startedAt?: Date | number | string;
916
+ tickMs?: number;
917
+ title?: string;
918
+ warningThresholdMs?: number;
919
+ };
920
+ declare const CountdownTimer: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
921
+ deadline: Date | number | string;
922
+ description?: string;
923
+ now?: Date | number | string;
924
+ startedAt?: Date | number | string;
925
+ tickMs?: number;
926
+ title?: string;
927
+ warningThresholdMs?: number;
928
+ } & react.RefAttributes<HTMLDivElement>>;
929
+
930
+ type MarqueeSpeed = "fast" | "normal" | "slow";
931
+ type MarqueeProps = react.ComponentPropsWithoutRef<"div"> & {
932
+ duration?: number;
933
+ fade?: boolean;
934
+ gap?: number | string;
935
+ pauseOnHover?: boolean;
936
+ repeat?: number;
937
+ reverse?: boolean;
938
+ speed?: MarqueeSpeed;
939
+ vertical?: boolean;
940
+ };
941
+ declare const Marquee: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
942
+ duration?: number;
943
+ fade?: boolean;
944
+ gap?: number | string;
945
+ pauseOnHover?: boolean;
946
+ repeat?: number;
947
+ reverse?: boolean;
948
+ speed?: MarqueeSpeed;
949
+ vertical?: boolean;
950
+ } & react.RefAttributes<HTMLDivElement>>;
951
+
952
+ type NumberTickerProps = react.ComponentPropsWithoutRef<"span"> & {
953
+ delay?: number;
954
+ duration?: number;
955
+ formatOptions?: Intl.NumberFormatOptions;
956
+ from?: number;
957
+ locale?: string;
958
+ value: number;
959
+ };
960
+ declare const NumberTicker: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & {
961
+ delay?: number;
962
+ duration?: number;
963
+ formatOptions?: Intl.NumberFormatOptions;
964
+ from?: number;
965
+ locale?: string;
966
+ value: number;
967
+ } & react.RefAttributes<HTMLSpanElement>>;
558
968
 
559
969
  type SpinnerProps = {
560
970
  size?: "lg" | "md" | "sm";
561
971
  } & React.HTMLAttributes<HTMLDivElement>;
562
972
  declare function Spinner({ className, size, ...props }: SpinnerProps): react_jsx_runtime.JSX.Element;
563
973
 
974
+ declare const UNICODE_SPINNER_PRESETS: {
975
+ readonly arc: {
976
+ readonly frames: readonly ["◜", "◠", "◝", "◞", "◡", "◟"];
977
+ readonly interval: 100;
978
+ };
979
+ readonly arrow: {
980
+ readonly frames: readonly ["←", "↖", "↑", "↗", "→", "↘", "↓", "↙"];
981
+ readonly interval: 100;
982
+ };
983
+ readonly balloon: {
984
+ readonly frames: readonly [".", "o", "O", "o", "."];
985
+ readonly interval: 120;
986
+ };
987
+ readonly bounce: {
988
+ readonly frames: readonly ["⠁", "⠂", "⠄", "⡀", "⠄", "⠂"];
989
+ readonly interval: 120;
990
+ };
991
+ readonly braille: {
992
+ readonly frames: readonly ["⠋", "⠙", "⠹", "⠸", "⠼", "⠴", "⠦", "⠧", "⠇", "⠏"];
993
+ readonly interval: 80;
994
+ };
995
+ readonly braillewave: {
996
+ readonly frames: readonly ["⠁⠂⠄⡀", "⠂⠄⡀⢀", "⠄⡀⢀⠠", "⡀⢀⠠⠐", "⢀⠠⠐⠈", "⠠⠐⠈⠁", "⠐⠈⠁⠂", "⠈⠁⠂⠄"];
997
+ readonly interval: 100;
998
+ };
999
+ readonly breathe: {
1000
+ readonly frames: readonly ["⠀", "⠂", "⠌", "⡑", "⢕", "⢝", "⣫", "⣟", "⣿", "⣟", "⣫", "⢝", "⢕", "⡑", "⠌", "⠂", "⠀"];
1001
+ readonly interval: 100;
1002
+ };
1003
+ readonly cascade: {
1004
+ readonly frames: readonly ["⠀⠀⠀⠀", "⠀⠀⠀⠀", "⠁⠀⠀⠀", "⠋⠀⠀⠀", "⠞⠁⠀⠀", "⡴⠋⠀⠀", "⣠⠞⠁⠀", "⢀⡴⠋⠀", "⠀⣠⠞⠁", "⠀⢀⡴⠋", "⠀⠀⣠⠞", "⠀⠀⢀⡴", "⠀⠀⠀⣠", "⠀⠀⠀⢀"];
1005
+ readonly interval: 60;
1006
+ };
1007
+ readonly checkerboard: {
1008
+ readonly frames: readonly ["⢕⢕⢕", "⡪⡪⡪", "⢊⠔⡡", "⡡⢊⠔"];
1009
+ readonly interval: 250;
1010
+ };
1011
+ readonly "circle-halves": {
1012
+ readonly frames: readonly ["◐", "◓", "◑", "◒"];
1013
+ readonly interval: 50;
1014
+ };
1015
+ readonly "circle-quarters": {
1016
+ readonly frames: readonly ["◴", "◷", "◶", "◵"];
1017
+ readonly interval: 120;
1018
+ };
1019
+ readonly clock: {
1020
+ readonly frames: readonly ["🕛", "🕐", "🕑", "🕒", "🕓", "🕔", "🕕", "🕖", "🕗", "🕘", "🕙", "🕚"];
1021
+ readonly interval: 100;
1022
+ };
1023
+ readonly columns: {
1024
+ readonly frames: readonly ["⡀⠀⠀", "⡄⠀⠀", "⡆⠀⠀", "⡇⠀⠀", "⣇⠀⠀", "⣧⠀⠀", "⣷⠀⠀", "⣿⠀⠀", "⣿⡀⠀", "⣿⡄⠀", "⣿⡆⠀", "⣿⡇⠀", "⣿⣇⠀", "⣿⣧⠀", "⣿⣷⠀", "⣿⣿⠀", "⣿⣿⡀", "⣿⣿⡄", "⣿⣿⡆", "⣿⣿⡇", "⣿⣿⣇", "⣿⣿⣧", "⣿⣿⣷", "⣿⣿⣿", "⣿⣿⣿", "⠀⠀⠀"];
1025
+ readonly interval: 60;
1026
+ };
1027
+ readonly diagswipe: {
1028
+ readonly frames: readonly ["⠁⠀", "⠋⠀", "⠟⠁", "⡿⠋", "⣿⠟", "⣿⡿", "⣿⣿", "⣿⣿", "⣾⣿", "⣴⣿", "⣠⣾", "⢀⣴", "⠀⣠", "⠀⢀", "⠀⠀", "⠀⠀"];
1029
+ readonly interval: 60;
1030
+ };
1031
+ readonly dna: {
1032
+ readonly frames: readonly ["⠋⠉⠙⠚", "⠉⠙⠚⠒", "⠙⠚⠒⠂", "⠚⠒⠂⠂", "⠒⠂⠂⠒", "⠂⠂⠒⠲", "⠂⠒⠲⠴", "⠒⠲⠴⠤", "⠲⠴⠤⠄", "⠴⠤⠄⠋", "⠤⠄⠋⠉", "⠄⠋⠉⠙"];
1033
+ readonly interval: 80;
1034
+ };
1035
+ readonly dots: {
1036
+ readonly frames: readonly ["⠋", "⠙", "⠹", "⠸", "⠼", "⠴", "⠦", "⠧", "⠇", "⠏"];
1037
+ readonly interval: 80;
1038
+ };
1039
+ readonly dots2: {
1040
+ readonly frames: readonly ["⣾", "⣽", "⣻", "⢿", "⡿", "⣟", "⣯", "⣷"];
1041
+ readonly interval: 80;
1042
+ };
1043
+ readonly dots3: {
1044
+ readonly frames: readonly ["⠋", "⠙", "⠚", "⠞", "⠖", "⠦", "⠴", "⠲", "⠳", "⠓"];
1045
+ readonly interval: 80;
1046
+ };
1047
+ readonly dots4: {
1048
+ readonly frames: readonly ["⠄", "⠆", "⠇", "⠋", "⠙", "⠸", "⠰", "⠠", "⠰", "⠸", "⠙", "⠋", "⠇", "⠆"];
1049
+ readonly interval: 80;
1050
+ };
1051
+ readonly dots5: {
1052
+ readonly frames: readonly ["⠋", "⠙", "⠚", "⠒", "⠂", "⠂", "⠒", "⠲", "⠴", "⠦", "⠖", "⠒", "⠐", "⠐", "⠒", "⠓", "⠋"];
1053
+ readonly interval: 80;
1054
+ };
1055
+ readonly dots6: {
1056
+ readonly frames: readonly ["⠁", "⠉", "⠙", "⠚", "⠒", "⠂", "⠂", "⠒", "⠲", "⠴", "⠤", "⠄", "⠄", "⠤", "⠴", "⠲", "⠒", "⠂", "⠂", "⠒", "⠚", "⠙", "⠉", "⠁"];
1057
+ readonly interval: 80;
1058
+ };
1059
+ readonly dots7: {
1060
+ readonly frames: readonly ["⠈", "⠉", "⠋", "⠓", "⠒", "⠐", "⠐", "⠒", "⠖", "⠦", "⠤", "⠠", "⠠", "⠤", "⠦", "⠖", "⠒", "⠐", "⠐", "⠒", "⠓", "⠋", "⠉", "⠈"];
1061
+ readonly interval: 80;
1062
+ };
1063
+ readonly dots8: {
1064
+ readonly frames: readonly ["⠁", "⠁", "⠉", "⠙", "⠚", "⠒", "⠂", "⠂", "⠒", "⠲", "⠴", "⠤", "⠄", "⠄", "⠤", "⠠", "⠠", "⠤", "⠦", "⠖", "⠒", "⠐", "⠐", "⠒", "⠓", "⠋", "⠉", "⠈", "⠈"];
1065
+ readonly interval: 80;
1066
+ };
1067
+ readonly dots9: {
1068
+ readonly frames: readonly ["⢹", "⢺", "⢼", "⣸", "⣇", "⡧", "⡗", "⡏"];
1069
+ readonly interval: 80;
1070
+ };
1071
+ readonly dots10: {
1072
+ readonly frames: readonly ["⢄", "⢂", "⢁", "⡁", "⡈", "⡐", "⡠"];
1073
+ readonly interval: 80;
1074
+ };
1075
+ readonly dots11: {
1076
+ readonly frames: readonly ["⠁", "⠂", "⠄", "⡀", "⢀", "⠠", "⠐", "⠈"];
1077
+ readonly interval: 100;
1078
+ };
1079
+ readonly dots12: {
1080
+ readonly frames: readonly ["⢀⠀", "⡀⠀", "⠄⠀", "⢂⠀", "⡂⠀", "⠅⠀", "⢃⠀", "⡃⠀", "⠍⠀", "⢋⠀", "⡋⠀", "⠍⠁", "⢋⠁", "⡋⠁", "⠍⠉", "⠋⠉", "⠋⠉", "⠉⠙", "⠉⠙", "⠉⠩", "⠈⢙", "⠈⡙", "⢈⠩", "⡀⢙", "⠄⡙", "⢂⠩", "⡂⢘", "⠅⡘", "⢃⠨", "⡃⢐", "⠍⡐", "⢋⠠", "⡋⢀", "⠍⡁", "⢋⠁", "⡋⠁", "⠍⠉", "⠋⠉", "⠋⠉", "⠉⠙", "⠉⠙", "⠉⠩", "⠈⢙", "⠈⡙", "⠈⠩", "⠀⢙", "⠀⡙", "⠀⠩", "⠀⢘", "⠀⡘", "⠀⠨", "⠀⢐", "⠀⡐", "⠀⠠", "⠀⢀", "⠀⡀"];
1081
+ readonly interval: 80;
1082
+ };
1083
+ readonly dots13: {
1084
+ readonly frames: readonly ["⣼", "⣹", "⢻", "⠿", "⡟", "⣏", "⣧", "⣶"];
1085
+ readonly interval: 80;
1086
+ };
1087
+ readonly dots14: {
1088
+ readonly frames: readonly ["⠉⠉", "⠈⠙", "⠀⠹", "⠀⢸", "⠀⣰", "⢀⣠", "⣀⣀", "⣄⡀", "⣆⠀", "⡇⠀", "⠏⠀", "⠋⠁"];
1089
+ readonly interval: 80;
1090
+ };
1091
+ readonly "dots-circle": {
1092
+ readonly frames: readonly ["⢎⠀", "⠎⠁", "⠊⠑", "⠈⠱", "⠀⡱", "⢀⡰", "⢄⡠", "⢆⡀"];
1093
+ readonly interval: 80;
1094
+ };
1095
+ readonly "double-arrow": {
1096
+ readonly frames: readonly ["⇐", "⇖", "⇑", "⇗", "⇒", "⇘", "⇓", "⇙"];
1097
+ readonly interval: 100;
1098
+ };
1099
+ readonly dqpb: {
1100
+ readonly frames: readonly ["d", "q", "p", "b"];
1101
+ readonly interval: 100;
1102
+ };
1103
+ readonly earth: {
1104
+ readonly frames: readonly ["🌍", "🌎", "🌏"];
1105
+ readonly interval: 180;
1106
+ };
1107
+ readonly fillsweep: {
1108
+ readonly frames: readonly ["⣀⣀", "⣤⣤", "⣶⣶", "⣿⣿", "⣿⣿", "⣿⣿", "⣶⣶", "⣤⣤", "⣀⣀", "⠀⠀", "⠀⠀"];
1109
+ readonly interval: 100;
1110
+ };
1111
+ readonly "grow-horizontal": {
1112
+ readonly frames: readonly ["▏", "▎", "▍", "▌", "▋", "▊", "▉", "▊", "▋", "▌", "▍", "▎"];
1113
+ readonly interval: 120;
1114
+ };
1115
+ readonly "grow-vertical": {
1116
+ readonly frames: readonly ["▁", "▃", "▄", "▅", "▆", "▇", "▆", "▅", "▄", "▃"];
1117
+ readonly interval: 120;
1118
+ };
1119
+ readonly hearts: {
1120
+ readonly frames: readonly ["🩷", "🧡", "💛", "💚", "💙", "🩵", "💜", "🤎", "🖤", "🩶", "🤍"];
1121
+ readonly interval: 120;
1122
+ };
1123
+ readonly helix: {
1124
+ readonly frames: readonly ["⢌⣉⢎⣉", "⣉⡱⣉⡱", "⣉⢎⣉⢎", "⡱⣉⡱⣉", "⢎⣉⢎⣉", "⣉⡱⣉⡱", "⣉⢎⣉⢎", "⡱⣉⡱⣉", "⢎⣉⢎⣉", "⣉⡱⣉⡱", "⣉⢎⣉⢎", "⡱⣉⡱⣉", "⢎⣉⢎⣉", "⣉⡱⣉⡱", "⣉⢎⣉⢎", "⡱⣉⡱⣉"];
1125
+ readonly interval: 80;
1126
+ };
1127
+ readonly moon: {
1128
+ readonly frames: readonly ["🌑", "🌒", "🌓", "🌔", "🌕", "🌖", "🌗", "🌘"];
1129
+ readonly interval: 80;
1130
+ };
1131
+ readonly noise: {
1132
+ readonly frames: readonly ["▓", "▒", "░", " ", "░", "▒"];
1133
+ readonly interval: 100;
1134
+ };
1135
+ readonly orbit: {
1136
+ readonly frames: readonly ["⠃", "⠉", "⠘", "⠰", "⢠", "⣀", "⡄", "⠆"];
1137
+ readonly interval: 100;
1138
+ };
1139
+ readonly point: {
1140
+ readonly frames: readonly ["···", "•··", "·•·", "··•", "···"];
1141
+ readonly interval: 200;
1142
+ };
1143
+ readonly pulse: {
1144
+ readonly frames: readonly ["⠀⠶⠀", "⠰⣿⠆", "⢾⣉⡷", "⣏⠀⣹", "⡁⠀⢈"];
1145
+ readonly interval: 180;
1146
+ };
1147
+ readonly rain: {
1148
+ readonly frames: readonly ["⢁⠂⠔⠈", "⠂⠌⡠⠐", "⠄⡐⢀⠡", "⡈⠠⠀⢂", "⠐⢀⠁⠄", "⠠⠁⠊⡀", "⢁⠂⠔⠈", "⠂⠌⡠⠐", "⠄⡐⢀⠡", "⡈⠠⠀⢂", "⠐⢀⠁⠄", "⠠⠁⠊⡀"];
1149
+ readonly interval: 100;
1150
+ };
1151
+ readonly "rolling-line": {
1152
+ readonly frames: readonly ["/", "-", "\\", "|", "\\", "-"];
1153
+ readonly interval: 80;
1154
+ };
1155
+ readonly sand: {
1156
+ readonly frames: readonly ["⠁", "⠂", "⠄", "⡀", "⡈", "⡐", "⡠", "⣀", "⣁", "⣂", "⣄", "⣌", "⣔", "⣤", "⣥", "⣦", "⣮", "⣶", "⣷", "⣿", "⡿", "⠿", "⢟", "⠟", "⡛", "⠛", "⠫", "⢋", "⠋", "⠍", "⡉", "⠉", "⠑", "⠡", "⢁"];
1157
+ readonly interval: 80;
1158
+ };
1159
+ readonly scan: {
1160
+ readonly frames: readonly ["⠀⠀⠀⠀", "⡇⠀⠀⠀", "⣿⠀⠀⠀", "⢸⡇⠀⠀", "⠀⣿⠀⠀", "⠀⢸⡇⠀", "⠀⠀⣿⠀", "⠀⠀⢸⡇", "⠀⠀⠀⣿", "⠀⠀⠀⢸"];
1161
+ readonly interval: 70;
1162
+ };
1163
+ readonly scanline: {
1164
+ readonly frames: readonly ["⠉⠉⠉", "⠓⠓⠓", "⠦⠦⠦", "⣄⣄⣄", "⠦⠦⠦", "⠓⠓⠓"];
1165
+ readonly interval: 120;
1166
+ };
1167
+ readonly "simple-dots": {
1168
+ readonly frames: readonly [". ", ".. ", "...", " "];
1169
+ readonly interval: 400;
1170
+ };
1171
+ readonly "simple-dots-scrolling": {
1172
+ readonly frames: readonly [". ", ".. ", "...", " ..", " .", " "];
1173
+ readonly interval: 200;
1174
+ };
1175
+ readonly snake: {
1176
+ readonly frames: readonly ["⣁⡀", "⣉⠀", "⡉⠁", "⠉⠉", "⠈⠙", "⠀⠛", "⠐⠚", "⠒⠒", "⠖⠂", "⠶⠀", "⠦⠄", "⠤⠤", "⠠⢤", "⠀⣤", "⢀⣠", "⣀⣀"];
1177
+ readonly interval: 80;
1178
+ };
1179
+ readonly sparkle: {
1180
+ readonly frames: readonly ["⡡⠊⢔⠡", "⠊⡰⡡⡘", "⢔⢅⠈⢢", "⡁⢂⠆⡍", "⢔⠨⢑⢐", "⠨⡑⡠⠊"];
1181
+ readonly interval: 150;
1182
+ };
1183
+ readonly speaker: {
1184
+ readonly frames: readonly ["🔈", "🔉", "🔊", "🔉"];
1185
+ readonly interval: 160;
1186
+ };
1187
+ readonly "square-corners": {
1188
+ readonly frames: readonly ["◰", "◳", "◲", "◱"];
1189
+ readonly interval: 180;
1190
+ };
1191
+ readonly toggle: {
1192
+ readonly frames: readonly ["⊶", "⊷"];
1193
+ readonly interval: 250;
1194
+ };
1195
+ readonly triangle: {
1196
+ readonly frames: readonly ["◢", "◣", "◤", "◥"];
1197
+ readonly interval: 50;
1198
+ };
1199
+ readonly wave: {
1200
+ readonly frames: readonly ["⠁⠂⠄⡀", "⠂⠄⡀⢀", "⠄⡀⢀⠠", "⡀⢀⠠⠐", "⢀⠠⠐⠈", "⠠⠐⠈⠁", "⠐⠈⠁⠂", "⠈⠁⠂⠄"];
1201
+ readonly interval: 100;
1202
+ };
1203
+ readonly waverows: {
1204
+ readonly frames: readonly ["⠖⠉⠉⠑", "⡠⠖⠉⠉", "⣠⡠⠖⠉", "⣄⣠⡠⠖", "⠢⣄⣠⡠", "⠙⠢⣄⣠", "⠉⠙⠢⣄", "⠊⠉⠙⠢", "⠜⠊⠉⠙", "⡤⠜⠊⠉", "⣀⡤⠜⠊", "⢤⣀⡤⠜", "⠣⢤⣀⡤", "⠑⠣⢤⣀", "⠉⠑⠣⢤", "⠋⠉⠑⠣"];
1205
+ readonly interval: 90;
1206
+ };
1207
+ readonly weather: {
1208
+ readonly frames: readonly ["☀️", "🌤", "⛅️", "🌥", "☁️", "🌧", "🌨", "⛈"];
1209
+ readonly interval: 100;
1210
+ };
1211
+ };
1212
+ declare const UNICODE_SPINNER_SIZE_CLASSES: {
1213
+ readonly lg: "text-2xl";
1214
+ readonly md: "text-lg";
1215
+ readonly sm: "text-sm";
1216
+ };
1217
+ type UnicodeSpinnerAnimation = keyof typeof UNICODE_SPINNER_PRESETS;
1218
+ type UnicodeSpinnerProps = Omit<react.ComponentPropsWithoutRef<"span">, "children"> & {
1219
+ animation?: UnicodeSpinnerAnimation;
1220
+ interval?: number;
1221
+ label?: string;
1222
+ paused?: boolean;
1223
+ size?: keyof typeof UNICODE_SPINNER_SIZE_CLASSES;
1224
+ };
1225
+ declare const UnicodeSpinner: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref">, "children"> & {
1226
+ animation?: UnicodeSpinnerAnimation;
1227
+ interval?: number;
1228
+ label?: string;
1229
+ paused?: boolean;
1230
+ size?: keyof typeof UNICODE_SPINNER_SIZE_CLASSES;
1231
+ } & react.RefAttributes<HTMLSpanElement>>;
1232
+
1233
+ type WorldClockBarZone = {
1234
+ city: string;
1235
+ locale?: string;
1236
+ timeZone: string;
1237
+ };
1238
+ type WorldClockBarProps = react.ComponentPropsWithoutRef<"div"> & {
1239
+ now?: Date | number | string;
1240
+ showDate?: boolean;
1241
+ title?: string;
1242
+ updateIntervalMs?: number;
1243
+ zones: WorldClockBarZone[];
1244
+ };
1245
+ declare const WorldClockBar: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
1246
+ now?: Date | number | string;
1247
+ showDate?: boolean;
1248
+ title?: string;
1249
+ updateIntervalMs?: number;
1250
+ zones: WorldClockBarZone[];
1251
+ } & react.RefAttributes<HTMLDivElement>>;
1252
+
564
1253
  type CodeBlockProps = {
565
1254
  children: ReactNode;
566
1255
  className?: string;
@@ -622,6 +1311,38 @@ type TableOfContentsProps = {
622
1311
  };
623
1312
  declare function TableOfContents({ sections }: TableOfContentsProps): react_jsx_runtime.JSX.Element | null;
624
1313
 
1314
+ type ActivityLogTone = "danger" | "default" | "success" | "warning";
1315
+ type ActivityLogItem = {
1316
+ action: string;
1317
+ actor: string;
1318
+ description?: string;
1319
+ id: string;
1320
+ scope?: string;
1321
+ target?: string;
1322
+ timestamp: string;
1323
+ tone?: ActivityLogTone;
1324
+ };
1325
+ type ActivityLogProps = React.ComponentPropsWithoutRef<typeof Card> & {
1326
+ defaultPage?: number;
1327
+ description?: string;
1328
+ emptyMessage?: string;
1329
+ items: ActivityLogItem[];
1330
+ onPageChange?: (page: number) => void;
1331
+ page?: number;
1332
+ pageSize?: number;
1333
+ title?: string;
1334
+ };
1335
+ declare const ActivityLog: react.ForwardRefExoticComponent<Omit<react.HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>, "ref"> & {
1336
+ defaultPage?: number;
1337
+ description?: string;
1338
+ emptyMessage?: string;
1339
+ items: ActivityLogItem[];
1340
+ onPageChange?: (page: number) => void;
1341
+ page?: number;
1342
+ pageSize?: number;
1343
+ title?: string;
1344
+ } & react.RefAttributes<HTMLDivElement>>;
1345
+
625
1346
  type ContentCardPost = {
626
1347
  date?: string;
627
1348
  description: string;
@@ -666,6 +1387,62 @@ type SearchBarProps = {
666
1387
  };
667
1388
  declare function SearchBar({ className, onSearch, placeholder, }: SearchBarProps): react_jsx_runtime.JSX.Element;
668
1389
 
1390
+ type ScopeSelectorNode = {
1391
+ badge?: string;
1392
+ children?: ScopeSelectorNode[];
1393
+ description?: string;
1394
+ disabled?: boolean;
1395
+ id: string;
1396
+ label: string;
1397
+ selectable?: boolean;
1398
+ };
1399
+ type ScopeSelectorSelection = {
1400
+ node: ScopeSelectorNode;
1401
+ path: ScopeSelectorNode[];
1402
+ };
1403
+ type ScopeSelectorProps = {
1404
+ className?: string;
1405
+ defaultValue?: string;
1406
+ disabled?: boolean;
1407
+ emptyMessage?: string;
1408
+ nodes: ScopeSelectorNode[];
1409
+ onValueChange?: (selection: ScopeSelectorSelection) => void;
1410
+ placeholder?: string;
1411
+ searchPlaceholder?: string;
1412
+ value?: string;
1413
+ };
1414
+ declare const ScopeSelector: react.ForwardRefExoticComponent<ScopeSelectorProps & react.RefAttributes<HTMLButtonElement>>;
1415
+
1416
+ type UsageBreakdownTone = "danger" | "default" | "success" | "warning";
1417
+ type UsageBreakdownItem = {
1418
+ description?: string;
1419
+ icon?: ReactNode;
1420
+ id: string;
1421
+ label: string;
1422
+ meta?: string;
1423
+ tone?: UsageBreakdownTone;
1424
+ trend?: {
1425
+ direction: "down" | "up";
1426
+ label: string;
1427
+ };
1428
+ value: number;
1429
+ valueLabel?: string;
1430
+ };
1431
+ type UsageBreakdownProps = React.ComponentPropsWithoutRef<typeof Card> & {
1432
+ description?: string;
1433
+ emptyMessage?: string;
1434
+ items: UsageBreakdownItem[];
1435
+ maxItems?: number;
1436
+ title?: string;
1437
+ };
1438
+ declare const UsageBreakdown: react.ForwardRefExoticComponent<Omit<react.HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>, "ref"> & {
1439
+ description?: string;
1440
+ emptyMessage?: string;
1441
+ items: UsageBreakdownItem[];
1442
+ maxItems?: number;
1443
+ title?: string;
1444
+ } & react.RefAttributes<HTMLDivElement>>;
1445
+
669
1446
  type SharePlatform$1 = "bluesky" | "facebook" | "linkedin" | "mastodon" | "threads" | "x";
670
1447
  type PlatformConfig = {
671
1448
  key: SharePlatform$1;
@@ -723,6 +1500,67 @@ type ThemeToggleProps = {
723
1500
  };
724
1501
  declare function ThemeToggle({ dict }: ThemeToggleProps): react_jsx_runtime.JSX.Element;
725
1502
 
1503
+ type CandlestickDatum = {
1504
+ close: number;
1505
+ high: number;
1506
+ label: string;
1507
+ low: number;
1508
+ open: number;
1509
+ };
1510
+ type CandlestickChartProps = {
1511
+ data: CandlestickDatum[];
1512
+ height?: number;
1513
+ showGrid?: boolean;
1514
+ width?: number;
1515
+ } & react.HTMLAttributes<HTMLDivElement>;
1516
+ declare const CandlestickChart: react.ForwardRefExoticComponent<{
1517
+ data: CandlestickDatum[];
1518
+ height?: number;
1519
+ showGrid?: boolean;
1520
+ width?: number;
1521
+ } & react.HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>>;
1522
+
1523
+ type CreditBadgeStatus = "depleted" | "healthy" | "low" | "overdue";
1524
+ type CreditBadgeProps = Omit<react.ComponentPropsWithoutRef<"span">, "children"> & {
1525
+ amount?: string;
1526
+ label?: string;
1527
+ status: CreditBadgeStatus;
1528
+ };
1529
+ declare const CreditBadge: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref">, "children"> & {
1530
+ amount?: string;
1531
+ label?: string;
1532
+ status: CreditBadgeStatus;
1533
+ } & react.RefAttributes<HTMLSpanElement>>;
1534
+
1535
+ type MarketTreemapItem = {
1536
+ change: number;
1537
+ label: string;
1538
+ sector?: string;
1539
+ value: number;
1540
+ };
1541
+ type MarketTreemapProps = {
1542
+ items: MarketTreemapItem[];
1543
+ } & react.HTMLAttributes<HTMLDivElement>;
1544
+ declare const MarketTreemap: react.ForwardRefExoticComponent<{
1545
+ items: MarketTreemapItem[];
1546
+ } & react.HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>>;
1547
+
1548
+ type OrderBookLevel = {
1549
+ price: number;
1550
+ size: number;
1551
+ total?: number;
1552
+ };
1553
+ type OrderBookProps = {
1554
+ asks: OrderBookLevel[];
1555
+ bids: OrderBookLevel[];
1556
+ precision?: number;
1557
+ } & react.HTMLAttributes<HTMLDivElement>;
1558
+ declare const OrderBook: react.ForwardRefExoticComponent<{
1559
+ asks: OrderBookLevel[];
1560
+ bids: OrderBookLevel[];
1561
+ precision?: number;
1562
+ } & react.HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>>;
1563
+
726
1564
  type ProfileDict = {
727
1565
  profile: {
728
1566
  name: string;
@@ -742,12 +1580,131 @@ type ProfileSectionProps = {
742
1580
  };
743
1581
  declare function ProfileSection({ compact, dict, imageAlt, imageSource, socialLinks, }: ProfileSectionProps): react_jsx_runtime.JSX.Element;
744
1582
 
1583
+ type PlanBadgeTier = "enterprise" | "free" | "growth" | "starter";
1584
+ type PlanBadgeState = "current" | "legacy" | "trial";
1585
+ type PlanBadgeProps = Omit<react.ComponentPropsWithoutRef<"span">, "children"> & {
1586
+ label?: string;
1587
+ state?: PlanBadgeState;
1588
+ tier: PlanBadgeTier;
1589
+ };
1590
+ declare const PlanBadge: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref">, "children"> & {
1591
+ label?: string;
1592
+ state?: PlanBadgeState;
1593
+ tier: PlanBadgeTier;
1594
+ } & react.RefAttributes<HTMLSpanElement>>;
1595
+
1596
+ type RoleBadgeRole = "admin" | "billing" | "member" | "owner";
1597
+ type RoleBadgeProps = Omit<react.ComponentPropsWithoutRef<"span">, "children"> & {
1598
+ accountRole: RoleBadgeRole;
1599
+ label?: string;
1600
+ };
1601
+ declare const RoleBadge: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref">, "children"> & {
1602
+ accountRole: RoleBadgeRole;
1603
+ label?: string;
1604
+ } & react.RefAttributes<HTMLSpanElement>>;
1605
+
1606
+ type SparklineGridItem = {
1607
+ change: number;
1608
+ data: number[];
1609
+ label: string;
1610
+ value: string;
1611
+ };
1612
+ type SparklineGridProps = {
1613
+ columns?: 2 | 3 | 4;
1614
+ items: SparklineGridItem[];
1615
+ } & react.HTMLAttributes<HTMLDivElement>;
1616
+ declare const SparklineGrid: react.ForwardRefExoticComponent<{
1617
+ columns?: 2 | 3 | 4;
1618
+ items: SparklineGridItem[];
1619
+ } & react.HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>>;
1620
+
1621
+ type SubscriptionCardStatus = "active" | "canceled" | "past-due" | "trialing";
1622
+ type SubscriptionCardProps = react.ComponentPropsWithoutRef<typeof Card> & {
1623
+ note?: string;
1624
+ plan: PlanBadgeTier;
1625
+ priceLabel: string;
1626
+ primaryActionLabel?: string;
1627
+ renewalLabel: string;
1628
+ seatsLabel?: string;
1629
+ secondaryActionLabel?: string;
1630
+ status: SubscriptionCardStatus;
1631
+ usageLabel?: string;
1632
+ };
1633
+ declare const SubscriptionCard: react.ForwardRefExoticComponent<Omit<react.HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>, "ref"> & {
1634
+ note?: string;
1635
+ plan: PlanBadgeTier;
1636
+ priceLabel: string;
1637
+ primaryActionLabel?: string;
1638
+ renewalLabel: string;
1639
+ seatsLabel?: string;
1640
+ secondaryActionLabel?: string;
1641
+ status: SubscriptionCardStatus;
1642
+ usageLabel?: string;
1643
+ } & react.RefAttributes<HTMLDivElement>>;
1644
+
745
1645
  type TLDRSectionProps = {
746
1646
  children: React.ReactNode;
747
1647
  label: string;
748
1648
  };
749
1649
  declare function TLDRSection({ children, label }: TLDRSectionProps): react_jsx_runtime.JSX.Element;
750
1650
 
1651
+ type TickerTapeItem = {
1652
+ change: number;
1653
+ price: number | string;
1654
+ symbol: string;
1655
+ volume?: string;
1656
+ };
1657
+ type TickerTapeProps = {
1658
+ items: TickerTapeItem[];
1659
+ pauseOnHover?: boolean;
1660
+ speedSeconds?: number;
1661
+ } & react.HTMLAttributes<HTMLDivElement>;
1662
+ declare const TickerTape: react.ForwardRefExoticComponent<{
1663
+ items: TickerTapeItem[];
1664
+ pauseOnHover?: boolean;
1665
+ speedSeconds?: number;
1666
+ } & react.HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>>;
1667
+
1668
+ type WalletCardProps = react.ComponentPropsWithoutRef<typeof Card> & {
1669
+ availableLabel?: string;
1670
+ balanceLabel: string;
1671
+ note?: string;
1672
+ pendingLabel?: string;
1673
+ primaryActionLabel?: string;
1674
+ renewsLabel?: string;
1675
+ secondaryActionLabel?: string;
1676
+ status: CreditBadgeStatus;
1677
+ };
1678
+ declare const WalletCard: react.ForwardRefExoticComponent<Omit<react.HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>, "ref"> & {
1679
+ availableLabel?: string;
1680
+ balanceLabel: string;
1681
+ note?: string;
1682
+ pendingLabel?: string;
1683
+ primaryActionLabel?: string;
1684
+ renewsLabel?: string;
1685
+ secondaryActionLabel?: string;
1686
+ status: CreditBadgeStatus;
1687
+ } & react.RefAttributes<HTMLDivElement>>;
1688
+
1689
+ type WatchlistItem = {
1690
+ change: number;
1691
+ name?: string;
1692
+ price: number | string;
1693
+ starred?: boolean;
1694
+ symbol: string;
1695
+ volume?: string;
1696
+ };
1697
+ type WatchlistProps = {
1698
+ eyebrow?: string;
1699
+ items: WatchlistItem[];
1700
+ title?: string;
1701
+ } & react.HTMLAttributes<HTMLDivElement>;
1702
+ declare const Watchlist: react.ForwardRefExoticComponent<{
1703
+ eyebrow?: string;
1704
+ items: WatchlistItem[];
1705
+ title?: string;
1706
+ } & react.HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>>;
1707
+
751
1708
  type Datum$2 = {
752
1709
  label?: string;
753
1710
  value: number;
@@ -787,6 +1744,130 @@ declare const LineChart: react.ForwardRefExoticComponent<{
787
1744
  width?: number;
788
1745
  } & react.HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>>;
789
1746
 
1747
+ type SeverityBadgeLevel = "critical" | "high" | "info" | "low" | "medium";
1748
+ declare const severityBadgeVariants: (props?: ({
1749
+ level?: "high" | "low" | "info" | "medium" | "critical" | null | undefined;
1750
+ tone?: "outline" | "soft" | "solid" | null | undefined;
1751
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1752
+ type SeverityBadgeProps = Omit<react.HTMLAttributes<HTMLSpanElement>, "children"> & VariantProps<typeof severityBadgeVariants> & {
1753
+ children?: react.ReactNode;
1754
+ level: SeverityBadgeLevel;
1755
+ pulse?: boolean;
1756
+ showDot?: boolean;
1757
+ };
1758
+ declare function SeverityBadge({ children, className, level, pulse, showDot, tone, ...props }: SeverityBadgeProps): react_jsx_runtime.JSX.Element;
1759
+
1760
+ type LiveFeedEvent = {
1761
+ id: string;
1762
+ message?: string;
1763
+ severity: SeverityBadgeLevel;
1764
+ source?: string;
1765
+ timestamp: Date | number | string;
1766
+ title: string;
1767
+ };
1768
+ type LiveFeedProps = react.ComponentPropsWithoutRef<"div"> & {
1769
+ description?: string;
1770
+ emptyLabel?: string;
1771
+ events: LiveFeedEvent[];
1772
+ maxItems?: number;
1773
+ now?: Date | number | string;
1774
+ tickMs?: number;
1775
+ title?: string;
1776
+ };
1777
+ declare const LiveFeed: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
1778
+ description?: string;
1779
+ emptyLabel?: string;
1780
+ events: LiveFeedEvent[];
1781
+ maxItems?: number;
1782
+ now?: Date | number | string;
1783
+ tickMs?: number;
1784
+ title?: string;
1785
+ } & react.RefAttributes<HTMLDivElement>>;
1786
+
1787
+ type MetricGaugeThreshold = {
1788
+ colorClassName: string;
1789
+ label: string;
1790
+ value: number;
1791
+ };
1792
+ type MetricGaugeProps = react.ComponentPropsWithoutRef<"div"> & {
1793
+ description?: string;
1794
+ label: string;
1795
+ max: number;
1796
+ min?: number;
1797
+ thresholds?: MetricGaugeThreshold[];
1798
+ unit?: string;
1799
+ value: number;
1800
+ };
1801
+ declare const MetricGauge: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
1802
+ description?: string;
1803
+ label: string;
1804
+ max: number;
1805
+ min?: number;
1806
+ thresholds?: MetricGaugeThreshold[];
1807
+ unit?: string;
1808
+ value: number;
1809
+ } & react.RefAttributes<HTMLDivElement>>;
1810
+
1811
+ type StatusBoardStatus = "critical" | "healthy" | "maintenance" | "offline" | "warning";
1812
+ type StatusBoardItem = {
1813
+ description?: string;
1814
+ label: string;
1815
+ meta?: string;
1816
+ status: StatusBoardStatus;
1817
+ value?: string;
1818
+ };
1819
+ type StatusBoardProps = react.ComponentPropsWithoutRef<"div"> & {
1820
+ columns?: 2 | 3 | 4;
1821
+ description?: string;
1822
+ items: StatusBoardItem[];
1823
+ title?: string;
1824
+ };
1825
+ declare const StatusBoard: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
1826
+ columns?: 2 | 3 | 4;
1827
+ description?: string;
1828
+ items: StatusBoardItem[];
1829
+ title?: string;
1830
+ } & react.RefAttributes<HTMLDivElement>>;
1831
+
1832
+ declare const ANIMATED_TEXT_RANDOM_CHARACTER_PRESETS: {
1833
+ readonly ascii: string;
1834
+ readonly binary: "01";
1835
+ readonly blocks: "░▒▓█▌▐▀▄■□▪▫▖▗▘▙▚▛▜▝▞▟";
1836
+ readonly matrix: string;
1837
+ readonly symbols: "◆◇◈○●◎◉◌◍◐◑◒◓◔◕◢◣◤◥◦※✦✧✱✶✷✹";
1838
+ readonly terminal: "│┃─━┄┅┈┉┌┐└┘├┤┬┴┼╭╮╯╰╱╲╳";
1839
+ };
1840
+ type AnimatedTextSplit = "character" | "word";
1841
+ type AnimatedTextVariant = "decipher" | "matrix" | "reveal" | "terminal" | "typewriter";
1842
+ type AnimatedTextDirection = "center-out" | "end" | "random" | "start";
1843
+ type AnimatedTextRandomCharacterPreset = keyof typeof ANIMATED_TEXT_RANDOM_CHARACTER_PRESETS;
1844
+ type AnimatedTextProps = react.ComponentPropsWithoutRef<"p"> & {
1845
+ cursor?: boolean;
1846
+ cursorChar?: string;
1847
+ direction?: AnimatedTextDirection;
1848
+ duration?: number;
1849
+ randomCharacters?: string;
1850
+ randomCharactersPreset?: AnimatedTextRandomCharacterPreset;
1851
+ randomness?: number;
1852
+ splitBy?: AnimatedTextSplit;
1853
+ stagger?: number;
1854
+ text: string;
1855
+ variant?: AnimatedTextVariant;
1856
+ };
1857
+ declare const AnimatedText: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "ref"> & {
1858
+ cursor?: boolean;
1859
+ cursorChar?: string;
1860
+ direction?: AnimatedTextDirection;
1861
+ duration?: number;
1862
+ randomCharacters?: string;
1863
+ randomCharactersPreset?: AnimatedTextRandomCharacterPreset;
1864
+ randomness?: number;
1865
+ splitBy?: AnimatedTextSplit;
1866
+ stagger?: number;
1867
+ text: string;
1868
+ variant?: AnimatedTextVariant;
1869
+ } & react.RefAttributes<HTMLParagraphElement>>;
1870
+
790
1871
  type TruncatedTextProps = {
791
1872
  /**
792
1873
  * The text content to display
@@ -859,6 +1940,27 @@ type CalloutProps = {
859
1940
  };
860
1941
  declare function Callout({ children, className, icon, title, variant, }: CalloutProps): React.ReactNode;
861
1942
 
1943
+ declare const toneClasses: {
1944
+ amber: string;
1945
+ emerald: string;
1946
+ rose: string;
1947
+ sky: string;
1948
+ };
1949
+ type HighlightProps = {
1950
+ children: ReactNode;
1951
+ className?: string;
1952
+ tone?: keyof typeof toneClasses;
1953
+ };
1954
+ declare function Highlight({ children, className, tone, }: HighlightProps): ReactNode;
1955
+ type AnnotationProps = {
1956
+ annotation: ReactNode;
1957
+ children: ReactNode;
1958
+ className?: string;
1959
+ label?: string;
1960
+ tone?: keyof typeof toneClasses;
1961
+ };
1962
+ declare function Annotation({ annotation, children, className, label, tone, }: AnnotationProps): ReactNode;
1963
+
862
1964
  type ChecklistItem = {
863
1965
  description?: string;
864
1966
  id: string;
@@ -931,6 +2033,18 @@ declare namespace FAQ {
931
2033
  var Item: typeof FAQItem;
932
2034
  }
933
2035
 
2036
+ type FlashcardProps = {
2037
+ answer: ReactNode;
2038
+ category?: string;
2039
+ className?: string;
2040
+ defaultFlipped?: boolean;
2041
+ hint?: string;
2042
+ onFlipChange?: (flipped: boolean) => void;
2043
+ question: ReactNode;
2044
+ title?: string;
2045
+ };
2046
+ declare function Flashcard({ answer, category, className, defaultFlipped, hint, onFlipChange, question, title, }: FlashcardProps): ReactNode;
2047
+
934
2048
  type KeyConceptProps = {
935
2049
  children: ReactNode;
936
2050
  className?: string;
@@ -1012,6 +2126,25 @@ type QuizProps = {
1012
2126
  };
1013
2127
  declare function Quiz({ className, explanation, hint, onAnswer, options, question, }: QuizProps): React.ReactNode;
1014
2128
 
2129
+ declare const sizeClasses: {
2130
+ lg: string;
2131
+ md: string;
2132
+ sm: string;
2133
+ };
2134
+ type RatingProps = {
2135
+ allowClear?: boolean;
2136
+ className?: string;
2137
+ defaultValue?: number;
2138
+ label?: string;
2139
+ max?: number;
2140
+ onValueChange?: (value: number) => void;
2141
+ readOnly?: boolean;
2142
+ showValue?: boolean;
2143
+ size?: keyof typeof sizeClasses;
2144
+ value?: number;
2145
+ };
2146
+ declare function Rating({ allowClear, className, defaultValue, label, max, onValueChange, readOnly, showValue, size, value, }: RatingProps): ReactNode;
2147
+
1015
2148
  type StepProps = {
1016
2149
  children: ReactNode;
1017
2150
  className?: string;
@@ -1030,6 +2163,22 @@ declare namespace StepByStep {
1030
2163
  var Step: typeof Step;
1031
2164
  }
1032
2165
 
2166
+ type StepperStep = {
2167
+ description?: string;
2168
+ id: string;
2169
+ meta?: string;
2170
+ title: string;
2171
+ };
2172
+ type StepperProps = {
2173
+ className?: string;
2174
+ currentStep: number;
2175
+ onStepClick?: (step: StepperStep, stepIndex: number) => void;
2176
+ orientation?: "horizontal" | "vertical";
2177
+ showNumbers?: boolean;
2178
+ steps: StepperStep[];
2179
+ };
2180
+ declare function Stepper({ className, currentStep, onStepClick, orientation, showNumbers, steps, }: StepperProps): ReactNode;
2181
+
1033
2182
  type TabsProps = {
1034
2183
  children: ReactNode;
1035
2184
  className?: string;
@@ -1249,6 +2398,23 @@ type TutorialMDXProps = {
1249
2398
  declare function TutorialMDXImpl({ className, content, }: TutorialMDXProps): React.ReactNode;
1250
2399
  declare const TutorialMDX: react.MemoExoticComponent<typeof TutorialMDXImpl>;
1251
2400
 
2401
+ type TourStep = {
2402
+ badge?: string;
2403
+ description: ReactNode;
2404
+ hint?: ReactNode;
2405
+ id: string;
2406
+ media?: ReactNode;
2407
+ title: string;
2408
+ };
2409
+ type TourProps = {
2410
+ className?: string;
2411
+ defaultStep?: number;
2412
+ onComplete?: () => void;
2413
+ onStepChange?: (stepIndex: number, step: TourStep) => void;
2414
+ steps: TourStep[];
2415
+ };
2416
+ declare function Tour({ className, defaultStep, onComplete, onStepChange, steps, }: TourProps): ReactNode;
2417
+
1252
2418
  type CompletionDialogProps = {
1253
2419
  cancelLabel?: string;
1254
2420
  cancelShortcut?: string;
@@ -1876,4 +3042,4 @@ declare function useHorizontalScroll(): UseHorizontalScrollReturn;
1876
3042
 
1877
3043
  declare function cn(...inputs: ClassValue[]): string;
1878
3044
 
1879
- export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AreaChart, AspectRatio, Avatar, AvatarFallback, AvatarImage, Badge, type BadgeProps, BarChart, BeforeAfter, type BeforeAfterProps, BlogCard, Breadcrumb, type BreadcrumbItem, Button, type ButtonProps, Calendar, type CalendarProps, Callout, type CalloutProps, type CalloutVariant, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, CategoryFilter, Checkbox, Checklist, type ChecklistItem, type ChecklistProps, CodeBlock, CodePlayground, type CodePlaygroundProps, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, CommonMistake, type CommonMistakeProps, Comparison, type ComparisonProps, CompletionDialog, type CompletionDialogProps, Content, ContentCard, ContentIntro, type ContentIntroLabels, type ContentIntroProps, type ContentIntroSection, type ContentMeta, type ContentProgress, type ContentSection, type ContentSectionMinimal, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CookieConsent, type CookieConsentProps, type CopyStatus, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, type DifficultyLevel, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Exercise, type ExerciseProps, FAQ, FAQItem, type FAQItemProps, type FAQProps, FileTree, type FileTreeProps, FilterBar, type FilterBarLabels, type FilterBarProps, type FilterOption, type FilterUpdates, FloatingActionButton, type FloatingActionButtonProps, FlowControls, type FlowControlsProps, FlowDiagram, type FlowDiagramEdge, type FlowDiagramNode, type FlowDiagramProps, FlowErrorBoundary, FlowFullscreen, type FlowFullscreenProps, Glossary, type GlossaryProps, HorizontalScrollRow, type HorizontalScrollRowProps, HoverCard, HoverCardContent, HoverCardTrigger, InlineInput, type InlineInputProps, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, KeyConcept, type KeyConceptProps, type KeyboardShortcut, KeyboardShortcutsHelp, type KeyboardShortcutsHelpProps, LANGUAGE_NAMES, Label, LangProvider, LearningObjectives, type LearningObjectivesProps, LineChart, MDXContent, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, type ModelInfo, ModelSelector, type ModelSelectorProps, type NavItem, NavbarSaas, type NavbarSaasProps, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, Pagination, type PaginationProps, type PlatformConfig, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Prerequisites, type PrerequisitesProps, ProTip, type ProTipProps, type ProTipVariant, ProfileSection, ProgressBar, type ProgressBarProps, Quiz, type QuizOption, type QuizProps, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, SearchBar, SearchDialog, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, ShareDialog, type ShareDialogLabels, type SharePlatform as ShareDialogPlatform, type ShareDialogProps, type SharePlatform$1 as SharePlatform, type SharePlatformConfig, ShareSection, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, type SidebarItem, SidebarProvider, type SidebarSection, SidebarToggle, type SidebarToggleProps, SimpleTerminal, type SimpleTerminalProps, Skeleton, Slider, Slideshow, type SlideshowLabels, type SlideshowProps, type SlideshowSection, SocialFAB, type SocialFabActionConfig, type SocialFabLabels, type SocialFabProps, Spinner, type SpinnerProps, Step, StepByStep, type StepByStepProps, StepNavigation, type StepNavigationProps, type StepProps, Summary, type SummaryProps, Switch, TLDRSection, type TOCSection, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableOfContents, TableOfContentsPanel, type TableOfContentsPanelProps, TableRow, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Terminal, type TerminalLine, type TerminalProps, Textarea, type TextareaProps, ThemeProvider, ThemeToggle, ThinkingBlock, type ThinkingBlockProps, Toast, ToastAction, ToastClose, ToastDescription, type ToastProps, ToastTitle, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TruncatedText, type TruncatedTextProps, TutorialCard, type TutorialCardLabels, type TutorialCardMeta, type TutorialCardProgress, type TutorialCardProps, TutorialComplete, type TutorialCompleteLabels, type TutorialCompleteProps, type TutorialCompleteRelatedContent, type TutorialCompleteSection, TutorialFilters, type TutorialFiltersLabels, type TutorialFiltersProps, TutorialIntroContent, type TutorialIntroContentProps, TutorialMDX, type TutorialMDXProps, type SupportedLanguage as UISupportedLanguage, type UseFlowDiagramOptions, type UseFlowDiagramReturn, VideoEmbed, type VideoEmbedProps, type ViewOption, ViewSwitcher, type ViewSwitcherProps, alertVariants, badgeVariants, buttonVariants, cn, cookieConsentVariants, getOtherLanguage, mdxComponents, navigationMenuTriggerStyle, toggleVariants, useDebounce, useFlowDiagram, useHorizontalScroll, useMobile, useSidebar, useSocialFab };
3045
+ export { AIChatInput, type AIChatInputProps, AIMessageBubble, type AIMessageBubbleProps, AISourceCitation, type AISourceCitationProps, AIStreamingText, type AIStreamingTextProps, AIToolCallDisplay, type AIToolCallDisplayProps, type AIToolCallStatus, Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, ActivityHeatmap, type ActivityHeatmapItem, type ActivityHeatmapProps, ActivityLog, type ActivityLogItem, type ActivityLogProps, type ActivityLogTone, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AnimatedText, type AnimatedTextProps, Annotation, type AnnotationProps, AreaChart, AspectRatio, Avatar, AvatarFallback, AvatarGroup, type AvatarGroupItem, type AvatarGroupProps, AvatarImage, Badge, type BadgeProps, BarChart, BeforeAfter, type BeforeAfterProps, BlogCard, BorderBeam, type BorderBeamProps, Breadcrumb, type BreadcrumbItem, Button, type ButtonProps, Calendar, type CalendarProps, Callout, type CalloutProps, type CalloutVariant, CandlestickChart, type CandlestickChartProps, type CandlestickDatum, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, CategoryFilter, Checkbox, Checklist, type ChecklistItem, type ChecklistProps, CodeBlock, CodePlayground, type CodePlaygroundProps, Collapsible, CollapsibleContent, CollapsibleTrigger, Combobox, type ComboboxOption, type ComboboxProps, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, CommonMistake, type CommonMistakeProps, Comparison, type ComparisonProps, CompletionDialog, type CompletionDialogProps, Content, ContentCard, ContentIntro, type ContentIntroLabels, type ContentIntroProps, type ContentIntroSection, type ContentMeta, type ContentProgress, type ContentSection, type ContentSectionMinimal, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CookieConsent, type CookieConsentProps, type CopyStatus, CountdownTimer, type CountdownTimerProps, CreditBadge, type CreditBadgeProps, type CreditBadgeStatus, DataList, DataListItem, type DataListItemProps, DataListLabel, type DataListProps, DataListValue, DataTableComponent as DataTable, type DataTableFilter, type DataTableFilterOption, type DataTableProps, DatePicker, type DatePickerProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, type DifficultyLevel, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Exercise, type ExerciseProps, FAQ, FAQItem, type FAQItemProps, type FAQProps, FileTree, type FileTreeProps, FileUpload, type FileUploadProps, FilterBar, type FilterBarLabels, type FilterBarProps, type FilterOption, type FilterUpdates, Flashcard, type FlashcardProps, FloatingActionButton, type FloatingActionButtonProps, FlowControls, type FlowControlsProps, FlowDiagram, type FlowDiagramEdge, type FlowDiagramNode, type FlowDiagramProps, FlowErrorBoundary, FlowFullscreen, type FlowFullscreenProps, Glossary, type GlossaryProps, Highlight, type HighlightProps, HorizontalScrollRow, type HorizontalScrollRowProps, HoverCard, HoverCardContent, HoverCardTrigger, InlineInput, type InlineInputProps, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, KeyConcept, type KeyConceptProps, type KeyboardShortcut, KeyboardShortcutsHelp, type KeyboardShortcutsHelpProps, LANGUAGE_NAMES, Label, LangProvider, LearningObjectives, type LearningObjectivesProps, LineChart, LiveFeed, type LiveFeedEvent, type LiveFeedProps, MDXContent, MarketTreemap, type MarketTreemapItem, type MarketTreemapProps, Marquee, type MarqueeProps, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, MetricGauge, type MetricGaugeProps, type MetricGaugeThreshold, type ModelInfo, ModelSelector, type ModelSelectorProps, type NavItem, NavbarSaas, type NavbarSaasProps, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, NumberInput, type NumberInputProps, NumberTicker, type NumberTickerProps, OrderBook, type OrderBookLevel, type OrderBookProps, Pagination, type PaginationProps, PasswordInput, type PasswordInputProps, PlanBadge, type PlanBadgeProps, type PlanBadgeState, type PlanBadgeTier, type PlatformConfig, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Prerequisites, type PrerequisitesProps, ProTip, type ProTipProps, type ProTipVariant, ProfileSection, ProgressBar, type ProgressBarProps, Quiz, type QuizOption, type QuizProps, RadioGroup, RadioGroupItem, Rating, type RatingProps, ResizableHandle, ResizablePanel, ResizablePanelGroup, RoleBadge, type RoleBadgeProps, type RoleBadgeRole, ScopeSelector, type ScopeSelectorNode, type ScopeSelectorProps, type ScopeSelectorSelection, ScrollArea, ScrollBar, SearchBar, SearchDialog, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, SeverityBadge, type SeverityBadgeLevel, type SeverityBadgeProps, ShareDialog, type ShareDialogLabels, type SharePlatform as ShareDialogPlatform, type ShareDialogProps, type SharePlatform$1 as SharePlatform, type SharePlatformConfig, ShareSection, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, type SidebarItem, SidebarProvider, type SidebarSection, SidebarToggle, type SidebarToggleProps, SimpleTerminal, type SimpleTerminalProps, Skeleton, Slider, Slideshow, type SlideshowLabels, type SlideshowProps, type SlideshowSection, SocialFAB, type SocialFabActionConfig, type SocialFabLabels, type SocialFabProps, SparklineGrid, type SparklineGridItem, type SparklineGridProps, Spinner, type SpinnerProps, StatCard, type StatCardProps, StatusBoard, type StatusBoardItem, type StatusBoardProps, type StatusBoardStatus, StatusIndicator, type StatusIndicatorProps, Step, StepByStep, type StepByStepProps, StepNavigation, type StepNavigationProps, type StepProps, Stepper, type StepperProps, type StepperStep, SubscriptionCard, type SubscriptionCardProps, type SubscriptionCardStatus, Summary, type SummaryProps, Switch, TLDRSection, type TOCSection, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableOfContents, TableOfContentsPanel, type TableOfContentsPanelProps, TableRow, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Terminal, type TerminalLine, type TerminalProps, Textarea, type TextareaProps, ThemeProvider, ThemeToggle, ThinkingBlock, type ThinkingBlockProps, TickerTape, type TickerTapeItem, type TickerTapeProps, Toast, ToastAction, ToastClose, ToastDescription, type ToastProps, ToastTitle, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, Tour, type TourProps, type TourStep, TruncatedText, type TruncatedTextProps, TutorialCard, type TutorialCardLabels, type TutorialCardMeta, type TutorialCardProgress, type TutorialCardProps, TutorialComplete, type TutorialCompleteLabels, type TutorialCompleteProps, type TutorialCompleteRelatedContent, type TutorialCompleteSection, TutorialFilters, type TutorialFiltersLabels, type TutorialFiltersProps, TutorialIntroContent, type TutorialIntroContentProps, TutorialMDX, type TutorialMDXProps, type SupportedLanguage as UISupportedLanguage, UnicodeSpinner, type UnicodeSpinnerAnimation, type UnicodeSpinnerProps, UsageBreakdown, type UsageBreakdownItem, type UsageBreakdownProps, type UsageBreakdownTone, type UseFlowDiagramOptions, type UseFlowDiagramReturn, VideoEmbed, type VideoEmbedProps, type ViewOption, ViewSwitcher, type ViewSwitcherProps, WalletCard, type WalletCardProps, Watchlist, type WatchlistItem, type WatchlistProps, WorldClockBar, type WorldClockBarProps, type WorldClockBarZone, alertVariants, avatarGroupVariants, avatarItemVariants, badgeVariants, buttonVariants, cn, cookieConsentVariants, dataListItemVariants, dataListVariants, dotVariants, getOtherLanguage, mdxComponents, navigationMenuTriggerStyle, severityBadgeVariants, statCardVariants, statusIndicatorVariants, toggleVariants, useDebounce, useFlowDiagram, useHorizontalScroll, useMobile, useSidebar, useSocialFab };