@cleen/ui 0.1.79 → 0.1.81

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,15 @@
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
+ import { RgbaColor } from 'react-colorful';
12
13
  import * as react_toastify from 'react-toastify';
13
14
  import { ToastOptions, ToastContainerProps } from 'react-toastify';
14
15
  import ReactSelect, { components, SelectInstance, GroupBase } from 'react-select';
@@ -1413,6 +1414,105 @@ type CanvasButtonProps = ComponentProps<'button'> & {
1413
1414
  */
1414
1415
  declare const CanvasButton: react.ForwardRefExoticComponent<Omit<CanvasButtonProps, "ref"> & react.RefAttributes<HTMLButtonElement>>;
1415
1416
 
1417
+ type CalendarBase = Omit<DayPickerProps, 'classNames' | 'styles' | 'mode' | 'disabled'> & {
1418
+ label?: ReactNode;
1419
+ withTodayButton?: boolean;
1420
+ withDateInput?: boolean;
1421
+ min?: Date | 'today';
1422
+ max?: Date | 'today';
1423
+ infoLabels?: InfoLabelsProps;
1424
+ labels?: {
1425
+ inputPlaceholder?: string;
1426
+ today?: ReactNode;
1427
+ };
1428
+ classNames?: {
1429
+ label?: string;
1430
+ calendar?: ComponentClassnames<DayPickerProps>;
1431
+ };
1432
+ styles?: {
1433
+ label?: CSSProperties;
1434
+ calendar?: ComponentStyles<DayPickerProps>;
1435
+ };
1436
+ };
1437
+ type CalendarSingleProps = CalendarBase & {
1438
+ mode?: 'single';
1439
+ selected?: Date;
1440
+ onSelect?: (value?: Date) => void;
1441
+ };
1442
+ type CalendarRangeProps = CalendarBase & {
1443
+ mode?: 'range';
1444
+ selected?: DateRange;
1445
+ onSelect?: (value?: DateRange) => void;
1446
+ };
1447
+ type CalendarProps = (CalendarSingleProps | CalendarRangeProps) & {
1448
+ disabled?: boolean;
1449
+ disabledDates?: Matcher | Matcher[];
1450
+ };
1451
+
1452
+ /**
1453
+ * 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.
1454
+ */
1455
+ declare const Calendar: react.ForwardRefExoticComponent<CalendarProps & react.RefAttributes<HTMLDivElement>>;
1456
+
1457
+ type DropdownProps = Omit<ComponentProps<'div'>, 'title'> & {
1458
+ type?: ButtonHTMLAttributes<HTMLButtonElement>['type'];
1459
+ disabled?: boolean;
1460
+ title?: ReactNode;
1461
+ label?: ReactNode;
1462
+ fullWidth?: boolean;
1463
+ fullWidthDropdown?: boolean;
1464
+ offset?: number;
1465
+ leftIcon?: ReactNode;
1466
+ rightIcon?: ReactNode;
1467
+ isOpen?: boolean;
1468
+ onOpenChange?: (isOpen: boolean) => void;
1469
+ keepOpenOnClickContent?: boolean;
1470
+ zIndex?: number;
1471
+ infoLabels?: InfoLabelsProps;
1472
+ classNames?: {
1473
+ container?: string;
1474
+ label?: string;
1475
+ title?: string;
1476
+ trigger?: string;
1477
+ dropdown?: string;
1478
+ };
1479
+ styles?: {
1480
+ container?: CSSProperties;
1481
+ label?: CSSProperties;
1482
+ title?: CSSProperties;
1483
+ trigger?: CSSProperties;
1484
+ dropdown?: CSSProperties;
1485
+ };
1486
+ };
1487
+ /**
1488
+ * The `Dropdown` component is a button that when clicked, displays a custom dropdown container beneath it.
1489
+ * It can be used to trigger actions or display a menu with custom content.
1490
+ */
1491
+ declare const Dropdown: react.ForwardRefExoticComponent<Omit<DropdownProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
1492
+
1493
+ type CalendarDropdownProps = CalendarProps & {
1494
+ placeholder?: ReactNode;
1495
+ leftIcon?: ReactNode;
1496
+ rightIcon?: ReactNode;
1497
+ classNames?: {
1498
+ label?: string;
1499
+ dropdown?: ComponentClassnames<DropdownProps>;
1500
+ card?: ComponentClassnames<CardProps>;
1501
+ calendar?: ComponentClassnames<CalendarProps>;
1502
+ };
1503
+ styles?: {
1504
+ label?: CSSProperties;
1505
+ dropdown?: ComponentStyles<DropdownProps>;
1506
+ card?: ComponentStyles<CardProps>;
1507
+ calendar?: ComponentStyles<CalendarProps>;
1508
+ };
1509
+ };
1510
+
1511
+ /**
1512
+ * 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.
1513
+ */
1514
+ declare const CalendarDropdown: react.ForwardRefExoticComponent<CalendarDropdownProps & react.RefAttributes<HTMLDivElement>>;
1515
+
1416
1516
  type CarouselProps = ComponentProps<'div'> & {
1417
1517
  options?: Parameters<typeof useEmblaCarousel>[0];
1418
1518
  slideAmount?: number;
@@ -1488,6 +1588,40 @@ type CheckboxProps = Omit<ComponentProps<'input'>, 'title'> & {
1488
1588
  */
1489
1589
  declare const Checkbox: react.ForwardRefExoticComponent<Omit<CheckboxProps, "ref"> & react.RefAttributes<HTMLInputElement>>;
1490
1590
 
1591
+ type ColorModel = 'rgba' | 'hexa';
1592
+ interface ColorPickerProps extends Omit<ComponentProps<'div'>, 'onChange' | 'defaultValue'> {
1593
+ value?: string;
1594
+ defaultValue?: string;
1595
+ onChange?: (value: string) => void;
1596
+ colorModel?: ColorModel;
1597
+ disabled?: boolean;
1598
+ label?: ReactNode;
1599
+ infoLabels?: InfoLabelsProps;
1600
+ classNames?: {
1601
+ container?: string;
1602
+ label?: string;
1603
+ picker?: string;
1604
+ };
1605
+ styles?: {
1606
+ container?: CSSProperties;
1607
+ label?: CSSProperties;
1608
+ picker?: CSSProperties;
1609
+ };
1610
+ }
1611
+ /**
1612
+ * The `ColorPicker` component provides color selection via `react-colorful`,
1613
+ * supporting `rgba` and `hexa` color models.
1614
+ *
1615
+ * - Pass `value` for controlled usage; use `defaultValue` (or neither) for uncontrolled.
1616
+ * - Use `colorModel` to switch between `'rgba'` (default) and `'hexa'` picker variants.
1617
+ * - Use `label` to show a label above the picker.
1618
+ * - Use `infoLabels` to show error, info, or subtitle messages below the picker.
1619
+ * - Accepts `classNames` and `styles` to customize: `container`, `label`, `picker`.
1620
+ */
1621
+ declare const ColorPicker: ({ value, defaultValue, onChange, colorModel, disabled, label, className, classNames, style, styles, infoLabels, ...props }: ColorPickerProps) => react_jsx_runtime.JSX.Element;
1622
+
1623
+ declare function parseRgbaString(rgba: string): RgbaColor;
1624
+
1491
1625
  interface CheckboxGroupProps extends Omit<ComponentProps<'div'>, 'onChange'> {
1492
1626
  label?: ReactNode;
1493
1627
  checkboxes?: CheckboxProps[];
@@ -1631,65 +1765,6 @@ type CreditCardInputProps = Omit<ComponentProps<'div'>, 'onChange'> & {
1631
1765
  */
1632
1766
  declare const CreditCardInput: react.ForwardRefExoticComponent<Omit<CreditCardInputProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
1633
1767
 
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
1768
  interface DividerProps extends ComponentProps<'div'> {
1694
1769
  isHorizontal?: boolean;
1695
1770
  classNames?: {
@@ -2656,56 +2731,6 @@ interface RadioButtonGroupProps {
2656
2731
  */
2657
2732
  declare const RadioButtonGroup: ({ radios, label, className, classNames, style, styles, name, direction, radioPosition, defaultActiveId, value, infoLabels, onChange, }: RadioButtonGroupProps) => react_jsx_runtime.JSX.Element;
2658
2733
 
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
2734
  type RatingLabels = {
2710
2735
  helperText?: ReactNode;
2711
2736
  };
@@ -3160,6 +3185,56 @@ interface SliderProps {
3160
3185
  */
3161
3186
  declare const Slider: react__default.FC<SliderProps>;
3162
3187
 
3188
+ interface SliderRangeProps {
3189
+ key?: string | number;
3190
+ minValue?: number;
3191
+ maxValue?: number;
3192
+ step?: number;
3193
+ value?: [number, number];
3194
+ defaultValue?: [number, number];
3195
+ variant?: 'default' | 'inline';
3196
+ onChange?: (value: [number, number]) => void;
3197
+ onChangeEnd?: (value: [number, number]) => void;
3198
+ className?: string;
3199
+ classNames?: {
3200
+ container?: string;
3201
+ slider?: string;
3202
+ track?: string;
3203
+ filledTrack?: string;
3204
+ thumb?: string;
3205
+ };
3206
+ style?: CSSProperties;
3207
+ styles?: {
3208
+ container?: CSSProperties;
3209
+ slider?: CSSProperties;
3210
+ track?: CSSProperties;
3211
+ filledTrack?: CSSProperties;
3212
+ thumb?: CSSProperties;
3213
+ };
3214
+ disabled?: boolean;
3215
+ label?: ReactNode;
3216
+ labels?: {
3217
+ minLabel?: ReactNode;
3218
+ maxLabel?: ReactNode;
3219
+ tooltip?: (value: number) => ReactNode;
3220
+ };
3221
+ tooltips?: {
3222
+ min?: TooltipProps;
3223
+ max?: TooltipProps;
3224
+ shared?: TooltipProps;
3225
+ };
3226
+ infoLabels?: InfoLabelsProps;
3227
+ }
3228
+ /**
3229
+ * Dual-handle range slider for selecting a numeric interval.
3230
+ *
3231
+ * - Supports controlled mode via `value` (`[min, max]`) + `onChange`, and uncontrolled via `defaultValue`.
3232
+ * - Configure bounds with `minValue` / `maxValue` and increment with `step`.
3233
+ * - Attach tooltip configuration to each thumb via `tooltips.min`, `tooltips.max`, or a shared preset via `tooltips.shared`.
3234
+ * - Accepts `classNames` and `styles` for keys: `container`, `track`, `filledTrack`, `thumb`, `infoLabels`.
3235
+ */
3236
+ declare const SliderRange: FC<SliderRangeProps>;
3237
+
3163
3238
  type StarRatingProps = Omit<ComponentProps<'div'>, 'onChange'> & {
3164
3239
  value?: number;
3165
3240
  onChange?: (value: number) => void;
@@ -3270,44 +3345,4 @@ type TabsProps = ComponentProps<'div'> & {
3270
3345
  */
3271
3346
  declare const Tabs: react.ForwardRefExoticComponent<Omit<TabsProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
3272
3347
 
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 };
3348
+ 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, type ColorModel, ColorPicker, type ColorPickerProps, 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, parseRgbaString, showNotification };