@scalably/ui 0.14.4 → 0.14.6

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 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;
@@ -3616,8 +3599,26 @@ interface MultiLevelDropdownProps {
3616
3599
  onEditClick?: (item: DropdownItem) => void;
3617
3600
  onDeleteClick?: (item: DropdownItem) => void;
3618
3601
  defaultExpanded?: boolean;
3602
+ activeMenuItem?: string;
3603
+ }
3604
+ declare function MultiLevelDropdown({ items: initialItems, draggableLevels, onChange, onAddClick, addLabels, containerClassname, itemClassname, onItemClick, onEditClick, onDeleteClick, defaultExpanded, activeMenuItem, }: MultiLevelDropdownProps): react_jsx_runtime.JSX.Element;
3605
+
3606
+ interface PortalProps {
3607
+ /** The content to be rendered in the portal */
3608
+ children: React.ReactNode;
3609
+ /**
3610
+ * The container element to render the portal into.
3611
+ * @default document.body
3612
+ */
3613
+ container?: HTMLElement | null;
3619
3614
  }
3620
- declare function MultiLevelDropdown({ items: initialItems, draggableLevels, onChange, onAddClick, addLabels, containerClassname, itemClassname, onItemClick, onEditClick, onDeleteClick, defaultExpanded, }: MultiLevelDropdownProps): react_jsx_runtime.JSX.Element;
3615
+ /**
3616
+ * Portal component that renders its children into a DOM node that exists
3617
+ * outside the DOM hierarchy of the parent component.
3618
+ *
3619
+ * This is SSR-safe and will only render on the client.
3620
+ */
3621
+ declare const Portal: ({ children, container }: PortalProps) => react.ReactPortal | null;
3621
3622
 
3622
3623
  /**
3623
3624
  * Type for class values accepted by clsx
@@ -4829,25 +4830,6 @@ declare const SuccessIcon: {
4829
4830
  displayName: string;
4830
4831
  };
4831
4832
 
4832
- interface TickIconProps extends IconProps {
4833
- }
4834
- /**
4835
- * Tick icon component - displays a tick icon.
4836
- *
4837
- * This icon uses `currentColor`, so it can be styled with Tailwind classes.
4838
- *
4839
- * @example
4840
- * ```tsx
4841
- * import { TickIcon } from '@scalably/ui';
4842
- *
4843
- * <TickIcon size={16} className="sui-text-primary" />
4844
- * ```
4845
- */
4846
- declare const TickIcon: {
4847
- (props: TickIconProps): react_jsx_runtime.JSX.Element;
4848
- displayName: string;
4849
- };
4850
-
4851
4833
  interface WarnIconProps extends IconProps {
4852
4834
  }
4853
4835
  /**
@@ -4986,6 +4968,25 @@ declare const CartIcon: {
4986
4968
  displayName: string;
4987
4969
  };
4988
4970
 
4971
+ interface DoorExitIconProps extends IconProps {
4972
+ }
4973
+ /**
4974
+ * Door exit icon component - displays an exit/leave symbol.
4975
+ *
4976
+ * This icon uses `currentColor`, so it can be styled with Tailwind classes.
4977
+ *
4978
+ * @example
4979
+ * ```tsx
4980
+ * import { DoorExitIcon } from '@scalably/ui';
4981
+ *
4982
+ * <DoorExitIcon size={16} className="sui-text-primary" />
4983
+ * ```
4984
+ */
4985
+ declare const DoorExitIcon: {
4986
+ (props: DoorExitIconProps): react_jsx_runtime.JSX.Element;
4987
+ displayName: string;
4988
+ };
4989
+
4989
4990
  interface EyeIconProps extends IconProps {
4990
4991
  }
4991
4992
  /**
@@ -5101,6 +5102,25 @@ declare const GridIcon: {
5101
5102
  displayName: string;
5102
5103
  };
5103
5104
 
5105
+ interface GripVerticalIconProps extends IconProps {
5106
+ }
5107
+ /**
5108
+ * Grip vertical icon component - displays a draggable handle.
5109
+ *
5110
+ * This icon uses `currentColor`, so it can be styled with Tailwind classes.
5111
+ *
5112
+ * @example
5113
+ * ```tsx
5114
+ * import { GripVerticalIcon } from '@scalably/ui';
5115
+ *
5116
+ * <GripVerticalIcon size={16} className="sui-text-primary" />
5117
+ * ```
5118
+ */
5119
+ declare const GripVerticalIcon: {
5120
+ (props: GripVerticalIconProps): react_jsx_runtime.JSX.Element;
5121
+ displayName: string;
5122
+ };
5123
+
5104
5124
  interface HelpCircleIconProps extends IconProps {
5105
5125
  }
