@scalably/ui 0.5.0 → 0.5.1

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
@@ -2407,6 +2407,15 @@ interface RichTextEditorProps {
2407
2407
  max: number;
2408
2408
  current: number;
2409
2409
  }) => void;
2410
+ /**
2411
+ * Controls when Tiptap renders the editor content.
2412
+ *
2413
+ * - Set to `false` when using SSR (e.g., Next.js) to prevent hydration mismatches.
2414
+ * - Set to `true` or leave undefined for client-side only rendering.
2415
+ *
2416
+ * @default undefined (Tiptap auto-detects, but you should explicitly set `false` for SSR)
2417
+ */
2418
+ immediatelyRender?: boolean;
2410
2419
  }
2411
2420
  /**
2412
2421
  * RichTextEditor - Controlled rich text editor built on top of Tiptap.
@@ -2429,7 +2438,12 @@ interface RichTextEditorProps {
2429
2438
  *
2430
2439
  * return (
2431
2440
  * <div>
2432
- * <RichTextEditor value={content} onChange={setContent} />
2441
+ * {/* For SSR (Next.js, etc.), set immediatelyRender={false} *\/}
2442
+ * <RichTextEditor
2443
+ * value={content}
2444
+ * onChange={setContent}
2445
+ * immediatelyRender={false}
2446
+ * />
2433
2447
  * <RichTextViewer content={content} />
2434
2448
  * </div>
2435
2449
  * );
@@ -2439,7 +2453,7 @@ interface RichTextEditorProps {
2439
2453
  * @see RichTextViewer - Read-only viewer component for displaying rich text content
2440
2454
  */
2441
2455
  declare const RichTextEditor: {
2442
- ({ value, onChange, label, error, helperText, placeholder, minHeight, simple, disabled, "data-testid": dataTestId, containerClassName, onImageUpload, imageSourceMode, maxCharacters, onMaxLengthExceed, }: RichTextEditorProps): react_jsx_runtime.JSX.Element;
2456
+ ({ value, onChange, label, error, helperText, placeholder, minHeight, simple, disabled, "data-testid": dataTestId, containerClassName, onImageUpload, imageSourceMode, maxCharacters, onMaxLengthExceed, immediatelyRender, }: RichTextEditorProps): react_jsx_runtime.JSX.Element;
2443
2457
  displayName: string;
2444
2458
  };
2445
2459
 
@@ -2722,8 +2736,6 @@ interface CalendarIconProps extends React.SVGProps<SVGSVGElement> {
2722
2736
  size?: number;
2723
2737
  /** Additional CSS classes to apply to the icon */
2724
2738
  className?: string;
2725
- /** Stroke width of the icon in pixels. Defaults to 1.5. */
2726
- strokeWidth?: number;
2727
2739
  }
2728
2740
  /**
2729
2741
  * Calendar icon component - displays a calendar with date indicators.
@@ -2770,8 +2782,6 @@ interface CheckIconProps extends React.SVGProps<SVGSVGElement> {
2770
2782
  size?: number;
2771
2783
  /** Additional CSS classes to apply to the icon */
2772
2784
  className?: string;
2773
- /** Stroke width of the icon in pixels. Defaults to 2.2. */
2774
- strokeWidth?: number;
2775
2785
  }
2776
2786
  /**
2777
2787
  * Check icon component - displays a checkmark in a green gradient circle.
@@ -2795,8 +2805,6 @@ interface CloseIconProps extends React.SVGProps<SVGSVGElement> {
2795
2805
  size?: number;
2796
2806
  /** Additional CSS classes to apply to the icon */
2797
2807
  className?: string;
2798
- /** Stroke width of the icon in pixels. Defaults to 1.5. */
2799
- strokeWidth?: number;
2800
2808
  }
2801
2809
  /**
2802
2810
  * Close icon component - displays a cross icon.
@@ -2835,8 +2843,6 @@ interface DropdownIconProps extends React.SVGProps<SVGSVGElement> {
2835
2843
  size?: number;
2836
2844
  /** Additional CSS classes to apply to the icon */
2837
2845
  className?: string;
