@cleen/ui 0.1.79 → 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,65 +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 DatePickerProps = CalendarProps & {
1671
- placeholder?: ReactNode;
1672
- leftIcon?: ReactNode;
1673
- rightIcon?: ReactNode;
1674
- classNames?: {
1675
- label?: string;
1676
- dropdown?: ComponentClassnames<DropdownProps>;
1677
- card?: ComponentClassnames<CardProps>;
1678
- calendar?: ComponentClassnames<CalendarProps>;
1679
- };
1680
- styles?: {
1681
- label?: CSSProperties;
1682
- dropdown?: ComponentStyles<DropdownProps>;
1683
- card?: ComponentStyles<CardProps>;
1684
- calendar?: ComponentStyles<CalendarProps>;
1685
- };
1686
- };
1687
-
1688
- /**
1689
- * 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.
1690
- */
1691
- declare const DatePicker: react.ForwardRefExoticComponent<DatePickerProps & react.RefAttributes<HTMLDivElement>>;
1692
-
1693
1733
  interface DividerProps extends ComponentProps<'div'> {
1694
1734
  isHorizontal?: boolean;
1695
1735
  classNames?: {
@@ -2656,56 +2696,6 @@ interface RadioButtonGroupProps {
2656
2696
  */
2657
2697
  declare const RadioButtonGroup: ({ radios, label, className, classNames, style, styles, name, direction, radioPosition, defaultActiveId, value, infoLabels, onChange, }: RadioButtonGroupProps) => react_jsx_runtime.JSX.Element;
2658
2698
 
2659
- interface RangeSliderProps {
2660
- key?: string | number;
2661
- minValue?: number;
2662
- maxValue?: number;
2663
- step?: number;
2664
- value?: [number, number];
2665
- defaultValue?: [number, number];
2666
- variant?: 'default' | 'inline';
2667
- onChange?: (value: [number, number]) => void;
2668
- onChangeEnd?: (value: [number, number]) => void;
2669
- className?: string;
2670
- classNames?: {
2671
- container?: string;
2672
- slider?: string;
2673
- track?: string;
2674
- filledTrack?: string;
2675
- thumb?: string;
2676
- };
2677
- style?: CSSProperties;
2678
- styles?: {
2679
- container?: CSSProperties;
2680
- slider?: CSSProperties;
2681
- track?: CSSProperties;
2682
- filledTrack?: CSSProperties;
2683
- thumb?: CSSProperties;
2684
- };
2685
- disabled?: boolean;
2686
- label?: ReactNode;
2687
- labels?: {
2688
- minLabel?: ReactNode;
2689
- maxLabel?: ReactNode;
2690
- tooltip?: (value: number) => ReactNode;
2691
- };
2692
- tooltips?: {
2693
- min?: TooltipProps;
2694
- max?: TooltipProps;
2695
- shared?: TooltipProps;
2696
- };
2697
- infoLabels?: InfoLabelsProps;
2698
- }
2699
- /**
2700
- * Dual-handle range slider for selecting a numeric interval.
2701
- *
2702
- * - Supports controlled mode via `value` (`[min, max]`) + `onChange`, and uncontrolled via `defaultValue`.
2703
- * - Configure bounds with `minValue` / `maxValue` and increment with `step`.
2704
- * - Attach tooltip configuration to each thumb via `tooltips.min`, `tooltips.max`, or a shared preset via `tooltips.shared`.
2705
- * - Accepts `classNames` and `styles` for keys: `container`, `track`, `filledTrack`, `thumb`, `infoLabels`.
2706
- */
2707
- declare const RangeSlider: react__default.FC<RangeSliderProps>;
2708
-
2709
2699
  type RatingLabels = {
2710
2700
  helperText?: ReactNode;
2711
2701
  };
@@ -3160,6 +3150,56 @@ interface SliderProps {
3160
3150
  */
3161
3151
  declare const Slider: react__default.FC<SliderProps>;
3162
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
+
3163
3203
  type StarRatingProps = Omit<ComponentProps<'div'>, 'onChange'> & {
3164
3204
  value?: number;
3165
3205
  onChange?: (value: number) => void;
@@ -3270,44 +3310,4 @@ type TabsProps = ComponentProps<'div'> & {
3270
3310
  */
3271
3311
  declare const Tabs: react.ForwardRefExoticComponent<Omit<TabsProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
3272
3312
 
3273
- type CalendarBase = Omit<DayPickerProps, 'classNames' | 'styles' | 'mode' | 'disabled'> & {
3274
- label?: ReactNode;
3275
- withTodayButton?: boolean;
3276
- withDateInput?: boolean;
3277
- min?: Date | 'today';
3278
- max?: Date | 'today';
3279
- infoLabels?: InfoLabelsProps;
3280
- labels?: {
3281
- inputPlaceholder?: string;
3282
- today?: ReactNode;
3283
- };
3284
- classNames?: {
3285
- label?: string;
3286
- calendar?: ComponentClassnames<DayPickerProps>;
3287
- };
3288
- styles?: {
3289
- label?: CSSProperties;
3290
- calendar?: ComponentStyles<DayPickerProps>;
3291
- };
3292
- };
3293
- type CalendarSingleProps = CalendarBase & {
3294
- mode?: 'single';
3295
- selected?: Date;
3296
- onSelect?: (value?: Date) => void;
3297
- };
3298
- type CalendarRangeProps = CalendarBase & {
3299
- mode?: 'range';
3300
- selected?: DateRange;
3301
- onSelect?: (value?: DateRange) => void;
3302
- };
3303
- type CalendarProps = (CalendarSingleProps | CalendarRangeProps) & {
3304
- disabled?: boolean;
3305
- disabledDates?: Matcher | Matcher[];
3306
- };
3307
-
3308
- /**
3309
- * 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.
3310
- */
3311
- declare const Calendar: react.ForwardRefExoticComponent<CalendarProps & react.RefAttributes<HTMLDivElement>>;
3312
-
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, 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, 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 };