@sustaina/shared-ui 1.37.1 → 1.39.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 CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as React$1 from 'react';
2
- import React__default, { CSSProperties, ReactNode, SVGProps, ComponentProps, useEffect } from 'react';
2
+ import React__default, { CSSProperties, ReactNode, ComponentProps, useEffect } from 'react';
3
3
  import * as react_jsx_runtime from 'react/jsx-runtime';
4
4
  import * as AccordionPrimitive from '@radix-ui/react-accordion';
5
5
  import { ClassValue } from 'clsx';
@@ -726,54 +726,85 @@ type UseGridSettingsStoreState = {
726
726
  };
727
727
  declare const useGridSettingsStore: zustand.UseBoundStore<zustand.StoreApi<UseGridSettingsStoreState & UseGridSettingsStoreActions>>;
728
728
 
729
- type IconProps = SVGProps<SVGSVGElement> & {
730
- size?: number | string;
731
- color?: string;
732
- };
729
+ interface IconProps extends React$1.SVGProps<SVGSVGElement> {
730
+ size?: number | string;
731
+ }
733
732
 
734
- declare const ArrowIcon: React$1.FC<IconProps>;
733
+ declare const AdministrationIcon: React__default.FC<IconProps>;
735
734
 
736
- declare const DecreaseIcon: React$1.FC<IconProps>;
735
+ declare const AnalyticsIcon: React__default.FC<IconProps>;
737
736
 
738
- declare const FiltersIcon: React$1.FC<IconProps>;
737
+ declare const ApplicationLogIcon: React__default.FC<IconProps>;
739
738
 
740
- declare const InformationIcon: React$1.FC<IconProps>;
739
+ declare const ArrowIcon: React__default.FC<IconProps>;
741
740
 
742
- declare const NotFoundIcon: React__default.FC<IconProps>;
741
+ declare const SuiCalendarIcon: React__default.FC<IconProps>;
742
+
743
+ declare const SuiCalendarIcon2: React__default.FC<IconProps>;
744
+
745
+ declare const SuiCheckIcon: React__default.FC<IconProps>;
746
+
747
+ declare const CustomActionStatusIcon: React__default.FC<IconProps>;
748
+
749
+ declare const CustomFieldIcon: React__default.FC<IconProps>;
750
+
751
+ declare const DashboardIcon: React__default.FC<IconProps>;
752
+
753
+ declare const DataEntryIcon: React__default.FC<IconProps>;
754
+
755
+ declare const DecreaseIcon: React__default.FC<IconProps>;
743
756
 
744
- declare const PlusIcon$2: React$1.FC<IconProps>;
757
+ declare const SuiDotsVerticalIcon: React__default.FC<IconProps>;
745
758
 
746
- declare const CustomFieldIcon: React$1.FC<IconProps>;
759
+ declare const SuiEmptyDataIcon: React__default.FC<IconProps>;
747
760
 
748
- declare const SuiCalendarIcon: React$1.FC<IconProps>;
761
+ declare const SuiExpandIcon: React__default.FC<IconProps>;
749
762
 
750
- declare const SuiCalendarIcon2: (props: IconProps) => react_jsx_runtime.JSX.Element;
763
+ declare const SuiFilterIcon: React__default.FC<IconProps>;
764
+
765
+ declare const FiltersIcon: React__default.FC<IconProps>;
766
+
767
+ declare const HamburgerMenuIcon: React__default.FC<IconProps>;
768
+
769
+ declare const HandymanIcon: React__default.FC<IconProps>;
770
+
771
+ declare const InformationIcon: React__default.FC<IconProps>;
772
+
773
+ declare const MailIcon: React__default.FC<IconProps>;
774
+
775
+ declare const ManIcon: React__default.FC<IconProps>;
776
+
777
+ declare const ManagementIcon: React__default.FC<IconProps>;
778
+
779
+ declare const MenuIcon: React__default.FC<IconProps>;
780
+
781
+ declare const NotFoundIcon: React__default.FC<IconProps>;
751
782
 
752
- declare const SuiCheckIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
783
+ declare const PlusIcon: React__default.FC<IconProps>;
753
784
 