5106
5126
  /**
@@ -5216,6 +5236,25 @@ declare const MinusIcon: {
5216
5236
  displayName: string;
5217
5237
  };
5218
5238
 
5239
+ interface MoreHorizontalIconProps extends IconProps {
5240
+ }
5241
+ /**
5242
+ * More horizontal icon component - displays an overflow menu indicator.
5243
+ *
5244
+ * This icon uses `currentColor`, so it can be styled with Tailwind classes.
5245
+ *
5246
+ * @example
5247
+ * ```tsx
5248
+ * import { MoreHorizontalIcon } from '@scalably/ui';
5249
+ *
5250
+ * <MoreHorizontalIcon size={16} className="sui-text-primary" />
5251
+ * ```
5252
+ */
5253
+ declare const MoreHorizontalIcon: {
5254
+ (props: MoreHorizontalIconProps): react_jsx_runtime.JSX.Element;
5255
+ displayName: string;
5256
+ };
5257
+
5219
5258
  interface MultipleSelectionIconProps extends IconProps {
5220
5259
  }
5221
5260
  /**
@@ -5256,6 +5295,44 @@ declare const PaletteIcon: {
5256
5295
  displayName: string;
5257
5296
  };
5258
5297
 
5298
+ interface PauseCircleIconProps extends IconProps {
5299
+ }
5300
+ /**
5301
+ * Pause circle icon component - displays a pause symbol inside a circle.
5302
+ *
5303
+ * This icon uses `currentColor`, so it can be styled with Tailwind classes.
5304
+ *
5305
+ * @example
5306
+ * ```tsx
5307
+ * import { PauseCircleIcon } from '@scalably/ui';
5308
+ *
5309
+ * <PauseCircleIcon size={16} className="sui-text-primary" />
5310
+ * ```
5311
+ */
5312
+ declare const PauseCircleIcon: {
5313
+ (props: PauseCircleIconProps): react_jsx_runtime.JSX.Element;
5314
+ displayName: string;
5315
+ };
5316
+
5317
+ interface PercentIconProps extends IconProps {
5318
+ }
5319
+ /**
5320
+ * Percent icon component - displays a percent symbol.
5321
+ *
5322
+ * This icon uses `currentColor`, so it can be styled with Tailwind classes.
5323
+ *
5324
+ * @example
5325
+ * ```tsx
5326
+ * import { PercentIcon } from '@scalably/ui';
5327
+ *
5328
+ * <PercentIcon size={16} className="sui-text-primary" />
5329
+ * ```
5330
+ */
5331
+ declare const PercentIcon: {
5332
+ (props: PercentIconProps): react_jsx_runtime.JSX.Element;
5333
+ displayName: string;
5334
+ };
5335
+
5259
5336
  interface PlayIconProps extends IconProps {
5260
5337
  }
5261
5338
  /**
@@ -5526,6 +5603,44 @@ declare const UserIcon: {
5526
5603
  displayName: string;
5527
5604
  };
5528
5605
 
5606
+ interface UserJoinIconProps extends IconProps {
5607
+ }
5608
+ /**
5609
+ * User join icon component - displays a user with an add/join indicator.
5610
+ *
5611
+ * This icon uses `currentColor`, so it can be styled with Tailwind classes.
5612
+ *
5613
+ * @example
5614
+ * ```tsx
5615
+ * import { UserJoinIcon } from '@scalably/ui';
5616
+ *
5617
+ * <UserJoinIcon size={16} className="sui-text-primary" />
5618
+ * ```
5619
+ */
5620
+ declare const UserJoinIcon: {
5621
+ (props: UserJoinIconProps): react_jsx_runtime.JSX.Element;
5622
+ displayName: string;
5623
+ };
5624
+
5625
+ interface UserLeaveIconProps extends IconProps {
5626
+ }
5627
+ /**
5628
+ * User leave icon component - displays a user with a leave/exit indicator.
5629
+ *
5630
+ * This icon uses `currentColor`, so it can be styled with Tailwind classes.
5631
+ *
5632
+ * @example
5633
+ * ```tsx
5634
+ * import { UserLeaveIcon } from '@scalably/ui';
5635
+ *
5636
+ * <UserLeaveIcon size={16} className="sui-text-primary" />
5637
+ * ```
5638
+ */
5639
+ declare const UserLeaveIcon: {
5640
+ (props: UserLeaveIconProps): react_jsx_runtime.JSX.Element;
5641
+ displayName: string;
5642
+ };
5643
+
5529
5644
  interface UsersFilledIconProps extends IconProps {
5530
5645
  }