2838
- /** Stroke width of the icon in pixels. Defaults to 2. */
2839
- strokeWidth?: number;
2840
2846
  }
2841
2847
  /**
2842
2848
  * Dropdown icon component - displays a down arrow icon.
@@ -2857,8 +2863,6 @@ interface DropUpIconProps extends React.SVGProps<SVGSVGElement> {
2857
2863
  size?: number;
2858
2864
  /** Additional CSS classes to apply to the icon */
2859
2865
  className?: string;
2860
- /** Stroke width of the icon in pixels. Defaults to 2. */
2861
- strokeWidth?: number;
2862
2866
  }
2863
2867
  /**
2864
2868
  * DropUp icon component - displays an up arrow icon.
@@ -2885,8 +2889,6 @@ interface ErrorIconProps extends React.SVGProps<SVGSVGElement> {
2885
2889
  size?: number;
2886
2890
  /** Additional CSS classes to apply to the icon */
2887
2891
  className?: string;
2888
- /** Stroke width of the icon in pixels. Defaults to 1.5. */
2889
- strokeWidth?: number;
2890
2892
  }
2891
2893
  /**
2892
2894
  * Error icon component - displays an error icon.
@@ -2902,6 +2904,46 @@ interface ErrorIconProps extends React.SVGProps<SVGSVGElement> {
2902
2904
  */
2903
2905
  declare const ErrorIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<ErrorIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
2904
2906
 
2907
+ interface EyeIconProps extends React.SVGProps<SVGSVGElement> {
2908
+ /** Size of the icon in pixels. Defaults to 24. */
2909
+ size?: number;
2910
+ /** Additional CSS classes to apply to the icon */
2911
+ className?: string;
2912
+ }
2913
+ /**
2914
+ * Eye icon component - displays an eye icon.
2915
+ *
2916
+ * This icon uses `currentColor`, so it can be styled with Tailwind classes.
2917
+ *
2918
+ * @example
2919
+ * ```tsx
2920
+ * import { EyeIcon } from '@scalably/ui';
2921
+ *
2922
+ * <EyeIcon size={24} className="sui-text-primary" />
2923
+ * ```
2924
+ */
2925
+ declare const EyeIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<EyeIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
2926
+
2927
+ interface EyeSlashIconProps extends React.SVGProps<SVGSVGElement> {
2928
+ /** Size of the icon in pixels. Defaults to 24. */
2929
+ size?: number;
2930
+ /** Additional CSS classes to apply to the icon */
2931
+ className?: string;
2932
+ }
2933
+ /**
2934
+ * Eye slash icon component - displays an eye slash icon.
2935
+ *
2936
+ * This icon uses `currentColor`, so it can be styled with Tailwind classes.
2937
+ *
2938
+ * @example
2939
+ * ```tsx
2940
+ * import { EyeSlashIcon } from '@scalably/ui';
2941
+ *
2942
+ * <EyeSlashIcon size={24} className="sui-text-primary" />
2943
+ * ```
2944
+ */
2945
+ declare const EyeSlashIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<EyeSlashIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
2946
+
2905
2947
  interface FileIconProps extends React.SVGProps<SVGSVGElement> {
2906
2948
  /** Size of the icon in pixels. Defaults to 24. */
2907
2949
  size?: number;
@@ -2925,8 +2967,6 @@ declare const FileIcon: react.MemoExoticComponent<react.ForwardRefExoticComponen
2925
2967
  interface FileUploadIconProps extends React.SVGProps<SVGSVGElement> {
2926
2968
  /** Size of the icon in pixels. Defaults to 24. */
2927
2969
  size?: number;
2928
- /** Stroke width of the icon in pixels. Defaults to 1.5. */
2929
- strokeWidth?: number;
2930
2970
  /** Additional CSS classes to apply to the icon */
2931
2971
  className?: string;
2932
2972
  }
@@ -2949,8 +2989,6 @@ interface GridIconProps extends React.SVGProps<SVGSVGElement> {
2949
2989
  size?: number;
2950
2990
  /** Additional CSS classes to apply to the icon */
2951
2991
  className?: string;
2952
- /** Stroke width of the icon in pixels. Defaults to 1.5. */
2953
- strokeWidth?: number;
2954
2992
  }
2955
2993
  /**
2956
2994
  * Grid icon component - displays a grid icon.
@@ -2989,8 +3027,6 @@ declare const ImageIcon: react.MemoExoticComponent<react.ForwardRefExoticCompone
2989
3027
  interface ImageUploadIconProps extends React.SVGProps<SVGSVGElement> {
2990
3028
  /** Size of the icon in pixels. Defaults to 24. */
2991
3029
  size?: number;
2992
- /** Stroke width of the icon in pixels. Defaults to 1.5. */
2993
- strokeWidth?: number;
2994
3030
  /** Additional CSS classes to apply to the icon */
2995
3031
  className?: string;
2996
3032
  }