754
- declare const SuiDotsVerticalIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
785
+ declare const PowerIcon: React__default.FC<IconProps>;
755
786
 
756
- declare const SuiEmptyDataIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
787
+ declare const QuestionIcon: React__default.FC<IconProps>;
757
788
 
758
- declare const SuiExpandIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
789
+ declare const RoleIcon: React__default.FC<IconProps>;
759
790
 
760
- declare const SuiFilterIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
791
+ declare const SuiSettingIcon: React__default.FC<IconProps>;
761
792
 
762
- declare const SuiSettingIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
793
+ declare const SetupIcon: React__default.FC<IconProps>;
763
794
 
764
- declare const SuiTriangleDownIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
795
+ declare const ToolBoxIcon: React__default.FC<IconProps>;
765
796
 
766
- declare const SuiWarningIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
797
+ declare const TrashIcon: React__default.FC<IconProps>;
767
798
 
768
- declare const TrashIcon: React$1.FC<IconProps>;
799
+ declare const SuiTriangleDownIcon: React__default.FC<IconProps>;
769
800
 
770
- declare const RoleIcon: React$1.FC<IconProps>;
801
+ declare const UserAloneIcon: React__default.FC<IconProps>;
771
802
 
772
- declare const UserIcon: React$1.FC<IconProps>;
803
+ declare const UserFriendIcon: React__default.FC<IconProps>;
773
804
 
774
- declare const PlusIcon$1: React$1.FC<IconProps>;
805
+ declare const UserIcon: React__default.FC<IconProps>;
775
806
 
776
- declare const PlusIcon: React$1.FC<IconProps>;
807
+ declare const SuiWarningIcon: React__default.FC<IconProps>;
777
808
 
778
809
  type ImageLoaderProps = {
779
810
  src: string;
@@ -1693,4 +1724,4 @@ type DeepPartialNullish<T> = T extends BrowserNativeObject ? T | null : {
1693
1724
  [K in keyof T]?: ExtractObjects<T[K]> extends never ? T[K] | null : DeepPartialNullish<T[K]> | null;
1694
1725
  };
1695
1726
 
1696
- 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 DraftGuardState, type DraftSource, 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, useDraftGuardStore, useFormField, useGridSettingsStore, useHover, useIntersectionObserver, useIsomorphicLayoutEffect, useMediaQuery, usePreventPageLeave, usePreventPageLeaveStore, useSafeBlocker, useScreenSize, useSidebar, useTruncated, validateTokenPrefixes };
1727
+ export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, type ActionButtonProps, ActionMenu, type ActionMenuProps, AdministrationIcon, AdvanceSearch, AnalyticsIcon, ApplicationLogIcon, 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, 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 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 DraftGuardState, type DraftSource, 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, HamburgerMenuIcon, HandymanIcon, 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, MailIcon, MainListContainer, type MainListContainerClassNames, type MainListContainerProps, type MainListContainerSlots, ManIcon, ManagementIcon, MenuIcon, MonthPicker, type MonthPickerProps, _default as Navbar, type NavbarProps, NotFoundIcon, type OptionData, type Params, type PermissionString, PlusIcon, Popover, PopoverAnchor, PopoverArrow, PopoverContent, PopoverTrigger, PowerIcon, type PrefixMap, PreventPageLeave, QuestionIcon, RadioGroupItem, RadioGroupRoot, RadioLabel, type RawFormulaSegment, RichText, RightPanelContainer, type RightPanelContainerClassNames, type RightPanelContainerHeaderProps, type RightPanelContainerProps, type RightPanelContainerSlots, RoleIcon, type RowClickType, type RowState, type ScrollInfo, 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, type TemplateKeys, Textarea, ToolBoxIcon, 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, UserAloneIcon, 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, useDraftGuardStore, useFormField, useGridSettingsStore, useHover, useIntersectionObserver, useIsomorphicLayoutEffect, useMediaQuery, usePreventPageLeave, usePreventPageLeaveStore, useSafeBlocker, useScreenSize, useSidebar, useTruncated, validateTokenPrefixes };
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as React$1 from 'react';
2
- import React__default, { CSSProperties, ReactNode, SVGProps, ComponentProps, useEffect } from 'react';
2
+ import React__default, { CSSProperties, ReactNode, ComponentProps, useEffect } from 'react';
3
3
  import * as react_jsx_runtime from 'react/jsx-runtime';