5531
5646
  /**
@@ -5564,6 +5679,25 @@ declare const UsersIcon: {
5564
5679
  displayName: string;
5565
5680
  };
5566
5681
 
5682
+ interface UsersPlusIconProps extends IconProps {
5683
+ }
5684
+ /**
5685
+ * Users plus icon component - displays a group with an add user action.
5686
+ *
5687
+ * This icon uses `currentColor`, so it can be styled with Tailwind classes.
5688
+ *
5689
+ * @example
5690
+ * ```tsx
5691
+ * import { UsersPlusIcon } from '@scalably/ui';
5692
+ *
5693
+ * <UsersPlusIcon size={16} className="sui-text-primary" />
5694
+ * ```
5695
+ */
5696
+ declare const UsersPlusIcon: {
5697
+ (props: UsersPlusIconProps): react_jsx_runtime.JSX.Element;
5698
+ displayName: string;
5699
+ };
5700
+
5567
5701
  interface WalletFilledIconProps extends IconProps {
5568
5702
  }
5569
5703
  /**
@@ -5603,4 +5737,4 @@ declare const WalletIcon: {
5603
5737
  displayName: string;
5604
5738
  };
5605
5739
 
5606
- 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, TickIcon, type TickIconProps, 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, UsersFilledIcon, type UsersFilledIconProps, UsersIcon, type UsersIconProps, 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 };
5740
+ 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;
@@ -3616,8 +3599,26 @@ interface MultiLevelDropdownProps {
3616
3599
  onEditClick?: (item: DropdownItem) => void;
3617
3600
  onDeleteClick?: (item: DropdownItem) => void;
3618
3601
  defaultExpanded?: boolean;
3602
+ activeMenuItem?: string;
3603
+ }
3604
+ declare function MultiLevelDropdown({ items: initialItems, draggableLevels, onChange, onAddClick, addLabels, containerClassname, itemClassname, onItemClick, onEditClick, onDeleteClick, defaultExpanded, activeMenuItem, }: MultiLevelDropdownProps): react_jsx_runtime.JSX.Element;
3605
+
3606
+ interface PortalProps {
3607
+ /** The content to be rendered in the portal */
3608
+ children: React.ReactNode;
3609
+ /**
3610
+ * The container element to render the portal into.
3611
+ * @default document.body
3612
+ */
3613
+ container?: HTMLElement | null;
3619
3614
  }
3620
- declare function MultiLevelDropdown({ items: initialItems, draggableLevels, onChange, onAddClick, addLabels, containerClassname, itemClassname, onItemClick, onEditClick, onDeleteClick, defaultExpanded, }: MultiLevelDropdownProps): react_jsx_runtime.JSX.Element;
3615
+ /**
3616
+ * Portal component that renders its children into a DOM node that exists
3617
+ * outside the DOM hierarchy of the parent component.
3618
+ *
3619
+ * This is SSR-safe and will only render on the client.
3620
+ */
3621
+ declare const Portal: ({ children, container }: PortalProps) => react.ReactPortal | null;
3621
3622
 
