@scalably/ui 0.10.4 → 0.11.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/README.md CHANGED
@@ -7,7 +7,9 @@
7
7
  ![TypeScript](https://img.shields.io/badge/TypeScript-5.9.3-blue)
8
8
  ![Node](https://img.shields.io/badge/Node-%3E%3D18-green)
9
9
  ![React](https://img.shields.io/badge/React-%3E%3D18-blue)
10
+ ![Tailwind](https://img.shields.io/badge/Tailwind-3.4-38bdf8?logo=tailwindcss&logoColor=white)
10
11
  ![Coverage](https://img.shields.io/badge/coverage-vitest-blue)
12
+ ![Maintained](https://img.shields.io/badge/maintained-yes-brightgreen)
11
13
 
12
14
  A modern, accessible, and fully isolated React component library built with TypeScript and Tailwind CSS. Designed to work seamlessly across multiple projects without style conflicts.
13
15
 
@@ -50,9 +52,10 @@ export default function App() {
50
52
  <Button className="sui-mt-4" type="submit">Submit</Button>
51
53
  </Form>
52
54
 
53
- {/* Toasts */}
54
- <ToastContainer />
55
- <Toast status="success" title="Welcome" description="You're all set." />
55
+ {/* Toasts: render each Toast inside ToastContainer for fixed stacking */}
56
+ <ToastContainer>
57
+ <Toast status="success" title="Welcome" message="You're all set." />
58
+ </ToastContainer>
56
59
  </main>
57
60
  </ScalablyUIProvider>
58
61
  );
@@ -91,7 +94,7 @@ Styles automatically work in portaled components (modals, tooltips, popovers, et
91
94
  </Tooltip>
92
95
  ```
93
96
 
94
- Note: Toasts in this library are intentionally declarative. Render a `Toast` inside a `ToastContainer` when you want it visible (e.g., based on component state). This avoids hidden globals and keeps UI state predictable. If you prefer an imperative API, you can wrap your own tiny helper around local state to toggle a `Toast` component.
97
+ Note: Toasts are declarative. Put each `Toast` **inside** `ToastContainer` so they stack in a fixed corner of the viewport (`Toast` is not positioned on its own). Toggle visibility with state; use `onClose` after auto-dismiss or when the user dismisses the toast to unmount or dequeue. `ToastContainer` accepts `position` (e.g. `top-right`, `bottom-center`), optional `width`, and `className`. `Toast` uses `message` for body text, `status` of `success` | `info` | `warn` | `error`, plus optional `actions`, `autoCloseMs`, and `showProgress`.
95
98
 
96
99
  ### 4. React import guidance
97
100
 
@@ -152,12 +155,12 @@ import {
152
155
  onChange={(date) => console.log(date)}
153
156
  />;
154
157
 
155
- // Toast notifications (declarative)
156
- <ToastContainer>
158
+ // Toast notifications (declarative; nest Toast inside ToastContainer)
159
+ <ToastContainer position="top-right">
157
160
  <Toast
158
161
  status="success"
159
162
  title="Success!"
160
- description="Your changes have been saved."
163
+ message="Your changes have been saved."
161
164
  />
162
165
  </ToastContainer>;
163
166
 
@@ -188,7 +191,7 @@ import {
188
191
  This library exposes a set of composable, production-ready primitives. The full list of exports is available in `src/index.ts`, but the main groups are:
189
192
 
190
193
  - **Form primitives**: `Form`, `FormField`, `FormErrorSummary`, `Input`, `SearchInput`, `QuantityInput`, `CheckBox`, `CheckBoxGroup`, `Radio`, `RadioGroup`, `Select`, `Switch`, `FileUpload`, `DateInput`, `DatePicker`, `TimePicker`
191
- - **Feedback & status**: `StatusBadge`, `Toast`, `ToastContainer`, `Skeleton`, `SkeletonText`, `Countdown`
194
+ - **Feedback & status**: `StatusBadge`, `Toast`, `ToastContainer` (with `ToastPosition`, stacking at viewport edge), `Skeleton`, `SkeletonText`, `Countdown`
192
195
  - **Layout & navigation**: `Tabs`, `TabsList`, `TabsTrigger`, `TabsContent`, `Pagination`, `BackToTop`, `ViewToggle`, `Divider`
193
196
  - **Content & rich text**: `RichTextEditor`, `RichTextViewer`, `Tooltip`, `AuthPrompt`, `LoadingScreen`, `WelcomeBackground`
194
197
  - **Media & brand**: `AvatarPlaceholder`, `Logo`, `logoAssets`, `defaultAssets`, `welcomeAssets` (all inline React SVGs—no static paths required)
package/dist/index.d.cts CHANGED
@@ -1387,6 +1387,70 @@ interface FormFieldProps {
1387
1387
  */
1388
1388
  declare const FormField: react.ForwardRefExoticComponent<FormFieldProps & react.RefAttributes<HTMLDivElement | HTMLFieldSetElement>>;
1389
1389
 
1390
+ interface TagProps extends React.HTMLAttributes<HTMLSpanElement> {
1391
+ /**
1392
+ * The text to display inside the tag.
1393
+ */
1394
+ value: string;
1395
+ /**
1396
+ * Text color of the tag.
1397
+ * @default "#2772F0"
1398
+ */
1399
+ textColor?: string;
1400
+ /**
1401
+ * Background color of the tag.
1402
+ * @default "#DAECFF"
1403
+ */
1404
+ backgroundColor?: string;
1405
+ }
1406
+ declare const Tag: react.ForwardRefExoticComponent<TagProps & react.RefAttributes<HTMLSpanElement>>;
1407
+
1408
+ interface TagInputProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "value" | "onChange"> {
1409
+ /**
1410
+ * The array of tags currently in the input.
1411
+ */
1412
+ value?: string[];
1413
+ /**
1414
+ * Callback function called when the tags change.
1415
+ */
1416
+ onChange?: (tags: string[]) => void;
1417
+ /**
1418
+ * Visual variant of the input.
1419
+ */
1420
+ variant?: "default" | "error";
1421
+ /**
1422
+ * Label for the input.
1423
+ */
1424
+ label?: string;
1425
+ /**
1426
+ * Error message to display.
1427
+ */
1428
+ error?: string;
1429
+ /**
1430
+ * Helper text to display.
1431
+ */
1432
+ helperText?: string;
1433
+ /**
1434
+ * Props to pass to the individual Tag components.
1435
+ */
1436
+ tagProps?: Partial<TagProps>;
1437
+ /**
1438
+ * Custom class name for the outer container.
1439
+ */
1440
+ containerClassName?: string;
1441
+ }
1442
+ /**
1443
+ * TagInput - A component that allows users to enter multiple items as tags.
1444
+ *
1445
+ * Features:
1446
+ * - Enter/Tab to add a new tag
1447
+ * - Backspace to remove the last tag when the input is empty
1448
+ * - Customizable tag and input styling
1449
+ * - Validation states (error)
1450
+ * - Support for label and helper text
1451
+ */
1452
+ declare const TagInput: react.ForwardRefExoticComponent<TagInputProps & react.RefAttributes<HTMLInputElement>>;
1453
+
1390
1454
  type PaginationBaseProps = Omit<React.HTMLAttributes<HTMLElement>, "onChange">;
1391
1455
  interface PaginationProps extends PaginationBaseProps {
1392
1456
  total?: number;
@@ -2090,54 +2154,86 @@ declare const CelebrationModal: {
2090
2154
  displayName: string;
2091
2155
  };
2092
2156
 
2157
+ /**
2158
+ * Semantic variant for a toast: default icon, border, background, and progress color.
2159
+ */
2093
2160
  type ToastStatus = "success" | "info" | "warn" | "error";
2161
+ /**
2162
+ * Configuration for one optional action control rendered beside the toast body.
2163
+ */
2094
2164
  interface ToastAction {
2165
+ /** Visible label for the action control. */
2095
2166
  label: string;
2167
+ /** Called when the user activates this action. */
2096
2168
  onClick: () => void;
2169
+ /**
2170
+ * Visual style for the action {@link Button}.
2171
+ * @defaultValue `"link"`
2172
+ */
2097
2173
  variant?: React.ComponentProps<typeof Button>["variant"];
2098
2174
  }
2175
+ /** Props for the `Toast` component. */
2099
2176
  interface ToastProps {
2177
+ /** Semantic status; controls default icon and color treatment. */
2100
2178
  status: ToastStatus;
2179
+ /** Primary heading line. */
2101
2180
  title: string;
2181
+ /** Optional supporting text shown under the title. */
2102
2182
  message?: string;
2183
+ /** Additional CSS classes merged onto the toast root element. */
2103
2184
  className?: string;
2185
+ /** Optional actions rendered as buttons; order is preserved. */
2104
2186
  actions?: ToastAction[];
2187
+ /**
2188
+ * Called after the toast has finished dismissing: following the exit animation when
2189
+ * motion is allowed, or immediately when the user prefers reduced motion.
2190
+ * Use this to unmount the toast or remove it from your queue.
2191
+ */
2105
2192
  onClose?: () => void;
2193
+ /**
2194
+ * Auto-dismiss duration in milliseconds. Set to `0` to disable auto-dismiss and the progress UI tied to it.
2195
+ * @defaultValue 5000
2196
+ */
2106
2197
  autoCloseMs?: number;
2198
+ /**
2199
+ * When `autoCloseMs` is greater than zero, shows the default or custom progress indicator.
2200
+ * @defaultValue true
2201
+ */
2107
2202
  showProgress?: boolean;
2108
- /** Custom icon for this toast (overrides status icon) */
2203
+ /**
2204
+ * Replaces the default status icon when set; ignored if `renderIcon` is provided.
2205
+ */
2109
2206
  customIcon?: React.ReactNode;
2110
- /** Custom render function for the icon */
2207
+ /**
2208
+ * Full control over icon rendering; takes precedence over `customIcon` and the default status icon.
2209
+ */
2111
2210
  renderIcon?: (status: ToastStatus) => React.ReactNode;
2112
- /** Custom render function for the close button */
2211
+ /**
2212
+ * Renders the dismiss control; receives `onClick` which must be invoked to start closing.
2213
+ */
2113
2214
  renderCloseButton?: (props: {
2114
2215
  onClick: () => void;
2115
2216
  }) => React.ReactNode;
2116
- /** Custom render function for the progress bar */
2217
+ /**
2218
+ * Renders the countdown/progress UI; receives remaining percentage (0–100) and status.
2219
+ */
2117
2220
  renderProgress?: (progress: number, status: ToastStatus) => React.ReactNode;
2118
- /** Hide the close button */
2221
+ /**
2222
+ * When `true`, the default dismiss button is not rendered (you may still use `renderCloseButton`).
2223
+ * @defaultValue false
2224
+ */
2119
2225
  hideCloseButton?: boolean;
2120
2226
  }
2121
2227
  /**
2122
- * Toast - A status notification component with auto-dismiss and action buttons.
2228
+ * Temporary status notification with optional actions, auto-dismiss, and an optional progress indicator.
2123
2229
  *
2124
- * Features:
2125
- * - Multiple status types: success, info, warn, error
2126
- * - Auto-dismiss with configurable timeout
2127
- * - Visual progress bar showing remaining time
2128
- * - Pauses on hover/focus for better UX
2129
- * - Optional action buttons
2130
- * - Manual close button
2131
- * - ARIA live region for screen reader announcements
2132
- * - Smooth animations
2133
- * - Fully customizable icons, close button, and progress bar
2230
+ * @remarks
2231
+ * - Uses `role="status"` (implicit polite live region) for assistive technologies.
2232
+ * - Auto-dismiss pauses while the pointer hovers over the toast or while focus is inside it.
2233
+ * - Enter and exit motion honors `prefers-reduced-motion`; when reduced, dismissal calls `onClose` without waiting for animation.
2234
+ * - For fixed positioning and stacking at a viewport edge, wrap instances in `ToastContainer`.
2134
2235
  *
2135
- * Customization:
2136
- * - `customIcon`: Replace the default status icon
2137
- * - `renderIcon`: Full control over icon rendering
2138
- * - `renderCloseButton`: Custom close button
2139
- * - `renderProgress`: Custom progress bar
2140
- * - `hideCloseButton`: Hide the close button
2236
+ * @see ToastContainer
2141
2237
  *
2142
2238
  * @example
2143
2239
  * ```tsx
@@ -2192,16 +2288,37 @@ interface ToastProps {
2192
2288
  */
2193
2289
  declare const Toast: React.FC<ToastProps>;
2194
2290
 
2291
+ /**
2292
+ * Corner or edge alignment for the fixed toast stack relative to the viewport.
2293
+ */
2195
2294
  type ToastPosition = "top-left" | "top-right" | "top-center" | "bottom-left" | "bottom-right" | "bottom-center";
2295
+ /**
2296
+ * Props for `ToastContainer`.
2297
+ */
2196
2298
  interface ToastContainerProps {
2299
+ /**
2300
+ * Where the stack is anchored on the screen.
2301
+ * @defaultValue `"top-right"`
2302
+ */
2197
2303
  position?: ToastPosition;
2304
+ /** Additional CSS classes for the outer fixed wrapper. */
2198
2305
  className?: string;
2306
+ /** Toasts or other content; each child is wrapped to restore pointer events. */
2199
2307
  children?: React.ReactNode;
2308
+ /**
2309
+ * Width of the inner column that holds toasts (number is treated as pixels).
2310
+ * @defaultValue `"420px"`
2311
+ */
2200
2312
  width?: number | string;
2201
2313
  }
2202
2314
  /**
2203
- * - Fixed-position portal region to stack toasts at screen edges.
2204
- * - Click-through outer wrapper with pointer-enabled children.
2315
+ * Fixed-position region for stacking one or more `Toast` instances at a viewport edge.
2316
+ *
2317
+ * @remarks
2318
+ * - The outer layer uses `pointer-events: none` so clicks pass through empty space; each child is wrapped with `pointer-events: auto` so toasts and controls remain interactive.
2319
+ * - Sets `role="region"` and `aria-live="polite"` on the outer element for screen reader context when content updates.
2320
+ *
2321
+ * @see Toast
2205
2322
  */
2206
2323
  declare const ToastContainer: React.FC<ToastContainerProps>;
2207
2324
 
@@ -3078,24 +3195,6 @@ interface ScalablyUIProviderProps {
3078
3195
  */
3079
3196
  declare const ScalablyUIProvider: React.FC<ScalablyUIProviderProps>;
3080
3197
 
3081
- interface TagProps extends React.HTMLAttributes<HTMLSpanElement> {
3082
- /**
3083
- * The text to display inside the tag.
3084
- */
3085
- value: string;
3086
- /**
3087
- * Text color of the tag.
3088
- * @default "#2772F0"
3089
- */
3090
- textColor?: string;
3091
- /**
3092
- * Background color of the tag.
3093
- * @default "#DAECFF"
3094
- */
3095
- backgroundColor?: string;
3096
- }
3097
- declare const Tag: react.ForwardRefExoticComponent<TagProps & react.RefAttributes<HTMLSpanElement>>;
3098
-
3099
3198
  /**
3100
3199
  * Type for class values accepted by clsx
3101
3200
  */
@@ -4826,4 +4925,4 @@ declare const PlayIcon: {
4826
4925
  displayName: string;
4827
4926
  };
4828
4927
 
4829
- 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, 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, 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, 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 };
4928
+ 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, 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, 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
@@ -1387,6 +1387,70 @@ interface FormFieldProps {
1387
1387
  */
1388
1388
  declare const FormField: react.ForwardRefExoticComponent<FormFieldProps & react.RefAttributes<HTMLDivElement | HTMLFieldSetElement>>;
1389
1389
 
1390
+ interface TagProps extends React.HTMLAttributes<HTMLSpanElement> {
1391
+ /**
1392
+ * The text to display inside the tag.
1393
+ */
1394
+ value: string;
1395
+ /**
1396
+ * Text color of the tag.
1397
+ * @default "#2772F0"
1398
+ */
1399
+ textColor?: string;
1400
+ /**
1401
+ * Background color of the tag.
1402
+ * @default "#DAECFF"
1403
+ */
1404
+ backgroundColor?: string;
1405
+ }
1406
+ declare const Tag: react.ForwardRefExoticComponent<TagProps & react.RefAttributes<HTMLSpanElement>>;
1407
+
1408
+ interface TagInputProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "value" | "onChange"> {
1409
+ /**
1410
+ * The array of tags currently in the input.
1411
+ */
1412
+ value?: string[];
1413
+ /**
1414
+ * Callback function called when the tags change.
1415
+ */
1416
+ onChange?: (tags: string[]) => void;
1417
+ /**
1418
+ * Visual variant of the input.
1419
+ */
1420
+ variant?: "default" | "error";
1421
+ /**
1422
+ * Label for the input.
1423
+ */
1424
+ label?: string;
1425
+ /**
1426
+ * Error message to display.
1427
+ */
1428
+ error?: string;
1429
+ /**
1430
+ * Helper text to display.
1431
+ */
1432
+ helperText?: string;
1433
+ /**
1434
+ * Props to pass to the individual Tag components.
1435
+ */
1436
+ tagProps?: Partial<TagProps>;
1437
+ /**
1438
+ * Custom class name for the outer container.
1439
+ */
1440
+ containerClassName?: string;
1441
+ }
1442
+ /**
1443
+ * TagInput - A component that allows users to enter multiple items as tags.
1444
+ *
1445
+ * Features:
1446
+ * - Enter/Tab to add a new tag
1447
+ * - Backspace to remove the last tag when the input is empty
1448
+ * - Customizable tag and input styling
1449
+ * - Validation states (error)
1450
+ * - Support for label and helper text
1451
+ */
1452
+ declare const TagInput: react.ForwardRefExoticComponent<TagInputProps & react.RefAttributes<HTMLInputElement>>;
1453
+
1390
1454
  type PaginationBaseProps = Omit<React.HTMLAttributes<HTMLElement>, "onChange">;
1391
1455
  interface PaginationProps extends PaginationBaseProps {
1392
1456
  total?: number;
@@ -2090,54 +2154,86 @@ declare const CelebrationModal: {
2090
2154
  displayName: string;
2091
2155
  };
2092
2156
 
2157
+ /**
2158
+ * Semantic variant for a toast: default icon, border, background, and progress color.
2159
+ */
2093
2160
  type ToastStatus = "success" | "info" | "warn" | "error";
2161
+ /**
2162
+ * Configuration for one optional action control rendered beside the toast body.
2163
+ */
2094
2164
  interface ToastAction {
2165
+ /** Visible label for the action control. */
2095
2166
  label: string;
2167
+ /** Called when the user activates this action. */
2096
2168
  onClick: () => void;
2169
+ /**
2170
+ * Visual style for the action {@link Button}.
2171
+ * @defaultValue `"link"`
2172
+ */
2097
2173
  variant?: React.ComponentProps<typeof Button>["variant"];
2098
2174
  }
2175
+ /** Props for the `Toast` component. */
2099
2176
  interface ToastProps {
2177
+ /** Semantic status; controls default icon and color treatment. */
2100
2178
  status: ToastStatus;
2179
+ /** Primary heading line. */
2101
2180
  title: string;
2181
+ /** Optional supporting text shown under the title. */
2102
2182
  message?: string;
2183
+ /** Additional CSS classes merged onto the toast root element. */
2103
2184
  className?: string;
2185
+ /** Optional actions rendered as buttons; order is preserved. */
2104
2186
  actions?: ToastAction[];
2187
+ /**
2188
+ * Called after the toast has finished dismissing: following the exit animation when
2189
+ * motion is allowed, or immediately when the user prefers reduced motion.
2190
+ * Use this to unmount the toast or remove it from your queue.
2191
+ */
2105
2192
  onClose?: () => void;
2193
+ /**
2194
+ * Auto-dismiss duration in milliseconds. Set to `0` to disable auto-dismiss and the progress UI tied to it.
2195
+ * @defaultValue 5000
2196
+ */
2106
2197
  autoCloseMs?: number;
2198
+ /**
2199
+ * When `autoCloseMs` is greater than zero, shows the default or custom progress indicator.
2200
+ * @defaultValue true
2201
+ */
2107
2202
  showProgress?: boolean;
2108
- /** Custom icon for this toast (overrides status icon) */
2203
+ /**
2204
+ * Replaces the default status icon when set; ignored if `renderIcon` is provided.
2205
+ */
2109
2206
  customIcon?: React.ReactNode;
2110
- /** Custom render function for the icon */
2207
+ /**
2208
+ * Full control over icon rendering; takes precedence over `customIcon` and the default status icon.
2209
+ */
2111
2210
  renderIcon?: (status: ToastStatus) => React.ReactNode;
2112
- /** Custom render function for the close button */
2211
+ /**
2212
+ * Renders the dismiss control; receives `onClick` which must be invoked to start closing.
2213
+ */
2113
2214
  renderCloseButton?: (props: {
2114
2215
  onClick: () => void;
2115
2216
  }) => React.ReactNode;
2116
- /** Custom render function for the progress bar */
2217
+ /**
2218
+ * Renders the countdown/progress UI; receives remaining percentage (0–100) and status.
2219
+ */
2117
2220
  renderProgress?: (progress: number, status: ToastStatus) => React.ReactNode;
2118
- /** Hide the close button */
2221
+ /**
2222
+ * When `true`, the default dismiss button is not rendered (you may still use `renderCloseButton`).
2223
+ * @defaultValue false
2224
+ */
2119
2225
  hideCloseButton?: boolean;
2120
2226
  }
2121
2227
  /**
2122
- * Toast - A status notification component with auto-dismiss and action buttons.
2228
+ * Temporary status notification with optional actions, auto-dismiss, and an optional progress indicator.
2123
2229
  *
2124
- * Features:
2125
- * - Multiple status types: success, info, warn, error
2126
- * - Auto-dismiss with configurable timeout
2127
- * - Visual progress bar showing remaining time
2128
- * - Pauses on hover/focus for better UX
2129
- * - Optional action buttons
2130
- * - Manual close button
2131
- * - ARIA live region for screen reader announcements
2132
- * - Smooth animations
2133
- * - Fully customizable icons, close button, and progress bar
2230
+ * @remarks
2231
+ * - Uses `role="status"` (implicit polite live region) for assistive technologies.
2232
+ * - Auto-dismiss pauses while the pointer hovers over the toast or while focus is inside it.
2233
+ * - Enter and exit motion honors `prefers-reduced-motion`; when reduced, dismissal calls `onClose` without waiting for animation.
2234
+ * - For fixed positioning and stacking at a viewport edge, wrap instances in `ToastContainer`.
2134
2235
  *
2135
- * Customization:
2136
- * - `customIcon`: Replace the default status icon
2137
- * - `renderIcon`: Full control over icon rendering
2138
- * - `renderCloseButton`: Custom close button
2139
- * - `renderProgress`: Custom progress bar
2140
- * - `hideCloseButton`: Hide the close button
2236
+ * @see ToastContainer
2141
2237
  *
2142
2238
  * @example
2143
2239
  * ```tsx
@@ -2192,16 +2288,37 @@ interface ToastProps {
2192
2288
  */
2193
2289
  declare const Toast: React.FC<ToastProps>;
2194
2290
 
2291
+ /**
2292
+ * Corner or edge alignment for the fixed toast stack relative to the viewport.
2293
+ */
2195
2294
  type ToastPosition = "top-left" | "top-right" | "top-center" | "bottom-left" | "bottom-right" | "bottom-center";
2295
+ /**
2296
+ * Props for `ToastContainer`.
2297
+ */
2196
2298
  interface ToastContainerProps {
2299
+ /**
2300
+ * Where the stack is anchored on the screen.
2301
+ * @defaultValue `"top-right"`
2302
+ */
2197
2303
  position?: ToastPosition;
2304
+ /** Additional CSS classes for the outer fixed wrapper. */
2198
2305
  className?: string;
2306
+ /** Toasts or other content; each child is wrapped to restore pointer events. */
2199
2307
  children?: React.ReactNode;
2308
+ /**
2309
+ * Width of the inner column that holds toasts (number is treated as pixels).
2310
+ * @defaultValue `"420px"`
2311
+ */
2200
2312
  width?: number | string;
2201
2313
  }
2202
2314
  /**
2203
- * - Fixed-position portal region to stack toasts at screen edges.
2204
- * - Click-through outer wrapper with pointer-enabled children.
2315
+ * Fixed-position region for stacking one or more `Toast` instances at a viewport edge.
2316
+ *
2317
+ * @remarks
2318
+ * - The outer layer uses `pointer-events: none` so clicks pass through empty space; each child is wrapped with `pointer-events: auto` so toasts and controls remain interactive.
2319
+ * - Sets `role="region"` and `aria-live="polite"` on the outer element for screen reader context when content updates.
2320
+ *
2321
+ * @see Toast
2205
2322
  */
2206
2323
  declare const ToastContainer: React.FC<ToastContainerProps>;
2207
2324
 
@@ -3078,24 +3195,6 @@ interface ScalablyUIProviderProps {
3078
3195
  */
3079
3196
  declare const ScalablyUIProvider: React.FC<ScalablyUIProviderProps>;
3080
3197
 
3081
- interface TagProps extends React.HTMLAttributes<HTMLSpanElement> {
3082
- /**
3083
- * The text to display inside the tag.
3084
- */
3085
- value: string;
3086
- /**
3087
- * Text color of the tag.
3088
- * @default "#2772F0"
3089
- */
3090
- textColor?: string;
3091
- /**
3092
- * Background color of the tag.
3093
- * @default "#DAECFF"
3094
- */
3095
- backgroundColor?: string;
3096
- }
3097
- declare const Tag: react.ForwardRefExoticComponent<TagProps & react.RefAttributes<HTMLSpanElement>>;
3098
-
3099
3198
  /**
3100
3199
  * Type for class values accepted by clsx
3101
3200
  */
@@ -4826,4 +4925,4 @@ declare const PlayIcon: {
4826
4925
  displayName: string;
4827
4926
  };
4828
4927
 
4829
- 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, 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, 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, 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 };
4928
+ 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, 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, 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 };