@scalably/ui 0.16.7 → 0.16.8
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 +167 -1
- package/dist/index.d.ts +167 -1
- package/dist/index.esm.js +16 -16
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +16 -16
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -4736,6 +4736,82 @@ declare const RSSIcon: {
|
|
|
4736
4736
|
displayName: string;
|
|
4737
4737
|
};
|
|
4738
4738
|
|
|
4739
|
+
interface ArrowDownIconProps extends IconProps {
|
|
4740
|
+
}
|
|
4741
|
+
/**
|
|
4742
|
+
* ArrowDown icon component - displays a down arrow icon.
|
|
4743
|
+
*
|
|
4744
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
4745
|
+
*
|
|
4746
|
+
* @example
|
|
4747
|
+
* ```tsx
|
|
4748
|
+
* import { ArrowDownIcon } from '@scalably/ui';
|
|
4749
|
+
*
|
|
4750
|
+
* <ArrowDownIcon size={24} className="sui-text-primary" />
|
|
4751
|
+
* ```
|
|
4752
|
+
*/
|
|
4753
|
+
declare const ArrowDownIcon: {
|
|
4754
|
+
(props: ArrowDownIconProps): react_jsx_runtime.JSX.Element;
|
|
4755
|
+
displayName: string;
|
|
4756
|
+
};
|
|
4757
|
+
|
|
4758
|
+
interface ArrowLeftIconProps extends IconProps {
|
|
4759
|
+
}
|
|
4760
|
+
/**
|
|
4761
|
+
* ArrowLeft icon component - displays a left arrow icon.
|
|
4762
|
+
*
|
|
4763
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
4764
|
+
*
|
|
4765
|
+
* @example
|
|
4766
|
+
* ```tsx
|
|
4767
|
+
* import { ArrowLeftIcon } from '@scalably/ui';
|
|
4768
|
+
*
|
|
4769
|
+
* <ArrowLeftIcon size={24} className="sui-text-primary" />
|
|
4770
|
+
* ```
|
|
4771
|
+
*/
|
|
4772
|
+
declare const ArrowLeftIcon: {
|
|
4773
|
+
(props: ArrowLeftIconProps): react_jsx_runtime.JSX.Element;
|
|
4774
|
+
displayName: string;
|
|
4775
|
+
};
|
|
4776
|
+
|
|
4777
|
+
interface ArrowRightIconProps extends IconProps {
|
|
4778
|
+
}
|
|
4779
|
+
/**
|
|
4780
|
+
* ArrowRight icon component - displays a right arrow icon.
|
|
4781
|
+
*
|
|
4782
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
4783
|
+
*
|
|
4784
|
+
* @example
|
|
4785
|
+
* ```tsx
|
|
4786
|
+
* import { ArrowRightIcon } from '@scalably/ui';
|
|
4787
|
+
*
|
|
4788
|
+
* <ArrowRightIcon size={24} className="sui-text-primary" />
|
|
4789
|
+
* ```
|
|
4790
|
+
*/
|
|
4791
|
+
declare const ArrowRightIcon: {
|
|
4792
|
+
(props: ArrowRightIconProps): react_jsx_runtime.JSX.Element;
|
|
4793
|
+
displayName: string;
|
|
4794
|
+
};
|
|
4795
|
+
|
|
4796
|
+
interface ArrowUpIconProps extends IconProps {
|
|
4797
|
+
}
|
|
4798
|
+
/**
|
|
4799
|
+
* ArrowUp icon component - displays an up arrow icon.
|
|
4800
|
+
*
|
|
4801
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
4802
|
+
*
|
|
4803
|
+
* @example
|
|
4804
|
+
* ```tsx
|
|
4805
|
+
* import { ArrowUpIcon } from '@scalably/ui';
|
|
4806
|
+
*
|
|
4807
|
+
* <ArrowUpIcon size={24} className="sui-text-primary" />
|
|
4808
|
+
* ```
|
|
4809
|
+
*/
|
|
4810
|
+
declare const ArrowUpIcon: {
|
|
4811
|
+
(props: ArrowUpIconProps): react_jsx_runtime.JSX.Element;
|
|
4812
|
+
displayName: string;
|
|
4813
|
+
};
|
|
4814
|
+
|
|
4739
4815
|
interface DropdownIconProps extends IconProps {
|
|
4740
4816
|
}
|
|
4741
4817
|
/**
|
|
@@ -5428,6 +5504,26 @@ declare const HomeIcon: {
|
|
|
5428
5504
|
displayName: string;
|
|
5429
5505
|
};
|
|
5430
5506
|
|
|
5507
|
+
interface IncognitoIconProps extends IconProps {
|
|
5508
|
+
}
|
|
5509
|
+
/**
|
|
5510
|
+
* Incognito icon component - displays a fedora hat and glasses for private / incognito / anonymous browsing mode.
|
|
5511
|
+
* Also known as `SpyIcon` or `AnonymousIcon`.
|
|
5512
|
+
*
|
|
5513
|
+
* This icon uses `fill="currentColor"`, so it can be styled with Tailwind classes (e.g. `sui-text-primary`).
|
|
5514
|
+
*
|
|
5515
|
+
* @example
|
|
5516
|
+
* ```tsx
|
|
5517
|
+
* import { IncognitoIcon } from '@scalably/ui';
|
|
5518
|
+
*
|
|
5519
|
+
* <IncognitoIcon size={24} className="sui-text-neutral-800" />
|
|
5520
|
+
* ```
|
|
5521
|
+
*/
|
|
5522
|
+
declare const IncognitoIcon: {
|
|
5523
|
+
(props: IncognitoIconProps): react_jsx_runtime.JSX.Element;
|
|
5524
|
+
displayName: string;
|
|
5525
|
+
};
|
|
5526
|
+
|
|
5431
5527
|
interface InfoCircleIconProps extends IconProps {
|
|
5432
5528
|
}
|
|
5433
5529
|
/**
|
|
@@ -5870,6 +5966,52 @@ declare const StoreIcon: {
|
|
|
5870
5966
|
displayName: string;
|
|
5871
5967
|
};
|
|
5872
5968
|
|
|
5969
|
+
interface TrendingDownIconProps extends IconProps {
|
|
5970
|
+
}
|
|
5971
|
+
/**
|
|
5972
|
+
* TrendingDown icon component - displays a downward trend / decline chart arrow.
|
|
5973
|
+
*
|
|
5974
|
+
* Defaults to `sui-text-error` (#EA3540), and can be customized with any Tailwind text color class.
|
|
5975
|
+
*
|
|
5976
|
+
* @example
|
|
5977
|
+
* ```tsx
|
|
5978
|
+
* import { TrendingDownIcon } from '@scalably/ui';
|
|
5979
|
+
*
|
|
5980
|
+
* // Default error red (#EA3540)
|
|
5981
|
+
* <TrendingDownIcon size={24} />
|
|
5982
|
+
*
|
|
5983
|
+
* // Custom color override
|
|
5984
|
+
* <TrendingDownIcon size={24} className="sui-text-primary" />
|
|
5985
|
+
* ```
|
|
5986
|
+
*/
|
|
5987
|
+
declare const TrendingDownIcon: {
|
|
5988
|
+
({ className, ...props }: TrendingDownIconProps): react_jsx_runtime.JSX.Element;
|
|
5989
|
+
displayName: string;
|
|
5990
|
+
};
|
|
5991
|
+
|
|
5992
|
+
interface TrendingUpIconProps extends IconProps {
|
|
5993
|
+
}
|
|
5994
|
+
/**
|
|
5995
|
+
* TrendingUp icon component - displays an upward trend / growth chart arrow.
|
|
5996
|
+
*
|
|
5997
|
+
* Defaults to `sui-text-success` (#22BC4D), and can be customized with any Tailwind text color class.
|
|
5998
|
+
*
|
|
5999
|
+
* @example
|
|
6000
|
+
* ```tsx
|
|
6001
|
+
* import { TrendingUpIcon } from '@scalably/ui';
|
|
6002
|
+
*
|
|
6003
|
+
* // Default success green (#22BC4D)
|
|
6004
|
+
* <TrendingUpIcon size={24} />
|
|
6005
|
+
*
|
|
6006
|
+
* // Custom color override
|
|
6007
|
+
* <TrendingUpIcon size={24} className="sui-text-primary" />
|
|
6008
|
+
* ```
|
|
6009
|
+
*/
|
|
6010
|
+
declare const TrendingUpIcon: {
|
|
6011
|
+
({ className, ...props }: TrendingUpIconProps): react_jsx_runtime.JSX.Element;
|
|
6012
|
+
displayName: string;
|
|
6013
|
+
};
|
|
6014
|
+
|
|
5873
6015
|
interface UserFilledIconProps extends IconProps {
|
|
5874
6016
|
}
|
|
5875
6017
|
/**
|
|
@@ -6004,6 +6146,30 @@ declare const UsersPlusIcon: {
|
|
|
6004
6146
|
displayName: string;
|
|
6005
6147
|
};
|
|
6006
6148
|
|
|
6149
|
+
interface VerifiedIconProps extends IconProps {
|
|
6150
|
+
}
|
|
6151
|
+
/**
|
|
6152
|
+
* Verified icon component - displays a verified checkmark badge (similar to Meta / Instagram / X blue tick).
|
|
6153
|
+
* Also known as `BadgeCheckIcon` or `CheckBadgeIcon`.
|
|
6154
|
+
*
|
|
6155
|
+
* Defaults to `sui-text-info` (#2772F0), and can be customized with any Tailwind text color class (e.g. `sui-text-[#E7A100]` for gold tick).
|
|
6156
|
+
*
|
|
6157
|
+
* @example
|
|
6158
|
+
* ```tsx
|
|
6159
|
+
* import { VerifiedIcon } from '@scalably/ui';
|
|
6160
|
+
*
|
|
6161
|
+
* // Default blue color (#2772F0 / sui-text-info)
|
|
6162
|
+
* <VerifiedIcon size={24} />
|
|
6163
|
+
*
|
|
6164
|
+
* // Gold tick override
|
|
6165
|
+
* <VerifiedIcon size={24} className="sui-text-[#E7A100]" />
|
|
6166
|
+
* ```
|
|
6167
|
+
*/
|
|
6168
|
+
declare const VerifiedIcon: {
|
|
6169
|
+
({ className, ...props }: VerifiedIconProps): react_jsx_runtime.JSX.Element;
|
|
6170
|
+
displayName: string;
|
|
6171
|
+
};
|
|
6172
|
+
|
|
6007
6173
|
interface WalletFilledIconProps extends IconProps {
|
|
6008
6174
|
}
|
|
6009
6175
|
/**
|
|
@@ -6062,4 +6228,4 @@ declare const WebsiteIcon: {
|
|
|
6062
6228
|
displayName: string;
|
|
6063
6229
|
};
|
|
6064
6230
|
|
|
6065
|
-
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, BookOpenIcon, type BookOpenIconProps, BottomNavigation, BottomNavigationCloseIcon, type BottomNavigationCloseIconProps, BottomNavigationExpandIcon, type BottomNavigationExpandIconProps, BottomNavigationItem, type BottomNavigationItemProps, type BottomNavigationProps, BottomNavigationV2, type BottomNavigationV2MenuItem, type BottomNavigationV2Props, type BottomNavigationV2TabItem, Building2Icon, type Building2IconProps, Button, type ButtonProps, type ButtonSize, type ButtonVariant, CalendarIcon, type CalendarIconProps, CalendarStarIcon, type CalendarStarIconProps, 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, DatabaseIcon, type DatabaseIconProps, 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, DragableDotsIcon, type DragableDotsIconProps, DragableList, type DragableListItemType, type DragableListProps, 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, GlobeIcon, type GlobeIconProps, 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, LarkIcon, type LarkIconProps, LayoutGridIcon, type LayoutGridIconProps, LikeFilledIcon, type LikeFilledIconProps, LikeIcon, type LikeIconProps, 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, NewspaperFilledIcon, type NewspaperFilledIconProps, NewspaperIcon, type NewspaperIconProps, 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, RSSIcon, type RSSIconProps, 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, ScalablyIcon, type ScalablyIconProps, 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, WebsiteIcon, type WebsiteIconProps, 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 };
|
|
6231
|
+
export { AlignCenterIcon, type AlignCenterIconProps, AlignLeftIcon, type AlignLeftIconProps, AlignRightIcon, type AlignRightIconProps, AppLauncherIcon, type AppLauncherIconProps, AppLogo, ArrowDownIcon, type ArrowDownIconProps, ArrowLeftIcon, type ArrowLeftIconProps, ArrowRightIcon, type ArrowRightIconProps, ArrowUpIcon, type ArrowUpIconProps, 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, BookOpenIcon, type BookOpenIconProps, BottomNavigation, BottomNavigationCloseIcon, type BottomNavigationCloseIconProps, BottomNavigationExpandIcon, type BottomNavigationExpandIconProps, BottomNavigationItem, type BottomNavigationItemProps, type BottomNavigationProps, BottomNavigationV2, type BottomNavigationV2MenuItem, type BottomNavigationV2Props, type BottomNavigationV2TabItem, Building2Icon, type Building2IconProps, Button, type ButtonProps, type ButtonSize, type ButtonVariant, CalendarIcon, type CalendarIconProps, CalendarStarIcon, type CalendarStarIconProps, 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, DatabaseIcon, type DatabaseIconProps, 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, DragableDotsIcon, type DragableDotsIconProps, DragableList, type DragableListItemType, type DragableListProps, 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, GlobeIcon, type GlobeIconProps, 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, IncognitoIcon, type IncognitoIconProps, 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, LarkIcon, type LarkIconProps, LayoutGridIcon, type LayoutGridIconProps, LikeFilledIcon, type LikeFilledIconProps, LikeIcon, type LikeIconProps, 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, NewspaperFilledIcon, type NewspaperFilledIconProps, NewspaperIcon, type NewspaperIconProps, 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, RSSIcon, type RSSIconProps, 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, ScalablyIcon, type ScalablyIconProps, 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, TrendingDownIcon, type TrendingDownIconProps, TrendingUpIcon, type TrendingUpIconProps, 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, VerifiedIcon, type VerifiedIconProps, VideoIcon, type VideoIconProps, VideoUploadIcon, type VideoUploadIconProps, type ViewMode, ViewToggle, type ViewToggleProps, WalletFilledIcon, type WalletFilledIconProps, WalletIcon, type WalletIconProps, WarnIcon, type WarnIconProps, WebsiteIcon, type WebsiteIconProps, 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
|
@@ -4736,6 +4736,82 @@ declare const RSSIcon: {
|
|
|
4736
4736
|
displayName: string;
|
|
4737
4737
|
};
|
|
4738
4738
|
|
|
4739
|
+
interface ArrowDownIconProps extends IconProps {
|
|
4740
|
+
}
|
|
4741
|
+
/**
|
|
4742
|
+
* ArrowDown icon component - displays a down arrow icon.
|
|
4743
|
+
*
|
|
4744
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
4745
|
+
*
|
|
4746
|
+
* @example
|
|
4747
|
+
* ```tsx
|
|
4748
|
+
* import { ArrowDownIcon } from '@scalably/ui';
|
|
4749
|
+
*
|
|
4750
|
+
* <ArrowDownIcon size={24} className="sui-text-primary" />
|
|
4751
|
+
* ```
|
|
4752
|
+
*/
|
|
4753
|
+
declare const ArrowDownIcon: {
|
|
4754
|
+
(props: ArrowDownIconProps): react_jsx_runtime.JSX.Element;
|
|
4755
|
+
displayName: string;
|
|
4756
|
+
};
|
|
4757
|
+
|
|
4758
|
+
interface ArrowLeftIconProps extends IconProps {
|
|
4759
|
+
}
|
|
4760
|
+
/**
|
|
4761
|
+
* ArrowLeft icon component - displays a left arrow icon.
|
|
4762
|
+
*
|
|
4763
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
4764
|
+
*
|
|
4765
|
+
* @example
|
|
4766
|
+
* ```tsx
|
|
4767
|
+
* import { ArrowLeftIcon } from '@scalably/ui';
|
|
4768
|
+
*
|
|
4769
|
+
* <ArrowLeftIcon size={24} className="sui-text-primary" />
|
|
4770
|
+
* ```
|
|
4771
|
+
*/
|
|
4772
|
+
declare const ArrowLeftIcon: {
|
|
4773
|
+
(props: ArrowLeftIconProps): react_jsx_runtime.JSX.Element;
|
|
4774
|
+
displayName: string;
|
|
4775
|
+
};
|
|
4776
|
+
|
|
4777
|
+
interface ArrowRightIconProps extends IconProps {
|
|
4778
|
+
}
|
|
4779
|
+
/**
|
|
4780
|
+
* ArrowRight icon component - displays a right arrow icon.
|
|
4781
|
+
*
|
|
4782
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
4783
|
+
*
|
|
4784
|
+
* @example
|
|
4785
|
+
* ```tsx
|
|
4786
|
+
* import { ArrowRightIcon } from '@scalably/ui';
|
|
4787
|
+
*
|
|
4788
|
+
* <ArrowRightIcon size={24} className="sui-text-primary" />
|
|
4789
|
+
* ```
|
|
4790
|
+
*/
|
|
4791
|
+
declare const ArrowRightIcon: {
|
|
4792
|
+
(props: ArrowRightIconProps): react_jsx_runtime.JSX.Element;
|
|
4793
|
+
displayName: string;
|
|
4794
|
+
};
|
|
4795
|
+
|
|
4796
|
+
interface ArrowUpIconProps extends IconProps {
|
|
4797
|
+
}
|
|
4798
|
+
/**
|
|
4799
|
+
* ArrowUp icon component - displays an up arrow icon.
|
|
4800
|
+
*
|
|
4801
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
4802
|
+
*
|
|
4803
|
+
* @example
|
|
4804
|
+
* ```tsx
|
|
4805
|
+
* import { ArrowUpIcon } from '@scalably/ui';
|
|
4806
|
+
*
|
|
4807
|
+
* <ArrowUpIcon size={24} className="sui-text-primary" />
|
|
4808
|
+
* ```
|
|
4809
|
+
*/
|
|
4810
|
+
declare const ArrowUpIcon: {
|
|
4811
|
+
(props: ArrowUpIconProps): react_jsx_runtime.JSX.Element;
|
|
4812
|
+
displayName: string;
|
|
4813
|
+
};
|
|
4814
|
+
|
|
4739
4815
|
interface DropdownIconProps extends IconProps {
|
|
4740
4816
|
}
|
|
4741
4817
|
/**
|
|
@@ -5428,6 +5504,26 @@ declare const HomeIcon: {
|
|
|
5428
5504
|
displayName: string;
|
|
5429
5505
|
};
|
|
5430
5506
|
|
|
5507
|
+
interface IncognitoIconProps extends IconProps {
|
|
5508
|
+
}
|
|
5509
|
+
/**
|
|
5510
|
+
* Incognito icon component - displays a fedora hat and glasses for private / incognito / anonymous browsing mode.
|
|
5511
|
+
* Also known as `SpyIcon` or `AnonymousIcon`.
|
|
5512
|
+
*
|
|
5513
|
+
* This icon uses `fill="currentColor"`, so it can be styled with Tailwind classes (e.g. `sui-text-primary`).
|
|
5514
|
+
*
|
|
5515
|
+
* @example
|
|
5516
|
+
* ```tsx
|
|
5517
|
+
* import { IncognitoIcon } from '@scalably/ui';
|
|
5518
|
+
*
|
|
5519
|
+
* <IncognitoIcon size={24} className="sui-text-neutral-800" />
|
|
5520
|
+
* ```
|
|
5521
|
+
*/
|
|
5522
|
+
declare const IncognitoIcon: {
|
|
5523
|
+
(props: IncognitoIconProps): react_jsx_runtime.JSX.Element;
|
|
5524
|
+
displayName: string;
|
|
5525
|
+
};
|
|
5526
|
+
|
|
5431
5527
|
interface InfoCircleIconProps extends IconProps {
|
|
5432
5528
|
}
|
|
5433
5529
|
/**
|
|
@@ -5870,6 +5966,52 @@ declare const StoreIcon: {
|
|
|
5870
5966
|
displayName: string;
|
|
5871
5967
|
};
|
|
5872
5968
|
|
|
5969
|
+
interface TrendingDownIconProps extends IconProps {
|
|
5970
|
+
}
|
|
5971
|
+
/**
|
|
5972
|
+
* TrendingDown icon component - displays a downward trend / decline chart arrow.
|
|
5973
|
+
*
|
|
5974
|
+
* Defaults to `sui-text-error` (#EA3540), and can be customized with any Tailwind text color class.
|
|
5975
|
+
*
|
|
5976
|
+
* @example
|
|
5977
|
+
* ```tsx
|
|
5978
|
+
* import { TrendingDownIcon } from '@scalably/ui';
|
|
5979
|
+
*
|
|
5980
|
+
* // Default error red (#EA3540)
|
|
5981
|
+
* <TrendingDownIcon size={24} />
|
|
5982
|
+
*
|
|
5983
|
+
* // Custom color override
|
|
5984
|
+
* <TrendingDownIcon size={24} className="sui-text-primary" />
|
|
5985
|
+
* ```
|
|
5986
|
+
*/
|
|
5987
|
+
declare const TrendingDownIcon: {
|
|
5988
|
+
({ className, ...props }: TrendingDownIconProps): react_jsx_runtime.JSX.Element;
|
|
5989
|
+
displayName: string;
|
|
5990
|
+
};
|
|
5991
|
+
|
|
5992
|
+
interface TrendingUpIconProps extends IconProps {
|
|
5993
|
+
}
|
|
5994
|
+
/**
|
|
5995
|
+
* TrendingUp icon component - displays an upward trend / growth chart arrow.
|
|
5996
|
+
*
|
|
5997
|
+
* Defaults to `sui-text-success` (#22BC4D), and can be customized with any Tailwind text color class.
|
|
5998
|
+
*
|
|
5999
|
+
* @example
|
|
6000
|
+
* ```tsx
|
|
6001
|
+
* import { TrendingUpIcon } from '@scalably/ui';
|
|
6002
|
+
*
|
|
6003
|
+
* // Default success green (#22BC4D)
|
|
6004
|
+
* <TrendingUpIcon size={24} />
|
|
6005
|
+
*
|
|
6006
|
+
* // Custom color override
|
|
6007
|
+
* <TrendingUpIcon size={24} className="sui-text-primary" />
|
|
6008
|
+
* ```
|
|
6009
|
+
*/
|
|
6010
|
+
declare const TrendingUpIcon: {
|
|
6011
|
+
({ className, ...props }: TrendingUpIconProps): react_jsx_runtime.JSX.Element;
|
|
6012
|
+
displayName: string;
|
|
6013
|
+
};
|
|
6014
|
+
|
|
5873
6015
|
interface UserFilledIconProps extends IconProps {
|
|
5874
6016
|
}
|
|
5875
6017
|
/**
|
|
@@ -6004,6 +6146,30 @@ declare const UsersPlusIcon: {
|
|
|
6004
6146
|
displayName: string;
|
|
6005
6147
|
};
|
|
6006
6148
|
|
|
6149
|
+
interface VerifiedIconProps extends IconProps {
|
|
6150
|
+
}
|
|
6151
|
+
/**
|
|
6152
|
+
* Verified icon component - displays a verified checkmark badge (similar to Meta / Instagram / X blue tick).
|
|
6153
|
+
* Also known as `BadgeCheckIcon` or `CheckBadgeIcon`.
|
|
6154
|
+
*
|
|
6155
|
+
* Defaults to `sui-text-info` (#2772F0), and can be customized with any Tailwind text color class (e.g. `sui-text-[#E7A100]` for gold tick).
|
|
6156
|
+
*
|
|
6157
|
+
* @example
|
|
6158
|
+
* ```tsx
|
|
6159
|
+
* import { VerifiedIcon } from '@scalably/ui';
|
|
6160
|
+
*
|
|
6161
|
+
* // Default blue color (#2772F0 / sui-text-info)
|
|
6162
|
+
* <VerifiedIcon size={24} />
|
|
6163
|
+
*
|
|
6164
|
+
* // Gold tick override
|
|
6165
|
+
* <VerifiedIcon size={24} className="sui-text-[#E7A100]" />
|
|
6166
|
+
* ```
|
|
6167
|
+
*/
|
|
6168
|
+
declare const VerifiedIcon: {
|
|
6169
|
+
({ className, ...props }: VerifiedIconProps): react_jsx_runtime.JSX.Element;
|
|
6170
|
+
displayName: string;
|
|
6171
|
+
};
|
|
6172
|
+
|
|
6007
6173
|
interface WalletFilledIconProps extends IconProps {
|
|
6008
6174
|
}
|
|
6009
6175
|
/**
|
|
@@ -6062,4 +6228,4 @@ declare const WebsiteIcon: {
|
|
|
6062
6228
|
displayName: string;
|
|
6063
6229
|
};
|
|
6064
6230
|
|
|
6065
|
-
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, BookOpenIcon, type BookOpenIconProps, BottomNavigation, BottomNavigationCloseIcon, type BottomNavigationCloseIconProps, BottomNavigationExpandIcon, type BottomNavigationExpandIconProps, BottomNavigationItem, type BottomNavigationItemProps, type BottomNavigationProps, BottomNavigationV2, type BottomNavigationV2MenuItem, type BottomNavigationV2Props, type BottomNavigationV2TabItem, Building2Icon, type Building2IconProps, Button, type ButtonProps, type ButtonSize, type ButtonVariant, CalendarIcon, type CalendarIconProps, CalendarStarIcon, type CalendarStarIconProps, 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, DatabaseIcon, type DatabaseIconProps, 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, DragableDotsIcon, type DragableDotsIconProps, DragableList, type DragableListItemType, type DragableListProps, 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, GlobeIcon, type GlobeIconProps, 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, LarkIcon, type LarkIconProps, LayoutGridIcon, type LayoutGridIconProps, LikeFilledIcon, type LikeFilledIconProps, LikeIcon, type LikeIconProps, 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, NewspaperFilledIcon, type NewspaperFilledIconProps, NewspaperIcon, type NewspaperIconProps, 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, RSSIcon, type RSSIconProps, 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, ScalablyIcon, type ScalablyIconProps, 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, WebsiteIcon, type WebsiteIconProps, 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 };
|
|
6231
|
+
export { AlignCenterIcon, type AlignCenterIconProps, AlignLeftIcon, type AlignLeftIconProps, AlignRightIcon, type AlignRightIconProps, AppLauncherIcon, type AppLauncherIconProps, AppLogo, ArrowDownIcon, type ArrowDownIconProps, ArrowLeftIcon, type ArrowLeftIconProps, ArrowRightIcon, type ArrowRightIconProps, ArrowUpIcon, type ArrowUpIconProps, 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, BookOpenIcon, type BookOpenIconProps, BottomNavigation, BottomNavigationCloseIcon, type BottomNavigationCloseIconProps, BottomNavigationExpandIcon, type BottomNavigationExpandIconProps, BottomNavigationItem, type BottomNavigationItemProps, type BottomNavigationProps, BottomNavigationV2, type BottomNavigationV2MenuItem, type BottomNavigationV2Props, type BottomNavigationV2TabItem, Building2Icon, type Building2IconProps, Button, type ButtonProps, type ButtonSize, type ButtonVariant, CalendarIcon, type CalendarIconProps, CalendarStarIcon, type CalendarStarIconProps, 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, DatabaseIcon, type DatabaseIconProps, 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, DragableDotsIcon, type DragableDotsIconProps, DragableList, type DragableListItemType, type DragableListProps, 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, GlobeIcon, type GlobeIconProps, 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, IncognitoIcon, type IncognitoIconProps, 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, LarkIcon, type LarkIconProps, LayoutGridIcon, type LayoutGridIconProps, LikeFilledIcon, type LikeFilledIconProps, LikeIcon, type LikeIconProps, 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, NewspaperFilledIcon, type NewspaperFilledIconProps, NewspaperIcon, type NewspaperIconProps, 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, RSSIcon, type RSSIconProps, 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, ScalablyIcon, type ScalablyIconProps, 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, TrendingDownIcon, type TrendingDownIconProps, TrendingUpIcon, type TrendingUpIconProps, 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, VerifiedIcon, type VerifiedIconProps, VideoIcon, type VideoIconProps, VideoUploadIcon, type VideoUploadIconProps, type ViewMode, ViewToggle, type ViewToggleProps, WalletFilledIcon, type WalletFilledIconProps, WalletIcon, type WalletIconProps, WarnIcon, type WarnIconProps, WebsiteIcon, type WebsiteIconProps, 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 };
|