@mondrianai/runyourai-design-system 0.0.2 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -5,6 +5,8 @@ import * as react_jsx_runtime from 'react/jsx-runtime';
5
5
  import * as class_variance_authority_types from 'class-variance-authority/types';
6
6
  import { VariantProps } from 'class-variance-authority';
7
7
  import * as _radix_ui_react_context from '@radix-ui/react-context';
8
+ import { PaginationState, OnChangeFn, RowSelectionState } from '@tanstack/react-table';
9
+ export { OnChangeFn, PaginationState, RowSelectionState, SortingState } from '@tanstack/react-table';
8
10
 
9
11
  declare const Accordion: React$1.ForwardRefExoticComponent<(Accordion$1.AccordionSingleProps | Accordion$1.AccordionMultipleProps) & React$1.RefAttributes<HTMLDivElement>>;
10
12
  declare const AccordionItem: React$1.ForwardRefExoticComponent<Omit<Accordion$1.AccordionItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
@@ -93,14 +95,19 @@ interface BadgeProps {
93
95
  declare const BADGE_VARIANT_STYLES: Record<BadgeVariant, string>;
94
96
  declare function Badge({ text, variant, spin, iconName, className, }: BadgeProps): react_jsx_runtime.JSX.Element;
95
97
 
96
- declare function Breadcrumb({ className, ...props }: React__default.ComponentPropsWithoutRef<"nav">): react_jsx_runtime.JSX.Element;
97
- declare function BreadcrumbList({ className, ...props }: React__default.ComponentPropsWithoutRef<"ol">): react_jsx_runtime.JSX.Element;
98
- declare function BreadcrumbItem({ className, ...props }: React__default.ComponentPropsWithoutRef<"li">): react_jsx_runtime.JSX.Element;
99
- declare function BreadcrumbLink({ className, ...props }: React__default.ComponentPropsWithoutRef<"a">): react_jsx_runtime.JSX.Element;
100
- declare function BreadcrumbPage({ className, ...props }: React__default.ComponentPropsWithoutRef<"span">): react_jsx_runtime.JSX.Element;
101
- declare function BreadcrumbSeparator({ children, className, ...props }: React__default.ComponentPropsWithoutRef<"li">): react_jsx_runtime.JSX.Element;
102
- declare function BreadcrumbEllipsis({ className, ...props }: React__default.ComponentPropsWithoutRef<"span">): react_jsx_runtime.JSX.Element;
103
- declare function BreadcrumbDropdownItem({ children, className, ...props }: React__default.ComponentPropsWithoutRef<"button">): react_jsx_runtime.JSX.Element;
98
+ interface BreadcrumbProps extends React__default.ComponentPropsWithoutRef<'nav'> {
99
+ items: {
100
+ label: string;
101
+ href?: string;
102
+ }[];
103
+ separator?: BreadcrumbSeparator;
104
+ collapse?: 'dropdown' | 'ellipsis';
105
+ }
106
+ declare function Breadcrumb({ items, separator, collapse, className, }: BreadcrumbProps): react_jsx_runtime.JSX.Element;
107
+ type BreadcrumbSeparator = 'slash' | 'chevron-right';
108
+ declare function BreadcrumbSeparator({ iconName, className, ...props }: React__default.ComponentPropsWithoutRef<'li'> & {
109
+ iconName: 'slash' | 'chevron-right';
110
+ }): react_jsx_runtime.JSX.Element;
104
111
 
105
112
  declare const buttonVariants: (props?: ({
106
113
  variant?: "link" | "default" | "secondary" | "outline" | "ghost" | "destructive" | null | undefined;
@@ -153,6 +160,16 @@ interface CardProps {
153
160
  }
154
161
  declare function Card({ machineType, availability, machineName, machineInitial, tags, specs, onSelect, selectLabel, className, }: CardProps): react_jsx_runtime.JSX.Element;
155
162
 
163
+ interface DataSectionProps {
164
+ /** 섹션 제목 */
165
+ title?: string;
166
+ children: React$1.ReactNode;
167
+ left?: React$1.ReactNode;
168
+ right?: React$1.ReactNode;
169
+ className?: string;
170
+ }
171
+ declare function DataSection({ title, left, right, className, children, }: DataSectionProps): react_jsx_runtime.JSX.Element;
172
+
156
173
  interface CheckboxProps extends React$1.ComponentPropsWithoutRef<typeof Checkbox$1.Root> {
157
174
  /** Optional label rendered to the right of the checkbox */
158
175
  label?: string;
@@ -401,6 +418,21 @@ interface IconProps extends React$1.SVGProps<SVGSVGElement> {
401
418
  */
402
419
  declare function Icon({ name, className, strokeWidth, ...props }: IconProps): react_jsx_runtime.JSX.Element | null;
403
420
 
421
+ interface KbCardProps {
422
+ name: string;
423
+ size: string;
424
+ updatedAt: string;
425
+ connectedAgents: number | null;
426
+ icon?: React$1.ReactNode;
427
+ selectable?: boolean;
428
+ checked?: boolean;
429
+ onCheckedChange?: (checked: boolean) => void;
430
+ /** 카드 클릭 핸들러. selectable(편집 모드)일 때는 동작하지 않음. */
431
+ onClick?: () => void;
432
+ className?: string;
433
+ }
434
+ declare function KbCard({ name, size, updatedAt, connectedAgents, icon, selectable, checked, onCheckedChange, onClick, className, }: KbCardProps): react_jsx_runtime.JSX.Element;
435
+
404
436
  declare function MarkdownMessage({ content, isStreaming, footerMeta, className, }: {
405
437
  content: string;
406
438
  isStreaming?: boolean;
@@ -412,6 +444,51 @@ declare function MarkdownMessage({ content, isStreaming, footerMeta, className,
412
444
  className?: string;
413
445
  }): react_jsx_runtime.JSX.Element;
414
446
 
447
+ interface ModalProps {
448
+ id?: string;
449
+ /**
450
+ * 모달을 여는 트리거 — render prop 패턴.
451
+ * open 함수를 인자로 받아 원하는 요소에 직접 연결.
452
+ * ex) trigger={(open) => <Button onClick={open}>열기</Button>}
453
+ */
454
+ trigger?: (open: () => void) => React$1.ReactNode;
455
+ /**
456
+ * footer 버튼 렌더 방식
457
+ * confirm — 취소 + default(검정) 확인 버튼
458
+ * danger — 취소 + destructive(빨강) 확인 버튼
459
+ * dialog — footer 없음 (children으로 모든 콘텐츠 처리)
460
+ */
461
+ variant?: 'confirm' | 'danger' | 'dialog';
462
+ /** 모달 제목 */
463
+ title: string;
464
+ /** 제목 아래 부제목 (선택) */
465
+ description?: string;
466
+ /** 우상단 X 닫기 버튼 표시 여부 */
467
+ showCloseButton?: boolean;
468
+ /** 모달 본문 */
469
+ children?: React$1.ReactNode;
470
+ /** 취소 버튼 레이블 (기본: "취소") */
471
+ cancelLabel?: string;
472
+ /** 확인 버튼 레이블 (기본: "확인") */
473
+ confirmLabel?: string;
474
+ /**
475
+ * 확인 버튼 콜백.
476
+ * Promise를 반환하면 resolve될 때까지 loading 상태를 내부에서 자동 처리하고
477
+ * 완료 후 모달을 닫음.
478
+ */
479
+ onConfirm?: () => void | Promise<void>;
480
+ /** 취소/닫기 시 콜백 (cancel 버튼, X 버튼, ESC, 오버레이 클릭) */
481
+ onCancel?: () => void;
482
+ /** 확인 버튼 비활성화 */
483
+ confirmDisabled?: boolean;
484
+ isLoading?: boolean;
485
+ /** 오버레이 클릭 시 닫기 (기본: true) */
486
+ closeOnOverlayClick?: boolean;
487
+ /** 모달 패널에 추가할 className */
488
+ className?: string;
489
+ }
490
+ declare function Modal({ id, trigger, variant, title, description, showCloseButton, children, cancelLabel, confirmLabel, onConfirm, onCancel, confirmDisabled, closeOnOverlayClick, className, isLoading, }: ModalProps): react_jsx_runtime.JSX.Element;
491
+
415
492
  declare const Menubar: React$1.ForwardRefExoticComponent<Omit<Menubar$1.MenubarProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
416
493
  declare const MenubarMenu: {
417
494
  (props: Menubar$1.MenubarMenuProps & {
@@ -464,6 +541,14 @@ interface SegmentedControlProps<T extends string> {
464
541
  }
465
542
  declare function SegmentedControl<T extends string>({ value, onChange, items, }: SegmentedControlProps<T>): react_jsx_runtime.JSX.Element;
466
543
 
544
+ interface SearchInputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, 'onChange' | 'type'> {
545
+ value: string;
546
+ onChange: (value: string) => void;
547
+ placeholder?: string;
548
+ className?: string;
549
+ }
550
+ declare function SearchInput({ value, onChange, placeholder, className, ...props }: SearchInputProps): react_jsx_runtime.JSX.Element;
551
+
467
552
  interface SelectOption {
468
553
  /** Unique identifier for the option */
469
554
  value: string;
@@ -599,6 +684,94 @@ interface SwitchFieldProps extends React__default.ComponentPropsWithoutRef<typeo
599
684
  }
600
685
  declare function SwitchField({ label, description, className, id, ...props }: SwitchFieldProps): react_jsx_runtime.JSX.Element;
601
686
 
687
+ type SortDirection = 'asc' | 'desc' | null;
688
+ interface TableColumn<T> {
689
+ key: string;
690
+ header: string;
691
+ sortable?: boolean;
692
+ /** 정렬 기준값 추출. sortable=true 시 필수 */
693
+ sortValue?: (row: T) => string | number;
694
+ /** 헤더·셀 text-align. 기본값 "left" */
695
+ align?: 'left' | 'center' | 'right';
696
+ cellClassName?: string;
697
+ headerClassName?: string;
698
+ /**
699
+ * true이면 셀 내용을 한 줄로 잘라내고 hover 시 tooltip으로 전체 내용을 표시.
700
+ * tooltip에 표시할 텍스트를 별도로 지정하려면 ellipsisTooltip을 함께 사용.
701
+ */
702
+ ellipsis?: boolean;
703
+ /** ellipsis=true 일 때 tooltip에 표시할 내용. 미제공 시 cell 렌더 결과를 그대로 사용. */
704
+ ellipsisTooltip?: (row: T) => React$1.ReactNode;
705
+ cell: (row: T) => React$1.ReactNode;
706
+ }
707
+ /**
708
+ * TanStack Table의 pagination 옵션을 그대로 노출.
709
+ * 상세 동작은 TanStack Table 공식 문서 참고:
710
+ * https://tanstack.com/table/latest/docs/api/features/pagination
711
+ */
712
+ interface TablePaginationConfig extends Partial<Pick<PaginationState, 'pageSize' | 'pageIndex'>> {
713
+ onPaginationChange?: OnChangeFn<PaginationState>;
714
+ /** 서버사이드 페이지네이션 시 true로 설정 */
715
+ manualPagination?: boolean;
716
+ /** manualPagination=true 일 때 전체 페이지 수 */
717
+ pageCount?: number;
718
+ /** manualPagination=true 일 때 전체 행 수 (pageCount 대신 사용 가능) */
719
+ rowCount?: number;
720
+ }
721
+ interface TableSortingItem {
722
+ /** TableColumn.key 와 일치해야 함 */
723
+ key: TableColumn<never>['key'];
724
+ desc?: boolean;
725
+ }
726
+ interface TableProps<T> {
727
+ columns: TableColumn<T>[];
728
+ data: T[];
729
+ /**
730
+ * 각 행의 고유 키.
731
+ * - keyof T (예: "id") — T[key]를 string으로 변환해 사용
732
+ * - (row: T) => string — 함수로 직접 계산
733
+ */
734
+ rowKey: keyof T | ((row: T) => string);
735
+ /**
736
+ * 페이지네이션 설정. 미전달 시 페이지네이션 비활성화.
737
+ * TanStack Table pagination 옵션을 그대로 수용.
738
+ */
739
+ pagination?: TablePaginationConfig;
740
+ /**
741
+ * 초기 정렬 상태. 복수 컬럼 정렬 지원.
742
+ * 각 항목의 key는 TableColumn.key 와 일치해야 함.
743
+ */
744
+ defaultSorting?: TableSortingItem[];
745
+ /** 데이터 로딩 중 상태. true이면 tbody 대신 스피너를 표시 */
746
+ loading?: boolean;
747
+ /** true이면 각 행 앞에 체크박스가 추가되어 row multi-select 활성화 */
748
+ enableRowSelection?: boolean;
749
+ /** 외부에서 selection 상태를 제어할 때 사용 (controlled) */
750
+ rowSelection?: RowSelectionState;
751
+ /** selection 상태 변경 콜백 */
752
+ onRowSelectionChange?: OnChangeFn<RowSelectionState>;
753
+ /**
754
+ * 각 행 오른쪽 끝에 렌더링할 액션 영역.
755
+ * row 데이터를 받아 ReactNode를 반환하는 함수.
756
+ * 예: hover 시 나타나는 삭제·편집 버튼 등.
757
+ */
758
+ rowActions?: (row: T) => React$1.ReactNode;
759
+ /** 행 클릭 핸들러. enableRowSelection=true(편집 모드)일 때는 동작하지 않음. */
760
+ onRowClick?: (row: T) => void;
761
+ className?: string;
762
+ }
763
+ declare function SortIcon({ direction }: {
764
+ direction: SortDirection;
765
+ }): react_jsx_runtime.JSX.Element;
766
+ interface TablePaginationProps {
767
+ currentPage: number;
768
+ totalPages: number;
769
+ onPageChange: (page: number) => void;
770
+ className?: string;
771
+ }
772
+ declare function TablePagination({ currentPage, totalPages, onPageChange, className, }: TablePaginationProps): react_jsx_runtime.JSX.Element;
773
+ declare function Table<T>({ columns, data, rowKey, pagination, defaultSorting, loading, enableRowSelection, rowSelection: rowSelectionProp, onRowSelectionChange, rowActions, onRowClick, className, }: TableProps<T>): react_jsx_runtime.JSX.Element;
774
+
602
775
  declare const TooltipProvider: React$1.FC<Tooltip$1.TooltipProviderProps>;
603
776
  interface TooltipProps extends Pick<React$1.ComponentPropsWithoutRef<typeof Tooltip$1.Root>, 'open' | 'defaultOpen' | 'onOpenChange' | 'delayDuration'>, Omit<React$1.ComponentPropsWithoutRef<typeof Tooltip$1.Content>, 'children' | 'content'> {
604
777
  /** 툴팁 말풍선에 표시할 내용 */
@@ -720,6 +893,15 @@ declare function BoldIcon({ className }: {
720
893
  className?: string;
721
894
  }): react_jsx_runtime.JSX.Element;
722
895
 
896
+ /**
897
+ * Book-open icon — SVG downloaded directly from Figma design system.
898
+ * Uses stroke="currentColor" for CSS color control.
899
+ * Source: Figma node 616-3399, stroke-width: 1.25
900
+ */
901
+ declare function BookOpenIcon({ className }: {
902
+ className?: string;
903
+ }): react_jsx_runtime.JSX.Element;
904
+
723
905
  interface BookUpIconProps {
724
906
  className?: string;
725
907
  }
@@ -748,6 +930,15 @@ declare function CircleCheckFillIcon({ className }: {
748
930
  className?: string;
749
931
  }): react_jsx_runtime.JSX.Element;
750
932
 
933
+ /**
934
+ * Circle-help icon — SVG downloaded directly from Figma design system.
935
+ * Uses stroke="currentColor" for CSS color control.
936
+ * Source: Figma node 616-3399, stroke-width: 1.25
937
+ */
938
+ declare function CircleHelpIcon({ className }: {
939
+ className?: string;
940
+ }): react_jsx_runtime.JSX.Element;
941
+
751
942
  /**
752
943
  * Circle-outline icon — stroke-only circle.
753
944
  * SVG downloaded from Figma design system.
@@ -772,6 +963,15 @@ declare function CodeSquareIcon({ className }: {
772
963
  className?: string;
773
964
  }): react_jsx_runtime.JSX.Element;
774
965
 
966
+ /**
967
+ * Credit icon — SVG downloaded directly from Figma design system.
968
+ * Uses stroke="currentColor" for CSS color control.
969
+ * Source: Figma node 616-3399, stroke-width: 1.25
970
+ */
971
+ declare function CreditIcon({ className }: {
972
+ className?: string;
973
+ }): react_jsx_runtime.JSX.Element;
974
+
775
975
  declare function DownloadIcon({ className }: {
776
976
  className?: string;
777
977
  }): react_jsx_runtime.JSX.Element;
@@ -801,6 +1001,15 @@ declare function FolderAmberIcon({ className }: {
801
1001
  className?: string;
802
1002
  }): react_jsx_runtime.JSX.Element;
803
1003
 
1004
+ /**
1005
+ * Folder-closed icon — SVG downloaded directly from Figma design system.
1006
+ * Uses stroke="currentColor" for CSS color control.
1007
+ * Source: Figma node 616-3399, stroke-width: 1.02
1008
+ */
1009
+ declare function FolderClosedIcon({ className }: {
1010
+ className?: string;
1011
+ }): react_jsx_runtime.JSX.Element;
1012
+
804
1013
  /**
805
1014
  * Heading icon — SVG downloaded from Figma design system.
806
1015
  * Source: Figma node (lucide/heading)
@@ -837,6 +1046,15 @@ declare function ItalicIcon({ className }: {
837
1046
  className?: string;
838
1047
  }): react_jsx_runtime.JSX.Element;
839
1048
 
1049
+ /**
1050
+ * Key-round icon — SVG downloaded directly from Figma design system.
1051
+ * Uses stroke="currentColor" for CSS color control.
1052
+ * Source: Figma node 616-3399, stroke-width: 1.02
1053
+ */
1054
+ declare function KeyRoundIcon({ className }: {
1055
+ className?: string;
1056
+ }): react_jsx_runtime.JSX.Element;
1057
+
840
1058
  declare function LayersIcon({ className }: {
841
1059
  className?: string;
842
1060
  }): react_jsx_runtime.JSX.Element;
@@ -882,6 +1100,24 @@ declare function ListOrderedIcon({ className }: {
882
1100
  className?: string;
883
1101
  }): react_jsx_runtime.JSX.Element;
884
1102
 
1103
+ /**
1104
+ * Message-circle icon — SVG downloaded directly from Figma design system.
1105
+ * Uses stroke="currentColor" for CSS color control.
1106
+ * Source: Figma node 616-3399, stroke-width: 1.25
1107
+ */
1108
+ declare function MessageCircleIcon({ className }: {
1109
+ className?: string;
1110
+ }): react_jsx_runtime.JSX.Element;
1111
+
1112
+ /**
1113
+ * Messages-square icon — SVG downloaded directly from Figma design system.
1114
+ * Uses stroke="currentColor" for CSS color control.
1115
+ * Source: Figma node 616-3399, stroke-width: 1.25
1116
+ */
1117
+ declare function MessagesSquareIcon({ className }: {
1118
+ className?: string;
1119
+ }): react_jsx_runtime.JSX.Element;
1120
+
885
1121
  declare function MyPageIcon({ className }: {
886
1122
  className?: string;
887
1123
  }): react_jsx_runtime.JSX.Element;
@@ -894,6 +1130,15 @@ declare function OutdentIcon({ className }: {
894
1130
  className?: string;
895
1131
  }): react_jsx_runtime.JSX.Element;
896
1132
 
1133
+ /**
1134
+ * Panel-left icon — SVG downloaded directly from Figma design system.
1135
+ * Uses stroke="currentColor" for CSS color control.
1136
+ * Source: Figma node 616-3399, stroke-width: 1.25
1137
+ */
1138
+ declare function PanelLeftIcon({ className }: {
1139
+ className?: string;
1140
+ }): react_jsx_runtime.JSX.Element;
1141
+
897
1142
  interface PenLineIconProps {
898
1143
  className?: string;
899
1144
  }
@@ -916,6 +1161,14 @@ declare function PresentationIcon({ className }: {
916
1161
  className?: string;
917
1162
  }): react_jsx_runtime.JSX.Element;
918
1163
 
1164
+ /**
1165
+ * Shopping Bag icon — SVG from public/icons/shopping-bag.svg
1166
+ * Uses stroke="currentColor" for CSS color control.
1167
+ */
1168
+ declare function ShoppingBagIcon({ className }: {
1169
+ className?: string;
1170
+ }): react_jsx_runtime.JSX.Element;
1171
+
919
1172
  /**
920
1173
  * Smile icon — SVG downloaded from Figma design system.
921
1174
  * Source: public/icons/smile.svg
@@ -989,30 +1242,4 @@ declare function WandSparklesIcon({ className }: {
989
1242
  className?: string;
990
1243
  }): react_jsx_runtime.JSX.Element;
991
1244
 
992
- /**
993
- * Message-circle icon — SVG downloaded directly from Figma design system.
994
- * Uses stroke="currentColor" for CSS color control.
995
- * Source: Figma node 616-3399, stroke-width: 1.25
996
- */
997
- declare function MessageCircleIcon({ className }: {
998
- className?: string;
999
- }): react_jsx_runtime.JSX.Element;
1000
-
1001
- /**
1002
- * Messages-square icon — SVG downloaded directly from Figma design system.
1003
- * Uses stroke="currentColor" for CSS color control.
1004
- * Source: Figma node 616-3399, stroke-width: 1.25
1005
- */
1006
- declare function MessagesSquareIcon({ className }: {
1007
- className?: string;
1008
- }): react_jsx_runtime.JSX.Element;
1009
-
1010
- /**
1011
- * Shopping Bag icon — SVG from public/icons/shopping-bag.svg
1012
- * Uses stroke="currentColor" for CSS color control.
1013
- */
1014
- declare function ShoppingBagIcon({ className }: {
1015
- className?: string;
1016
- }): react_jsx_runtime.JSX.Element;
1017
-
1018
- export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, AiAgentIcon, AiBuilderIcon, AiCloudIcon, AiDatacenterIcon, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AlignJustifyIcon, AlignLeftIcon, ArrowDownIcon, type AvailabilityStatus, Avatar, AvatarGroup, type AvatarGroupItem, type AvatarGroupProps, type AvatarProps, type AvatarSize, BADGE_VARIANT_STYLES, Badge, type BadgeProps, type BadgeVariant, BlockquoteIcon, BoldIcon, BookUpIcon, Breadcrumb, BreadcrumbDropdownItem, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, Card, type CardProps, type CardSpec, Checkbox, CheckboxCard, type CheckboxCardProps, type CheckboxProps, ChevronsUpDownIcon, ChoiceCardGroup, type ChoiceCardGroupProps, ChoiceCardItem, type ChoiceCardItemProps, CircleCheckFillIcon, CircleOutlineIcon, ClaudeIcon, CodeIcon, CodeSquareIcon, Collapsible, CollapsibleContent, type CollapsibleProps, CollapsibleRoot, CollapsibleTrigger, type CollapsibleWorkspace, Combobox, type ComboboxOption, type ComboboxProps, DeepSeekIcon, DownloadIcon, Field, FieldDivider, type FieldProps, FieldRow, type FieldRowProps, FieldSection, type FieldSectionProps, FileCodeIcon, FileSearchIcon, FolderAmberIcon, GeminiIcon, GoogleIcon, GroupedSelect, Header, type HeaderNavItem, type HeaderProps, HeadingIcon, ICON_NODES, Icon, type IconProps, ImageIcon, ImportIcon, IndentIcon, ItalicIcon, type LanguageItem, LayersIcon, LayoutGridIcon, LineChartIcon, LinkIcon, ListIcon, ListOrderedIcon, type MachineType, MarkdownMessage, Menubar, MenubarContent, MenubarGroup, MenubarItem, MenubarMenu, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, MessageCircleIcon, MessageFooter, type MessageFooterProps, MessagesSquareIcon, type ModelGroup, type ModelItem, MyPageIcon, type NavDropdownItem, type NotificationItem, NumberBadge, type NumberBadgeProps, OpenAiIcon, OutdentIcon, PenLineIcon, PencilLineIcon, PresentationIcon, Providers, RyaiLogoIcon, SegmentedControl, Select, type SelectGroup, type SelectOption, type SelectProps, Sheet, ShoppingBagIcon, Sidebar, SidebarLink, type SidebarMainMenuItem, type SidebarSubMenuItem, type SidebarUtilityItem, Slider, SmileIcon, SparklesIcon, SquareCheckIcon, SquareCheckOutlineIcon, StarIcon, Stepper, type StepperProps, type StepperStep, StrikethroughIcon, Switch, SwitchField, type SwitchFieldProps, TablePropertiesIcon, Tooltip, type TooltipProps, TooltipProvider, TooltipWithIcon, type TooltipWithIconProps, TrashIcon, UpstageIcon, type UserMenuSection, type UserMenuSectionItem, UserMessageBubble, WandSparklesIcon, buttonVariants };
1245
+ export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, AiAgentIcon, AiBuilderIcon, AiCloudIcon, AiDatacenterIcon, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AlignJustifyIcon, AlignLeftIcon, ArrowDownIcon, type AvailabilityStatus, Avatar, AvatarGroup, type AvatarGroupItem, type AvatarGroupProps, type AvatarProps, type AvatarSize, BADGE_VARIANT_STYLES, Badge, type BadgeProps, type BadgeVariant, BlockquoteIcon, BoldIcon, BookOpenIcon, BookUpIcon, Breadcrumb, Button, type ButtonProps, Card, type CardProps, type CardSpec, Checkbox, CheckboxCard, type CheckboxCardProps, type CheckboxProps, ChevronsUpDownIcon, ChoiceCardGroup, type ChoiceCardGroupProps, ChoiceCardItem, type ChoiceCardItemProps, CircleCheckFillIcon, CircleHelpIcon, CircleOutlineIcon, ClaudeIcon, CodeIcon, CodeSquareIcon, Collapsible, CollapsibleContent, type CollapsibleProps, CollapsibleRoot, CollapsibleTrigger, type CollapsibleWorkspace, Combobox, type ComboboxOption, type ComboboxProps, CreditIcon, DataSection, type DataSectionProps, DeepSeekIcon, DownloadIcon, Field, FieldDivider, type FieldProps, FieldRow, type FieldRowProps, FieldSection, type FieldSectionProps, FileCodeIcon, FileSearchIcon, FolderAmberIcon, FolderClosedIcon, GeminiIcon, GoogleIcon, GroupedSelect, Header, type HeaderNavItem, type HeaderProps, HeadingIcon, ICON_NODES, Icon, type IconProps, ImageIcon, ImportIcon, IndentIcon, ItalicIcon, KbCard, type KbCardProps, KeyRoundIcon, type LanguageItem, LayersIcon, LayoutGridIcon, LineChartIcon, LinkIcon, ListIcon, ListOrderedIcon, type MachineType, MarkdownMessage, Menubar, MenubarContent, MenubarGroup, MenubarItem, MenubarMenu, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, MessageCircleIcon, MessageFooter, type MessageFooterProps, MessagesSquareIcon, Modal, type ModalProps, type ModelGroup, type ModelItem, MyPageIcon, type NavDropdownItem, type NotificationItem, NumberBadge, type NumberBadgeProps, OpenAiIcon, OutdentIcon, PanelLeftIcon, PenLineIcon, PencilLineIcon, PresentationIcon, Providers, RyaiLogoIcon, SearchInput, type SearchInputProps, SegmentedControl, Select, type SelectGroup, type SelectOption, type SelectProps, Sheet, ShoppingBagIcon, Sidebar, SidebarLink, type SidebarMainMenuItem, type SidebarSubMenuItem, type SidebarUtilityItem, Slider, SmileIcon, type SortDirection, SortIcon, SparklesIcon, SquareCheckIcon, SquareCheckOutlineIcon, StarIcon, Stepper, type StepperProps, type StepperStep, StrikethroughIcon, Switch, SwitchField, type SwitchFieldProps, Table, type TableColumn, TablePagination, type TablePaginationConfig, TablePropertiesIcon, type TableProps, type TableSortingItem, Tooltip, type TooltipProps, TooltipProvider, TooltipWithIcon, type TooltipWithIconProps, TrashIcon, UpstageIcon, type UserMenuSection, type UserMenuSectionItem, UserMessageBubble, WandSparklesIcon, buttonVariants };