@scalably/ui 0.14.5 → 0.14.7
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.cts +173 -38
- package/dist/index.d.ts +173 -38
- package/dist/index.esm.js +18 -18
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +18 -18
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +15 -14
package/dist/index.d.cts
CHANGED
|
@@ -3570,23 +3570,6 @@ interface ScalablyUIProviderProps {
|
|
|
3570
3570
|
*/
|
|
3571
3571
|
declare const ScalablyUIProvider: React.FC<ScalablyUIProviderProps>;
|
|
3572
3572
|
|
|
3573
|
-
interface PortalProps {
|
|
3574
|
-
/** The content to be rendered in the portal */
|
|
3575
|
-
children: React.ReactNode;
|
|
3576
|
-
/**
|
|
3577
|
-
* The container element to render the portal into.
|
|
3578
|
-
* @default document.body
|
|
3579
|
-
*/
|
|
3580
|
-
container?: HTMLElement | null;
|
|
3581
|
-
}
|
|
3582
|
-
/**
|
|
3583
|
-
* Portal component that renders its children into a DOM node that exists
|
|
3584
|
-
* outside the DOM hierarchy of the parent component.
|
|
3585
|
-
*
|
|
3586
|
-
* This is SSR-safe and will only render on the client.
|
|
3587
|
-
*/
|
|
3588
|
-
declare const Portal: ({ children, container }: PortalProps) => react.ReactPortal | null;
|
|
3589
|
-
|
|
3590
3573
|
type DropdownItem = {
|
|
3591
3574
|
id: string;
|
|
3592
3575
|
label: string;
|
|
@@ -3597,6 +3580,7 @@ type DropdownItem = {
|
|
|
3597
3580
|
disableDrag?: boolean;
|
|
3598
3581
|
disableEdit?: boolean;
|
|
3599
3582
|
disableDelete?: boolean;
|
|
3583
|
+
icon?: ReactNode;
|
|
3600
3584
|
[key: string]: any;
|
|
3601
3585
|
};
|
|
3602
3586
|
|
|
@@ -3611,6 +3595,7 @@ interface MultiLevelDropdownProps {
|
|
|
3611
3595
|
toParentId: string | null;
|
|
3612
3596
|
}, updatedItems: DropdownItem[]) => void;
|
|
3613
3597
|
onAddClick?: (level: number, parentId: string | null) => void;
|
|
3598
|
+
showAddCondition?: (level: number, parentId: string | null) => boolean;
|
|
3614
3599
|
addLabels?: Record<number, string>;
|
|
3615
3600
|
onItemClick?: (item: DropdownItem) => void;
|
|
3616
3601
|
onEditClick?: (item: DropdownItem) => void;
|
|
@@ -3618,7 +3603,24 @@ interface MultiLevelDropdownProps {
|
|
|
3618
3603
|
defaultExpanded?: boolean;
|
|
3619
3604
|
activeMenuItem?: string;
|
|
3620
3605
|
}
|
|
3621
|
-
declare function MultiLevelDropdown({ items: initialItems, draggableLevels, onChange, onAddClick, addLabels, containerClassname, itemClassname, onItemClick, onEditClick, onDeleteClick, defaultExpanded, activeMenuItem, }: MultiLevelDropdownProps): react_jsx_runtime.JSX.Element;
|
|
3606
|
+
declare function MultiLevelDropdown({ items: initialItems, draggableLevels, onChange, onAddClick, showAddCondition, addLabels, containerClassname, itemClassname, onItemClick, onEditClick, onDeleteClick, defaultExpanded, activeMenuItem, }: MultiLevelDropdownProps): react_jsx_runtime.JSX.Element;
|
|
3607
|
+
|
|
3608
|
+
interface PortalProps {
|
|
3609
|
+
/** The content to be rendered in the portal */
|
|
3610
|
+
children: React.ReactNode;
|
|
3611
|
+
/**
|
|
3612
|
+
* The container element to render the portal into.
|
|
3613
|
+
* @default document.body
|
|
3614
|
+
*/
|
|
3615
|
+
container?: HTMLElement | null;
|
|
3616
|
+
}
|
|
3617
|
+
/**
|
|
3618
|
+
* Portal component that renders its children into a DOM node that exists
|
|
3619
|
+
* outside the DOM hierarchy of the parent component.
|
|
3620
|
+
*
|
|
3621
|
+
* This is SSR-safe and will only render on the client.
|
|
3622
|
+
*/
|
|
3623
|
+
declare const Portal: ({ children, container }: PortalProps) => react.ReactPortal | null;
|
|
3622
3624
|
|
|
3623
3625
|
/**
|
|
3624
3626
|
* Type for class values accepted by clsx
|
|
@@ -4830,25 +4832,6 @@ declare const SuccessIcon: {
|
|
|
4830
4832
|
displayName: string;
|
|
4831
4833
|
};
|
|
4832
4834
|
|
|
4833
|
-
interface TickIconProps extends IconProps {
|
|
4834
|
-
}
|
|
4835
|
-
/**
|
|
4836
|
-
* Tick icon component - displays a tick icon.
|
|
4837
|
-
*
|
|
4838
|
-
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
4839
|
-
*
|
|
4840
|
-
* @example
|
|
4841
|
-
* ```tsx
|
|
4842
|
-
* import { TickIcon } from '@scalably/ui';
|
|
4843
|
-
*
|
|
4844
|
-
* <TickIcon size={16} className="sui-text-primary" />
|
|
4845
|
-
* ```
|
|
4846
|
-
*/
|
|
4847
|
-
declare const TickIcon: {
|
|
4848
|
-
(props: TickIconProps): react_jsx_runtime.JSX.Element;
|
|
4849
|
-
displayName: string;
|
|
4850
|
-
};
|
|
4851
|
-
|
|
4852
4835
|
interface WarnIconProps extends IconProps {
|
|
4853
4836
|
}
|
|
4854
4837
|
/**
|
|
@@ -4987,6 +4970,25 @@ declare const CartIcon: {
|
|
|
4987
4970
|
displayName: string;
|
|
4988
4971
|
};
|
|
4989
4972
|
|
|
4973
|
+
interface DoorExitIconProps extends IconProps {
|
|
4974
|
+
}
|
|
4975
|
+
/**
|
|
4976
|
+
* Door exit icon component - displays an exit/leave symbol.
|
|
4977
|
+
*
|
|
4978
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
4979
|
+
*
|
|
4980
|
+
* @example
|
|
4981
|
+
* ```tsx
|
|
4982
|
+
* import { DoorExitIcon } from '@scalably/ui';
|
|
4983
|
+
*
|
|
4984
|
+
* <DoorExitIcon size={16} className="sui-text-primary" />
|
|
4985
|
+
* ```
|
|
4986
|
+
*/
|
|
4987
|
+
declare const DoorExitIcon: {
|
|
4988
|
+
(props: DoorExitIconProps): react_jsx_runtime.JSX.Element;
|
|
4989
|
+
displayName: string;
|
|
4990
|
+
};
|
|
4991
|
+
|
|
4990
4992
|
interface EyeIconProps extends IconProps {
|
|
4991
4993
|
}
|
|
4992
4994
|
/**
|
|
@@ -5102,6 +5104,25 @@ declare const GridIcon: {
|
|
|
5102
5104
|
displayName: string;
|
|
5103
5105
|
};
|
|
5104
5106
|
|
|
5107
|
+
interface GripVerticalIconProps extends IconProps {
|
|
5108
|
+
}
|
|
5109
|
+
/**
|
|
5110
|
+
* Grip vertical icon component - displays a draggable handle.
|
|
5111
|
+
*
|
|
5112
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
5113
|
+
*
|
|
5114
|
+
* @example
|
|
5115
|
+
* ```tsx
|
|
5116
|
+
* import { GripVerticalIcon } from '@scalably/ui';
|
|
5117
|
+
*
|
|
5118
|
+
* <GripVerticalIcon size={16} className="sui-text-primary" />
|
|
5119
|
+
* ```
|
|
5120
|
+
*/
|
|
5121
|
+
declare const GripVerticalIcon: {
|
|
5122
|
+
(props: GripVerticalIconProps): react_jsx_runtime.JSX.Element;
|
|
5123
|
+
displayName: string;
|
|
5124
|
+
};
|
|
5125
|
+
|
|
5105
5126
|
interface HelpCircleIconProps extends IconProps {
|
|
5106
5127
|
}
|
|
5107
5128
|
/**
|
|
@@ -5217,6 +5238,25 @@ declare const MinusIcon: {
|
|
|
5217
5238
|
displayName: string;
|
|
5218
5239
|
};
|
|
5219
5240
|
|
|
5241
|
+
interface MoreHorizontalIconProps extends IconProps {
|
|
5242
|
+
}
|
|
5243
|
+
/**
|
|
5244
|
+
* More horizontal icon component - displays an overflow menu indicator.
|
|
5245
|
+
*
|
|
5246
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
5247
|
+
*
|
|
5248
|
+
* @example
|
|
5249
|
+
* ```tsx
|
|
5250
|
+
* import { MoreHorizontalIcon } from '@scalably/ui';
|
|
5251
|
+
*
|
|
5252
|
+
* <MoreHorizontalIcon size={16} className="sui-text-primary" />
|
|
5253
|
+
* ```
|
|
5254
|
+
*/
|
|
5255
|
+
declare const MoreHorizontalIcon: {
|
|
5256
|
+
(props: MoreHorizontalIconProps): react_jsx_runtime.JSX.Element;
|
|
5257
|
+
displayName: string;
|
|
5258
|
+
};
|
|
5259
|
+
|
|
5220
5260
|
interface MultipleSelectionIconProps extends IconProps {
|
|
5221
5261
|
}
|
|
5222
5262
|
/**
|
|
@@ -5257,6 +5297,44 @@ declare const PaletteIcon: {
|
|
|
5257
5297
|
displayName: string;
|
|
5258
5298
|
};
|
|
5259
5299
|
|
|
5300
|
+
interface PauseCircleIconProps extends IconProps {
|
|
5301
|
+
}
|
|
5302
|
+
/**
|
|
5303
|
+
* Pause circle icon component - displays a pause symbol inside a circle.
|
|
5304
|
+
*
|
|
5305
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
5306
|
+
*
|
|
5307
|
+
* @example
|
|
5308
|
+
* ```tsx
|
|
5309
|
+
* import { PauseCircleIcon } from '@scalably/ui';
|
|
5310
|
+
*
|
|
5311
|
+
* <PauseCircleIcon size={16} className="sui-text-primary" />
|
|
5312
|
+
* ```
|
|
5313
|
+
*/
|
|
5314
|
+
declare const PauseCircleIcon: {
|
|
5315
|
+
(props: PauseCircleIconProps): react_jsx_runtime.JSX.Element;
|
|
5316
|
+
displayName: string;
|
|
5317
|
+
};
|
|
5318
|
+
|
|
5319
|
+
interface PercentIconProps extends IconProps {
|
|
5320
|
+
}
|
|
5321
|
+
/**
|
|
5322
|
+
* Percent icon component - displays a percent symbol.
|
|
5323
|
+
*
|
|
5324
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
5325
|
+
*
|
|
5326
|
+
* @example
|
|
5327
|
+
* ```tsx
|
|
5328
|
+
* import { PercentIcon } from '@scalably/ui';
|
|
5329
|
+
*
|
|
5330
|
+
* <PercentIcon size={16} className="sui-text-primary" />
|
|
5331
|
+
* ```
|
|
5332
|
+
*/
|
|
5333
|
+
declare const PercentIcon: {
|
|
5334
|
+
(props: PercentIconProps): react_jsx_runtime.JSX.Element;
|
|
5335
|
+
displayName: string;
|
|
5336
|
+
};
|
|
5337
|
+
|
|
5260
5338
|
interface PlayIconProps extends IconProps {
|
|
5261
5339
|
}
|
|
5262
5340
|
/**
|
|
@@ -5527,6 +5605,44 @@ declare const UserIcon: {
|
|
|
5527
5605
|
displayName: string;
|
|
5528
5606
|
};
|
|
5529
5607
|
|
|
5608
|
+
interface UserJoinIconProps extends IconProps {
|
|
5609
|
+
}
|
|
5610
|
+
/**
|
|
5611
|
+
* User join icon component - displays a user with an add/join indicator.
|
|
5612
|
+
*
|
|
5613
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
5614
|
+
*
|
|
5615
|
+
* @example
|
|
5616
|
+
* ```tsx
|
|
5617
|
+
* import { UserJoinIcon } from '@scalably/ui';
|
|
5618
|
+
*
|
|
5619
|
+
* <UserJoinIcon size={16} className="sui-text-primary" />
|
|
5620
|
+
* ```
|
|
5621
|
+
*/
|
|
5622
|
+
declare const UserJoinIcon: {
|
|
5623
|
+
(props: UserJoinIconProps): react_jsx_runtime.JSX.Element;
|
|
5624
|
+
displayName: string;
|
|
5625
|
+
};
|
|
5626
|
+
|
|
5627
|
+
interface UserLeaveIconProps extends IconProps {
|
|
5628
|
+
}
|
|
5629
|
+
/**
|
|
5630
|
+
* User leave icon component - displays a user with a leave/exit indicator.
|
|
5631
|
+
*
|
|
5632
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
5633
|
+
*
|
|
5634
|
+
* @example
|
|
5635
|
+
* ```tsx
|
|
5636
|
+
* import { UserLeaveIcon } from '@scalably/ui';
|
|
5637
|
+
*
|
|
5638
|
+
* <UserLeaveIcon size={16} className="sui-text-primary" />
|
|
5639
|
+
* ```
|
|
5640
|
+
*/
|
|
5641
|
+
declare const UserLeaveIcon: {
|
|
5642
|
+
(props: UserLeaveIconProps): react_jsx_runtime.JSX.Element;
|
|
5643
|
+
displayName: string;
|
|
5644
|
+
};
|
|
5645
|
+
|
|
5530
5646
|
interface UsersFilledIconProps extends IconProps {
|
|
5531
5647
|
}
|
|
5532
5648
|
/**
|
|
@@ -5565,6 +5681,25 @@ declare const UsersIcon: {
|
|
|
5565
5681
|
displayName: string;
|
|
5566
5682
|
};
|
|
5567
5683
|
|
|
5684
|
+
interface UsersPlusIconProps extends IconProps {
|
|
5685
|
+
}
|
|
5686
|
+
/**
|
|
5687
|
+
* Users plus icon component - displays a group with an add user action.
|
|
5688
|
+
*
|
|
5689
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
5690
|
+
*
|
|
5691
|
+
* @example
|
|
5692
|
+
* ```tsx
|
|
5693
|
+
* import { UsersPlusIcon } from '@scalably/ui';
|
|
5694
|
+
*
|
|
5695
|
+
* <UsersPlusIcon size={16} className="sui-text-primary" />
|
|
5696
|
+
* ```
|
|
5697
|
+
*/
|
|
5698
|
+
declare const UsersPlusIcon: {
|
|
5699
|
+
(props: UsersPlusIconProps): react_jsx_runtime.JSX.Element;
|
|
5700
|
+
displayName: string;
|
|
5701
|
+
};
|
|
5702
|
+
|
|
5568
5703
|
interface WalletFilledIconProps extends IconProps {
|
|
5569
5704
|
}
|
|
5570
5705
|
/**
|
|
@@ -5604,4 +5739,4 @@ declare const WalletIcon: {
|
|
|
5604
5739
|
displayName: string;
|
|
5605
5740
|
};
|
|
5606
5741
|
|
|
5607
|
-
export { AlignCenterIcon, type AlignCenterIconProps, AlignLeftIcon, type AlignLeftIconProps, AlignRightIcon, type AlignRightIconProps, AppLauncherIcon, type AppLauncherIconProps, AppLogo, AuthPrompt, type AuthPromptProps, AvatarPlaceholder, type AvatarPlaceholderCategory, type AvatarPlaceholderProps, type AvatarPlaceholderVariant, BackToTop, type BackToTopProps, type BasicFileValidationError, BellFilledIcon, type BellFilledIconProps, BellIcon, type BellIconProps, BlockEditor, type BlockEditorProps, BoldIcon, type BoldIconProps, BottomNavigation, BottomNavigationCloseIcon, type BottomNavigationCloseIconProps, BottomNavigationExpandIcon, type BottomNavigationExpandIconProps, BottomNavigationItem, type BottomNavigationItemProps, type BottomNavigationProps, BottomNavigationV2, type BottomNavigationV2MenuItem, type BottomNavigationV2Props, type BottomNavigationV2TabItem, Button, type ButtonProps, type ButtonSize, type ButtonVariant, CalendarIcon, type CalendarIconProps, CampaignLogo, CaptureIcon, type CaptureIconProps, CartIcon, type CartIconProps, CelebrationModal, type CelebrationModalProps, CheckBox, CheckBoxGroup, type CheckBoxGroupOption, type CheckBoxGroupProps, type CheckBoxProps, CheckIcon, type CheckIconProps, CloseIcon, type CloseIconProps, CopyIcon, type CopyIconProps, Countdown, type CountdownProps, type CountdownSize, type CountdownTimeValues, type CountdownUnit, CropIcon, type CropIconProps, type CroppedImageResult, DateInput, type DateInputMode, type DateInputProps, DatePicker, type DatePickerMode, type DatePickerProps, type DefaultAssetCategory, type DefaultAssetComponent, type DefaultAssetProps, type DefaultAssetVariant, type DefaultAssets, DeleteIcon, type DeleteIconProps, DiscordIcon, type DiscordIconProps, Divider, DividerIcon, type DividerIconProps, type DividerProps, type DividerVariant, DownloadIcon, type DownloadIconProps, DropUpIcon, type DropUpIconProps, DropdownIcon, type DropdownIconProps, type DropdownItem, EditIcon, type EditIconProps, ErrorIcon, type ErrorIconProps, EyeIcon, type EyeIconProps, EyeSlashIcon, type EyeSlashIconProps, FacebookIcon, type FacebookIconProps, FeedFilledIcon, type FeedFilledIconProps, FeedIcon, type FeedIconProps, type FieldErrorLike, FileIcon, type FileIconProps, FileUpload, type FileUploadError, type FileUploadFile, FileUploadIcon, type FileUploadIconProps, type FileUploadIconType, type FileUploadProps, type FileUploadSize, type FileUploadVariant, FilterIcon, type FilterIconProps, Form, type FormErrorItem, FormErrorSummary, type FormErrorSummaryProps, FormField, type FormFieldProps, type FormProps, ForwardIcon, type ForwardIconProps, type GetCroppedImgOptions, GmailIcon, type GmailIconProps, GridIcon, type GridIconProps, GroupAvatar, HelpCircleIcon, type HelpCircleIconProps, HomeFilledIcon, type HomeFilledIconProps, HomeIcon, type HomeIconProps, IconBadge, type IconBadgeProps, IconBigLogo, IconLogo, ImageCrop, ImageCropModal, type ImageCropModalProps, type ImageCropProps, ImageGallery, type ImageGalleryProps, ImageIcon, type ImageIconProps, ImagePlaceholder, type ImageSourceMode, ImageUploadIcon, type ImageUploadIconProps, IndeterminateIcon, type IndeterminateIconProps, InfoCircleIcon, type InfoCircleIconProps, InfoIcon, type InfoIconProps, Input, type InputProps, type InputVariant, InsertImageIcon, type InsertImageIconProps, InsertVideoIcon, type InsertVideoIconProps, InstagramIcon, type InstagramIconProps, ItalicIcon, type ItalicIconProps, KakaoTalkIcon, type KakaoTalkIconProps, LineIcon, type LineIconProps, LinkIcon, type LinkIconProps, LinkedInIcon, type LinkedInIconProps, ListBulletIcon, type ListBulletIconProps, ListIcon, type ListIconProps, ListNumberIcon, type ListNumberIconProps, LoadingScreen, type LoadingScreenProps, LoadingSpinner, type LoadingSpinnerProps, Logo, type LogoAssetComponent, type LogoAssetProps, type LogoAssets, type LogoFormat, type LogoProps, type LogoVariant, MediaGallery, type MediaGalleryProps, type MediaItem, type MediaSource, MessengerIcon, type MessengerIconProps, MinusIcon, type MinusIconProps, MonthInput, type MonthInputMode, type MonthInputProps, MonthPicker, type MonthPickerMode, type MonthPickerProps, type MonthRangeValue, MultiLevelDropdown, type MultiLevelDropdownProps, MultipleSelectionButton, type MultipleSelectionButtonProps, MultipleSelectionIcon, type MultipleSelectionIconProps, BellFilledIcon as NotificationFilledIcon, type BellFilledIconProps as NotificationFilledIconProps, BellIcon as NotificationIcon, type BellIconProps as NotificationIconProps, Pagination, type PaginationProps, PaletteIcon, type PaletteIconProps, PlayIcon, type PlayIconProps, PlusIcon, type PlusIconProps, Portal, ProfileAvatar, ProgressBar, QuantityInput, type QuantityInputProps, Radio, RadioGroup, type RadioGroupOption, type RadioGroupProps, type RadioProps, type RangeValue, Rating, type RatingProps, RedditIcon, type RedditIconProps, ResetIcon, type ResetIconProps, ReviewFilledIcon, type ReviewFilledIconProps, ReviewIcon, type ReviewIconProps, RichTextEditor, type RichTextEditorProps, RichTextViewer, type RichTextViewerProps, RotateLeftIcon, type RotateLeftIconProps, RotateRightIcon, type RotateRightIconProps, ScalablyUIProvider, type ScalablyUIProviderProps, SearchIcon, type SearchIconProps, SearchInput, type SearchInputProps, type SearchInputVariant, Select, type SelectOption, type SelectProps, type SelectVariant, SettingsIcon, type SettingsIconProps, ShareIcon, type ShareIconProps, ShoppingBagFilledIcon, type ShoppingBagFilledIconProps, ShoppingBagIcon, type ShoppingBagIconProps, SignalIcon, type SignalIconProps, Skeleton, type SkeletonProps, type SkeletonSize, SkeletonText, type SkeletonTextProps, type SkeletonVariant, SlackIcon, type SlackIconProps, Slider, SocialCampaignFilledIcon, type SocialCampaignFilledIconProps, SocialCampaignIcon, type SocialCampaignIconProps, StarIcon, type StarIconProps, StatusBadge, type StatusBadgeProps, type StatusBadgeSize, type StatusBadgeStatus, type StatusBadgeVariant, StoreFilledIcon, type StoreFilledIconProps, StoreIcon, type StoreIconProps, SuccessIcon, type SuccessIconProps, Switch, type SwitchProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Tag, TagInput, type TagInputProps, TelegramIcon, type TelegramIconProps,
|
|
5742
|
+
export { AlignCenterIcon, type AlignCenterIconProps, AlignLeftIcon, type AlignLeftIconProps, AlignRightIcon, type AlignRightIconProps, AppLauncherIcon, type AppLauncherIconProps, AppLogo, AuthPrompt, type AuthPromptProps, AvatarPlaceholder, type AvatarPlaceholderCategory, type AvatarPlaceholderProps, type AvatarPlaceholderVariant, BackToTop, type BackToTopProps, type BasicFileValidationError, BellFilledIcon, type BellFilledIconProps, BellIcon, type BellIconProps, BlockEditor, type BlockEditorProps, BoldIcon, type BoldIconProps, BottomNavigation, BottomNavigationCloseIcon, type BottomNavigationCloseIconProps, BottomNavigationExpandIcon, type BottomNavigationExpandIconProps, BottomNavigationItem, type BottomNavigationItemProps, type BottomNavigationProps, BottomNavigationV2, type BottomNavigationV2MenuItem, type BottomNavigationV2Props, type BottomNavigationV2TabItem, Button, type ButtonProps, type ButtonSize, type ButtonVariant, CalendarIcon, type CalendarIconProps, CampaignLogo, CaptureIcon, type CaptureIconProps, CartIcon, type CartIconProps, CelebrationModal, type CelebrationModalProps, CheckBox, CheckBoxGroup, type CheckBoxGroupOption, type CheckBoxGroupProps, type CheckBoxProps, CheckIcon, type CheckIconProps, CloseIcon, type CloseIconProps, CopyIcon, type CopyIconProps, Countdown, type CountdownProps, type CountdownSize, type CountdownTimeValues, type CountdownUnit, CropIcon, type CropIconProps, type CroppedImageResult, DateInput, type DateInputMode, type DateInputProps, DatePicker, type DatePickerMode, type DatePickerProps, type DefaultAssetCategory, type DefaultAssetComponent, type DefaultAssetProps, type DefaultAssetVariant, type DefaultAssets, DeleteIcon, type DeleteIconProps, DiscordIcon, type DiscordIconProps, Divider, DividerIcon, type DividerIconProps, type DividerProps, type DividerVariant, DoorExitIcon, type DoorExitIconProps, DownloadIcon, type DownloadIconProps, DropUpIcon, type DropUpIconProps, DropdownIcon, type DropdownIconProps, type DropdownItem, EditIcon, type EditIconProps, ErrorIcon, type ErrorIconProps, EyeIcon, type EyeIconProps, EyeSlashIcon, type EyeSlashIconProps, FacebookIcon, type FacebookIconProps, FeedFilledIcon, type FeedFilledIconProps, FeedIcon, type FeedIconProps, type FieldErrorLike, FileIcon, type FileIconProps, FileUpload, type FileUploadError, type FileUploadFile, FileUploadIcon, type FileUploadIconProps, type FileUploadIconType, type FileUploadProps, type FileUploadSize, type FileUploadVariant, FilterIcon, type FilterIconProps, Form, type FormErrorItem, FormErrorSummary, type FormErrorSummaryProps, FormField, type FormFieldProps, type FormProps, ForwardIcon, type ForwardIconProps, type GetCroppedImgOptions, GmailIcon, type GmailIconProps, GridIcon, type GridIconProps, GripVerticalIcon, type GripVerticalIconProps, GroupAvatar, HelpCircleIcon, type HelpCircleIconProps, HomeFilledIcon, type HomeFilledIconProps, HomeIcon, type HomeIconProps, IconBadge, type IconBadgeProps, IconBigLogo, IconLogo, ImageCrop, ImageCropModal, type ImageCropModalProps, type ImageCropProps, ImageGallery, type ImageGalleryProps, ImageIcon, type ImageIconProps, ImagePlaceholder, type ImageSourceMode, ImageUploadIcon, type ImageUploadIconProps, IndeterminateIcon, type IndeterminateIconProps, InfoCircleIcon, type InfoCircleIconProps, InfoIcon, type InfoIconProps, Input, type InputProps, type InputVariant, InsertImageIcon, type InsertImageIconProps, InsertVideoIcon, type InsertVideoIconProps, InstagramIcon, type InstagramIconProps, ItalicIcon, type ItalicIconProps, KakaoTalkIcon, type KakaoTalkIconProps, LineIcon, type LineIconProps, LinkIcon, type LinkIconProps, LinkedInIcon, type LinkedInIconProps, ListBulletIcon, type ListBulletIconProps, ListIcon, type ListIconProps, ListNumberIcon, type ListNumberIconProps, LoadingScreen, type LoadingScreenProps, LoadingSpinner, type LoadingSpinnerProps, Logo, type LogoAssetComponent, type LogoAssetProps, type LogoAssets, type LogoFormat, type LogoProps, type LogoVariant, MediaGallery, type MediaGalleryProps, type MediaItem, type MediaSource, MessengerIcon, type MessengerIconProps, MinusIcon, type MinusIconProps, MonthInput, type MonthInputMode, type MonthInputProps, MonthPicker, type MonthPickerMode, type MonthPickerProps, type MonthRangeValue, MoreHorizontalIcon, type MoreHorizontalIconProps, MultiLevelDropdown, type MultiLevelDropdownProps, MultipleSelectionButton, type MultipleSelectionButtonProps, MultipleSelectionIcon, type MultipleSelectionIconProps, BellFilledIcon as NotificationFilledIcon, type BellFilledIconProps as NotificationFilledIconProps, BellIcon as NotificationIcon, type BellIconProps as NotificationIconProps, Pagination, type PaginationProps, PaletteIcon, type PaletteIconProps, PauseCircleIcon, type PauseCircleIconProps, PercentIcon, type PercentIconProps, PlayIcon, type PlayIconProps, PlusIcon, type PlusIconProps, Portal, ProfileAvatar, ProgressBar, QuantityInput, type QuantityInputProps, Radio, RadioGroup, type RadioGroupOption, type RadioGroupProps, type RadioProps, type RangeValue, Rating, type RatingProps, RedditIcon, type RedditIconProps, ResetIcon, type ResetIconProps, ReviewFilledIcon, type ReviewFilledIconProps, ReviewIcon, type ReviewIconProps, RichTextEditor, type RichTextEditorProps, RichTextViewer, type RichTextViewerProps, RotateLeftIcon, type RotateLeftIconProps, RotateRightIcon, type RotateRightIconProps, ScalablyUIProvider, type ScalablyUIProviderProps, SearchIcon, type SearchIconProps, SearchInput, type SearchInputProps, type SearchInputVariant, Select, type SelectOption, type SelectProps, type SelectVariant, SettingsIcon, type SettingsIconProps, ShareIcon, type ShareIconProps, ShoppingBagFilledIcon, type ShoppingBagFilledIconProps, ShoppingBagIcon, type ShoppingBagIconProps, SignalIcon, type SignalIconProps, Skeleton, type SkeletonProps, type SkeletonSize, SkeletonText, type SkeletonTextProps, type SkeletonVariant, SlackIcon, type SlackIconProps, Slider, SocialCampaignFilledIcon, type SocialCampaignFilledIconProps, SocialCampaignIcon, type SocialCampaignIconProps, StarIcon, type StarIconProps, StatusBadge, type StatusBadgeProps, type StatusBadgeSize, type StatusBadgeStatus, type StatusBadgeVariant, StoreFilledIcon, type StoreFilledIconProps, StoreIcon, type StoreIconProps, SuccessIcon, type SuccessIconProps, Switch, type SwitchProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Tag, TagInput, type TagInputProps, TelegramIcon, type TelegramIconProps, TiktokIcon, type TiktokIconProps, TimePicker, type TimePickerProps, ToFirstIcon, type ToFirstIconProps, ToLastIcon, type ToLastIconProps, ToNextIcon, type ToNextIconProps, ToPreviousIcon, type ToPreviousIconProps, Toast, type ToastAction, ToastContainer, type ToastContainerProps, type ToastPosition, type ToastProps, type ToastStatus, Tooltip, type TooltipAlign, type TooltipProps, type TooltipSide, TranslateIcon, type TranslateIconProps, TwitchIcon, type TwitchIconProps, UnderlineIcon, type UnderlineIconProps, UserFilledIcon, type UserFilledIconProps, UserIcon, type UserIconProps, UserJoinIcon, type UserJoinIconProps, UserLeaveIcon, type UserLeaveIconProps, UsersFilledIcon, type UsersFilledIconProps, UsersIcon, type UsersIconProps, UsersPlusIcon, type UsersPlusIconProps, VideoIcon, type VideoIconProps, VideoUploadIcon, type VideoUploadIconProps, type ViewMode, ViewToggle, type ViewToggleProps, WalletFilledIcon, type WalletFilledIconProps, WalletIcon, type WalletIconProps, WarnIcon, type WarnIconProps, WelcomeBackground, type WelcomeBackgroundProps, WhatsAppIcon, type WhatsAppIconProps, XIcon, type XIconProps, YearInput, type YearInputMode, type YearInputProps, YearPicker, type YearPickerMode, type YearPickerProps, type YearRangeValue, YoutubeIcon, type YoutubeIconProps, clampDate, cn, daysGrid, debounce, defaultAssets, extensionToMimeType, fieldErrorToProps, formatAcceptedFileTypes, formatDateLocalized, getCroppedImg, logoAssets, mimeTypeToDisplayName, monthsForLocale, normalizeAcceptedFileTypes, scopeClass, throttle, toDateKey, validateFileTypeAndSize, weekdaysForLocale, welcomeAssets, zodErrorsToSummary };
|
package/dist/index.d.ts
CHANGED
|
@@ -3570,23 +3570,6 @@ interface ScalablyUIProviderProps {
|
|
|
3570
3570
|
*/
|
|
3571
3571
|
declare const ScalablyUIProvider: React.FC<ScalablyUIProviderProps>;
|
|
3572
3572
|
|
|
3573
|
-
interface PortalProps {
|
|
3574
|
-
/** The content to be rendered in the portal */
|
|
3575
|
-
children: React.ReactNode;
|
|
3576
|
-
/**
|
|
3577
|
-
* The container element to render the portal into.
|
|
3578
|
-
* @default document.body
|
|
3579
|
-
*/
|
|
3580
|
-
container?: HTMLElement | null;
|
|
3581
|
-
}
|
|
3582
|
-
/**
|
|
3583
|
-
* Portal component that renders its children into a DOM node that exists
|
|
3584
|
-
* outside the DOM hierarchy of the parent component.
|
|
3585
|
-
*
|
|
3586
|
-
* This is SSR-safe and will only render on the client.
|
|
3587
|
-
*/
|
|
3588
|
-
declare const Portal: ({ children, container }: PortalProps) => react.ReactPortal | null;
|
|
3589
|
-
|
|
3590
3573
|
type DropdownItem = {
|
|
3591
3574
|
id: string;
|
|
3592
3575
|
label: string;
|
|
@@ -3597,6 +3580,7 @@ type DropdownItem = {
|
|
|
3597
3580
|
disableDrag?: boolean;
|
|
3598
3581
|
disableEdit?: boolean;
|
|
3599
3582
|
disableDelete?: boolean;
|
|
3583
|
+
icon?: ReactNode;
|
|
3600
3584
|
[key: string]: any;
|
|
3601
3585
|
};
|
|
3602
3586
|
|
|
@@ -3611,6 +3595,7 @@ interface MultiLevelDropdownProps {
|
|
|
3611
3595
|
toParentId: string | null;
|
|
3612
3596
|
}, updatedItems: DropdownItem[]) => void;
|
|
3613
3597
|
onAddClick?: (level: number, parentId: string | null) => void;
|
|
3598
|
+
showAddCondition?: (level: number, parentId: string | null) => boolean;
|
|
3614
3599
|
addLabels?: Record<number, string>;
|
|
3615
3600
|
onItemClick?: (item: DropdownItem) => void;
|
|
3616
3601
|
onEditClick?: (item: DropdownItem) => void;
|
|
@@ -3618,7 +3603,24 @@ interface MultiLevelDropdownProps {
|
|
|
3618
3603
|
defaultExpanded?: boolean;
|
|
3619
3604
|
activeMenuItem?: string;
|
|
3620
3605
|
}
|
|
3621
|
-
declare function MultiLevelDropdown({ items: initialItems, draggableLevels, onChange, onAddClick, addLabels, containerClassname, itemClassname, onItemClick, onEditClick, onDeleteClick, defaultExpanded, activeMenuItem, }: MultiLevelDropdownProps): react_jsx_runtime.JSX.Element;
|
|
3606
|
+
declare function MultiLevelDropdown({ items: initialItems, draggableLevels, onChange, onAddClick, showAddCondition, addLabels, containerClassname, itemClassname, onItemClick, onEditClick, onDeleteClick, defaultExpanded, activeMenuItem, }: MultiLevelDropdownProps): react_jsx_runtime.JSX.Element;
|
|
3607
|
+
|
|
3608
|
+
interface PortalProps {
|
|
3609
|
+
/** The content to be rendered in the portal */
|
|
3610
|
+
children: React.ReactNode;
|
|
3611
|
+
/**
|
|
3612
|
+
* The container element to render the portal into.
|
|
3613
|
+
* @default document.body
|
|
3614
|
+
*/
|
|
3615
|
+
container?: HTMLElement | null;
|
|
3616
|
+
}
|
|
3617
|
+
/**
|
|
3618
|
+
* Portal component that renders its children into a DOM node that exists
|
|
3619
|
+
* outside the DOM hierarchy of the parent component.
|
|
3620
|
+
*
|
|
3621
|
+
* This is SSR-safe and will only render on the client.
|
|
3622
|
+
*/
|
|
3623
|
+
declare const Portal: ({ children, container }: PortalProps) => react.ReactPortal | null;
|
|
3622
3624
|
|
|
3623
3625
|
/**
|
|
3624
3626
|
* Type for class values accepted by clsx
|
|
@@ -4830,25 +4832,6 @@ declare const SuccessIcon: {
|
|
|
4830
4832
|
displayName: string;
|
|
4831
4833
|
};
|
|
4832
4834
|
|
|
4833
|
-
interface TickIconProps extends IconProps {
|
|
4834
|
-
}
|
|
4835
|
-
/**
|
|
4836
|
-
* Tick icon component - displays a tick icon.
|
|
4837
|
-
*
|
|
4838
|
-
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
4839
|
-
*
|
|
4840
|
-
* @example
|
|
4841
|
-
* ```tsx
|
|
4842
|
-
* import { TickIcon } from '@scalably/ui';
|
|
4843
|
-
*
|
|
4844
|
-
* <TickIcon size={16} className="sui-text-primary" />
|
|
4845
|
-
* ```
|
|
4846
|
-
*/
|
|
4847
|
-
declare const TickIcon: {
|
|
4848
|
-
(props: TickIconProps): react_jsx_runtime.JSX.Element;
|
|
4849
|
-
displayName: string;
|
|
4850
|
-
};
|
|
4851
|
-
|
|
4852
4835
|
interface WarnIconProps extends IconProps {
|
|
4853
4836
|
}
|
|
4854
4837
|
/**
|
|
@@ -4987,6 +4970,25 @@ declare const CartIcon: {
|
|
|
4987
4970
|
displayName: string;
|
|
4988
4971
|
};
|
|
4989
4972
|
|
|
4973
|
+
interface DoorExitIconProps extends IconProps {
|
|
4974
|
+
}
|
|
4975
|
+
/**
|
|
4976
|
+
* Door exit icon component - displays an exit/leave symbol.
|
|
4977
|
+
*
|
|
4978
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
4979
|
+
*
|
|
4980
|
+
* @example
|
|
4981
|
+
* ```tsx
|
|
4982
|
+
* import { DoorExitIcon } from '@scalably/ui';
|
|
4983
|
+
*
|
|
4984
|
+
* <DoorExitIcon size={16} className="sui-text-primary" />
|
|
4985
|
+
* ```
|
|
4986
|
+
*/
|
|
4987
|
+
declare const DoorExitIcon: {
|
|
4988
|
+
(props: DoorExitIconProps): react_jsx_runtime.JSX.Element;
|
|
4989
|
+
displayName: string;
|
|
4990
|
+
};
|
|
4991
|
+
|
|
4990
4992
|
interface EyeIconProps extends IconProps {
|
|
4991
4993
|
}
|
|
4992
4994
|
/**
|
|
@@ -5102,6 +5104,25 @@ declare const GridIcon: {
|
|
|
5102
5104
|
displayName: string;
|
|
5103
5105
|
};
|
|
5104
5106
|
|
|
5107
|
+
interface GripVerticalIconProps extends IconProps {
|
|
5108
|
+
}
|
|
5109
|
+
/**
|
|
5110
|
+
* Grip vertical icon component - displays a draggable handle.
|
|
5111
|
+
*
|
|
5112
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
5113
|
+
*
|
|
5114
|
+
* @example
|
|
5115
|
+
* ```tsx
|
|
5116
|
+
* import { GripVerticalIcon } from '@scalably/ui';
|
|
5117
|
+
*
|
|
5118
|
+
* <GripVerticalIcon size={16} className="sui-text-primary" />
|
|
5119
|
+
* ```
|
|
5120
|
+
*/
|
|
5121
|
+
declare const GripVerticalIcon: {
|
|
5122
|
+
(props: GripVerticalIconProps): react_jsx_runtime.JSX.Element;
|
|
5123
|
+
displayName: string;
|
|
5124
|
+
};
|
|
5125
|
+
|
|
5105
5126
|
interface HelpCircleIconProps extends IconProps {
|
|
5106
5127
|
}
|
|
5107
5128
|
/**
|
|
@@ -5217,6 +5238,25 @@ declare const MinusIcon: {
|
|
|
5217
5238
|
displayName: string;
|
|
5218
5239
|
};
|
|
5219
5240
|
|
|
5241
|
+
interface MoreHorizontalIconProps extends IconProps {
|
|
5242
|
+
}
|
|
5243
|
+
/**
|
|
5244
|
+
* More horizontal icon component - displays an overflow menu indicator.
|
|
5245
|
+
*
|
|
5246
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
5247
|
+
*
|
|
5248
|
+
* @example
|
|
5249
|
+
* ```tsx
|
|
5250
|
+
* import { MoreHorizontalIcon } from '@scalably/ui';
|
|
5251
|
+
*
|
|
5252
|
+
* <MoreHorizontalIcon size={16} className="sui-text-primary" />
|
|
5253
|
+
* ```
|
|
5254
|
+
*/
|
|
5255
|
+
declare const MoreHorizontalIcon: {
|
|
5256
|
+
(props: MoreHorizontalIconProps): react_jsx_runtime.JSX.Element;
|
|
5257
|
+
displayName: string;
|
|
5258
|
+
};
|
|
5259
|
+
|
|
5220
5260
|
interface MultipleSelectionIconProps extends IconProps {
|
|
5221
5261
|
}
|
|
5222
5262
|
/**
|
|
@@ -5257,6 +5297,44 @@ declare const PaletteIcon: {
|
|
|
5257
5297
|
displayName: string;
|
|
5258
5298
|
};
|
|
5259
5299
|
|
|
5300
|
+
interface PauseCircleIconProps extends IconProps {
|
|
5301
|
+
}
|
|
5302
|
+
/**
|
|
5303
|
+
* Pause circle icon component - displays a pause symbol inside a circle.
|
|
5304
|
+
*
|
|
5305
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
5306
|
+
*
|
|
5307
|
+
* @example
|
|
5308
|
+
* ```tsx
|
|
5309
|
+
* import { PauseCircleIcon } from '@scalably/ui';
|
|
5310
|
+
*
|
|
5311
|
+
* <PauseCircleIcon size={16} className="sui-text-primary" />
|
|
5312
|
+
* ```
|
|
5313
|
+
*/
|
|
5314
|
+
declare const PauseCircleIcon: {
|
|
5315
|
+
(props: PauseCircleIconProps): react_jsx_runtime.JSX.Element;
|
|
5316
|
+
displayName: string;
|
|
5317
|
+
};
|
|
5318
|
+
|
|
5319
|
+
interface PercentIconProps extends IconProps {
|
|
5320
|
+
}
|
|
5321
|
+
/**
|
|
5322
|
+
* Percent icon component - displays a percent symbol.
|
|
5323
|
+
*
|
|
5324
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
5325
|
+
*
|
|
5326
|
+
* @example
|
|
5327
|
+
* ```tsx
|
|
5328
|
+
* import { PercentIcon } from '@scalably/ui';
|
|
5329
|
+
*
|
|
5330
|
+
* <PercentIcon size={16} className="sui-text-primary" />
|
|
5331
|
+
* ```
|
|
5332
|
+
*/
|
|
5333
|
+
declare const PercentIcon: {
|
|
5334
|
+
(props: PercentIconProps): react_jsx_runtime.JSX.Element;
|
|
5335
|
+
displayName: string;
|
|
5336
|
+
};
|
|
5337
|
+
|
|
5260
5338
|
interface PlayIconProps extends IconProps {
|
|
5261
5339
|
}
|
|
5262
5340
|
/**
|
|
@@ -5527,6 +5605,44 @@ declare const UserIcon: {
|
|
|
5527
5605
|
displayName: string;
|
|
5528
5606
|
};
|
|
5529
5607
|
|
|
5608
|
+
interface UserJoinIconProps extends IconProps {
|
|
5609
|
+
}
|
|
5610
|
+
/**
|
|
5611
|
+
* User join icon component - displays a user with an add/join indicator.
|
|
5612
|
+
*
|
|
5613
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
5614
|
+
*
|
|
5615
|
+
* @example
|
|
5616
|
+
* ```tsx
|
|
5617
|
+
* import { UserJoinIcon } from '@scalably/ui';
|
|
5618
|
+
*
|
|
5619
|
+
* <UserJoinIcon size={16} className="sui-text-primary" />
|
|
5620
|
+
* ```
|
|
5621
|
+
*/
|
|
5622
|
+
declare const UserJoinIcon: {
|
|
5623
|
+
(props: UserJoinIconProps): react_jsx_runtime.JSX.Element;
|
|
5624
|
+
displayName: string;
|
|
5625
|
+
};
|
|
5626
|
+
|
|
5627
|
+
interface UserLeaveIconProps extends IconProps {
|
|
5628
|
+
}
|
|
5629
|
+
/**
|
|
5630
|
+
* User leave icon component - displays a user with a leave/exit indicator.
|
|
5631
|
+
*
|
|
5632
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
5633
|
+
*
|
|
5634
|
+
* @example
|
|
5635
|
+
* ```tsx
|
|
5636
|
+
* import { UserLeaveIcon } from '@scalably/ui';
|
|
5637
|
+
*
|
|
5638
|
+
* <UserLeaveIcon size={16} className="sui-text-primary" />
|
|
5639
|
+
* ```
|
|
5640
|
+
*/
|
|
5641
|
+
declare const UserLeaveIcon: {
|
|
5642
|
+
(props: UserLeaveIconProps): react_jsx_runtime.JSX.Element;
|
|
5643
|
+
displayName: string;
|
|
5644
|
+
};
|
|
5645
|
+
|
|
5530
5646
|
interface UsersFilledIconProps extends IconProps {
|
|
5531
5647
|
}
|
|
5532
5648
|
/**
|
|
@@ -5565,6 +5681,25 @@ declare const UsersIcon: {
|
|
|
5565
5681
|
displayName: string;
|
|
5566
5682
|
};
|
|
5567
5683
|
|
|
5684
|
+
interface UsersPlusIconProps extends IconProps {
|
|
5685
|
+
}
|
|
5686
|
+
/**
|
|
5687
|
+
* Users plus icon component - displays a group with an add user action.
|
|
5688
|
+
*
|
|
5689
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
5690
|
+
*
|
|
5691
|
+
* @example
|
|
5692
|
+
* ```tsx
|
|
5693
|
+
* import { UsersPlusIcon } from '@scalably/ui';
|
|
5694
|
+
*
|
|
5695
|
+
* <UsersPlusIcon size={16} className="sui-text-primary" />
|
|
5696
|
+
* ```
|
|
5697
|
+
*/
|
|
5698
|
+
declare const UsersPlusIcon: {
|
|
5699
|
+
(props: UsersPlusIconProps): react_jsx_runtime.JSX.Element;
|
|
5700
|
+
displayName: string;
|
|
5701
|
+
};
|
|
5702
|
+
|
|
5568
5703
|
interface WalletFilledIconProps extends IconProps {
|
|
5569
5704
|
}
|
|
5570
5705
|
/**
|
|
@@ -5604,4 +5739,4 @@ declare const WalletIcon: {
|
|
|
5604
5739
|
displayName: string;
|
|
5605
5740
|
};
|
|
5606
5741
|
|
|
5607
|
-
export { AlignCenterIcon, type AlignCenterIconProps, AlignLeftIcon, type AlignLeftIconProps, AlignRightIcon, type AlignRightIconProps, AppLauncherIcon, type AppLauncherIconProps, AppLogo, AuthPrompt, type AuthPromptProps, AvatarPlaceholder, type AvatarPlaceholderCategory, type AvatarPlaceholderProps, type AvatarPlaceholderVariant, BackToTop, type BackToTopProps, type BasicFileValidationError, BellFilledIcon, type BellFilledIconProps, BellIcon, type BellIconProps, BlockEditor, type BlockEditorProps, BoldIcon, type BoldIconProps, BottomNavigation, BottomNavigationCloseIcon, type BottomNavigationCloseIconProps, BottomNavigationExpandIcon, type BottomNavigationExpandIconProps, BottomNavigationItem, type BottomNavigationItemProps, type BottomNavigationProps, BottomNavigationV2, type BottomNavigationV2MenuItem, type BottomNavigationV2Props, type BottomNavigationV2TabItem, Button, type ButtonProps, type ButtonSize, type ButtonVariant, CalendarIcon, type CalendarIconProps, CampaignLogo, CaptureIcon, type CaptureIconProps, CartIcon, type CartIconProps, CelebrationModal, type CelebrationModalProps, CheckBox, CheckBoxGroup, type CheckBoxGroupOption, type CheckBoxGroupProps, type CheckBoxProps, CheckIcon, type CheckIconProps, CloseIcon, type CloseIconProps, CopyIcon, type CopyIconProps, Countdown, type CountdownProps, type CountdownSize, type CountdownTimeValues, type CountdownUnit, CropIcon, type CropIconProps, type CroppedImageResult, DateInput, type DateInputMode, type DateInputProps, DatePicker, type DatePickerMode, type DatePickerProps, type DefaultAssetCategory, type DefaultAssetComponent, type DefaultAssetProps, type DefaultAssetVariant, type DefaultAssets, DeleteIcon, type DeleteIconProps, DiscordIcon, type DiscordIconProps, Divider, DividerIcon, type DividerIconProps, type DividerProps, type DividerVariant, DownloadIcon, type DownloadIconProps, DropUpIcon, type DropUpIconProps, DropdownIcon, type DropdownIconProps, type DropdownItem, EditIcon, type EditIconProps, ErrorIcon, type ErrorIconProps, EyeIcon, type EyeIconProps, EyeSlashIcon, type EyeSlashIconProps, FacebookIcon, type FacebookIconProps, FeedFilledIcon, type FeedFilledIconProps, FeedIcon, type FeedIconProps, type FieldErrorLike, FileIcon, type FileIconProps, FileUpload, type FileUploadError, type FileUploadFile, FileUploadIcon, type FileUploadIconProps, type FileUploadIconType, type FileUploadProps, type FileUploadSize, type FileUploadVariant, FilterIcon, type FilterIconProps, Form, type FormErrorItem, FormErrorSummary, type FormErrorSummaryProps, FormField, type FormFieldProps, type FormProps, ForwardIcon, type ForwardIconProps, type GetCroppedImgOptions, GmailIcon, type GmailIconProps, GridIcon, type GridIconProps, GroupAvatar, HelpCircleIcon, type HelpCircleIconProps, HomeFilledIcon, type HomeFilledIconProps, HomeIcon, type HomeIconProps, IconBadge, type IconBadgeProps, IconBigLogo, IconLogo, ImageCrop, ImageCropModal, type ImageCropModalProps, type ImageCropProps, ImageGallery, type ImageGalleryProps, ImageIcon, type ImageIconProps, ImagePlaceholder, type ImageSourceMode, ImageUploadIcon, type ImageUploadIconProps, IndeterminateIcon, type IndeterminateIconProps, InfoCircleIcon, type InfoCircleIconProps, InfoIcon, type InfoIconProps, Input, type InputProps, type InputVariant, InsertImageIcon, type InsertImageIconProps, InsertVideoIcon, type InsertVideoIconProps, InstagramIcon, type InstagramIconProps, ItalicIcon, type ItalicIconProps, KakaoTalkIcon, type KakaoTalkIconProps, LineIcon, type LineIconProps, LinkIcon, type LinkIconProps, LinkedInIcon, type LinkedInIconProps, ListBulletIcon, type ListBulletIconProps, ListIcon, type ListIconProps, ListNumberIcon, type ListNumberIconProps, LoadingScreen, type LoadingScreenProps, LoadingSpinner, type LoadingSpinnerProps, Logo, type LogoAssetComponent, type LogoAssetProps, type LogoAssets, type LogoFormat, type LogoProps, type LogoVariant, MediaGallery, type MediaGalleryProps, type MediaItem, type MediaSource, MessengerIcon, type MessengerIconProps, MinusIcon, type MinusIconProps, MonthInput, type MonthInputMode, type MonthInputProps, MonthPicker, type MonthPickerMode, type MonthPickerProps, type MonthRangeValue, MultiLevelDropdown, type MultiLevelDropdownProps, MultipleSelectionButton, type MultipleSelectionButtonProps, MultipleSelectionIcon, type MultipleSelectionIconProps, BellFilledIcon as NotificationFilledIcon, type BellFilledIconProps as NotificationFilledIconProps, BellIcon as NotificationIcon, type BellIconProps as NotificationIconProps, Pagination, type PaginationProps, PaletteIcon, type PaletteIconProps, PlayIcon, type PlayIconProps, PlusIcon, type PlusIconProps, Portal, ProfileAvatar, ProgressBar, QuantityInput, type QuantityInputProps, Radio, RadioGroup, type RadioGroupOption, type RadioGroupProps, type RadioProps, type RangeValue, Rating, type RatingProps, RedditIcon, type RedditIconProps, ResetIcon, type ResetIconProps, ReviewFilledIcon, type ReviewFilledIconProps, ReviewIcon, type ReviewIconProps, RichTextEditor, type RichTextEditorProps, RichTextViewer, type RichTextViewerProps, RotateLeftIcon, type RotateLeftIconProps, RotateRightIcon, type RotateRightIconProps, ScalablyUIProvider, type ScalablyUIProviderProps, SearchIcon, type SearchIconProps, SearchInput, type SearchInputProps, type SearchInputVariant, Select, type SelectOption, type SelectProps, type SelectVariant, SettingsIcon, type SettingsIconProps, ShareIcon, type ShareIconProps, ShoppingBagFilledIcon, type ShoppingBagFilledIconProps, ShoppingBagIcon, type ShoppingBagIconProps, SignalIcon, type SignalIconProps, Skeleton, type SkeletonProps, type SkeletonSize, SkeletonText, type SkeletonTextProps, type SkeletonVariant, SlackIcon, type SlackIconProps, Slider, SocialCampaignFilledIcon, type SocialCampaignFilledIconProps, SocialCampaignIcon, type SocialCampaignIconProps, StarIcon, type StarIconProps, StatusBadge, type StatusBadgeProps, type StatusBadgeSize, type StatusBadgeStatus, type StatusBadgeVariant, StoreFilledIcon, type StoreFilledIconProps, StoreIcon, type StoreIconProps, SuccessIcon, type SuccessIconProps, Switch, type SwitchProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Tag, TagInput, type TagInputProps, TelegramIcon, type TelegramIconProps,
|
|
5742
|
+
export { AlignCenterIcon, type AlignCenterIconProps, AlignLeftIcon, type AlignLeftIconProps, AlignRightIcon, type AlignRightIconProps, AppLauncherIcon, type AppLauncherIconProps, AppLogo, AuthPrompt, type AuthPromptProps, AvatarPlaceholder, type AvatarPlaceholderCategory, type AvatarPlaceholderProps, type AvatarPlaceholderVariant, BackToTop, type BackToTopProps, type BasicFileValidationError, BellFilledIcon, type BellFilledIconProps, BellIcon, type BellIconProps, BlockEditor, type BlockEditorProps, BoldIcon, type BoldIconProps, BottomNavigation, BottomNavigationCloseIcon, type BottomNavigationCloseIconProps, BottomNavigationExpandIcon, type BottomNavigationExpandIconProps, BottomNavigationItem, type BottomNavigationItemProps, type BottomNavigationProps, BottomNavigationV2, type BottomNavigationV2MenuItem, type BottomNavigationV2Props, type BottomNavigationV2TabItem, Button, type ButtonProps, type ButtonSize, type ButtonVariant, CalendarIcon, type CalendarIconProps, CampaignLogo, CaptureIcon, type CaptureIconProps, CartIcon, type CartIconProps, CelebrationModal, type CelebrationModalProps, CheckBox, CheckBoxGroup, type CheckBoxGroupOption, type CheckBoxGroupProps, type CheckBoxProps, CheckIcon, type CheckIconProps, CloseIcon, type CloseIconProps, CopyIcon, type CopyIconProps, Countdown, type CountdownProps, type CountdownSize, type CountdownTimeValues, type CountdownUnit, CropIcon, type CropIconProps, type CroppedImageResult, DateInput, type DateInputMode, type DateInputProps, DatePicker, type DatePickerMode, type DatePickerProps, type DefaultAssetCategory, type DefaultAssetComponent, type DefaultAssetProps, type DefaultAssetVariant, type DefaultAssets, DeleteIcon, type DeleteIconProps, DiscordIcon, type DiscordIconProps, Divider, DividerIcon, type DividerIconProps, type DividerProps, type DividerVariant, DoorExitIcon, type DoorExitIconProps, DownloadIcon, type DownloadIconProps, DropUpIcon, type DropUpIconProps, DropdownIcon, type DropdownIconProps, type DropdownItem, EditIcon, type EditIconProps, ErrorIcon, type ErrorIconProps, EyeIcon, type EyeIconProps, EyeSlashIcon, type EyeSlashIconProps, FacebookIcon, type FacebookIconProps, FeedFilledIcon, type FeedFilledIconProps, FeedIcon, type FeedIconProps, type FieldErrorLike, FileIcon, type FileIconProps, FileUpload, type FileUploadError, type FileUploadFile, FileUploadIcon, type FileUploadIconProps, type FileUploadIconType, type FileUploadProps, type FileUploadSize, type FileUploadVariant, FilterIcon, type FilterIconProps, Form, type FormErrorItem, FormErrorSummary, type FormErrorSummaryProps, FormField, type FormFieldProps, type FormProps, ForwardIcon, type ForwardIconProps, type GetCroppedImgOptions, GmailIcon, type GmailIconProps, GridIcon, type GridIconProps, GripVerticalIcon, type GripVerticalIconProps, GroupAvatar, HelpCircleIcon, type HelpCircleIconProps, HomeFilledIcon, type HomeFilledIconProps, HomeIcon, type HomeIconProps, IconBadge, type IconBadgeProps, IconBigLogo, IconLogo, ImageCrop, ImageCropModal, type ImageCropModalProps, type ImageCropProps, ImageGallery, type ImageGalleryProps, ImageIcon, type ImageIconProps, ImagePlaceholder, type ImageSourceMode, ImageUploadIcon, type ImageUploadIconProps, IndeterminateIcon, type IndeterminateIconProps, InfoCircleIcon, type InfoCircleIconProps, InfoIcon, type InfoIconProps, Input, type InputProps, type InputVariant, InsertImageIcon, type InsertImageIconProps, InsertVideoIcon, type InsertVideoIconProps, InstagramIcon, type InstagramIconProps, ItalicIcon, type ItalicIconProps, KakaoTalkIcon, type KakaoTalkIconProps, LineIcon, type LineIconProps, LinkIcon, type LinkIconProps, LinkedInIcon, type LinkedInIconProps, ListBulletIcon, type ListBulletIconProps, ListIcon, type ListIconProps, ListNumberIcon, type ListNumberIconProps, LoadingScreen, type LoadingScreenProps, LoadingSpinner, type LoadingSpinnerProps, Logo, type LogoAssetComponent, type LogoAssetProps, type LogoAssets, type LogoFormat, type LogoProps, type LogoVariant, MediaGallery, type MediaGalleryProps, type MediaItem, type MediaSource, MessengerIcon, type MessengerIconProps, MinusIcon, type MinusIconProps, MonthInput, type MonthInputMode, type MonthInputProps, MonthPicker, type MonthPickerMode, type MonthPickerProps, type MonthRangeValue, MoreHorizontalIcon, type MoreHorizontalIconProps, MultiLevelDropdown, type MultiLevelDropdownProps, MultipleSelectionButton, type MultipleSelectionButtonProps, MultipleSelectionIcon, type MultipleSelectionIconProps, BellFilledIcon as NotificationFilledIcon, type BellFilledIconProps as NotificationFilledIconProps, BellIcon as NotificationIcon, type BellIconProps as NotificationIconProps, Pagination, type PaginationProps, PaletteIcon, type PaletteIconProps, PauseCircleIcon, type PauseCircleIconProps, PercentIcon, type PercentIconProps, PlayIcon, type PlayIconProps, PlusIcon, type PlusIconProps, Portal, ProfileAvatar, ProgressBar, QuantityInput, type QuantityInputProps, Radio, RadioGroup, type RadioGroupOption, type RadioGroupProps, type RadioProps, type RangeValue, Rating, type RatingProps, RedditIcon, type RedditIconProps, ResetIcon, type ResetIconProps, ReviewFilledIcon, type ReviewFilledIconProps, ReviewIcon, type ReviewIconProps, RichTextEditor, type RichTextEditorProps, RichTextViewer, type RichTextViewerProps, RotateLeftIcon, type RotateLeftIconProps, RotateRightIcon, type RotateRightIconProps, ScalablyUIProvider, type ScalablyUIProviderProps, SearchIcon, type SearchIconProps, SearchInput, type SearchInputProps, type SearchInputVariant, Select, type SelectOption, type SelectProps, type SelectVariant, SettingsIcon, type SettingsIconProps, ShareIcon, type ShareIconProps, ShoppingBagFilledIcon, type ShoppingBagFilledIconProps, ShoppingBagIcon, type ShoppingBagIconProps, SignalIcon, type SignalIconProps, Skeleton, type SkeletonProps, type SkeletonSize, SkeletonText, type SkeletonTextProps, type SkeletonVariant, SlackIcon, type SlackIconProps, Slider, SocialCampaignFilledIcon, type SocialCampaignFilledIconProps, SocialCampaignIcon, type SocialCampaignIconProps, StarIcon, type StarIconProps, StatusBadge, type StatusBadgeProps, type StatusBadgeSize, type StatusBadgeStatus, type StatusBadgeVariant, StoreFilledIcon, type StoreFilledIconProps, StoreIcon, type StoreIconProps, SuccessIcon, type SuccessIconProps, Switch, type SwitchProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Tag, TagInput, type TagInputProps, TelegramIcon, type TelegramIconProps, TiktokIcon, type TiktokIconProps, TimePicker, type TimePickerProps, ToFirstIcon, type ToFirstIconProps, ToLastIcon, type ToLastIconProps, ToNextIcon, type ToNextIconProps, ToPreviousIcon, type ToPreviousIconProps, Toast, type ToastAction, ToastContainer, type ToastContainerProps, type ToastPosition, type ToastProps, type ToastStatus, Tooltip, type TooltipAlign, type TooltipProps, type TooltipSide, TranslateIcon, type TranslateIconProps, TwitchIcon, type TwitchIconProps, UnderlineIcon, type UnderlineIconProps, UserFilledIcon, type UserFilledIconProps, UserIcon, type UserIconProps, UserJoinIcon, type UserJoinIconProps, UserLeaveIcon, type UserLeaveIconProps, UsersFilledIcon, type UsersFilledIconProps, UsersIcon, type UsersIconProps, UsersPlusIcon, type UsersPlusIconProps, VideoIcon, type VideoIconProps, VideoUploadIcon, type VideoUploadIconProps, type ViewMode, ViewToggle, type ViewToggleProps, WalletFilledIcon, type WalletFilledIconProps, WalletIcon, type WalletIconProps, WarnIcon, type WarnIconProps, WelcomeBackground, type WelcomeBackgroundProps, WhatsAppIcon, type WhatsAppIconProps, XIcon, type XIconProps, YearInput, type YearInputMode, type YearInputProps, YearPicker, type YearPickerMode, type YearPickerProps, type YearRangeValue, YoutubeIcon, type YoutubeIconProps, clampDate, cn, daysGrid, debounce, defaultAssets, extensionToMimeType, fieldErrorToProps, formatAcceptedFileTypes, formatDateLocalized, getCroppedImg, logoAssets, mimeTypeToDisplayName, monthsForLocale, normalizeAcceptedFileTypes, scopeClass, throttle, toDateKey, validateFileTypeAndSize, weekdaysForLocale, welcomeAssets, zodErrorsToSummary };
|