@cleen/ui 0.1.99 → 0.1.101
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 +127 -85
- package/dist/index.js +4 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
2
|
import react__default, { ComponentProps, ReactNode, CSSProperties, SVGProps, RefObject, ButtonHTMLAttributes, ChangeEvent, JSX, FC, ComponentPropsWithoutRef } from 'react';
|
|
3
3
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
|
-
import { Position, ComponentClassnames, ComponentStyles, HintedString } from '@cleen/ui-core';
|
|
4
|
+
import { Position, ComponentClassnames, ComponentStyles, FileEntry, 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';
|
|
@@ -1595,40 +1595,6 @@ type CheckboxProps = Omit<ComponentProps<'input'>, 'title'> & {
|
|
|
1595
1595
|
*/
|
|
1596
1596
|
declare const Checkbox: react.ForwardRefExoticComponent<Omit<CheckboxProps, "ref"> & react.RefAttributes<HTMLInputElement>>;
|
|
1597
1597
|
|
|
1598
|
-
type ColorModel = 'rgba' | 'hexa';
|
|
1599
|
-
interface ColorPickerProps extends Omit<ComponentProps<'div'>, 'onChange' | 'defaultValue'> {
|
|
1600
|
-
value?: string;
|
|
1601
|
-
defaultValue?: string;
|
|
1602
|
-
onChange?: (value: string) => void;
|
|
1603
|
-
colorModel?: ColorModel;
|
|
1604
|
-
disabled?: boolean;
|
|
1605
|
-
label?: ReactNode;
|
|
1606
|
-
infoLabels?: InfoLabelsProps;
|
|
1607
|
-
classNames?: {
|
|
1608
|
-
container?: string;
|
|
1609
|
-
label?: string;
|
|
1610
|
-
picker?: string;
|
|
1611
|
-
};
|
|
1612
|
-
styles?: {
|
|
1613
|
-
container?: CSSProperties;
|
|
1614
|
-
label?: CSSProperties;
|
|
1615
|
-
picker?: CSSProperties;
|
|
1616
|
-
};
|
|
1617
|
-
}
|
|
1618
|
-
/**
|
|
1619
|
-
* The `ColorPicker` component provides color selection via `react-colorful`,
|
|
1620
|
-
* supporting `rgba` and `hexa` color models.
|
|
1621
|
-
*
|
|
1622
|
-
* - Pass `value` for controlled usage; use `defaultValue` (or neither) for uncontrolled.
|
|
1623
|
-
* - Use `colorModel` to switch between `'rgba'` (default) and `'hexa'` picker variants.
|
|
1624
|
-
* - Use `label` to show a label above the picker.
|
|
1625
|
-
* - Use `infoLabels` to show error, info, or subtitle messages below the picker.
|
|
1626
|
-
* - Accepts `classNames` and `styles` to customize: `container`, `label`, `picker`.
|
|
1627
|
-
*/
|
|
1628
|
-
declare const ColorPicker: ({ value, defaultValue, onChange, colorModel, disabled, label, className, classNames, style, styles, infoLabels, ...props }: ColorPickerProps) => react_jsx_runtime.JSX.Element;
|
|
1629
|
-
|
|
1630
|
-
declare function parseRgbaString(rgba: string): RgbaColor;
|
|
1631
|
-
|
|
1632
1598
|
interface CheckboxGroupProps extends Omit<ComponentProps<'div'>, 'onChange'> {
|
|
1633
1599
|
label?: ReactNode;
|
|
1634
1600
|
checkboxes?: CheckboxProps[];
|
|
@@ -1718,6 +1684,40 @@ interface CollapsibleProps extends ComponentProps<'div'> {
|
|
|
1718
1684
|
*/
|
|
1719
1685
|
declare const Collapsible: react.ForwardRefExoticComponent<Omit<CollapsibleProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
1720
1686
|
|
|
1687
|
+
type ColorModel = 'rgba' | 'hexa';
|
|
1688
|
+
interface ColorPickerProps extends Omit<ComponentProps<'div'>, 'onChange' | 'defaultValue'> {
|
|
1689
|
+
value?: string;
|
|
1690
|
+
defaultValue?: string;
|
|
1691
|
+
onChange?: (value: string) => void;
|
|
1692
|
+
colorModel?: ColorModel;
|
|
1693
|
+
disabled?: boolean;
|
|
1694
|
+
label?: ReactNode;
|
|
1695
|
+
infoLabels?: InfoLabelsProps;
|
|
1696
|
+
classNames?: {
|
|
1697
|
+
container?: string;
|
|
1698
|
+
label?: string;
|
|
1699
|
+
picker?: string;
|
|
1700
|
+
};
|
|
1701
|
+
styles?: {
|
|
1702
|
+
container?: CSSProperties;
|
|
1703
|
+
label?: CSSProperties;
|
|
1704
|
+
picker?: CSSProperties;
|
|
1705
|
+
};
|
|
1706
|
+
}
|
|
1707
|
+
/**
|
|
1708
|
+
* The `ColorPicker` component provides color selection via `react-colorful`,
|
|
1709
|
+
* supporting `rgba` and `hexa` color models.
|
|
1710
|
+
*
|
|
1711
|
+
* - Pass `value` for controlled usage; use `defaultValue` (or neither) for uncontrolled.
|
|
1712
|
+
* - Use `colorModel` to switch between `'rgba'` (default) and `'hexa'` picker variants.
|
|
1713
|
+
* - Use `label` to show a label above the picker.
|
|
1714
|
+
* - Use `infoLabels` to show error, info, or subtitle messages below the picker.
|
|
1715
|
+
* - Accepts `classNames` and `styles` to customize: `container`, `label`, `picker`.
|
|
1716
|
+
*/
|
|
1717
|
+
declare const ColorPicker: ({ value, defaultValue, onChange, colorModel, disabled, label, className, classNames, style, styles, infoLabels, ...props }: ColorPickerProps) => react_jsx_runtime.JSX.Element;
|
|
1718
|
+
|
|
1719
|
+
declare function parseRgbaString(rgba: string): RgbaColor;
|
|
1720
|
+
|
|
1721
1721
|
interface CardData {
|
|
1722
1722
|
number: string;
|
|
1723
1723
|
expiry: string;
|
|
@@ -1842,41 +1842,122 @@ type DrawerProps = Omit<ComponentProps<'div'>, 'title'> & {
|
|
|
1842
1842
|
*/
|
|
1843
1843
|
declare const Drawer: react.ForwardRefExoticComponent<Omit<DrawerProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
1844
1844
|
|
|
1845
|
+
interface ProgressBarProps extends ComponentProps<'div'> {
|
|
1846
|
+
percentage: number;
|
|
1847
|
+
title?: string;
|
|
1848
|
+
barColor?: string;
|
|
1849
|
+
backgroundColor?: string;
|
|
1850
|
+
textColor?: string;
|
|
1851
|
+
invertProgressColors?: boolean;
|
|
1852
|
+
showPercentage?: boolean;
|
|
1853
|
+
renderAnimated?: boolean;
|
|
1854
|
+
renderAnimatedDuration?: number;
|
|
1855
|
+
classNames?: {
|
|
1856
|
+
container?: string;
|
|
1857
|
+
wrapper?: string;
|
|
1858
|
+
track?: string;
|
|
1859
|
+
fill?: string;
|
|
1860
|
+
progress?: string;
|
|
1861
|
+
title?: string;
|
|
1862
|
+
text?: string;
|
|
1863
|
+
};
|
|
1864
|
+
styles?: {
|
|
1865
|
+
container?: CSSProperties;
|
|
1866
|
+
wrapper?: CSSProperties;
|
|
1867
|
+
track?: CSSProperties;
|
|
1868
|
+
fill?: CSSProperties;
|
|
1869
|
+
progress?: CSSProperties;
|
|
1870
|
+
title?: CSSProperties;
|
|
1871
|
+
text?: CSSProperties;
|
|
1872
|
+
};
|
|
1873
|
+
}
|
|
1874
|
+
/**
|
|
1875
|
+
* Horizontal progress bar with optional title, percentage label, color overrides, and entrance animation.
|
|
1876
|
+
*
|
|
1877
|
+
* - Pass `percentage` (0–100) to set fill level; values are clamped automatically.
|
|
1878
|
+
* - Set `renderAnimated` to animate the fill from 0 to the target on mount; control speed with `renderAnimatedDuration`.
|
|
1879
|
+
* - Use `invertProgressColors` to swap the success/error color logic (useful for "budget remaining" scenarios).
|
|
1880
|
+
* - Accepts `classNames` and `styles` for keys: `container`, `wrapper`, `track`, `fill`, `progress`, `title`, `text`.
|
|
1881
|
+
*/
|
|
1882
|
+
declare const ProgressBar: react.ForwardRefExoticComponent<Omit<ProgressBarProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
1883
|
+
|
|
1884
|
+
interface FileCardProps {
|
|
1885
|
+
fileEntry: FileEntry;
|
|
1886
|
+
onRemove?: (id: string) => void;
|
|
1887
|
+
labels?: DropzoneProps['labels'];
|
|
1888
|
+
classNames?: {
|
|
1889
|
+
card?: ComponentClassnames<CardProps>;
|
|
1890
|
+
container?: string;
|
|
1891
|
+
nameContainer?: string;
|
|
1892
|
+
name?: string;
|
|
1893
|
+
statusContainer?: string;
|
|
1894
|
+
statusText?: string;
|
|
1895
|
+
progressBar?: ComponentClassnames<ProgressBarProps>;
|
|
1896
|
+
};
|
|
1897
|
+
styles?: {
|
|
1898
|
+
card?: ComponentStyles<CardProps>;
|
|
1899
|
+
container?: CSSProperties;
|
|
1900
|
+
nameContainer?: CSSProperties;
|
|
1901
|
+
name?: CSSProperties;
|
|
1902
|
+
statusContainer?: CSSProperties;
|
|
1903
|
+
statusText?: CSSProperties;
|
|
1904
|
+
progressBar?: ComponentStyles<ProgressBarProps>;
|
|
1905
|
+
};
|
|
1906
|
+
}
|
|
1907
|
+
|
|
1845
1908
|
type NativeInputProps = Omit<ComponentProps<'input'>, 'type' | 'children' | 'className' | 'style'>;
|
|
1846
|
-
interface
|
|
1909
|
+
interface DropzoneProps extends NativeInputProps {
|
|
1847
1910
|
icon?: ReactNode;
|
|
1848
|
-
|
|
1911
|
+
files?: Map<string, FileEntry>;
|
|
1912
|
+
initialFiles?: File[];
|
|
1913
|
+
onFilesChange?: (files: Map<string, FileEntry> | ((prev: Map<string, FileEntry>) => Map<string, FileEntry>)) => void;
|
|
1914
|
+
onFileUpload?: (file: FileEntry, updateFile?: (patch: Partial<FileEntry>) => void) => Promise<FileEntry | void>;
|
|
1915
|
+
onFileRemove?: (id: string) => Promise<void>;
|
|
1916
|
+
label?: ReactNode;
|
|
1849
1917
|
labels?: {
|
|
1850
|
-
primaryText?:
|
|
1851
|
-
secondaryText?:
|
|
1852
|
-
helperText?:
|
|
1853
|
-
|
|
1918
|
+
primaryText?: ReactNode;
|
|
1919
|
+
secondaryText?: ReactNode;
|
|
1920
|
+
helperText?: ReactNode;
|
|
1921
|
+
uploading?: ReactNode;
|
|
1922
|
+
uploadProgress?: (uploadedBytes: number, totalBytes: number) => ReactNode;
|
|
1923
|
+
uploaded?: (totalBytes: number) => ReactNode;
|
|
1924
|
+
};
|
|
1925
|
+
showUploadedFiles?: boolean;
|
|
1854
1926
|
containerRef?: RefObject<HTMLDivElement>;
|
|
1927
|
+
infoLabels?: InfoLabelsProps;
|
|
1855
1928
|
className?: string;
|
|
1856
1929
|
style?: CSSProperties;
|
|
1857
1930
|
classNames?: {
|
|
1931
|
+
label?: string;
|
|
1858
1932
|
card?: ComponentClassnames<CardProps>;
|
|
1859
1933
|
cardDragActive?: string;
|
|
1860
1934
|
dropArea?: string;
|
|
1861
1935
|
iconContainer?: string;
|
|
1862
|
-
|
|
1936
|
+
textContainer?: string;
|
|
1937
|
+
primaryText?: string;
|
|
1938
|
+
secondaryText?: string;
|
|
1863
1939
|
helperText?: string;
|
|
1864
1940
|
input?: string;
|
|
1941
|
+
fileCard?: FileCardProps['classNames'];
|
|
1865
1942
|
};
|
|
1866
1943
|
styles?: {
|
|
1944
|
+
label?: CSSProperties;
|
|
1867
1945
|
card?: ComponentStyles<CardProps>;
|
|
1868
1946
|
cardDragActive?: CSSProperties;
|
|
1869
1947
|
dropArea?: CSSProperties;
|
|
1870
1948
|
iconContainer?: CSSProperties;
|
|
1871
|
-
|
|
1949
|
+
textContainer?: CSSProperties;
|
|
1950
|
+
primaryText?: CSSProperties;
|
|
1951
|
+
secondaryText?: CSSProperties;
|
|
1872
1952
|
helperText?: CSSProperties;
|
|
1873
1953
|
input?: CSSProperties;
|
|
1954
|
+
fileCard?: FileCardProps['styles'];
|
|
1874
1955
|
};
|
|
1875
1956
|
}
|
|
1876
1957
|
/**
|
|
1877
|
-
* The `
|
|
1958
|
+
* The `Dropzone` component provides a styled file input with drag-and-drop support.
|
|
1878
1959
|
*/
|
|
1879
|
-
declare const
|
|
1960
|
+
declare const Dropzone: react.ForwardRefExoticComponent<Omit<DropzoneProps, "ref"> & react.RefAttributes<HTMLInputElement>>;
|
|
1880
1961
|
|
|
1881
1962
|
interface FilterDrawerNewFilter {
|
|
1882
1963
|
filterName: string;
|
|
@@ -2591,45 +2672,6 @@ type PopoverProps = Omit<ComponentProps<'div'>, 'content'> & {
|
|
|
2591
2672
|
*/
|
|
2592
2673
|
declare const Popover: react.ForwardRefExoticComponent<Omit<PopoverProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
2593
2674
|
|
|
2594
|
-
interface ProgressBarProps extends ComponentProps<'div'> {
|
|
2595
|
-
percentage: number;
|
|
2596
|
-
title?: string;
|
|
2597
|
-
barColor?: string;
|
|
2598
|
-
backgroundColor?: string;
|
|
2599
|
-
textColor?: string;
|
|
2600
|
-
invertProgressColors?: boolean;
|
|
2601
|
-
showPercentage?: boolean;
|
|
2602
|
-
renderAnimated?: boolean;
|
|
2603
|
-
renderAnimatedDuration?: number;
|
|
2604
|
-
classNames?: {
|
|
2605
|
-
container?: string;
|
|
2606
|
-
wrapper?: string;
|
|
2607
|
-
track?: string;
|
|
2608
|
-
fill?: string;
|
|
2609
|
-
progress?: string;
|
|
2610
|
-
title?: string;
|
|
2611
|
-
text?: string;
|
|
2612
|
-
};
|
|
2613
|
-
styles?: {
|
|
2614
|
-
container?: CSSProperties;
|
|
2615
|
-
wrapper?: CSSProperties;
|
|
2616
|
-
track?: CSSProperties;
|
|
2617
|
-
fill?: CSSProperties;
|
|
2618
|
-
progress?: CSSProperties;
|
|
2619
|
-
title?: CSSProperties;
|
|
2620
|
-
text?: CSSProperties;
|
|
2621
|
-
};
|
|
2622
|
-
}
|
|
2623
|
-
/**
|
|
2624
|
-
* Horizontal progress bar with optional title, percentage label, color overrides, and entrance animation.
|
|
2625
|
-
*
|
|
2626
|
-
* - Pass `percentage` (0–100) to set fill level; values are clamped automatically.
|
|
2627
|
-
* - Set `renderAnimated` to animate the fill from 0 to the target on mount; control speed with `renderAnimatedDuration`.
|
|
2628
|
-
* - Use `invertProgressColors` to swap the success/error color logic (useful for "budget remaining" scenarios).
|
|
2629
|
-
* - Accepts `classNames` and `styles` for keys: `container`, `wrapper`, `track`, `fill`, `progress`, `title`, `text`.
|
|
2630
|
-
*/
|
|
2631
|
-
declare const ProgressBar: react.ForwardRefExoticComponent<Omit<ProgressBarProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
2632
|
-
|
|
2633
2675
|
declare const sizes: {
|
|
2634
2676
|
xs: number;
|
|
2635
2677
|
sm: number;
|
|
@@ -3393,4 +3435,4 @@ type TabsProps = ComponentProps<'div'> & {
|
|
|
3393
3435
|
*/
|
|
3394
3436
|
declare const Tabs: react.ForwardRefExoticComponent<Omit<TabsProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
3395
3437
|
|
|
3396
|
-
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,
|
|
3438
|
+
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, Dropdown, type DropdownProps, Dropzone, type DropzoneProps, 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, Markdown, type MarkdownProps, 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 };
|