@cleen/ui 0.1.78 → 0.1.80

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.ts CHANGED
@@ -1,14 +1,14 @@
1
1
  import * as react from 'react';
2
- import react__default, { ComponentProps, ReactNode, CSSProperties, SVGProps, RefObject, ChangeEvent, ButtonHTMLAttributes, JSX, ComponentPropsWithoutRef } from 'react';
2
+ import react__default, { ComponentProps, ReactNode, CSSProperties, SVGProps, RefObject, ButtonHTMLAttributes, ChangeEvent, JSX, ComponentPropsWithoutRef, FC } from 'react';
3
3
  import * as react_jsx_runtime from 'react/jsx-runtime';
4
4
  import { Position, ComponentClassnames, ComponentStyles, HintedString } from '@cleen/ui-core';
5
5
  import { WaveSurferOptions } from 'wavesurfer.js';
6
6
  import { RecordPluginOptions } from 'wavesurfer.js/dist/plugins/record.js';
7
7
  import { WaveSurferOptions as WaveSurferOptions$1 } from 'wavesurfer.js/dist/types.js';
8
+ import { DayPickerProps, DateRange, Matcher } from 'react-day-picker';
8
9
  import Autoscroll from 'embla-carousel-auto-scroll';
9
10
  import Autoplay from 'embla-carousel-autoplay';
10
11
  import useEmblaCarousel from 'embla-carousel-react';
11
- import { DayPickerProps, DateRange, Matcher } from 'react-day-picker';
12
12
  import * as react_toastify from 'react-toastify';
13
13
  import { ToastOptions, ToastContainerProps } from 'react-toastify';
14
14
  import ReactSelect, { components, SelectInstance, GroupBase } from 'react-select';
