@scalably/ui 0.6.3 → 0.6.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.cts +79 -72
- package/dist/index.d.ts +79 -72
- package/dist/index.esm.js +4 -4
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -176,6 +176,26 @@ interface StatusBadgeProps extends Omit<React.HTMLAttributes<HTMLSpanElement>, "
|
|
|
176
176
|
}
|
|
177
177
|
declare const StatusBadge: react.ForwardRefExoticComponent<StatusBadgeProps & react.RefAttributes<HTMLSpanElement>>;
|
|
178
178
|
|
|
179
|
+
type BottomNavigationToggleButtonOptions = {
|
|
180
|
+
/** Enable dragging the toggle button anywhere on screen. Defaults to true. */
|
|
181
|
+
draggable?: boolean;
|
|
182
|
+
/** Override the toggle button's size in pixels. Defaults to 48. */
|
|
183
|
+
size?: number;
|
|
184
|
+
/**
|
|
185
|
+
* Optional initial position of the toggle button in viewport coordinates.
|
|
186
|
+
* If omitted, the button appears near the bottom-right corner, just above the BottomNavigation.
|
|
187
|
+
*/
|
|
188
|
+
initialPosition?: {
|
|
189
|
+
x?: number;
|
|
190
|
+
y?: number;
|
|
191
|
+
};
|
|
192
|
+
/** Additional className for the toggle button. */
|
|
193
|
+
className?: string;
|
|
194
|
+
/** Aria label when the bottom navigation is visible (button hides it). */
|
|
195
|
+
ariaLabelClose?: string;
|
|
196
|
+
/** Aria label when the bottom navigation is hidden (button shows it). */
|
|
197
|
+
ariaLabelExpand?: string;
|
|
198
|
+
};
|
|
179
199
|
type BottomNavigationProps = {
|
|
180
200
|
/** Additional class name for the navigation container */
|
|
181
201
|
className?: string;
|
|
@@ -195,9 +215,41 @@ type BottomNavigationProps = {
|
|
|
195
215
|
showShadow?: boolean;
|
|
196
216
|
/** Custom z-index value when fixed. Defaults to 40. Modals/dialogs typically use z-50+. */
|
|
197
217
|
zIndex?: number;
|
|
198
|
-
/**
|
|
218
|
+
/** Controlled: hide the navigation (useful when modals/dialogs are open) */
|
|
199
219
|
hidden?: boolean;
|
|
220
|
+
/** Uncontrolled: initial hidden state when `hidden` is not provided. Defaults to false. */
|
|
221
|
+
defaultHidden?: boolean;
|
|
222
|
+
/** Callback when hidden state changes. */
|
|
223
|
+
onHiddenChange?: (hidden: boolean) => void;
|
|
224
|
+
/**
|
|
225
|
+
* Optional floating toggle button that can hide/unhide the BottomNavigation.
|
|
226
|
+
* Useful for patterns like your screenshot where the navigation can be collapsed.
|
|
227
|
+
*/
|
|
228
|
+
toggleButton?: boolean | BottomNavigationToggleButtonOptions;
|
|
200
229
|
};
|
|
230
|
+
type BottomNavigationItemProps = {
|
|
231
|
+
/** Unique value identifier for this item */
|
|
232
|
+
value: string;
|
|
233
|
+
/** Label text displayed below the icon */
|
|
234
|
+
label: string;
|
|
235
|
+
/** Icon displayed when inactive */
|
|
236
|
+
icon: ReactElement;
|
|
237
|
+
/** Icon displayed when active (optional, defaults to icon with active styling) */
|
|
238
|
+
activeIcon?: ReactElement;
|
|
239
|
+
/** URL to navigate to when clicked. When provided, renders as an anchor tag. */
|
|
240
|
+
href?: string;
|
|
241
|
+
/** Badge count to display on the icon */
|
|
242
|
+
badge?: number | string;
|
|
243
|
+
/** Maximum badge count before showing "99+" */
|
|
244
|
+
maxBadge?: number;
|
|
245
|
+
/** Whether the item is disabled */
|
|
246
|
+
disabled?: boolean;
|
|
247
|
+
/** Additional class name */
|
|
248
|
+
className?: string;
|
|
249
|
+
/** Click handler - called after internal state update */
|
|
250
|
+
onClick?: (e: React.MouseEvent) => void;
|
|
251
|
+
};
|
|
252
|
+
|
|
201
253
|
/**
|
|
202
254
|
* BottomNavigation - A mobile-optimized bottom navigation bar with animated interactions.
|
|
203
255
|
*
|
|
@@ -214,7 +266,6 @@ type BottomNavigationProps = {
|
|
|
214
266
|
*
|
|
215
267
|
* @example
|
|
216
268
|
* ```tsx
|
|
217
|
-
* // Basic usage with URL navigation
|
|
218
269
|
* <BottomNavigation defaultValue="home" fixed>
|
|
219
270
|
* <BottomNavigationItem
|
|
220
271
|
* value="home"
|
|
@@ -223,79 +274,11 @@ type BottomNavigationProps = {
|
|
|
223
274
|
* activeIcon={<HomeFilledIcon />}
|
|
224
275
|
* href="/"
|
|
225
276
|
* />
|
|
226
|
-
* <BottomNavigationItem
|
|
227
|
-
* value="feed"
|
|
228
|
-
* label="Feeds"
|
|
229
|
-
* icon={<FeedIcon />}
|
|
230
|
-
* activeIcon={<FeedFilledIcon />}
|
|
231
|
-
* href="/feeds"
|
|
232
|
-
* />
|
|
233
|
-
* <BottomNavigationItem
|
|
234
|
-
* value="shop"
|
|
235
|
-
* label="Shop"
|
|
236
|
-
* icon={<ShoppingBagIcon />}
|
|
237
|
-
* activeIcon={<ShoppingBagFilledIcon />}
|
|
238
|
-
* href="/shop"
|
|
239
|
-
* />
|
|
240
|
-
* <BottomNavigationItem
|
|
241
|
-
* value="wallet"
|
|
242
|
-
* label="Wallet"
|
|
243
|
-
* icon={<WalletIcon />}
|
|
244
|
-
* activeIcon={<WalletFilledIcon />}
|
|
245
|
-
* href="/wallet"
|
|
246
|
-
* badge={2}
|
|
247
|
-
* />
|
|
248
|
-
* <BottomNavigationItem
|
|
249
|
-
* value="profile"
|
|
250
|
-
* label="Profile"
|
|
251
|
-
* icon={<UserIcon />}
|
|
252
|
-
* activeIcon={<UserFilledIcon />}
|
|
253
|
-
* href="/profile"
|
|
254
|
-
* />
|
|
255
|
-
* </BottomNavigation>
|
|
256
|
-
*
|
|
257
|
-
* // With React Router or Next.js - use onClick for client-side navigation
|
|
258
|
-
* <BottomNavigationItem
|
|
259
|
-
* value="home"
|
|
260
|
-
* label="Home"
|
|
261
|
-
* icon={<HomeIcon />}
|
|
262
|
-
* href="/"
|
|
263
|
-
* onClick={(e) => {
|
|
264
|
-
* e.preventDefault();
|
|
265
|
-
* router.push('/');
|
|
266
|
-
* }}
|
|
267
|
-
* />
|
|
268
|
-
*
|
|
269
|
-
* // Controlled mode
|
|
270
|
-
* const [activeTab, setActiveTab] = useState("home");
|
|
271
|
-
* <BottomNavigation value={activeTab} onValueChange={setActiveTab}>
|
|
272
|
-
* ...
|
|
273
277
|
* </BottomNavigation>
|
|
274
278
|
* ```
|
|
275
279
|
*/
|
|
276
280
|
declare const BottomNavigation: react.ForwardRefExoticComponent<BottomNavigationProps & react.RefAttributes<HTMLDivElement>>;
|
|
277
|
-
|
|
278
|
-
/** Unique value identifier for this item */
|
|
279
|
-
value: string;
|
|
280
|
-
/** Label text displayed below the icon */
|
|
281
|
-
label: string;
|
|
282
|
-
/** Icon displayed when inactive */
|
|
283
|
-
icon: ReactElement;
|
|
284
|
-
/** Icon displayed when active (optional, defaults to icon with active styling) */
|
|
285
|
-
activeIcon?: ReactElement;
|
|
286
|
-
/** URL to navigate to when clicked. When provided, renders as an anchor tag. */
|
|
287
|
-
href?: string;
|
|
288
|
-
/** Badge count to display on the icon */
|
|
289
|
-
badge?: number | string;
|
|
290
|
-
/** Maximum badge count before showing "99+" */
|
|
291
|
-
maxBadge?: number;
|
|
292
|
-
/** Whether the item is disabled */
|
|
293
|
-
disabled?: boolean;
|
|
294
|
-
/** Additional class name */
|
|
295
|
-
className?: string;
|
|
296
|
-
/** Click handler - called after internal state update */
|
|
297
|
-
onClick?: (e: React.MouseEvent) => void;
|
|
298
|
-
};
|
|
281
|
+
|
|
299
282
|
declare const BottomNavigationItem: react.ForwardRefExoticComponent<BottomNavigationItemProps & react.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
|
|
300
283
|
|
|
301
284
|
type SvgProps = React.ComponentPropsWithoutRef<"svg">;
|
|
@@ -4273,6 +4256,30 @@ declare const BellIcon: {
|
|
|
4273
4256
|
displayName: string;
|
|
4274
4257
|
};
|
|
4275
4258
|
|
|
4259
|
+
interface BottomNavigationCloseIconProps extends IconProps {
|
|
4260
|
+
}
|
|
4261
|
+
/**
|
|
4262
|
+
* BottomNavigationCloseIcon - close/hide bottom navigation.
|
|
4263
|
+
*
|
|
4264
|
+
* Uses `currentColor`, so it can be styled with Tailwind classes.
|
|
4265
|
+
*/
|
|
4266
|
+
declare const BottomNavigationCloseIcon: {
|
|
4267
|
+
(props: BottomNavigationCloseIconProps): react_jsx_runtime.JSX.Element;
|
|
4268
|
+
displayName: string;
|
|
4269
|
+
};
|
|
4270
|
+
|
|
4271
|
+
interface BottomNavigationExpandIconProps extends IconProps {
|
|
4272
|
+
}
|
|
4273
|
+
/**
|
|
4274
|
+
* BottomNavigationExpandIcon - expand/unhide bottom navigation.
|
|
4275
|
+
*
|
|
4276
|
+
* Uses `currentColor`, so it can be styled with Tailwind classes.
|
|
4277
|
+
*/
|
|
4278
|
+
declare const BottomNavigationExpandIcon: {
|
|
4279
|
+
(props: BottomNavigationExpandIconProps): react_jsx_runtime.JSX.Element;
|
|
4280
|
+
displayName: string;
|
|
4281
|
+
};
|
|
4282
|
+
|
|
4276
4283
|
interface CalendarIconProps extends IconProps {
|
|
4277
4284
|
}
|
|
4278
4285
|
/**
|
|
@@ -4702,4 +4709,4 @@ declare const WalletIcon: {
|
|
|
4702
4709
|
displayName: string;
|
|
4703
4710
|
};
|
|
4704
4711
|
|
|
4705
|
-
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, BoldIcon, type BoldIconProps, BottomNavigation, 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, MessengerIcon, type MessengerIconProps, MinusIcon, type MinusIconProps, MultipleSelectionButton, type MultipleSelectionButtonProps, MultipleSelectionIcon, type MultipleSelectionIconProps, Pagination, type PaginationProps, PaletteIcon, type PaletteIconProps, 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, 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 };
|
|
4712
|
+
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, 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, MessengerIcon, type MessengerIconProps, MinusIcon, type MinusIconProps, MultipleSelectionButton, type MultipleSelectionButtonProps, MultipleSelectionIcon, type MultipleSelectionIconProps, Pagination, type PaginationProps, PaletteIcon, type PaletteIconProps, 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, 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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -176,6 +176,26 @@ interface StatusBadgeProps extends Omit<React.HTMLAttributes<HTMLSpanElement>, "
|
|
|
176
176
|
}
|
|
177
177
|
declare const StatusBadge: react.ForwardRefExoticComponent<StatusBadgeProps & react.RefAttributes<HTMLSpanElement>>;
|
|
178
178
|
|
|
179
|
+
type BottomNavigationToggleButtonOptions = {
|
|
180
|
+
/** Enable dragging the toggle button anywhere on screen. Defaults to true. */
|
|
181
|
+
draggable?: boolean;
|
|
182
|
+
/** Override the toggle button's size in pixels. Defaults to 48. */
|
|
183
|
+
size?: number;
|
|
184
|
+
/**
|
|
185
|
+
* Optional initial position of the toggle button in viewport coordinates.
|
|
186
|
+
* If omitted, the button appears near the bottom-right corner, just above the BottomNavigation.
|
|
187
|
+
*/
|
|
188
|
+
initialPosition?: {
|
|
189
|
+
x?: number;
|
|
190
|
+
y?: number;
|
|
191
|
+
};
|
|
192
|
+
/** Additional className for the toggle button. */
|
|
193
|
+
className?: string;
|
|
194
|
+
/** Aria label when the bottom navigation is visible (button hides it). */
|
|
195
|
+
ariaLabelClose?: string;
|
|
196
|
+
/** Aria label when the bottom navigation is hidden (button shows it). */
|
|
197
|
+
ariaLabelExpand?: string;
|
|
198
|
+
};
|
|
179
199
|
type BottomNavigationProps = {
|
|
180
200
|
/** Additional class name for the navigation container */
|
|
181
201
|
className?: string;
|
|
@@ -195,9 +215,41 @@ type BottomNavigationProps = {
|
|
|
195
215
|
showShadow?: boolean;
|
|
196
216
|
/** Custom z-index value when fixed. Defaults to 40. Modals/dialogs typically use z-50+. */
|
|
197
217
|
zIndex?: number;
|
|
198
|
-
/**
|
|
218
|
+
/** Controlled: hide the navigation (useful when modals/dialogs are open) */
|
|
199
219
|
hidden?: boolean;
|
|
220
|
+
/** Uncontrolled: initial hidden state when `hidden` is not provided. Defaults to false. */
|
|
221
|
+
defaultHidden?: boolean;
|
|
222
|
+
/** Callback when hidden state changes. */
|
|
223
|
+
onHiddenChange?: (hidden: boolean) => void;
|
|
224
|
+
/**
|
|
225
|
+
* Optional floating toggle button that can hide/unhide the BottomNavigation.
|
|
226
|
+
* Useful for patterns like your screenshot where the navigation can be collapsed.
|
|
227
|
+
*/
|
|
228
|
+
toggleButton?: boolean | BottomNavigationToggleButtonOptions;
|
|
200
229
|
};
|
|
230
|
+
type BottomNavigationItemProps = {
|
|
231
|
+
/** Unique value identifier for this item */
|
|
232
|
+
value: string;
|
|
233
|
+
/** Label text displayed below the icon */
|
|
234
|
+
label: string;
|
|
235
|
+
/** Icon displayed when inactive */
|
|
236
|
+
icon: ReactElement;
|
|
237
|
+
/** Icon displayed when active (optional, defaults to icon with active styling) */
|
|
238
|
+
activeIcon?: ReactElement;
|
|
239
|
+
/** URL to navigate to when clicked. When provided, renders as an anchor tag. */
|
|
240
|
+
href?: string;
|
|
241
|
+
/** Badge count to display on the icon */
|
|
242
|
+
badge?: number | string;
|
|
243
|
+
/** Maximum badge count before showing "99+" */
|
|
244
|
+
maxBadge?: number;
|
|
245
|
+
/** Whether the item is disabled */
|
|
246
|
+
disabled?: boolean;
|
|
247
|
+
/** Additional class name */
|
|
248
|
+
className?: string;
|
|
249
|
+
/** Click handler - called after internal state update */
|
|
250
|
+
onClick?: (e: React.MouseEvent) => void;
|
|
251
|
+
};
|
|
252
|
+
|
|
201
253
|
/**
|
|
202
254
|
* BottomNavigation - A mobile-optimized bottom navigation bar with animated interactions.
|
|
203
255
|
*
|
|
@@ -214,7 +266,6 @@ type BottomNavigationProps = {
|
|
|
214
266
|
*
|
|
215
267
|
* @example
|
|
216
268
|
* ```tsx
|
|
217
|
-
* // Basic usage with URL navigation
|
|
218
269
|
* <BottomNavigation defaultValue="home" fixed>
|
|
219
270
|
* <BottomNavigationItem
|
|
220
271
|
* value="home"
|
|
@@ -223,79 +274,11 @@ type BottomNavigationProps = {
|
|
|
223
274
|
* activeIcon={<HomeFilledIcon />}
|
|
224
275
|
* href="/"
|
|
225
276
|
* />
|
|
226
|
-
* <BottomNavigationItem
|
|
227
|
-
* value="feed"
|
|
228
|
-
* label="Feeds"
|
|
229
|
-
* icon={<FeedIcon />}
|
|
230
|
-
* activeIcon={<FeedFilledIcon />}
|
|
231
|
-
* href="/feeds"
|
|
232
|
-
* />
|
|
233
|
-
* <BottomNavigationItem
|
|
234
|
-
* value="shop"
|
|
235
|
-
* label="Shop"
|
|
236
|
-
* icon={<ShoppingBagIcon />}
|
|
237
|
-
* activeIcon={<ShoppingBagFilledIcon />}
|
|
238
|
-
* href="/shop"
|
|
239
|
-
* />
|
|
240
|
-
* <BottomNavigationItem
|
|
241
|
-
* value="wallet"
|
|
242
|
-
* label="Wallet"
|
|
243
|
-
* icon={<WalletIcon />}
|
|
244
|
-
* activeIcon={<WalletFilledIcon />}
|
|
245
|
-
* href="/wallet"
|
|
246
|
-
* badge={2}
|
|
247
|
-
* />
|
|
248
|
-
* <BottomNavigationItem
|
|
249
|
-
* value="profile"
|
|
250
|
-
* label="Profile"
|
|
251
|
-
* icon={<UserIcon />}
|
|
252
|
-
* activeIcon={<UserFilledIcon />}
|
|
253
|
-
* href="/profile"
|
|
254
|
-
* />
|
|
255
|
-
* </BottomNavigation>
|
|
256
|
-
*
|
|
257
|
-
* // With React Router or Next.js - use onClick for client-side navigation
|
|
258
|
-
* <BottomNavigationItem
|
|
259
|
-
* value="home"
|
|
260
|
-
* label="Home"
|
|
261
|
-
* icon={<HomeIcon />}
|
|
262
|
-
* href="/"
|
|
263
|
-
* onClick={(e) => {
|
|
264
|
-
* e.preventDefault();
|
|
265
|
-
* router.push('/');
|
|
266
|
-
* }}
|
|
267
|
-
* />
|
|
268
|
-
*
|
|
269
|
-
* // Controlled mode
|
|
270
|
-
* const [activeTab, setActiveTab] = useState("home");
|
|
271
|
-
* <BottomNavigation value={activeTab} onValueChange={setActiveTab}>
|
|
272
|
-
* ...
|
|
273
277
|
* </BottomNavigation>
|
|
274
278
|
* ```
|
|
275
279
|
*/
|
|
276
280
|
declare const BottomNavigation: react.ForwardRefExoticComponent<BottomNavigationProps & react.RefAttributes<HTMLDivElement>>;
|
|
277
|
-
|
|
278
|
-
/** Unique value identifier for this item */
|
|
279
|
-
value: string;
|
|
280
|
-
/** Label text displayed below the icon */
|
|
281
|
-
label: string;
|
|
282
|
-
/** Icon displayed when inactive */
|
|
283
|
-
icon: ReactElement;
|
|
284
|
-
/** Icon displayed when active (optional, defaults to icon with active styling) */
|
|
285
|
-
activeIcon?: ReactElement;
|
|
286
|
-
/** URL to navigate to when clicked. When provided, renders as an anchor tag. */
|
|
287
|
-
href?: string;
|
|
288
|
-
/** Badge count to display on the icon */
|
|
289
|
-
badge?: number | string;
|
|
290
|
-
/** Maximum badge count before showing "99+" */
|
|
291
|
-
maxBadge?: number;
|
|
292
|
-
/** Whether the item is disabled */
|
|
293
|
-
disabled?: boolean;
|
|
294
|
-
/** Additional class name */
|
|
295
|
-
className?: string;
|
|
296
|
-
/** Click handler - called after internal state update */
|
|
297
|
-
onClick?: (e: React.MouseEvent) => void;
|
|
298
|
-
};
|
|
281
|
+
|
|
299
282
|
declare const BottomNavigationItem: react.ForwardRefExoticComponent<BottomNavigationItemProps & react.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
|
|
300
283
|
|
|
301
284
|
type SvgProps = React.ComponentPropsWithoutRef<"svg">;
|
|
@@ -4273,6 +4256,30 @@ declare const BellIcon: {
|
|
|
4273
4256
|
displayName: string;
|
|
4274
4257
|
};
|
|
4275
4258
|
|
|
4259
|
+
interface BottomNavigationCloseIconProps extends IconProps {
|
|
4260
|
+
}
|
|
4261
|
+
/**
|
|
4262
|
+
* BottomNavigationCloseIcon - close/hide bottom navigation.
|
|
4263
|
+
*
|
|
4264
|
+
* Uses `currentColor`, so it can be styled with Tailwind classes.
|
|
4265
|
+
*/
|
|
4266
|
+
declare const BottomNavigationCloseIcon: {
|
|
4267
|
+
(props: BottomNavigationCloseIconProps): react_jsx_runtime.JSX.Element;
|
|
4268
|
+
displayName: string;
|
|
4269
|
+
};
|
|
4270
|
+
|
|
4271
|
+
interface BottomNavigationExpandIconProps extends IconProps {
|
|
4272
|
+
}
|
|
4273
|
+
/**
|
|
4274
|
+
* BottomNavigationExpandIcon - expand/unhide bottom navigation.
|
|
4275
|
+
*
|
|
4276
|
+
* Uses `currentColor`, so it can be styled with Tailwind classes.
|
|
4277
|
+
*/
|
|
4278
|
+
declare const BottomNavigationExpandIcon: {
|
|
4279
|
+
(props: BottomNavigationExpandIconProps): react_jsx_runtime.JSX.Element;
|
|
4280
|
+
displayName: string;
|
|
4281
|
+
};
|
|
4282
|
+
|
|
4276
4283
|
interface CalendarIconProps extends IconProps {
|
|
4277
4284
|
}
|
|
4278
4285
|
/**
|
|
@@ -4702,4 +4709,4 @@ declare const WalletIcon: {
|
|
|
4702
4709
|
displayName: string;
|
|
4703
4710
|
};
|
|
4704
4711
|
|
|
4705
|
-
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, BoldIcon, type BoldIconProps, BottomNavigation, 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, MessengerIcon, type MessengerIconProps, MinusIcon, type MinusIconProps, MultipleSelectionButton, type MultipleSelectionButtonProps, MultipleSelectionIcon, type MultipleSelectionIconProps, Pagination, type PaginationProps, PaletteIcon, type PaletteIconProps, 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, 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 };
|
|
4712
|
+
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, 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, MessengerIcon, type MessengerIconProps, MinusIcon, type MinusIconProps, MultipleSelectionButton, type MultipleSelectionButtonProps, MultipleSelectionIcon, type MultipleSelectionIconProps, Pagination, type PaginationProps, PaletteIcon, type PaletteIconProps, 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, 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 };
|