@vllnt/ui 0.2.0 → 0.2.1-canary.9c473e0

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 (58) hide show
  1. package/CHANGELOG.md +12 -1
  2. package/README.md +27 -12
  3. package/dist/components/activity-log/activity-log.js +1 -0
  4. package/dist/components/anchor-port/anchor-port.js +51 -0
  5. package/dist/components/anchor-port/index.js +4 -0
  6. package/dist/components/animated-text/animated-text.js +1 -0
  7. package/dist/components/bottom-bar/bottom-bar.js +25 -0
  8. package/dist/components/bottom-bar/index.js +4 -0
  9. package/dist/components/canvas-shell/canvas-foundation-demo.js +183 -0
  10. package/dist/components/canvas-shell/canvas-shell-route-config.js +0 -0
  11. package/dist/components/canvas-shell/canvas-shell.js +261 -0
  12. package/dist/components/canvas-shell/index.js +4 -0
  13. package/dist/components/canvas-view/canvas-view.js +461 -0
  14. package/dist/components/canvas-view/index.js +6 -0
  15. package/dist/components/chart/area-chart.js +1 -0
  16. package/dist/components/chart/line-chart.js +1 -0
  17. package/dist/components/chat-dock-section/chat-dock-section.js +56 -0
  18. package/dist/components/chat-dock-section/index.js +6 -0
  19. package/dist/components/connector-edge/connector-edge.js +66 -0
  20. package/dist/components/connector-edge/index.js +6 -0
  21. package/dist/components/data-list/data-list.js +1 -0
  22. package/dist/components/edge-label/edge-label.js +26 -0
  23. package/dist/components/edge-label/index.js +4 -0
  24. package/dist/components/form/form.js +263 -0
  25. package/dist/components/form/index.js +16 -0
  26. package/dist/components/glass-panel/glass-panel.js +21 -0
  27. package/dist/components/glass-panel/index.js +4 -0
  28. package/dist/components/group-hull/group-hull.js +29 -0
  29. package/dist/components/group-hull/index.js +4 -0
  30. package/dist/components/index.js +88 -0
  31. package/dist/components/left-rail/index.js +4 -0
  32. package/dist/components/left-rail/left-rail.js +25 -0
  33. package/dist/components/mini-map-panel/index.js +6 -0
  34. package/dist/components/mini-map-panel/mini-map-panel.js +74 -0
  35. package/dist/components/multi-select/index.js +6 -0
  36. package/dist/components/multi-select/multi-select.js +258 -0
  37. package/dist/components/object-card/index.js +6 -0
  38. package/dist/components/object-card/object-card.js +126 -0
  39. package/dist/components/object-handle/index.js +4 -0
  40. package/dist/components/object-handle/object-handle.js +38 -0
  41. package/dist/components/overview-board/index.js +8 -0
  42. package/dist/components/overview-board/overview-board.js +127 -0
  43. package/dist/components/right-dock/index.js +4 -0
  44. package/dist/components/right-dock/right-dock.js +28 -0
  45. package/dist/components/segmented-control/index.js +12 -0
  46. package/dist/components/segmented-control/segmented-control.js +61 -0
  47. package/dist/components/spinner/unicode-spinner.js +1 -0
  48. package/dist/components/tags-input/index.js +4 -0
  49. package/dist/components/tags-input/tags-input.js +178 -0
  50. package/dist/components/top-bar/index.js +4 -0
  51. package/dist/components/top-bar/top-bar.js +31 -0
  52. package/dist/components/usage-breakdown/usage-breakdown.js +1 -0
  53. package/dist/components/workspace-switcher/index.js +6 -0
  54. package/dist/components/workspace-switcher/workspace-switcher.js +61 -0
  55. package/dist/components/zoom-hud/index.js +4 -0
  56. package/dist/components/zoom-hud/zoom-hud.js +61 -0
  57. package/dist/index.d.ts +455 -5
  58. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -10,13 +10,14 @@ import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
10
10
  import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
11
11
  import * as LabelPrimitive from '@radix-ui/react-label';
12
12
  import * as SwitchPrimitives from '@radix-ui/react-switch';
13
+ import * as _radix_ui_react_slot from '@radix-ui/react-slot';
14
+ import * as ToggleGroupPrimitive from '@radix-ui/react-toggle-group';
13
15
  import { ToasterProps } from 'sonner';
