@scalably/ui 0.16.2 → 0.16.4
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 +194 -1
- package/dist/index.d.ts +194 -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 +10 -10
package/dist/index.d.cts
CHANGED
|
@@ -4135,6 +4135,25 @@ declare const KakaoTalkIcon: {
|
|
|
4135
4135
|
displayName: string;
|
|
4136
4136
|
};
|
|
4137
4137
|
|
|
4138
|
+
interface LarkIconProps extends IconProps {
|
|
4139
|
+
}
|
|
4140
|
+
/**
|
|
4141
|
+
* Lark icon component - displays the Lark logo.
|
|
4142
|
+
*
|
|
4143
|
+
* This icon uses official brand colors.
|
|
4144
|
+
*
|
|
4145
|
+
* @example
|
|
4146
|
+
* ```tsx
|
|
4147
|
+
* import { LarkIcon } from '@scalably/ui';
|
|
4148
|
+
*
|
|
4149
|
+
* <LarkIcon size={24} />
|
|
4150
|
+
* ```
|
|
4151
|
+
*/
|
|
4152
|
+
declare const LarkIcon: {
|
|
4153
|
+
(props: LarkIconProps): react_jsx_runtime.JSX.Element;
|
|
4154
|
+
displayName: string;
|
|
4155
|
+
};
|
|
4156
|
+
|
|
4138
4157
|
interface LineIconProps extends IconProps {
|
|
4139
4158
|
}
|
|
4140
4159
|
/**
|
|
@@ -4211,6 +4230,28 @@ declare const RedditIcon: {
|
|
|
4211
4230
|
displayName: string;
|
|
4212
4231
|
};
|
|
4213
4232
|
|
|
4233
|
+
/**
|
|
4234
|
+
* Props for the ScalablyIcon component
|
|
4235
|
+
*/
|
|
4236
|
+
interface ScalablyIconProps extends IconProps {
|
|
4237
|
+
}
|
|
4238
|
+
/**
|
|
4239
|
+
* Scalably company icon component - displays the Scalably logo mark as a company icon.
|
|
4240
|
+
*
|
|
4241
|
+
* Designed to fit into the company icon collection alongside DiscordIcon, FacebookIcon, SlackIcon, etc.
|
|
4242
|
+
*
|
|
4243
|
+
* @example
|
|
4244
|
+
* ```tsx
|
|
4245
|
+
* import { ScalablyIcon } from '@scalably/ui';
|
|
4246
|
+
*
|
|
4247
|
+
* <ScalablyIcon size={32} className="sui-text-primary" />
|
|
4248
|
+
* ```
|
|
4249
|
+
*/
|
|
4250
|
+
declare const ScalablyIcon: {
|
|
4251
|
+
({ size, ...props }: ScalablyIconProps): react_jsx_runtime.JSX.Element;
|
|
4252
|
+
displayName: string;
|
|
4253
|
+
};
|
|
4254
|
+
|
|
4214
4255
|
interface SignalIconProps extends IconProps {
|
|
4215
4256
|
}
|
|
4216
4257
|
/**
|
|
@@ -4673,6 +4714,25 @@ declare const RotateRightIcon: {
|
|
|
4673
4714
|
displayName: string;
|
|
4674
4715
|
};
|
|
4675
4716
|
|
|
4717
|
+
interface RSSIconProps extends IconProps {
|
|
4718
|
+
}
|
|
4719
|
+
/**
|
|
4720
|
+
* RSS icon component - displays an RSS feed icon.
|
|
4721
|
+
*
|
|
4722
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
4723
|
+
*
|
|
4724
|
+
* @example
|
|
4725
|
+
* ```tsx
|
|
4726
|
+
* import { RSSIcon } from '@scalably/ui';
|
|
4727
|
+
*
|
|
4728
|
+
* <RSSIcon size={24} className="sui-text-primary" />
|
|
4729
|
+
* ```
|
|
4730
|
+
*/
|
|
4731
|
+
declare const RSSIcon: {
|
|
4732
|
+
(props: RSSIconProps): react_jsx_runtime.JSX.Element;
|
|
4733
|
+
displayName: string;
|
|
4734
|
+
};
|
|
4735
|
+
|
|
4676
4736
|
interface DropdownIconProps extends IconProps {
|
|
4677
4737
|
}
|
|
4678
4738
|
/**
|
|
@@ -4978,6 +5038,44 @@ declare const BellFilledIcon: {
|
|
|
4978
5038
|
displayName: string;
|
|
4979
5039
|
};
|
|
4980
5040
|
|
|
5041
|
+
interface BookOpenIconProps extends IconProps {
|
|
5042
|
+
}
|
|
5043
|
+
/**
|
|
5044
|
+
* Book open icon component - displays an open book icon.
|
|
5045
|
+
*
|
|
5046
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
5047
|
+
*
|
|
5048
|
+
* @example
|
|
5049
|
+
* ```tsx
|
|
5050
|
+
* import { BookOpenIcon } from '@scalably/ui';
|
|
5051
|
+
*
|
|
5052
|
+
* <BookOpenIcon size={24} className="sui-text-primary" />
|
|
5053
|
+
* ```
|
|
5054
|
+
*/
|
|
5055
|
+
declare const BookOpenIcon: {
|
|
5056
|
+
(props: BookOpenIconProps): react_jsx_runtime.JSX.Element;
|
|
5057
|
+
displayName: string;
|
|
5058
|
+
};
|
|
5059
|
+
|
|
5060
|
+
interface Building2IconProps extends IconProps {
|
|
5061
|
+
}
|
|
5062
|
+
/**
|
|
5063
|
+
* Building 2 icon component - displays a building/office icon.
|
|
5064
|
+
*
|
|
5065
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
5066
|
+
*
|
|
5067
|
+
* @example
|
|
5068
|
+
* ```tsx
|
|
5069
|
+
* import { Building2Icon } from '@scalably/ui';
|
|
5070
|
+
*
|
|
5071
|
+
* <Building2Icon size={24} className="sui-text-primary" />
|
|
5072
|
+
* ```
|
|
5073
|
+
*/
|
|
5074
|
+
declare const Building2Icon: {
|
|
5075
|
+
(props: Building2IconProps): react_jsx_runtime.JSX.Element;
|
|
5076
|
+
displayName: string;
|
|
5077
|
+
};
|
|
5078
|
+
|
|
4981
5079
|
interface BottomNavigationCloseIconProps extends IconProps {
|
|
4982
5080
|
}
|
|
4983
5081
|
/**
|
|
@@ -5059,6 +5157,25 @@ declare const CartIcon: {
|
|
|
5059
5157
|
displayName: string;
|
|
5060
5158
|
};
|
|
5061
5159
|
|
|
5160
|
+
interface DatabaseIconProps extends IconProps {
|
|
5161
|
+
}
|
|
5162
|
+
/**
|
|
5163
|
+
* Database icon component - displays a database server icon.
|
|
5164
|
+
*
|
|
5165
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
5166
|
+
*
|
|
5167
|
+
* @example
|
|
5168
|
+
* ```tsx
|
|
5169
|
+
* import { DatabaseIcon } from '@scalably/ui';
|
|
5170
|
+
*
|
|
5171
|
+
* <DatabaseIcon size={24} className="sui-text-primary" />
|
|
5172
|
+
* ```
|
|
5173
|
+
*/
|
|
5174
|
+
declare const DatabaseIcon: {
|
|
5175
|
+
(props: DatabaseIconProps): react_jsx_runtime.JSX.Element;
|
|
5176
|
+
displayName: string;
|
|
5177
|
+
};
|
|
5178
|
+
|
|
5062
5179
|
interface DoorExitIconProps extends IconProps {
|
|
5063
5180
|
}
|
|
5064
5181
|
/**
|
|
@@ -5193,6 +5310,25 @@ declare const ForwardIcon: {
|
|
|
5193
5310
|
displayName: string;
|
|
5194
5311
|
};
|
|
5195
5312
|
|
|
5313
|
+
interface GlobeIconProps extends IconProps {
|
|
5314
|
+
}
|
|
5315
|
+
/**
|
|
5316
|
+
* Globe icon component - displays a globe/world grid icon.
|
|
5317
|
+
*
|
|
5318
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
5319
|
+
*
|
|
5320
|
+
* @example
|
|
5321
|
+
* ```tsx
|
|
5322
|
+
* import { GlobeIcon } from '@scalably/ui';
|
|
5323
|
+
*
|
|
5324
|
+
* <GlobeIcon size={24} className="sui-text-primary" />
|
|
5325
|
+
* ```
|
|
5326
|
+
*/
|
|
5327
|
+
declare const GlobeIcon: {
|
|
5328
|
+
(props: GlobeIconProps): react_jsx_runtime.JSX.Element;
|
|
5329
|
+
displayName: string;
|
|
5330
|
+
};
|
|
5331
|
+
|
|
5196
5332
|
interface GridIconProps extends IconProps {
|
|
5197
5333
|
}
|
|
5198
5334
|
/**
|
|
@@ -5308,6 +5444,25 @@ declare const InfoCircleIcon: {
|
|
|
5308
5444
|
displayName: string;
|
|
5309
5445
|
};
|
|
5310
5446
|
|
|
5447
|
+
interface LayoutGridIconProps extends IconProps {
|
|
5448
|
+
}
|
|
5449
|
+
/**
|
|
5450
|
+
* Layout grid icon component - displays a 2x2 grid layout icon.
|
|
5451
|
+
*
|
|
5452
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
5453
|
+
*
|
|
5454
|
+
* @example
|
|
5455
|
+
* ```tsx
|
|
5456
|
+
* import { LayoutGridIcon } from '@scalably/ui';
|
|
5457
|
+
*
|
|
5458
|
+
* <LayoutGridIcon size={24} className="sui-text-primary" />
|
|
5459
|
+
* ```
|
|
5460
|
+
*/
|
|
5461
|
+
declare const LayoutGridIcon: {
|
|
5462
|
+
(props: LayoutGridIconProps): react_jsx_runtime.JSX.Element;
|
|
5463
|
+
displayName: string;
|
|
5464
|
+
};
|
|
5465
|
+
|
|
5311
5466
|
interface ListIconProps extends IconProps {
|
|
5312
5467
|
}
|
|
5313
5468
|
/**
|
|
@@ -5384,6 +5539,44 @@ declare const MultipleSelectionIcon: {
|
|
|
5384
5539
|
displayName: string;
|
|
5385
5540
|
};
|
|
5386
5541
|
|
|
5542
|
+
interface NewspaperIconProps extends IconProps {
|
|
5543
|
+
}
|
|
5544
|
+
/**
|
|
5545
|
+
* Newspaper icon component - displays a newspaper / article icon.
|
|
5546
|
+
*
|
|
5547
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
5548
|
+
*
|
|
5549
|
+
* @example
|
|
5550
|
+
* ```tsx
|
|
5551
|
+
* import { NewspaperIcon } from '@scalably/ui';
|
|
5552
|
+
*
|
|
5553
|
+
* <NewspaperIcon size={24} className="sui-text-primary" />
|
|
5554
|
+
* ```
|
|
5555
|
+
*/
|
|
5556
|
+
declare const NewspaperIcon: {
|
|
5557
|
+
(props: NewspaperIconProps): react_jsx_runtime.JSX.Element;
|
|
5558
|
+
displayName: string;
|
|
5559
|
+
};
|
|
5560
|
+
|
|
5561
|
+
interface NewspaperFilledIconProps extends IconProps {
|
|
5562
|
+
}
|
|
5563
|
+
/**
|
|
5564
|
+
* Newspaper filled icon component - displays a filled newspaper / article icon.
|
|
5565
|
+
*
|
|
5566
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
5567
|
+
*
|
|
5568
|
+
* @example
|
|
5569
|
+
* ```tsx
|
|
5570
|
+
* import { NewspaperFilledIcon } from '@scalably/ui';
|
|
5571
|
+
*
|
|
5572
|
+
* <NewspaperFilledIcon size={24} className="sui-text-primary" />
|
|
5573
|
+
* ```
|
|
5574
|
+
*/
|
|
5575
|
+
declare const NewspaperFilledIcon: {
|
|
5576
|
+
(props: NewspaperFilledIconProps): react_jsx_runtime.JSX.Element;
|
|
5577
|
+
displayName: string;
|
|
5578
|
+
};
|
|
5579
|
+
|
|
5387
5580
|
interface PaletteIconProps extends IconProps {
|
|
5388
5581
|
}
|
|
5389
5582
|
/**
|
|
@@ -5847,4 +6040,4 @@ declare const WalletIcon: {
|
|
|
5847
6040
|
displayName: string;
|
|
5848
6041
|
};
|
|
5849
6042
|
|
|
5850
|
-
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, 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, 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, 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, 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, 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 };
|
|
6043
|
+
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, 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
|
@@ -4135,6 +4135,25 @@ declare const KakaoTalkIcon: {
|
|
|
4135
4135
|
displayName: string;
|
|
4136
4136
|
};
|
|
4137
4137
|
|
|
4138
|
+
interface LarkIconProps extends IconProps {
|
|
4139
|
+
}
|
|
4140
|
+
/**
|
|
4141
|
+
* Lark icon component - displays the Lark logo.
|
|
4142
|
+
*
|
|
4143
|
+
* This icon uses official brand colors.
|
|
4144
|
+
*
|
|
4145
|
+
* @example
|
|
4146
|
+
* ```tsx
|
|
4147
|
+
* import { LarkIcon } from '@scalably/ui';
|
|
4148
|
+
*
|
|
4149
|
+
* <LarkIcon size={24} />
|
|
4150
|
+
* ```
|
|
4151
|
+
*/
|
|
4152
|
+
declare const LarkIcon: {
|
|
4153
|
+
(props: LarkIconProps): react_jsx_runtime.JSX.Element;
|
|
4154
|
+
displayName: string;
|
|
4155
|
+
};
|
|
4156
|
+
|
|
4138
4157
|
interface LineIconProps extends IconProps {
|
|
4139
4158
|
}
|
|
4140
4159
|
/**
|
|
@@ -4211,6 +4230,28 @@ declare const RedditIcon: {
|
|
|
4211
4230
|
displayName: string;
|
|
4212
4231
|
};
|
|
4213
4232
|
|
|
4233
|
+
/**
|
|
4234
|
+
* Props for the ScalablyIcon component
|
|
4235
|
+
*/
|
|
4236
|
+
interface ScalablyIconProps extends IconProps {
|
|
4237
|
+
}
|
|
4238
|
+
/**
|
|
4239
|
+
* Scalably company icon component - displays the Scalably logo mark as a company icon.
|
|
4240
|
+
*
|
|
4241
|
+
* Designed to fit into the company icon collection alongside DiscordIcon, FacebookIcon, SlackIcon, etc.
|
|
4242
|
+
*
|
|
4243
|
+
* @example
|
|
4244
|
+
* ```tsx
|
|
4245
|
+
* import { ScalablyIcon } from '@scalably/ui';
|
|
4246
|
+
*
|
|
4247
|
+
* <ScalablyIcon size={32} className="sui-text-primary" />
|
|
4248
|
+
* ```
|
|
4249
|
+
*/
|
|
4250
|
+
declare const ScalablyIcon: {
|
|
4251
|
+
({ size, ...props }: ScalablyIconProps): react_jsx_runtime.JSX.Element;
|
|
4252
|
+
displayName: string;
|
|
4253
|
+
};
|
|
4254
|
+
|
|
4214
4255
|
interface SignalIconProps extends IconProps {
|
|
4215
4256
|
}
|
|
4216
4257
|
/**
|
|
@@ -4673,6 +4714,25 @@ declare const RotateRightIcon: {
|
|
|
4673
4714
|
displayName: string;
|
|
4674
4715
|
};
|
|
4675
4716
|
|
|
4717
|
+
interface RSSIconProps extends IconProps {
|
|
4718
|
+
}
|
|
4719
|
+
/**
|
|
4720
|
+
* RSS icon component - displays an RSS feed icon.
|
|
4721
|
+
*
|
|
4722
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
4723
|
+
*
|
|
4724
|
+
* @example
|
|
4725
|
+
* ```tsx
|
|
4726
|
+
* import { RSSIcon } from '@scalably/ui';
|
|
4727
|
+
*
|
|
4728
|
+
* <RSSIcon size={24} className="sui-text-primary" />
|
|
4729
|
+
* ```
|
|
4730
|
+
*/
|
|
4731
|
+
declare const RSSIcon: {
|
|
4732
|
+
(props: RSSIconProps): react_jsx_runtime.JSX.Element;
|
|
4733
|
+
displayName: string;
|
|
4734
|
+
};
|
|
4735
|
+
|
|
4676
4736
|
interface DropdownIconProps extends IconProps {
|
|
4677
4737
|
}
|
|
4678
4738
|
/**
|
|
@@ -4978,6 +5038,44 @@ declare const BellFilledIcon: {
|
|
|
4978
5038
|
displayName: string;
|
|
4979
5039
|
};
|
|
4980
5040
|
|
|
5041
|
+
interface BookOpenIconProps extends IconProps {
|
|
5042
|
+
}
|
|
5043
|
+
/**
|
|
5044
|
+
* Book open icon component - displays an open book icon.
|
|
5045
|
+
*
|
|
5046
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
5047
|
+
*
|
|
5048
|
+
* @example
|
|
5049
|
+
* ```tsx
|
|
5050
|
+
* import { BookOpenIcon } from '@scalably/ui';
|
|
5051
|
+
*
|
|
5052
|
+
* <BookOpenIcon size={24} className="sui-text-primary" />
|
|
5053
|
+
* ```
|
|
5054
|
+
*/
|
|
5055
|
+
declare const BookOpenIcon: {
|
|
5056
|
+
(props: BookOpenIconProps): react_jsx_runtime.JSX.Element;
|
|
5057
|
+
displayName: string;
|
|
5058
|
+
};
|
|
5059
|
+
|
|
5060
|
+
interface Building2IconProps extends IconProps {
|
|
5061
|
+
}
|
|
5062
|
+
/**
|
|
5063
|
+
* Building 2 icon component - displays a building/office icon.
|
|
5064
|
+
*
|
|
5065
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
5066
|
+
*
|
|
5067
|
+
* @example
|
|
5068
|
+
* ```tsx
|
|
5069
|
+
* import { Building2Icon } from '@scalably/ui';
|
|
5070
|
+
*
|
|
5071
|
+
* <Building2Icon size={24} className="sui-text-primary" />
|
|
5072
|
+
* ```
|
|
5073
|
+
*/
|
|
5074
|
+
declare const Building2Icon: {
|
|
5075
|
+
(props: Building2IconProps): react_jsx_runtime.JSX.Element;
|
|
5076
|
+
displayName: string;
|
|
5077
|
+
};
|
|
5078
|
+
|
|
4981
5079
|
interface BottomNavigationCloseIconProps extends IconProps {
|
|
4982
5080
|
}
|
|
4983
5081
|
/**
|
|
@@ -5059,6 +5157,25 @@ declare const CartIcon: {
|
|
|
5059
5157
|
displayName: string;
|
|
5060
5158
|
};
|
|
5061
5159
|
|
|
5160
|
+
interface DatabaseIconProps extends IconProps {
|
|
5161
|
+
}
|
|
5162
|
+
/**
|
|
5163
|
+
* Database icon component - displays a database server icon.
|
|
5164
|
+
*
|
|
5165
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
5166
|
+
*
|
|
5167
|
+
* @example
|
|
5168
|
+
* ```tsx
|
|
5169
|
+
* import { DatabaseIcon } from '@scalably/ui';
|
|
5170
|
+
*
|
|
5171
|
+
* <DatabaseIcon size={24} className="sui-text-primary" />
|
|
5172
|
+
* ```
|
|
5173
|
+
*/
|
|
5174
|
+
declare const DatabaseIcon: {
|
|
5175
|
+
(props: DatabaseIconProps): react_jsx_runtime.JSX.Element;
|
|
5176
|
+
displayName: string;
|
|
5177
|
+
};
|
|
5178
|
+
|
|
5062
5179
|
interface DoorExitIconProps extends IconProps {
|
|
5063
5180
|
}
|
|
5064
5181
|
/**
|
|
@@ -5193,6 +5310,25 @@ declare const ForwardIcon: {
|
|
|
5193
5310
|
displayName: string;
|
|
5194
5311
|
};
|
|
5195
5312
|
|
|
5313
|
+
interface GlobeIconProps extends IconProps {
|
|
5314
|
+
}
|
|
5315
|
+
/**
|
|
5316
|
+
* Globe icon component - displays a globe/world grid icon.
|
|
5317
|
+
*
|
|
5318
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
5319
|
+
*
|
|
5320
|
+
* @example
|
|
5321
|
+
* ```tsx
|
|
5322
|
+
* import { GlobeIcon } from '@scalably/ui';
|
|
5323
|
+
*
|
|
5324
|
+
* <GlobeIcon size={24} className="sui-text-primary" />
|
|
5325
|
+
* ```
|
|
5326
|
+
*/
|
|
5327
|
+
declare const GlobeIcon: {
|
|
5328
|
+
(props: GlobeIconProps): react_jsx_runtime.JSX.Element;
|
|
5329
|
+
displayName: string;
|
|
5330
|
+
};
|
|
5331
|
+
|
|
5196
5332
|
interface GridIconProps extends IconProps {
|
|
5197
5333
|
}
|
|
5198
5334
|
/**
|
|
@@ -5308,6 +5444,25 @@ declare const InfoCircleIcon: {
|
|
|
5308
5444
|
displayName: string;
|
|
5309
5445
|
};
|
|
5310
5446
|
|
|
5447
|
+
interface LayoutGridIconProps extends IconProps {
|
|
5448
|
+
}
|
|
5449
|
+
/**
|
|
5450
|
+
* Layout grid icon component - displays a 2x2 grid layout icon.
|
|
5451
|
+
*
|
|
5452
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
5453
|
+
*
|
|
5454
|
+
* @example
|
|
5455
|
+
* ```tsx
|
|
5456
|
+
* import { LayoutGridIcon } from '@scalably/ui';
|
|
5457
|
+
*
|
|
5458
|
+
* <LayoutGridIcon size={24} className="sui-text-primary" />
|
|
5459
|
+
* ```
|
|
5460
|
+
*/
|
|
5461
|
+
declare const LayoutGridIcon: {
|
|
5462
|
+
(props: LayoutGridIconProps): react_jsx_runtime.JSX.Element;
|
|
5463
|
+
displayName: string;
|
|
5464
|
+
};
|
|
5465
|
+
|
|
5311
5466
|
interface ListIconProps extends IconProps {
|
|
5312
5467
|
}
|
|
5313
5468
|
/**
|
|
@@ -5384,6 +5539,44 @@ declare const MultipleSelectionIcon: {
|
|
|
5384
5539
|
displayName: string;
|
|
5385
5540
|
};
|
|
5386
5541
|
|
|
5542
|
+
interface NewspaperIconProps extends IconProps {
|
|
5543
|
+
}
|
|
5544
|
+
/**
|
|
5545
|
+
* Newspaper icon component - displays a newspaper / article icon.
|
|
5546
|
+
*
|
|
5547
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
5548
|
+
*
|
|
5549
|
+
* @example
|
|
5550
|
+
* ```tsx
|
|
5551
|
+
* import { NewspaperIcon } from '@scalably/ui';
|
|
5552
|
+
*
|
|
5553
|
+
* <NewspaperIcon size={24} className="sui-text-primary" />
|
|
5554
|
+
* ```
|
|
5555
|
+
*/
|
|
5556
|
+
declare const NewspaperIcon: {
|
|
5557
|
+
(props: NewspaperIconProps): react_jsx_runtime.JSX.Element;
|
|
5558
|
+
displayName: string;
|
|
5559
|
+
};
|
|
5560
|
+
|
|
5561
|
+
interface NewspaperFilledIconProps extends IconProps {
|
|
5562
|
+
}
|
|
5563
|
+
/**
|
|
5564
|
+
* Newspaper filled icon component - displays a filled newspaper / article icon.
|
|
5565
|
+
*
|
|
5566
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
5567
|
+
*
|
|
5568
|
+
* @example
|
|
5569
|
+
* ```tsx
|
|
5570
|
+
* import { NewspaperFilledIcon } from '@scalably/ui';
|
|
5571
|
+
*
|
|
5572
|
+
* <NewspaperFilledIcon size={24} className="sui-text-primary" />
|
|
5573
|
+
* ```
|
|
5574
|
+
*/
|
|
5575
|
+
declare const NewspaperFilledIcon: {
|
|
5576
|
+
(props: NewspaperFilledIconProps): react_jsx_runtime.JSX.Element;
|
|
5577
|
+
displayName: string;
|
|
5578
|
+
};
|
|
5579
|
+
|
|
5387
5580
|
interface PaletteIconProps extends IconProps {
|
|
5388
5581
|
}
|
|
5389
5582
|
/**
|
|
@@ -5847,4 +6040,4 @@ declare const WalletIcon: {
|
|
|
5847
6040
|
displayName: string;
|
|
5848
6041
|
};
|
|
5849
6042
|
|
|
5850
|
-
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, 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, 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, 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, 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, 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 };
|
|
6043
|
+
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, 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 };
|