3622
3623
  /**
3623
3624
  * Type for class values accepted by clsx
@@ -4829,25 +4830,6 @@ declare const SuccessIcon: {
4829
4830
  displayName: string;
4830
4831
  };
4831
4832
 
4832
- interface TickIconProps extends IconProps {
4833
- }
4834
- /**
4835
- * Tick icon component - displays a tick icon.
4836
- *
4837
- * This icon uses `currentColor`, so it can be styled with Tailwind classes.
4838
- *
4839
- * @example
4840
- * ```tsx
4841
- * import { TickIcon } from '@scalably/ui';
4842
- *
4843
- * <TickIcon size={16} className="sui-text-primary" />
4844
- * ```
4845
- */
4846
- declare const TickIcon: {
4847
- (props: TickIconProps): react_jsx_runtime.JSX.Element;
4848
- displayName: string;
4849
- };
4850
-
4851
4833
  interface WarnIconProps extends IconProps {
4852
4834
  }
4853
4835
  /**
@@ -4986,6 +4968,25 @@ declare const CartIcon: {
4986
4968
  displayName: string;
4987
4969
  };
4988
4970
 
4971
+ interface DoorExitIconProps extends IconProps {
4972
+ }
4973
+ /**
4974
+ * Door exit icon component - displays an exit/leave symbol.
4975
+ *
4976
+ * This icon uses `currentColor`, so it can be styled with Tailwind classes.
4977
+ *
4978
+ * @example
4979
+ * ```tsx
4980
+ * import { DoorExitIcon } from '@scalably/ui';
4981
+ *
4982
+ * <DoorExitIcon size={16} className="sui-text-primary" />
4983
+ * ```
4984
+ */
4985
+ declare const DoorExitIcon: {
4986
+ (props: DoorExitIconProps): react_jsx_runtime.JSX.Element;
4987
+ displayName: string;
4988
+ };
4989
+
4989
4990
  interface EyeIconProps extends IconProps {
4990
4991
  }
4991
4992
  /**
@@ -5101,6 +5102,25 @@ declare const GridIcon: {
5101
5102
  displayName: string;
5102
5103
  };
5103
5104
 
5105
+ interface GripVerticalIconProps extends IconProps {
5106
+ }
5107
+ /**
5108
+ * Grip vertical icon component - displays a draggable handle.
5109
+ *
5110
+ * This icon uses `currentColor`, so it can be styled with Tailwind classes.
5111
+ *
5112
+ * @example
5113
+ * ```tsx
5114
+ * import { GripVerticalIcon } from '@scalably/ui';
5115
+ *
5116
+ * <GripVerticalIcon size={16} className="sui-text-primary" />
5117
+ * ```
5118
+ */
5119
+ declare const GripVerticalIcon: {
5120
+ (props: GripVerticalIconProps): react_jsx_runtime.JSX.Element;
5121
+ displayName: string;
5122
+ };
5123
+
5104
5124
  interface HelpCircleIconProps extends IconProps {
5105
5125
  }
5106
5126
  /**
@@ -5216,6 +5236,25 @@ declare const MinusIcon: {
5216
5236
  displayName: string;
5217
5237
  };
5218
5238
 
5239
+ interface MoreHorizontalIconProps extends IconProps {
5240
+ }
5241
+ /**
5242
+ * More horizontal icon component - displays an overflow menu indicator.
5243
+ *
5244
+ * This icon uses `currentColor`, so it can be styled with Tailwind classes.
5245
+ *
5246
+ * @example
5247
+ * ```tsx
5248
+ * import { MoreHorizontalIcon } from '@scalably/ui';
5249
+ *
5250
+ * <MoreHorizontalIcon size={16} className="sui-text-primary" />
5251
+ * ```
5252
+ */
5253
+ declare const MoreHorizontalIcon: {
5254
+ (props: MoreHorizontalIconProps): react_jsx_runtime.JSX.Element;
5255
+ displayName: string;
5256
+ };
5257
+
5219
5258
  interface MultipleSelectionIconProps extends IconProps {
5220
5259
  }
