@sustaina/shared-ui 1.35.0 → 1.36.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 +118 -66
- package/dist/index.d.ts +118 -66
- package/dist/index.js +1075 -654
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +910 -495
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -726,42 +726,54 @@ type UseGridSettingsStoreState = {
|
|
|
726
726
|
};
|
|
727
727
|
declare const useGridSettingsStore: zustand.UseBoundStore<zustand.StoreApi<UseGridSettingsStoreState & UseGridSettingsStoreActions>>;
|
|
728
728
|
|
|
729
|
-
|
|
729
|
+
type IconProps = SVGProps<SVGSVGElement> & {
|
|
730
|
+
size?: number | string;
|
|
731
|
+
color?: string;
|
|
732
|
+
};
|
|
730
733
|
|
|
731
|
-
declare const
|
|
734
|
+
declare const ArrowIcon: React$1.FC<IconProps>;
|
|
732
735
|
|
|
733
|
-
declare const
|
|
736
|
+
declare const DecreaseIcon: React$1.FC<IconProps>;
|
|
734
737
|
|
|
735
|
-
declare const
|
|
738
|
+
declare const FiltersIcon: React$1.FC<IconProps>;
|
|
736
739
|
|
|
737
|
-
declare const
|
|
740
|
+
declare const InformationIcon: React$1.FC<IconProps>;
|
|
738
741
|
|
|
739
|
-
declare const
|
|
742
|
+
declare const NotFoundIcon: React__default.FC<IconProps>;
|
|
740
743
|
|
|
741
|
-
declare const
|
|
744
|
+
declare const PlusIcon$2: React$1.FC<IconProps>;
|
|
742
745
|
|
|
743
|
-
declare const
|
|
746
|
+
declare const CustomFieldIcon: React$1.FC<IconProps>;
|
|
744
747
|
|
|
745
|
-
|
|
746
|
-
size?: number | string;
|
|
747
|
-
color?: string;
|
|
748
|
-
strokeWidth?: number;
|
|
749
|
-
}
|
|
750
|
-
declare const FiltersIcon: React$1.FC<FiltersIconProps>;
|
|
748
|
+
declare const SuiCalendarIcon: React$1.FC<IconProps>;
|
|
751
749
|
|
|
752
|
-
declare const
|
|
750
|
+
declare const SuiCalendarIcon2: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
753
751
|
|
|
754
|
-
declare const
|
|
752
|
+
declare const SuiCheckIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
755
753
|
|
|
756
|
-
declare const
|
|
754
|
+
declare const SuiDotsVerticalIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
757
755
|
|
|
758
|
-
declare const
|
|
756
|
+
declare const SuiEmptyDataIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
759
757
|
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
declare const
|
|
758
|
+
declare const SuiExpandIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
759
|
+
|
|
760
|
+
declare const SuiFilterIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
761
|
+
|
|
762
|
+
declare const SuiSettingIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
763
|
+
|
|
764
|
+
declare const SuiTriangleDownIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
765
|
+
|
|
766
|
+
declare const SuiWarningIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
767
|
+
|
|
768
|
+
declare const TrashIcon: React$1.FC<IconProps>;
|
|
769
|
+
|
|
770
|
+
declare const RoleIcon: React$1.FC<IconProps>;
|
|
771
|
+
|
|
772
|
+
declare const UserIcon: React$1.FC<IconProps>;
|
|
773
|
+
|
|
774
|
+
declare const PlusIcon$1: React$1.FC<IconProps>;
|
|
775
|
+
|
|
776
|
+
declare const PlusIcon: React$1.FC<IconProps>;
|
|
765
777
|
|
|
766
778
|
type ImageLoaderProps = {
|
|
767
779
|
src: string;
|
|
@@ -835,52 +847,34 @@ declare const Input: React$1.ForwardRefExoticComponent<Omit<InputPrimitiveProps$
|
|
|
835
847
|
|
|
836
848
|
declare function Label({ className, ...props }: React$1.ComponentProps<typeof LabelPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
837
849
|
|
|
838
|
-
type
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
handleSettingClick: () => void;
|
|
842
|
-
handleExpandClick: () => void;
|
|
843
|
-
onCreateExample: () => void;
|
|
844
|
-
onViewExample: (exampleId: string) => void;
|
|
845
|
-
onEditExample: (exampleId: string) => void;
|
|
846
|
-
onDeleteExample: (exampleId: string) => void;
|
|
847
|
-
selectedRowId?: string;
|
|
848
|
-
onTableReady?: (table: unknown) => void;
|
|
849
|
-
children?: React$1.ReactNode;
|
|
850
|
+
type MainListContainerSlots = {
|
|
851
|
+
Container?: React$1.ElementType<any>;
|
|
852
|
+
Header?: React$1.ElementType<any>;
|
|
850
853
|
};
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
declare const ListContainer: React$1.FC<ListContainerProps>;
|
|
859
|
-
|
|
860
|
-
interface ListHeaderProps {
|
|
861
|
-
title: string | React$1.ReactNode;
|
|
854
|
+
type MainListContainerClassNames = {
|
|
855
|
+
root?: string;
|
|
856
|
+
content?: string;
|
|
857
|
+
};
|
|
858
|
+
type MainListContainerProps = {
|
|
859
|
+
title?: React$1.ReactNode;
|
|
860
|
+
titleIcon?: React$1.ReactNode;
|
|
862
861
|
isExpanded?: boolean;
|
|
863
862
|
onSettingClick?: () => void;
|
|
864
863
|
onExpandClick?: () => void;
|
|
865
|
-
bgColor?: string;
|
|
866
|
-
textClassName?: string;
|
|
867
|
-
titleIcon?: React$1.ReactNode;
|
|
868
|
-
rightActions?: React$1.ReactNode;
|
|
869
|
-
className?: string;
|
|
870
|
-
}
|
|
871
|
-
declare const ListHeader: React$1.FC<ListHeaderProps>;
|
|
872
|
-
|
|
873
|
-
interface ListTableProps {
|
|
874
|
-
gridSettingPayload?: GridPayload;
|
|
875
|
-
onCreateExample?: () => void;
|
|
876
|
-
onViewExample?: (exampleId: string) => void;
|
|
877
|
-
onEditExample?: (exampleId: string) => void;
|
|
878
|
-
onDeleteExample?: (exampleId: string) => void;
|
|
879
|
-
selectedRowId?: string;
|
|
880
|
-
onTableReady?: (table: unknown) => void;
|
|
881
864
|
children?: React$1.ReactNode;
|
|
882
|
-
|
|
883
|
-
|
|
865
|
+
/** advanced */
|
|
866
|
+
slots?: MainListContainerSlots;
|
|
867
|
+
classNames?: MainListContainerClassNames;
|
|
868
|
+
/** render prop for full control */
|
|
869
|
+
renderHeader?: (props: {
|
|
870
|
+
title?: React$1.ReactNode;
|
|
871
|
+
titleIcon?: React$1.ReactNode;
|
|
872
|
+
isExpanded?: boolean;
|
|
873
|
+
onSettingClick?: () => void;
|
|
874
|
+
onExpandClick?: () => void;
|
|
875
|
+
}) => React$1.ReactNode;
|
|
876
|
+
};
|
|
877
|
+
declare const MainListContainer: React$1.FC<MainListContainerProps>;
|
|
884
878
|
|
|
885
879
|
interface LookupSelectOption {
|
|
886
880
|
value: string;
|
|
@@ -1049,6 +1043,40 @@ declare const RichText: React$1.ForwardRefExoticComponent<{
|
|
|
1049
1043
|
allowImageUrlInsert?: boolean;
|
|
1050
1044
|
} & React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1051
1045
|
|
|
1046
|
+
type RightPanelContainerSlots = {
|
|
1047
|
+
Container?: React$1.ElementType<any>;
|
|
1048
|
+
Header?: React$1.ElementType<RightPanelContainerHeaderProps>;
|
|
1049
|
+
};
|
|
1050
|
+
type RightPanelContainerClassNames = {
|
|
1051
|
+
root?: string;
|
|
1052
|
+
body?: string;
|
|
1053
|
+
content?: string;
|
|
1054
|
+
header?: string;
|
|
1055
|
+
iconWrapper?: string;
|
|
1056
|
+
title?: string;
|
|
1057
|
+
subtitle?: string;
|
|
1058
|
+
};
|
|
1059
|
+
type RightPanelContainerHeaderProps = {
|
|
1060
|
+
title?: React$1.ReactNode;
|
|
1061
|
+
subtitle?: React$1.ReactNode;
|
|
1062
|
+
icon?: React$1.ReactNode;
|
|
1063
|
+
classNames?: RightPanelContainerClassNames;
|
|
1064
|
+
rightActions?: React$1.ReactNode;
|
|
1065
|
+
};
|
|
1066
|
+
type RightPanelContainerProps = {
|
|
1067
|
+
title?: React$1.ReactNode;
|
|
1068
|
+
subtitle?: React$1.ReactNode;
|
|
1069
|
+
icon?: React$1.ReactNode;
|
|
1070
|
+
rightActions?: React$1.ReactNode;
|
|
1071
|
+
children?: React$1.ReactNode;
|
|
1072
|
+
isExpanded?: boolean;
|
|
1073
|
+
className?: string;
|
|
1074
|
+
classNames?: RightPanelContainerClassNames;
|
|
1075
|
+
slots?: RightPanelContainerSlots;
|
|
1076
|
+
renderHeader?: (props: RightPanelContainerHeaderProps) => React$1.ReactNode;
|
|
1077
|
+
};
|
|
1078
|
+
declare const RightPanelContainer: React$1.FC<RightPanelContainerProps>;
|
|
1079
|
+
|
|
1052
1080
|
declare function Select({ ...props }: React$1.ComponentProps<typeof SelectPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
1053
1081
|
declare function SelectGroup({ ...props }: React$1.ComponentProps<typeof SelectPrimitive.Group>): react_jsx_runtime.JSX.Element;
|
|
1054
1082
|
declare function SelectValue({ ...props }: React$1.ComponentProps<typeof SelectPrimitive.Value>): react_jsx_runtime.JSX.Element;
|
|
@@ -1072,6 +1100,26 @@ type ClearButtonProps = {
|
|
|
1072
1100
|
};
|
|
1073
1101
|
declare const ClearButton: React__default.FC<ClearButtonProps>;
|
|
1074
1102
|
|
|
1103
|
+
interface ListContainerProps {
|
|
1104
|
+
className?: string;
|
|
1105
|
+
isLeftExpanded: boolean;
|
|
1106
|
+
children: React$1.ReactNode;
|
|
1107
|
+
}
|
|
1108
|
+
declare const ListContainer: React$1.FC<ListContainerProps>;
|
|
1109
|
+
|
|
1110
|
+
interface ListHeaderProps {
|
|
1111
|
+
title: string | React$1.ReactNode;
|
|
1112
|
+
isExpanded?: boolean;
|
|
1113
|
+
onSettingClick?: () => void;
|
|
1114
|
+
onExpandClick?: () => void;
|
|
1115
|
+
bgColor?: string;
|
|
1116
|
+
textClassName?: string;
|
|
1117
|
+
titleIcon?: React$1.ReactNode;
|
|
1118
|
+
rightActions?: React$1.ReactNode;
|
|
1119
|
+
className?: string;
|
|
1120
|
+
}
|
|
1121
|
+
declare const ListHeader: React$1.FC<ListHeaderProps>;
|
|
1122
|
+
|
|
1075
1123
|
declare function Skeleton({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
1076
1124
|
|
|
1077
1125
|
declare const spinnerVariants: (props?: ({
|
|
@@ -1124,6 +1172,10 @@ declare const index_FormMessage: typeof FormMessage;
|
|
|
1124
1172
|
declare const index_Input: typeof Input;
|
|
1125
1173
|
declare const index_InputPrimitive: typeof InputPrimitive;
|
|
1126
1174
|
declare const index_Label: typeof Label;
|
|
1175
|
+
declare const index_ListContainer: typeof ListContainer;
|
|
1176
|
+
type index_ListContainerProps = ListContainerProps;
|
|
1177
|
+
declare const index_ListHeader: typeof ListHeader;
|
|
1178
|
+
type index_ListHeaderProps = ListHeaderProps;
|
|
1127
1179
|
declare const index_Popover: typeof Popover;
|
|
1128
1180
|
declare const index_PopoverAnchor: typeof PopoverAnchor;
|
|
1129
1181
|
declare const index_PopoverArrow: typeof PopoverArrow;
|
|
@@ -1195,7 +1247,7 @@ declare const index_spinnerVariants: typeof spinnerVariants;
|
|
|
1195
1247
|
declare const index_useFormField: typeof useFormField;
|
|
1196
1248
|
declare const index_useSidebar: typeof useSidebar;
|
|
1197
1249
|
declare namespace index {
|
|
1198
|
-
export { index_Accordion as Accordion, index_AccordionContent as AccordionContent, index_AccordionItem as AccordionItem, index_AccordionTrigger as AccordionTrigger, index_Button as Button, 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, 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_RichText as RichText, 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_useFormField as useFormField, index_useSidebar as useSidebar };
|
|
1250
|
+
export { index_Accordion as Accordion, index_AccordionContent as AccordionContent, index_AccordionItem as AccordionItem, index_AccordionTrigger as AccordionTrigger, index_Button as Button, 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_RichText as RichText, 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_useFormField as useFormField, index_useSidebar as useSidebar };
|
|
1199
1251
|
}
|
|
1200
1252
|
|
|
1201
1253
|
type SidebarContextProps = {
|
|
@@ -1613,4 +1665,4 @@ type DeepPartialNullish<T> = T extends BrowserNativeObject ? T | null : {
|
|
|
1613
1665
|
[K in keyof T]?: ExtractObjects<T[K]> extends never ? T[K] | null : DeepPartialNullish<T[K]> | null;
|
|
1614
1666
|
};
|
|
1615
1667
|
|
|
1616
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, type ActionButtonProps, ActionMenu, type ActionMenuProps, AdvanceSearch, ArrowIcon, AuditFooter, type AuditFooterProps, type Breakpoints, type BrowserNativeObject, Button, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, type Column, Combobox, type ComboboxProps, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, type CroppedImagePayload, type CroppedImagePayloadWithBlobUrl, CropperModal, CropperModalError, type CropperModalErrorType, type CropperModalProps, DIALOG_ALERT_I18N_SUBNAMESPACE, DIALOG_ALERT_TEMPLATES, 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 DatatableColumnResizing, DatePicker, type DatePickerProps, type DebounceOptions, type DebouncedFunction, 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 EllipsisConfig, type EmptyObject, ErrorCompression, ErrorCreateCanvas, ErrorGeneratingBlob, ErrorInvalidSVG, ErrorSVGExceedSize, type ExtractObjects, type FieldSchema, type FieldType, FiltersIcon, 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, HeaderCell, type HeaderCellProps, Image, type ImageLoader, type ImageLoaderProps, type ImageProps, Input, type InputCustomInputProps, InputNumber, type InputNumberProps, type InputProps$1 as InputProps, Label,
|
|
1668
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, type ActionButtonProps, ActionMenu, type ActionMenuProps, AdvanceSearch, ArrowIcon, AuditFooter, type AuditFooterProps, type Breakpoints, type BrowserNativeObject, Button, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, type Column, Combobox, type ComboboxProps, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, type CroppedImagePayload, type CroppedImagePayloadWithBlobUrl, CropperModal, CropperModalError, type CropperModalErrorType, type CropperModalProps, CustomFieldIcon, DIALOG_ALERT_I18N_SUBNAMESPACE, DIALOG_ALERT_TEMPLATES, 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 DatatableColumnResizing, DatePicker, type DatePickerProps, 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 EllipsisConfig, type EmptyObject, ErrorCompression, ErrorCreateCanvas, ErrorGeneratingBlob, ErrorInvalidSVG, ErrorSVGExceedSize, type ExtractObjects, type FieldSchema, type FieldType, FiltersIcon, 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, HeaderCell, type HeaderCellProps, Image, type ImageLoader, type ImageLoaderProps, type ImageProps, InformationIcon, Input, type InputCustomInputProps, InputNumber, type InputNumberProps, type InputProps$1 as InputProps, Label, LookupSelect, type LookupSelectOption, type LookupSelectProps, MainListContainer, type MainListContainerClassNames, type MainListContainerProps, type MainListContainerSlots, MonthPicker, type MonthPickerProps, _default as Navbar, type NavbarProps, NotFoundIcon, type OptionData, type Params, type PermissionString, PlusIcon$2 as PlusIcon, Popover, PopoverAnchor, PopoverArrow, PopoverContent, PopoverTrigger, type PrefixMap, PreventPageLeave, RadioGroupItem, RadioGroupRoot, RadioLabel, type RawFormulaSegment, RichText, RightPanelContainer, type RightPanelContainerClassNames, type RightPanelContainerHeaderProps, type RightPanelContainerProps, type RightPanelContainerSlots, RoleIcon, type RowClickType, type RowState, type ScrollInfo, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, 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, type TemplateKeys, Textarea, Tooltip, TooltipArrow, TooltipContent, TooltipProvider, TooltipTrigger, TrashIcon, Truncated, TruncatedMouseEnterDiv, type TruncatedMouseEnterDivProps, type TruncatedProps, index as UI, type UseControllableStateOptions, type UseControllableStateResult, type UseHoverResult, type UseMediaQueryOptions, type UseMediaQueryResult, type UsePreventPageLeaveOptions, type UseScreenSizeResult, type UseTruncatedOptions, type UseTruncatedResult, PlusIcon as UserAloneIcon, PlusIcon$1 as UserFriendIcon, UserIcon, VirtualizedCommand, type VirtualizedCommandFieldNames, type VirtualizedCommandOption, type VirtualizedCommandProps, 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, useControllableState, useFormField, useGridSettingsStore, useHover, useIntersectionObserver, useIsomorphicLayoutEffect, useMediaQuery, usePreventPageLeave, usePreventPageLeaveStore, useScreenSize, useSidebar, useTruncated, validateTokenPrefixes };
|
package/dist/index.d.ts
CHANGED
|
@@ -726,42 +726,54 @@ type UseGridSettingsStoreState = {
|
|
|
726
726
|
};
|
|
727
727
|
declare const useGridSettingsStore: zustand.UseBoundStore<zustand.StoreApi<UseGridSettingsStoreState & UseGridSettingsStoreActions>>;
|
|
728
728
|
|
|
729
|
-
|
|
729
|
+
type IconProps = SVGProps<SVGSVGElement> & {
|
|
730
|
+
size?: number | string;
|
|
731
|
+
color?: string;
|
|
732
|
+
};
|
|
730
733
|
|
|
731
|
-
declare const
|
|
734
|
+
declare const ArrowIcon: React$1.FC<IconProps>;
|
|
732
735
|
|
|
733
|
-
declare const
|
|
736
|
+
declare const DecreaseIcon: React$1.FC<IconProps>;
|
|
734
737
|
|
|
735
|
-
declare const
|
|
738
|
+
declare const FiltersIcon: React$1.FC<IconProps>;
|
|
736
739
|
|
|
737
|
-
declare const
|
|
740
|
+
declare const InformationIcon: React$1.FC<IconProps>;
|
|
738
741
|
|
|
739
|
-
declare const
|
|
742
|
+
declare const NotFoundIcon: React__default.FC<IconProps>;
|
|
740
743
|
|
|
741
|
-
declare const
|
|
744
|
+
declare const PlusIcon$2: React$1.FC<IconProps>;
|
|
742
745
|
|
|
743
|
-
declare const
|
|
746
|
+
declare const CustomFieldIcon: React$1.FC<IconProps>;
|
|
744
747
|
|
|
745
|
-
|
|
746
|
-
size?: number | string;
|
|
747
|
-
color?: string;
|
|
748
|
-
strokeWidth?: number;
|
|
749
|
-
}
|
|
750
|
-
declare const FiltersIcon: React$1.FC<FiltersIconProps>;
|
|
748
|
+
declare const SuiCalendarIcon: React$1.FC<IconProps>;
|
|
751
749
|
|
|
752
|
-
declare const
|
|
750
|
+
declare const SuiCalendarIcon2: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
753
751
|
|
|
754
|
-
declare const
|
|
752
|
+
declare const SuiCheckIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
755
753
|
|
|
756
|
-
declare const
|
|
754
|
+
declare const SuiDotsVerticalIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
757
755
|
|
|
758
|
-
declare const
|
|
756
|
+
declare const SuiEmptyDataIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
759
757
|
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
declare const
|
|
758
|
+
declare const SuiExpandIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
759
|
+
|
|
760
|
+
declare const SuiFilterIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
761
|
+
|
|
762
|
+
declare const SuiSettingIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
763
|
+
|
|
764
|
+
declare const SuiTriangleDownIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
765
|
+
|
|
766
|
+
declare const SuiWarningIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
767
|
+
|
|
768
|
+
declare const TrashIcon: React$1.FC<IconProps>;
|
|
769
|
+
|
|
770
|
+
declare const RoleIcon: React$1.FC<IconProps>;
|
|
771
|
+
|
|
772
|
+
declare const UserIcon: React$1.FC<IconProps>;
|
|
773
|
+
|
|
774
|
+
declare const PlusIcon$1: React$1.FC<IconProps>;
|
|
775
|
+
|
|
776
|
+
declare const PlusIcon: React$1.FC<IconProps>;
|
|
765
777
|
|
|
766
778
|
type ImageLoaderProps = {
|
|
767
779
|
src: string;
|
|
@@ -835,52 +847,34 @@ declare const Input: React$1.ForwardRefExoticComponent<Omit<InputPrimitiveProps$
|
|
|
835
847
|
|
|
836
848
|
declare function Label({ className, ...props }: React$1.ComponentProps<typeof LabelPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
837
849
|
|
|
838
|
-
type
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
handleSettingClick: () => void;
|
|
842
|
-
handleExpandClick: () => void;
|
|
843
|
-
onCreateExample: () => void;
|
|
844
|
-
onViewExample: (exampleId: string) => void;
|
|
845
|
-
onEditExample: (exampleId: string) => void;
|
|
846
|
-
onDeleteExample: (exampleId: string) => void;
|
|
847
|
-
selectedRowId?: string;
|
|
848
|
-
onTableReady?: (table: unknown) => void;
|
|
849
|
-
children?: React$1.ReactNode;
|
|
850
|
+
type MainListContainerSlots = {
|
|
851
|
+
Container?: React$1.ElementType<any>;
|
|
852
|
+
Header?: React$1.ElementType<any>;
|
|
850
853
|
};
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
declare const ListContainer: React$1.FC<ListContainerProps>;
|
|
859
|
-
|
|
860
|
-
interface ListHeaderProps {
|
|
861
|
-
title: string | React$1.ReactNode;
|
|
854
|
+
type MainListContainerClassNames = {
|
|
855
|
+
root?: string;
|
|
856
|
+
content?: string;
|
|
857
|
+
};
|
|
858
|
+
type MainListContainerProps = {
|
|
859
|
+
title?: React$1.ReactNode;
|
|
860
|
+
titleIcon?: React$1.ReactNode;
|
|
862
861
|
isExpanded?: boolean;
|
|
863
862
|
onSettingClick?: () => void;
|
|
864
863
|
onExpandClick?: () => void;
|
|
865
|
-
bgColor?: string;
|
|
866
|
-
textClassName?: string;
|
|
867
|
-
titleIcon?: React$1.ReactNode;
|
|
868
|
-
rightActions?: React$1.ReactNode;
|
|
869
|
-
className?: string;
|
|
870
|
-
}
|
|
871
|
-
declare const ListHeader: React$1.FC<ListHeaderProps>;
|
|
872
|
-
|
|
873
|
-
interface ListTableProps {
|
|
874
|
-
gridSettingPayload?: GridPayload;
|
|
875
|
-
onCreateExample?: () => void;
|
|
876
|
-
onViewExample?: (exampleId: string) => void;
|
|
877
|
-
onEditExample?: (exampleId: string) => void;
|
|
878
|
-
onDeleteExample?: (exampleId: string) => void;
|
|
879
|
-
selectedRowId?: string;
|
|
880
|
-
onTableReady?: (table: unknown) => void;
|
|
881
864
|
children?: React$1.ReactNode;
|
|
882
|
-
|
|
883
|
-
|
|
865
|
+
/** advanced */
|
|
866
|
+
slots?: MainListContainerSlots;
|
|
867
|
+
classNames?: MainListContainerClassNames;
|
|
868
|
+
/** render prop for full control */
|
|
869
|
+
renderHeader?: (props: {
|
|
870
|
+
title?: React$1.ReactNode;
|
|
871
|
+
titleIcon?: React$1.ReactNode;
|
|
872
|
+
isExpanded?: boolean;
|
|
873
|
+
onSettingClick?: () => void;
|
|
874
|
+
onExpandClick?: () => void;
|
|
875
|
+
}) => React$1.ReactNode;
|
|
876
|
+
};
|
|
877
|
+
declare const MainListContainer: React$1.FC<MainListContainerProps>;
|
|
884
878
|
|
|
885
879
|
interface LookupSelectOption {
|
|
886
880
|
value: string;
|
|
@@ -1049,6 +1043,40 @@ declare const RichText: React$1.ForwardRefExoticComponent<{
|
|
|
1049
1043
|
allowImageUrlInsert?: boolean;
|
|
1050
1044
|
} & React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1051
1045
|
|
|
1046
|
+
type RightPanelContainerSlots = {
|
|
1047
|
+
Container?: React$1.ElementType<any>;
|
|
1048
|
+
Header?: React$1.ElementType<RightPanelContainerHeaderProps>;
|
|
1049
|
+
};
|
|
1050
|
+
type RightPanelContainerClassNames = {
|
|
1051
|
+
root?: string;
|
|
1052
|
+
body?: string;
|
|
1053
|
+
content?: string;
|
|
1054
|
+
header?: string;
|
|
1055
|
+
iconWrapper?: string;
|
|
1056
|
+
title?: string;
|
|
1057
|
+
subtitle?: string;
|
|
1058
|
+
};
|
|
1059
|
+
type RightPanelContainerHeaderProps = {
|
|
1060
|
+
title?: React$1.ReactNode;
|
|
1061
|
+
subtitle?: React$1.ReactNode;
|
|
1062
|
+
icon?: React$1.ReactNode;
|
|
1063
|
+
classNames?: RightPanelContainerClassNames;
|
|
1064
|
+
rightActions?: React$1.ReactNode;
|
|
1065
|
+
};
|
|
1066
|
+
type RightPanelContainerProps = {
|
|
1067
|
+
title?: React$1.ReactNode;
|
|
1068
|
+
subtitle?: React$1.ReactNode;
|
|
1069
|
+
icon?: React$1.ReactNode;
|
|
1070
|
+
rightActions?: React$1.ReactNode;
|
|
1071
|
+
children?: React$1.ReactNode;
|
|
1072
|
+
isExpanded?: boolean;
|
|
1073
|
+
className?: string;
|
|
1074
|
+
classNames?: RightPanelContainerClassNames;
|
|
1075
|
+
slots?: RightPanelContainerSlots;
|
|
1076
|
+
renderHeader?: (props: RightPanelContainerHeaderProps) => React$1.ReactNode;
|
|
1077
|
+
};
|
|
1078
|
+
declare const RightPanelContainer: React$1.FC<RightPanelContainerProps>;
|
|
1079
|
+
|
|
1052
1080
|
declare function Select({ ...props }: React$1.ComponentProps<typeof SelectPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
1053
1081
|
declare function SelectGroup({ ...props }: React$1.ComponentProps<typeof SelectPrimitive.Group>): react_jsx_runtime.JSX.Element;
|
|
1054
1082
|
declare function SelectValue({ ...props }: React$1.ComponentProps<typeof SelectPrimitive.Value>): react_jsx_runtime.JSX.Element;
|
|
@@ -1072,6 +1100,26 @@ type ClearButtonProps = {
|
|
|
1072
1100
|
};
|
|
1073
1101
|
declare const ClearButton: React__default.FC<ClearButtonProps>;
|
|
1074
1102
|
|
|
1103
|
+
interface ListContainerProps {
|
|
1104
|
+
className?: string;
|
|
1105
|
+
isLeftExpanded: boolean;
|
|
1106
|
+
children: React$1.ReactNode;
|
|
1107
|
+
}
|
|
1108
|
+
declare const ListContainer: React$1.FC<ListContainerProps>;
|
|
1109
|
+
|
|
1110
|
+
interface ListHeaderProps {
|
|
1111
|
+
title: string | React$1.ReactNode;
|
|
1112
|
+
isExpanded?: boolean;
|
|
1113
|
+
onSettingClick?: () => void;
|
|
1114
|
+
onExpandClick?: () => void;
|
|
1115
|
+
bgColor?: string;
|
|
1116
|
+
textClassName?: string;
|
|
1117
|
+
titleIcon?: React$1.ReactNode;
|
|
1118
|
+
rightActions?: React$1.ReactNode;
|
|
1119
|
+
className?: string;
|
|
1120
|
+
}
|
|
1121
|
+
declare const ListHeader: React$1.FC<ListHeaderProps>;
|
|
1122
|
+
|
|
1075
1123
|
declare function Skeleton({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
1076
1124
|
|
|
1077
1125
|
declare const spinnerVariants: (props?: ({
|
|
@@ -1124,6 +1172,10 @@ declare const index_FormMessage: typeof FormMessage;
|
|
|
1124
1172
|
declare const index_Input: typeof Input;
|
|
1125
1173
|
declare const index_InputPrimitive: typeof InputPrimitive;
|
|
1126
1174
|
declare const index_Label: typeof Label;
|
|
1175
|
+
declare const index_ListContainer: typeof ListContainer;
|
|
1176
|
+
type index_ListContainerProps = ListContainerProps;
|
|
1177
|
+
declare const index_ListHeader: typeof ListHeader;
|
|
1178
|
+
type index_ListHeaderProps = ListHeaderProps;
|
|
1127
1179
|
declare const index_Popover: typeof Popover;
|
|
1128
1180
|
declare const index_PopoverAnchor: typeof PopoverAnchor;
|
|
1129
1181
|
declare const index_PopoverArrow: typeof PopoverArrow;
|
|
@@ -1195,7 +1247,7 @@ declare const index_spinnerVariants: typeof spinnerVariants;
|
|
|
1195
1247
|
declare const index_useFormField: typeof useFormField;
|
|
1196
1248
|
declare const index_useSidebar: typeof useSidebar;
|
|
1197
1249
|
declare namespace index {
|
|
1198
|
-
export { index_Accordion as Accordion, index_AccordionContent as AccordionContent, index_AccordionItem as AccordionItem, index_AccordionTrigger as AccordionTrigger, index_Button as Button, 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, 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_RichText as RichText, 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_useFormField as useFormField, index_useSidebar as useSidebar };
|
|
1250
|
+
export { index_Accordion as Accordion, index_AccordionContent as AccordionContent, index_AccordionItem as AccordionItem, index_AccordionTrigger as AccordionTrigger, index_Button as Button, 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_RichText as RichText, 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_useFormField as useFormField, index_useSidebar as useSidebar };
|
|
1199
1251
|
}
|
|
1200
1252
|
|
|
1201
1253
|
type SidebarContextProps = {
|
|
@@ -1613,4 +1665,4 @@ type DeepPartialNullish<T> = T extends BrowserNativeObject ? T | null : {
|
|
|
1613
1665
|
[K in keyof T]?: ExtractObjects<T[K]> extends never ? T[K] | null : DeepPartialNullish<T[K]> | null;
|
|
1614
1666
|
};
|
|
1615
1667
|
|
|
1616
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, type ActionButtonProps, ActionMenu, type ActionMenuProps, AdvanceSearch, ArrowIcon, AuditFooter, type AuditFooterProps, type Breakpoints, type BrowserNativeObject, Button, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, type Column, Combobox, type ComboboxProps, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, type CroppedImagePayload, type CroppedImagePayloadWithBlobUrl, CropperModal, CropperModalError, type CropperModalErrorType, type CropperModalProps, DIALOG_ALERT_I18N_SUBNAMESPACE, DIALOG_ALERT_TEMPLATES, 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 DatatableColumnResizing, DatePicker, type DatePickerProps, type DebounceOptions, type DebouncedFunction, 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 EllipsisConfig, type EmptyObject, ErrorCompression, ErrorCreateCanvas, ErrorGeneratingBlob, ErrorInvalidSVG, ErrorSVGExceedSize, type ExtractObjects, type FieldSchema, type FieldType, FiltersIcon, 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, HeaderCell, type HeaderCellProps, Image, type ImageLoader, type ImageLoaderProps, type ImageProps, Input, type InputCustomInputProps, InputNumber, type InputNumberProps, type InputProps$1 as InputProps, Label,
|
|
1668
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, type ActionButtonProps, ActionMenu, type ActionMenuProps, AdvanceSearch, ArrowIcon, AuditFooter, type AuditFooterProps, type Breakpoints, type BrowserNativeObject, Button, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, type Column, Combobox, type ComboboxProps, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, type CroppedImagePayload, type CroppedImagePayloadWithBlobUrl, CropperModal, CropperModalError, type CropperModalErrorType, type CropperModalProps, CustomFieldIcon, DIALOG_ALERT_I18N_SUBNAMESPACE, DIALOG_ALERT_TEMPLATES, 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 DatatableColumnResizing, DatePicker, type DatePickerProps, 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 EllipsisConfig, type EmptyObject, ErrorCompression, ErrorCreateCanvas, ErrorGeneratingBlob, ErrorInvalidSVG, ErrorSVGExceedSize, type ExtractObjects, type FieldSchema, type FieldType, FiltersIcon, 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, HeaderCell, type HeaderCellProps, Image, type ImageLoader, type ImageLoaderProps, type ImageProps, InformationIcon, Input, type InputCustomInputProps, InputNumber, type InputNumberProps, type InputProps$1 as InputProps, Label, LookupSelect, type LookupSelectOption, type LookupSelectProps, MainListContainer, type MainListContainerClassNames, type MainListContainerProps, type MainListContainerSlots, MonthPicker, type MonthPickerProps, _default as Navbar, type NavbarProps, NotFoundIcon, type OptionData, type Params, type PermissionString, PlusIcon$2 as PlusIcon, Popover, PopoverAnchor, PopoverArrow, PopoverContent, PopoverTrigger, type PrefixMap, PreventPageLeave, RadioGroupItem, RadioGroupRoot, RadioLabel, type RawFormulaSegment, RichText, RightPanelContainer, type RightPanelContainerClassNames, type RightPanelContainerHeaderProps, type RightPanelContainerProps, type RightPanelContainerSlots, RoleIcon, type RowClickType, type RowState, type ScrollInfo, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, 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, type TemplateKeys, Textarea, Tooltip, TooltipArrow, TooltipContent, TooltipProvider, TooltipTrigger, TrashIcon, Truncated, TruncatedMouseEnterDiv, type TruncatedMouseEnterDivProps, type TruncatedProps, index as UI, type UseControllableStateOptions, type UseControllableStateResult, type UseHoverResult, type UseMediaQueryOptions, type UseMediaQueryResult, type UsePreventPageLeaveOptions, type UseScreenSizeResult, type UseTruncatedOptions, type UseTruncatedResult, PlusIcon as UserAloneIcon, PlusIcon$1 as UserFriendIcon, UserIcon, VirtualizedCommand, type VirtualizedCommandFieldNames, type VirtualizedCommandOption, type VirtualizedCommandProps, 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, useControllableState, useFormField, useGridSettingsStore, useHover, useIntersectionObserver, useIsomorphicLayoutEffect, useMediaQuery, usePreventPageLeave, usePreventPageLeaveStore, useScreenSize, useSidebar, useTruncated, validateTokenPrefixes };
|