@sustaina/shared-ui 1.49.2 → 1.51.0
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 +103 -9
- package/dist/index.d.ts +103 -9
- package/dist/index.js +1697 -86
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1699 -90
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -132,6 +132,7 @@ interface FieldSchemaBase<T extends FieldType> {
|
|
|
132
132
|
label?: string;
|
|
133
133
|
multiTableSearch?: boolean;
|
|
134
134
|
lookupFieldName?: string;
|
|
135
|
+
enableNullOperators?: boolean;
|
|
135
136
|
}
|
|
136
137
|
type DropdownFieldSchema = FieldSchemaBase<"dropdown"> & ({
|
|
137
138
|
options: Option[];
|
|
@@ -171,7 +172,7 @@ interface JSONFieldSchema extends FieldSchemaBase<"json"> {
|
|
|
171
172
|
loadingMessage?: string;
|
|
172
173
|
}
|
|
173
174
|
type FieldSchema = DropdownFieldSchema | TextFieldSchema | NumberFieldSchema | DateFieldSchema | DateTimeFieldSchema | DateMonthFieldSchema | CheckboxFieldSchema | LookupFieldSchema | UUIDFieldSchema | JSONFieldSchema;
|
|
174
|
-
type OperatorValue = "contains" | "equals" | "beginsWith" | "endsWith" | "notEquals" | "notBeginsWith" | "notEndsWith" | "notContains" | "gt" | "gte" | "lt" | "lte" | "on" | "after" | "before" | "between" | "is" | "isNot" | "containsAny" | "containsOnly" | "containsAll";
|
|
175
|
+
type OperatorValue = "contains" | "equals" | "beginsWith" | "endsWith" | "notEquals" | "notBeginsWith" | "notEndsWith" | "notContains" | "gt" | "gte" | "lt" | "lte" | "on" | "after" | "before" | "between" | "is" | "isNot" | "containsAny" | "containsOnly" | "containsAll" | "isNull" | "isNotNull";
|
|
175
176
|
type RowState = {
|
|
176
177
|
id: string;
|
|
177
178
|
fieldName: string;
|
|
@@ -1250,12 +1251,33 @@ type ImagePayload = {
|
|
|
1250
1251
|
|
|
1251
1252
|
type RichTextSerializedState = string;
|
|
1252
1253
|
type ImageUploadResult = ImagePayload | string;
|
|
1253
|
-
|
|
1254
|
-
|
|
1254
|
+
/**
|
|
1255
|
+
* Configuration for mapping mention item fields
|
|
1256
|
+
* Allows flexible field names for different data structures
|
|
1257
|
+
*/
|
|
1258
|
+
type MentionConfig$1<T> = {
|
|
1259
|
+
/** Function to get the unique identifier from mention item */
|
|
1260
|
+
getId: (item: T) => string;
|
|
1261
|
+
/** Function to get the mention key/name (e.g., "{{FIRSTNAME}}") from mention item */
|
|
1262
|
+
getName: (item: T) => string;
|
|
1263
|
+
/** Function to get the display label (e.g., "First Name") from mention item */
|
|
1264
|
+
getLabel: (item: T) => string;
|
|
1265
|
+
};
|
|
1266
|
+
/**
|
|
1267
|
+
* Default mention item structure
|
|
1268
|
+
*/
|
|
1269
|
+
type DefaultMentionItem$1 = {
|
|
1270
|
+
id: string;
|
|
1271
|
+
name: string;
|
|
1272
|
+
fieldName: string;
|
|
1273
|
+
};
|
|
1274
|
+
type RichTextProps<T = DefaultMentionItem$1> = {
|
|
1255
1275
|
value?: RichTextSerializedState;
|
|
1256
1276
|
defaultValue?: RichTextSerializedState;
|
|
1257
1277
|
onChange?: (serializedState: RichTextSerializedState, editorState: EditorState) => void;
|
|
1258
1278
|
onHtmlChange?: (html: string, editorState: EditorState) => void;
|
|
1279
|
+
/** Callback for plain text output - useful for form validation. Returns text content without HTML */
|
|
1280
|
+
onTextChange?: (text: string, editorState: EditorState) => void;
|
|
1259
1281
|
placeholder?: string;
|
|
1260
1282
|
readOnly?: boolean;
|
|
1261
1283
|
disabled?: boolean;
|
|
@@ -1268,7 +1290,20 @@ declare const RichText: React$1.ForwardRefExoticComponent<{
|
|
|
1268
1290
|
onImageDialogUploadError?: (error: unknown) => void;
|
|
1269
1291
|
acceptImageMimeTypes?: string;
|
|
1270
1292
|
allowImageUrlInsert?: boolean;
|
|
1271
|
-
|
|
1293
|
+
/** Array of mention items that will be suggested */
|
|
1294
|
+
mentions?: T[];
|
|
1295
|
+
/** Configuration for mapping mention item fields. If not provided, assumes default structure {id, name, fieldName} */
|
|
1296
|
+
mentionConfig?: MentionConfig$1<T>;
|
|
1297
|
+
/** Optional trigger character for mentions (e.g., "$", "@"). If not provided, suggestions appear when typing matching text */
|
|
1298
|
+
mentionTrigger?: string;
|
|
1299
|
+
/** If true, mentions will be rendered as plain text (e.g., {{FIRSTNAME}}) suitable for mail templates. If false, mentions will be styled HTML tags */
|
|
1300
|
+
plainTextMentions?: boolean;
|
|
1301
|
+
} & Omit<React.HTMLAttributes<HTMLDivElement>, "onChange">;
|
|
1302
|
+
|
|
1303
|
+
declare function RichTextInner<T = DefaultMentionItem$1>({ value, defaultValue, onChange, onHtmlChange, onTextChange, placeholder, readOnly, disabled, editorClassName, toolbarClassName, autoFocus, onImageUpload, onImageUploadError, onImageDialogUpload, onImageDialogUploadError, acceptImageMimeTypes, allowImageUrlInsert, mentions, mentionConfig, mentionTrigger, plainTextMentions, className, id, ...rest }: RichTextProps<T>, ref: React.Ref<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
1304
|
+
declare const RichText: <T = DefaultMentionItem$1>(props: RichTextProps<T> & {
|
|
1305
|
+
ref?: React.Ref<HTMLDivElement>;
|
|
1306
|
+
}) => ReturnType<typeof RichTextInner>;
|
|
1272
1307
|
|
|
1273
1308
|
type RightPanelContainerSlots = {
|
|
1274
1309
|
Container?: React$1.ElementType<any>;
|
|
@@ -1361,10 +1396,10 @@ declare const Spinner: ({ className, variant, size, ...props }: SpinnerProps) =>
|
|
|
1361
1396
|
|
|
1362
1397
|
declare function Switch({ className, ...props }: React$1.ComponentProps<typeof SwitchPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
1363
1398
|
|
|
1364
|
-
type
|
|
1399
|
+
type TextAreaProps = React$1.ComponentProps<"textarea"> & {
|
|
1365
1400
|
autoResize?: boolean;
|
|
1366
1401
|
};
|
|
1367
|
-
declare function
|
|
1402
|
+
declare function TextArea({ className, autoResize, ...props }: TextAreaProps): react_jsx_runtime.JSX.Element;
|
|
1368
1403
|
|
|
1369
1404
|
declare function TooltipProvider$1({ delayDuration, ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Provider>): react_jsx_runtime.JSX.Element;
|
|
1370
1405
|
declare function Tooltip$1({ children, ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
@@ -1475,14 +1510,14 @@ declare const index_TableFooter: typeof TableFooter;
|
|
|
1475
1510
|
declare const index_TableHead: typeof TableHead;
|
|
1476
1511
|
declare const index_TableHeader: typeof TableHeader;
|
|
1477
1512
|
declare const index_TableRow: typeof TableRow;
|
|
1478
|
-
declare const
|
|
1513
|
+
declare const index_TextArea: typeof TextArea;
|
|
1479
1514
|
declare const index_buttonVariants: typeof buttonVariants;
|
|
1480
1515
|
declare const index_spinnerVariants: typeof spinnerVariants;
|
|
1481
1516
|
declare const index_useCarousel: typeof useCarousel;
|
|
1482
1517
|
declare const index_useFormField: typeof useFormField;
|
|
1483
1518
|
declare const index_useSidebar: typeof useSidebar;
|
|
1484
1519
|
declare namespace index {
|
|
1485
|
-
export { index_Accordion as Accordion, index_AccordionContent as AccordionContent, index_AccordionItem as AccordionItem, index_AccordionTrigger as AccordionTrigger, index_Button as Button, index_Carousel as Carousel, type index_CarouselApi as CarouselApi, index_CarouselContent as CarouselContent, index_CarouselDots as CarouselDots, index_CarouselItem as CarouselItem, index_CarouselNext as CarouselNext, index_CarouselPrevious as CarouselPrevious, index_CarouselThumbnails as CarouselThumbnails, index_Checkbox as Checkbox, index_ClearButton as ClearButton, index_Collapsible as Collapsible, index_CollapsibleContent as CollapsibleContent, index_CollapsibleTrigger as CollapsibleTrigger, DatePicker$1 as DatePicker, Dialog$1 as Dialog, index_DialogContent as DialogContent, type index_DialogContentProps as DialogContentProps, index_DialogDescription as DialogDescription, index_DialogFooter as DialogFooter, index_DialogTitle as DialogTitle, index_DialogTrigger as DialogTrigger, index_Form as Form, index_FormControl as FormControl, index_FormDescription as FormDescription, index_FormField as FormField, index_FormItem as FormItem, index_FormLabel as FormLabel, index_FormMessage as FormMessage, index_Input as Input, index_InputPrimitive as InputPrimitive, type InputPrimitiveProps$1 as InputPrimitiveProps, type InputProps$1 as InputProps, index_Label as Label, index_ListContainer as ListContainer, type index_ListContainerProps as ListContainerProps, index_ListHeader as ListHeader, type index_ListHeaderProps as ListHeaderProps, MonthPicker$1 as MonthPicker, type MonthPickerProps$1 as MonthPickerProps, index_Popover as Popover, index_PopoverAnchor as PopoverAnchor, index_PopoverArrow as PopoverArrow, index_PopoverContent as PopoverContent, index_PopoverTrigger as PopoverTrigger, index_RadioGroupItem as RadioGroupItem, index_RadioGroupRoot as RadioGroupRoot, index_RadioLabel as RadioLabel, index_Select as Select, index_SelectContent as SelectContent, index_SelectGroup as SelectGroup, index_SelectItem as SelectItem, index_SelectLabel as SelectLabel, index_SelectScrollDownButton as SelectScrollDownButton, index_SelectScrollUpButton as SelectScrollUpButton, index_SelectSeparator as SelectSeparator, index_SelectTrigger as SelectTrigger, index_SelectValue as SelectValue, index_Separator as Separator, index_Sheet as Sheet, index_SheetClose as SheetClose, index_SheetContent as SheetContent, index_SheetDescription as SheetDescription, index_SheetFooter as SheetFooter, index_SheetHeader as SheetHeader, index_SheetTitle as SheetTitle, index_SheetTrigger as SheetTrigger, index_Sidebar as Sidebar, index_SidebarContent as SidebarContent, index_SidebarFooter as SidebarFooter, index_SidebarGroup as SidebarGroup, index_SidebarGroupAction as SidebarGroupAction, index_SidebarGroupContent as SidebarGroupContent, index_SidebarGroupLabel as SidebarGroupLabel, index_SidebarHeader as SidebarHeader, index_SidebarInput as SidebarInput, index_SidebarInset as SidebarInset, index_SidebarLayout as SidebarLayout, index_SidebarMenu as SidebarMenu, index_SidebarMenuAction as SidebarMenuAction, index_SidebarMenuBadge as SidebarMenuBadge, index_SidebarMenuButton as SidebarMenuButton, index_SidebarMenuItem as SidebarMenuItem, index_SidebarMenuSkeleton as SidebarMenuSkeleton, index_SidebarMenuSub as SidebarMenuSub, index_SidebarMenuSubButton as SidebarMenuSubButton, index_SidebarMenuSubItem as SidebarMenuSubItem, index_SidebarProvider as SidebarProvider, index_SidebarRail as SidebarRail, index_SidebarSeparator as SidebarSeparator, index_SidebarTrigger as SidebarTrigger, index_Skeleton as Skeleton, index_Spinner as Spinner, type index_SpinnerProps as SpinnerProps, index_Switch as Switch, index_Table as Table, index_TableBody as TableBody, index_TableCaption as TableCaption, index_TableCell as TableCell, index_TableContainer as TableContainer, index_TableFooter as TableFooter, index_TableHead as TableHead, index_TableHeader as TableHeader, index_TableRow as TableRow,
|
|
1520
|
+
export { index_Accordion as Accordion, index_AccordionContent as AccordionContent, index_AccordionItem as AccordionItem, index_AccordionTrigger as AccordionTrigger, index_Button as Button, index_Carousel as Carousel, type index_CarouselApi as CarouselApi, index_CarouselContent as CarouselContent, index_CarouselDots as CarouselDots, index_CarouselItem as CarouselItem, index_CarouselNext as CarouselNext, index_CarouselPrevious as CarouselPrevious, index_CarouselThumbnails as CarouselThumbnails, index_Checkbox as Checkbox, index_ClearButton as ClearButton, index_Collapsible as Collapsible, index_CollapsibleContent as CollapsibleContent, index_CollapsibleTrigger as CollapsibleTrigger, DatePicker$1 as DatePicker, Dialog$1 as Dialog, index_DialogContent as DialogContent, type index_DialogContentProps as DialogContentProps, index_DialogDescription as DialogDescription, index_DialogFooter as DialogFooter, index_DialogTitle as DialogTitle, index_DialogTrigger as DialogTrigger, index_Form as Form, index_FormControl as FormControl, index_FormDescription as FormDescription, index_FormField as FormField, index_FormItem as FormItem, index_FormLabel as FormLabel, index_FormMessage as FormMessage, index_Input as Input, index_InputPrimitive as InputPrimitive, type InputPrimitiveProps$1 as InputPrimitiveProps, type InputProps$1 as InputProps, index_Label as Label, index_ListContainer as ListContainer, type index_ListContainerProps as ListContainerProps, index_ListHeader as ListHeader, type index_ListHeaderProps as ListHeaderProps, MonthPicker$1 as MonthPicker, type MonthPickerProps$1 as MonthPickerProps, index_Popover as Popover, index_PopoverAnchor as PopoverAnchor, index_PopoverArrow as PopoverArrow, index_PopoverContent as PopoverContent, index_PopoverTrigger as PopoverTrigger, index_RadioGroupItem as RadioGroupItem, index_RadioGroupRoot as RadioGroupRoot, index_RadioLabel as RadioLabel, index_Select as Select, index_SelectContent as SelectContent, index_SelectGroup as SelectGroup, index_SelectItem as SelectItem, index_SelectLabel as SelectLabel, index_SelectScrollDownButton as SelectScrollDownButton, index_SelectScrollUpButton as SelectScrollUpButton, index_SelectSeparator as SelectSeparator, index_SelectTrigger as SelectTrigger, index_SelectValue as SelectValue, index_Separator as Separator, index_Sheet as Sheet, index_SheetClose as SheetClose, index_SheetContent as SheetContent, index_SheetDescription as SheetDescription, index_SheetFooter as SheetFooter, index_SheetHeader as SheetHeader, index_SheetTitle as SheetTitle, index_SheetTrigger as SheetTrigger, index_Sidebar as Sidebar, index_SidebarContent as SidebarContent, index_SidebarFooter as SidebarFooter, index_SidebarGroup as SidebarGroup, index_SidebarGroupAction as SidebarGroupAction, index_SidebarGroupContent as SidebarGroupContent, index_SidebarGroupLabel as SidebarGroupLabel, index_SidebarHeader as SidebarHeader, index_SidebarInput as SidebarInput, index_SidebarInset as SidebarInset, index_SidebarLayout as SidebarLayout, index_SidebarMenu as SidebarMenu, index_SidebarMenuAction as SidebarMenuAction, index_SidebarMenuBadge as SidebarMenuBadge, index_SidebarMenuButton as SidebarMenuButton, index_SidebarMenuItem as SidebarMenuItem, index_SidebarMenuSkeleton as SidebarMenuSkeleton, index_SidebarMenuSub as SidebarMenuSub, index_SidebarMenuSubButton as SidebarMenuSubButton, index_SidebarMenuSubItem as SidebarMenuSubItem, index_SidebarProvider as SidebarProvider, index_SidebarRail as SidebarRail, index_SidebarSeparator as SidebarSeparator, index_SidebarTrigger as SidebarTrigger, index_Skeleton as Skeleton, index_Spinner as Spinner, type index_SpinnerProps as SpinnerProps, index_Switch as Switch, index_Table as Table, index_TableBody as TableBody, index_TableCaption as TableCaption, index_TableCell as TableCell, index_TableContainer as TableContainer, index_TableFooter as TableFooter, index_TableHead as TableHead, index_TableHeader as TableHeader, index_TableRow as TableRow, index_TextArea as TextArea, Tooltip$1 as Tooltip, TooltipContent$1 as TooltipContent, TooltipProvider$1 as TooltipProvider, TooltipTrigger$1 as TooltipTrigger, index_buttonVariants as buttonVariants, inputVariants$1 as inputVariants, index_spinnerVariants as spinnerVariants, index_useCarousel as useCarousel, index_useFormField as useFormField, index_useSidebar as useSidebar };
|
|
1486
1521
|
}
|
|
1487
1522
|
|
|
1488
1523
|
type SidebarContextProps = {
|
|
@@ -1556,6 +1591,20 @@ type SidebarLayoutProps = Omit<React$1.ComponentProps<typeof SidebarProvider>, "
|
|
|
1556
1591
|
};
|
|
1557
1592
|
declare function SidebarLayout({ sidebar, children, layoutProps, sidebarProps, insetProps, ...providerProps }: SidebarLayoutProps): react_jsx_runtime.JSX.Element;
|
|
1558
1593
|
|
|
1594
|
+
interface TimePickerProps {
|
|
1595
|
+
id?: string;
|
|
1596
|
+
value?: string;
|
|
1597
|
+
/** Callback with ISO time format output (HH:mm:ss.000Z) */
|
|
1598
|
+
onChange?: (isoTime: string) => void;
|
|
1599
|
+
disabled?: boolean;
|
|
1600
|
+
className?: string;
|
|
1601
|
+
placeholder?: string;
|
|
1602
|
+
use24Hour?: boolean;
|
|
1603
|
+
iconPosition?: "start" | "end" | "none";
|
|
1604
|
+
icon?: React$1.ReactNode;
|
|
1605
|
+
}
|
|
1606
|
+
declare const TimePicker: React$1.ForwardRefExoticComponent<TimePickerProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
1607
|
+
|
|
1559
1608
|
declare function TooltipProvider({ delayDuration, ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Provider>): react_jsx_runtime.JSX.Element;
|
|
1560
1609
|
declare function Tooltip({ ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
1561
1610
|
declare function TooltipTrigger({ ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
@@ -1755,6 +1804,7 @@ type ComboboxProps<TData extends OptionData> = React$1.AriaAttributes & Omit<Vir
|
|
|
1755
1804
|
open?: boolean;
|
|
1756
1805
|
onOpenChange?: (isOpen: boolean) => void;
|
|
1757
1806
|
showValueWhenNoMatch?: boolean;
|
|
1807
|
+
virtual?: boolean;
|
|
1758
1808
|
};
|
|
1759
1809
|
declare const Combobox: <TData extends OptionData>(props: ComboboxProps<TData> & React$1.RefAttributes<HTMLButtonElement>) => React$1.ReactElement | null;
|
|
1760
1810
|
|
|
@@ -1783,6 +1833,50 @@ interface TabSelectProps<T extends string = string> {
|
|
|
1783
1833
|
}
|
|
1784
1834
|
declare const TabSelect: <T extends string = string>({ items, onSelectTab, labelWrapperClassName, labelClassName, activeBorderClassName, separatorClassName, ...rest }: ComponentProps<"div"> & TabSelectProps<T>) => react_jsx_runtime.JSX.Element | null;
|
|
1785
1835
|
|
|
1836
|
+
type InputMentionSerializedState = string;
|
|
1837
|
+
/**
|
|
1838
|
+
* Configuration for mapping mention item fields
|
|
1839
|
+
* Allows flexible field names for different data structures
|
|
1840
|
+
*/
|
|
1841
|
+
type MentionConfig<T> = {
|
|
1842
|
+
/** Function to get the unique identifier from mention item */
|
|
1843
|
+
getId: (item: T) => string;
|
|
1844
|
+
/** Function to get the mention key/name (e.g., "{{FIRSTNAME}}") from mention item */
|
|
1845
|
+
getName: (item: T) => string;
|
|
1846
|
+
/** Function to get the display label (e.g., "First Name") from mention item */
|
|
1847
|
+
getLabel: (item: T) => string;
|
|
1848
|
+
};
|
|
1849
|
+
/**
|
|
1850
|
+
* Default mention item structure
|
|
1851
|
+
*/
|
|
1852
|
+
type DefaultMentionItem = {
|
|
1853
|
+
id: string;
|
|
1854
|
+
name: string;
|
|
1855
|
+
fieldName: string;
|
|
1856
|
+
};
|
|
1857
|
+
type InputMentionProps<T = DefaultMentionItem> = {
|
|
1858
|
+
value?: InputMentionSerializedState;
|
|
1859
|
+
onChange?: (plainText: InputMentionSerializedState) => void;
|
|
1860
|
+
placeholder?: string;
|
|
1861
|
+
readOnly?: boolean;
|
|
1862
|
+
disabled?: boolean;
|
|
1863
|
+
editorClassName?: string;
|
|
1864
|
+
autoFocus?: boolean;
|
|
1865
|
+
/** Array of mention items that will be suggested */
|
|
1866
|
+
mentions?: T[];
|
|
1867
|
+
/** Configuration for mapping mention item fields. If not provided, assumes default structure {id, name, fieldName} */
|
|
1868
|
+
mentionConfig?: MentionConfig<T>;
|
|
1869
|
+
/** Optional trigger character for mentions (e.g., "$", "@"). If not provided, suggestions appear when typing matching text */
|
|
1870
|
+
mentionTrigger?: string;
|
|
1871
|
+
/** If true, mentions will be rendered as plain text (e.g., {{FIRSTNAME}}) suitable for mail templates. If false, mentions will be styled HTML tags */
|
|
1872
|
+
plainTextMentions?: boolean;
|
|
1873
|
+
} & Omit<React.HTMLAttributes<HTMLDivElement>, "onChange">;
|
|
1874
|
+
|
|
1875
|
+
declare function InputMentionInner<T = DefaultMentionItem>({ value, onChange, placeholder, readOnly, disabled, editorClassName, autoFocus, mentions, mentionConfig, mentionTrigger, plainTextMentions, className, id, ...rest }: InputMentionProps<T>, ref: React.Ref<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
1876
|
+
declare const InputMention: <T = DefaultMentionItem>(props: InputMentionProps<T> & {
|
|
1877
|
+
ref?: React.Ref<HTMLDivElement>;
|
|
1878
|
+
}) => ReturnType<typeof InputMentionInner>;
|
|
1879
|
+
|
|
1786
1880
|
declare function isDefined<T>(value: T | null | undefined): value is NonNullable<T>;
|
|
1787
1881
|
declare function isEmptyObject(value: any): boolean;
|
|
1788
1882
|
type DebounceOptions = {
|
|
@@ -1954,4 +2048,4 @@ type DeepPartialNullish<T> = T extends BrowserNativeObject ? T | null : {
|
|
|
1954
2048
|
[K in keyof T]?: ExtractObjects<T[K]> extends never ? T[K] | null : DeepPartialNullish<T[K]> | null;
|
|
1955
2049
|
};
|
|
1956
2050
|
|
|
1957
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, type ActionButtonProps, ActionMenu, type ActionMenuProps, AdministrationIcon, AdvanceSearch, AnalyticsIcon, ApplicationLogIcon, ArrowIcon, AuditFooter, type AuditFooterProps, BookmarkIcon, type Breakpoints, BriefcaseBusinessIcon, type BrowserNativeObject, Button, SuiCalendarIcon2 as Calendar2Icon, CalendarDaysIcon, CardIcon, Carousel, type CarouselApi, CarouselContent, CarouselDots, CarouselItem, CarouselNext, CarouselPrevious, CarouselThumbnails, Checkbox, CircleUserIcon, Collapsible, CollapsibleContent, CollapsibleTrigger, type Column, Combobox, type ComboboxProps, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, CopyUserRightsIcon, type CroppedImagePayload, type CroppedImagePayloadWithBlobUrl, CropperModal, CropperModalError, type CropperModalErrorType, type CropperModalProps, CustomActionStatusIcon, CustomFieldIcon, DIALOG_ALERT_I18N_SUBNAMESPACE, DIALOG_ALERT_TEMPLATES, DashboardIcon, DataEntryIcon, DataTable, type DataTableChildrenKeyHandler, type DataTableColumnFilter, type DataTableColumnFilterProps, type DataTableColumnGrouping, type DataTableColumnOrdering, type DataTableColumnPinning, type DataTableColumnSeparatorProps, type DataTableColumnSorting, type DataTableColumnVisibility, type DataTableComponentProps, type DataTableFilterConfig, type DataTableFilters, type DataTableGlobalFilter, type DataTableHeaderCell, type DataTableProps, type DataTableRenderHeaderHandler, type DataTableRenderHeaderProps, type DataTableRenderRowHandler, type DataTableRenderRowProps, type DataTableRowCell, type DataTableRowClickHandler, type DataTableRowExpansion, type DataTableRowIdKeyHandler, type DataTableRowSelection, type DataTableScrollFetch, type DataTableStatusContent, type DataTableVirtual, type DatatableColumnResizing, DatePicker, type DatePickerProps, type DateRange, type DebounceOptions, type DebouncedFunction, DecreaseIcon, type DeepPartial, type DeepPartialNullish, Dialog$1 as Dialog, DialogAlert, type DialogAlertI18nResource, type DialogAlertProps, DialogAlertProvider, type DialogAlertTemplateUnit, type DialogAlertTemplates, DialogContent, type DialogContentProps, DialogDescription, DialogFooter, DialogTitle, DialogTrigger, type DialogVariant, type DraftGuardState, type DraftSource, EllipsisBoxIcon, type EllipsisConfig, type EmptyObject, ErrorCompression, ErrorCreateCanvas, ErrorGeneratingBlob, ErrorInvalidSVG, ErrorSVGExceedSize, type ExtractObjects, FactoryIcon, type FieldSchema, type FieldType, FileCogIcon, FileSpreadsheet, FileTextIcon, FiltersIcon, FolderIcon, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, FormulaEditor, type FormulaEditorProps, type FormulaOperator, type FormulaTokenAttributes, type FormulaTokenConfig, type FormulaTokenSuggestion, type FormulaTokenType, type GridPayload, GridSettingsModal, type GridSettingsModalProps, HamburgerMenuIcon, HandymanIcon, ListHeader as Header, HeaderCell, type HeaderCellProps, HelpIcon, HomeIcon, HomePlusIcon, Image, type ImageLoader, type ImageLoaderProps, ImagePlaceholderIcon, type ImageProps, InformationIcon, Input, type InputCustomInputProps, InputNumber, type InputNumberProps, type InputProps$1 as InputProps, Label, type ListHeaderProps, LookupSelect, type LookupSelectOption, type LookupSelectProps, MailIcon, MainListContainer, type MainListContainerClassNames, type MainListContainerProps, type MainListContainerSlots, ManIcon, ManagementIcon, MenuIcon, MessageIcon, MessageIconInverse, MessageSquareIcon, MonthPicker, type MonthPickerProps, type MonthRange, _default as Navbar, type NavbarProps, NotFoundIcon, type OptionData, OutlineArrowIcon, type Params, type PermissionString, PlusIcon, PlusSearchIcon, Popover, PopoverAnchor, PopoverArrow, PopoverContent, PopoverTrigger, PowerIcon, type PrefixMap, PreventPageLeave, QuestionIcon, RadioGroupItem, RadioGroupRoot, RadioLabel, type RawFormulaSegment, RichText, RightPanelContainer, type RightPanelContainerClassNames, type RightPanelContainerHeaderProps, type RightPanelContainerProps, type RightPanelContainerSlots, RoleIcon, type RowClickType, type RowState, type ScrollInfo, SearchIcon, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, SetupIcon, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarLayout, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, type SorterProps, Spinner, type SpinnerProps, type StatusContentKey, SuiCalendarIcon, SuiCalendarIcon2, SuiCheckIcon, SuiDotsVerticalIcon, SuiEmptyDataIcon, SuiExpandIcon, SuiFilterIcon, SuiSettingIcon, SuiTriangleDownIcon, SuiWarningIcon, Switch, TabSelect, type TabSelectItem, Table, TableBody, TableCaption, TableCell, TableContainer, TableFooter, TableHead, TableHeader, TableOfContents, TableRow, TagListViewIcon, type TemplateKeys,
|
|
2051
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, type ActionButtonProps, ActionMenu, type ActionMenuProps, AdministrationIcon, AdvanceSearch, AnalyticsIcon, ApplicationLogIcon, ArrowIcon, AuditFooter, type AuditFooterProps, BookmarkIcon, type Breakpoints, BriefcaseBusinessIcon, type BrowserNativeObject, Button, SuiCalendarIcon2 as Calendar2Icon, CalendarDaysIcon, CardIcon, Carousel, type CarouselApi, CarouselContent, CarouselDots, CarouselItem, CarouselNext, CarouselPrevious, CarouselThumbnails, Checkbox, CircleUserIcon, Collapsible, CollapsibleContent, CollapsibleTrigger, type Column, Combobox, type ComboboxProps, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, CopyUserRightsIcon, type CroppedImagePayload, type CroppedImagePayloadWithBlobUrl, CropperModal, CropperModalError, type CropperModalErrorType, type CropperModalProps, CustomActionStatusIcon, CustomFieldIcon, DIALOG_ALERT_I18N_SUBNAMESPACE, DIALOG_ALERT_TEMPLATES, DashboardIcon, DataEntryIcon, DataTable, type DataTableChildrenKeyHandler, type DataTableColumnFilter, type DataTableColumnFilterProps, type DataTableColumnGrouping, type DataTableColumnOrdering, type DataTableColumnPinning, type DataTableColumnSeparatorProps, type DataTableColumnSorting, type DataTableColumnVisibility, type DataTableComponentProps, type DataTableFilterConfig, type DataTableFilters, type DataTableGlobalFilter, type DataTableHeaderCell, type DataTableProps, type DataTableRenderHeaderHandler, type DataTableRenderHeaderProps, type DataTableRenderRowHandler, type DataTableRenderRowProps, type DataTableRowCell, type DataTableRowClickHandler, type DataTableRowExpansion, type DataTableRowIdKeyHandler, type DataTableRowSelection, type DataTableScrollFetch, type DataTableStatusContent, type DataTableVirtual, type DatatableColumnResizing, DatePicker, type DatePickerProps, type DateRange, type DebounceOptions, type DebouncedFunction, DecreaseIcon, type DeepPartial, type DeepPartialNullish, type DefaultMentionItem, Dialog$1 as Dialog, DialogAlert, type DialogAlertI18nResource, type DialogAlertProps, DialogAlertProvider, type DialogAlertTemplateUnit, type DialogAlertTemplates, DialogContent, type DialogContentProps, DialogDescription, DialogFooter, DialogTitle, DialogTrigger, type DialogVariant, type DraftGuardState, type DraftSource, EllipsisBoxIcon, type EllipsisConfig, type EmptyObject, ErrorCompression, ErrorCreateCanvas, ErrorGeneratingBlob, ErrorInvalidSVG, ErrorSVGExceedSize, type ExtractObjects, FactoryIcon, type FieldSchema, type FieldType, FileCogIcon, FileSpreadsheet, FileTextIcon, FiltersIcon, FolderIcon, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, FormulaEditor, type FormulaEditorProps, type FormulaOperator, type FormulaTokenAttributes, type FormulaTokenConfig, type FormulaTokenSuggestion, type FormulaTokenType, type GridPayload, GridSettingsModal, type GridSettingsModalProps, HamburgerMenuIcon, HandymanIcon, ListHeader as Header, HeaderCell, type HeaderCellProps, HelpIcon, HomeIcon, HomePlusIcon, Image, type ImageLoader, type ImageLoaderProps, ImagePlaceholderIcon, type ImageProps, InformationIcon, Input, type InputCustomInputProps, InputMention, type InputMentionProps, type InputMentionSerializedState, InputNumber, type InputNumberProps, type InputProps$1 as InputProps, Label, type ListHeaderProps, LookupSelect, type LookupSelectOption, type LookupSelectProps, MailIcon, MainListContainer, type MainListContainerClassNames, type MainListContainerProps, type MainListContainerSlots, ManIcon, ManagementIcon, type MentionConfig$1 as MentionConfig, MenuIcon, MessageIcon, MessageIconInverse, MessageSquareIcon, MonthPicker, type MonthPickerProps, type MonthRange, _default as Navbar, type NavbarProps, NotFoundIcon, type OptionData, OutlineArrowIcon, type Params, type PermissionString, PlusIcon, PlusSearchIcon, Popover, PopoverAnchor, PopoverArrow, PopoverContent, PopoverTrigger, PowerIcon, type PrefixMap, PreventPageLeave, QuestionIcon, RadioGroupItem, RadioGroupRoot, RadioLabel, type RawFormulaSegment, RichText, type RichTextProps, type RichTextSerializedState, RightPanelContainer, type RightPanelContainerClassNames, type RightPanelContainerHeaderProps, type RightPanelContainerProps, type RightPanelContainerSlots, RoleIcon, type RowClickType, type RowState, type ScrollInfo, SearchIcon, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, SetupIcon, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarLayout, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, type SorterProps, Spinner, type SpinnerProps, type StatusContentKey, SuiCalendarIcon, SuiCalendarIcon2, SuiCheckIcon, SuiDotsVerticalIcon, SuiEmptyDataIcon, SuiExpandIcon, SuiFilterIcon, SuiSettingIcon, SuiTriangleDownIcon, SuiWarningIcon, Switch, TabSelect, type TabSelectItem, Table, TableBody, TableCaption, TableCell, TableContainer, TableFooter, TableHead, TableHeader, TableOfContents, TableRow, TagListViewIcon, type TemplateKeys, TextArea, TimePicker, type TimePickerProps, ToolBoxIcon, Tooltip, TooltipArrow, TooltipContent, TooltipProvider, TooltipTrigger, TransferUserRightsIcon, TrashIcon, Truncated, TruncatedMouseEnterDiv, type TruncatedMouseEnterDivProps, type TruncatedProps, index as UI, type UseBindRefProps, type UseControllableStateOptions, type UseControllableStateResult, type UseHoverResult, type UseMediaQueryOptions, type UseMediaQueryResult, type UsePreventPageLeaveOptions, type UseScreenSizeResult, type UseTruncatedOptions, type UseTruncatedResult, UserActiveIcon, UserAloneIcon, UserFriendIcon, UserGroupIcon, UserIcon, UserInactiveIcon, UserNameIcon, UserProtectIcon, UsersIcon, VirtualizedCommand, type VirtualizedCommandFieldNames, type VirtualizedCommandOption, type VirtualizedCommandProps, type Virtualizer, WorkFlowIcon, booleanToSelectValue, buildPrefixMap, buttonVariants, cn, compareAlphanumeric, debounce, defaultOperatorShortcuts, defaultOperators, formatISODate, getDialogAlertControls, inputVariants$1 as inputVariants, isDefined, isEmptyObject, isValidParentheses, mapTokensToOutput, parseFormula, parseFormulaToToken, resetVisibleTableState, selectValueToBoolean, spinnerVariants, splitOperators, stripNullishObject, throttle, tokenizeFormulaString, useBindRef, useCarousel, useControllableState, useDraftGuardStore, useFormField, useGridSettingsStore, useHover, useIntersectionObserver, useIsomorphicLayoutEffect, useMediaQuery, usePreventPageLeave, usePreventPageLeaveStore, useSafeBlocker, useScreenSize, useSidebar, useTruncated, validateTokenPrefixes };
|
package/dist/index.d.ts
CHANGED
|
@@ -132,6 +132,7 @@ interface FieldSchemaBase<T extends FieldType> {
|
|
|
132
132
|
label?: string;
|
|
133
133
|
multiTableSearch?: boolean;
|
|
134
134
|
lookupFieldName?: string;
|
|
135
|
+
enableNullOperators?: boolean;
|
|
135
136
|
}
|
|
136
137
|
type DropdownFieldSchema = FieldSchemaBase<"dropdown"> & ({
|
|
137
138
|
options: Option[];
|
|
@@ -171,7 +172,7 @@ interface JSONFieldSchema extends FieldSchemaBase<"json"> {
|
|
|
171
172
|
loadingMessage?: string;
|
|
172
173
|
}
|
|
173
174
|
type FieldSchema = DropdownFieldSchema | TextFieldSchema | NumberFieldSchema | DateFieldSchema | DateTimeFieldSchema | DateMonthFieldSchema | CheckboxFieldSchema | LookupFieldSchema | UUIDFieldSchema | JSONFieldSchema;
|
|
174
|
-
type OperatorValue = "contains" | "equals" | "beginsWith" | "endsWith" | "notEquals" | "notBeginsWith" | "notEndsWith" | "notContains" | "gt" | "gte" | "lt" | "lte" | "on" | "after" | "before" | "between" | "is" | "isNot" | "containsAny" | "containsOnly" | "containsAll";
|
|
175
|
+
type OperatorValue = "contains" | "equals" | "beginsWith" | "endsWith" | "notEquals" | "notBeginsWith" | "notEndsWith" | "notContains" | "gt" | "gte" | "lt" | "lte" | "on" | "after" | "before" | "between" | "is" | "isNot" | "containsAny" | "containsOnly" | "containsAll" | "isNull" | "isNotNull";
|
|
175
176
|
type RowState = {
|
|
176
177
|
id: string;
|
|
177
178
|
fieldName: string;
|
|
@@ -1250,12 +1251,33 @@ type ImagePayload = {
|
|
|
1250
1251
|
|
|
1251
1252
|
type RichTextSerializedState = string;
|
|
1252
1253
|
type ImageUploadResult = ImagePayload | string;
|
|
1253
|
-
|
|
1254
|
-
|
|
1254
|
+
/**
|
|
1255
|
+
* Configuration for mapping mention item fields
|
|
1256
|
+
* Allows flexible field names for different data structures
|
|
1257
|
+
*/
|
|
1258
|
+
type MentionConfig$1<T> = {
|
|
1259
|
+
/** Function to get the unique identifier from mention item */
|
|
1260
|
+
getId: (item: T) => string;
|
|
1261
|
+
/** Function to get the mention key/name (e.g., "{{FIRSTNAME}}") from mention item */
|
|
1262
|
+
getName: (item: T) => string;
|
|
1263
|
+
/** Function to get the display label (e.g., "First Name") from mention item */
|
|
1264
|
+
getLabel: (item: T) => string;
|
|
1265
|
+
};
|
|
1266
|
+
/**
|
|
1267
|
+
* Default mention item structure
|
|
1268
|
+
*/
|
|
1269
|
+
type DefaultMentionItem$1 = {
|
|
1270
|
+
id: string;
|
|
1271
|
+
name: string;
|
|
1272
|
+
fieldName: string;
|
|
1273
|
+
};
|
|
1274
|
+
type RichTextProps<T = DefaultMentionItem$1> = {
|
|
1255
1275
|
value?: RichTextSerializedState;
|
|
1256
1276
|
defaultValue?: RichTextSerializedState;
|
|
1257
1277
|
onChange?: (serializedState: RichTextSerializedState, editorState: EditorState) => void;
|
|
1258
1278
|
onHtmlChange?: (html: string, editorState: EditorState) => void;
|
|
1279
|
+
/** Callback for plain text output - useful for form validation. Returns text content without HTML */
|
|
1280
|
+
onTextChange?: (text: string, editorState: EditorState) => void;
|
|
1259
1281
|
placeholder?: string;
|
|
1260
1282
|
readOnly?: boolean;
|
|
1261
1283
|
disabled?: boolean;
|
|
@@ -1268,7 +1290,20 @@ declare const RichText: React$1.ForwardRefExoticComponent<{
|
|
|
1268
1290
|
onImageDialogUploadError?: (error: unknown) => void;
|
|
1269
1291
|
acceptImageMimeTypes?: string;
|
|
1270
1292
|
allowImageUrlInsert?: boolean;
|
|
1271
|
-
|
|
1293
|
+
/** Array of mention items that will be suggested */
|
|
1294
|
+
mentions?: T[];
|
|
1295
|
+
/** Configuration for mapping mention item fields. If not provided, assumes default structure {id, name, fieldName} */
|
|
1296
|
+
mentionConfig?: MentionConfig$1<T>;
|
|
1297
|
+
/** Optional trigger character for mentions (e.g., "$", "@"). If not provided, suggestions appear when typing matching text */
|
|
1298
|
+
mentionTrigger?: string;
|
|
1299
|
+
/** If true, mentions will be rendered as plain text (e.g., {{FIRSTNAME}}) suitable for mail templates. If false, mentions will be styled HTML tags */
|
|
1300
|
+
plainTextMentions?: boolean;
|
|
1301
|
+
} & Omit<React.HTMLAttributes<HTMLDivElement>, "onChange">;
|
|
1302
|
+
|
|
1303
|
+
declare function RichTextInner<T = DefaultMentionItem$1>({ value, defaultValue, onChange, onHtmlChange, onTextChange, placeholder, readOnly, disabled, editorClassName, toolbarClassName, autoFocus, onImageUpload, onImageUploadError, onImageDialogUpload, onImageDialogUploadError, acceptImageMimeTypes, allowImageUrlInsert, mentions, mentionConfig, mentionTrigger, plainTextMentions, className, id, ...rest }: RichTextProps<T>, ref: React.Ref<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
1304
|
+
declare const RichText: <T = DefaultMentionItem$1>(props: RichTextProps<T> & {
|
|
1305
|
+
ref?: React.Ref<HTMLDivElement>;
|
|
1306
|
+
}) => ReturnType<typeof RichTextInner>;
|
|
1272
1307
|
|
|
1273
1308
|
type RightPanelContainerSlots = {
|
|
1274
1309
|
Container?: React$1.ElementType<any>;
|
|
@@ -1361,10 +1396,10 @@ declare const Spinner: ({ className, variant, size, ...props }: SpinnerProps) =>
|
|
|
1361
1396
|
|
|
1362
1397
|
declare function Switch({ className, ...props }: React$1.ComponentProps<typeof SwitchPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
1363
1398
|
|
|
1364
|
-
type
|
|
1399
|
+
type TextAreaProps = React$1.ComponentProps<"textarea"> & {
|
|
1365
1400
|
autoResize?: boolean;
|
|
1366
1401
|
};
|
|
1367
|
-
declare function
|
|
1402
|
+
declare function TextArea({ className, autoResize, ...props }: TextAreaProps): react_jsx_runtime.JSX.Element;
|
|
1368
1403
|
|
|
1369
1404
|
declare function TooltipProvider$1({ delayDuration, ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Provider>): react_jsx_runtime.JSX.Element;
|
|
1370
1405
|
declare function Tooltip$1({ children, ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
@@ -1475,14 +1510,14 @@ declare const index_TableFooter: typeof TableFooter;
|
|
|
1475
1510
|
declare const index_TableHead: typeof TableHead;
|
|
1476
1511
|
declare const index_TableHeader: typeof TableHeader;
|
|
1477
1512
|
declare const index_TableRow: typeof TableRow;
|
|
1478
|
-
declare const
|
|
1513
|
+
declare const index_TextArea: typeof TextArea;
|
|
1479
1514
|
declare const index_buttonVariants: typeof buttonVariants;
|
|
1480
1515
|
declare const index_spinnerVariants: typeof spinnerVariants;
|
|
1481
1516
|
declare const index_useCarousel: typeof useCarousel;
|
|
1482
1517
|
declare const index_useFormField: typeof useFormField;
|
|
1483
1518
|
declare const index_useSidebar: typeof useSidebar;
|
|
1484
1519
|
declare namespace index {
|
|
1485
|
-
export { index_Accordion as Accordion, index_AccordionContent as AccordionContent, index_AccordionItem as AccordionItem, index_AccordionTrigger as AccordionTrigger, index_Button as Button, index_Carousel as Carousel, type index_CarouselApi as CarouselApi, index_CarouselContent as CarouselContent, index_CarouselDots as CarouselDots, index_CarouselItem as CarouselItem, index_CarouselNext as CarouselNext, index_CarouselPrevious as CarouselPrevious, index_CarouselThumbnails as CarouselThumbnails, index_Checkbox as Checkbox, index_ClearButton as ClearButton, index_Collapsible as Collapsible, index_CollapsibleContent as CollapsibleContent, index_CollapsibleTrigger as CollapsibleTrigger, DatePicker$1 as DatePicker, Dialog$1 as Dialog, index_DialogContent as DialogContent, type index_DialogContentProps as DialogContentProps, index_DialogDescription as DialogDescription, index_DialogFooter as DialogFooter, index_DialogTitle as DialogTitle, index_DialogTrigger as DialogTrigger, index_Form as Form, index_FormControl as FormControl, index_FormDescription as FormDescription, index_FormField as FormField, index_FormItem as FormItem, index_FormLabel as FormLabel, index_FormMessage as FormMessage, index_Input as Input, index_InputPrimitive as InputPrimitive, type InputPrimitiveProps$1 as InputPrimitiveProps, type InputProps$1 as InputProps, index_Label as Label, index_ListContainer as ListContainer, type index_ListContainerProps as ListContainerProps, index_ListHeader as ListHeader, type index_ListHeaderProps as ListHeaderProps, MonthPicker$1 as MonthPicker, type MonthPickerProps$1 as MonthPickerProps, index_Popover as Popover, index_PopoverAnchor as PopoverAnchor, index_PopoverArrow as PopoverArrow, index_PopoverContent as PopoverContent, index_PopoverTrigger as PopoverTrigger, index_RadioGroupItem as RadioGroupItem, index_RadioGroupRoot as RadioGroupRoot, index_RadioLabel as RadioLabel, index_Select as Select, index_SelectContent as SelectContent, index_SelectGroup as SelectGroup, index_SelectItem as SelectItem, index_SelectLabel as SelectLabel, index_SelectScrollDownButton as SelectScrollDownButton, index_SelectScrollUpButton as SelectScrollUpButton, index_SelectSeparator as SelectSeparator, index_SelectTrigger as SelectTrigger, index_SelectValue as SelectValue, index_Separator as Separator, index_Sheet as Sheet, index_SheetClose as SheetClose, index_SheetContent as SheetContent, index_SheetDescription as SheetDescription, index_SheetFooter as SheetFooter, index_SheetHeader as SheetHeader, index_SheetTitle as SheetTitle, index_SheetTrigger as SheetTrigger, index_Sidebar as Sidebar, index_SidebarContent as SidebarContent, index_SidebarFooter as SidebarFooter, index_SidebarGroup as SidebarGroup, index_SidebarGroupAction as SidebarGroupAction, index_SidebarGroupContent as SidebarGroupContent, index_SidebarGroupLabel as SidebarGroupLabel, index_SidebarHeader as SidebarHeader, index_SidebarInput as SidebarInput, index_SidebarInset as SidebarInset, index_SidebarLayout as SidebarLayout, index_SidebarMenu as SidebarMenu, index_SidebarMenuAction as SidebarMenuAction, index_SidebarMenuBadge as SidebarMenuBadge, index_SidebarMenuButton as SidebarMenuButton, index_SidebarMenuItem as SidebarMenuItem, index_SidebarMenuSkeleton as SidebarMenuSkeleton, index_SidebarMenuSub as SidebarMenuSub, index_SidebarMenuSubButton as SidebarMenuSubButton, index_SidebarMenuSubItem as SidebarMenuSubItem, index_SidebarProvider as SidebarProvider, index_SidebarRail as SidebarRail, index_SidebarSeparator as SidebarSeparator, index_SidebarTrigger as SidebarTrigger, index_Skeleton as Skeleton, index_Spinner as Spinner, type index_SpinnerProps as SpinnerProps, index_Switch as Switch, index_Table as Table, index_TableBody as TableBody, index_TableCaption as TableCaption, index_TableCell as TableCell, index_TableContainer as TableContainer, index_TableFooter as TableFooter, index_TableHead as TableHead, index_TableHeader as TableHeader, index_TableRow as TableRow,
|
|
1520
|
+
export { index_Accordion as Accordion, index_AccordionContent as AccordionContent, index_AccordionItem as AccordionItem, index_AccordionTrigger as AccordionTrigger, index_Button as Button, index_Carousel as Carousel, type index_CarouselApi as CarouselApi, index_CarouselContent as CarouselContent, index_CarouselDots as CarouselDots, index_CarouselItem as CarouselItem, index_CarouselNext as CarouselNext, index_CarouselPrevious as CarouselPrevious, index_CarouselThumbnails as CarouselThumbnails, index_Checkbox as Checkbox, index_ClearButton as ClearButton, index_Collapsible as Collapsible, index_CollapsibleContent as CollapsibleContent, index_CollapsibleTrigger as CollapsibleTrigger, DatePicker$1 as DatePicker, Dialog$1 as Dialog, index_DialogContent as DialogContent, type index_DialogContentProps as DialogContentProps, index_DialogDescription as DialogDescription, index_DialogFooter as DialogFooter, index_DialogTitle as DialogTitle, index_DialogTrigger as DialogTrigger, index_Form as Form, index_FormControl as FormControl, index_FormDescription as FormDescription, index_FormField as FormField, index_FormItem as FormItem, index_FormLabel as FormLabel, index_FormMessage as FormMessage, index_Input as Input, index_InputPrimitive as InputPrimitive, type InputPrimitiveProps$1 as InputPrimitiveProps, type InputProps$1 as InputProps, index_Label as Label, index_ListContainer as ListContainer, type index_ListContainerProps as ListContainerProps, index_ListHeader as ListHeader, type index_ListHeaderProps as ListHeaderProps, MonthPicker$1 as MonthPicker, type MonthPickerProps$1 as MonthPickerProps, index_Popover as Popover, index_PopoverAnchor as PopoverAnchor, index_PopoverArrow as PopoverArrow, index_PopoverContent as PopoverContent, index_PopoverTrigger as PopoverTrigger, index_RadioGroupItem as RadioGroupItem, index_RadioGroupRoot as RadioGroupRoot, index_RadioLabel as RadioLabel, index_Select as Select, index_SelectContent as SelectContent, index_SelectGroup as SelectGroup, index_SelectItem as SelectItem, index_SelectLabel as SelectLabel, index_SelectScrollDownButton as SelectScrollDownButton, index_SelectScrollUpButton as SelectScrollUpButton, index_SelectSeparator as SelectSeparator, index_SelectTrigger as SelectTrigger, index_SelectValue as SelectValue, index_Separator as Separator, index_Sheet as Sheet, index_SheetClose as SheetClose, index_SheetContent as SheetContent, index_SheetDescription as SheetDescription, index_SheetFooter as SheetFooter, index_SheetHeader as SheetHeader, index_SheetTitle as SheetTitle, index_SheetTrigger as SheetTrigger, index_Sidebar as Sidebar, index_SidebarContent as SidebarContent, index_SidebarFooter as SidebarFooter, index_SidebarGroup as SidebarGroup, index_SidebarGroupAction as SidebarGroupAction, index_SidebarGroupContent as SidebarGroupContent, index_SidebarGroupLabel as SidebarGroupLabel, index_SidebarHeader as SidebarHeader, index_SidebarInput as SidebarInput, index_SidebarInset as SidebarInset, index_SidebarLayout as SidebarLayout, index_SidebarMenu as SidebarMenu, index_SidebarMenuAction as SidebarMenuAction, index_SidebarMenuBadge as SidebarMenuBadge, index_SidebarMenuButton as SidebarMenuButton, index_SidebarMenuItem as SidebarMenuItem, index_SidebarMenuSkeleton as SidebarMenuSkeleton, index_SidebarMenuSub as SidebarMenuSub, index_SidebarMenuSubButton as SidebarMenuSubButton, index_SidebarMenuSubItem as SidebarMenuSubItem, index_SidebarProvider as SidebarProvider, index_SidebarRail as SidebarRail, index_SidebarSeparator as SidebarSeparator, index_SidebarTrigger as SidebarTrigger, index_Skeleton as Skeleton, index_Spinner as Spinner, type index_SpinnerProps as SpinnerProps, index_Switch as Switch, index_Table as Table, index_TableBody as TableBody, index_TableCaption as TableCaption, index_TableCell as TableCell, index_TableContainer as TableContainer, index_TableFooter as TableFooter, index_TableHead as TableHead, index_TableHeader as TableHeader, index_TableRow as TableRow, index_TextArea as TextArea, Tooltip$1 as Tooltip, TooltipContent$1 as TooltipContent, TooltipProvider$1 as TooltipProvider, TooltipTrigger$1 as TooltipTrigger, index_buttonVariants as buttonVariants, inputVariants$1 as inputVariants, index_spinnerVariants as spinnerVariants, index_useCarousel as useCarousel, index_useFormField as useFormField, index_useSidebar as useSidebar };
|
|
1486
1521
|
}
|
|
1487
1522
|
|
|
1488
1523
|
type SidebarContextProps = {
|
|
@@ -1556,6 +1591,20 @@ type SidebarLayoutProps = Omit<React$1.ComponentProps<typeof SidebarProvider>, "
|
|
|
1556
1591
|
};
|
|
1557
1592
|
declare function SidebarLayout({ sidebar, children, layoutProps, sidebarProps, insetProps, ...providerProps }: SidebarLayoutProps): react_jsx_runtime.JSX.Element;
|
|
1558
1593
|
|
|
1594
|
+
interface TimePickerProps {
|
|
1595
|
+
id?: string;
|
|
1596
|
+
value?: string;
|
|
1597
|
+
/** Callback with ISO time format output (HH:mm:ss.000Z) */
|
|
1598
|
+
onChange?: (isoTime: string) => void;
|
|
1599
|
+
disabled?: boolean;
|
|
1600
|
+
className?: string;
|
|
1601
|
+
placeholder?: string;
|
|
1602
|
+
use24Hour?: boolean;
|
|
1603
|
+
iconPosition?: "start" | "end" | "none";
|
|
1604
|
+
icon?: React$1.ReactNode;
|
|
1605
|
+
}
|
|
1606
|
+
declare const TimePicker: React$1.ForwardRefExoticComponent<TimePickerProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
1607
|
+
|
|
1559
1608
|
declare function TooltipProvider({ delayDuration, ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Provider>): react_jsx_runtime.JSX.Element;
|
|
1560
1609
|
declare function Tooltip({ ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
1561
1610
|
declare function TooltipTrigger({ ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
@@ -1755,6 +1804,7 @@ type ComboboxProps<TData extends OptionData> = React$1.AriaAttributes & Omit<Vir
|
|
|
1755
1804
|
open?: boolean;
|
|
1756
1805
|
onOpenChange?: (isOpen: boolean) => void;
|
|
1757
1806
|
showValueWhenNoMatch?: boolean;
|
|
1807
|
+
virtual?: boolean;
|
|
1758
1808
|
};
|
|
1759
1809
|
declare const Combobox: <TData extends OptionData>(props: ComboboxProps<TData> & React$1.RefAttributes<HTMLButtonElement>) => React$1.ReactElement | null;
|
|
1760
1810
|
|
|
@@ -1783,6 +1833,50 @@ interface TabSelectProps<T extends string = string> {
|
|
|
1783
1833
|
}
|
|
1784
1834
|
declare const TabSelect: <T extends string = string>({ items, onSelectTab, labelWrapperClassName, labelClassName, activeBorderClassName, separatorClassName, ...rest }: ComponentProps<"div"> & TabSelectProps<T>) => react_jsx_runtime.JSX.Element | null;
|
|
1785
1835
|
|
|
1836
|
+
type InputMentionSerializedState = string;
|
|
1837
|
+
/**
|
|
1838
|
+
* Configuration for mapping mention item fields
|
|
1839
|
+
* Allows flexible field names for different data structures
|
|
1840
|
+
*/
|
|
1841
|
+
type MentionConfig<T> = {
|
|
1842
|
+
/** Function to get the unique identifier from mention item */
|
|
1843
|
+
getId: (item: T) => string;
|
|
1844
|
+
/** Function to get the mention key/name (e.g., "{{FIRSTNAME}}") from mention item */
|
|
1845
|
+
getName: (item: T) => string;
|
|
1846
|
+
/** Function to get the display label (e.g., "First Name") from mention item */
|
|
1847
|
+
getLabel: (item: T) => string;
|
|
1848
|
+
};
|
|
1849
|
+
/**
|
|
1850
|
+
* Default mention item structure
|
|
1851
|
+
*/
|
|
1852
|
+
type DefaultMentionItem = {
|
|
1853
|
+
id: string;
|
|
1854
|
+
name: string;
|
|
1855
|
+
fieldName: string;
|
|
1856
|
+
};
|
|
1857
|
+
type InputMentionProps<T = DefaultMentionItem> = {
|
|
1858
|
+
value?: InputMentionSerializedState;
|
|
1859
|
+
onChange?: (plainText: InputMentionSerializedState) => void;
|
|
1860
|
+
placeholder?: string;
|
|
1861
|
+
readOnly?: boolean;
|
|
1862
|
+
disabled?: boolean;
|
|
1863
|
+
editorClassName?: string;
|
|
1864
|
+
autoFocus?: boolean;
|
|
1865
|
+
/** Array of mention items that will be suggested */
|
|
1866
|
+
mentions?: T[];
|
|
1867
|
+
/** Configuration for mapping mention item fields. If not provided, assumes default structure {id, name, fieldName} */
|
|
1868
|
+
mentionConfig?: MentionConfig<T>;
|
|
1869
|
+
/** Optional trigger character for mentions (e.g., "$", "@"). If not provided, suggestions appear when typing matching text */
|
|
1870
|
+
mentionTrigger?: string;
|
|
1871
|
+
/** If true, mentions will be rendered as plain text (e.g., {{FIRSTNAME}}) suitable for mail templates. If false, mentions will be styled HTML tags */
|
|
1872
|
+
plainTextMentions?: boolean;
|
|
1873
|
+
} & Omit<React.HTMLAttributes<HTMLDivElement>, "onChange">;
|
|
1874
|
+
|
|
1875
|
+
declare function InputMentionInner<T = DefaultMentionItem>({ value, onChange, placeholder, readOnly, disabled, editorClassName, autoFocus, mentions, mentionConfig, mentionTrigger, plainTextMentions, className, id, ...rest }: InputMentionProps<T>, ref: React.Ref<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
1876
|
+
declare const InputMention: <T = DefaultMentionItem>(props: InputMentionProps<T> & {
|
|
1877
|
+
ref?: React.Ref<HTMLDivElement>;
|
|
1878
|
+
}) => ReturnType<typeof InputMentionInner>;
|
|
1879
|
+
|
|
1786
1880
|
declare function isDefined<T>(value: T | null | undefined): value is NonNullable<T>;
|
|
1787
1881
|
declare function isEmptyObject(value: any): boolean;
|
|
1788
1882
|
type DebounceOptions = {
|
|
@@ -1954,4 +2048,4 @@ type DeepPartialNullish<T> = T extends BrowserNativeObject ? T | null : {
|
|
|
1954
2048
|
[K in keyof T]?: ExtractObjects<T[K]> extends never ? T[K] | null : DeepPartialNullish<T[K]> | null;
|
|
1955
2049
|
};
|
|
1956
2050
|
|
|
1957
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, type ActionButtonProps, ActionMenu, type ActionMenuProps, AdministrationIcon, AdvanceSearch, AnalyticsIcon, ApplicationLogIcon, ArrowIcon, AuditFooter, type AuditFooterProps, BookmarkIcon, type Breakpoints, BriefcaseBusinessIcon, type BrowserNativeObject, Button, SuiCalendarIcon2 as Calendar2Icon, CalendarDaysIcon, CardIcon, Carousel, type CarouselApi, CarouselContent, CarouselDots, CarouselItem, CarouselNext, CarouselPrevious, CarouselThumbnails, Checkbox, CircleUserIcon, Collapsible, CollapsibleContent, CollapsibleTrigger, type Column, Combobox, type ComboboxProps, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, CopyUserRightsIcon, type CroppedImagePayload, type CroppedImagePayloadWithBlobUrl, CropperModal, CropperModalError, type CropperModalErrorType, type CropperModalProps, CustomActionStatusIcon, CustomFieldIcon, DIALOG_ALERT_I18N_SUBNAMESPACE, DIALOG_ALERT_TEMPLATES, DashboardIcon, DataEntryIcon, DataTable, type DataTableChildrenKeyHandler, type DataTableColumnFilter, type DataTableColumnFilterProps, type DataTableColumnGrouping, type DataTableColumnOrdering, type DataTableColumnPinning, type DataTableColumnSeparatorProps, type DataTableColumnSorting, type DataTableColumnVisibility, type DataTableComponentProps, type DataTableFilterConfig, type DataTableFilters, type DataTableGlobalFilter, type DataTableHeaderCell, type DataTableProps, type DataTableRenderHeaderHandler, type DataTableRenderHeaderProps, type DataTableRenderRowHandler, type DataTableRenderRowProps, type DataTableRowCell, type DataTableRowClickHandler, type DataTableRowExpansion, type DataTableRowIdKeyHandler, type DataTableRowSelection, type DataTableScrollFetch, type DataTableStatusContent, type DataTableVirtual, type DatatableColumnResizing, DatePicker, type DatePickerProps, type DateRange, type DebounceOptions, type DebouncedFunction, DecreaseIcon, type DeepPartial, type DeepPartialNullish, Dialog$1 as Dialog, DialogAlert, type DialogAlertI18nResource, type DialogAlertProps, DialogAlertProvider, type DialogAlertTemplateUnit, type DialogAlertTemplates, DialogContent, type DialogContentProps, DialogDescription, DialogFooter, DialogTitle, DialogTrigger, type DialogVariant, type DraftGuardState, type DraftSource, EllipsisBoxIcon, type EllipsisConfig, type EmptyObject, ErrorCompression, ErrorCreateCanvas, ErrorGeneratingBlob, ErrorInvalidSVG, ErrorSVGExceedSize, type ExtractObjects, FactoryIcon, type FieldSchema, type FieldType, FileCogIcon, FileSpreadsheet, FileTextIcon, FiltersIcon, FolderIcon, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, FormulaEditor, type FormulaEditorProps, type FormulaOperator, type FormulaTokenAttributes, type FormulaTokenConfig, type FormulaTokenSuggestion, type FormulaTokenType, type GridPayload, GridSettingsModal, type GridSettingsModalProps, HamburgerMenuIcon, HandymanIcon, ListHeader as Header, HeaderCell, type HeaderCellProps, HelpIcon, HomeIcon, HomePlusIcon, Image, type ImageLoader, type ImageLoaderProps, ImagePlaceholderIcon, type ImageProps, InformationIcon, Input, type InputCustomInputProps, InputNumber, type InputNumberProps, type InputProps$1 as InputProps, Label, type ListHeaderProps, LookupSelect, type LookupSelectOption, type LookupSelectProps, MailIcon, MainListContainer, type MainListContainerClassNames, type MainListContainerProps, type MainListContainerSlots, ManIcon, ManagementIcon, MenuIcon, MessageIcon, MessageIconInverse, MessageSquareIcon, MonthPicker, type MonthPickerProps, type MonthRange, _default as Navbar, type NavbarProps, NotFoundIcon, type OptionData, OutlineArrowIcon, type Params, type PermissionString, PlusIcon, PlusSearchIcon, Popover, PopoverAnchor, PopoverArrow, PopoverContent, PopoverTrigger, PowerIcon, type PrefixMap, PreventPageLeave, QuestionIcon, RadioGroupItem, RadioGroupRoot, RadioLabel, type RawFormulaSegment, RichText, RightPanelContainer, type RightPanelContainerClassNames, type RightPanelContainerHeaderProps, type RightPanelContainerProps, type RightPanelContainerSlots, RoleIcon, type RowClickType, type RowState, type ScrollInfo, SearchIcon, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, SetupIcon, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarLayout, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, type SorterProps, Spinner, type SpinnerProps, type StatusContentKey, SuiCalendarIcon, SuiCalendarIcon2, SuiCheckIcon, SuiDotsVerticalIcon, SuiEmptyDataIcon, SuiExpandIcon, SuiFilterIcon, SuiSettingIcon, SuiTriangleDownIcon, SuiWarningIcon, Switch, TabSelect, type TabSelectItem, Table, TableBody, TableCaption, TableCell, TableContainer, TableFooter, TableHead, TableHeader, TableOfContents, TableRow, TagListViewIcon, type TemplateKeys,
|
|
2051
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, type ActionButtonProps, ActionMenu, type ActionMenuProps, AdministrationIcon, AdvanceSearch, AnalyticsIcon, ApplicationLogIcon, ArrowIcon, AuditFooter, type AuditFooterProps, BookmarkIcon, type Breakpoints, BriefcaseBusinessIcon, type BrowserNativeObject, Button, SuiCalendarIcon2 as Calendar2Icon, CalendarDaysIcon, CardIcon, Carousel, type CarouselApi, CarouselContent, CarouselDots, CarouselItem, CarouselNext, CarouselPrevious, CarouselThumbnails, Checkbox, CircleUserIcon, Collapsible, CollapsibleContent, CollapsibleTrigger, type Column, Combobox, type ComboboxProps, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, CopyUserRightsIcon, type CroppedImagePayload, type CroppedImagePayloadWithBlobUrl, CropperModal, CropperModalError, type CropperModalErrorType, type CropperModalProps, CustomActionStatusIcon, CustomFieldIcon, DIALOG_ALERT_I18N_SUBNAMESPACE, DIALOG_ALERT_TEMPLATES, DashboardIcon, DataEntryIcon, DataTable, type DataTableChildrenKeyHandler, type DataTableColumnFilter, type DataTableColumnFilterProps, type DataTableColumnGrouping, type DataTableColumnOrdering, type DataTableColumnPinning, type DataTableColumnSeparatorProps, type DataTableColumnSorting, type DataTableColumnVisibility, type DataTableComponentProps, type DataTableFilterConfig, type DataTableFilters, type DataTableGlobalFilter, type DataTableHeaderCell, type DataTableProps, type DataTableRenderHeaderHandler, type DataTableRenderHeaderProps, type DataTableRenderRowHandler, type DataTableRenderRowProps, type DataTableRowCell, type DataTableRowClickHandler, type DataTableRowExpansion, type DataTableRowIdKeyHandler, type DataTableRowSelection, type DataTableScrollFetch, type DataTableStatusContent, type DataTableVirtual, type DatatableColumnResizing, DatePicker, type DatePickerProps, type DateRange, type DebounceOptions, type DebouncedFunction, DecreaseIcon, type DeepPartial, type DeepPartialNullish, type DefaultMentionItem, Dialog$1 as Dialog, DialogAlert, type DialogAlertI18nResource, type DialogAlertProps, DialogAlertProvider, type DialogAlertTemplateUnit, type DialogAlertTemplates, DialogContent, type DialogContentProps, DialogDescription, DialogFooter, DialogTitle, DialogTrigger, type DialogVariant, type DraftGuardState, type DraftSource, EllipsisBoxIcon, type EllipsisConfig, type EmptyObject, ErrorCompression, ErrorCreateCanvas, ErrorGeneratingBlob, ErrorInvalidSVG, ErrorSVGExceedSize, type ExtractObjects, FactoryIcon, type FieldSchema, type FieldType, FileCogIcon, FileSpreadsheet, FileTextIcon, FiltersIcon, FolderIcon, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, FormulaEditor, type FormulaEditorProps, type FormulaOperator, type FormulaTokenAttributes, type FormulaTokenConfig, type FormulaTokenSuggestion, type FormulaTokenType, type GridPayload, GridSettingsModal, type GridSettingsModalProps, HamburgerMenuIcon, HandymanIcon, ListHeader as Header, HeaderCell, type HeaderCellProps, HelpIcon, HomeIcon, HomePlusIcon, Image, type ImageLoader, type ImageLoaderProps, ImagePlaceholderIcon, type ImageProps, InformationIcon, Input, type InputCustomInputProps, InputMention, type InputMentionProps, type InputMentionSerializedState, InputNumber, type InputNumberProps, type InputProps$1 as InputProps, Label, type ListHeaderProps, LookupSelect, type LookupSelectOption, type LookupSelectProps, MailIcon, MainListContainer, type MainListContainerClassNames, type MainListContainerProps, type MainListContainerSlots, ManIcon, ManagementIcon, type MentionConfig$1 as MentionConfig, MenuIcon, MessageIcon, MessageIconInverse, MessageSquareIcon, MonthPicker, type MonthPickerProps, type MonthRange, _default as Navbar, type NavbarProps, NotFoundIcon, type OptionData, OutlineArrowIcon, type Params, type PermissionString, PlusIcon, PlusSearchIcon, Popover, PopoverAnchor, PopoverArrow, PopoverContent, PopoverTrigger, PowerIcon, type PrefixMap, PreventPageLeave, QuestionIcon, RadioGroupItem, RadioGroupRoot, RadioLabel, type RawFormulaSegment, RichText, type RichTextProps, type RichTextSerializedState, RightPanelContainer, type RightPanelContainerClassNames, type RightPanelContainerHeaderProps, type RightPanelContainerProps, type RightPanelContainerSlots, RoleIcon, type RowClickType, type RowState, type ScrollInfo, SearchIcon, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, SetupIcon, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarLayout, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, type SorterProps, Spinner, type SpinnerProps, type StatusContentKey, SuiCalendarIcon, SuiCalendarIcon2, SuiCheckIcon, SuiDotsVerticalIcon, SuiEmptyDataIcon, SuiExpandIcon, SuiFilterIcon, SuiSettingIcon, SuiTriangleDownIcon, SuiWarningIcon, Switch, TabSelect, type TabSelectItem, Table, TableBody, TableCaption, TableCell, TableContainer, TableFooter, TableHead, TableHeader, TableOfContents, TableRow, TagListViewIcon, type TemplateKeys, TextArea, TimePicker, type TimePickerProps, ToolBoxIcon, Tooltip, TooltipArrow, TooltipContent, TooltipProvider, TooltipTrigger, TransferUserRightsIcon, TrashIcon, Truncated, TruncatedMouseEnterDiv, type TruncatedMouseEnterDivProps, type TruncatedProps, index as UI, type UseBindRefProps, type UseControllableStateOptions, type UseControllableStateResult, type UseHoverResult, type UseMediaQueryOptions, type UseMediaQueryResult, type UsePreventPageLeaveOptions, type UseScreenSizeResult, type UseTruncatedOptions, type UseTruncatedResult, UserActiveIcon, UserAloneIcon, UserFriendIcon, UserGroupIcon, UserIcon, UserInactiveIcon, UserNameIcon, UserProtectIcon, UsersIcon, VirtualizedCommand, type VirtualizedCommandFieldNames, type VirtualizedCommandOption, type VirtualizedCommandProps, type Virtualizer, WorkFlowIcon, booleanToSelectValue, buildPrefixMap, buttonVariants, cn, compareAlphanumeric, debounce, defaultOperatorShortcuts, defaultOperators, formatISODate, getDialogAlertControls, inputVariants$1 as inputVariants, isDefined, isEmptyObject, isValidParentheses, mapTokensToOutput, parseFormula, parseFormulaToToken, resetVisibleTableState, selectValueToBoolean, spinnerVariants, splitOperators, stripNullishObject, throttle, tokenizeFormulaString, useBindRef, useCarousel, useControllableState, useDraftGuardStore, useFormField, useGridSettingsStore, useHover, useIntersectionObserver, useIsomorphicLayoutEffect, useMediaQuery, usePreventPageLeave, usePreventPageLeaveStore, useSafeBlocker, useScreenSize, useSidebar, useTruncated, validateTokenPrefixes };
|