@@ -3013,8 +3049,6 @@ interface IndeterminateIconProps extends React.SVGProps<SVGSVGElement> {
3013
3049
  size?: number;
3014
3050
  /** Additional CSS classes to apply to the icon */
3015
3051
  className?: string;
3016
- /** Stroke width of the icon in pixels. Defaults to 2. */
3017
- strokeWidth?: number;
3018
3052
  }
3019
3053
  /**
3020
3054
  * Indeterminate icon component - displays an indeterminate icon.
@@ -3035,8 +3069,6 @@ interface InfoIconProps extends React.SVGProps<SVGSVGElement> {
3035
3069
  size?: number;
3036
3070
  /** Additional CSS classes to apply to the icon */
3037
3071
  className?: string;
3038
- /** Stroke width of the icon in pixels. Defaults to 1.5. */
3039
- strokeWidth?: number;
3040
3072
  }
3041
3073
  /**
3042
3074
  * Info icon component - displays an info icon.
@@ -3057,8 +3089,6 @@ interface ListIconProps extends React.SVGProps<SVGSVGElement> {
3057
3089
  size?: number;
3058
3090
  /** Additional CSS classes to apply to the icon */
3059
3091
  className?: string;
3060
- /** Stroke width of the icon in pixels. Defaults to 1.5. */
3061
- strokeWidth?: number;
3062
3092
  }
3063
3093
  /**
3064
3094
  * List icon component - displays a list icon.
@@ -3079,8 +3109,6 @@ interface MinusIconProps extends React.SVGProps<SVGSVGElement> {
3079
3109
  size?: number;
3080
3110
  /** Additional CSS classes to apply to the icon */
3081
3111
  className?: string;
3082
- /** Stroke width of the icon in pixels. Defaults to 1.5. */
3083
- strokeWidth?: number;
3084
3112
  }
3085
3113
  /**
3086
3114
  * Minus icon component - displays a minus icon.
@@ -3124,8 +3152,6 @@ interface PlusIconProps extends React.SVGProps<SVGSVGElement> {
3124
3152
  size?: number;
3125
3153
  /** Additional CSS classes to apply to the icon */
3126
3154
  className?: string;
3127
- /** Stroke width of the icon in pixels. Defaults to 1.5. */
3128
- strokeWidth?: number;
3129
3155
  }
3130
3156
  /**
3131
3157
  * Plus icon component - displays a plus icon.
@@ -3210,8 +3236,6 @@ interface SearchIconProps extends React.SVGProps<SVGSVGElement> {
3210
3236
  size?: number;
3211
3237
  /** Additional CSS classes to apply to the icon */
3212
3238
  className?: string;
3213
- /** Stroke width of the icon in pixels. Defaults to 1.5. */
3214
- strokeWidth?: number;
3215
3239
  }
3216
3240
  /**
3217
3241
  * Search icon component - a magnifying glass icon for search functionality.
@@ -3232,8 +3256,6 @@ interface SettingsIconProps extends React.SVGProps<SVGSVGElement> {
3232
3256
  size?: number;
3233
3257
  /** Additional CSS classes to apply to the icon */
3234
3258
  className?: string;
3235
- /** Stroke width of the icon in pixels. Defaults to 1.5. */
3236
- strokeWidth?: number;
3237
3259
  }
3238
3260
  /**
3239
3261
  * Settings icon component - displays a settings icon.
@@ -3257,8 +3279,6 @@ interface SuccessIconProps extends React.SVGProps<SVGSVGElement> {
3257
3279
  size?: number;
3258
3280
  /** Additional CSS classes to apply to the icon */