14
16
  export { toast } from 'sonner';
15
17
  import * as SelectPrimitive from '@radix-ui/react-select';
16
18
  import * as RadioGroupPrimitive from '@radix-ui/react-radio-group';
17
19
  import * as SliderPrimitive from '@radix-ui/react-slider';
18
20
  import * as TogglePrimitive from '@radix-ui/react-toggle';
19
- import * as ToggleGroupPrimitive from '@radix-ui/react-toggle-group';
20
21
  import * as input_otp from 'input-otp';
21
22
  import * as TooltipPrimitive from '@radix-ui/react-tooltip';
22
23
  import * as PopoverPrimitive from '@radix-ui/react-popover';
@@ -337,6 +338,97 @@ declare const PasswordInput: react.ForwardRefExoticComponent<Omit<Omit<react.Det
337
338
 
338
339
  declare const Switch: react.ForwardRefExoticComponent<Omit<SwitchPrimitives.SwitchProps & react.RefAttributes<HTMLButtonElement>, "ref"> & react.RefAttributes<HTMLButtonElement>>;
339
340
 
341
+ type FormProps = react.ComponentPropsWithoutRef<"form"> & {
342
+ controlId?: string;
343
+ descriptionId?: string;
344
+ disabled?: boolean;
345
+ invalid?: boolean;
346
+ messageId?: string;
347
+ required?: boolean;
348
+ };
349
+ declare const Form: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.FormHTMLAttributes<HTMLFormElement>, HTMLFormElement>, "ref"> & {
350
+ controlId?: string;
351
+ descriptionId?: string;
352
+ disabled?: boolean;
353
+ invalid?: boolean;
354
+ messageId?: string;
355
+ required?: boolean;
356
+ } & react.RefAttributes<HTMLFormElement>>;
357
+ declare const FormItem: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
358
+ disabled?: boolean;
359
+ invalid?: boolean;
360
+ required?: boolean;
361
+ } & react.RefAttributes<HTMLDivElement>>;
362
+ declare const FormLabel: react.ForwardRefExoticComponent<Omit<Omit<LabelPrimitive.LabelProps & react.RefAttributes<HTMLLabelElement>, "ref"> & class_variance_authority.VariantProps<(props?: class_variance_authority_types.ClassProp | undefined) => string> & react.RefAttributes<HTMLLabelElement>, "ref"> & react.RefAttributes<HTMLLabelElement>>;
363
+ declare const FormControl: react.ForwardRefExoticComponent<Omit<_radix_ui_react_slot.SlotProps & react.RefAttributes<HTMLElement>, "ref"> & {
364
+ disabled?: boolean;
365
+ required?: boolean;
366
+ } & react.RefAttributes<HTMLElement>>;
367
+ declare const FormDescription: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "ref"> & react.RefAttributes<HTMLParagraphElement>>;
368
+ declare const FormMessage: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "ref"> & react.RefAttributes<HTMLParagraphElement>>;
369
+
370
+ type MultiSelectOption = {
371
+ disabled?: boolean;
372
+ label: string;
373
+ value: string;
374
+ };
375
+ type MultiSelectProps = Omit<react.ButtonHTMLAttributes<HTMLButtonElement>, "defaultValue" | "onChange" | "value"> & {
376
+ defaultValue?: string[];
377
+ emptyText?: string;
378
+ onOpenChange?: (open: boolean) => void;
379
+ onValueChange?: (value: string[]) => void;
380
+ options: MultiSelectOption[];
381
+ placeholder?: string;
382
+ searchable?: boolean;
383
+ searchPlaceholder?: string;
384
+ value?: string[];
385
+ };
386
+ declare const MultiSelect: react.ForwardRefExoticComponent<Omit<react.ButtonHTMLAttributes<HTMLButtonElement>, "defaultValue" | "onChange" | "value"> & {
387
+ defaultValue?: string[];
388
+ emptyText?: string;
389
+ onOpenChange?: (open: boolean) => void;
390
+ onValueChange?: (value: string[]) => void;
391
+ options: MultiSelectOption[];
392
+ placeholder?: string;
393
+ searchable?: boolean;
394
+ searchPlaceholder?: string;
395
+ value?: string[];
396
+ } & react.RefAttributes<HTMLButtonElement>>;
397
+
398
+ type TagsInputProps = Omit<react.ComponentPropsWithoutRef<"input">, "defaultValue" | "onChange" | "value"> & {
399
+ defaultValue?: string[];
400
+ onValueChange?: (value: string[]) => void;
401
+ value?: string[];
402
+ };
403
+ declare const TagsInput: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTMLProps<react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "defaultValue" | "onChange" | "value"> & {
404
+ defaultValue?: string[];
405
+ onValueChange?: (value: string[]) => void;
406
+ value?: string[];
407
+ } & react.RefAttributes<HTMLInputElement>>;
408
+
409
+ declare const segmentedControlVariants: (props?: ({
410
+ size?: "default" | "lg" | "sm" | null | undefined;
411
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
412
+ declare const segmentedControlItemVariants: (props?: ({
413
+ size?: "default" | "lg" | "sm" | null | undefined;
414
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
415
+ type SegmentedControlProps = Omit<react.ComponentPropsWithoutRef<typeof ToggleGroupPrimitive.Root>, "defaultValue" | "onValueChange" | "type" | "value"> & VariantProps<typeof segmentedControlVariants> & {
416
+ defaultValue?: string;
417
+ onValueChange?: (value: string) => void;
418
+ value?: string;
419
+ };
420
+ type SegmentedControlItemProps = react.ComponentPropsWithoutRef<typeof ToggleGroupPrimitive.Item> & VariantProps<typeof segmentedControlItemVariants>;
421
+ declare const SegmentedControl: react.ForwardRefExoticComponent<Omit<Omit<ToggleGroupPrimitive.ToggleGroupSingleProps & react.RefAttributes<HTMLDivElement>, "ref"> | Omit<ToggleGroupPrimitive.ToggleGroupMultipleProps & react.RefAttributes<HTMLDivElement>, "ref">, "defaultValue" | "type" | "value" | "onValueChange"> & VariantProps<(props?: ({
422
+ size?: "default" | "lg" | "sm" | null | undefined;
423
+ } & class_variance_authority_types.ClassProp) | undefined) => string> & {
424
+ defaultValue?: string;
425
+ onValueChange?: (value: string) => void;
426
+ value?: string;
427
+ } & react.RefAttributes<HTMLDivElement>>;
428
+ declare const SegmentedControlItem: react.ForwardRefExoticComponent<Omit<ToggleGroupPrimitive.ToggleGroupItemProps & react.RefAttributes<HTMLButtonElement>, "ref"> & VariantProps<(props?: ({
429
+ size?: "default" | "lg" | "sm" | null | undefined;
430
+ } & class_variance_authority_types.ClassProp) | undefined) => string> & react.RefAttributes<HTMLButtonElement>>;
431
+
340
432
  type ToastProps = {
341
433
  variant?: "default" | "destructive";
342
434
  } & react.HTMLAttributes<HTMLDivElement>;
@@ -1265,6 +1357,192 @@ type MDXContentProps = {
1265
1357
  };
1266
1358
  declare function MDXContent({ components, content, enableMDX, }: MDXContentProps): Promise<react_jsx_runtime.JSX.Element>;
1267
1359
 
1360
+ type CanvasShellInsets = {
1361
+ bottom?: number | string;
1362
+ left?: number | string;
1363
+ right?: number | string;
1364
+ top?: number | string;
1365
+ };
1366
+ type CanvasShellRouteConfig = {
1367
+ bottomBar?: ReactNode;
1368
+ center: ReactNode;
1369
+ contentPadding?: CanvasShellInsets;
1370
+ leftBar?: ReactNode;
1371
+ rightBar?: ReactNode;
1372
+ topBar?: ReactNode;
1373
+ };
1374
+
1375
+ type CanvasShellProps = React.ComponentPropsWithoutRef<"section"> & {
1376
+ bottomBar?: ReactNode;
1377
+ bottomSlot?: ReactNode;
1378
+ children?: ReactNode;
1379
+ chromeInset?: number | string;
1380
+ contentPadding?: CanvasShellInsets;
1381
+ leftBar?: ReactNode;
1382
+ leftRail?: ReactNode;
1383
+ rightBar?: ReactNode;
1384
+ rightDock?: ReactNode;
1385
+ topBar?: ReactNode;
1386
+ };
1387
+ declare const CanvasShell: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
1388
+ bottomBar?: ReactNode;
1389
+ bottomSlot?: ReactNode;
1390
+ children?: ReactNode;
1391
+ chromeInset?: number | string;
1392
+ contentPadding?: CanvasShellInsets;
1393
+ leftBar?: ReactNode;
1394
+ leftRail?: ReactNode;
1395
+ rightBar?: ReactNode;
1396
+ rightDock?: ReactNode;
1397
+ topBar?: ReactNode;
1398
+ } & react.RefAttributes<HTMLElement>>;
1399
+
1400
+ type CanvasViewport = {
1401
+ x: number;
1402
+ y: number;
1403
+ zoom: number;
1404
+ };
1405
+ type CanvasViewHandle = {
1406
+ resetViewport: () => void;
1407
+ setViewport: (viewport: CanvasViewport) => void;
1408
+ };
1409
+ type CanvasViewProps = Omit<React.ComponentPropsWithoutRef<"div">, "onScroll"> & {
1410
+ defaultViewport?: CanvasViewport;
1411
+ maxZoom?: number;
1412
+ minZoom?: number;
1413
+ onViewportChange?: (viewport: CanvasViewport) => void;
1414
+ overlay?: React.ReactNode;
1415
+ zoomStep?: number;
1416
+ };
1417
+ declare const CanvasView: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref">, "onScroll"> & {
1418
+ defaultViewport?: CanvasViewport;
1419
+ maxZoom?: number;
1420
+ minZoom?: number;
1421
+ onViewportChange?: (viewport: CanvasViewport) => void;
1422
+ overlay?: React.ReactNode;
1423
+ zoomStep?: number;
1424
+ } & react.RefAttributes<CanvasViewHandle>>;
1425
+
1426
+ type BottomBarProps = React.ComponentPropsWithoutRef<"div"> & {
1427
+ center?: ReactNode;
1428
+ leading?: ReactNode;
1429
+ trailing?: ReactNode;
1430
+ };
1431
+ declare const BottomBar: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
1432
+ center?: ReactNode;
1433
+ leading?: ReactNode;
1434
+ trailing?: ReactNode;
1435
+ } & react.RefAttributes<HTMLDivElement>>;
1436
+
1437
+ type ChatDockMessage = {
1438
+ body: ReactNode;
1439
+ id: string;
1440
+ speaker: ReactNode;
1441
+ };
1442
+ type ChatDockSectionProps = React.ComponentPropsWithoutRef<"section"> & {
1443
+ composerPlaceholder?: string;
1444
+ contextLabel?: ReactNode;
1445
+ messages: ChatDockMessage[];
1446
+ title?: ReactNode;
1447
+ };
1448
+ declare const ChatDockSection: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
1449
+ composerPlaceholder?: string;
1450
+ contextLabel?: ReactNode;
1451
+ messages: ChatDockMessage[];
1452
+ title?: ReactNode;
1453
+ } & react.RefAttributes<HTMLElement>>;
1454
+
1455
+ type GlassPanelProps = React.ComponentPropsWithoutRef<"div">;
1456
+ declare const GlassPanel: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
1457
+
1458
+ type LeftRailProps = React.ComponentPropsWithoutRef<"aside"> & {
1459
+ footer?: ReactNode;
1460
+ title?: ReactNode;
1461
+ };
1462
+ declare const LeftRail: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
1463
+ footer?: ReactNode;
1464
+ title?: ReactNode;
1465
+ } & react.RefAttributes<HTMLElement>>;
1466
+
1467
+ type MiniMapMarker = {
1468
+ id: string;
1469
+ label?: string;
1470
+ x: number;
1471
+ y: number;
1472
+ };
1473
+ type MiniMapPanelProps = React.ComponentPropsWithoutRef<"div"> & {
1474
+ markers?: MiniMapMarker[];
1475
+ title?: string;
1476
+ viewport: {
1477
+ height: number;
1478
+ width: number;
1479
+ x: number;
1480
+ y: number;
1481
+ zoom: number;
1482
+ };
1483
+ world: {
1484
+ height: number;
1485
+ width: number;
1486
+ };
1487
+ };
1488
+ declare const MiniMapPanel: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
1489
+ markers?: MiniMapMarker[];
1490
+ title?: string;
1491
+ viewport: {
1492
+ height: number;
1493
+ width: number;
1494
+ x: number;
1495
+ y: number;
1496
+ zoom: number;
1497
+ };
1498
+ world: {
1499
+ height: number;
1500
+ width: number;
1501
+ };
1502
+ } & react.RefAttributes<HTMLDivElement>>;
1503
+
1504
+ type OverviewCardTone = "danger" | "default" | "warning";
1505
+ type OverviewCardProps = React.ComponentPropsWithoutRef<"section"> & {
1506
+ ctaLabel?: ReactNode;
1507
+ description: ReactNode;
1508
+ handleCtaClick?: () => void;
1509
+ heading: ReactNode;
1510
+ icon?: ReactNode;
1511
+ metric: ReactNode;
1512
+ tone?: OverviewCardTone;
1513
+ };
1514
+ declare const OverviewCard: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
1515
+ ctaLabel?: ReactNode;
1516
+ description: ReactNode;
1517
+ handleCtaClick?: () => void;
1518
+ heading: ReactNode;
1519
+ icon?: ReactNode;
1520
+ metric: ReactNode;
1521
+ tone?: OverviewCardTone;
1522
+ } & react.RefAttributes<HTMLElement>>;
1523
+ type OverviewBoardItem = {
1524
+ ctaLabel?: ReactNode;
1525
+ description: ReactNode;
1526
+ handleCtaClick?: () => void;
1527
+ heading: ReactNode;
1528
+ icon?: ReactNode;
1529
+ id: string;
1530
+ metric: ReactNode;
1531
+ tone?: OverviewCardTone;
1532
+ };
1533
+ type OverviewBoardProps = React.ComponentPropsWithoutRef<"section"> & {
1534
+ eyebrow?: ReactNode;
1535
+ heading: ReactNode;
1536
+ items: OverviewBoardItem[];
1537
+ subtitle?: ReactNode;
1538
+ };
1539
+ declare const OverviewBoard: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
1540
+ eyebrow?: ReactNode;
1541
+ heading: ReactNode;
1542
+ items: OverviewBoardItem[];
1543
+ subtitle?: ReactNode;
1544
+ } & react.RefAttributes<HTMLElement>>;
1545
+
1268
1546
  type NavItem = {
1269
1547
  href: string;
1270
1548
  title: string;
@@ -1279,6 +1557,17 @@ declare function NavbarSaas({ brand, navItems, rightSlot, showMobileMenu, }: Nav
1279
1557
 
1280
1558
  declare function useMobile(): boolean;
1281
1559
 
1560
+ type RightDockProps = React.ComponentPropsWithoutRef<"aside"> & {
1561
+ footer?: ReactNode;
1562
+ header?: ReactNode;
1563
+ title?: ReactNode;
1564
+ };
1565
+ declare const RightDock: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
1566
+ footer?: ReactNode;
1567
+ header?: ReactNode;
1568
+ title?: ReactNode;
1569
+ } & react.RefAttributes<HTMLElement>>;
1570
+
1282
1571
  type SidebarItem = {
1283
1572
  href: string;
1284
1573
  title: string;
@@ -1311,6 +1600,32 @@ type TableOfContentsProps = {
1311
1600
  };
1312
1601
  declare function TableOfContents({ sections }: TableOfContentsProps): react_jsx_runtime.JSX.Element | null;
1313
1602
 
1603
+ type TopBarProps = React.ComponentPropsWithoutRef<"header"> & {
1604
+ leading?: ReactNode;
1605
+ subtitle?: ReactNode;
1606
+ title?: ReactNode;
1607
+ trailing?: ReactNode;
1608
+ };
1609
+ declare const TopBar: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
1610
+ leading?: ReactNode;
1611
+ subtitle?: ReactNode;
1612
+ title?: ReactNode;
1613
+ trailing?: ReactNode;
1614
+ } & react.RefAttributes<HTMLElement>>;
1615
+
1616
+ type ZoomHUDProps = React.ComponentPropsWithoutRef<"div"> & {
1617
+ onReset?: () => void;
1618
+ onZoomIn?: () => void;
1619
+ onZoomOut?: () => void;
1620
+ zoom: number;
1621
+ };
1622
+ declare const ZoomHUD: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
1623
+ onReset?: () => void;
1624
+ onZoomIn?: () => void;
1625
+ onZoomOut?: () => void;
1626
+ zoom: number;
1627
+ } & react.RefAttributes<HTMLDivElement>>;
1628
+
1314
1629
  type ActivityLogTone = "danger" | "default" | "success" | "warning";