5221
5260
  /**
@@ -5256,6 +5295,44 @@ declare const PaletteIcon: {
5256
5295
  displayName: string;
5257
5296
  };
5258
5297
 
5298
+ interface PauseCircleIconProps extends IconProps {
5299
+ }
5300
+ /**
5301
+ * Pause circle icon component - displays a pause symbol inside a circle.
5302
+ *
5303
+ * This icon uses `currentColor`, so it can be styled with Tailwind classes.
5304
+ *
5305
+ * @example
5306
+ * ```tsx
5307
+ * import { PauseCircleIcon } from '@scalably/ui';
5308
+ *
5309
+ * <PauseCircleIcon size={16} className="sui-text-primary" />
5310
+ * ```
5311
+ */
5312
+ declare const PauseCircleIcon: {
5313
+ (props: PauseCircleIconProps): react_jsx_runtime.JSX.Element;
5314
+ displayName: string;
5315
+ };
5316
+
5317
+ interface PercentIconProps extends IconProps {
5318
+ }
5319
+ /**
5320
+ * Percent icon component - displays a percent symbol.
5321
+ *
5322
+ * This icon uses `currentColor`, so it can be styled with Tailwind classes.
5323
+ *
5324
+ * @example
5325
+ * ```tsx
5326
+ * import { PercentIcon } from '@scalably/ui';
5327
+ *
5328
+ * <PercentIcon size={16} className="sui-text-primary" />
5329
+ * ```
5330
+ */
5331
+ declare const PercentIcon: {
5332
+ (props: PercentIconProps): react_jsx_runtime.JSX.Element;
5333
+ displayName: string;
5334
+ };
5335
+
5259
5336
  interface PlayIconProps extends IconProps {
5260
5337
  }
5261
5338
  /**
@@ -5526,6 +5603,44 @@ declare const UserIcon: {
5526
5603
  displayName: string;
5527
5604
  };
5528
5605
 
5606
+ interface UserJoinIconProps extends IconProps {
5607
+ }
5608
+ /**
5609
+ * User join icon component - displays a user with an add/join indicator.
5610
+ *
5611
+ * This icon uses `currentColor`, so it can be styled with Tailwind classes.
5612
+ *
5613
+ * @example
5614
+ * ```tsx
5615
+ * import { UserJoinIcon } from '@scalably/ui';
5616
+ *
5617
+ * <UserJoinIcon size={16} className="sui-text-primary" />
5618
+ * ```
5619
+ */
5620
+ declare const UserJoinIcon: {
5621
+ (props: UserJoinIconProps): react_jsx_runtime.JSX.Element;
5622
+ displayName: string;
5623
+ };
5624
+
5625
+ interface UserLeaveIconProps extends IconProps {
5626
+ }
5627
+ /**
5628
+ * User leave icon component - displays a user with a leave/exit indicator.
5629
+ *
5630
+ * This icon uses `currentColor`, so it can be styled with Tailwind classes.
5631
+ *
5632
+ * @example
5633
+ * ```tsx
5634
+ * import { UserLeaveIcon } from '@scalably/ui';
5635
+ *
5636
+ * <UserLeaveIcon size={16} className="sui-text-primary" />
5637
+ * ```
5638
+ */
5639
+ declare const UserLeaveIcon: {
5640
+ (props: UserLeaveIconProps): react_jsx_runtime.JSX.Element;
5641
+ displayName: string;
5642
+ };
5643
+
5529
5644
  interface UsersFilledIconProps extends IconProps {
5530
5645
  }
5531
5646
  /**
@@ -5564,6 +5679,25 @@ declare const UsersIcon: {
5564
5679
  displayName: string;
5565
5680
  };
5566
5681
 
5682
+ interface UsersPlusIconProps extends IconProps {
5683
+ }
5684
+ /**
5685
+ * Users plus icon component - displays a group with an add user action.
5686
+ *
5687
+ * This icon uses `currentColor`, so it can be styled with Tailwind classes.
5688
+ *
5689
+ * @example
5690
+ * ```tsx
5691
+ * import { UsersPlusIcon } from '@scalably/ui';
5692
+ *
5693
+ * <UsersPlusIcon size={16} className="sui-text-primary" />
5694
+ * ```
5695
+ */
5696
+ declare const UsersPlusIcon: {
5697
+ (props: UsersPlusIconProps): react_jsx_runtime.JSX.Element;
5698
+ displayName: string;
5699
+ };
5700
+
5567
5701
  interface WalletFilledIconProps extends IconProps {
5568
5702
  }
5569
5703
  /**
@@ -5603,4 +5737,4 @@ declare const WalletIcon: {
5603
5737
  displayName: string;
5604
5738
  };
5605
5739
 
5606
- 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, TickIcon, type TickIconProps, 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, UsersFilledIcon, type UsersFilledIconProps, UsersIcon, type UsersIconProps, 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 };
5740
+ 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 };