3259
3281
  className?: string;
3260
- /** Stroke width of the icon in pixels. Defaults to 1.5. */
3261
- strokeWidth?: number;
3262
3282
  }
3263
3283
  /**
3264
3284
  * Success icon component - displays a checkmark in a green gradient circle.
@@ -3280,8 +3300,6 @@ interface TickIconProps extends React.SVGProps<SVGSVGElement> {
3280
3300
  size?: number;
3281
3301
  /** Additional CSS classes to apply to the icon */
3282
3302
  className?: string;
3283
- /** Stroke width of the icon in pixels. Defaults to 1.5. */
3284
- strokeWidth?: number;
3285
3303
  }
3286
3304
  /**
3287
3305
  * Tick icon component - displays a tick icon.
@@ -3302,8 +3320,6 @@ interface ToFirstIconProps extends React.SVGProps<SVGSVGElement> {
3302
3320
  size?: number;
3303
3321
  /** Additional CSS classes to apply to the icon */
3304
3322
  className?: string;
3305
- /** Stroke width of the icon in pixels. Defaults to 1.5. */
3306
- strokeWidth?: number;
3307
3323
  }
3308
3324
  /**
3309
3325
  * ToFirst icon component - displays a to first icon.
@@ -3324,8 +3340,6 @@ interface ToLastIconProps extends React.SVGProps<SVGSVGElement> {
3324
3340
  size?: number;
3325
3341
  /** Additional CSS classes to apply to the icon */
3326
3342
  className?: string;
3327
- /** Stroke width of the icon in pixels. Defaults to 1.5. */
3328
- strokeWidth?: number;
3329
3343
  }
3330
3344
  /**
3331
3345
  * ToLast icon component - displays a to last icon.
@@ -3346,8 +3360,6 @@ interface ToNextIconProps extends React.SVGProps<SVGSVGElement> {
3346
3360
  size?: number;
3347
3361
  /** Additional CSS classes to apply to the icon */
3348
3362
  className?: string;
3349
- /** Stroke width of the icon in pixels. Defaults to 1.5. */
3350
- strokeWidth?: number;
3351
3363
  }
3352
3364
  /**
3353
3365
  * ToNext icon component - displays a to next icon.
@@ -3368,8 +3380,6 @@ interface ToPreviousIconProps extends React.SVGProps<SVGSVGElement> {
3368
3380
  size?: number;
3369
3381
  /** Additional CSS classes to apply to the icon */
3370
3382
  className?: string;
3371
- /** Stroke width of the icon in pixels. Defaults to 1.5. */
3372
- strokeWidth?: number;
3373
3383
  }
3374
3384
  /**
3375
3385
  * ToPrevious icon component - displays a to previous icon.
@@ -3385,6 +3395,26 @@ interface ToPreviousIconProps extends React.SVGProps<SVGSVGElement> {
3385
3395
  */
3386
3396
  declare const ToPreviousIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<ToPreviousIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3387
3397
 