1315
1630
  type ActivityLogItem = {
1316
1631
  action: string;
@@ -1351,7 +1666,7 @@ type ContentCardPost = {
1351
1666
  title: string;
1352
1667
  updatedDate?: string;
1353
1668
  };
1354
- type ContentCardProps = {
1669
+ type ContentCardProps$1 = {
1355
1670
  formatDate?: (date: string, lang: string) => string;
1356
1671
  getDictValue?: (dict: Record<string, unknown>, path: string) => string;
1357
1672
  href: string;
@@ -1363,8 +1678,8 @@ type ContentCardProps = {
1363
1678
  showReadMore?: boolean;
1364
1679
  updatedLabel?: string;
1365
1680
  };
1366
- declare function ContentCard({ formatDate, href, lang, post, readMoreLabel, showBadge, showDate, showReadMore, updatedLabel, }: ContentCardProps): react_jsx_runtime.JSX.Element;
1367
- declare const BlogCard: typeof ContentCard;
1681
+ declare function ContentCard$1({ formatDate, href, lang, post, readMoreLabel, showBadge, showDate, showReadMore, updatedLabel, }: ContentCardProps$1): react_jsx_runtime.JSX.Element;
1682
+ declare const BlogCard: typeof ContentCard$1;
1368
1683
 
1369
1684
  type CategoryFilterProps = {
1370
1685
  categories: string[];
@@ -2092,6 +2407,39 @@ type ProgressBarProps = {
2092
2407
  };
2093
2408
  declare function ProgressBar({ className, completedLabel, currentLabel, isComplete, isLoading, max, showLabels, value, }: ProgressBarProps): React.ReactNode;
2094
2409
 
2410
+ type ContentCardProgress = {
2411
+ completedCount: number;
2412
+ totalSections: number;
2413
+ };
2414
+ type ContentCardProps = {
2415
+ /** Badge label for difficulty/category */
2416
+ badgeLabel: string;
2417
+ /** Badge variant */
2418
+ badgeVariant?: "default" | "destructive" | "outline" | "secondary";
2419
+ /** Card description */
2420
+ description: string;
2421
+ /** Function to get progress from storage */
2422
+ getProgress?: () => ContentCardProgress | null;
2423
+ /** Href for the card link */
2424
+ href: string;
2425
+ /** Link component to use (e.g., Next.js Link) */
2426
+ linkComponent?: React.ComponentType<{
2427
+ children: ReactNode;
2428
+ className?: string;
2429
+ href: string;
2430
+ }>;
2431
+ /** Metadata items (e.g., "30 min", "10 sections") */
2432
+ metadata?: string[];
2433
+ /** Progress completed label (e.g., "completed") */
2434
+ progressLabel?: string;
2435
+ /** Tags to display */
2436
+ tags?: string[];
2437
+ /** Card title */
2438
+ title: string;
2439
+ };
2440
+ declare function ContentCardImpl({ badgeLabel, badgeVariant, description, getProgress, href, linkComponent: LinkComponent, metadata, progressLabel, tags, title, }: ContentCardProps): React.ReactNode;
2441
+ declare const ContentCard: react.MemoExoticComponent<typeof ContentCardImpl>;
2442
+
2095
2443
  type ProTipVariant = "advanced" | "best-practice" | "expert" | "gotcha" | "performance" | "tip";
2096
2444
  type ProTipProps = {
2097
2445
  children: ReactNode;
@@ -2705,6 +3053,24 @@ type ViewSwitcherProps = {
2705
3053
  };
2706
3054
  declare const ViewSwitcher: react.NamedExoticComponent<ViewSwitcherProps>;
2707
3055
 
3056
+ type WorkspaceOption = {
3057
+ description?: string;
3058
+ id: string;
3059
+ label: string;
3060
+ };
3061
+ type WorkspaceSwitcherProps = Omit<React.ComponentPropsWithoutRef<"div">, "defaultValue" | "onChange"> & {
3062
+ defaultValue?: string;
3063
+ onValueChange?: (value: string) => void;
3064
+ value?: string;
3065
+ workspaces: WorkspaceOption[];
3066
+ };
3067
+ declare const WorkspaceSwitcher: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref">, "defaultValue" | "onChange"> & {
3068
+ defaultValue?: string;
3069
+ onValueChange?: (value: string) => void;
3070
+ value?: string;
3071
+ workspaces: WorkspaceOption[];
3072
+ } & react.RefAttributes<HTMLDivElement>>;
3073
+
2708
3074
  type FlowDiagramNode = {
2709
3075
  data: {
2710
3076
  description?: string;
@@ -2878,6 +3244,90 @@ declare const FlowFullscreen: react.NamedExoticComponent<FlowFullscreenProps>;
2878
3244
  */
2879
3245
  declare function useFlowDiagram(options?: UseFlowDiagramOptions): UseFlowDiagramReturn;
2880
3246
 
3247
+ type AnchorPortProps = React.ComponentPropsWithoutRef<"span"> & {
3248
+ side?: "bottom" | "left" | "right" | "top";
3249
+ state?: "active" | "blocked" | "idle";
3250
+ tone?: "bidirectional" | "input" | "output";
3251
+ };
3252
+ declare const AnchorPort: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & {
3253
+ side?: "bottom" | "left" | "right" | "top";
3254
+ state?: "active" | "blocked" | "idle";
3255
+ tone?: "bidirectional" | "input" | "output";
3256
+ } & react.RefAttributes<HTMLSpanElement>>;
3257
+
3258
+ type ConnectorEdgePoint = {
3259
+ x: number;
3260
+ y: number;
3261
+ };
3262
+ type ConnectorEdgeProps = React.ComponentPropsWithoutRef<"div"> & {
3263
+ end: ConnectorEdgePoint;
3264
+ label?: string;
3265
+ start: ConnectorEdgePoint;
3266
+ state?: "active" | "blocked" | "idle";
3267
+ };
3268
+ declare const ConnectorEdge: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
3269
+ end: ConnectorEdgePoint;
3270
+ label?: string;
3271
+ start: ConnectorEdgePoint;
3272
+ state?: "active" | "blocked" | "idle";
3273
+ } & react.RefAttributes<HTMLDivElement>>;
3274
+
3275
+ type EdgeLabelProps = React.ComponentPropsWithoutRef<"span"> & {
3276
+ emphasis?: "active" | "subtle";
3277
+ };
3278
+ declare const EdgeLabel: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & {
3279
+ emphasis?: "active" | "subtle";
3280
+ } & react.RefAttributes<HTMLSpanElement>>;
3281
+
3282
+ type GroupHullProps = React.ComponentPropsWithoutRef<"section"> & {
3283
+ description?: string;
3284
+ eyebrow?: ReactNode;
3285
+ title: string;
3286
+ };
3287
+ declare const GroupHull: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
3288
+ description?: string;
3289
+ eyebrow?: ReactNode;
3290
+ title: string;
3291
+ } & react.RefAttributes<HTMLElement>>;
3292
+
3293
+ type ObjectCardMetric = {
3294
+ label: string;
3295
+ value: ReactNode;
3296
+ };
3297
+ type ObjectCardAction = {
3298
+ label: string;
3299
+ onClick?: () => void;
3300
+ };
3301
+ type ObjectCardProps = React.ComponentPropsWithoutRef<"article"> & {
3302
+ actions?: ObjectCardAction[];
3303
+ footer?: ReactNode;
3304
+ kind?: string;
3305
+ metrics?: ObjectCardMetric[];
3306
+ ports?: ReactNode;
3307
+ state?: "blocked" | "complete" | "idle" | "running";
3308
+ summary?: string;
3309
+ title: string;
3310
+ };
3311
+ declare const ObjectCard: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
3312
+ actions?: ObjectCardAction[];
3313
+ footer?: ReactNode;
3314
+ kind?: string;
3315
+ metrics?: ObjectCardMetric[];
3316
+ ports?: ReactNode;
3317
+ state?: "blocked" | "complete" | "idle" | "running";
3318
+ summary?: string;
3319
+ title: string;
3320
+ } & react.RefAttributes<HTMLElement>>;
3321
+
3322
+ type ObjectHandleProps = Omit<React.ComponentPropsWithoutRef<"button">, "type"> & {
3323
+ hint?: ReactNode;
3324
+ label?: ReactNode;
3325
+ };
3326
+ declare const ObjectHandle: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTMLProps<react.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref">, "type"> & {
3327
+ hint?: ReactNode;
3328
+ label?: ReactNode;
3329
+ } & react.RefAttributes<HTMLButtonElement>>;
3330
+
2881
3331
  type InlineInputProps = {
2882
3332
  className?: string;
2883
3333
  /** Called when user presses Escape or blurs without changes. */
@@ -3042,4 +3492,4 @@ declare function useHorizontalScroll(): UseHorizontalScrollReturn;
3042
3492
 
3043
3493
  declare function cn(...inputs: ClassValue[]): string;
3044
3494
 
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 };
3495
+ 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, AnchorPort, type AnchorPortProps, 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, BottomBar, type BottomBarProps, Breadcrumb, type BreadcrumbItem, Button, type ButtonProps, Calendar, type CalendarProps, Callout, type CalloutProps, type CalloutVariant, CandlestickChart, type CandlestickChartProps, type CandlestickDatum, CanvasShell, type CanvasShellInsets, type CanvasShellProps, type CanvasShellRouteConfig, CanvasView, type CanvasViewHandle, type CanvasViewProps, type CanvasViewport, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, CategoryFilter, type ChatDockMessage, ChatDockSection, type ChatDockSectionProps, 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, ConnectorEdge, type ConnectorEdgePoint, type ConnectorEdgeProps, Content, ContentCard$1 as 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, EdgeLabel, type EdgeLabelProps, 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, Form, FormControl, FormDescription, FormItem, FormLabel, FormMessage, type FormProps, GlassPanel, type GlassPanelProps, Glossary, type GlossaryProps, GroupHull, type GroupHullProps, 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, LeftRail, type LeftRailProps, 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 MiniMapMarker, MiniMapPanel, type MiniMapPanelProps, type ModelInfo, ModelSelector, type ModelSelectorProps, MultiSelect, type MultiSelectOption, type MultiSelectProps, type NavItem, NavbarSaas, type NavbarSaasProps, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, NumberInput, type NumberInputProps, NumberTicker, type NumberTickerProps, ObjectCard, type ObjectCardAction, type ObjectCardMetric, type ObjectCardProps, ObjectHandle, type ObjectHandleProps, OrderBook, type OrderBookLevel, type OrderBookProps, OverviewBoard, type OverviewBoardItem, type OverviewBoardProps, OverviewCard, type OverviewCardProps, type OverviewCardTone, 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, ContentCard as ProgressCard, type ContentCardProgress as ProgressCardProgress, type ContentCardProps as ProgressCardProps, Quiz, type QuizOption, type QuizProps, RadioGroup, RadioGroupItem, Rating, type RatingProps, ResizableHandle, ResizablePanel, ResizablePanelGroup, RightDock, type RightDockProps, RoleBadge, type RoleBadgeProps, type RoleBadgeRole, ScopeSelector, type ScopeSelectorNode, type ScopeSelectorProps, type ScopeSelectorSelection, ScrollArea, ScrollBar, SearchBar, SearchDialog, SegmentedControl, SegmentedControlItem, type SegmentedControlItemProps, type SegmentedControlProps, 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, TagsInput, type TagsInputProps, 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, TopBar, type TopBarProps, 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, type WorkspaceOption, WorkspaceSwitcher, type WorkspaceSwitcherProps, WorldClockBar, type WorldClockBarProps, type WorldClockBarZone, ZoomHUD, type ZoomHUDProps, alertVariants, avatarGroupVariants, avatarItemVariants, badgeVariants, buttonVariants, cn, cookieConsentVariants, dataListItemVariants, dataListVariants, dotVariants, getOtherLanguage, mdxComponents, navigationMenuTriggerStyle, segmentedControlItemVariants, segmentedControlVariants, severityBadgeVariants, statCardVariants, statusIndicatorVariants, toggleVariants, useDebounce, useFlowDiagram, useHorizontalScroll, useMobile, useSidebar, useSocialFab };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vllnt/ui",
3
- "version": "0.2.0",
3
+ "version": "0.2.1-canary.9c473e0",
4
4
  "description": "React component library — 93 components built on Radix UI, Tailwind CSS, and CVA",
5
5
  "license": "MIT",
6
6
  "author": "vllnt",