4
4
  import * as AccordionPrimitive from '@radix-ui/react-accordion';
5
5
  import { ClassValue } from 'clsx';
@@ -726,54 +726,85 @@ type UseGridSettingsStoreState = {
726
726
  };
727
727
  declare const useGridSettingsStore: zustand.UseBoundStore<zustand.StoreApi<UseGridSettingsStoreState & UseGridSettingsStoreActions>>;
728
728
 
729
- type IconProps = SVGProps<SVGSVGElement> & {
730
- size?: number | string;
731
- color?: string;
732
- };
729
+ interface IconProps extends React$1.SVGProps<SVGSVGElement> {
730
+ size?: number | string;
731
+ }
733
732
 
734
- declare const ArrowIcon: React$1.FC<IconProps>;
733
+ declare const AdministrationIcon: React__default.FC<IconProps>;
735
734
 
736
- declare const DecreaseIcon: React$1.FC<IconProps>;
735
+ declare const AnalyticsIcon: React__default.FC<IconProps>;
737
736
 
738
- declare const FiltersIcon: React$1.FC<IconProps>;
737
+ declare const ApplicationLogIcon: React__default.FC<IconProps>;
739
738
 
740
- declare const InformationIcon: React$1.FC<IconProps>;
739
+ declare const ArrowIcon: React__default.FC<IconProps>;
741
740
 
742
- declare const NotFoundIcon: React__default.FC<IconProps>;
741
+ declare const SuiCalendarIcon: React__default.FC<IconProps>;
742
+
743
+ declare const SuiCalendarIcon2: React__default.FC<IconProps>;
744
+
745
+ declare const SuiCheckIcon: React__default.FC<IconProps>;
746
+
747
+ declare const CustomActionStatusIcon: React__default.FC<IconProps>;
748
+
749
+ declare const CustomFieldIcon: React__default.FC<IconProps>;
750
+
751
+ declare const DashboardIcon: React__default.FC<IconProps>;
752
+
753
+ declare const DataEntryIcon: React__default.FC<IconProps>;
754
+
755
+ declare const DecreaseIcon: React__default.FC<IconProps>;
743
756
 
744
- declare const PlusIcon$2: React$1.FC<IconProps>;
757
+ declare const SuiDotsVerticalIcon: React__default.FC<IconProps>;
745
758
 
746
- declare const CustomFieldIcon: React$1.FC<IconProps>;
759
+ declare const SuiEmptyDataIcon: React__default.FC<IconProps>;
747
760
 
748
- declare const SuiCalendarIcon: React$1.FC<IconProps>;
761
+ declare const SuiExpandIcon: React__default.FC<IconProps>;
749
762
 
750
- declare const SuiCalendarIcon2: (props: IconProps) => react_jsx_runtime.JSX.Element;
763
+ declare const SuiFilterIcon: React__default.FC<IconProps>;
764
+
765
+ declare const FiltersIcon: React__default.FC<IconProps>;
766
+
767
+ declare const HamburgerMenuIcon: React__default.FC<IconProps>;
768
+
769
+ declare const HandymanIcon: React__default.FC<IconProps>;
770
+
771
+ declare const InformationIcon: React__default.FC<IconProps>;
772
+
773
+ declare const MailIcon: React__default.FC<IconProps>;
774
+
775
+ declare const ManIcon: React__default.FC<IconProps>;
776
+
777
+ declare const ManagementIcon: React__default.FC<IconProps>;
778
+
779
+ declare const MenuIcon: React__default.FC<IconProps>;
780
+
781
+ declare const NotFoundIcon: React__default.FC<IconProps>;
751
782
 
752
- declare const SuiCheckIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
783
+ declare const PlusIcon: React__default.FC<IconProps>;
753
784
 
