@scalably/ui 0.11.9 → 0.11.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -4596,6 +4596,25 @@ declare const EyeIcon: {
4596
4596
  displayName: string;
4597
4597
  };
4598
4598
 
4599
+ interface EyeSlashIconProps extends IconProps {
4600
+ }
4601
+ /**
4602
+ * Eye slash icon component - displays an eye slash icon.
4603
+ *
4604
+ * This icon uses `currentColor`, so it can be styled with Tailwind classes.
4605
+ *
4606
+ * @example
4607
+ * ```tsx
4608
+ * import { EyeSlashIcon } from '@scalably/ui';
4609
+ *
4610
+ * <EyeSlashIcon size={24} className="sui-text-primary" />
4611
+ * ```
4612
+ */
4613
+ declare const EyeSlashIcon: {
4614
+ (props: EyeSlashIconProps): react_jsx_runtime.JSX.Element;
4615
+ displayName: string;
4616
+ };
4617
+
4599
4618
  interface FeedFilledIconProps extends IconProps {
4600
4619
  }
4601
4620
  /**
@@ -4635,80 +4654,118 @@ declare const FeedIcon: {
4635
4654
  displayName: string;
4636
4655
  };
4637
4656
 
4638
- interface HomeFilledIconProps extends IconProps {
4657
+ interface ForwardIconProps extends IconProps {
4639
4658
  }
4640
4659
  /**
4641
- * Home Filled icon component - displays a filled house/home icon.
4660
+ * Forward icon component - displays a forward arrow.
4642
4661
  *
4643
4662
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
4644
- * Use this as the active state paired with `HomeIcon` for the inactive state.
4645
4663
  *
4646
4664
  * @example
4647
4665
  * ```tsx
4648
- * import { HomeFilledIcon } from '@scalably/ui';
4666
+ * import { ForwardIcon } from '@scalably/ui';
4649
4667
  *
4650
- * <HomeFilledIcon size={24} className="sui-text-primary" />
4668
+ * <ForwardIcon size={24} className="sui-text-primary" />
4651
4669
  * ```
4652
4670
  */