3398
+ interface TranslateIconProps extends React.SVGProps<SVGSVGElement> {
3399
+ /** Size of the icon in pixels. Defaults to 24. */
3400
+ size?: number;
3401
+ /** Additional CSS classes to apply to the icon */
3402
+ className?: string;
3403
+ }
3404
+ /**
3405
+ * Translate icon component - displays a translate icon.
3406
+ *
3407
+ * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3408
+ *
3409
+ * @example
3410
+ * ```tsx
3411
+ * import { TranslateIcon } from '@scalably/ui';
3412
+ *
3413
+ * <TranslateIcon size={24} className="sui-text-primary" />
3414
+ * ```
3415
+ */
3416
+ declare const TranslateIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<TranslateIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3417
+
3388
3418
  interface VideoIconProps extends React.SVGProps<SVGSVGElement> {
3389
3419
  /** Size of the icon in pixels. Defaults to 24. */
3390
3420
  size?: number;
@@ -3408,8 +3438,6 @@ declare const VideoIcon: react.MemoExoticComponent<react.ForwardRefExoticCompone
3408
3438
  interface VideoUploadIconProps extends React.SVGProps<SVGSVGElement> {
3409
3439
  /** Size of the icon in pixels. Defaults to 24. */
3410
3440
  size?: number;
3411
- /** Stroke width of the icon in pixels. Defaults to 1.5. */
3412
- strokeWidth?: number;
3413
3441
  /** Additional CSS classes to apply to the icon */
3414
3442
  className?: string;
3415
3443
  }
@@ -3432,8 +3460,6 @@ interface WarnIconProps extends React.SVGProps<SVGSVGElement> {
3432
3460
  size?: number;
3433
3461
  /** Additional CSS classes to apply to the icon */
3434
3462
  className?: string;
3435
- /** Stroke width of the icon in pixels. Defaults to 1.5. */
3436
- strokeWidth?: number;
3437
3463
  }
3438
3464
  /**
3439
3465
  * Warn icon component - displays a warn icon.
@@ -3797,8 +3823,6 @@ interface AlignCenterIconProps extends React.SVGProps<SVGSVGElement> {
3797
3823
  size?: number;
3798
3824
  /** Additional CSS classes to apply to the icon */
3799
3825
  className?: string;
3800
- /** Stroke width of the icon in pixels. Defaults to 1.5. */
3801
- strokeWidth?: number;
3802
3826
  }
3803
3827
  declare const AlignCenterIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<AlignCenterIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3804
3828
 
@@ -3807,8 +3831,6 @@ interface AlignLeftIconProps extends React.SVGProps<SVGSVGElement> {
3807
3831
  size?: number;
3808
3832
  /** Additional CSS classes to apply to the icon */
3809
3833
  className?: string;
3810
- /** Stroke width of the icon in pixels. Defaults to 1.5. */
3811
- strokeWidth?: number;
3812
3834
  }
3813
3835
  declare const AlignLeftIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<AlignLeftIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3814
3836
 
@@ -3817,8 +3839,6 @@ interface AlignRightIconProps extends React.SVGProps<SVGSVGElement> {
3817
3839
  size?: number;
3818
3840
  /** Additional CSS classes to apply to the icon */
3819
3841
  className?: string;
3820
- /** Stroke width of the icon in pixels. Defaults to 1.5. */
3821
- strokeWidth?: number;
3822
3842
  }
3823
3843
  declare const AlignRightIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<AlignRightIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3824
3844
 
@@ -3827,8 +3847,6 @@ interface BoldIconProps extends React.SVGProps<SVGSVGElement> {
3827
3847
  size?: number;
3828
3848
  /** Additional CSS classes to apply to the icon */
3829
3849
  className?: string;
3830
- /** Stroke width of the icon in pixels. Defaults to 1.5. */
3831
- strokeWidth?: number;
3832
3850
  }
3833
3851
  /**
3834
3852
  * Bold icon component - displays a bold icon.
@@ -3865,8 +3883,6 @@ interface ItalicIconProps extends React.SVGProps<SVGSVGElement> {
3865
3883
  size?: number;
3866
3884
  /** Additional CSS classes to apply to the icon */
3867
3885
  className?: string;
3868
- /** Stroke width of the icon in pixels. Defaults to 1.5. */
3869
- strokeWidth?: number;
3870
3886
  }
3871
3887
  /**
3872
3888
  * Italic icon component - displays an italic icon.
@@ -3911,8 +3927,6 @@ interface UnderlineIconProps extends React.SVGProps<SVGSVGElement> {
3911
3927
  size?: number;
3912
3928
  /** Additional CSS classes to apply to the icon */
3913
3929
  className?: string;
3914
- /** Stroke width of the icon in pixels. Defaults to 1.5. */
3915
- strokeWidth?: number;
3916
3930
  }
3917
3931
  /**
3918
3932
  * Underline icon component - displays an underline icon.
@@ -3928,4 +3942,4 @@ interface UnderlineIconProps extends React.SVGProps<SVGSVGElement> {
3928
3942
  */
3929
3943
  declare const UnderlineIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<UnderlineIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3930
3944
 
