@sustaina/shared-ui 1.50.0 → 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 +80 -38
- package/dist/index.d.ts +80 -38
- package/dist/index.js +626 -108
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +628 -111
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1242,11 +1242,6 @@ declare function RadioLabel({ children, htmlFor, className, disabled, ...props }
|
|
|
1242
1242
|
disabled?: boolean;
|
|
1243
1243
|
}): react_jsx_runtime.JSX.Element;
|
|
1244
1244
|
|
|
1245
|
-
type MentionItem$1 = {
|
|
1246
|
-
key: string;
|
|
1247
|
-
label: string;
|
|
1248
|
-
};
|
|
1249
|
-
|
|
1250
1245
|
type ImagePayload = {
|
|
1251
1246
|
src: string;
|
|
1252
1247
|
altText?: string;
|
|
@@ -1256,12 +1251,32 @@ type ImagePayload = {
|
|
|
1256
1251
|
|
|
1257
1252
|
type RichTextSerializedState = string;
|
|
1258
1253
|
type ImageUploadResult = ImagePayload | string;
|
|
1259
|
-
|
|
1260
|
-
|
|
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> = {
|
|
1261
1275
|
value?: RichTextSerializedState;
|
|
1262
1276
|
defaultValue?: RichTextSerializedState;
|
|
1263
1277
|
onChange?: (serializedState: RichTextSerializedState, editorState: EditorState) => void;
|
|
1264
1278
|
onHtmlChange?: (html: string, editorState: EditorState) => void;
|
|
1279
|
+
/** Callback for plain text output - useful for form validation. Returns text content without HTML */
|
|
1265
1280
|
onTextChange?: (text: string, editorState: EditorState) => void;
|
|
1266
1281
|
placeholder?: string;
|
|
1267
1282
|
readOnly?: boolean;
|
|
@@ -1275,10 +1290,20 @@ declare const RichText: React$1.ForwardRefExoticComponent<{
|
|
|
1275
1290
|
onImageDialogUploadError?: (error: unknown) => void;
|
|
1276
1291
|
acceptImageMimeTypes?: string;
|
|
1277
1292
|
allowImageUrlInsert?: boolean;
|
|
1278
|
-
|
|
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 */
|
|
1279
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 */
|
|
1280
1300
|
plainTextMentions?: boolean;
|
|
1281
|
-
} & React
|
|
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>;
|
|
1282
1307
|
|
|
1283
1308
|
type RightPanelContainerSlots = {
|
|
1284
1309
|
Container?: React$1.ElementType<any>;
|
|
@@ -1566,6 +1591,20 @@ type SidebarLayoutProps = Omit<React$1.ComponentProps<typeof SidebarProvider>, "
|
|
|
1566
1591
|
};
|
|
1567
1592
|
declare function SidebarLayout({ sidebar, children, layoutProps, sidebarProps, insetProps, ...providerProps }: SidebarLayoutProps): react_jsx_runtime.JSX.Element;
|
|
1568
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
|
+
|
|
1569
1608
|
declare function TooltipProvider({ delayDuration, ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Provider>): react_jsx_runtime.JSX.Element;
|
|
1570
1609
|
declare function Tooltip({ ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
1571
1610
|
declare function TooltipTrigger({ ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
@@ -1765,6 +1804,7 @@ type ComboboxProps<TData extends OptionData> = React$1.AriaAttributes & Omit<Vir
|
|
|
1765
1804
|
open?: boolean;
|
|
1766
1805
|
onOpenChange?: (isOpen: boolean) => void;
|
|
1767
1806
|
showValueWhenNoMatch?: boolean;
|
|
1807
|
+
virtual?: boolean;
|
|
1768
1808
|
};
|
|
1769
1809
|
declare const Combobox: <TData extends OptionData>(props: ComboboxProps<TData> & React$1.RefAttributes<HTMLButtonElement>) => React$1.ReactElement | null;
|
|
1770
1810
|
|
|
@@ -1793,47 +1833,49 @@ interface TabSelectProps<T extends string = string> {
|
|
|
1793
1833
|
}
|
|
1794
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;
|
|
1795
1835
|
|
|
1796
|
-
type MentionItem = {
|
|
1797
|
-
key: string;
|
|
1798
|
-
label: string;
|
|
1799
|
-
};
|
|
1800
|
-
|
|
1801
1836
|
type InputMentionSerializedState = string;
|
|
1802
|
-
|
|
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> = {
|
|
1803
1858
|
value?: InputMentionSerializedState;
|
|
1804
|
-
|
|
1805
|
-
onChange?: (serializedState: InputMentionSerializedState, editorState: EditorState) => void;
|
|
1806
|
-
onHtmlChange?: (html: string, editorState: EditorState) => void;
|
|
1807
|
-
/** Callback for plain text output - useful for email subjects. Mentions are rendered as {{VARIABLE}} format */
|
|
1808
|
-
onTextChange?: (text: string, editorState: EditorState) => void;
|
|
1859
|
+
onChange?: (plainText: InputMentionSerializedState) => void;
|
|
1809
1860
|
placeholder?: string;
|
|
1810
1861
|
readOnly?: boolean;
|
|
1811
1862
|
disabled?: boolean;
|
|
1812
1863
|
editorClassName?: string;
|
|
1813
1864
|
autoFocus?: boolean;
|
|
1814
1865
|
/** Array of mention items that will be suggested */
|
|
1815
|
-
mentions?:
|
|
1866
|
+
mentions?: T[];
|
|
1867
|
+
/** Configuration for mapping mention item fields. If not provided, assumes default structure {id, name, fieldName} */
|
|
1868
|
+
mentionConfig?: MentionConfig<T>;
|
|
1816
1869
|
/** Optional trigger character for mentions (e.g., "$", "@"). If not provided, suggestions appear when typing matching text */
|
|
1817
1870
|
mentionTrigger?: string;
|
|
1818
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 */
|
|
1819
1872
|
plainTextMentions?: boolean;
|
|
1820
|
-
} & React.HTMLAttributes<HTMLDivElement>;
|
|
1873
|
+
} & Omit<React.HTMLAttributes<HTMLDivElement>, "onChange">;
|
|
1821
1874
|
|
|
1822
|
-
declare
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
onHtmlChange?: (html: string, editorState: EditorState) => void;
|
|
1827
|
-
onTextChange?: (text: string, editorState: EditorState) => void;
|
|
1828
|
-
placeholder?: string;
|
|
1829
|
-
readOnly?: boolean;
|
|
1830
|
-
disabled?: boolean;
|
|
1831
|
-
editorClassName?: string;
|
|
1832
|
-
autoFocus?: boolean;
|
|
1833
|
-
mentions?: MentionItem[];
|
|
1834
|
-
mentionTrigger?: string;
|
|
1835
|
-
plainTextMentions?: boolean;
|
|
1836
|
-
} & React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
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>;
|
|
1837
1879
|
|
|
1838
1880
|
declare function isDefined<T>(value: T | null | undefined): value is NonNullable<T>;
|
|
1839
1881
|
declare function isEmptyObject(value: any): boolean;
|
|
@@ -2006,4 +2048,4 @@ type DeepPartialNullish<T> = T extends BrowserNativeObject ? T | null : {
|
|
|
2006
2048
|
[K in keyof T]?: ExtractObjects<T[K]> extends never ? T[K] | null : DeepPartialNullish<T[K]> | null;
|
|
2007
2049
|
};
|
|
2008
2050
|
|
|
2009
|
-
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, InputMention, type
|
|
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
|
@@ -1242,11 +1242,6 @@ declare function RadioLabel({ children, htmlFor, className, disabled, ...props }
|
|
|
1242
1242
|
disabled?: boolean;
|
|
1243
1243
|
}): react_jsx_runtime.JSX.Element;
|
|
1244
1244
|
|
|
1245
|
-
type MentionItem$1 = {
|
|
1246
|
-
key: string;
|
|
1247
|
-
label: string;
|
|
1248
|
-
};
|
|
1249
|
-
|
|
1250
1245
|
type ImagePayload = {
|
|
1251
1246
|
src: string;
|
|
1252
1247
|
altText?: string;
|
|
@@ -1256,12 +1251,32 @@ type ImagePayload = {
|
|
|
1256
1251
|
|
|
1257
1252
|
type RichTextSerializedState = string;
|
|
1258
1253
|
type ImageUploadResult = ImagePayload | string;
|
|
1259
|
-
|
|
1260
|
-
|
|
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> = {
|
|
1261
1275
|
value?: RichTextSerializedState;
|
|
1262
1276
|
defaultValue?: RichTextSerializedState;
|
|
1263
1277
|
onChange?: (serializedState: RichTextSerializedState, editorState: EditorState) => void;
|
|
1264
1278
|
onHtmlChange?: (html: string, editorState: EditorState) => void;
|
|
1279
|
+
/** Callback for plain text output - useful for form validation. Returns text content without HTML */
|
|
1265
1280
|
onTextChange?: (text: string, editorState: EditorState) => void;
|
|
1266
1281
|
placeholder?: string;
|
|
1267
1282
|
readOnly?: boolean;
|
|
@@ -1275,10 +1290,20 @@ declare const RichText: React$1.ForwardRefExoticComponent<{
|
|
|
1275
1290
|
onImageDialogUploadError?: (error: unknown) => void;
|
|
1276
1291
|
acceptImageMimeTypes?: string;
|
|
1277
1292
|
allowImageUrlInsert?: boolean;
|
|
1278
|
-
|
|
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 */
|
|
1279
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 */
|
|
1280
1300
|
plainTextMentions?: boolean;
|
|
1281
|
-
} & React
|
|
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>;
|
|
1282
1307
|
|
|
1283
1308
|
type RightPanelContainerSlots = {
|
|
1284
1309
|
Container?: React$1.ElementType<any>;
|
|
@@ -1566,6 +1591,20 @@ type SidebarLayoutProps = Omit<React$1.ComponentProps<typeof SidebarProvider>, "
|
|
|
1566
1591
|
};
|
|
1567
1592
|
declare function SidebarLayout({ sidebar, children, layoutProps, sidebarProps, insetProps, ...providerProps }: SidebarLayoutProps): react_jsx_runtime.JSX.Element;
|
|
1568
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
|
+
|
|
1569
1608
|
declare function TooltipProvider({ delayDuration, ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Provider>): react_jsx_runtime.JSX.Element;
|
|
1570
1609
|
declare function Tooltip({ ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
1571
1610
|
declare function TooltipTrigger({ ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
@@ -1765,6 +1804,7 @@ type ComboboxProps<TData extends OptionData> = React$1.AriaAttributes & Omit<Vir
|
|
|
1765
1804
|
open?: boolean;
|
|
1766
1805
|
onOpenChange?: (isOpen: boolean) => void;
|
|
1767
1806
|
showValueWhenNoMatch?: boolean;
|
|
1807
|
+
virtual?: boolean;
|
|
1768
1808
|
};
|
|
1769
1809
|
declare const Combobox: <TData extends OptionData>(props: ComboboxProps<TData> & React$1.RefAttributes<HTMLButtonElement>) => React$1.ReactElement | null;
|
|
1770
1810
|
|
|
@@ -1793,47 +1833,49 @@ interface TabSelectProps<T extends string = string> {
|
|
|
1793
1833
|
}
|
|
1794
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;
|
|
1795
1835
|
|
|
1796
|
-
type MentionItem = {
|
|
1797
|
-
key: string;
|
|
1798
|
-
label: string;
|
|
1799
|
-
};
|
|
1800
|
-
|
|
1801
1836
|
type InputMentionSerializedState = string;
|
|
1802
|
-
|
|
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> = {
|
|
1803
1858
|
value?: InputMentionSerializedState;
|
|
1804
|
-
|
|
1805
|
-
onChange?: (serializedState: InputMentionSerializedState, editorState: EditorState) => void;
|
|
1806
|
-
onHtmlChange?: (html: string, editorState: EditorState) => void;
|
|
1807
|
-
/** Callback for plain text output - useful for email subjects. Mentions are rendered as {{VARIABLE}} format */
|
|
1808
|
-
onTextChange?: (text: string, editorState: EditorState) => void;
|
|
1859
|
+
onChange?: (plainText: InputMentionSerializedState) => void;
|
|
1809
1860
|
placeholder?: string;
|
|
1810
1861
|
readOnly?: boolean;
|
|
1811
1862
|
disabled?: boolean;
|
|
1812
1863
|
editorClassName?: string;
|
|
1813
1864
|
autoFocus?: boolean;
|
|
1814
1865
|
/** Array of mention items that will be suggested */
|
|
1815
|
-
mentions?:
|
|
1866
|
+
mentions?: T[];
|
|
1867
|
+
/** Configuration for mapping mention item fields. If not provided, assumes default structure {id, name, fieldName} */
|
|
1868
|
+
mentionConfig?: MentionConfig<T>;
|
|
1816
1869
|
/** Optional trigger character for mentions (e.g., "$", "@"). If not provided, suggestions appear when typing matching text */
|
|
1817
1870
|
mentionTrigger?: string;
|
|
1818
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 */
|
|
1819
1872
|
plainTextMentions?: boolean;
|
|
1820
|
-
} & React.HTMLAttributes<HTMLDivElement>;
|
|
1873
|
+
} & Omit<React.HTMLAttributes<HTMLDivElement>, "onChange">;
|
|
1821
1874
|
|
|
1822
|
-
declare
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
onHtmlChange?: (html: string, editorState: EditorState) => void;
|
|
1827
|
-
onTextChange?: (text: string, editorState: EditorState) => void;
|
|
1828
|
-
placeholder?: string;
|
|
1829
|
-
readOnly?: boolean;
|
|
1830
|
-
disabled?: boolean;
|
|
1831
|
-
editorClassName?: string;
|
|
1832
|
-
autoFocus?: boolean;
|
|
1833
|
-
mentions?: MentionItem[];
|
|
1834
|
-
mentionTrigger?: string;
|
|
1835
|
-
plainTextMentions?: boolean;
|
|
1836
|
-
} & React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
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>;
|
|
1837
1879
|
|
|
1838
1880
|
declare function isDefined<T>(value: T | null | undefined): value is NonNullable<T>;
|
|
1839
1881
|
declare function isEmptyObject(value: any): boolean;
|
|
@@ -2006,4 +2048,4 @@ type DeepPartialNullish<T> = T extends BrowserNativeObject ? T | null : {
|
|
|
2006
2048
|
[K in keyof T]?: ExtractObjects<T[K]> extends never ? T[K] | null : DeepPartialNullish<T[K]> | null;
|
|
2007
2049
|
};
|
|
2008
2050
|
|
|
2009
|
-
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, InputMention, type
|
|
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 };
|