@@ -1413,6 +1413,105 @@ type CanvasButtonProps = ComponentProps<'button'> & {
1413
1413
  */
1414
1414
  declare const CanvasButton: react.ForwardRefExoticComponent<Omit<CanvasButtonProps, "ref"> & react.RefAttributes<HTMLButtonElement>>;
1415
1415
 
1416
+ type CalendarBase = Omit<DayPickerProps, 'classNames' | 'styles' | 'mode' | 'disabled'> & {
1417
+ label?: ReactNode;
1418
+ withTodayButton?: boolean;
1419
+ withDateInput?: boolean;
1420
+ min?: Date | 'today';
1421
+ max?: Date | 'today';
1422
+ infoLabels?: InfoLabelsProps;
1423
+ labels?: {
1424
+ inputPlaceholder?: string;
1425
+ today?: ReactNode;
1426
+ };
1427
+ classNames?: {
1428
+ label?: string;
1429
+ calendar?: ComponentClassnames<DayPickerProps>;
1430
+ };
1431
+ styles?: {
1432
+ label?: CSSProperties;
1433
+ calendar?: ComponentStyles<DayPickerProps>;
1434
+ };
1435
+ };
1436
+ type CalendarSingleProps = CalendarBase & {
1437
+ mode?: 'single';
1438
+ selected?: Date;
1439
+ onSelect?: (value?: Date) => void;
1440
+ };
1441
+ type CalendarRangeProps = CalendarBase & {
1442
+ mode?: 'range';
1443
+ selected?: DateRange;
1444
+ onSelect?: (value?: DateRange) => void;
1445
+ };
1446
+ type CalendarProps = (CalendarSingleProps | CalendarRangeProps) & {
1447
+ disabled?: boolean;
1448
+ disabledDates?: Matcher | Matcher[];
1449
+ };
1450
+
1451
+ /**
1452
+ * The `Calendar` component is an inline date selection interface that supports both single date and date range selection modes. It provides customizable labels, optional styling, and class name support for both the wrapper and internal DayPicker component.
1453
+ */
1454
+ declare const Calendar: react.ForwardRefExoticComponent<CalendarProps & react.RefAttributes<HTMLDivElement>>;
1455
+
1456
+ type DropdownProps = Omit<ComponentProps<'div'>, 'title'> & {
1457
+ type?: ButtonHTMLAttributes<HTMLButtonElement>['type'];
1458
+ disabled?: boolean;
1459
+ title?: ReactNode;
1460
+ label?: ReactNode;
1461
+ fullWidth?: boolean;
1462
+ fullWidthDropdown?: boolean;
1463
+ offset?: number;
1464
+ leftIcon?: ReactNode;
1465
+ rightIcon?: ReactNode;
1466
+ isOpen?: boolean;
1467
+ onOpenChange?: (isOpen: boolean) => void;
1468
+ keepOpenOnClickContent?: boolean;
1469
+ zIndex?: number;
1470
+ infoLabels?: InfoLabelsProps;
1471
+ classNames?: {
1472
+ container?: string;
1473
+ label?: string;
1474
+ title?: string;
1475
+ trigger?: string;
1476
+ dropdown?: string;
1477
+ };
1478
+ styles?: {
1479
+ container?: CSSProperties;
1480
+ label?: CSSProperties;
1481
+ title?: CSSProperties;
1482
+ trigger?: CSSProperties;
1483
+ dropdown?: CSSProperties;
1484
+ };
1485
+ };
1486
+ /**
1487
+ * The `Dropdown` component is a button that when clicked, displays a custom dropdown container beneath it.
1488
+ * It can be used to trigger actions or display a menu with custom content.
1489
+ */
1490
+ declare const Dropdown: react.ForwardRefExoticComponent<Omit<DropdownProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
1491
+
1492
+ type CalendarDropdownProps = CalendarProps & {
1493
+ placeholder?: ReactNode;
1494
+ leftIcon?: ReactNode;
1495
+ rightIcon?: ReactNode;
1496
+ classNames?: {
1497
+ label?: string;
1498
+ dropdown?: ComponentClassnames<DropdownProps>;
1499
+ card?: ComponentClassnames<CardProps>;
1500
+ calendar?: ComponentClassnames<CalendarProps>;
1501
+ };
1502
+ styles?: {
1503
+ label?: CSSProperties;
1504
+ dropdown?: ComponentStyles<DropdownProps>;
1505
+ card?: ComponentStyles<CardProps>;
1506
+ calendar?: ComponentStyles<CalendarProps>;
1507
+ };
1508
+ };
1509
+
1510
+ /**
1511
+ * The `CalendarDropdown` component is a controlled or uncontrolled date selection interface that combines a dropdown trigger with a calendar picker. It supports both single date and date range selection modes with customizable label, optional styling, and class name support for both the wrapper and internal DayPicker component.
1512
+ */
1513
+ declare const CalendarDropdown: react.ForwardRefExoticComponent<CalendarDropdownProps & react.RefAttributes<HTMLDivElement>>;
1514
+
1416
1515
  type CarouselProps = ComponentProps<'div'> & {
1417
1516
  options?: Parameters<typeof useEmblaCarousel>[0];
1418
1517
  slideAmount?: number;
@@ -1631,83 +1730,6 @@ type CreditCardInputProps = Omit<ComponentProps<'div'>, 'onChange'> & {
1631
1730
  */
1632
1731
  declare const CreditCardInput: react.ForwardRefExoticComponent<Omit<CreditCardInputProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
1633
1732
 
1634
- type DropdownProps = Omit<ComponentProps<'div'>, 'title'> & {
1635
- type?: ButtonHTMLAttributes<HTMLButtonElement>['type'];
1636
- disabled?: boolean;
1637
- title?: ReactNode;
1638
- label?: ReactNode;
1639
- fullWidth?: boolean;
1640
- fullWidthDropdown?: boolean;
1641
- offset?: number;
1642
- leftIcon?: ReactNode;
1643
- rightIcon?: ReactNode;
1644
- isOpen?: boolean;
1645
- onOpenChange?: (isOpen: boolean) => void;
1646
- keepOpenOnClickContent?: boolean;
1647
- zIndex?: number;
1648
- infoLabels?: InfoLabelsProps;
1649
- classNames?: {
1650
- container?: string;
1651
- label?: string;
1652
- title?: string;
1653
- trigger?: string;
1654
- dropdown?: string;
1655
- };
1656
- styles?: {
1657
- container?: CSSProperties;
1658
- label?: CSSProperties;
1659
- title?: CSSProperties;
1660
- trigger?: CSSProperties;
1661
- dropdown?: CSSProperties;
1662
- };
1663
- };
1664
- /**
1665
- * The `Dropdown` component is a button that when clicked, displays a custom dropdown container beneath it.
1666
- * It can be used to trigger actions or display a menu with custom content.
1667
- */
1668
- declare const Dropdown: react.ForwardRefExoticComponent<Omit<DropdownProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
1669
-
1670
- type DatePickerBase = Omit<DayPickerProps, 'classNames' | 'styles' | 'mode' | 'disabled'> & {
1671
- label?: ReactNode;
1672
- placeholder?: ReactNode;
1673
- min?: Date | 'today';
1674
- max?: Date | 'today';
1675
- infoLabels?: InfoLabelsProps;
1676
- leftIcon?: ReactNode;
1677
- rightIcon?: ReactNode;
1678
- classNames?: {
1679
- label?: string;
1680
- dropdown?: ComponentClassnames<DropdownProps>;
1681
- card?: ComponentClassnames<CardProps>;
1682
- datePicker?: ComponentClassnames<DayPickerProps>;
1683
- };
1684
- styles?: {
1685
- label?: CSSProperties;
1686
- dropdown?: ComponentStyles<DropdownProps>;
1687
- card?: ComponentStyles<CardProps>;
1688
- datePicker?: ComponentStyles<DayPickerProps>;
1689
- };
1690
- };
1691
- type DatePickerSingleProps = DatePickerBase & {
1692
- mode?: 'single';
1693
- selected?: Date;
1694
- onSelect?: (value?: Date) => void;
1695
- };
1696
- type DatePickerRangeProps = DatePickerBase & {
1697
- mode?: 'range';
1698
- selected?: DateRange;
1699
- onSelect?: (value?: DateRange) => void;
1700
- };
1701
- type DatePickerProps = (DatePickerSingleProps | DatePickerRangeProps) & {
1702
- disabled?: boolean;
1703
- disabledDates?: Matcher | Matcher[];
1704
- };
1705
-
1706
- /**
1707
- * The `DatePicker` component is a controlled or uncontrolled date selection interface that combines a dropdown trigger with a calendar picker. It supports both single date and date range selection modes with customizable label, optional styling, and class name support for both the wrapper and internal DayPicker component.
1708
- */
1709
- declare const DatePicker: react.ForwardRefExoticComponent<DatePickerProps & react.RefAttributes<HTMLDivElement>>;
1710
-
1711
1733
  interface DividerProps extends ComponentProps<'div'> {
1712
1734
  isHorizontal?: boolean;
1713
1735
  classNames?: {
@@ -2674,56 +2696,6 @@ interface RadioButtonGroupProps {
2674
2696
  */
2675
2697
  declare const RadioButtonGroup: ({ radios, label, className, classNames, style, styles, name, direction, radioPosition, defaultActiveId, value, infoLabels, onChange, }: RadioButtonGroupProps) => react_jsx_runtime.JSX.Element;
2676
2698
 
2677
- interface RangeSliderProps {
2678
- key?: string | number;
2679
- minValue?: number;
2680
- maxValue?: number;
2681
- step?: number;
2682
- value?: [number, number];
2683
- defaultValue?: [number, number];
2684
- variant?: 'default' | 'inline';
2685
- onChange?: (value: [number, number]) => void;
2686
- onChangeEnd?: (value: [number, number]) => void;
2687
- className?: string;
2688
- classNames?: {
2689
- container?: string;
2690
- slider?: string;
2691
- track?: string;
2692
- filledTrack?: string;
2693
- thumb?: string;
2694
- };
2695
- style?: CSSProperties;
2696
- styles?: {
2697
- container?: CSSProperties;
2698
- slider?: CSSProperties;
2699
- track?: CSSProperties;
2700
- filledTrack?: CSSProperties;
2701
- thumb?: CSSProperties;
2702
- };
2703
- disabled?: boolean;
2704
- label?: ReactNode;
2705
- labels?: {
2706
- minLabel?: ReactNode;
2707
- maxLabel?: ReactNode;
2708
- tooltip?: (value: number) => ReactNode;
2709
- };
2710
- tooltips?: {
2711
- min?: TooltipProps;
2712
- max?: TooltipProps;
2713
- shared?: TooltipProps;
2714
- };
2715
- infoLabels?: InfoLabelsProps;
2716
- }
2717
- /**
2718
- * Dual-handle range slider for selecting a numeric interval.
2719
- *
2720
- * - Supports controlled mode via `value` (`[min, max]`) + `onChange`, and uncontrolled via `defaultValue`.
2721
- * - Configure bounds with `minValue` / `maxValue` and increment with `step`.
2722
- * - Attach tooltip configuration to each thumb via `tooltips.min`, `tooltips.max`, or a shared preset via `tooltips.shared`.
2723
- * - Accepts `classNames` and `styles` for keys: `container`, `track`, `filledTrack`, `thumb`, `infoLabels`.
2724
- */
2725
- declare const RangeSlider: react__default.FC<RangeSliderProps>;
2726
-
2727
2699
  type RatingLabels = {
2728
2700
  helperText?: ReactNode;
2729
2701
  };
@@ -3178,6 +3150,56 @@ interface SliderProps {
3178
3150
  */
3179
3151
  declare const Slider: react__default.FC<SliderProps>;
3180
3152
 
3153
+ interface SliderRangeProps {
3154
+ key?: string | number;
3155
+ minValue?: number;
3156
+ maxValue?: number;
3157
+ step?: number;
3158
+ value?: [number, number];
3159
+ defaultValue?: [number, number];
3160
+ variant?: 'default' | 'inline';
3161
+ onChange?: (value: [number, number]) => void;
3162
+ onChangeEnd?: (value: [number, number]) => void;
3163
+ className?: string;
3164
+ classNames?: {
3165
+ container?: string;
3166
+ slider?: string;
3167
+ track?: string;
3168
+ filledTrack?: string;
3169
+ thumb?: string;
3170
+ };
3171
+ style?: CSSProperties;
3172
+ styles?: {
3173
+ container?: CSSProperties;
3174
+ slider?: CSSProperties;
3175
+ track?: CSSProperties;
3176
+ filledTrack?: CSSProperties;
3177
+ thumb?: CSSProperties;
3178
+ };
3179
+ disabled?: boolean;
3180
+ label?: ReactNode;
3181
+ labels?: {
3182
+ minLabel?: ReactNode;
3183
+ maxLabel?: ReactNode;
3184
+ tooltip?: (value: number) => ReactNode;
3185
+ };
3186
+ tooltips?: {
3187
+ min?: TooltipProps;
3188
+ max?: TooltipProps;
3189
+ shared?: TooltipProps;
3190
+ };
3191
+ infoLabels?: InfoLabelsProps;
3192
+ }
3193
+ /**
3194
+ * Dual-handle range slider for selecting a numeric interval.
3195
+ *
3196
+ * - Supports controlled mode via `value` (`[min, max]`) + `onChange`, and uncontrolled via `defaultValue`.
3197
+ * - Configure bounds with `minValue` / `maxValue` and increment with `step`.
3198
+ * - Attach tooltip configuration to each thumb via `tooltips.min`, `tooltips.max`, or a shared preset via `tooltips.shared`.
3199
+ * - Accepts `classNames` and `styles` for keys: `container`, `track`, `filledTrack`, `thumb`, `infoLabels`.
3200
+ */
3201
+ declare const SliderRange: FC<SliderRangeProps>;
3202
+
3181
3203
  type StarRatingProps = Omit<ComponentProps<'div'>, 'onChange'> & {
3182
3204
  value?: number;
3183
3205
  onChange?: (value: number) => void;
@@ -3288,4 +3310,4 @@ type TabsProps = ComponentProps<'div'> & {
3288
3310
  */
3289
3311
  declare const Tabs: react.ForwardRefExoticComponent<Omit<TabsProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
3290
3312
 
3291
- export { AdvancedProgressBar, type AdvancedProgressBarProps, AudioPlayback, type AudioPlaybackProps, AudioRecorder, type AudioRecorderProps, Avatar, type AvatarProps, AvatarRow, type AvatarRowProps, Breadcrumb, type BreadcrumbProps, Button, type ButtonProps, type ButtonVariant, CanvasButton, Card, CardIcon, type CardIconProps, CardMedia, type CardMediaProps, type Media as CardMediaType, type CardProps, Carousel, type CarouselProps, Checkbox, CheckboxGroup, type CheckboxGroupProps, type CheckboxProps, CleenIcon, CleenNotificationContainer, Collapsible, type CollapsibleProps, type CollapsibleSection, CreditCardInput, type CreditCardInputProps, DatePicker, type DatePickerProps, Divider, type DividerProps, Drawer, type DrawerConfig, DrawerContainer, type DrawerContainerProps, DrawerContentTitle, type DrawerContentTitleProps, type DrawerProps, DropZone, type DropZoneProps, Dropdown, type DropdownProps, EditableCard, type EditableCardField, type EditableCardProps, EditableText, EditableTextArea, type EditableTextAreaProps, type EditableTextAreaRef, type EditableTextProps, type EditableTextRef, FilterDrawer, type FilterDrawerFilterCategories, type FilterDrawerNewFilter, type FilterDrawerProps, type FilterDrawerSavedFilter, FormGroup, type FormGroupProps, GroupSelector, type GroupSelectorProps, type GroupSelectorSaveResult, type GroupSelectorThreeDotOption, IconAlertCircle, IconAlertFeatured, IconAlertOctagon, IconAlertTriangle, IconAlignRight, IconArrowDown, IconArrowLeft, IconArrowLeft2, IconArrowRight, IconArrowToTop, IconArrowUp, IconArrowUpRight, IconArrowUpRightNarrow, IconArrowUpRightSquare, IconAttachment, IconBarChartSquare, IconBold, IconBookmarkCheck, IconBookmarkCheckFill, IconBookmarkX, IconBoxLines, IconBoxText, IconBracketsCheck, IconBracketsEllipses, IconCalendar, IconCertificateHeart, IconCheck, IconCheckCircle, IconCheckCircleBroken, IconCheckFill, IconCheckVerified, IconChevronDown, IconChevronLeft, IconChevronLeftDouble, IconChevronRight, IconChevronRightDouble, IconChevronSelectorVertical, IconChevronUp, IconCircleSwap, IconClockFastForward, IconClockRewind, IconClockRewind2, IconCodeBrowser, IconCodeCircle, IconColors, IconColumnEdit, IconCopy, IconCopy2, IconCopy3, IconCopy4, IconCopy5, IconCopyCheck, IconCube, IconCubeOutline, IconCursorBox, IconDataflow, IconDataflow2, IconDataflow3, IconDelete, IconDollarCircle, IconDotsGrid, IconDotsHorizontal, IconDotsVertical, IconEdit, IconEditable, IconExpand, IconEye, IconEyeHidden, IconEyeHidden2, IconFaceSmile, IconFilter, IconFilter2, IconFlag, IconFlag2, IconFlag3, IconHandShield, IconHash, IconHeadsetMic, IconHeart, IconHouseLine, IconImage, IconImage2, IconImage3, IconImage4, IconImageCheck, IconInfoCircle, IconInfoHexagon, IconItalic, IconLayersMultiple, IconLayersSingle, IconLayout, IconLayout2, IconLayoutColumns, IconLayoutCustom, IconLayoutSequential, IconLayoutStuffed, IconLayoutTile, IconLifeBuoy, IconLightbulb, IconLightning, IconLightning2, IconLightningFast, IconLineChartBar, IconLineChartBreakoutSquare, IconLineChartUp, IconLineChartUp2, IconLines, IconLinesCheck, IconLinesPlay, IconLink, IconLink2, IconLink3, IconLink4, IconLink5, IconListBullet, IconListOrder, IconListOrder2, IconLock, IconLock2, IconLogIn, IconLogOut, IconLogOut2, IconMagicWand, IconMagicWand2, IconMail, IconMessageSquare, IconMessageSquare2, IconMessageXSquare, IconMinusCircle, IconMobile, IconMonitor, IconMonitor2, IconMonitor3, IconMoonCircle, IconName, IconNavigationPointer, IconNotificationBox, IconPCSetup, IconPalette, IconPasscodeLock, IconPencil, IconPercentageCircle, IconPerspective, IconPhoneCall, IconPin, IconPlayCircle, IconPlus, IconPlusCircle, IconPulse, IconQuestionCircle, IconRadioButton, IconRadioButtonActive, IconReceiptCheck, IconRedo, IconRefresh, IconRefresh2, IconRefresh3, IconRepeat, IconRepeat2, IconRetweet, IconRoundChart, IconRoundChart2, IconRoute, IconSave, IconSave2, IconScanDots, IconSearch, IconSend, IconSettings, IconSettings2, IconSettings3, IconShieldLightning, IconShieldPlus, IconShieldRemove, IconShuffle, IconSlashCircle, IconSlashOctagon, IconSocialGlobe, IconSocialLinkedin, IconSocialX, IconSpeedometer, IconStairsRound, IconStar, IconStarHalf, IconStars, IconStars2, IconStrikethrough, IconSuccessFeatured, IconSun, IconSwitchHorizontal, IconTag, IconTarget, IconTarget2, IconTextFormat, IconTextFormat2, IconTextHighlight, IconTranslate, IconTrash, IconTrending, IconUnderline, IconUndo, IconUndo2, IconUploadCloud, IconUser, IconUserEdit, IconUserRight, IconUserSquare, IconUsers, IconUsersUp, IconVolume, IconWrench, IconX, IconXCircle, IconXCircle2, IconXClose, IconXSquare, InfoLabels, type InfoLabelsProps, Input, type InputProps, Loader, type LoaderProps, Lookup, type LookupOption, type LookupProps, Menu, type MenuProps, Modal, type ModalProps, type NotificationProps, Pagination, PaginationGoToPage, type PaginationGoToPageProps, PaginationPageSize, type PaginationPageSizeProps, type PaginationProps, PillBadge, type PillBadgeProps, Popover, type PopoverProps, ProgressBar, type ProgressBarProps, ProgressCircle, type ProgressCircleProps, RadioBoxGroup, type RadioBoxGroupProps, RadioButtonGroup, type RadioButtonGroupProps, RangeSlider, type RangeSliderProps, Rating, type RatingProps, Select, type SelectProps, Sidebar, SidebarItem, type SidebarItemConfig, type SidebarItemProps, type SidebarProps, Skeleton, SkeletonAvatar, SkeletonBadge, SkeletonBanner, SkeletonButton, SkeletonCard, SkeletonCard2, SkeletonCard3, SkeletonCardStack, SkeletonChart, type SkeletonComponentProps, SkeletonContentCard, SkeletonDataGrid, SkeletonForm, SkeletonGlowingCard, SkeletonImage, SkeletonInfoCard, SkeletonInput, SkeletonList, SkeletonParagraph, type SkeletonProps, type SkeletonRoundness, SkeletonText, type SkeletonType, SkeletonVideo, SkeletonWidgetCard, SkeletonWrapper, Slider, type SliderProps, StarRating, type StarRatingProps, Stepper, type StepperProps, type SubmenuItem, Switch, type SwitchProps, type Tab, Tabs, type TabsProps, TextArea, type TextAreaProps, Tooltip, type TooltipProps, showNotification };
3313
+ export { AdvancedProgressBar, type AdvancedProgressBarProps, AudioPlayback, type AudioPlaybackProps, AudioRecorder, type AudioRecorderProps, Avatar, type AvatarProps, AvatarRow, type AvatarRowProps, Breadcrumb, type BreadcrumbProps, Button, type ButtonProps, type ButtonVariant, Calendar, CalendarDropdown, type CalendarDropdownProps, type CalendarProps, CanvasButton, Card, CardIcon, type CardIconProps, CardMedia, type CardMediaProps, type Media as CardMediaType, type CardProps, Carousel, type CarouselProps, Checkbox, CheckboxGroup, type CheckboxGroupProps, type CheckboxProps, CleenIcon, CleenNotificationContainer, Collapsible, type CollapsibleProps, type CollapsibleSection, CreditCardInput, type CreditCardInputProps, Divider, type DividerProps, Drawer, type DrawerConfig, DrawerContainer, type DrawerContainerProps, DrawerContentTitle, type DrawerContentTitleProps, type DrawerProps, DropZone, type DropZoneProps, Dropdown, type DropdownProps, EditableCard, type EditableCardField, type EditableCardProps, EditableText, EditableTextArea, type EditableTextAreaProps, type EditableTextAreaRef, type EditableTextProps, type EditableTextRef, FilterDrawer, type FilterDrawerFilterCategories, type FilterDrawerNewFilter, type FilterDrawerProps, type FilterDrawerSavedFilter, FormGroup, type FormGroupProps, GroupSelector, type GroupSelectorProps, type GroupSelectorSaveResult, type GroupSelectorThreeDotOption, IconAlertCircle, IconAlertFeatured, IconAlertOctagon, IconAlertTriangle, IconAlignRight, IconArrowDown, IconArrowLeft, IconArrowLeft2, IconArrowRight, IconArrowToTop, IconArrowUp, IconArrowUpRight, IconArrowUpRightNarrow, IconArrowUpRightSquare, IconAttachment, IconBarChartSquare, IconBold, IconBookmarkCheck, IconBookmarkCheckFill, IconBookmarkX, IconBoxLines, IconBoxText, IconBracketsCheck, IconBracketsEllipses, IconCalendar, IconCertificateHeart, IconCheck, IconCheckCircle, IconCheckCircleBroken, IconCheckFill, IconCheckVerified, IconChevronDown, IconChevronLeft, IconChevronLeftDouble, IconChevronRight, IconChevronRightDouble, IconChevronSelectorVertical, IconChevronUp, IconCircleSwap, IconClockFastForward, IconClockRewind, IconClockRewind2, IconCodeBrowser, IconCodeCircle, IconColors, IconColumnEdit, IconCopy, IconCopy2, IconCopy3, IconCopy4, IconCopy5, IconCopyCheck, IconCube, IconCubeOutline, IconCursorBox, IconDataflow, IconDataflow2, IconDataflow3, IconDelete, IconDollarCircle, IconDotsGrid, IconDotsHorizontal, IconDotsVertical, IconEdit, IconEditable, IconExpand, IconEye, IconEyeHidden, IconEyeHidden2, IconFaceSmile, IconFilter, IconFilter2, IconFlag, IconFlag2, IconFlag3, IconHandShield, IconHash, IconHeadsetMic, IconHeart, IconHouseLine, IconImage, IconImage2, IconImage3, IconImage4, IconImageCheck, IconInfoCircle, IconInfoHexagon, IconItalic, IconLayersMultiple, IconLayersSingle, IconLayout, IconLayout2, IconLayoutColumns, IconLayoutCustom, IconLayoutSequential, IconLayoutStuffed, IconLayoutTile, IconLifeBuoy, IconLightbulb, IconLightning, IconLightning2, IconLightningFast, IconLineChartBar, IconLineChartBreakoutSquare, IconLineChartUp, IconLineChartUp2, IconLines, IconLinesCheck, IconLinesPlay, IconLink, IconLink2, IconLink3, IconLink4, IconLink5, IconListBullet, IconListOrder, IconListOrder2, IconLock, IconLock2, IconLogIn, IconLogOut, IconLogOut2, IconMagicWand, IconMagicWand2, IconMail, IconMessageSquare, IconMessageSquare2, IconMessageXSquare, IconMinusCircle, IconMobile, IconMonitor, IconMonitor2, IconMonitor3, IconMoonCircle, IconName, IconNavigationPointer, IconNotificationBox, IconPCSetup, IconPalette, IconPasscodeLock, IconPencil, IconPercentageCircle, IconPerspective, IconPhoneCall, IconPin, IconPlayCircle, IconPlus, IconPlusCircle, IconPulse, IconQuestionCircle, IconRadioButton, IconRadioButtonActive, IconReceiptCheck, IconRedo, IconRefresh, IconRefresh2, IconRefresh3, IconRepeat, IconRepeat2, IconRetweet, IconRoundChart, IconRoundChart2, IconRoute, IconSave, IconSave2, IconScanDots, IconSearch, IconSend, IconSettings, IconSettings2, IconSettings3, IconShieldLightning, IconShieldPlus, IconShieldRemove, IconShuffle, IconSlashCircle, IconSlashOctagon, IconSocialGlobe, IconSocialLinkedin, IconSocialX, IconSpeedometer, IconStairsRound, IconStar, IconStarHalf, IconStars, IconStars2, IconStrikethrough, IconSuccessFeatured, IconSun, IconSwitchHorizontal, IconTag, IconTarget, IconTarget2, IconTextFormat, IconTextFormat2, IconTextHighlight, IconTranslate, IconTrash, IconTrending, IconUnderline, IconUndo, IconUndo2, IconUploadCloud, IconUser, IconUserEdit, IconUserRight, IconUserSquare, IconUsers, IconUsersUp, IconVolume, IconWrench, IconX, IconXCircle, IconXCircle2, IconXClose, IconXSquare, InfoLabels, type InfoLabelsProps, Input, type InputProps, Loader, type LoaderProps, Lookup, type LookupOption, type LookupProps, Menu, type MenuProps, Modal, type ModalProps, type NotificationProps, Pagination, PaginationGoToPage, type PaginationGoToPageProps, PaginationPageSize, type PaginationPageSizeProps, type PaginationProps, PillBadge, type PillBadgeProps, Popover, type PopoverProps, ProgressBar, type ProgressBarProps, ProgressCircle, type ProgressCircleProps, RadioBoxGroup, type RadioBoxGroupProps, RadioButtonGroup, type RadioButtonGroupProps, Rating, type RatingProps, Select, type SelectProps, Sidebar, SidebarItem, type SidebarItemConfig, type SidebarItemProps, type SidebarProps, Skeleton, SkeletonAvatar, SkeletonBadge, SkeletonBanner, SkeletonButton, SkeletonCard, SkeletonCard2, SkeletonCard3, SkeletonCardStack, SkeletonChart, type SkeletonComponentProps, SkeletonContentCard, SkeletonDataGrid, SkeletonForm, SkeletonGlowingCard, SkeletonImage, SkeletonInfoCard, SkeletonInput, SkeletonList, SkeletonParagraph, type SkeletonProps, type SkeletonRoundness, SkeletonText, type SkeletonType, SkeletonVideo, SkeletonWidgetCard, SkeletonWrapper, Slider, type SliderProps, SliderRange, type SliderRangeProps, StarRating, type StarRatingProps, Stepper, type StepperProps, type SubmenuItem, Switch, type SwitchProps, type Tab, Tabs, type TabsProps, TextArea, type TextAreaProps, Tooltip, type TooltipProps, showNotification };