@octavius2929-personal/design-system 0.23.1 → 0.24.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.cts CHANGED
@@ -78,7 +78,7 @@ declare const schemas: {
78
78
  readonly letterSpacing: "0.14em";
79
79
  };
80
80
  readonly display: {
81
- readonly size: "5.6rem";
81
+ readonly size: "clamp(2.75rem, 1.4rem + 5.6vw, 5.6rem)";
82
82
  readonly lineHeight: "1.05";
83
83
  readonly weight: "600";
84
84
  readonly letterSpacing: "-0.01em";
@@ -226,7 +226,7 @@ declare const schemas: {
226
226
  readonly letterSpacing: "0.14em";
227
227
  };
228
228
  readonly display: {
229
- readonly size: "5.6rem";
229
+ readonly size: "clamp(2.75rem, 1.4rem + 5.6vw, 5.6rem)";
230
230
  readonly lineHeight: "1.05";
231
231
  readonly weight: "600";
232
232
  readonly letterSpacing: "-0.01em";
@@ -374,7 +374,7 @@ declare const schemas: {
374
374
  readonly letterSpacing: "0.14em";
375
375
  };
376
376
  readonly display: {
377
- readonly size: "5.6rem";
377
+ readonly size: "clamp(2.75rem, 1.4rem + 5.6vw, 5.6rem)";
378
378
  readonly lineHeight: "1.05";
379
379
  readonly weight: "600";
380
380
  readonly letterSpacing: "-0.01em";
@@ -522,7 +522,7 @@ declare const schemas: {
522
522
  readonly letterSpacing: "0.14em";
523
523
  };
524
524
  readonly display: {
525
- readonly size: "5.6rem";
525
+ readonly size: "clamp(2.75rem, 1.4rem + 5.6vw, 5.6rem)";
526
526
  readonly lineHeight: "1.05";
527
527
  readonly weight: "600";
528
528
  readonly letterSpacing: "-0.01em";
@@ -885,6 +885,20 @@ declare const Container: <E extends ElementType = "div">(props: ContainerProps<E
885
885
  ref?: Ref<Element>;
886
886
  }) => ReturnType<typeof ContainerImpl>;
887
887
 
888
+ type SurfaceOwnProps<E extends ElementType> = {
889
+ as?: E;
890
+ /** Rellena el alto del viewport (min-height: 100dvh). Útil para el canvas de página. */
891
+ fill?: boolean;
892
+ /** Segmento de contexto para el data-testid. */
893
+ testId?: string;
894
+ };
895
+ type SurfaceProps<E extends ElementType = "div"> = SurfaceOwnProps<E> & Omit<ComponentPropsWithoutRef<E>, "className" | "style" | keyof SurfaceOwnProps<E>>;
896
+
897
+ declare function SurfaceInner<E extends ElementType = "div">({ as, fill, testId, ...rest }: SurfaceProps<E>, ref: Ref<HTMLElement>): react.JSX.Element;
898
+ declare const Surface: <E extends ElementType = "div">(props: SurfaceProps<E> & {
899
+ ref?: Ref<HTMLElement>;
900
+ }) => ReturnType<typeof SurfaceInner>;
901
+
888
902
  type TypographyVariant = "display" | "h1" | "h2" | "h3" | "h4" | "body" | "lead" | "small" | "caption" | "eyebrow" | "code" | "blackletter";
889
903
  type TypographyColor = "fg1" | "fg2" | "fg3" | "accent" | "danger" | "ok" | "warn" | "info";
890
904
  type TypographyAlign = "left" | "center" | "right";
@@ -1527,8 +1541,13 @@ interface ThemeProviderProps {
1527
1541
  storageKey?: string;
1528
1542
  /** Si es false, no persiste ni rehidrata (útil para previews/tests). */
1529
1543
  persist?: boolean;
1544
+ /**
1545
+ * Si es true, el provider pinta el canvas de página en el tema activo: envuelve en
1546
+ * <Surface fill> y pinta el <body> (cubre overscroll). Default false: sin wrapper.
1547
+ */
1548
+ paintRoot?: boolean;
1530
1549
  }
1531
- declare function ThemeProvider({ children, defaultSchema, defaultMode, storageKey, persist, }: ThemeProviderProps): react.JSX.Element;
1550
+ declare function ThemeProvider({ children, defaultSchema, defaultMode, storageKey, persist, paintRoot, }: ThemeProviderProps): react.JSX.Element;
1532
1551
  declare function useTheme(): ThemeContextValue;
1533
1552
 
1534
1553
  interface TestIdProviderProps {
@@ -1546,4 +1565,4 @@ interface TestIdHandle {
1546
1565
  }
1547
1566
  declare function useTestId(type: string, ownTestId?: string): TestIdHandle;
1548
1567
 
1549
- export { Accordion, type AccordionItem, type AccordionProps, Alert, AlertCircleIcon, type AlertProps, type AlertSeverity, AppBar, type AppBarProps, ArchiveIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, AtSignIcon, Avatar, type AvatarProps, type AvatarSize, Badge, type BadgeProps, type BadgeTone, BellIcon, BellOffIcon, BookmarkIcon, Breadcrumbs, type BreadcrumbsProps, Button, type ButtonProps, type ButtonSize, type ButtonTone, type ButtonVariant, CalendarIcon, CameraIcon, Card, type CardProps, type CardSectionProps, CheckIcon, Checkbox, type CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsLeftIcon, ChevronsRightIcon, Chip, type ChipProps, type ChipTone, CircleCheckIcon, CircleXIcon, ClipboardIcon, ClockIcon, CloudIcon, type ColorTokens, Container, type ContainerProps, CopyIcon, CornerDownRightIcon, CreditCardIcon, type Crumb, Dialog, type DialogProps, Divider, type DividerProps, DollarSignIcon, DownloadIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FileIcon, FileTextIcon, FilterIcon, FingerprintIcon, FolderIcon, FolderOpenIcon, GiftIcon, GlobeIcon, GridIcon, HeartIcon, HelpCircleIcon, HomeIcon, type Icon, IconButton, type IconButtonProps, type IconButtonTone, type IconProps, ImageIcon, InboxIcon, InfoIcon, KeyIcon, LayoutIcon, LinkIcon, ListIcon, ListItem, type ListItemProps, LoaderIcon, LockIcon, LogInIcon, LogOutIcon, MailIcon, MapPinIcon, MaximizeIcon, Menu, MenuIcon, type MenuItemDef, type MenuProps, MessageCircleIcon, MessageSquareIcon, MicIcon, MinimizeIcon, MinusIcon, type Mode, type ModePreference, MoneyField, type MoneyFieldProps, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, PackageIcon, Pagination, type PaginationProps, PaperclipIcon, PasswordField, type PasswordFieldProps, PauseIcon, PencilIcon, PhoneIcon, PlayIcon, PlusIcon, PrinterIcon, Progress, type ProgressProps, type ProgressVariant, Radio, type RadioProps, RedoIcon, RefreshCwIcon, SaveIcon, type SchemaName, SearchIcon, Select, type SelectOption, type SelectProps, SendIcon, SettingsIcon, ShareIcon, ShieldCheckIcon, ShieldIcon, ShoppingBagIcon, ShoppingCartIcon, SidebarIcon, SkipBackIcon, SkipForwardIcon, Slider, type SliderProps, SlidersIcon, SmileIcon, Snackbar, type SnackbarProps, StarIcon, type Step, Stepper, type StepperProps, SunIcon, Switch, type SwitchProps, type TabItem, Table, type TableColumn, type TableProps, Tabs, type TabsProps, TagIcon, type TestIdHandle, TestIdProvider, type TestIdProviderProps, TextField, type TextFieldProps, ThemeProvider, type ThemeProviderProps, ThumbsDownIcon, ThumbsUpIcon, Tooltip, type TooltipPlacement, type TooltipProps, TrashIcon, TriangleAlertIcon, Typography, type TypographyAlign, type TypographyColor, type TypographyProps, type TypographyVariant, UndoIcon, UnlockIcon, UploadIcon, UserCheckIcon, UserIcon, UserPlusIcon, UsersIcon, Volume2Icon, VolumeXIcon, WifiIcon, XIcon, ZapIcon, colorVars, iconCatalog, modeNames, schemaNames, vars as theme, themes, usePrevious, useTestId, useTheme, useToggle };
1568
+ export { Accordion, type AccordionItem, type AccordionProps, Alert, AlertCircleIcon, type AlertProps, type AlertSeverity, AppBar, type AppBarProps, ArchiveIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, AtSignIcon, Avatar, type AvatarProps, type AvatarSize, Badge, type BadgeProps, type BadgeTone, BellIcon, BellOffIcon, BookmarkIcon, Breadcrumbs, type BreadcrumbsProps, Button, type ButtonProps, type ButtonSize, type ButtonTone, type ButtonVariant, CalendarIcon, CameraIcon, Card, type CardProps, type CardSectionProps, CheckIcon, Checkbox, type CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsLeftIcon, ChevronsRightIcon, Chip, type ChipProps, type ChipTone, CircleCheckIcon, CircleXIcon, ClipboardIcon, ClockIcon, CloudIcon, type ColorTokens, Container, type ContainerProps, CopyIcon, CornerDownRightIcon, CreditCardIcon, type Crumb, Dialog, type DialogProps, Divider, type DividerProps, DollarSignIcon, DownloadIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FileIcon, FileTextIcon, FilterIcon, FingerprintIcon, FolderIcon, FolderOpenIcon, GiftIcon, GlobeIcon, GridIcon, HeartIcon, HelpCircleIcon, HomeIcon, type Icon, IconButton, type IconButtonProps, type IconButtonTone, type IconProps, ImageIcon, InboxIcon, InfoIcon, KeyIcon, LayoutIcon, LinkIcon, ListIcon, ListItem, type ListItemProps, LoaderIcon, LockIcon, LogInIcon, LogOutIcon, MailIcon, MapPinIcon, MaximizeIcon, Menu, MenuIcon, type MenuItemDef, type MenuProps, MessageCircleIcon, MessageSquareIcon, MicIcon, MinimizeIcon, MinusIcon, type Mode, type ModePreference, MoneyField, type MoneyFieldProps, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, PackageIcon, Pagination, type PaginationProps, PaperclipIcon, PasswordField, type PasswordFieldProps, PauseIcon, PencilIcon, PhoneIcon, PlayIcon, PlusIcon, PrinterIcon, Progress, type ProgressProps, type ProgressVariant, Radio, type RadioProps, RedoIcon, RefreshCwIcon, SaveIcon, type SchemaName, SearchIcon, Select, type SelectOption, type SelectProps, SendIcon, SettingsIcon, ShareIcon, ShieldCheckIcon, ShieldIcon, ShoppingBagIcon, ShoppingCartIcon, SidebarIcon, SkipBackIcon, SkipForwardIcon, Slider, type SliderProps, SlidersIcon, SmileIcon, Snackbar, type SnackbarProps, StarIcon, type Step, Stepper, type StepperProps, SunIcon, Surface, type SurfaceProps, Switch, type SwitchProps, type TabItem, Table, type TableColumn, type TableProps, Tabs, type TabsProps, TagIcon, type TestIdHandle, TestIdProvider, type TestIdProviderProps, TextField, type TextFieldProps, ThemeProvider, type ThemeProviderProps, ThumbsDownIcon, ThumbsUpIcon, Tooltip, type TooltipPlacement, type TooltipProps, TrashIcon, TriangleAlertIcon, Typography, type TypographyAlign, type TypographyColor, type TypographyProps, type TypographyVariant, UndoIcon, UnlockIcon, UploadIcon, UserCheckIcon, UserIcon, UserPlusIcon, UsersIcon, Volume2Icon, VolumeXIcon, WifiIcon, XIcon, ZapIcon, colorVars, iconCatalog, modeNames, schemaNames, vars as theme, themes, usePrevious, useTestId, useTheme, useToggle };
package/dist/index.d.ts CHANGED
@@ -78,7 +78,7 @@ declare const schemas: {
78
78
  readonly letterSpacing: "0.14em";
79
79
  };
80
80
  readonly display: {
81
- readonly size: "5.6rem";
81
+ readonly size: "clamp(2.75rem, 1.4rem + 5.6vw, 5.6rem)";
82
82
  readonly lineHeight: "1.05";
83
83
  readonly weight: "600";
84
84
  readonly letterSpacing: "-0.01em";
@@ -226,7 +226,7 @@ declare const schemas: {
226
226
  readonly letterSpacing: "0.14em";
227
227
  };
228
228
  readonly display: {
229
- readonly size: "5.6rem";
229
+ readonly size: "clamp(2.75rem, 1.4rem + 5.6vw, 5.6rem)";
230
230
  readonly lineHeight: "1.05";
231
231
  readonly weight: "600";
232
232
  readonly letterSpacing: "-0.01em";
@@ -374,7 +374,7 @@ declare const schemas: {
374
374
  readonly letterSpacing: "0.14em";
375
375
  };
376
376
  readonly display: {
377
- readonly size: "5.6rem";
377
+ readonly size: "clamp(2.75rem, 1.4rem + 5.6vw, 5.6rem)";
378
378
  readonly lineHeight: "1.05";
379
379
  readonly weight: "600";
380
380
  readonly letterSpacing: "-0.01em";
@@ -522,7 +522,7 @@ declare const schemas: {
522
522
  readonly letterSpacing: "0.14em";
523
523
  };
524
524
  readonly display: {
525
- readonly size: "5.6rem";
525
+ readonly size: "clamp(2.75rem, 1.4rem + 5.6vw, 5.6rem)";
526
526
  readonly lineHeight: "1.05";
527
527
  readonly weight: "600";
528
528
  readonly letterSpacing: "-0.01em";
@@ -885,6 +885,20 @@ declare const Container: <E extends ElementType = "div">(props: ContainerProps<E
885
885
  ref?: Ref<Element>;
886
886
  }) => ReturnType<typeof ContainerImpl>;
887
887
 
888
+ type SurfaceOwnProps<E extends ElementType> = {
889
+ as?: E;
890
+ /** Rellena el alto del viewport (min-height: 100dvh). Útil para el canvas de página. */
891
+ fill?: boolean;
892
+ /** Segmento de contexto para el data-testid. */
893
+ testId?: string;
894
+ };
895
+ type SurfaceProps<E extends ElementType = "div"> = SurfaceOwnProps<E> & Omit<ComponentPropsWithoutRef<E>, "className" | "style" | keyof SurfaceOwnProps<E>>;
896
+
897
+ declare function SurfaceInner<E extends ElementType = "div">({ as, fill, testId, ...rest }: SurfaceProps<E>, ref: Ref<HTMLElement>): react.JSX.Element;
898
+ declare const Surface: <E extends ElementType = "div">(props: SurfaceProps<E> & {
899
+ ref?: Ref<HTMLElement>;
900
+ }) => ReturnType<typeof SurfaceInner>;
901
+
888
902
  type TypographyVariant = "display" | "h1" | "h2" | "h3" | "h4" | "body" | "lead" | "small" | "caption" | "eyebrow" | "code" | "blackletter";
889
903
  type TypographyColor = "fg1" | "fg2" | "fg3" | "accent" | "danger" | "ok" | "warn" | "info";
890
904
  type TypographyAlign = "left" | "center" | "right";
@@ -1527,8 +1541,13 @@ interface ThemeProviderProps {
1527
1541
  storageKey?: string;
1528
1542
  /** Si es false, no persiste ni rehidrata (útil para previews/tests). */
1529
1543
  persist?: boolean;
1544
+ /**
1545
+ * Si es true, el provider pinta el canvas de página en el tema activo: envuelve en
1546
+ * <Surface fill> y pinta el <body> (cubre overscroll). Default false: sin wrapper.
1547
+ */
1548
+ paintRoot?: boolean;
1530
1549
  }
1531
- declare function ThemeProvider({ children, defaultSchema, defaultMode, storageKey, persist, }: ThemeProviderProps): react.JSX.Element;
1550
+ declare function ThemeProvider({ children, defaultSchema, defaultMode, storageKey, persist, paintRoot, }: ThemeProviderProps): react.JSX.Element;
1532
1551
  declare function useTheme(): ThemeContextValue;
1533
1552
 
1534
1553
  interface TestIdProviderProps {
@@ -1546,4 +1565,4 @@ interface TestIdHandle {
1546
1565
  }
1547
1566
  declare function useTestId(type: string, ownTestId?: string): TestIdHandle;
1548
1567
 
1549
- export { Accordion, type AccordionItem, type AccordionProps, Alert, AlertCircleIcon, type AlertProps, type AlertSeverity, AppBar, type AppBarProps, ArchiveIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, AtSignIcon, Avatar, type AvatarProps, type AvatarSize, Badge, type BadgeProps, type BadgeTone, BellIcon, BellOffIcon, BookmarkIcon, Breadcrumbs, type BreadcrumbsProps, Button, type ButtonProps, type ButtonSize, type ButtonTone, type ButtonVariant, CalendarIcon, CameraIcon, Card, type CardProps, type CardSectionProps, CheckIcon, Checkbox, type CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsLeftIcon, ChevronsRightIcon, Chip, type ChipProps, type ChipTone, CircleCheckIcon, CircleXIcon, ClipboardIcon, ClockIcon, CloudIcon, type ColorTokens, Container, type ContainerProps, CopyIcon, CornerDownRightIcon, CreditCardIcon, type Crumb, Dialog, type DialogProps, Divider, type DividerProps, DollarSignIcon, DownloadIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FileIcon, FileTextIcon, FilterIcon, FingerprintIcon, FolderIcon, FolderOpenIcon, GiftIcon, GlobeIcon, GridIcon, HeartIcon, HelpCircleIcon, HomeIcon, type Icon, IconButton, type IconButtonProps, type IconButtonTone, type IconProps, ImageIcon, InboxIcon, InfoIcon, KeyIcon, LayoutIcon, LinkIcon, ListIcon, ListItem, type ListItemProps, LoaderIcon, LockIcon, LogInIcon, LogOutIcon, MailIcon, MapPinIcon, MaximizeIcon, Menu, MenuIcon, type MenuItemDef, type MenuProps, MessageCircleIcon, MessageSquareIcon, MicIcon, MinimizeIcon, MinusIcon, type Mode, type ModePreference, MoneyField, type MoneyFieldProps, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, PackageIcon, Pagination, type PaginationProps, PaperclipIcon, PasswordField, type PasswordFieldProps, PauseIcon, PencilIcon, PhoneIcon, PlayIcon, PlusIcon, PrinterIcon, Progress, type ProgressProps, type ProgressVariant, Radio, type RadioProps, RedoIcon, RefreshCwIcon, SaveIcon, type SchemaName, SearchIcon, Select, type SelectOption, type SelectProps, SendIcon, SettingsIcon, ShareIcon, ShieldCheckIcon, ShieldIcon, ShoppingBagIcon, ShoppingCartIcon, SidebarIcon, SkipBackIcon, SkipForwardIcon, Slider, type SliderProps, SlidersIcon, SmileIcon, Snackbar, type SnackbarProps, StarIcon, type Step, Stepper, type StepperProps, SunIcon, Switch, type SwitchProps, type TabItem, Table, type TableColumn, type TableProps, Tabs, type TabsProps, TagIcon, type TestIdHandle, TestIdProvider, type TestIdProviderProps, TextField, type TextFieldProps, ThemeProvider, type ThemeProviderProps, ThumbsDownIcon, ThumbsUpIcon, Tooltip, type TooltipPlacement, type TooltipProps, TrashIcon, TriangleAlertIcon, Typography, type TypographyAlign, type TypographyColor, type TypographyProps, type TypographyVariant, UndoIcon, UnlockIcon, UploadIcon, UserCheckIcon, UserIcon, UserPlusIcon, UsersIcon, Volume2Icon, VolumeXIcon, WifiIcon, XIcon, ZapIcon, colorVars, iconCatalog, modeNames, schemaNames, vars as theme, themes, usePrevious, useTestId, useTheme, useToggle };
1568
+ export { Accordion, type AccordionItem, type AccordionProps, Alert, AlertCircleIcon, type AlertProps, type AlertSeverity, AppBar, type AppBarProps, ArchiveIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, AtSignIcon, Avatar, type AvatarProps, type AvatarSize, Badge, type BadgeProps, type BadgeTone, BellIcon, BellOffIcon, BookmarkIcon, Breadcrumbs, type BreadcrumbsProps, Button, type ButtonProps, type ButtonSize, type ButtonTone, type ButtonVariant, CalendarIcon, CameraIcon, Card, type CardProps, type CardSectionProps, CheckIcon, Checkbox, type CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsLeftIcon, ChevronsRightIcon, Chip, type ChipProps, type ChipTone, CircleCheckIcon, CircleXIcon, ClipboardIcon, ClockIcon, CloudIcon, type ColorTokens, Container, type ContainerProps, CopyIcon, CornerDownRightIcon, CreditCardIcon, type Crumb, Dialog, type DialogProps, Divider, type DividerProps, DollarSignIcon, DownloadIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FileIcon, FileTextIcon, FilterIcon, FingerprintIcon, FolderIcon, FolderOpenIcon, GiftIcon, GlobeIcon, GridIcon, HeartIcon, HelpCircleIcon, HomeIcon, type Icon, IconButton, type IconButtonProps, type IconButtonTone, type IconProps, ImageIcon, InboxIcon, InfoIcon, KeyIcon, LayoutIcon, LinkIcon, ListIcon, ListItem, type ListItemProps, LoaderIcon, LockIcon, LogInIcon, LogOutIcon, MailIcon, MapPinIcon, MaximizeIcon, Menu, MenuIcon, type MenuItemDef, type MenuProps, MessageCircleIcon, MessageSquareIcon, MicIcon, MinimizeIcon, MinusIcon, type Mode, type ModePreference, MoneyField, type MoneyFieldProps, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, PackageIcon, Pagination, type PaginationProps, PaperclipIcon, PasswordField, type PasswordFieldProps, PauseIcon, PencilIcon, PhoneIcon, PlayIcon, PlusIcon, PrinterIcon, Progress, type ProgressProps, type ProgressVariant, Radio, type RadioProps, RedoIcon, RefreshCwIcon, SaveIcon, type SchemaName, SearchIcon, Select, type SelectOption, type SelectProps, SendIcon, SettingsIcon, ShareIcon, ShieldCheckIcon, ShieldIcon, ShoppingBagIcon, ShoppingCartIcon, SidebarIcon, SkipBackIcon, SkipForwardIcon, Slider, type SliderProps, SlidersIcon, SmileIcon, Snackbar, type SnackbarProps, StarIcon, type Step, Stepper, type StepperProps, SunIcon, Surface, type SurfaceProps, Switch, type SwitchProps, type TabItem, Table, type TableColumn, type TableProps, Tabs, type TabsProps, TagIcon, type TestIdHandle, TestIdProvider, type TestIdProviderProps, TextField, type TextFieldProps, ThemeProvider, type ThemeProviderProps, ThumbsDownIcon, ThumbsUpIcon, Tooltip, type TooltipPlacement, type TooltipProps, TrashIcon, TriangleAlertIcon, Typography, type TypographyAlign, type TypographyColor, type TypographyProps, type TypographyVariant, UndoIcon, UnlockIcon, UploadIcon, UserCheckIcon, UserIcon, UserPlusIcon, UsersIcon, Volume2Icon, VolumeXIcon, WifiIcon, XIcon, ZapIcon, colorVars, iconCatalog, modeNames, schemaNames, vars as theme, themes, usePrevious, useTestId, useTheme, useToggle };