@mondrianai/runyourai-design-system 0.0.3 → 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.mts +92 -7
- package/dist/index.d.ts +92 -7
- package/dist/index.js +1035 -699
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1021 -703
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -99,6 +99,7 @@ interface BreadcrumbProps extends React__default.ComponentPropsWithoutRef<'nav'>
|
|
|
99
99
|
items: {
|
|
100
100
|
label: string;
|
|
101
101
|
href?: string;
|
|
102
|
+
onClick?: () => void;
|
|
102
103
|
}[];
|
|
103
104
|
separator?: BreadcrumbSeparator;
|
|
104
105
|
collapse?: 'dropdown' | 'ellipsis';
|
|
@@ -170,6 +171,24 @@ interface DataSectionProps {
|
|
|
170
171
|
}
|
|
171
172
|
declare function DataSection({ title, left, right, className, children, }: DataSectionProps): react_jsx_runtime.JSX.Element;
|
|
172
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
|
+
|
|
173
192
|
interface CheckboxProps extends React$1.ComponentPropsWithoutRef<typeof Checkbox$1.Root> {
|
|
174
193
|
/** Optional label rendered to the right of the checkbox */
|
|
175
194
|
label?: string;
|
|
@@ -418,11 +437,13 @@ interface IconProps extends React$1.SVGProps<SVGSVGElement> {
|
|
|
418
437
|
*/
|
|
419
438
|
declare function Icon({ name, className, strokeWidth, ...props }: IconProps): react_jsx_runtime.JSX.Element | null;
|
|
420
439
|
|
|
440
|
+
interface KbCardMetadataItem {
|
|
441
|
+
label: string;
|
|
442
|
+
value: React$1.ReactNode;
|
|
443
|
+
}
|
|
421
444
|
interface KbCardProps {
|
|
422
445
|
name: string;
|
|
423
|
-
|
|
424
|
-
updatedAt: string;
|
|
425
|
-
connectedAgents: number | null;
|
|
446
|
+
metadata?: KbCardMetadataItem[];
|
|
426
447
|
icon?: React$1.ReactNode;
|
|
427
448
|
selectable?: boolean;
|
|
428
449
|
checked?: boolean;
|
|
@@ -431,7 +452,7 @@ interface KbCardProps {
|
|
|
431
452
|
onClick?: () => void;
|
|
432
453
|
className?: string;
|
|
433
454
|
}
|
|
434
|
-
declare function KbCard({ name,
|
|
455
|
+
declare function KbCard({ name, metadata, icon, selectable, checked, onCheckedChange, onClick, className, }: KbCardProps): react_jsx_runtime.JSX.Element;
|
|
435
456
|
|
|
436
457
|
declare function MarkdownMessage({ content, isStreaming, footerMeta, className, }: {
|
|
437
458
|
content: string;
|
|
@@ -763,13 +784,13 @@ interface TableProps<T> {
|
|
|
763
784
|
declare function SortIcon({ direction }: {
|
|
764
785
|
direction: SortDirection;
|
|
765
786
|
}): react_jsx_runtime.JSX.Element;
|
|
766
|
-
interface
|
|
787
|
+
interface PaginationProps {
|
|
767
788
|
currentPage: number;
|
|
768
789
|
totalPages: number;
|
|
769
790
|
onPageChange: (page: number) => void;
|
|
770
791
|
className?: string;
|
|
771
792
|
}
|
|
772
|
-
declare function
|
|
793
|
+
declare function Pagination({ currentPage, totalPages, onPageChange, className, }: PaginationProps): react_jsx_runtime.JSX.Element;
|
|
773
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;
|
|
774
795
|
|
|
775
796
|
declare const TooltipProvider: React$1.FC<Tooltip$1.TooltipProviderProps>;
|
|
@@ -836,6 +857,30 @@ declare function UpstageIcon({ className }: {
|
|
|
836
857
|
className?: string;
|
|
837
858
|
}): react_jsx_runtime.JSX.Element;
|
|
838
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
|
+
|
|
839
884
|
declare function AiAgentIcon({ className }: {
|
|
840
885
|
className?: string;
|
|
841
886
|
}): react_jsx_runtime.JSX.Element;
|
|
@@ -976,6 +1021,14 @@ declare function DownloadIcon({ className }: {
|
|
|
976
1021
|
className?: string;
|
|
977
1022
|
}): react_jsx_runtime.JSX.Element;
|
|
978
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
|
+
|
|
979
1032
|
/**
|
|
980
1033
|
* File-code icon — SVG downloaded from Figma design system.
|
|
981
1034
|
* Source: public/icons/file-code.svg
|
|
@@ -992,6 +1045,10 @@ declare function FileSearchIcon({ className }: {
|
|
|
992
1045
|
className?: string;
|
|
993
1046
|
}): react_jsx_runtime.JSX.Element;
|
|
994
1047
|
|
|
1048
|
+
declare function FileTypeCornerIcon({ className }: {
|
|
1049
|
+
className?: string;
|
|
1050
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1051
|
+
|
|
995
1052
|
/**
|
|
996
1053
|
* Folder-amber icon — amber-colored folder from Figma design system.
|
|
997
1054
|
* Uses <img> to preserve complex gradient fills and filters.
|
|
@@ -1001,6 +1058,10 @@ declare function FolderAmberIcon({ className }: {
|
|
|
1001
1058
|
className?: string;
|
|
1002
1059
|
}): react_jsx_runtime.JSX.Element;
|
|
1003
1060
|
|
|
1061
|
+
declare function FolderBlueIcon({ className }: {
|
|
1062
|
+
className?: string;
|
|
1063
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1064
|
+
|
|
1004
1065
|
/**
|
|
1005
1066
|
* Folder-closed icon — SVG downloaded directly from Figma design system.
|
|
1006
1067
|
* Uses stroke="currentColor" for CSS color control.
|
|
@@ -1010,6 +1071,14 @@ declare function FolderClosedIcon({ className }: {
|
|
|
1010
1071
|
className?: string;
|
|
1011
1072
|
}): react_jsx_runtime.JSX.Element;
|
|
1012
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
|
+
|
|
1013
1082
|
/**
|
|
1014
1083
|
* Heading icon — SVG downloaded from Figma design system.
|
|
1015
1084
|
* Source: Figma node (lucide/heading)
|
|
@@ -1139,6 +1208,10 @@ declare function PanelLeftIcon({ className }: {
|
|
|
1139
1208
|
className?: string;
|
|
1140
1209
|
}): react_jsx_runtime.JSX.Element;
|
|
1141
1210
|
|
|
1211
|
+
declare function PdfFileIcon({ className }: {
|
|
1212
|
+
className?: string;
|
|
1213
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1214
|
+
|
|
1142
1215
|
interface PenLineIconProps {
|
|
1143
1216
|
className?: string;
|
|
1144
1217
|
}
|
|
@@ -1161,6 +1234,10 @@ declare function PresentationIcon({ className }: {
|
|
|
1161
1234
|
className?: string;
|
|
1162
1235
|
}): react_jsx_runtime.JSX.Element;
|
|
1163
1236
|
|
|
1237
|
+
declare function SheetFileIcon({ className }: {
|
|
1238
|
+
className?: string;
|
|
1239
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1240
|
+
|
|
1164
1241
|
/**
|
|
1165
1242
|
* Shopping Bag icon — SVG from public/icons/shopping-bag.svg
|
|
1166
1243
|
* Uses stroke="currentColor" for CSS color control.
|
|
@@ -1169,6 +1246,10 @@ declare function ShoppingBagIcon({ className }: {
|
|
|
1169
1246
|
className?: string;
|
|
1170
1247
|
}): react_jsx_runtime.JSX.Element;
|
|
1171
1248
|
|
|
1249
|
+
declare function SlideFileIcon({ className }: {
|
|
1250
|
+
className?: string;
|
|
1251
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1252
|
+
|
|
1172
1253
|
/**
|
|
1173
1254
|
* Smile icon — SVG downloaded from Figma design system.
|
|
1174
1255
|
* Source: public/icons/smile.svg
|
|
@@ -1242,4 +1323,8 @@ declare function WandSparklesIcon({ className }: {
|
|
|
1242
1323
|
className?: string;
|
|
1243
1324
|
}): react_jsx_runtime.JSX.Element;
|
|
1244
1325
|
|
|
1245
|
-
|
|
1326
|
+
declare function WordFileIcon({ className }: {
|
|
1327
|
+
className?: string;
|
|
1328
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1329
|
+
|
|
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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -99,6 +99,7 @@ interface BreadcrumbProps extends React__default.ComponentPropsWithoutRef<'nav'>
|
|
|
99
99
|
items: {
|
|
100
100
|
label: string;
|
|
101
101
|
href?: string;
|
|
102
|
+
onClick?: () => void;
|
|
102
103
|
}[];
|
|
103
104
|
separator?: BreadcrumbSeparator;
|
|
104
105
|
collapse?: 'dropdown' | 'ellipsis';
|
|
@@ -170,6 +171,24 @@ interface DataSectionProps {
|
|
|
170
171
|
}
|
|
171
172
|
declare function DataSection({ title, left, right, className, children, }: DataSectionProps): react_jsx_runtime.JSX.Element;
|
|
172
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
|
+
|
|
173
192
|
interface CheckboxProps extends React$1.ComponentPropsWithoutRef<typeof Checkbox$1.Root> {
|
|
174
193
|
/** Optional label rendered to the right of the checkbox */
|
|
175
194
|
label?: string;
|
|
@@ -418,11 +437,13 @@ interface IconProps extends React$1.SVGProps<SVGSVGElement> {
|
|
|
418
437
|
*/
|
|
419
438
|
declare function Icon({ name, className, strokeWidth, ...props }: IconProps): react_jsx_runtime.JSX.Element | null;
|
|
420
439
|
|
|
440
|
+
interface KbCardMetadataItem {
|
|
441
|
+
label: string;
|
|
442
|
+
value: React$1.ReactNode;
|
|
443
|
+
}
|
|
421
444
|
interface KbCardProps {
|
|
422
445
|
name: string;
|
|
423
|
-
|
|
424
|
-
updatedAt: string;
|
|
425
|
-
connectedAgents: number | null;
|
|
446
|
+
metadata?: KbCardMetadataItem[];
|
|
426
447
|
icon?: React$1.ReactNode;
|
|
427
448
|
selectable?: boolean;
|
|
428
449
|
checked?: boolean;
|
|
@@ -431,7 +452,7 @@ interface KbCardProps {
|
|
|
431
452
|
onClick?: () => void;
|
|
432
453
|
className?: string;
|
|
433
454
|
}
|
|
434
|
-
declare function KbCard({ name,
|
|
455
|
+
declare function KbCard({ name, metadata, icon, selectable, checked, onCheckedChange, onClick, className, }: KbCardProps): react_jsx_runtime.JSX.Element;
|
|
435
456
|
|
|
436
457
|
declare function MarkdownMessage({ content, isStreaming, footerMeta, className, }: {
|
|
437
458
|
content: string;
|
|
@@ -763,13 +784,13 @@ interface TableProps<T> {
|
|
|
763
784
|
declare function SortIcon({ direction }: {
|
|
764
785
|
direction: SortDirection;
|
|
765
786
|
}): react_jsx_runtime.JSX.Element;
|
|
766
|
-
interface
|
|
787
|
+
interface PaginationProps {
|
|
767
788
|
currentPage: number;
|
|
768
789
|
totalPages: number;
|
|
769
790
|
onPageChange: (page: number) => void;
|
|
770
791
|
className?: string;
|
|
771
792
|
}
|
|
772
|
-
declare function
|
|
793
|
+
declare function Pagination({ currentPage, totalPages, onPageChange, className, }: PaginationProps): react_jsx_runtime.JSX.Element;
|
|
773
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;
|
|
774
795
|
|
|
775
796
|
declare const TooltipProvider: React$1.FC<Tooltip$1.TooltipProviderProps>;
|
|
@@ -836,6 +857,30 @@ declare function UpstageIcon({ className }: {
|
|
|
836
857
|
className?: string;
|
|
837
858
|
}): react_jsx_runtime.JSX.Element;
|
|
838
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
|
+
|
|
839
884
|
declare function AiAgentIcon({ className }: {
|
|
840
885
|
className?: string;
|
|
841
886
|
}): react_jsx_runtime.JSX.Element;
|
|
@@ -976,6 +1021,14 @@ declare function DownloadIcon({ className }: {
|
|
|
976
1021
|
className?: string;
|
|
977
1022
|
}): react_jsx_runtime.JSX.Element;
|
|
978
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
|
+
|
|
979
1032
|
/**
|
|
980
1033
|
* File-code icon — SVG downloaded from Figma design system.
|
|
981
1034
|
* Source: public/icons/file-code.svg
|
|
@@ -992,6 +1045,10 @@ declare function FileSearchIcon({ className }: {
|
|
|
992
1045
|
className?: string;
|
|
993
1046
|
}): react_jsx_runtime.JSX.Element;
|
|
994
1047
|
|
|
1048
|
+
declare function FileTypeCornerIcon({ className }: {
|
|
1049
|
+
className?: string;
|
|
1050
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1051
|
+
|
|
995
1052
|
/**
|
|
996
1053
|
* Folder-amber icon — amber-colored folder from Figma design system.
|
|
997
1054
|
* Uses <img> to preserve complex gradient fills and filters.
|
|
@@ -1001,6 +1058,10 @@ declare function FolderAmberIcon({ className }: {
|
|
|
1001
1058
|
className?: string;
|
|
1002
1059
|
}): react_jsx_runtime.JSX.Element;
|
|
1003
1060
|
|
|
1061
|
+
declare function FolderBlueIcon({ className }: {
|
|
1062
|
+
className?: string;
|
|
1063
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1064
|
+
|
|
1004
1065
|
/**
|
|
1005
1066
|
* Folder-closed icon — SVG downloaded directly from Figma design system.
|
|
1006
1067
|
* Uses stroke="currentColor" for CSS color control.
|
|
@@ -1010,6 +1071,14 @@ declare function FolderClosedIcon({ className }: {
|
|
|
1010
1071
|
className?: string;
|
|
1011
1072
|
}): react_jsx_runtime.JSX.Element;
|
|
1012
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
|
+
|
|
1013
1082
|
/**
|
|
1014
1083
|
* Heading icon — SVG downloaded from Figma design system.
|
|
1015
1084
|
* Source: Figma node (lucide/heading)
|
|
@@ -1139,6 +1208,10 @@ declare function PanelLeftIcon({ className }: {
|
|
|
1139
1208
|
className?: string;
|
|
1140
1209
|
}): react_jsx_runtime.JSX.Element;
|
|
1141
1210
|
|
|
1211
|
+
declare function PdfFileIcon({ className }: {
|
|
1212
|
+
className?: string;
|
|
1213
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1214
|
+
|
|
1142
1215
|
interface PenLineIconProps {
|
|
1143
1216
|
className?: string;
|
|
1144
1217
|
}
|
|
@@ -1161,6 +1234,10 @@ declare function PresentationIcon({ className }: {
|
|
|
1161
1234
|
className?: string;
|
|
1162
1235
|
}): react_jsx_runtime.JSX.Element;
|
|
1163
1236
|
|
|
1237
|
+
declare function SheetFileIcon({ className }: {
|
|
1238
|
+
className?: string;
|
|
1239
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1240
|
+
|
|
1164
1241
|
/**
|
|
1165
1242
|
* Shopping Bag icon — SVG from public/icons/shopping-bag.svg
|
|
1166
1243
|
* Uses stroke="currentColor" for CSS color control.
|
|
@@ -1169,6 +1246,10 @@ declare function ShoppingBagIcon({ className }: {
|
|
|
1169
1246
|
className?: string;
|
|
1170
1247
|
}): react_jsx_runtime.JSX.Element;
|
|
1171
1248
|
|
|
1249
|
+
declare function SlideFileIcon({ className }: {
|
|
1250
|
+
className?: string;
|
|
1251
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1252
|
+
|
|
1172
1253
|
/**
|
|
1173
1254
|
* Smile icon — SVG downloaded from Figma design system.
|
|
1174
1255
|
* Source: public/icons/smile.svg
|
|
@@ -1242,4 +1323,8 @@ declare function WandSparklesIcon({ className }: {
|
|
|
1242
1323
|
className?: string;
|
|
1243
1324
|
}): react_jsx_runtime.JSX.Element;
|
|
1244
1325
|
|
|
1245
|
-
|
|
1326
|
+
declare function WordFileIcon({ className }: {
|
|
1327
|
+
className?: string;
|
|
1328
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1329
|
+
|
|
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 };
|