@scalably/ui 0.2.2 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as react from 'react';
2
- import { ReactNode } from 'react';
2
+ import react__default, { ReactNode, ImgHTMLAttributes } from 'react';
3
3
  import * as class_variance_authority_types from 'class-variance-authority/types';
4
4
  import { VariantProps } from 'class-variance-authority';
5
5
  import * as react_jsx_runtime from 'react/jsx-runtime';
@@ -1092,6 +1092,98 @@ interface SelectProps extends SelectBaseProps {
1092
1092
  */
1093
1093
  declare const Select: react.ForwardRefExoticComponent<SelectProps & react.RefAttributes<HTMLButtonElement | HTMLSelectElement>>;
1094
1094
 
1095
+ declare const skeletonVariants: (props?: ({
1096
+ variant?: "text" | "circle" | "rectangle" | null | undefined;
1097
+ size?: "sm" | "md" | "lg" | null | undefined;
1098
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1099
+ type SkeletonVariant = NonNullable<VariantProps<typeof skeletonVariants>["variant"]>;
1100
+ type SkeletonSize = NonNullable<VariantProps<typeof skeletonVariants>["size"]>;
1101
+ interface SkeletonProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "width" | "height">, VariantProps<typeof skeletonVariants> {
1102
+ /**
1103
+ * Width of the skeleton.
1104
+ * If a number is provided, it will be automatically converted to pixels.
1105
+ * @example width={40} → width="40px"
1106
+ * @example width="100%" → width="100%"
1107
+ */
1108
+ width?: string | number;
1109
+ /**
1110
+ * Height of the skeleton.
1111
+ * If a number is provided, it will be automatically converted to pixels.
1112
+ * @example height={40} → height="40px"
1113
+ * @example height="100%" → height="100%"
1114
+ */
1115
+ height?: string | number;
1116
+ /**
1117
+ * Accessible label for screen readers.
1118
+ * Falls back to a generic "Loading" label if not provided.
1119
+ */
1120
+ "aria-label"?: string;
1121
+ }
1122
+ /**
1123
+ * Skeleton component for displaying loading placeholders with shimmer animation.
1124
+ *
1125
+ * Features:
1126
+ * - Multiple variants: text, circle, rectangle
1127
+ * - Responsive sizes: sm, md, lg
1128
+ * - Custom dimensions via width/height props
1129
+ * - Shimmer animation with reduced motion support
1130
+ * - Full accessibility support
1131
+ *
1132
+ * @example
1133
+ * ```tsx
1134
+ * // Basic text skeleton
1135
+ * <Skeleton variant="text" size="md" width="100%" />
1136
+ *
1137
+ * // Circle avatar skeleton
1138
+ * <Skeleton variant="circle" width={40} height={40} />
1139
+ *
1140
+ * // Custom rectangle
1141
+ * <Skeleton variant="rectangle" width={200} height={100} />
1142
+ * ```
1143
+ */
1144
+ declare const Skeleton: react.ForwardRefExoticComponent<SkeletonProps & react.RefAttributes<HTMLDivElement>>;
1145
+
1146
+ interface SkeletonTextProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "children"> {
1147
+ /**
1148
+ * Number of lines to render.
1149
+ * @default 3
1150
+ */
1151
+ lines?: number;
1152
+ /**
1153
+ * Spacing between lines.
1154
+ * If a number is provided, it will be automatically converted to pixels.
1155
+ * @default "0.5rem"
1156
+ * @example gap={8} → gap="8px"
1157
+ * @example gap="1rem" → gap="1rem"
1158
+ */
1159
+ gap?: string | number;
1160
+ }
1161
+ /**
1162
+ * SkeletonText component for creating multi-line text skeleton placeholders.
1163
+ *
1164
+ * Features:
1165
+ * - Configurable number of lines
1166
+ * - Customizable gap between lines
1167
+ * - Natural paragraph ending (last line is 80% width when multiple lines)
1168
+ * - Composed from Skeleton components
1169
+ *
1170
+ * This component saves you from repeating the "flex-col gap + last line width" pattern
1171
+ * and enforces UI consistency across your application.
1172
+ *
1173
+ * @example
1174
+ * ```tsx
1175
+ * // Default 3-line paragraph skeleton
1176
+ * <SkeletonText />
1177
+ *
1178
+ * // Custom 5-line skeleton with larger gap
1179
+ * <SkeletonText lines={5} gap="1rem" />
1180
+ *
1181
+ * // Compact 2-line skeleton
1182
+ * <SkeletonText lines={2} gap={4} />
1183
+ * ```
1184
+ */
1185
+ declare const SkeletonText: react.ForwardRefExoticComponent<SkeletonTextProps & react.RefAttributes<HTMLDivElement>>;
1186
+
1095
1187
  type TabsProps = {
1096
1188
  className?: string;
1097
1189
  value?: string;
@@ -1573,6 +1665,301 @@ interface ViewToggleProps {
1573
1665
  */
1574
1666
  declare const ViewToggle: React.FC<ViewToggleProps>;
1575
1667
 
1668
+ /**
1669
+ * Centralized catalog of fallback imagery for avatars and generic image slots.
1670
+ * Consumers can reference these to keep placeholder usage consistent.
1671
+ */
1672
+ declare const defaultAssets: {
1673
+ readonly avatars: {
1674
+ readonly group: string;
1675
+ readonly profile: string;
1676
+ };
1677
+ readonly placeholders: {
1678
+ readonly image: string;
1679
+ };
1680
+ };
1681
+
1682
+ type AvatarPlaceholderCategory = keyof typeof defaultAssets;
1683
+ type AvatarPlaceholderVariantMap = {
1684
+ [K in AvatarPlaceholderCategory]: keyof (typeof defaultAssets)[K];
1685
+ };
1686
+ type AvatarPlaceholderVariant<C extends AvatarPlaceholderCategory = AvatarPlaceholderCategory> = AvatarPlaceholderVariantMap[C];
1687
+ interface BaseAvatarPlaceholderProps extends Omit<ImgHTMLAttributes<HTMLImageElement>, "src" | "alt"> {
1688
+ /**
1689
+ * Accessible text describing the placeholder image.
1690
+ * Falls back to a generated description derived from category and variant.
1691
+ */
1692
+ alt?: string;
1693
+ }
1694
+ interface AvatarPlaceholderProps<C extends AvatarPlaceholderCategory = AvatarPlaceholderCategory> extends BaseAvatarPlaceholderProps {
1695
+ /**
1696
+ * Asset grouping to load from (`avatars` or `placeholders`).
1697
+ */
1698
+ category: C;
1699
+ /**
1700
+ * Asset key within the selected category (e.g. `group`, `profile`, `image`).
1701
+ */
1702
+ variant: AvatarPlaceholderVariant<C>;
1703
+ }
1704
+ /**
1705
+ * Thin wrapper around the shared default asset catalog that renders placeholder imagery
1706
+ * (e.g. generic avatars) as a standard `<img>` element with sensible defaults.
1707
+ */
1708
+ declare const AvatarPlaceholder: react.ForwardRefExoticComponent<AvatarPlaceholderProps<"avatars" | "placeholders"> & react.RefAttributes<HTMLImageElement>>;
1709
+
1710
+ declare const logoAssets: {
1711
+ readonly app: {
1712
+ readonly png: string;
1713
+ readonly svg: string;
1714
+ };
1715
+ readonly campaign: {
1716
+ readonly png: string;
1717
+ readonly svg: string;
1718
+ };
1719
+ readonly membership: {
1720
+ readonly png: string;
1721
+ readonly svg: string;
1722
+ };
1723
+ readonly icon: {
1724
+ readonly png: string;
1725
+ readonly svg: string;
1726
+ };
1727
+ readonly "icon-big": {
1728
+ readonly png: string;
1729
+ };
1730
+ };
1731
+
1732
+ type LogoVariant = keyof typeof logoAssets;
1733
+ type LogoFormat = {
1734
+ [K in LogoVariant]: keyof (typeof logoAssets)[K];
1735
+ }[LogoVariant];
1736
+ interface LogoProps extends Omit<ImgHTMLAttributes<HTMLImageElement>, "src" | "alt"> {
1737
+ /**
1738
+ * Which logo variant to render (derived from logo assets).
1739
+ */
1740
+ variant: LogoVariant;
1741
+ /**
1742
+ * File format to render. Defaults to SVG when available, otherwise PNG.
1743
+ */
1744
+ format?: LogoFormat;
1745
+ /**
1746
+ * Accessible description. Falls back to "Scalably {variant} logo".
1747
+ */
1748
+ alt?: string;
1749
+ }
1750
+ /**
1751
+ * Branded logo renderer that stays tightly coupled to available assets.
1752
+ */
1753
+ declare const Logo: react.ForwardRefExoticComponent<LogoProps & react.RefAttributes<HTMLImageElement>>;
1754
+
1755
+ interface LoadingScreenProps extends Omit<react__default.HTMLAttributes<HTMLDivElement>, "children"> {
1756
+ /**
1757
+ * Optional loading message displayed below the logo.
1758
+ */
1759
+ message?: string;
1760
+ /**
1761
+ * Backdrop blur amount. Set to 0 to disable blur.
1762
+ * @default 8
1763
+ */
1764
+ backdropBlur?: number;
1765
+ /**
1766
+ * Backdrop opacity (0-1).
1767
+ * @default 0.8
1768
+ */
1769
+ backdropOpacity?: number;
1770
+ /**
1771
+ * Logo size in pixels. Responsive: smaller on mobile, larger on desktop.
1772
+ * @default { mobile: 64, desktop: 80 }
1773
+ */
1774
+ size?: number | {
1775
+ mobile: number;
1776
+ desktop: number;
1777
+ };
1778
+ /**
1779
+ * Accessible label for screen readers.
1780
+ * Falls back to "Loading" or includes message if provided.
1781
+ */
1782
+ "aria-label"?: string;
1783
+ }
1784
+ /**
1785
+ * Full-screen loading overlay component with animated Scalably logo.
1786
+ *
1787
+ * Features:
1788
+ * - Full-screen overlay with customizable backdrop
1789
+ * - Animated logo with pulse and rotate combination
1790
+ * - Optional loading message
1791
+ * - Full accessibility support
1792
+ * - Respects reduced motion preferences
1793
+ * - Mobile-first responsive design
1794
+ *
1795
+ * @example
1796
+ * ```tsx
1797
+ * // Basic usage
1798
+ * <LoadingScreen />
1799
+ *
1800
+ * // With message
1801
+ * <LoadingScreen message="Loading your data..." />
1802
+ *
1803
+ * // Custom backdrop
1804
+ * <LoadingScreen backdropBlur={12} backdropOpacity={0.9} />
1805
+ *
1806
+ * // Custom size
1807
+ * <LoadingScreen size={{ mobile: 48, desktop: 96 }} />
1808
+ * ```
1809
+ */
1810
+ declare const LoadingScreen: react__default.ForwardRefExoticComponent<LoadingScreenProps & react__default.RefAttributes<HTMLDivElement>>;
1811
+
1812
+ type ImageSourceMode = "both" | "url-only" | "upload-only";
1813
+ interface RichTextEditorProps {
1814
+ /** Controlled HTML value of the editor */
1815
+ value: string;
1816
+ /** Called whenever the content changes (HTML string) */
1817
+ onChange: (html: string) => void;
1818
+ /** Optional label rendered above the editor */
1819
+ label?: string;
1820
+ /** Error message shown below the editor and applied to border */
1821
+ error?: string;
1822
+ /** Helper text shown when there is no error */
1823
+ helperText?: string;
1824
+ /** Placeholder text rendered when editor is empty */
1825
+ placeholder?: string;
1826
+ /** Minimum height of the content area (e.g. "160px") */
1827
+ minHeight?: string;
1828
+ /** When true, renders a reduced toolbar (basic formatting only) */
1829
+ simple?: boolean;
1830
+ /** Disables editing and toolbar interaction */
1831
+ disabled?: boolean;
1832
+ /** Optional test id for querying in tests */
1833
+ "data-testid"?: string;
1834
+ /** Additional className for the outer container */
1835
+ containerClassName?: string;
1836
+ /**
1837
+ * Optional handler for image uploads.
1838
+ *
1839
+ * The editor **always** inserts images by URL. This callback is an
1840
+ * optional helper that lets you plug in your own upload flow:
1841
+ *
1842
+ * - When **not provided**:
1843
+ * - The image popover only shows a "Source URL" field and "Alt text".
1844
+ * - Users can paste any public image URL and click "Save" to insert it.
1845
+ *
1846
+ * - When **provided**:
1847
+ * - The image popover also shows an "Upload file" button.
1848
+ * - After the user selects a file, this function is called with that File.
1849
+ * - You upload the file (e.g. S3, Firebase, your API) and return a
1850
+ * Promise that resolves to the public image URL.
1851
+ * - The returned URL is written into the "Source URL" field, and the
1852
+ * user can then confirm insertion with "Save".
1853
+ */
1854
+ onImageUpload?: (file: File) => Promise<string>;
1855
+ /**
1856
+ * Controls how users are allowed to provide image sources.
1857
+ *
1858
+ * The editor always stores images as URLs; this setting only affects the UI:
1859
+ *
1860
+ * - "both" (default):
1861
+ * - Users can type or paste into the Source URL field.
1862
+ * - If `onImageUpload` is provided, they can also use the Upload file helper.
1863
+ *
1864
+ * - "url-only":
1865
+ * - Users can only type/paste a URL.
1866
+ * - The Upload file helper is hidden even if `onImageUpload` is provided.
1867
+ *
1868
+ * - "upload-only":
1869
+ * - Users can only upload via `onImageUpload`; the Source URL field is
1870
+ * rendered read-only to display the resolved URL.
1871
+ * - If `onImageUpload` is not provided, this mode gracefully behaves like
1872
+ * "url-only" so the image feature is still usable.
1873
+ */
1874
+ imageSourceMode?: ImageSourceMode;
1875
+ }
1876
+ /**
1877
+ * RichTextEditor - Controlled rich text editor built on top of Tiptap.
1878
+ *
1879
+ * - Exposes a simple HTML-based value/onChange API.
1880
+ * - Renders a toolbar with common formatting controls.
1881
+ * - Mimics the design system's input styling (label, error, helper text).
1882
+ *
1883
+ * **Viewing Content:**
1884
+ * To display the HTML content created with this editor in read-only mode,
1885
+ * use the `RichTextViewer` component. It ensures content rendered in "view"
1886
+ * mode matches "edit" mode styling exactly.
1887
+ *
1888
+ * @example
1889
+ * ```tsx
1890
+ * import { RichTextEditor, RichTextViewer } from '@scalably/ui';
1891
+ *
1892
+ * function BlogPost({ post }) {
1893
+ * const [content, setContent] = useState(post.content);
1894
+ *
1895
+ * return (
1896
+ * <div>
1897
+ * <RichTextEditor value={content} onChange={setContent} />
1898
+ * <RichTextViewer content={content} />
1899
+ * </div>
1900
+ * );
1901
+ * }
1902
+ * ```
1903
+ *
1904
+ * @see RichTextViewer - Read-only viewer component for displaying rich text content
1905
+ */
1906
+ declare const RichTextEditor: {
1907
+ ({ value, onChange, label, error, helperText, placeholder, minHeight, simple, disabled, "data-testid": dataTestId, containerClassName, onImageUpload, imageSourceMode, }: RichTextEditorProps): react_jsx_runtime.JSX.Element;
1908
+ displayName: string;
1909
+ };
1910
+
1911
+ interface RichTextViewerProps {
1912
+ /**
1913
+ * HTML content string to render (typically from RichTextEditor's value prop).
1914
+ * This content will be rendered as-is, so ensure it's sanitized if it comes
1915
+ * from untrusted sources.
1916
+ */
1917
+ content: string;
1918
+ /**
1919
+ * Additional CSS classes to apply to the container.
1920
+ */
1921
+ className?: string;
1922
+ /**
1923
+ * Optional test id for querying in tests.
1924
+ */
1925
+ "data-testid"?: string;
1926
+ }
1927
+ /**
1928
+ * RichTextViewer - Read-only component for displaying rich text content.
1929
+ *
1930
+ * This component renders HTML content with the same styling as RichTextEditor,
1931
+ * ensuring a consistent appearance between "edit" and "view" modes.
1932
+ *
1933
+ * **Security Note:** This component uses `dangerouslySetInnerHTML` to render
1934
+ * the provided HTML. If the content comes from untrusted sources (e.g., user
1935
+ * input, external APIs), you should sanitize it first using a library like
1936
+ * DOMPurify:
1937
+ *
1938
+ * ```tsx
1939
+ * import DOMPurify from 'isomorphic-dompurify';
1940
+ *
1941
+ * <RichTextViewer content={DOMPurify.sanitize(userContent)} />
1942
+ * ```
1943
+ *
1944
+ * @example
1945
+ * ```tsx
1946
+ * import { RichTextEditor, RichTextViewer } from '@scalably/ui';
1947
+ *
1948
+ * function BlogPost({ post }) {
1949
+ * return (
1950
+ * <div>
1951
+ * <RichTextEditor value={post.content} onChange={setContent} />
1952
+ * <RichTextViewer content={post.content} />
1953
+ * </div>
1954
+ * );
1955
+ * }
1956
+ * ```
1957
+ */
1958
+ declare const RichTextViewer: {
1959
+ ({ content, className, "data-testid": dataTestId, }: RichTextViewerProps): react_jsx_runtime.JSX.Element;
1960
+ displayName: string;
1961
+ };
1962
+
1576
1963
  interface ScalablyUIProviderProps {
1577
1964
  children: React.ReactNode;
1578
1965
  /**
@@ -2689,4 +3076,4 @@ interface YoutubeIconProps extends React.SVGProps<SVGSVGElement> {
2689
3076
  */
2690
3077
  declare const YoutubeIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<YoutubeIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
2691
3078
 
2692
- export { BackToTop, type BackToTopProps, Button, type ButtonProps, type ButtonSize, type ButtonVariant, CalendarIcon, type CalendarIconProps, CaptureIcon, type CaptureIconProps, CheckIcon, type CheckIconProps, Checkbox, CheckboxGroup, type CheckboxGroupOption, type CheckboxGroupProps, type CheckboxProps, CloseIcon, type CloseIconProps, DateInput, type DateInputMode, type DateInputProps, DatePicker, type DatePickerMode, type DatePickerProps, DiscordIcon, type DiscordIconProps, Divider, type DividerProps, type DividerVariant, DropUpIcon, type DropUpIconProps, DropdownIcon, type DropdownIconProps, ErrorIcon, type ErrorIconProps, FacebookIcon, type FacebookIconProps, type FieldErrorLike, FileIcon, type FileIconProps, FileUpload, type FileUploadError, type FileUploadFile, FileUploadIcon, type FileUploadIconProps, type FileUploadIconType, type FileUploadProps, type FileUploadSize, type FileUploadVariant, Form, type FormErrorItem, FormErrorSummary, type FormErrorSummaryProps, FormField, type FormFieldProps, type FormProps, GmailIcon, type GmailIconProps, GridIcon, type GridIconProps, ImageIcon, type ImageIconProps, ImageUploadIcon, type ImageUploadIconProps, IndeterminateIcon, type IndeterminateIconProps, InfoIcon, type InfoIconProps, Input, type InputProps, type InputVariant, InstagramIcon, type InstagramIconProps, KakaoTalkIcon, type KakaoTalkIconProps, LineIcon, type LineIconProps, LinkedInIcon, type LinkedInIconProps, ListIcon, type ListIconProps, MessengerIcon, type MessengerIconProps, MinusIcon, type MinusIconProps, MultipleSelectionButton, type MultipleSelectionButtonProps, MultipleSelectionIcon, type MultipleSelectionIconProps, Pagination, type PaginationProps, PlusIcon, type PlusIconProps, QuantityInput, type QuantityInputProps, Radio, RadioGroup, type RadioGroupOption, type RadioGroupProps, type RadioProps, type RangeValue, RedditIcon, type RedditIconProps, ScalablyUIProvider, type ScalablyUIProviderProps, SearchIcon, type SearchIconProps, SearchInput, type SearchInputProps, type SearchInputVariant, Select, type SelectOption, type SelectProps, type SelectVariant, SettingsIcon, type SettingsIconProps, SignalIcon, type SignalIconProps, SlackIcon, type SlackIconProps, StatusBadge, type StatusBadgeProps, type StatusBadgeSize, type StatusBadgeStatus, type StatusBadgeVariant, SuccessIcon, type SuccessIconProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, TelegramIcon, type TelegramIconProps, TickIcon, type TickIconProps, TiktokIcon, type TiktokIconProps, TimePicker, type TimePickerProps, ToFirstIcon, type ToFirstIconProps, ToLastIcon, type ToLastIconProps, ToNextIcon, type ToNextIconProps, ToPreviousIcon, type ToPreviousIconProps, Toast, type ToastAction, ToastContainer, type ToastContainerProps, type ToastPosition, type ToastProps, type ToastStatus, Tooltip, type TooltipAlign, type TooltipProps, type TooltipSide, TwitchIcon, type TwitchIconProps, VideoIcon, type VideoIconProps, VideoUploadIcon, type VideoUploadIconProps, type ViewMode, ViewToggle, type ViewToggleProps, WarnIcon, type WarnIconProps, WhatsAppIcon, type WhatsAppIconProps, XIcon, type XIconProps, YoutubeIcon, type YoutubeIconProps, clampDate, cn, daysGrid, debounce, fieldErrorToProps, formatDateLocalized, monthsForLocale, scopeClass, throttle, toDateKey, weekdaysForLocale, zodErrorsToSummary };
3079
+ export { AvatarPlaceholder, type AvatarPlaceholderCategory, type AvatarPlaceholderProps, type AvatarPlaceholderVariant, BackToTop, type BackToTopProps, Button, type ButtonProps, type ButtonSize, type ButtonVariant, CalendarIcon, type CalendarIconProps, CaptureIcon, type CaptureIconProps, CheckIcon, type CheckIconProps, Checkbox, CheckboxGroup, type CheckboxGroupOption, type CheckboxGroupProps, type CheckboxProps, CloseIcon, type CloseIconProps, DateInput, type DateInputMode, type DateInputProps, DatePicker, type DatePickerMode, type DatePickerProps, DiscordIcon, type DiscordIconProps, Divider, type DividerProps, type DividerVariant, DropUpIcon, type DropUpIconProps, DropdownIcon, type DropdownIconProps, ErrorIcon, type ErrorIconProps, FacebookIcon, type FacebookIconProps, type FieldErrorLike, FileIcon, type FileIconProps, FileUpload, type FileUploadError, type FileUploadFile, FileUploadIcon, type FileUploadIconProps, type FileUploadIconType, type FileUploadProps, type FileUploadSize, type FileUploadVariant, Form, type FormErrorItem, FormErrorSummary, type FormErrorSummaryProps, FormField, type FormFieldProps, type FormProps, GmailIcon, type GmailIconProps, GridIcon, type GridIconProps, ImageIcon, type ImageIconProps, type ImageSourceMode, ImageUploadIcon, type ImageUploadIconProps, IndeterminateIcon, type IndeterminateIconProps, InfoIcon, type InfoIconProps, Input, type InputProps, type InputVariant, InstagramIcon, type InstagramIconProps, KakaoTalkIcon, type KakaoTalkIconProps, LineIcon, type LineIconProps, LinkedInIcon, type LinkedInIconProps, ListIcon, type ListIconProps, LoadingScreen, type LoadingScreenProps, Logo, type LogoFormat, type LogoProps, type LogoVariant, MessengerIcon, type MessengerIconProps, MinusIcon, type MinusIconProps, MultipleSelectionButton, type MultipleSelectionButtonProps, MultipleSelectionIcon, type MultipleSelectionIconProps, Pagination, type PaginationProps, PlusIcon, type PlusIconProps, QuantityInput, type QuantityInputProps, Radio, RadioGroup, type RadioGroupOption, type RadioGroupProps, type RadioProps, type RangeValue, RedditIcon, type RedditIconProps, RichTextEditor, type RichTextEditorProps, RichTextViewer, type RichTextViewerProps, ScalablyUIProvider, type ScalablyUIProviderProps, SearchIcon, type SearchIconProps, SearchInput, type SearchInputProps, type SearchInputVariant, Select, type SelectOption, type SelectProps, type SelectVariant, SettingsIcon, type SettingsIconProps, SignalIcon, type SignalIconProps, Skeleton, type SkeletonProps, type SkeletonSize, SkeletonText, type SkeletonTextProps, type SkeletonVariant, SlackIcon, type SlackIconProps, StatusBadge, type StatusBadgeProps, type StatusBadgeSize, type StatusBadgeStatus, type StatusBadgeVariant, SuccessIcon, type SuccessIconProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, TelegramIcon, type TelegramIconProps, TickIcon, type TickIconProps, TiktokIcon, type TiktokIconProps, TimePicker, type TimePickerProps, ToFirstIcon, type ToFirstIconProps, ToLastIcon, type ToLastIconProps, ToNextIcon, type ToNextIconProps, ToPreviousIcon, type ToPreviousIconProps, Toast, type ToastAction, ToastContainer, type ToastContainerProps, type ToastPosition, type ToastProps, type ToastStatus, Tooltip, type TooltipAlign, type TooltipProps, type TooltipSide, TwitchIcon, type TwitchIconProps, VideoIcon, type VideoIconProps, VideoUploadIcon, type VideoUploadIconProps, type ViewMode, ViewToggle, type ViewToggleProps, WarnIcon, type WarnIconProps, WhatsAppIcon, type WhatsAppIconProps, XIcon, type XIconProps, YoutubeIcon, type YoutubeIconProps, clampDate, cn, daysGrid, debounce, defaultAssets, fieldErrorToProps, formatDateLocalized, logoAssets, monthsForLocale, scopeClass, throttle, toDateKey, weekdaysForLocale, zodErrorsToSummary };