@cleen/ui 0.1.15 → 0.1.17

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
@@ -1155,6 +1155,163 @@ interface InfoLabelsProps extends ComponentProps<'div'> {
1155
1155
  */
1156
1156
  declare const InfoLabels: ({ className, classNames, style, styles, infoMessage, errorMessage, subtitle, ...props }: InfoLabelsProps) => react_jsx_runtime.JSX.Element;
1157
1157
 
1158
+ interface InputProps extends ComponentProps<'input'> {
1159
+ label?: ReactNode;
1160
+ uploadLabel?: ReactNode;
1161
+ leftIcon?: ReactNode;
1162
+ rightIcon?: ReactNode;
1163
+ topRightIcon?: ReactNode;
1164
+ inputOverlay?: ReactNode;
1165
+ isFocusedBorder?: boolean;
1166
+ maxLengthLabelThreshold?: number;
1167
+ maxLengthLabel?: (remaining: number) => ReactNode;
1168
+ infoLabels?: InfoLabelsProps;
1169
+ classNames?: {
1170
+ container?: string;
1171
+ label?: string;
1172
+ inputContainer?: string;
1173
+ input?: string;
1174
+ leftIconContainer?: string;
1175
+ rightIconContainer?: string;
1176
+ maxLengthLabel?: string;
1177
+ inputOverlay?: string;
1178
+ };
1179
+ styles?: {
1180
+ container?: CSSProperties;
1181
+ label?: CSSProperties;
1182
+ inputContainer?: CSSProperties;
1183
+ input?: CSSProperties;
1184
+ leftIconContainer?: CSSProperties;
1185
+ rightIconContainer?: CSSProperties;
1186
+ maxLengthLabel?: CSSProperties;
1187
+ inputOverlay?: CSSProperties;
1188
+ };
1189
+ }
1190
+ /**
1191
+ * The `Input` component is a controlled or uncontrolled text input with rich labelling and icon support.
1192
+ *
1193
+ * - Pass `value` for controlled usage; use `defaultValue` (or neither) for uncontrolled.
1194
+ * - Use `label` to show a label above the input and `uploadLabel` for the file-input trigger text.
1195
+ * - `leftIcon` and `rightIcon` accept any ReactNode and are rendered inside the input border.
1196
+ * - Set `isFocusedBorder` to visually highlight the border when the input is focused.
1197
+ * - Use `maxLength` together with `maxLengthLabel` (callback) to show a character-countdown message.
1198
+ * `maxLengthLabelThreshold` (0–1) controls when the countdown replaces the `infoLabels.subtitle`.
1199
+ * - Use `infoLabels` to show error, info, or subtitle messages below the input.
1200
+ * - Accepts `classNames` and `styles` to customize: `container`, `label`, `inputContainer`, `input`,
1201
+ * `leftIconContainer`, `rightIconContainer`, `maxLengthLabel`.
1202
+ */
1203
+ declare const Input: react.ForwardRefExoticComponent<Omit<InputProps, "ref"> & react.RefAttributes<HTMLInputElement>>;
1204
+
1205
+ type EditableTextProps = Omit<ComponentProps<'div'>, 'onChange'> & {
1206
+ value?: string;
1207
+ defaultValue?: string;
1208
+ placeholder?: string;
1209
+ canEdit?: boolean;
1210
+ onSave?: (value: string) => Promise<void> | void;
1211
+ onCancel?: () => Promise<void> | void;
1212
+ onChange?: (value: string) => void;
1213
+ inputProps?: Omit<InputProps, 'value' | 'defaultValue' | 'onChange' | 'placeholder' | 'className' | 'classNames' | 'style' | 'styles'>;
1214
+ saveOnBlur?: boolean;
1215
+ isLoading?: boolean;
1216
+ customLoader?: ReactNode;
1217
+ classNames?: {
1218
+ container?: string;
1219
+ input?: ComponentClassnames<InputProps>;
1220
+ loaderContainer?: string;
1221
+ preview?: string;
1222
+ };
1223
+ styles?: {
1224
+ container?: CSSProperties;
1225
+ input?: ComponentStyles<InputProps>;
1226
+ loaderContainer?: CSSProperties;
1227
+ preview?: CSSProperties;
1228
+ };
1229
+ };
1230
+ /**
1231
+ * EditableText is an inline text field with preview mode and save/cancel actions.
1232
+ */
1233
+ declare const EditableText: react.ForwardRefExoticComponent<Omit<EditableTextProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
1234
+
1235
+ type TextAreaProps = Omit<ComponentProps<'textarea'>, 'onChange'> & {
1236
+ label?: ReactNode;
1237
+ value?: string;
1238
+ minHeight?: number;
1239
+ maxHeight?: number;
1240
+ onChange?: (value: string) => void;
1241
+ maxLengthLabelThreshold?: number;
1242
+ maxLengthLabel?: (remaining: number) => ReactNode;
1243
+ infoLabels?: InfoLabelsProps;
1244
+ topRightElement?: ReactNode;
1245
+ labelRightElement?: ReactNode;
1246
+ textareaOverlay?: ReactNode;
1247
+ classNames?: {
1248
+ container?: string;
1249
+ label?: string;
1250
+ textareaContainer?: string;
1251
+ textarea?: string;
1252
+ maxLengthLabel?: string;
1253
+ };
1254
+ styles?: {
1255
+ container?: CSSProperties;
1256
+ label?: CSSProperties;
1257
+ textareaContainer?: CSSProperties;
1258
+ textarea?: CSSProperties;
1259
+ maxLengthLabel?: CSSProperties;
1260
+ };
1261
+ };
1262
+ /**
1263
+ * TextArea component is a resizable textarea input field that can be used to capture multi-line text input from users.
1264
+ */
1265
+ declare const TextArea: react.ForwardRefExoticComponent<Omit<TextAreaProps, "ref"> & react.RefAttributes<HTMLTextAreaElement>>;
1266
+
1267
+ type EditableTextAreaProps = Omit<ComponentProps<'div'>, 'onChange'> & {
1268
+ value?: string;
1269
+ defaultValue?: string;
1270
+ placeholder?: string;
1271
+ canEdit?: boolean;
1272
+ onSave?: (value: string) => Promise<void> | void;
1273
+ onCancel?: () => Promise<void> | void;
1274
+ onChange?: (value: string) => void;
1275
+ textAreaProps?: Omit<TextAreaProps, 'value' | 'defaultValue' | 'onChange' | 'placeholder' | 'className' | 'classNames' | 'style' | 'styles'>;
1276
+ saveOnBlur?: boolean;
1277
+ isLoading?: boolean;
1278
+ customLoader?: ReactNode;
1279
+ classNames?: {
1280
+ container?: string;
1281
+ textArea?: ComponentClassnames<TextAreaProps>;
1282
+ loaderContainer?: string;
1283
+ preview?: string;
1284
+ };
1285
+ styles?: {
1286
+ container?: CSSProperties;
1287
+ textArea?: ComponentStyles<TextAreaProps>;
1288
+ loaderContainer?: CSSProperties;
1289
+ preview?: CSSProperties;
1290
+ };
1291
+ };
1292
+ /**
1293
+ * EditableTextArea is an inline multi-line text field with preview mode and save/cancel actions.
1294
+ */
1295
+ declare const EditableTextArea: react.ForwardRefExoticComponent<Omit<EditableTextAreaProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
1296
+
1297
+ type EditableCardField = 'title' | 'description';
1298
+ type EditableCardProps = CardProps & {
1299
+ /** Editable description shown in the card content container */
1300
+ description?: string;
1301
+ /** Unified save callback for editable title and description fields */
1302
+ onSave?: (field: EditableCardField, value: string) => Promise<void> | void;
1303
+ /** Props for the editable title text input */
1304
+ titleProps?: Omit<EditableTextProps, 'value' | 'onSave'>;
1305
+ /** Props for the editable description text area */
1306
+ descriptionProps?: Omit<EditableTextAreaProps, 'value' | 'onSave'>;
1307
+ };
1308
+ /**
1309
+ * EditableCard is built on top of Card and provides inline editing for:
1310
+ * - `header.title` using `EditableText`
1311
+ * - `description` using `EditableTextArea`
1312
+ */
1313
+ declare const EditableCard: react.ForwardRefExoticComponent<Omit<EditableCardProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
1314
+
1158
1315
  declare const checkedVariants: {
1159
1316
  readonly primary: "cleen-bg-primary cleen-transition-all cleen-duration-200 hover:cleen-bg-primary hover:cleen-shadow-[0px_0px_0px_4px_rgba(var(--cleen-primary),0.25)]";
1160
1317
  readonly error: "cleen-bg-error cleen-transition-all cleen-duration-200 hover:cleen-bg-error hover:cleen-shadow-[0px_0px_0px_4px_rgba(var(--cleen-error),0.25)]";
@@ -1289,53 +1446,6 @@ interface CollapsibleProps extends ComponentProps<'div'> {
1289
1446
  */
1290
1447
  declare const Collapsible: react.ForwardRefExoticComponent<Omit<CollapsibleProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
1291
1448
 
1292
- interface InputProps extends ComponentProps<'input'> {
1293
- label?: ReactNode;
1294
- uploadLabel?: ReactNode;
1295
- leftIcon?: ReactNode;
1296
- rightIcon?: ReactNode;
1297
- topRightIcon?: ReactNode;
1298
- inputOverlay?: ReactNode;
1299
- isFocusedBorder?: boolean;
1300
- maxLengthLabelThreshold?: number;
1301
- maxLengthLabel?: (remaining: number) => ReactNode;
1302
- infoLabels?: InfoLabelsProps;
1303
- classNames?: {
1304
- container?: string;
1305
- label?: string;
1306
- inputContainer?: string;
1307
- input?: string;
1308
- leftIconContainer?: string;
1309
- rightIconContainer?: string;
1310
- maxLengthLabel?: string;
1311
- inputOverlay?: string;
1312
- };
1313
- styles?: {
1314
- container?: CSSProperties;
1315
- label?: CSSProperties;
1316
- inputContainer?: CSSProperties;
1317
- input?: CSSProperties;
1318
- leftIconContainer?: CSSProperties;
1319
- rightIconContainer?: CSSProperties;
1320
- maxLengthLabel?: CSSProperties;
1321
- inputOverlay?: CSSProperties;
1322
- };
1323
- }
1324
- /**
1325
- * The `Input` component is a controlled or uncontrolled text input with rich labelling and icon support.
1326
- *
1327
- * - Pass `value` for controlled usage; use `defaultValue` (or neither) for uncontrolled.
1328
- * - Use `label` to show a label above the input and `uploadLabel` for the file-input trigger text.
1329
- * - `leftIcon` and `rightIcon` accept any ReactNode and are rendered inside the input border.
1330
- * - Set `isFocusedBorder` to visually highlight the border when the input is focused.
1331
- * - Use `maxLength` together with `maxLengthLabel` (callback) to show a character-countdown message.
1332
- * `maxLengthLabelThreshold` (0–1) controls when the countdown replaces the `infoLabels.subtitle`.
1333
- * - Use `infoLabels` to show error, info, or subtitle messages below the input.
1334
- * - Accepts `classNames` and `styles` to customize: `container`, `label`, `inputContainer`, `input`,
1335
- * `leftIconContainer`, `rightIconContainer`, `maxLengthLabel`.
1336
- */
1337
- declare const Input: react.ForwardRefExoticComponent<Omit<InputProps, "ref"> & react.RefAttributes<HTMLInputElement>>;
1338
-
1339
1449
  declare const SIZES$1: {
1340
1450
  xs: string;
1341
1451
  sm: string;
@@ -2760,6 +2870,7 @@ interface SkeletonComponentProps {
2760
2870
  itemCount?: number;
2761
2871
  className?: string;
2762
2872
  style?: CSSProperties;
2873
+ colors?: string[];
2763
2874
  }
2764
2875
 
2765
2876
  declare const SkeletonAvatar: react.ForwardRefExoticComponent<SkeletonComponentProps & react.RefAttributes<HTMLDivElement>>;
@@ -2786,6 +2897,8 @@ declare const SkeletonDataGrid: react.ForwardRefExoticComponent<SkeletonComponen
2786
2897
 
2787
2898
  declare const SkeletonForm: react.ForwardRefExoticComponent<SkeletonComponentProps & react.RefAttributes<HTMLDivElement>>;
2788
2899
 
2900
+ declare const SkeletonGlowingCard: react.ForwardRefExoticComponent<SkeletonComponentProps & react.RefAttributes<HTMLDivElement>>;
2901
+
2789
2902
  declare const SkeletonImage: react.ForwardRefExoticComponent<SkeletonComponentProps & react.RefAttributes<HTMLDivElement>>;
2790
2903
 
2791
2904
  declare const SkeletonInfoCard: react.ForwardRefExoticComponent<SkeletonComponentProps & react.RefAttributes<HTMLDivElement>>;
@@ -2802,7 +2915,7 @@ declare const SkeletonVideo: react.ForwardRefExoticComponent<SkeletonComponentPr
2802
2915
 
2803
2916
  declare const SkeletonWidgetCard: react.ForwardRefExoticComponent<SkeletonComponentProps & react.RefAttributes<HTMLDivElement>>;
2804
2917
 
2805
- type SkeletonType = 'card' | 'card2' | 'card3' | 'cardStack' | 'contentCard' | 'infoCard' | 'widgetCard' | 'image' | 'video' | 'avatar' | 'dataGrid' | 'text' | 'paragraph' | 'list' | 'form' | 'banner' | 'chart' | 'button' | 'badge' | 'input';
2918
+ type SkeletonType = 'card' | 'card2' | 'card3' | 'glowingCard' | 'cardStack' | 'contentCard' | 'infoCard' | 'widgetCard' | 'image' | 'video' | 'avatar' | 'dataGrid' | 'text' | 'paragraph' | 'list' | 'form' | 'banner' | 'chart' | 'button' | 'badge' | 'input';
2806
2919
  interface SkeletonWrapperProps extends SkeletonComponentProps {
2807
2920
  skeleton?: SkeletonType;
2808
2921
  isShowing?: boolean;
@@ -2936,36 +3049,4 @@ type TabsProps = ComponentProps<'div'> & {
2936
3049
  */
2937
3050
  declare const Tabs: react.ForwardRefExoticComponent<Omit<TabsProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
2938
3051
 
2939
- type TextAreaProps = Omit<ComponentProps<'textarea'>, 'onChange'> & {
2940
- label?: ReactNode;
2941
- value?: string;
2942
- minHeight?: number;
2943
- maxHeight?: number;
2944
- onChange?: (value: string) => void;
2945
- maxLengthLabelThreshold?: number;
2946
- maxLengthLabel?: (remaining: number) => ReactNode;
2947
- infoLabels?: InfoLabelsProps;
2948
- topRightElement?: ReactNode;
2949
- labelRightElement?: ReactNode;
2950
- textareaOverlay?: ReactNode;
2951
- classNames?: {
2952
- container?: string;
2953
- label?: string;
2954
- textareaContainer?: string;
2955
- textarea?: string;
2956
- maxLengthLabel?: string;
2957
- };
2958
- styles?: {
2959
- container?: CSSProperties;
2960
- label?: CSSProperties;
2961
- textareaContainer?: CSSProperties;
2962
- textarea?: CSSProperties;
2963
- maxLengthLabel?: CSSProperties;
2964
- };
2965
- };
2966
- /**
2967
- * TextArea component is a resizable textarea input field that can be used to capture multi-line text input from users.
2968
- */
2969
- declare const TextArea: react.ForwardRefExoticComponent<Omit<TextAreaProps, "ref"> & react.RefAttributes<HTMLTextAreaElement>>;
2970
-
2971
- export { AdvancedProgressBar, type AdvancedProgressBarProps, AudioPlayback, type AudioPlaybackProps, AudioRecorder, type AudioRecorderProps, Avatar, type AvatarProps, AvatarRow, type AvatarRowProps, Breadcrumb, type BreadcrumbProps, Button, type ButtonProps, type ButtonVariant, Card, CardIcon, type CardIconProps, CardMedia, type CardMediaProps, type CardProps, 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, Dropdown, type DropdownProps, 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, 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, SkeletonImage, SkeletonInfoCard, SkeletonInput, SkeletonList, SkeletonParagraph, type SkeletonProps, type SkeletonRoundness, SkeletonText, type SkeletonType, SkeletonVideo, SkeletonWidgetCard, SkeletonWrapper, Slider, type SliderProps, Stepper, type StepperProps, type SubmenuItem, Switch, type SwitchProps, type Tab, Tabs, type TabsProps, TextArea, type TextAreaProps, Tooltip, type TooltipProps, showNotification };
3052
+ export { AdvancedProgressBar, type AdvancedProgressBarProps, AudioPlayback, type AudioPlaybackProps, AudioRecorder, type AudioRecorderProps, Avatar, type AvatarProps, AvatarRow, type AvatarRowProps, Breadcrumb, type BreadcrumbProps, Button, type ButtonProps, type ButtonVariant, Card, CardIcon, type CardIconProps, CardMedia, type CardMediaProps, type Media as CardMediaType, type CardProps, 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, Dropdown, type DropdownProps, EditableCard, type EditableCardField, type EditableCardProps, EditableText, EditableTextArea, type EditableTextAreaProps, type EditableTextProps, 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, 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, Stepper, type StepperProps, type SubmenuItem, Switch, type SwitchProps, type Tab, Tabs, type TabsProps, TextArea, type TextAreaProps, Tooltip, type TooltipProps, showNotification };