4653
- declare const HomeFilledIcon: {
4654
- (props: HomeFilledIconProps): react_jsx_runtime.JSX.Element;
4671
+ declare const ForwardIcon: {
4672
+ (props: ForwardIconProps): react_jsx_runtime.JSX.Element;
4655
4673
  displayName: string;
4656
4674
  };
4657
4675
 
4658
- interface HomeIconProps extends IconProps {
4676
+ interface GridIconProps extends IconProps {
4659
4677
  }
4660
4678
  /**
4661
- * Home icon component - displays a house/home icon.
4679
+ * Grid icon component - displays a grid icon.
4662
4680
  *
4663
4681
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
4664
4682
  *
4665
4683
  * @example
4666
4684
  * ```tsx
4667
- * import { HomeIcon } from '@scalably/ui';
4685
+ * import { GridIcon } from '@scalably/ui';
4668
4686
  *
4669
- * <HomeIcon size={24} className="sui-text-primary" />
4687
+ * <GridIcon size={24} className="sui-text-primary" />
4670
4688
  * ```
4671
4689
  */
4672
- declare const HomeIcon: {
4673
- (props: HomeIconProps): react_jsx_runtime.JSX.Element;
4690
+ declare const GridIcon: {
4691
+ (props: GridIconProps): react_jsx_runtime.JSX.Element;
4674
4692
  displayName: string;
4675
4693
  };
4676
4694
 
4677
- interface EyeSlashIconProps extends IconProps {
4695
+ interface HelpCircleIconProps extends IconProps {
4678
4696
  }
4679
4697
  /**
4680
- * Eye slash icon component - displays an eye slash icon.
4698
+ * Help circle icon component - displays a question mark inside a circle.
4681
4699
  *
4682
4700
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
4683
4701
  *
4684
4702
  * @example
4685
4703
  * ```tsx
4686
- * import { EyeSlashIcon } from '@scalably/ui';
4704
+ * import { HelpCircleIcon } from '@scalably/ui';
4687
4705
  *
4688
- * <EyeSlashIcon size={24} className="sui-text-primary" />
4706
+ * <HelpCircleIcon size={24} className="sui-text-primary" />
4689
4707
  * ```
4690
4708
  */
4691
- declare const EyeSlashIcon: {
4692
- (props: EyeSlashIconProps): react_jsx_runtime.JSX.Element;
4709
+ declare const HelpCircleIcon: {
4710
+ (props: HelpCircleIconProps): react_jsx_runtime.JSX.Element;
4693
4711
  displayName: string;
4694
4712
  };
4695
4713
 
4696
- interface GridIconProps extends IconProps {
4714
+ interface HomeFilledIconProps extends IconProps {
4697
4715
  }
4698
4716
  /**
4699
- * Grid icon component - displays a grid icon.
4717
+ * Home Filled icon component - displays a filled house/home icon.
4700
4718
  *
4701
4719
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
4720
+ * Use this as the active state paired with `HomeIcon` for the inactive state.
4702
4721
  *
4703
4722
  * @example
4704
4723
  * ```tsx
4705
- * import { GridIcon } from '@scalably/ui';
4724
+ * import { HomeFilledIcon } from '@scalably/ui';
4706
4725
  *
4707
- * <GridIcon size={24} className="sui-text-primary" />
4726
+ * <HomeFilledIcon size={24} className="sui-text-primary" />
4708
4727
  * ```
4709
4728
  */
4710
- declare const GridIcon: {
4711
- (props: GridIconProps): react_jsx_runtime.JSX.Element;
4729
+ declare const HomeFilledIcon: {
4730
+ (props: HomeFilledIconProps): react_jsx_runtime.JSX.Element;
4731
+ displayName: string;
4732
+ };
4733
+
4734
+ interface HomeIconProps extends IconProps {
4735
+ }
4736
+ /**
4737
+ * Home icon component - displays a house/home icon.
4738
+ *
4739
+ * This icon uses `currentColor`, so it can be styled with Tailwind classes.
4740
+ *
4741
+ * @example
4742
+ * ```tsx
4743
+ * import { HomeIcon } from '@scalably/ui';
4744
+ *
4745
+ * <HomeIcon size={24} className="sui-text-primary" />
4746
+ * ```
4747
+ */
4748
+ declare const HomeIcon: {
4749
+ (props: HomeIconProps): react_jsx_runtime.JSX.Element;
4750
+ displayName: string;
4751
+ };
4752
+
4753
+ interface InfoCircleIconProps extends IconProps {
4754
+ }
4755
+ /**
4756
+ * Info circle icon component - displays an information "i" inside a circle.
4757
+ *
4758
+ * This icon uses `currentColor`, so it can be styled with Tailwind classes.
4759
+ *
4760
+ * @example
4761
+ * ```tsx
4762
+ * import { InfoCircleIcon } from '@scalably/ui';
4763
+ *
4764
+ * <InfoCircleIcon size={24} className="sui-text-primary" />
4765
+ * ```
4766
+ */
4767
+ declare const InfoCircleIcon: {
4768
+ (props: InfoCircleIconProps): react_jsx_runtime.JSX.Element;
4712
4769
  displayName: string;
4713
4770
  };
4714
4771
 
@@ -4790,6 +4847,23 @@ declare const PaletteIcon: {
4790
4847
  displayName: string;
4791
4848
  };
4792
4849
 
4850
+ interface PlayIconProps extends IconProps {
4851
+ }
4852
+ /**
4853
+ * Play icon component - displays a play triangle icon.
4854
+ *
4855
+ * This icon uses `currentColor`, so it can be styled with CSS classes.
4856
+ *
4857
+ * @example
4858
+ * ```tsx
4859
+ * <PlayIcon size={24} className="sui-text-white" />
4860
+ * ```
4861
+ */
4862
+ declare const PlayIcon: {
4863
+ (props: PlayIconProps): react_jsx_runtime.JSX.Element;
4864
+ displayName: string;
4865
+ };
4866
+
4793
4867
  interface PlusIconProps extends IconProps {
4794
4868
  }
4795
4869
  /**
@@ -4968,21 +5042,4 @@ declare const WalletIcon: {
4968
5042
  displayName: string;
4969
5043
  };
4970
5044
 
4971
- interface PlayIconProps extends IconProps {
4972
- }
4973
- /**
4974
- * Play icon component - displays a play triangle icon.
4975
- *
4976
- * This icon uses `currentColor`, so it can be styled with CSS classes.
4977
- *
4978
- * @example
4979
- * ```tsx
4980
- * <PlayIcon size={24} className="sui-text-white" />
4981
- * ```
4982
- */
4983
- declare const PlayIcon: {
4984
- (props: PlayIconProps): react_jsx_runtime.JSX.Element;
4985
- displayName: string;
4986
- };
4987
-
4988
- 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, 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, type GetCroppedImgOptions, GmailIcon, type GmailIconProps, GridIcon, type GridIconProps, GroupAvatar, 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, 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, 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, YoutubeIcon, type YoutubeIconProps, clampDate, cn, daysGrid, debounce, defaultAssets, extensionToMimeType, fieldErrorToProps, formatAcceptedFileTypes, formatDateLocalized, getCroppedImg, logoAssets, mimeTypeToDisplayName, monthsForLocale, normalizeAcceptedFileTypes, scopeClass, throttle, toDateKey, validateFileTypeAndSize, weekdaysForLocale, welcomeAssets, zodErrorsToSummary };
5045
+ 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, 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, 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, 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
@@ -4596,6 +4596,25 @@ declare const EyeIcon: {
4596
4596
  displayName: string;
4597
4597
  };
4598
4598
 
4599
+ interface EyeSlashIconProps extends IconProps {
4600
+ }
4601
+ /**
4602
+ * Eye slash icon component - displays an eye slash icon.
4603
+ *
4604
+ * This icon uses `currentColor`, so it can be styled with Tailwind classes.
4605
+ *
4606
+ * @example
4607
+ * ```tsx
4608
+ * import { EyeSlashIcon } from '@scalably/ui';
4609
+ *
4610
+ * <EyeSlashIcon size={24} className="sui-text-primary" />
4611
+ * ```
4612
+ */
4613
+ declare const EyeSlashIcon: {
4614
+ (props: EyeSlashIconProps): react_jsx_runtime.JSX.Element;
4615
+ displayName: string;
4616
+ };
4617
+
4599
4618
  interface FeedFilledIconProps extends IconProps {
4600
4619
  }
4601
4620
  /**
@@ -4635,80 +4654,118 @@ declare const FeedIcon: {
4635
4654
  displayName: string;
4636
4655
  };
4637
4656
 
4638
- interface HomeFilledIconProps extends IconProps {
4657
+ interface ForwardIconProps extends IconProps {
4639
4658
  }
4640
4659
  /**
4641
- * Home Filled icon component - displays a filled house/home icon.
4660
+ * Forward icon component - displays a forward arrow.
4642
4661
  *
4643
4662
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
4644
- * Use this as the active state paired with `HomeIcon` for the inactive state.
4645
4663
  *
4646
4664
  * @example
4647
4665
  * ```tsx
4648
- * import { HomeFilledIcon } from '@scalably/ui';
4666
+ * import { ForwardIcon } from '@scalably/ui';
4649
4667
  *
4650
- * <HomeFilledIcon size={24} className="sui-text-primary" />
4668
+ * <ForwardIcon size={24} className="sui-text-primary" />
4651
4669
  * ```
4652
4670
  */
4653
- declare const HomeFilledIcon: {
4654
- (props: HomeFilledIconProps): react_jsx_runtime.JSX.Element;
4671
+ declare const ForwardIcon: {
4672
+ (props: ForwardIconProps): react_jsx_runtime.JSX.Element;
4655
4673
  displayName: string;
4656
4674
  };
4657
4675
 
4658
- interface HomeIconProps extends IconProps {
4676
+ interface GridIconProps extends IconProps {
4659
4677
  }
4660
4678
  /**
4661
- * Home icon component - displays a house/home icon.
4679
+ * Grid icon component - displays a grid icon.
4662
4680
  *
4663
4681
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
4664
4682
  *
4665
4683
  * @example
4666
4684
  * ```tsx
4667
- * import { HomeIcon } from '@scalably/ui';
4685
+ * import { GridIcon } from '@scalably/ui';
4668
4686
  *
4669
- * <HomeIcon size={24} className="sui-text-primary" />
4687
+ * <GridIcon size={24} className="sui-text-primary" />
4670
4688
  * ```
4671
4689
  */
4672
- declare const HomeIcon: {
4673
- (props: HomeIconProps): react_jsx_runtime.JSX.Element;
4690
+ declare const GridIcon: {
4691
+ (props: GridIconProps): react_jsx_runtime.JSX.Element;
4674
4692
  displayName: string;
4675
4693
  };
4676
4694
 
4677
- interface EyeSlashIconProps extends IconProps {
4695
+ interface HelpCircleIconProps extends IconProps {
4678
4696
  }
4679
4697
  /**
4680
- * Eye slash icon component - displays an eye slash icon.
4698
+ * Help circle icon component - displays a question mark inside a circle.
4681
4699
  *
4682
4700
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
4683
4701
  *
4684
4702
  * @example
4685
4703
  * ```tsx
4686
- * import { EyeSlashIcon } from '@scalably/ui';
4704
+ * import { HelpCircleIcon } from '@scalably/ui';
4687
4705
  *
4688
- * <EyeSlashIcon size={24} className="sui-text-primary" />
4706
+ * <HelpCircleIcon size={24} className="sui-text-primary" />
4689
4707
  * ```
4690
4708
  */
4691
- declare const EyeSlashIcon: {
4692
- (props: EyeSlashIconProps): react_jsx_runtime.JSX.Element;
4709
+ declare const HelpCircleIcon: {
4710
+ (props: HelpCircleIconProps): react_jsx_runtime.JSX.Element;
4693
4711
  displayName: string;
4694
4712
  };
4695
4713
 
4696
- interface GridIconProps extends IconProps {
4714
+ interface HomeFilledIconProps extends IconProps {
4697
4715
  }
4698
4716
  /**
4699
- * Grid icon component - displays a grid icon.
4717
+ * Home Filled icon component - displays a filled house/home icon.
4700
4718
  *
4701
4719
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
4720
+ * Use this as the active state paired with `HomeIcon` for the inactive state.
4702
4721
  *
4703
4722
  * @example
4704
4723
  * ```tsx
4705
- * import { GridIcon } from '@scalably/ui';
4724
+ * import { HomeFilledIcon } from '@scalably/ui';
4706
4725
  *
4707
- * <GridIcon size={24} className="sui-text-primary" />
4726
+ * <HomeFilledIcon size={24} className="sui-text-primary" />
4708
4727
  * ```
4709
4728
  */
4710
- declare const GridIcon: {
4711
- (props: GridIconProps): react_jsx_runtime.JSX.Element;
4729
+ declare const HomeFilledIcon: {
4730
+ (props: HomeFilledIconProps): react_jsx_runtime.JSX.Element;
4731
+ displayName: string;
4732
+ };
4733
+
4734
+ interface HomeIconProps extends IconProps {
4735
+ }
4736
+ /**
4737
+ * Home icon component - displays a house/home icon.
4738
+ *
4739
+ * This icon uses `currentColor`, so it can be styled with Tailwind classes.
4740
+ *
4741
+ * @example
4742
+ * ```tsx
4743
+ * import { HomeIcon } from '@scalably/ui';
4744
+ *
4745
+ * <HomeIcon size={24} className="sui-text-primary" />
4746
+ * ```
4747
+ */
4748
+ declare const HomeIcon: {
4749
+ (props: HomeIconProps): react_jsx_runtime.JSX.Element;
4750
+ displayName: string;
4751
+ };
4752
+
4753
+ interface InfoCircleIconProps extends IconProps {
4754
+ }
4755
+ /**
4756
+ * Info circle icon component - displays an information "i" inside a circle.
4757
+ *
4758
+ * This icon uses `currentColor`, so it can be styled with Tailwind classes.
4759
+ *
4760
+ * @example
4761
+ * ```tsx
4762
+ * import { InfoCircleIcon } from '@scalably/ui';
4763
+ *
4764
+ * <InfoCircleIcon size={24} className="sui-text-primary" />
4765
+ * ```
4766
+ */
4767
+ declare const InfoCircleIcon: {
4768
+ (props: InfoCircleIconProps): react_jsx_runtime.JSX.Element;
4712
4769
  displayName: string;
4713
4770
  };
4714
4771
 
@@ -4790,6 +4847,23 @@ declare const PaletteIcon: {
4790
4847
  displayName: string;
4791
4848
  };
4792
4849
 
4850
+ interface PlayIconProps extends IconProps {
4851
+ }
4852
+ /**
4853
+ * Play icon component - displays a play triangle icon.
4854
+ *
4855
+ * This icon uses `currentColor`, so it can be styled with CSS classes.
4856
+ *
4857
+ * @example
4858
+ * ```tsx
4859
+ * <PlayIcon size={24} className="sui-text-white" />
4860
+ * ```
4861
+ */
4862
+ declare const PlayIcon: {
4863
+ (props: PlayIconProps): react_jsx_runtime.JSX.Element;
4864
+ displayName: string;
4865
+ };
4866
+
4793
4867
  interface PlusIconProps extends IconProps {
4794
4868
  }
4795
4869
  /**
@@ -4968,21 +5042,4 @@ declare const WalletIcon: {
4968
5042
  displayName: string;
4969
5043
  };
4970
5044
 
4971
- interface PlayIconProps extends IconProps {
4972
- }
4973
- /**
4974
- * Play icon component - displays a play triangle icon.
4975
- *
4976
- * This icon uses `currentColor`, so it can be styled with CSS classes.
4977
- *
4978
- * @example
4979
- * ```tsx
4980
- * <PlayIcon size={24} className="sui-text-white" />
4981
- * ```
4982
- */
4983
- declare const PlayIcon: {
4984
- (props: PlayIconProps): react_jsx_runtime.JSX.Element;
4985
- displayName: string;
4986
- };
4987
-
4988
- 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, 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, type GetCroppedImgOptions, GmailIcon, type GmailIconProps, GridIcon, type GridIconProps, GroupAvatar, 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, 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, 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, YoutubeIcon, type YoutubeIconProps, clampDate, cn, daysGrid, debounce, defaultAssets, extensionToMimeType, fieldErrorToProps, formatAcceptedFileTypes, formatDateLocalized, getCroppedImg, logoAssets, mimeTypeToDisplayName, monthsForLocale, normalizeAcceptedFileTypes, scopeClass, throttle, toDateKey, validateFileTypeAndSize, weekdaysForLocale, welcomeAssets, zodErrorsToSummary };
5045
+ 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, 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, 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, YoutubeIcon, type YoutubeIconProps, clampDate, cn, daysGrid, debounce, defaultAssets, extensionToMimeType, fieldErrorToProps, formatAcceptedFileTypes, formatDateLocalized, getCroppedImg, logoAssets, mimeTypeToDisplayName, monthsForLocale, normalizeAcceptedFileTypes, scopeClass, throttle, toDateKey, validateFileTypeAndSize, weekdaysForLocale, welcomeAssets, zodErrorsToSummary };