@scalably/ui 0.13.3 → 0.14.0
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 +262 -1
- package/dist/index.d.ts +262 -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
|
@@ -258,6 +258,51 @@ type BottomNavigationItemProps = {
|
|
|
258
258
|
/** Click handler - called after internal state update */
|
|
259
259
|
onClick?: (e: React.MouseEvent) => void;
|
|
260
260
|
};
|
|
261
|
+
interface BottomNavigationV2MenuItem {
|
|
262
|
+
value: string;
|
|
263
|
+
label: string;
|
|
264
|
+
icon: ReactElement;
|
|
265
|
+
activeIcon?: ReactElement;
|
|
266
|
+
onClick?: (e: React.MouseEvent) => void;
|
|
267
|
+
href?: string;
|
|
268
|
+
}
|
|
269
|
+
interface BottomNavigationV2TabItem {
|
|
270
|
+
value: string;
|
|
271
|
+
label: string;
|
|
272
|
+
icon: ReactElement;
|
|
273
|
+
activeIcon?: ReactElement;
|
|
274
|
+
badge?: number | string;
|
|
275
|
+
maxBadge?: number;
|
|
276
|
+
disabled?: boolean;
|
|
277
|
+
href?: string;
|
|
278
|
+
onClick?: (e: React.MouseEvent) => void;
|
|
279
|
+
}
|
|
280
|
+
interface BottomNavigationV2Props {
|
|
281
|
+
/** Additional class name for the navigation container */
|
|
282
|
+
className?: string;
|
|
283
|
+
/** Controlled active tab value */
|
|
284
|
+
value?: string;
|
|
285
|
+
/** Default active tab value for uncontrolled mode */
|
|
286
|
+
defaultValue?: string;
|
|
287
|
+
/** Callback when active tab changes */
|
|
288
|
+
onValueChange?: (value: string) => void;
|
|
289
|
+
/** Main tabs array (exactly 4 items are recommended: 2 left, 2 right) */
|
|
290
|
+
tabs: BottomNavigationV2TabItem[];
|
|
291
|
+
/** Circular menu popup items */
|
|
292
|
+
menuItems: BottomNavigationV2MenuItem[];
|
|
293
|
+
/** Controlled open state for the menu drawer */
|
|
294
|
+
menuOpen?: boolean;
|
|
295
|
+
/** Callback when menu open state changes */
|
|
296
|
+
onMenuOpenChange?: (open: boolean) => void;
|
|
297
|
+
/** Default menu open state (uncontrolled) */
|
|
298
|
+
defaultMenuOpen?: boolean;
|
|
299
|
+
/** Custom action label for the central menu button. Defaults to "Menu". */
|
|
300
|
+
menuLabel?: string;
|
|
301
|
+
/** Whether the bar is fixed to the bottom of the viewport. Defaults to false. */
|
|
302
|
+
fixed?: boolean;
|
|
303
|
+
/** Custom z-index value when fixed. Defaults to 40. */
|
|
304
|
+
zIndex?: number;
|
|
305
|
+
}
|
|
261
306
|
|
|
262
307
|
/**
|
|
263
308
|
* BottomNavigation - A mobile-optimized bottom navigation bar with animated interactions.
|
|
@@ -290,6 +335,32 @@ declare const BottomNavigation: react.ForwardRefExoticComponent<BottomNavigation
|
|
|
290
335
|
|
|
291
336
|
declare const BottomNavigationItem: react.ForwardRefExoticComponent<BottomNavigationItemProps & react.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
|
|
292
337
|
|
|
338
|
+
/**
|
|
339
|
+
* BottomNavigationV2 - A premium mobile bottom navigation bar with a curved cutout shape,
|
|
340
|
+
* a central rotating app launcher button, and an expandable popup action drawer.
|
|
341
|
+
*
|
|
342
|
+
* @example
|
|
343
|
+
* ```tsx
|
|
344
|
+
* <BottomNavigationV2
|
|
345
|
+
* defaultValue="home"
|
|
346
|
+
* tabs={[
|
|
347
|
+
* { value: 'home', label: 'Home', icon: <HomeIcon /> },
|
|
348
|
+
* { value: 'feeds', label: 'Feeds', icon: <FeedIcon /> },
|
|
349
|
+
* { value: 'shop', label: 'Shop', icon: <ShopIcon /> },
|
|
350
|
+
* { value: 'notifications', label: 'Notifications', icon: <BellIcon />, badge: 99 },
|
|
351
|
+
* ]}
|
|
352
|
+
* menuItems={[
|
|
353
|
+
* { value: 'campaigns', label: 'Campaigns', icon: <SocialCampaignIcon /> },
|
|
354
|
+
* { value: 'reviews', label: 'Reviews', icon: <ReviewIcon /> },
|
|
355
|
+
* { value: 'marketplace', label: 'Marketplace', icon: <StoreIcon /> },
|
|
356
|
+
* { value: 'profile', label: 'Profile', icon: <UserIcon /> },
|
|
357
|
+
* ]}
|
|
358
|
+
* fixed
|
|
359
|
+
* />
|
|
360
|
+
* ```
|
|
361
|
+
*/
|
|
362
|
+
declare const BottomNavigationV2: react.ForwardRefExoticComponent<BottomNavigationV2Props & react.RefAttributes<HTMLDivElement>>;
|
|
363
|
+
|
|
293
364
|
type SvgProps = React.ComponentPropsWithoutRef<"svg">;
|
|
294
365
|
interface IconBaseProps extends SvgProps {
|
|
295
366
|
/** Size of the icon in pixels. Defaults to 24. */
|
|
@@ -4810,6 +4881,25 @@ declare const WarnIcon: {
|
|
|
4810
4881
|
displayName: string;
|
|
4811
4882
|
};
|
|
4812
4883
|
|
|
4884
|
+
interface AppLauncherIconProps extends IconProps {
|
|
4885
|
+
}
|
|
4886
|
+
/**
|
|
4887
|
+
* AppLauncher icon component - displays a 3x3 grid of dots representing an application launcher or menu.
|
|
4888
|
+
*
|
|
4889
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
4890
|
+
*
|
|
4891
|
+
* @example
|
|
4892
|
+
* ```tsx
|
|
4893
|
+
* import { AppLauncherIcon } from '@scalably/ui';
|
|
4894
|
+
*
|
|
4895
|
+
* <AppLauncherIcon size={24} className="sui-text-primary" />
|
|
4896
|
+
* ```
|
|
4897
|
+
*/
|
|
4898
|
+
declare const AppLauncherIcon: {
|
|
4899
|
+
(props: AppLauncherIconProps): react_jsx_runtime.JSX.Element;
|
|
4900
|
+
displayName: string;
|
|
4901
|
+
};
|
|
4902
|
+
|
|
4813
4903
|
interface BellIconProps extends IconProps {
|
|
4814
4904
|
}
|
|
4815
4905
|
/**
|
|
@@ -4829,6 +4919,25 @@ declare const BellIcon: {
|
|
|
4829
4919
|
displayName: string;
|
|
4830
4920
|
};
|
|
4831
4921
|
|
|
4922
|
+
interface BellFilledIconProps extends IconProps {
|
|
4923
|
+
}
|
|
4924
|
+
/**
|
|
4925
|
+
* BellFilled icon component - displays a filled notification bell icon.
|
|
4926
|
+
*
|
|
4927
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
4928
|
+
*
|
|
4929
|
+
* @example
|
|
4930
|
+
* ```tsx
|
|
4931
|
+
* import { BellFilledIcon } from '@scalably/ui';
|
|
4932
|
+
*
|
|
4933
|
+
* <BellFilledIcon size={24} className="sui-text-primary" />
|
|
4934
|
+
* ```
|
|
4935
|
+
*/
|
|
4936
|
+
declare const BellFilledIcon: {
|
|
4937
|
+
(props: BellFilledIconProps): react_jsx_runtime.JSX.Element;
|
|
4938
|
+
displayName: string;
|
|
4939
|
+
};
|
|
4940
|
+
|
|
4832
4941
|
interface BottomNavigationCloseIconProps extends IconProps {
|
|
4833
4942
|
}
|
|
4834
4943
|
/**
|
|
@@ -5197,6 +5306,44 @@ declare const PlusIcon: {
|
|
|
5197
5306
|
displayName: string;
|
|
5198
5307
|
};
|
|
5199
5308
|
|
|
5309
|
+
interface ReviewIconProps extends IconProps {
|
|
5310
|
+
}
|
|
5311
|
+
/**
|
|
5312
|
+
* Review icon component - displays a message bubble with text lines and a star.
|
|
5313
|
+
*
|
|
5314
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
5315
|
+
*
|
|
5316
|
+
* @example
|
|
5317
|
+
* ```tsx
|
|
5318
|
+
* import { ReviewIcon } from '@scalably/ui';
|
|
5319
|
+
*
|
|
5320
|
+
* <ReviewIcon size={24} className="sui-text-primary" />
|
|
5321
|
+
* ```
|
|
5322
|
+
*/
|
|
5323
|
+
declare const ReviewIcon: {
|
|
5324
|
+
(props: ReviewIconProps): react_jsx_runtime.JSX.Element;
|
|
5325
|
+
displayName: string;
|
|
5326
|
+
};
|
|
5327
|
+
|
|
5328
|
+
interface ReviewFilledIconProps extends IconProps {
|
|
5329
|
+
}
|
|
5330
|
+
/**
|
|
5331
|
+
* Review icon component - displays a message bubble with text lines and a star.
|
|
5332
|
+
*
|
|
5333
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
5334
|
+
*
|
|
5335
|
+
* @example
|
|
5336
|
+
* ```tsx
|
|
5337
|
+
* import { ReviewIcon } from '@scalably/ui';
|
|
5338
|
+
*
|
|
5339
|
+
* <ReviewIcon size={24} className="sui-text-primary" />
|
|
5340
|
+
* ```
|
|
5341
|
+
*/
|
|
5342
|
+
declare const ReviewFilledIcon: {
|
|
5343
|
+
(props: ReviewFilledIconProps): react_jsx_runtime.JSX.Element;
|
|
5344
|
+
displayName: string;
|
|
5345
|
+
};
|
|
5346
|
+
|
|
5200
5347
|
interface SettingsIconProps extends IconProps {
|
|
5201
5348
|
}
|
|
5202
5349
|
/**
|
|
@@ -5216,6 +5363,25 @@ declare const SettingsIcon: {
|
|
|
5216
5363
|
displayName: string;
|
|
5217
5364
|
};
|
|
5218
5365
|
|
|
5366
|
+
interface StoreFilledIconProps extends IconProps {
|
|
5367
|
+
}
|
|
5368
|
+
/**
|
|
5369
|
+
* StoreFilled icon component - displays a filled store/shop icon.
|
|
5370
|
+
*
|
|
5371
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
5372
|
+
*
|
|
5373
|
+
* @example
|
|
5374
|
+
* ```tsx
|
|
5375
|
+
* import { StoreFilledIcon } from '@scalably/ui';
|
|
5376
|
+
*
|
|
5377
|
+
* <StoreFilledIcon size={24} className="sui-text-primary" />
|
|
5378
|
+
* ```
|
|
5379
|
+
*/
|
|
5380
|
+
declare const StoreFilledIcon: {
|
|
5381
|
+
(props: StoreFilledIconProps): react_jsx_runtime.JSX.Element;
|
|
5382
|
+
displayName: string;
|
|
5383
|
+
};
|
|
5384
|
+
|
|
5219
5385
|
interface ShoppingBagFilledIconProps extends IconProps {
|
|
5220
5386
|
}
|
|
5221
5387
|
/**
|
|
@@ -5255,6 +5421,44 @@ declare const ShoppingBagIcon: {
|
|
|
5255
5421
|
displayName: string;
|
|
5256
5422
|
};
|
|
5257
5423
|
|
|
5424
|
+
interface SocialCampaignFilledIconProps extends IconProps {
|
|
5425
|
+
}
|
|
5426
|
+
/**
|
|
5427
|
+
* SocialCampaign icon component - displays a collection of speech bubbles (text, video/play, dots) and a heart representing social campaign interactions.
|
|
5428
|
+
*
|
|
5429
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
5430
|
+
*
|
|
5431
|
+
* @example
|
|
5432
|
+
* ```tsx
|
|
5433
|
+
* import { SocialCampaignIcon } from '@scalably/ui';
|
|
5434
|
+
*
|
|
5435
|
+
* <SocialCampaignIcon size={24} className="sui-text-primary" />
|
|
5436
|
+
* ```
|
|
5437
|
+
*/
|
|
5438
|
+
declare const SocialCampaignFilledIcon: {
|
|
5439
|
+
(props: SocialCampaignFilledIconProps): react_jsx_runtime.JSX.Element;
|
|
5440
|
+
displayName: string;
|
|
5441
|
+
};
|
|
5442
|
+
|
|
5443
|
+
interface SocialCampaignIconProps extends IconProps {
|
|
5444
|
+
}
|
|
5445
|
+
/**
|
|
5446
|
+
* SocialCampaign icon component - displays a collection of speech bubbles (text, video/play, dots) and a heart representing social campaign interactions.
|
|
5447
|
+
*
|
|
5448
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
5449
|
+
*
|
|
5450
|
+
* @example
|
|
5451
|
+
* ```tsx
|
|
5452
|
+
* import { SocialCampaignIcon } from '@scalably/ui';
|
|
5453
|
+
*
|
|
5454
|
+
* <SocialCampaignIcon size={24} className="sui-text-primary" />
|
|
5455
|
+
* ```
|
|
5456
|
+
*/
|
|
5457
|
+
declare const SocialCampaignIcon: {
|
|
5458
|
+
(props: SocialCampaignIconProps): react_jsx_runtime.JSX.Element;
|
|
5459
|
+
displayName: string;
|
|
5460
|
+
};
|
|
5461
|
+
|
|
5258
5462
|
/**
|
|
5259
5463
|
* Props for the StarIcon component
|
|
5260
5464
|
*/
|
|
@@ -5278,6 +5482,25 @@ interface StarIconProps extends IconProps {
|
|
|
5278
5482
|
*/
|
|
5279
5483
|
declare const StarIcon: react.MemoExoticComponent<({ fillPercentage, ...props }: StarIconProps) => react_jsx_runtime.JSX.Element>;
|
|
5280
5484
|
|
|
5485
|
+
interface StoreIconProps extends IconProps {
|
|
5486
|
+
}
|
|
5487
|
+
/**
|
|
5488
|
+
* Store icon component - displays a physical store icon.
|
|
5489
|
+
*
|
|
5490
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
5491
|
+
*
|
|
5492
|
+
* @example
|
|
5493
|
+
* ```tsx
|
|
5494
|
+
* import { StoreIcon } from '@scalably/ui';
|
|
5495
|
+
*
|
|
5496
|
+
* <StoreIcon size={24} className="sui-text-primary" />
|
|
5497
|
+
* ```
|
|
5498
|
+
*/
|
|
5499
|
+
declare const StoreIcon: {
|
|
5500
|
+
(props: StoreIconProps): react_jsx_runtime.JSX.Element;
|
|
5501
|
+
displayName: string;
|
|
5502
|
+
};
|
|
5503
|
+
|
|
5281
5504
|
interface UserFilledIconProps extends IconProps {
|
|
5282
5505
|
}
|
|
5283
5506
|
/**
|
|
@@ -5317,6 +5540,44 @@ declare const UserIcon: {
|
|
|
5317
5540
|
displayName: string;
|
|
5318
5541
|
};
|
|
5319
5542
|
|
|
5543
|
+
interface UsersFilledIconProps extends IconProps {
|
|
5544
|
+
}
|
|
5545
|
+
/**
|
|
5546
|
+
* UsersFilled icon component - displays a filled multi-user icon representing groups or teams.
|
|
5547
|
+
*
|
|
5548
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
5549
|
+
*
|
|
5550
|
+
* @example
|
|
5551
|
+
* ```tsx
|
|
5552
|
+
* import { UsersFilledIcon } from '@scalably/ui';
|
|
5553
|
+
*
|
|
5554
|
+
* <UsersFilledIcon size={24} className="sui-text-primary" />
|
|
5555
|
+
* ```
|
|
5556
|
+
*/
|
|
5557
|
+
declare const UsersFilledIcon: {
|
|
5558
|
+
(props: UsersFilledIconProps): react_jsx_runtime.JSX.Element;
|
|
5559
|
+
displayName: string;
|
|
5560
|
+
};
|
|
5561
|
+
|
|
5562
|
+
interface UsersIconProps extends IconProps {
|
|
5563
|
+
}
|
|
5564
|
+
/**
|
|
5565
|
+
* Users icon component - displays two overlapping user outlines representing a group, team, or users list.
|
|
5566
|
+
*
|
|
5567
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
5568
|
+
*
|
|
5569
|
+
* @example
|
|
5570
|
+
* ```tsx
|
|
5571
|
+
* import { UsersIcon } from '@scalably/ui';
|
|
5572
|
+
*
|
|
5573
|
+
* <UsersIcon size={24} className="sui-text-primary" />
|
|
5574
|
+
* ```
|
|
5575
|
+
*/
|
|
5576
|
+
declare const UsersIcon: {
|
|
5577
|
+
(props: UsersIconProps): react_jsx_runtime.JSX.Element;
|
|
5578
|
+
displayName: string;
|
|
5579
|
+
};
|
|
5580
|
+
|
|
5320
5581
|
interface WalletFilledIconProps extends IconProps {
|
|
5321
5582
|
}
|
|
5322
5583
|
/**
|
|
@@ -5356,4 +5617,4 @@ declare const WalletIcon: {
|
|
|
5356
5617
|
displayName: string;
|
|
5357
5618
|
};
|
|
5358
5619
|
|
|
5359
|
-
export { AlignCenterIcon, type AlignCenterIconProps, AlignLeftIcon, type AlignLeftIconProps, AlignRightIcon, type AlignRightIconProps, AppLogo, AuthPrompt, type AuthPromptProps, AvatarPlaceholder, type AvatarPlaceholderCategory, type AvatarPlaceholderProps, type AvatarPlaceholderVariant, BackToTop, type BackToTopProps, type BasicFileValidationError, BellIcon, type BellIconProps, BlockEditor, type BlockEditorProps, BoldIcon, type BoldIconProps, BottomNavigation, BottomNavigationCloseIcon, type BottomNavigationCloseIconProps, BottomNavigationExpandIcon, type BottomNavigationExpandIconProps, BottomNavigationItem, type BottomNavigationItemProps, type BottomNavigationProps, Button, type ButtonProps, type ButtonSize, type ButtonVariant, CalendarIcon, type CalendarIconProps, CampaignLogo, CaptureIcon, type CaptureIconProps, CartIcon, type CartIconProps, CelebrationModal, type CelebrationModalProps, CheckBox, CheckBoxGroup, type CheckBoxGroupOption, type CheckBoxGroupProps, type CheckBoxProps, CheckIcon, type CheckIconProps, CloseIcon, type CloseIconProps, CopyIcon, type CopyIconProps, Countdown, type CountdownProps, type CountdownSize, type CountdownTimeValues, type CountdownUnit, CropIcon, type CropIconProps, type CroppedImageResult, DateInput, type DateInputMode, type DateInputProps, DatePicker, type DatePickerMode, type DatePickerProps, type DefaultAssetCategory, type DefaultAssetComponent, type DefaultAssetProps, type DefaultAssetVariant, type DefaultAssets, DeleteIcon, type DeleteIconProps, DiscordIcon, type DiscordIconProps, Divider, DividerIcon, type DividerIconProps, type DividerProps, type DividerVariant, DownloadIcon, type DownloadIconProps, DropUpIcon, type DropUpIconProps, DropdownIcon, type DropdownIconProps, type DropdownItem, EditIcon, type EditIconProps, ErrorIcon, type ErrorIconProps, EyeIcon, type EyeIconProps, EyeSlashIcon, type EyeSlashIconProps, FacebookIcon, type FacebookIconProps, FeedFilledIcon, type FeedFilledIconProps, FeedIcon, type FeedIconProps, type FieldErrorLike, FileIcon, type FileIconProps, FileUpload, type FileUploadError, type FileUploadFile, FileUploadIcon, type FileUploadIconProps, type FileUploadIconType, type FileUploadProps, type FileUploadSize, type FileUploadVariant, FilterIcon, type FilterIconProps, Form, type FormErrorItem, FormErrorSummary, type FormErrorSummaryProps, FormField, type FormFieldProps, type FormProps, ForwardIcon, type ForwardIconProps, type GetCroppedImgOptions, GmailIcon, type GmailIconProps, GridIcon, type GridIconProps, GroupAvatar, HelpCircleIcon, type HelpCircleIconProps, HomeFilledIcon, type HomeFilledIconProps, HomeIcon, type HomeIconProps, IconBadge, type IconBadgeProps, IconBigLogo, IconLogo, ImageCrop, ImageCropModal, type ImageCropModalProps, type ImageCropProps, ImageGallery, type ImageGalleryProps, ImageIcon, type ImageIconProps, ImagePlaceholder, type ImageSourceMode, ImageUploadIcon, type ImageUploadIconProps, IndeterminateIcon, type IndeterminateIconProps, InfoCircleIcon, type InfoCircleIconProps, InfoIcon, type InfoIconProps, Input, type InputProps, type InputVariant, InsertImageIcon, type InsertImageIconProps, InsertVideoIcon, type InsertVideoIconProps, InstagramIcon, type InstagramIconProps, ItalicIcon, type ItalicIconProps, KakaoTalkIcon, type KakaoTalkIconProps, LineIcon, type LineIconProps, LinkIcon, type LinkIconProps, LinkedInIcon, type LinkedInIconProps, ListBulletIcon, type ListBulletIconProps, ListIcon, type ListIconProps, ListNumberIcon, type ListNumberIconProps, LoadingScreen, type LoadingScreenProps, LoadingSpinner, type LoadingSpinnerProps, Logo, type LogoAssetComponent, type LogoAssetProps, type LogoAssets, type LogoFormat, type LogoProps, type LogoVariant, MediaGallery, type MediaGalleryProps, type MediaItem, type MediaSource, MessengerIcon, type MessengerIconProps, MinusIcon, type MinusIconProps, MonthInput, type MonthInputMode, type MonthInputProps, MonthPicker, type MonthPickerMode, type MonthPickerProps, type MonthRangeValue, MultiLevelDropdown, type MultiLevelDropdownProps, MultipleSelectionButton, type MultipleSelectionButtonProps, MultipleSelectionIcon, type MultipleSelectionIconProps, Pagination, type PaginationProps, PaletteIcon, type PaletteIconProps, PlayIcon, type PlayIconProps, PlusIcon, type PlusIconProps, Portal, ProfileAvatar, ProgressBar, QuantityInput, type QuantityInputProps, Radio, RadioGroup, type RadioGroupOption, type RadioGroupProps, type RadioProps, type RangeValue, Rating, type RatingProps, RedditIcon, type RedditIconProps, ResetIcon, type ResetIconProps, 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, StarIcon, type StarIconProps, StatusBadge, type StatusBadgeProps, type StatusBadgeSize, type StatusBadgeStatus, type StatusBadgeVariant, SuccessIcon, type SuccessIconProps, Switch, type SwitchProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Tag, TagInput, type TagInputProps, TelegramIcon, type TelegramIconProps, TickIcon, type TickIconProps, TiktokIcon, type TiktokIconProps, TimePicker, type TimePickerProps, ToFirstIcon, type ToFirstIconProps, ToLastIcon, type ToLastIconProps, ToNextIcon, type ToNextIconProps, ToPreviousIcon, type ToPreviousIconProps, Toast, type ToastAction, ToastContainer, type ToastContainerProps, type ToastPosition, type ToastProps, type ToastStatus, Tooltip, type TooltipAlign, type TooltipProps, type TooltipSide, TranslateIcon, type TranslateIconProps, TwitchIcon, type TwitchIconProps, UnderlineIcon, type UnderlineIconProps, UserFilledIcon, type UserFilledIconProps, UserIcon, type UserIconProps, 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 };
|
|
5620
|
+
export { AlignCenterIcon, type AlignCenterIconProps, AlignLeftIcon, type AlignLeftIconProps, AlignRightIcon, type AlignRightIconProps, AppLauncherIcon, type AppLauncherIconProps, AppLogo, AuthPrompt, type AuthPromptProps, AvatarPlaceholder, type AvatarPlaceholderCategory, type AvatarPlaceholderProps, type AvatarPlaceholderVariant, BackToTop, type BackToTopProps, type BasicFileValidationError, BellFilledIcon, type BellFilledIconProps, BellIcon, type BellIconProps, BlockEditor, type BlockEditorProps, BoldIcon, type BoldIconProps, BottomNavigation, BottomNavigationCloseIcon, type BottomNavigationCloseIconProps, BottomNavigationExpandIcon, type BottomNavigationExpandIconProps, BottomNavigationItem, type BottomNavigationItemProps, type BottomNavigationProps, BottomNavigationV2, type BottomNavigationV2MenuItem, type BottomNavigationV2Props, type BottomNavigationV2TabItem, Button, type ButtonProps, type ButtonSize, type ButtonVariant, CalendarIcon, type CalendarIconProps, CampaignLogo, CaptureIcon, type CaptureIconProps, CartIcon, type CartIconProps, CelebrationModal, type CelebrationModalProps, CheckBox, CheckBoxGroup, type CheckBoxGroupOption, type CheckBoxGroupProps, type CheckBoxProps, CheckIcon, type CheckIconProps, CloseIcon, type CloseIconProps, CopyIcon, type CopyIconProps, Countdown, type CountdownProps, type CountdownSize, type CountdownTimeValues, type CountdownUnit, CropIcon, type CropIconProps, type CroppedImageResult, DateInput, type DateInputMode, type DateInputProps, DatePicker, type DatePickerMode, type DatePickerProps, type DefaultAssetCategory, type DefaultAssetComponent, type DefaultAssetProps, type DefaultAssetVariant, type DefaultAssets, DeleteIcon, type DeleteIconProps, DiscordIcon, type DiscordIconProps, Divider, DividerIcon, type DividerIconProps, type DividerProps, type DividerVariant, DownloadIcon, type DownloadIconProps, DropUpIcon, type DropUpIconProps, DropdownIcon, type DropdownIconProps, type DropdownItem, EditIcon, type EditIconProps, ErrorIcon, type ErrorIconProps, EyeIcon, type EyeIconProps, EyeSlashIcon, type EyeSlashIconProps, FacebookIcon, type FacebookIconProps, FeedFilledIcon, type FeedFilledIconProps, FeedIcon, type FeedIconProps, type FieldErrorLike, FileIcon, type FileIconProps, FileUpload, type FileUploadError, type FileUploadFile, FileUploadIcon, type FileUploadIconProps, type FileUploadIconType, type FileUploadProps, type FileUploadSize, type FileUploadVariant, FilterIcon, type FilterIconProps, Form, type FormErrorItem, FormErrorSummary, type FormErrorSummaryProps, FormField, type FormFieldProps, type FormProps, ForwardIcon, type ForwardIconProps, type GetCroppedImgOptions, GmailIcon, type GmailIconProps, GridIcon, type GridIconProps, GroupAvatar, HelpCircleIcon, type HelpCircleIconProps, HomeFilledIcon, type HomeFilledIconProps, HomeIcon, type HomeIconProps, IconBadge, type IconBadgeProps, IconBigLogo, IconLogo, ImageCrop, ImageCropModal, type ImageCropModalProps, type ImageCropProps, ImageGallery, type ImageGalleryProps, ImageIcon, type ImageIconProps, ImagePlaceholder, type ImageSourceMode, ImageUploadIcon, type ImageUploadIconProps, IndeterminateIcon, type IndeterminateIconProps, InfoCircleIcon, type InfoCircleIconProps, InfoIcon, type InfoIconProps, Input, type InputProps, type InputVariant, InsertImageIcon, type InsertImageIconProps, InsertVideoIcon, type InsertVideoIconProps, InstagramIcon, type InstagramIconProps, ItalicIcon, type ItalicIconProps, KakaoTalkIcon, type KakaoTalkIconProps, LineIcon, type LineIconProps, LinkIcon, type LinkIconProps, LinkedInIcon, type LinkedInIconProps, ListBulletIcon, type ListBulletIconProps, ListIcon, type ListIconProps, ListNumberIcon, type ListNumberIconProps, LoadingScreen, type LoadingScreenProps, LoadingSpinner, type LoadingSpinnerProps, Logo, type LogoAssetComponent, type LogoAssetProps, type LogoAssets, type LogoFormat, type LogoProps, type LogoVariant, MediaGallery, type MediaGalleryProps, type MediaItem, type MediaSource, MessengerIcon, type MessengerIconProps, MinusIcon, type MinusIconProps, MonthInput, type MonthInputMode, type MonthInputProps, MonthPicker, type MonthPickerMode, type MonthPickerProps, type MonthRangeValue, MultiLevelDropdown, type MultiLevelDropdownProps, MultipleSelectionButton, type MultipleSelectionButtonProps, MultipleSelectionIcon, type MultipleSelectionIconProps, BellFilledIcon as NotificationFilledIcon, type BellFilledIconProps as NotificationFilledIconProps, BellIcon as NotificationIcon, type BellIconProps as NotificationIconProps, Pagination, type PaginationProps, PaletteIcon, type PaletteIconProps, PlayIcon, type PlayIconProps, PlusIcon, type PlusIconProps, Portal, ProfileAvatar, ProgressBar, QuantityInput, type QuantityInputProps, Radio, RadioGroup, type RadioGroupOption, type RadioGroupProps, type RadioProps, type RangeValue, Rating, type RatingProps, RedditIcon, type RedditIconProps, ResetIcon, type ResetIconProps, ReviewFilledIcon, type ReviewFilledIconProps, ReviewIcon, type ReviewIconProps, RichTextEditor, type RichTextEditorProps, RichTextViewer, type RichTextViewerProps, RotateLeftIcon, type RotateLeftIconProps, RotateRightIcon, type RotateRightIconProps, ScalablyUIProvider, type ScalablyUIProviderProps, SearchIcon, type SearchIconProps, SearchInput, type SearchInputProps, type SearchInputVariant, Select, type SelectOption, type SelectProps, type SelectVariant, SettingsIcon, type SettingsIconProps, ShareIcon, type ShareIconProps, ShoppingBagFilledIcon, type ShoppingBagFilledIconProps, ShoppingBagIcon, type ShoppingBagIconProps, SignalIcon, type SignalIconProps, Skeleton, type SkeletonProps, type SkeletonSize, SkeletonText, type SkeletonTextProps, type SkeletonVariant, SlackIcon, type SlackIconProps, Slider, SocialCampaignFilledIcon, type SocialCampaignFilledIconProps, SocialCampaignIcon, type SocialCampaignIconProps, StarIcon, type StarIconProps, StatusBadge, type StatusBadgeProps, type StatusBadgeSize, type StatusBadgeStatus, type StatusBadgeVariant, StoreFilledIcon, type StoreFilledIconProps, StoreIcon, type StoreIconProps, SuccessIcon, type SuccessIconProps, Switch, type SwitchProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Tag, TagInput, type TagInputProps, TelegramIcon, type TelegramIconProps, TickIcon, type TickIconProps, TiktokIcon, type TiktokIconProps, TimePicker, type TimePickerProps, ToFirstIcon, type ToFirstIconProps, ToLastIcon, type ToLastIconProps, ToNextIcon, type ToNextIconProps, ToPreviousIcon, type ToPreviousIconProps, Toast, type ToastAction, ToastContainer, type ToastContainerProps, type ToastPosition, type ToastProps, type ToastStatus, Tooltip, type TooltipAlign, type TooltipProps, type TooltipSide, TranslateIcon, type TranslateIconProps, TwitchIcon, type TwitchIconProps, UnderlineIcon, type UnderlineIconProps, UserFilledIcon, type UserFilledIconProps, UserIcon, type UserIconProps, UsersFilledIcon, type UsersFilledIconProps, UsersIcon, type UsersIconProps, VideoIcon, type VideoIconProps, VideoUploadIcon, type VideoUploadIconProps, type ViewMode, ViewToggle, type ViewToggleProps, WalletFilledIcon, type WalletFilledIconProps, WalletIcon, type WalletIconProps, WarnIcon, type WarnIconProps, WelcomeBackground, type WelcomeBackgroundProps, WhatsAppIcon, type WhatsAppIconProps, XIcon, type XIconProps, YearInput, type YearInputMode, type YearInputProps, YearPicker, type YearPickerMode, type YearPickerProps, type YearRangeValue, YoutubeIcon, type YoutubeIconProps, clampDate, cn, daysGrid, debounce, defaultAssets, extensionToMimeType, fieldErrorToProps, formatAcceptedFileTypes, formatDateLocalized, getCroppedImg, logoAssets, mimeTypeToDisplayName, monthsForLocale, normalizeAcceptedFileTypes, scopeClass, throttle, toDateKey, validateFileTypeAndSize, weekdaysForLocale, welcomeAssets, zodErrorsToSummary };
|