@sustaina/shared-ui 1.15.0 → 1.17.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 +42 -18
- package/dist/index.d.ts +42 -18
- package/dist/index.js +368 -134
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +367 -134
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -9,6 +9,7 @@ import * as CollapsiblePrimitive from '@radix-ui/react-collapsible';
|
|
|
9
9
|
import { Header, RowData as RowData$1, Column as Column$1, Table as Table$1, ColumnDef, ColumnFiltersState, OnChangeFn, FilterFnOption, SortingState, ColumnOrderState, VisibilityState, ColumnPinningState, GroupingState, GroupingOptions, ColumnResizeMode, RowSelectionState, Row, ExpandedState, Cell, HeaderGroup, HeaderContext } from '@tanstack/react-table';
|
|
10
10
|
import * as SheetPrimitive from '@radix-ui/react-dialog';
|
|
11
11
|
import { DialogContentProps as DialogContentProps$1 } from '@radix-ui/react-dialog';
|
|
12
|
+
import { Resource } from 'i18next';
|
|
12
13
|
import * as react_hook_form from 'react-hook-form';
|
|
13
14
|
import { FieldValues, FieldPath, ControllerProps } from 'react-hook-form';
|
|
14
15
|
import * as LabelPrimitive from '@radix-ui/react-label';
|
|
@@ -456,14 +457,9 @@ interface DialogAlertProps {
|
|
|
456
457
|
persistent?: boolean;
|
|
457
458
|
}
|
|
458
459
|
type TemplateKeys = "success.saved" | "success.deleted" | "success.removed" | "error.api_db_error" | "error.permission_denied" | "error.session_expired" | "error.user_not_found" | "error.data_not_found" | "error.data_restrict_editing" | "error.network_timeout_error" | "error.queue_full" | "error.invalid_data_format" | "error.data_linked_to_system_data" | "error.pending_workflow_conflict" | "error.invalid_incomplete_data" | "error.client_side_error" | "error.system_limitation" | "error.timeout" | "error.duplicate_data" | "error.something_went_wrong" | "confirm.delete" | "confirm.inactive" | "confirm.active" | "confirm.leave_page" | "confirm.remove" | "confirm.logout";
|
|
459
|
-
type
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
[namespace: string]: {
|
|
463
|
-
[key: string]: any;
|
|
464
|
-
};
|
|
465
|
-
};
|
|
466
|
-
}
|
|
460
|
+
type DialogAlertTemplateUnit = Omit<DialogAlertProps, "open" | "onOpenChange">;
|
|
461
|
+
type DialogAlertTemplates = Record<TemplateKeys, DialogAlertTemplateUnit>;
|
|
462
|
+
type DialogAlertI18nResource = Resource;
|
|
467
463
|
|
|
468
464
|
declare function DialogAlert({ open, onOpenChange, title, description, variant, confirmText, cancelText, onConfirm, onCancel, showCancel, align, outlet, persistent }: DialogAlertProps): react_jsx_runtime.JSX.Element;
|
|
469
465
|
|
|
@@ -481,14 +477,16 @@ interface DialogAlertProviderProps extends React.PropsWithChildren {
|
|
|
481
477
|
* ```
|
|
482
478
|
* {
|
|
483
479
|
* en: {
|
|
484
|
-
*
|
|
485
|
-
*
|
|
486
|
-
*
|
|
487
|
-
*
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
480
|
+
* translation: {
|
|
481
|
+
* dialog_alert: {
|
|
482
|
+
* close: "Close",
|
|
483
|
+
* cancel: "Cancel",
|
|
484
|
+
* "success.saved": {
|
|
485
|
+
title: "Successfully",
|
|
486
|
+
description: "Data has been successfully saved"
|
|
487
|
+
},
|
|
488
|
+
* ....
|
|
489
|
+
* }
|
|
492
490
|
* }
|
|
493
491
|
* }
|
|
494
492
|
* }
|
|
@@ -510,7 +508,7 @@ declare const getDialogAlertControls: () => {
|
|
|
510
508
|
openErrorDialogAlert: (error: unknown) => void;
|
|
511
509
|
};
|
|
512
510
|
|
|
513
|
-
declare const
|
|
511
|
+
declare const DIALOG_ALERT_I18N_SUBNAMESPACE = "dialog_alert";
|
|
514
512
|
|
|
515
513
|
declare const Form: <TFieldValues extends FieldValues, TContext = any, TTransformedValues = TFieldValues>(props: react_hook_form.FormProviderProps<TFieldValues, TContext, TTransformedValues>) => React$1.JSX.Element;
|
|
516
514
|
declare const FormField: <TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ ...props }: ControllerProps<TFieldValues, TName>) => react_jsx_runtime.JSX.Element;
|
|
@@ -609,6 +607,32 @@ declare const SuiTriangleDownIcon: (props: SVGProps<SVGSVGElement>) => react_jsx
|
|
|
609
607
|
|
|
610
608
|
declare const SuiWarningIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
611
609
|
|
|
610
|
+
type ImageLoaderProps = {
|
|
611
|
+
src: string;
|
|
612
|
+
width: number;
|
|
613
|
+
quality?: number;
|
|
614
|
+
};
|
|
615
|
+
type ImageLoader = (props: ImageLoaderProps) => string;
|
|
616
|
+
interface ImageProps extends Omit<React$1.ImgHTMLAttributes<HTMLImageElement>, "src" | "width" | "height"> {
|
|
617
|
+
src: string;
|
|
618
|
+
alt: string;
|
|
619
|
+
width?: number | string;
|
|
620
|
+
height?: number | string;
|
|
621
|
+
fill?: boolean;
|
|
622
|
+
sizes?: string;
|
|
623
|
+
quality?: number;
|
|
624
|
+
priority?: boolean;
|
|
625
|
+
placeholder?: "empty" | "blur";
|
|
626
|
+
blurDataURL?: string;
|
|
627
|
+
loader?: ImageLoader;
|
|
628
|
+
unoptimized?: boolean;
|
|
629
|
+
wrapperClassName?: string;
|
|
630
|
+
objectFit?: React$1.CSSProperties["objectFit"];
|
|
631
|
+
objectPosition?: React$1.CSSProperties["objectPosition"];
|
|
632
|
+
onLoadingComplete?: (img: HTMLImageElement) => void;
|
|
633
|
+
}
|
|
634
|
+
declare const Image: React$1.ForwardRefExoticComponent<ImageProps & React$1.RefAttributes<HTMLImageElement>>;
|
|
635
|
+
|
|
612
636
|
type InputPrimitiveProps = React$1.InputHTMLAttributes<HTMLInputElement>;
|
|
613
637
|
declare const InputPrimitive: React$1.ForwardRefExoticComponent<InputPrimitiveProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
614
638
|
declare const inputVariants: (props?: ({
|
|
@@ -1266,4 +1290,4 @@ type UseTruncatedOptions<T> = {
|
|
|
1266
1290
|
type UseTruncatedResult = boolean;
|
|
1267
1291
|
declare const useTruncated: <T extends HTMLElement = any>({ elementRef, onChange, resizeDetectDelay }: UseTruncatedOptions<T>) => UseTruncatedResult;
|
|
1268
1292
|
|
|
1269
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, AdvanceSearch, ArrowIcon, type Breakpoints, Button, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, type Column, type CroppedImagePayload, type CroppedImagePayloadWithBlobUrl, CropperModal, CropperModalError, type CropperModalErrorType, type CropperModalProps,
|
|
1293
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, AdvanceSearch, ArrowIcon, type Breakpoints, Button, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, type Column, type CroppedImagePayload, type CroppedImagePayloadWithBlobUrl, CropperModal, CropperModalError, type CropperModalErrorType, type CropperModalProps, DIALOG_ALERT_I18N_SUBNAMESPACE, 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, Dialog, DialogAlert, type DialogAlertI18nResource, type DialogAlertProps, DialogAlertProvider, type DialogAlertTemplateUnit, type DialogAlertTemplates, DialogContent, type DialogContentProps, DialogDescription, DialogFooter, DialogTitle, DialogTrigger, type DialogVariant, ErrorCompression, ErrorCreateCanvas, ErrorGeneratingBlob, ErrorInvalidSVG, ErrorSVGExceedSize, type FieldSchema, type FieldType, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, type GridPayload, GridSettingsModal, type GridSettingsModalProps, HeaderCell, type HeaderCellProps, Image, type ImageLoader, type ImageLoaderProps, type ImageProps, Input, type InputProps, Label, List, ListContainer, type ListContainerProps, ListHeader, type ListHeaderProps, type ListProps, ListTable, type ListTableProps, LookupSelect, type LookupSelectOption, type LookupSelectProps, MonthPicker, type MonthPickerProps, _default as Navbar, type NavbarProps, NotFoundIcon, type Params, Popover, PopoverAnchor, PopoverArrow, PopoverContent, PopoverTrigger, PreventPageLeave, RadioGroupItem, RadioGroupRoot, RadioLabel, RichText, 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, SuiCheckIcon, SuiDotsVerticalIcon, SuiEmptyDataIcon, SuiExpandIcon, SuiFilterIcon, SuiSettingIcon, SuiTriangleDownIcon, SuiWarningIcon, Switch, type TemplateKeys, Textarea, Tooltip, TooltipArrow, TooltipContent, TooltipProvider, TooltipTrigger, index as UI, type UseHoverResult, type UseMediaQueryOptions, type UseMediaQueryResult, type UsePreventPageLeaveOptions, type UseScreenSizeResult, type UseTruncatedOptions, type UseTruncatedResult, booleanToSelectValue, buttonVariants, cn, compareAlphanumeric, debounce, formatISODate, getDialogAlertControls, getDialogTemplates, inputVariants, isDefined, isEmptyObject, selectValueToBoolean, spinnerVariants, stripNullishObject, throttle, useFormField, useGridSettingsStore, useHover, useIntersectionObserver, useMediaQuery, usePreventPageLeave, usePreventPageLeaveStore, useScreenSize, useSidebar, useTruncated };
|
package/dist/index.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ import * as CollapsiblePrimitive from '@radix-ui/react-collapsible';
|
|
|
9
9
|
import { Header, RowData as RowData$1, Column as Column$1, Table as Table$1, ColumnDef, ColumnFiltersState, OnChangeFn, FilterFnOption, SortingState, ColumnOrderState, VisibilityState, ColumnPinningState, GroupingState, GroupingOptions, ColumnResizeMode, RowSelectionState, Row, ExpandedState, Cell, HeaderGroup, HeaderContext } from '@tanstack/react-table';
|
|
10
10
|
import * as SheetPrimitive from '@radix-ui/react-dialog';
|
|
11
11
|
import { DialogContentProps as DialogContentProps$1 } from '@radix-ui/react-dialog';
|
|
12
|
+
import { Resource } from 'i18next';
|
|
12
13
|
import * as react_hook_form from 'react-hook-form';
|
|
13
14
|
import { FieldValues, FieldPath, ControllerProps } from 'react-hook-form';
|
|
14
15
|
import * as LabelPrimitive from '@radix-ui/react-label';
|
|
@@ -456,14 +457,9 @@ interface DialogAlertProps {
|
|
|
456
457
|
persistent?: boolean;
|
|
457
458
|
}
|
|
458
459
|
type TemplateKeys = "success.saved" | "success.deleted" | "success.removed" | "error.api_db_error" | "error.permission_denied" | "error.session_expired" | "error.user_not_found" | "error.data_not_found" | "error.data_restrict_editing" | "error.network_timeout_error" | "error.queue_full" | "error.invalid_data_format" | "error.data_linked_to_system_data" | "error.pending_workflow_conflict" | "error.invalid_incomplete_data" | "error.client_side_error" | "error.system_limitation" | "error.timeout" | "error.duplicate_data" | "error.something_went_wrong" | "confirm.delete" | "confirm.inactive" | "confirm.active" | "confirm.leave_page" | "confirm.remove" | "confirm.logout";
|
|
459
|
-
type
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
[namespace: string]: {
|
|
463
|
-
[key: string]: any;
|
|
464
|
-
};
|
|
465
|
-
};
|
|
466
|
-
}
|
|
460
|
+
type DialogAlertTemplateUnit = Omit<DialogAlertProps, "open" | "onOpenChange">;
|
|
461
|
+
type DialogAlertTemplates = Record<TemplateKeys, DialogAlertTemplateUnit>;
|
|
462
|
+
type DialogAlertI18nResource = Resource;
|
|
467
463
|
|
|
468
464
|
declare function DialogAlert({ open, onOpenChange, title, description, variant, confirmText, cancelText, onConfirm, onCancel, showCancel, align, outlet, persistent }: DialogAlertProps): react_jsx_runtime.JSX.Element;
|
|
469
465
|
|
|
@@ -481,14 +477,16 @@ interface DialogAlertProviderProps extends React.PropsWithChildren {
|
|
|
481
477
|
* ```
|
|
482
478
|
* {
|
|
483
479
|
* en: {
|
|
484
|
-
*
|
|
485
|
-
*
|
|
486
|
-
*
|
|
487
|
-
*
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
480
|
+
* translation: {
|
|
481
|
+
* dialog_alert: {
|
|
482
|
+
* close: "Close",
|
|
483
|
+
* cancel: "Cancel",
|
|
484
|
+
* "success.saved": {
|
|
485
|
+
title: "Successfully",
|
|
486
|
+
description: "Data has been successfully saved"
|
|
487
|
+
},
|
|
488
|
+
* ....
|
|
489
|
+
* }
|
|
492
490
|
* }
|
|
493
491
|
* }
|
|
494
492
|
* }
|
|
@@ -510,7 +508,7 @@ declare const getDialogAlertControls: () => {
|
|
|
510
508
|
openErrorDialogAlert: (error: unknown) => void;
|
|
511
509
|
};
|
|
512
510
|
|
|
513
|
-
declare const
|
|
511
|
+
declare const DIALOG_ALERT_I18N_SUBNAMESPACE = "dialog_alert";
|
|
514
512
|
|
|
515
513
|
declare const Form: <TFieldValues extends FieldValues, TContext = any, TTransformedValues = TFieldValues>(props: react_hook_form.FormProviderProps<TFieldValues, TContext, TTransformedValues>) => React$1.JSX.Element;
|
|
516
514
|
declare const FormField: <TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ ...props }: ControllerProps<TFieldValues, TName>) => react_jsx_runtime.JSX.Element;
|
|
@@ -609,6 +607,32 @@ declare const SuiTriangleDownIcon: (props: SVGProps<SVGSVGElement>) => react_jsx
|
|
|
609
607
|
|
|
610
608
|
declare const SuiWarningIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
611
609
|
|
|
610
|
+
type ImageLoaderProps = {
|
|
611
|
+
src: string;
|
|
612
|
+
width: number;
|
|
613
|
+
quality?: number;
|
|
614
|
+
};
|
|
615
|
+
type ImageLoader = (props: ImageLoaderProps) => string;
|
|
616
|
+
interface ImageProps extends Omit<React$1.ImgHTMLAttributes<HTMLImageElement>, "src" | "width" | "height"> {
|
|
617
|
+
src: string;
|
|
618
|
+
alt: string;
|
|
619
|
+
width?: number | string;
|
|
620
|
+
height?: number | string;
|
|
621
|
+
fill?: boolean;
|
|
622
|
+
sizes?: string;
|
|
623
|
+
quality?: number;
|
|
624
|
+
priority?: boolean;
|
|
625
|
+
placeholder?: "empty" | "blur";
|
|
626
|
+
blurDataURL?: string;
|
|
627
|
+
loader?: ImageLoader;
|
|
628
|
+
unoptimized?: boolean;
|
|
629
|
+
wrapperClassName?: string;
|
|
630
|
+
objectFit?: React$1.CSSProperties["objectFit"];
|
|
631
|
+
objectPosition?: React$1.CSSProperties["objectPosition"];
|
|
632
|
+
onLoadingComplete?: (img: HTMLImageElement) => void;
|
|
633
|
+
}
|
|
634
|
+
declare const Image: React$1.ForwardRefExoticComponent<ImageProps & React$1.RefAttributes<HTMLImageElement>>;
|
|
635
|
+
|
|
612
636
|
type InputPrimitiveProps = React$1.InputHTMLAttributes<HTMLInputElement>;
|
|
613
637
|
declare const InputPrimitive: React$1.ForwardRefExoticComponent<InputPrimitiveProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
614
638
|
declare const inputVariants: (props?: ({
|
|
@@ -1266,4 +1290,4 @@ type UseTruncatedOptions<T> = {
|
|
|
1266
1290
|
type UseTruncatedResult = boolean;
|
|
1267
1291
|
declare const useTruncated: <T extends HTMLElement = any>({ elementRef, onChange, resizeDetectDelay }: UseTruncatedOptions<T>) => UseTruncatedResult;
|
|
1268
1292
|
|
|
1269
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, AdvanceSearch, ArrowIcon, type Breakpoints, Button, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, type Column, type CroppedImagePayload, type CroppedImagePayloadWithBlobUrl, CropperModal, CropperModalError, type CropperModalErrorType, type CropperModalProps,
|
|
1293
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, AdvanceSearch, ArrowIcon, type Breakpoints, Button, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, type Column, type CroppedImagePayload, type CroppedImagePayloadWithBlobUrl, CropperModal, CropperModalError, type CropperModalErrorType, type CropperModalProps, DIALOG_ALERT_I18N_SUBNAMESPACE, 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, Dialog, DialogAlert, type DialogAlertI18nResource, type DialogAlertProps, DialogAlertProvider, type DialogAlertTemplateUnit, type DialogAlertTemplates, DialogContent, type DialogContentProps, DialogDescription, DialogFooter, DialogTitle, DialogTrigger, type DialogVariant, ErrorCompression, ErrorCreateCanvas, ErrorGeneratingBlob, ErrorInvalidSVG, ErrorSVGExceedSize, type FieldSchema, type FieldType, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, type GridPayload, GridSettingsModal, type GridSettingsModalProps, HeaderCell, type HeaderCellProps, Image, type ImageLoader, type ImageLoaderProps, type ImageProps, Input, type InputProps, Label, List, ListContainer, type ListContainerProps, ListHeader, type ListHeaderProps, type ListProps, ListTable, type ListTableProps, LookupSelect, type LookupSelectOption, type LookupSelectProps, MonthPicker, type MonthPickerProps, _default as Navbar, type NavbarProps, NotFoundIcon, type Params, Popover, PopoverAnchor, PopoverArrow, PopoverContent, PopoverTrigger, PreventPageLeave, RadioGroupItem, RadioGroupRoot, RadioLabel, RichText, 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, SuiCheckIcon, SuiDotsVerticalIcon, SuiEmptyDataIcon, SuiExpandIcon, SuiFilterIcon, SuiSettingIcon, SuiTriangleDownIcon, SuiWarningIcon, Switch, type TemplateKeys, Textarea, Tooltip, TooltipArrow, TooltipContent, TooltipProvider, TooltipTrigger, index as UI, type UseHoverResult, type UseMediaQueryOptions, type UseMediaQueryResult, type UsePreventPageLeaveOptions, type UseScreenSizeResult, type UseTruncatedOptions, type UseTruncatedResult, booleanToSelectValue, buttonVariants, cn, compareAlphanumeric, debounce, formatISODate, getDialogAlertControls, getDialogTemplates, inputVariants, isDefined, isEmptyObject, selectValueToBoolean, spinnerVariants, stripNullishObject, throttle, useFormField, useGridSettingsStore, useHover, useIntersectionObserver, useMediaQuery, usePreventPageLeave, usePreventPageLeaveStore, useScreenSize, useSidebar, useTruncated };
|