3931
- 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, BoldIcon, type BoldIconProps, Button, type ButtonProps, type ButtonSize, type ButtonVariant, CalendarIcon, type CalendarIconProps, CampaignLogo, CaptureIcon, type CaptureIconProps, 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, type DividerProps, type DividerVariant, DropUpIcon, type DropUpIconProps, DropdownIcon, type DropdownIconProps, EditIcon, type EditIconProps, ErrorIcon, type ErrorIconProps, FacebookIcon, type FacebookIconProps, type FieldErrorLike, FileIcon, type FileIconProps, FileUpload, type FileUploadError, type FileUploadFile, FileUploadIcon, type FileUploadIconProps, type FileUploadIconType, type FileUploadProps, type FileUploadSize, type FileUploadVariant, Form, type FormErrorItem, FormErrorSummary, type FormErrorSummaryProps, FormField, type FormFieldProps, type FormProps, type GetCroppedImgOptions, GmailIcon, type GmailIconProps, GridIcon, type GridIconProps, GroupAvatar, IconBigLogo, IconLogo, ImageCrop, ImageCropModal, type ImageCropModalProps, type ImageCropProps, 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, MessengerIcon, type MessengerIconProps, MinusIcon, type MinusIconProps, MultipleSelectionButton, type MultipleSelectionButtonProps, MultipleSelectionIcon, type MultipleSelectionIconProps, Pagination, type PaginationProps, PlusIcon, type PlusIconProps, ProfileAvatar, QuantityInput, type QuantityInputProps, Radio, RadioGroup, type RadioGroupOption, type RadioGroupProps, type RadioProps, type RangeValue, 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, SignalIcon, type SignalIconProps, Skeleton, type SkeletonProps, type SkeletonSize, SkeletonText, type SkeletonTextProps, type SkeletonVariant, SlackIcon, type SlackIconProps, 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, 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, TwitchIcon, type TwitchIconProps, UnderlineIcon, type UnderlineIconProps, VideoIcon, type VideoIconProps, VideoUploadIcon, type VideoUploadIconProps, type ViewMode, ViewToggle, type ViewToggleProps, 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 };
3945
+ 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, BoldIcon, type BoldIconProps, Button, type ButtonProps, type ButtonSize, type ButtonVariant, CalendarIcon, type CalendarIconProps, CampaignLogo, CaptureIcon, type CaptureIconProps, 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, type DividerProps, type DividerVariant, DropUpIcon, type DropUpIconProps, DropdownIcon, type DropdownIconProps, EditIcon, type EditIconProps, ErrorIcon, type ErrorIconProps, EyeIcon, type EyeIconProps, EyeSlashIcon, type EyeSlashIconProps, FacebookIcon, type FacebookIconProps, type FieldErrorLike, FileIcon, type FileIconProps, FileUpload, type FileUploadError, type FileUploadFile, FileUploadIcon, type FileUploadIconProps, type FileUploadIconType, type FileUploadProps, type FileUploadSize, type FileUploadVariant, Form, type FormErrorItem, FormErrorSummary, type FormErrorSummaryProps, FormField, type FormFieldProps, type FormProps, type GetCroppedImgOptions, GmailIcon, type GmailIconProps, GridIcon, type GridIconProps, GroupAvatar, IconBigLogo, IconLogo, ImageCrop, ImageCropModal, type ImageCropModalProps, type ImageCropProps, 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, MessengerIcon, type MessengerIconProps, MinusIcon, type MinusIconProps, MultipleSelectionButton, type MultipleSelectionButtonProps, MultipleSelectionIcon, type MultipleSelectionIconProps, Pagination, type PaginationProps, PlusIcon, type PlusIconProps, ProfileAvatar, QuantityInput, type QuantityInputProps, Radio, RadioGroup, type RadioGroupOption, type RadioGroupProps, type RadioProps, type RangeValue, 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, SignalIcon, type SignalIconProps, Skeleton, type SkeletonProps, type SkeletonSize, SkeletonText, type SkeletonTextProps, type SkeletonVariant, SlackIcon, type SlackIconProps, 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, 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, VideoIcon, type VideoIconProps, VideoUploadIcon, type VideoUploadIconProps, type ViewMode, ViewToggle, type ViewToggleProps, 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 };