754
- declare const SuiDotsVerticalIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
785
+ declare const PowerIcon: React__default.FC<IconProps>;
755
786
 
756
- declare const SuiEmptyDataIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
787
+ declare const QuestionIcon: React__default.FC<IconProps>;
757
788
 
758
- declare const SuiExpandIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
789
+ declare const RoleIcon: React__default.FC<IconProps>;
759
790
 
760
- declare const SuiFilterIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
791
+ declare const SuiSettingIcon: React__default.FC<IconProps>;
761
792
 
762
- declare const SuiSettingIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
793
+ declare const SetupIcon: React__default.FC<IconProps>;
763
794
 
764
- declare const SuiTriangleDownIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
795
+ declare const ToolBoxIcon: React__default.FC<IconProps>;
765
796
 
766
- declare const SuiWarningIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
797
+ declare const TrashIcon: React__default.FC<IconProps>;
767
798
 
768
- declare const TrashIcon: React$1.FC<IconProps>;
799
+ declare const SuiTriangleDownIcon: React__default.FC<IconProps>;
769
800
 
770
- declare const RoleIcon: React$1.FC<IconProps>;
801
+ declare const UserAloneIcon: React__default.FC<IconProps>;
771
802
 
772
- declare const UserIcon: React$1.FC<IconProps>;
803
+ declare const UserFriendIcon: React__default.FC<IconProps>;
773
804
 
774
- declare const PlusIcon$1: React$1.FC<IconProps>;
805
+ declare const UserIcon: React__default.FC<IconProps>;
775
806
 
776
- declare const PlusIcon: React$1.FC<IconProps>;
807
+ declare const SuiWarningIcon: React__default.FC<IconProps>;
777
808
 
778
809
  type ImageLoaderProps = {
779
810
  src: string;
@@ -1693,4 +1724,4 @@ type DeepPartialNullish<T> = T extends BrowserNativeObject ? T | null : {
1693
1724
  [K in keyof T]?: ExtractObjects<T[K]> extends never ? T[K] | null : DeepPartialNullish<T[K]> | null;
1694
1725
  };
1695
1726
 
1696
- 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 DraftGuardState, type DraftSource, 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, useDraftGuardStore, useFormField, useGridSettingsStore, useHover, useIntersectionObserver, useIsomorphicLayoutEffect, useMediaQuery, usePreventPageLeave, usePreventPageLeaveStore, useSafeBlocker, useScreenSize, useSidebar, useTruncated, validateTokenPrefixes };
1727
+ export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, type ActionButtonProps, ActionMenu, type ActionMenuProps, AdministrationIcon, AdvanceSearch, AnalyticsIcon, ApplicationLogIcon, 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, 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 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 DraftGuardState, type DraftSource, 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, HamburgerMenuIcon, HandymanIcon, 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, MailIcon, MainListContainer, type MainListContainerClassNames, type MainListContainerProps, type MainListContainerSlots, ManIcon, ManagementIcon, MenuIcon, MonthPicker, type MonthPickerProps, _default as Navbar, type NavbarProps, NotFoundIcon, type OptionData, type Params, type PermissionString, PlusIcon, Popover, PopoverAnchor, PopoverArrow, PopoverContent, PopoverTrigger, PowerIcon, type PrefixMap, PreventPageLeave, QuestionIcon, RadioGroupItem, RadioGroupRoot, RadioLabel, type RawFormulaSegment, RichText, RightPanelContainer, type RightPanelContainerClassNames, type RightPanelContainerHeaderProps, type RightPanelContainerProps, type RightPanelContainerSlots, RoleIcon, type RowClickType, type RowState, type ScrollInfo, 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, type TemplateKeys, Textarea, ToolBoxIcon, 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, UserAloneIcon, 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, useDraftGuardStore, useFormField, useGridSettingsStore, useHover, useIntersectionObserver, useIsomorphicLayoutEffect, useMediaQuery, usePreventPageLeave, usePreventPageLeaveStore, useSafeBlocker, useScreenSize, useSidebar, useTruncated, validateTokenPrefixes };