@mondrianai/runyourai-design-system 0.0.2 → 0.0.4

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,20 @@ 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
+ onClick?: () => void;
103
+ }[];
104
+ separator?: BreadcrumbSeparator;
105
+ collapse?: 'dropdown' | 'ellipsis';
106
+ }
107
+ declare function Breadcrumb({ items, separator, collapse, className, }: BreadcrumbProps): react_jsx_runtime.JSX.Element;
108
+ type BreadcrumbSeparator = 'slash' | 'chevron-right';
109
+ declare function BreadcrumbSeparator({ iconName, className, ...props }: React__default.ComponentPropsWithoutRef<'li'> & {
110
+ iconName: 'slash' | 'chevron-right';
111
+ }): react_jsx_runtime.JSX.Element;
104
112
 
105
113
  declare const buttonVariants: (props?: ({
106
114
  variant?: "link" | "default" | "secondary" | "outline" | "ghost" | "destructive" | null | undefined;
@@ -153,6 +161,34 @@ interface CardProps {
153
161
  }
154
162
  declare function Card({ machineType, availability, machineName, machineInitial, tags, specs, onSelect, selectLabel, className, }: CardProps): react_jsx_runtime.JSX.Element;
155
163
 
164
+ interface DataSectionProps {
165
+ /** 섹션 제목 */
166
+ title?: string;
167
+ children: React$1.ReactNode;
168
+ left?: React$1.ReactNode;
169
+ right?: React$1.ReactNode;
170
+ className?: string;
171
+ }
172
+ declare function DataSection({ title, left, right, className, children, }: DataSectionProps): react_jsx_runtime.JSX.Element;
173
+
174
+ interface DrawerProps {
175
+ open: boolean;
176
+ onClose: () => void;
177
+ title: React$1.ReactNode;
178
+ children: React$1.ReactNode;
179
+ metadata?: React$1.ReactNode;
180
+ className?: string;
181
+ }
182
+ declare function Drawer({ open, onClose, title, children, metadata, className, }: DrawerProps): react_jsx_runtime.JSX.Element;
183
+
184
+ interface EmptyProps {
185
+ image?: React$1.ReactNode;
186
+ description?: React$1.ReactNode;
187
+ children?: React$1.ReactNode;
188
+ className?: string;
189
+ }
190
+ declare function Empty({ image, description, children, className }: EmptyProps): react_jsx_runtime.JSX.Element;
191
+
156
192
  interface CheckboxProps extends React$1.ComponentPropsWithoutRef<typeof Checkbox$1.Root> {
157
193
  /** Optional label rendered to the right of the checkbox */
158
194
  label?: string;
@@ -401,6 +437,23 @@ interface IconProps extends React$1.SVGProps<SVGSVGElement> {
401
437
  */
402
438
  declare function Icon({ name, className, strokeWidth, ...props }: IconProps): react_jsx_runtime.JSX.Element | null;
403
439
 
440
+ interface KbCardMetadataItem {
441
+ label: string;
442
+ value: React$1.ReactNode;
443
+ }
444
+ interface KbCardProps {
445
+ name: string;
446
+ metadata?: KbCardMetadataItem[];
447
+ icon?: React$1.ReactNode;
448
+ selectable?: boolean;
449
+ checked?: boolean;
450
+ onCheckedChange?: (checked: boolean) => void;
451
+ /** 카드 클릭 핸들러. selectable(편집 모드)일 때는 동작하지 않음. */
452
+ onClick?: () => void;
453
+ className?: string;
454
+ }
455
+ declare function KbCard({ name, metadata, icon, selectable, checked, onCheckedChange, onClick, className, }: KbCardProps): react_jsx_runtime.JSX.Element;
456
+
404
457
  declare function MarkdownMessage({ content, isStreaming, footerMeta, className, }: {
405
458
  content: string;
406
459
  isStreaming?: boolean;
@@ -412,6 +465,51 @@ declare function MarkdownMessage({ content, isStreaming, footerMeta, className,
412
465
  className?: string;
413
466
  }): react_jsx_runtime.JSX.Element;
414
467
 
468
+ interface ModalProps {
469
+ id?: string;
470
+ /**
471
+ * 모달을 여는 트리거 — render prop 패턴.
472
+ * open 함수를 인자로 받아 원하는 요소에 직접 연결.
473
+ * ex) trigger={(open) => <Button onClick={open}>열기</Button>}
474
+ */
475
+ trigger?: (open: () => void) => React$1.ReactNode;
476
+ /**
477
+ * footer 버튼 렌더 방식
478
+ * confirm — 취소 + default(검정) 확인 버튼
479
+ * danger — 취소 + destructive(빨강) 확인 버튼
480
+ * dialog — footer 없음 (children으로 모든 콘텐츠 처리)
481
+ */
482
+ variant?: 'confirm' | 'danger' | 'dialog';
483
+ /** 모달 제목 */
484
+ title: string;
485
+ /** 제목 아래 부제목 (선택) */
486
+ description?: string;
487
+ /** 우상단 X 닫기 버튼 표시 여부 */
488
+ showCloseButton?: boolean;
489
+ /** 모달 본문 */
490
+ children?: React$1.ReactNode;
491
+ /** 취소 버튼 레이블 (기본: "취소") */
492
+ cancelLabel?: string;
493
+ /** 확인 버튼 레이블 (기본: "확인") */
494
+ confirmLabel?: string;
495
+ /**
496
+ * 확인 버튼 콜백.
497
+ * Promise를 반환하면 resolve될 때까지 loading 상태를 내부에서 자동 처리하고
498
+ * 완료 후 모달을 닫음.
499
+ */
500
+ onConfirm?: () => void | Promise<void>;
501
+ /** 취소/닫기 시 콜백 (cancel 버튼, X 버튼, ESC, 오버레이 클릭) */
502
+ onCancel?: () => void;
503
+ /** 확인 버튼 비활성화 */
504
+ confirmDisabled?: boolean;
505
+ isLoading?: boolean;
506
+ /** 오버레이 클릭 시 닫기 (기본: true) */
507
+ closeOnOverlayClick?: boolean;
508
+ /** 모달 패널에 추가할 className */
509
+ className?: string;
510
+ }
511
+ declare function Modal({ id, trigger, variant, title, description, showCloseButton, children, cancelLabel, confirmLabel, onConfirm, onCancel, confirmDisabled, closeOnOverlayClick, className, isLoading, }: ModalProps): react_jsx_runtime.JSX.Element;
512
+
415
513
  declare const Menubar: React$1.ForwardRefExoticComponent<Omit<Menubar$1.MenubarProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
416
514
  declare const MenubarMenu: {
417
515
  (props: Menubar$1.MenubarMenuProps & {
@@ -464,6 +562,14 @@ interface SegmentedControlProps<T extends string> {
464
562
  }
465
563
  declare function SegmentedControl<T extends string>({ value, onChange, items, }: SegmentedControlProps<T>): react_jsx_runtime.JSX.Element;
466
564
 
565
+ interface SearchInputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, 'onChange' | 'type'> {
566
+ value: string;
567
+ onChange: (value: string) => void;
568
+ placeholder?: string;
569
+ className?: string;
570
+ }
571
+ declare function SearchInput({ value, onChange, placeholder, className, ...props }: SearchInputProps): react_jsx_runtime.JSX.Element;
572
+
467
573
  interface SelectOption {
468
574
  /** Unique identifier for the option */
469
575
  value: string;
@@ -599,6 +705,94 @@ interface SwitchFieldProps extends React__default.ComponentPropsWithoutRef<typeo
599
705
  }
600
706
  declare function SwitchField({ label, description, className, id, ...props }: SwitchFieldProps): react_jsx_runtime.JSX.Element;
601
707
 
708
+ type SortDirection = 'asc' | 'desc' | null;
709
+ interface TableColumn<T> {
710
+ key: string;
711
+ header: string;
712
+ sortable?: boolean;
713
+ /** 정렬 기준값 추출. sortable=true 시 필수 */
714
+ sortValue?: (row: T) => string | number;
715
+ /** 헤더·셀 text-align. 기본값 "left" */
716
+ align?: 'left' | 'center' | 'right';
717
+ cellClassName?: string;
718
+ headerClassName?: string;
719
+ /**
720
+ * true이면 셀 내용을 한 줄로 잘라내고 hover 시 tooltip으로 전체 내용을 표시.
721
+ * tooltip에 표시할 텍스트를 별도로 지정하려면 ellipsisTooltip을 함께 사용.
722
+ */
723
+ ellipsis?: boolean;
724
+ /** ellipsis=true 일 때 tooltip에 표시할 내용. 미제공 시 cell 렌더 결과를 그대로 사용. */
725
+ ellipsisTooltip?: (row: T) => React$1.ReactNode;
726
+ cell: (row: T) => React$1.ReactNode;
727
+ }
728
+ /**
729
+ * TanStack Table의 pagination 옵션을 그대로 노출.
730
+ * 상세 동작은 TanStack Table 공식 문서 참고:
731
+ * https://tanstack.com/table/latest/docs/api/features/pagination
732
+ */
733
+ interface TablePaginationConfig extends Partial<Pick<PaginationState, 'pageSize' | 'pageIndex'>> {
734
+ onPaginationChange?: OnChangeFn<PaginationState>;
735
+ /** 서버사이드 페이지네이션 시 true로 설정 */
736
+ manualPagination?: boolean;
737
+ /** manualPagination=true 일 때 전체 페이지 수 */
738
+ pageCount?: number;
739
+ /** manualPagination=true 일 때 전체 행 수 (pageCount 대신 사용 가능) */
740
+ rowCount?: number;
741
+ }
742
+ interface TableSortingItem {
743
+ /** TableColumn.key 와 일치해야 함 */
744
+ key: TableColumn<never>['key'];
745
+ desc?: boolean;
746
+ }
747
+ interface TableProps<T> {
748
+ columns: TableColumn<T>[];
749
+ data: T[];
750
+ /**
751
+ * 각 행의 고유 키.
752
+ * - keyof T (예: "id") — T[key]를 string으로 변환해 사용
753
+ * - (row: T) => string — 함수로 직접 계산
754
+ */
755
+ rowKey: keyof T | ((row: T) => string);
756
+ /**
757
+ * 페이지네이션 설정. 미전달 시 페이지네이션 비활성화.
758
+ * TanStack Table pagination 옵션을 그대로 수용.
759
+ */
760
+ pagination?: TablePaginationConfig;
761
+ /**
762
+ * 초기 정렬 상태. 복수 컬럼 정렬 지원.
763
+ * 각 항목의 key는 TableColumn.key 와 일치해야 함.
764
+ */
765
+ defaultSorting?: TableSortingItem[];
766
+ /** 데이터 로딩 중 상태. true이면 tbody 대신 스피너를 표시 */
767
+ loading?: boolean;
768
+ /** true이면 각 행 앞에 체크박스가 추가되어 row multi-select 활성화 */
769
+ enableRowSelection?: boolean;
770
+ /** 외부에서 selection 상태를 제어할 때 사용 (controlled) */
771
+ rowSelection?: RowSelectionState;
772
+ /** selection 상태 변경 콜백 */
773
+ onRowSelectionChange?: OnChangeFn<RowSelectionState>;
774
+ /**
775
+ * 각 행 오른쪽 끝에 렌더링할 액션 영역.
776
+ * row 데이터를 받아 ReactNode를 반환하는 함수.
777
+ * 예: hover 시 나타나는 삭제·편집 버튼 등.
778
+ */
779
+ rowActions?: (row: T) => React$1.ReactNode;
780
+ /** 행 클릭 핸들러. enableRowSelection=true(편집 모드)일 때는 동작하지 않음. */
781
+ onRowClick?: (row: T) => void;
782
+ className?: string;
783
+ }
784
+ declare function SortIcon({ direction }: {
785
+ direction: SortDirection;
786
+ }): react_jsx_runtime.JSX.Element;
787
+ interface PaginationProps {
788
+ currentPage: number;
789
+ totalPages: number;
790
+ onPageChange: (page: number) => void;
791
+ className?: string;
792
+ }
793
+ declare function Pagination({ currentPage, totalPages, onPageChange, className, }: PaginationProps): react_jsx_runtime.JSX.Element;
794
+ declare function Table<T>({ columns, data, rowKey, pagination, defaultSorting, loading, enableRowSelection, rowSelection: rowSelectionProp, onRowSelectionChange, rowActions, onRowClick, className, }: TableProps<T>): react_jsx_runtime.JSX.Element;
795
+
602
796
  declare const TooltipProvider: React$1.FC<Tooltip$1.TooltipProviderProps>;
603
797
  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
798
  /** 툴팁 말풍선에 표시할 내용 */
@@ -663,6 +857,30 @@ declare function UpstageIcon({ className }: {
663
857
  className?: string;
664
858
  }): react_jsx_runtime.JSX.Element;
665
859
 
860
+ declare function AgentBlogIcon({ className }: {
861
+ className?: string;
862
+ }): react_jsx_runtime.JSX.Element;
863
+
864
+ declare function AgentCsIcon({ className }: {
865
+ className?: string;
866
+ }): react_jsx_runtime.JSX.Element;
867
+
868
+ declare function AgentDataIcon({ className }: {
869
+ className?: string;
870
+ }): react_jsx_runtime.JSX.Element;
871
+
872
+ declare function AgentHrIcon({ className }: {
873
+ className?: string;
874
+ }): react_jsx_runtime.JSX.Element;
875
+
876
+ declare function AgentMailIcon({ className }: {
877
+ className?: string;
878
+ }): react_jsx_runtime.JSX.Element;
879
+
880
+ declare function AgentTrendIcon({ className }: {
881
+ className?: string;
882
+ }): react_jsx_runtime.JSX.Element;
883
+
666
884
  declare function AiAgentIcon({ className }: {
667
885
  className?: string;
668
886
  }): react_jsx_runtime.JSX.Element;
@@ -720,6 +938,15 @@ declare function BoldIcon({ className }: {
720
938
  className?: string;
721
939
  }): react_jsx_runtime.JSX.Element;
722
940
 
941
+ /**
942
+ * Book-open icon — SVG downloaded directly from Figma design system.
943
+ * Uses stroke="currentColor" for CSS color control.
944
+ * Source: Figma node 616-3399, stroke-width: 1.25
945
+ */
946
+ declare function BookOpenIcon({ className }: {
947
+ className?: string;
948
+ }): react_jsx_runtime.JSX.Element;
949
+
723
950
  interface BookUpIconProps {
724
951
  className?: string;
725
952
  }
@@ -748,6 +975,15 @@ declare function CircleCheckFillIcon({ className }: {
748
975
  className?: string;
749
976
  }): react_jsx_runtime.JSX.Element;
750
977
 
978
+ /**
979
+ * Circle-help icon — SVG downloaded directly from Figma design system.
980
+ * Uses stroke="currentColor" for CSS color control.
981
+ * Source: Figma node 616-3399, stroke-width: 1.25
982
+ */
983
+ declare function CircleHelpIcon({ className }: {
984
+ className?: string;
985
+ }): react_jsx_runtime.JSX.Element;
986
+
751
987
  /**
752
988
  * Circle-outline icon — stroke-only circle.
753
989
  * SVG downloaded from Figma design system.
@@ -772,10 +1008,27 @@ declare function CodeSquareIcon({ className }: {
772
1008
  className?: string;
773
1009
  }): react_jsx_runtime.JSX.Element;
774
1010
 
1011
+ /**
1012
+ * Credit icon — SVG downloaded directly from Figma design system.
1013
+ * Uses stroke="currentColor" for CSS color control.
1014
+ * Source: Figma node 616-3399, stroke-width: 1.25
1015
+ */
1016
+ declare function CreditIcon({ className }: {
1017
+ className?: string;
1018
+ }): react_jsx_runtime.JSX.Element;
1019
+
775
1020
  declare function DownloadIcon({ className }: {
776
1021
  className?: string;
777
1022
  }): react_jsx_runtime.JSX.Element;
778
1023
 
1024
+ declare function DriveIcon({ className }: {
1025
+ className?: string;
1026
+ }): react_jsx_runtime.JSX.Element;
1027
+
1028
+ declare function EmptyTrayIcon({ className }: {
1029
+ className?: string;
1030
+ }): react_jsx_runtime.JSX.Element;
1031
+
779
1032
  /**
780
1033
  * File-code icon — SVG downloaded from Figma design system.
781
1034
  * Source: public/icons/file-code.svg
@@ -792,6 +1045,10 @@ declare function FileSearchIcon({ className }: {
792
1045
  className?: string;
793
1046
  }): react_jsx_runtime.JSX.Element;
794
1047
 
1048
+ declare function FileTypeCornerIcon({ className }: {
1049
+ className?: string;
1050
+ }): react_jsx_runtime.JSX.Element;
1051
+
795
1052
  /**
796
1053
  * Folder-amber icon — amber-colored folder from Figma design system.
797
1054
  * Uses <img> to preserve complex gradient fills and filters.
@@ -801,6 +1058,27 @@ declare function FolderAmberIcon({ className }: {
801
1058
  className?: string;
802
1059
  }): react_jsx_runtime.JSX.Element;
803
1060
 
1061
+ declare function FolderBlueIcon({ className }: {
1062
+ className?: string;
1063
+ }): react_jsx_runtime.JSX.Element;
1064
+
1065
+ /**
1066
+ * Folder-closed icon — SVG downloaded directly from Figma design system.
1067
+ * Uses stroke="currentColor" for CSS color control.
1068
+ * Source: Figma node 616-3399, stroke-width: 1.02
1069
+ */
1070
+ declare function FolderClosedIcon({ className }: {
1071
+ className?: string;
1072
+ }): react_jsx_runtime.JSX.Element;
1073
+
1074
+ declare function FolderGreenIcon({ className }: {
1075
+ className?: string;
1076
+ }): react_jsx_runtime.JSX.Element;
1077
+
1078
+ declare function FolderVioletIcon({ className }: {
1079
+ className?: string;
1080
+ }): react_jsx_runtime.JSX.Element;
1081
+
804
1082
  /**
805
1083
  * Heading icon — SVG downloaded from Figma design system.
806
1084
  * Source: Figma node (lucide/heading)
@@ -837,6 +1115,15 @@ declare function ItalicIcon({ className }: {
837
1115
  className?: string;
838
1116
  }): react_jsx_runtime.JSX.Element;
839
1117
 
1118
+ /**
1119
+ * Key-round icon — SVG downloaded directly from Figma design system.
1120
+ * Uses stroke="currentColor" for CSS color control.
1121
+ * Source: Figma node 616-3399, stroke-width: 1.02
1122
+ */
1123
+ declare function KeyRoundIcon({ className }: {
1124
+ className?: string;
1125
+ }): react_jsx_runtime.JSX.Element;
1126
+
840
1127
  declare function LayersIcon({ className }: {
841
1128
  className?: string;
842
1129
  }): react_jsx_runtime.JSX.Element;
@@ -882,6 +1169,24 @@ declare function ListOrderedIcon({ className }: {
882
1169
  className?: string;
883
1170
  }): react_jsx_runtime.JSX.Element;
884
1171
 
1172
+ /**
1173
+ * Message-circle icon — SVG downloaded directly from Figma design system.
1174
+ * Uses stroke="currentColor" for CSS color control.
1175
+ * Source: Figma node 616-3399, stroke-width: 1.25
1176
+ */
1177
+ declare function MessageCircleIcon({ className }: {
1178
+ className?: string;
1179
+ }): react_jsx_runtime.JSX.Element;
1180
+
1181
+ /**
1182
+ * Messages-square icon — SVG downloaded directly from Figma design system.
1183
+ * Uses stroke="currentColor" for CSS color control.
1184
+ * Source: Figma node 616-3399, stroke-width: 1.25
1185
+ */
1186
+ declare function MessagesSquareIcon({ className }: {
1187
+ className?: string;
1188
+ }): react_jsx_runtime.JSX.Element;
1189
+
885
1190
  declare function MyPageIcon({ className }: {
886
1191
  className?: string;
887
1192
  }): react_jsx_runtime.JSX.Element;
@@ -894,6 +1199,19 @@ declare function OutdentIcon({ className }: {
894
1199
  className?: string;
895
1200
  }): react_jsx_runtime.JSX.Element;
896
1201
 
1202
+ /**
1203
+ * Panel-left icon — SVG downloaded directly from Figma design system.
1204
+ * Uses stroke="currentColor" for CSS color control.
1205
+ * Source: Figma node 616-3399, stroke-width: 1.25
1206
+ */
1207
+ declare function PanelLeftIcon({ className }: {
1208
+ className?: string;
1209
+ }): react_jsx_runtime.JSX.Element;
1210
+
1211
+ declare function PdfFileIcon({ className }: {
1212
+ className?: string;
1213
+ }): react_jsx_runtime.JSX.Element;
1214
+
897
1215
  interface PenLineIconProps {
898
1216
  className?: string;
899
1217
  }
@@ -916,6 +1234,22 @@ declare function PresentationIcon({ className }: {
916
1234
  className?: string;
917
1235
  }): react_jsx_runtime.JSX.Element;
918
1236
 
1237
+ declare function SheetFileIcon({ className }: {
1238
+ className?: string;
1239
+ }): react_jsx_runtime.JSX.Element;
1240
+
1241
+ /**
1242
+ * Shopping Bag icon — SVG from public/icons/shopping-bag.svg
1243
+ * Uses stroke="currentColor" for CSS color control.
1244
+ */
1245
+ declare function ShoppingBagIcon({ className }: {
1246
+ className?: string;
1247
+ }): react_jsx_runtime.JSX.Element;
1248
+
1249
+ declare function SlideFileIcon({ className }: {
1250
+ className?: string;
1251
+ }): react_jsx_runtime.JSX.Element;
1252
+
919
1253
  /**
920
1254
  * Smile icon — SVG downloaded from Figma design system.
921
1255
  * Source: public/icons/smile.svg
@@ -989,30 +1323,8 @@ declare function WandSparklesIcon({ className }: {
989
1323
  className?: string;
990
1324
  }): react_jsx_runtime.JSX.Element;
991
1325
 
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 }: {
1326
+ declare function WordFileIcon({ className }: {
1015
1327
  className?: string;
1016
1328
  }): react_jsx_runtime.JSX.Element;
1017
1329
 
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 };
1330
+ export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, AgentBlogIcon, AgentCsIcon, AgentDataIcon, AgentHrIcon, AgentMailIcon, AgentTrendIcon, 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, Drawer, type DrawerProps, DriveIcon, Empty, EmptyTrayIcon, Field, FieldDivider, type FieldProps, FieldRow, type FieldRowProps, FieldSection, type FieldSectionProps, FileCodeIcon, FileSearchIcon, FileTypeCornerIcon, FolderAmberIcon, FolderBlueIcon, FolderClosedIcon, FolderGreenIcon, FolderVioletIcon, GeminiIcon, GoogleIcon, GroupedSelect, Header, type HeaderNavItem, type HeaderProps, HeadingIcon, ICON_NODES, Icon, type IconProps, ImageIcon, ImportIcon, IndentIcon, ItalicIcon, KbCard, type KbCardMetadataItem, 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, Pagination, PanelLeftIcon, PdfFileIcon, PenLineIcon, PencilLineIcon, PresentationIcon, Providers, RyaiLogoIcon, SearchInput, type SearchInputProps, SegmentedControl, Select, type SelectGroup, type SelectOption, type SelectProps, Sheet, SheetFileIcon, ShoppingBagIcon, Sidebar, SidebarLink, type SidebarMainMenuItem, type SidebarSubMenuItem, type SidebarUtilityItem, SlideFileIcon, Slider, SmileIcon, type SortDirection, SortIcon, SparklesIcon, SquareCheckIcon, SquareCheckOutlineIcon, StarIcon, Stepper, type StepperProps, type StepperStep, StrikethroughIcon, Switch, SwitchField, type SwitchFieldProps, Table, type TableColumn, type TablePaginationConfig, TablePropertiesIcon, type TableProps, type TableSortingItem, Tooltip, type TooltipProps, TooltipProvider, TooltipWithIcon, type TooltipWithIconProps, TrashIcon, UpstageIcon, type UserMenuSection, type UserMenuSectionItem, UserMessageBubble, WandSparklesIcon, WordFileIcon, buttonVariants };