@yahoo/uds 3.152.1 → 3.153.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.
Files changed (139) hide show
  1. package/dist/automated-config/dist/generated/autoVariants.cjs +25 -0
  2. package/dist/automated-config/dist/generated/autoVariants.d.cts +6 -0
  3. package/dist/automated-config/dist/generated/autoVariants.d.ts +6 -0
  4. package/dist/automated-config/dist/generated/autoVariants.js +25 -0
  5. package/dist/automated-config/dist/generated/generatedConfigs.cjs +1368 -0
  6. package/dist/automated-config/dist/generated/generatedConfigs.d.cts +169 -1
  7. package/dist/automated-config/dist/generated/generatedConfigs.d.ts +169 -1
  8. package/dist/automated-config/dist/generated/generatedConfigs.js +1368 -1
  9. package/dist/automated-config/dist/generated/universalTokensConfigAuto.cjs +198 -0
  10. package/dist/automated-config/dist/generated/universalTokensConfigAuto.d.cts +2 -1
  11. package/dist/automated-config/dist/generated/universalTokensConfigAuto.d.ts +2 -1
  12. package/dist/automated-config/dist/generated/universalTokensConfigAuto.js +198 -0
  13. package/dist/automated-config/dist/types/ComponentConfig.d.cts +2 -0
  14. package/dist/automated-config/dist/types/ComponentConfig.d.ts +2 -0
  15. package/dist/automated-config/dist/utils/buildConfigSchema.cjs +13 -20
  16. package/dist/automated-config/dist/utils/buildConfigSchema.d.cts +14 -2
  17. package/dist/automated-config/dist/utils/buildConfigSchema.d.ts +14 -2
  18. package/dist/automated-config/dist/utils/buildConfigSchema.js +13 -20
  19. package/dist/automated-config/dist/utils/componentStatePseudoStates.cjs +15 -0
  20. package/dist/automated-config/dist/utils/componentStatePseudoStates.js +14 -0
  21. package/dist/automated-config/dist/utils/getConfigVariantPseudoStates.cjs +4 -2
  22. package/dist/automated-config/dist/utils/getConfigVariantPseudoStates.d.cts +1 -1
  23. package/dist/automated-config/dist/utils/getConfigVariantPseudoStates.d.ts +1 -1
  24. package/dist/automated-config/dist/utils/getConfigVariantPseudoStates.js +4 -2
  25. package/dist/automated-config/dist/utils/index.cjs +114 -48
  26. package/dist/automated-config/dist/utils/index.d.cts +25 -2
  27. package/dist/automated-config/dist/utils/index.d.ts +25 -2
  28. package/dist/automated-config/dist/utils/index.js +114 -49
  29. package/dist/components/client/Menu/Menu.ItemCheckbox.d.cts +1 -1
  30. package/dist/components/client/Menu/Menu.ItemCheckbox.d.ts +1 -1
  31. package/dist/components/client/Pagination/Pagination.cjs +62 -0
  32. package/dist/components/client/Pagination/Pagination.d.cts +28 -0
  33. package/dist/components/client/Pagination/Pagination.d.ts +29 -0
  34. package/dist/components/client/Pagination/Pagination.js +60 -0
  35. package/dist/components/client/Pagination/PaginationEllipsis.cjs +24 -0
  36. package/dist/components/client/Pagination/PaginationEllipsis.d.cts +10 -0
  37. package/dist/components/client/Pagination/PaginationEllipsis.d.ts +11 -0
  38. package/dist/components/client/Pagination/PaginationEllipsis.js +22 -0
  39. package/dist/components/client/Pagination/PaginationItem.cjs +52 -0
  40. package/dist/components/client/Pagination/PaginationItem.d.cts +10 -0
  41. package/dist/components/client/Pagination/PaginationItem.d.ts +11 -0
  42. package/dist/components/client/Pagination/PaginationItem.js +50 -0
  43. package/dist/components/client/Pagination/PaginationLink.cjs +53 -0
  44. package/dist/components/client/Pagination/PaginationLink.d.cts +9 -0
  45. package/dist/components/client/Pagination/PaginationLink.d.ts +10 -0
  46. package/dist/components/client/Pagination/PaginationLink.js +51 -0
  47. package/dist/components/client/Pagination/PaginationNext.cjs +56 -0
  48. package/dist/components/client/Pagination/PaginationNext.d.cts +9 -0
  49. package/dist/components/client/Pagination/PaginationNext.d.ts +10 -0
  50. package/dist/components/client/Pagination/PaginationNext.js +54 -0
  51. package/dist/components/client/Pagination/PaginationNumbers.cjs +52 -0
  52. package/dist/components/client/Pagination/PaginationNumbers.d.cts +9 -0
  53. package/dist/components/client/Pagination/PaginationNumbers.d.ts +10 -0
  54. package/dist/components/client/Pagination/PaginationNumbers.js +50 -0
  55. package/dist/components/client/Pagination/PaginationPrev.cjs +56 -0
  56. package/dist/components/client/Pagination/PaginationPrev.d.cts +9 -0
  57. package/dist/components/client/Pagination/PaginationPrev.d.ts +10 -0
  58. package/dist/components/client/Pagination/PaginationPrev.js +54 -0
  59. package/dist/components/client/Pagination/computeVisiblePages.cjs +22 -0
  60. package/dist/components/client/Pagination/computeVisiblePages.d.cts +18 -0
  61. package/dist/components/client/Pagination/computeVisiblePages.d.ts +19 -0
  62. package/dist/components/client/Pagination/computeVisiblePages.js +21 -0
  63. package/dist/components/client/Pagination/ellipsisDefault.cjs +33 -0
  64. package/dist/components/client/Pagination/ellipsisDefault.d.cts +10 -0
  65. package/dist/components/client/Pagination/ellipsisDefault.d.ts +11 -0
  66. package/dist/components/client/Pagination/ellipsisDefault.js +32 -0
  67. package/dist/components/client/Pagination/ellipsisNone.cjs +29 -0
  68. package/dist/components/client/Pagination/ellipsisNone.d.cts +10 -0
  69. package/dist/components/client/Pagination/ellipsisNone.d.ts +11 -0
  70. package/dist/components/client/Pagination/ellipsisNone.js +28 -0
  71. package/dist/components/client/Pagination/index.cjs +19 -0
  72. package/dist/components/client/Pagination/index.d.cts +10 -0
  73. package/dist/components/client/Pagination/index.d.ts +11 -0
  74. package/dist/components/client/Pagination/index.js +11 -0
  75. package/dist/components/client/Pagination/paginationContext.cjs +44 -0
  76. package/dist/components/client/Pagination/paginationContext.d.cts +34 -0
  77. package/dist/components/client/Pagination/paginationContext.d.ts +35 -0
  78. package/dist/components/client/Pagination/paginationContext.js +38 -0
  79. package/dist/components/client/Pagination/paginationStyles.cjs +72 -0
  80. package/dist/components/client/Pagination/paginationStyles.d.cts +14 -0
  81. package/dist/components/client/Pagination/paginationStyles.d.ts +15 -0
  82. package/dist/components/client/Pagination/paginationStyles.js +63 -0
  83. package/dist/components/client/index.cjs +14 -0
  84. package/dist/components/client/index.d.cts +8 -1
  85. package/dist/components/client/index.d.ts +8 -1
  86. package/dist/components/client/index.js +8 -1
  87. package/dist/components/index.cjs +14 -0
  88. package/dist/components/index.d.cts +8 -1
  89. package/dist/components/index.d.ts +8 -1
  90. package/dist/components/index.js +8 -1
  91. package/dist/config/dist/index.cjs +272 -2
  92. package/dist/config/dist/index.js +272 -2
  93. package/dist/css/dist/css/utils.cjs +5 -1
  94. package/dist/css/dist/css/utils.js +5 -1
  95. package/dist/css/dist/packages/config/dist/index.cjs +272 -2
  96. package/dist/css/dist/packages/config/dist/index.js +272 -2
  97. package/dist/index.cjs +16 -0
  98. package/dist/index.d.cts +11 -4
  99. package/dist/index.d.ts +11 -4
  100. package/dist/index.js +10 -3
  101. package/dist/styles/styler.d.cts +28 -22
  102. package/dist/styles/styler.d.ts +28 -22
  103. package/dist/styles/variants.d.cts +27 -0
  104. package/dist/styles/variants.d.ts +27 -0
  105. package/dist/tailwind-internal/dist/packages/automated-config/dist/generated/generatedConfigs.cjs +1368 -0
  106. package/dist/tailwind-internal/dist/packages/automated-config/dist/generated/generatedConfigs.js +1368 -1
  107. package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/componentStatePseudoStates.cjs +16 -0
  108. package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/componentStatePseudoStates.js +15 -0
  109. package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/index.cjs +113 -48
  110. package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/index.js +113 -48
  111. package/dist/tailwind-internal/dist/packages/config/dist/index.cjs +272 -2
  112. package/dist/tailwind-internal/dist/packages/config/dist/index.js +272 -2
  113. package/dist/tailwind-internal/dist/plugins/components.cjs +1 -0
  114. package/dist/tailwind-internal/dist/plugins/components.js +2 -1
  115. package/dist/tailwind-internal/dist/utils/getShadowStyles.d.cts +2 -2
  116. package/dist/tailwind-internal/dist/utils/getShadowStyles.d.ts +2 -2
  117. package/dist/tokens/automation/configs/index.cjs +1 -0
  118. package/dist/tokens/automation/configs/index.d.cts +2 -2
  119. package/dist/tokens/automation/configs/index.d.ts +2 -2
  120. package/dist/tokens/automation/configs/index.js +2 -2
  121. package/dist/tokens/automation/index.cjs +2 -0
  122. package/dist/tokens/automation/index.d.cts +3 -3
  123. package/dist/tokens/automation/index.d.ts +3 -3
  124. package/dist/tokens/automation/index.js +3 -3
  125. package/dist/tokens/index.cjs +2 -0
  126. package/dist/tokens/index.d.cts +4 -4
  127. package/dist/tokens/index.d.ts +4 -4
  128. package/dist/tokens/index.js +3 -3
  129. package/dist/tokens/types.d.cts +2 -2
  130. package/dist/tokens/types.d.ts +2 -2
  131. package/dist/types/dist/index.d.cts +83 -1
  132. package/dist/types/dist/index.d.ts +83 -1
  133. package/dist/uds/generated/componentData.cjs +1238 -858
  134. package/dist/uds/generated/componentData.js +1238 -858
  135. package/dist/uds/generated/tailwindPurge.cjs +31 -0
  136. package/dist/uds/generated/tailwindPurge.js +31 -0
  137. package/generated/componentData.json +2127 -1667
  138. package/generated/tailwindPurge.ts +4 -4
  139. package/package.json +1 -1
@@ -53,6 +53,13 @@ const require_components_client_PaddleNav_PaddleButtonNext = require("./client/P
53
53
  const require_components_client_PaddleNav_PaddleButtonPrevious = require("./client/PaddleNav/PaddleButtonPrevious.cjs");
54
54
  const require_components_client_PaddleNav_PaddleNavContent = require("./client/PaddleNav/PaddleNavContent.cjs");
55
55
  const require_components_client_PaddleNav_PaddleNav = require("./client/PaddleNav/PaddleNav.cjs");
56
+ const require_components_client_Pagination_Pagination = require("./client/Pagination/Pagination.cjs");
57
+ const require_components_client_Pagination_PaginationEllipsis = require("./client/Pagination/PaginationEllipsis.cjs");
58
+ const require_components_client_Pagination_PaginationItem = require("./client/Pagination/PaginationItem.cjs");
59
+ const require_components_client_Pagination_PaginationLink = require("./client/Pagination/PaginationLink.cjs");
60
+ const require_components_client_Pagination_PaginationNext = require("./client/Pagination/PaginationNext.cjs");
61
+ const require_components_client_Pagination_PaginationNumbers = require("./client/Pagination/PaginationNumbers.cjs");
62
+ const require_components_client_Pagination_PaginationPrev = require("./client/Pagination/PaginationPrev.cjs");
56
63
  const require_components_client_Popover_UDSPopoverConfigProvider = require("./client/Popover/UDSPopoverConfigProvider.cjs");
57
64
  const require_components_client_Popover_Popover = require("./client/Popover/Popover.cjs");
58
65
  const require_components_client_Popover_PopoverContent = require("./client/Popover/PopoverContent.cjs");
@@ -125,6 +132,13 @@ exports.PaddleButtonNext = require_components_client_PaddleNav_PaddleButtonNext.
125
132
  exports.PaddleButtonPrevious = require_components_client_PaddleNav_PaddleButtonPrevious.PaddleButtonPrevious;
126
133
  exports.PaddleNav = require_components_client_PaddleNav_PaddleNav.PaddleNav;
127
134
  exports.PaddleNavContent = require_components_client_PaddleNav_PaddleNavContent.PaddleNavContent;
135
+ exports.Pagination = require_components_client_Pagination_Pagination.Pagination;
136
+ exports.PaginationEllipsis = require_components_client_Pagination_PaginationEllipsis.PaginationEllipsis;
137
+ exports.PaginationItem = require_components_client_Pagination_PaginationItem.PaginationItem;
138
+ exports.PaginationLink = require_components_client_Pagination_PaginationLink.PaginationLink;
139
+ exports.PaginationNext = require_components_client_Pagination_PaginationNext.PaginationNext;
140
+ exports.PaginationNumbers = require_components_client_Pagination_PaginationNumbers.PaginationNumbers;
141
+ exports.PaginationPrev = require_components_client_Pagination_PaginationPrev.PaginationPrev;
128
142
  exports.Popover = require_components_client_Popover_Popover.Popover;
129
143
  exports.PopoverContent = require_components_client_Popover_PopoverContent.PopoverContent;
130
144
  exports.PopoverTrigger = require_components_client_Popover_PopoverTrigger.PopoverTrigger;
@@ -58,6 +58,13 @@ import { PaddleButtonNext, PaddleButtonNextProps } from "./client/PaddleNav/Padd
58
58
  import { PaddleButtonPrevious, PaddleButtonPreviousProps } from "./client/PaddleNav/PaddleButtonPrevious.cjs";
59
59
  import { PaddleNav, PaddleNavProps } from "./client/PaddleNav/PaddleNav.cjs";
60
60
  import { PaddleNavContent, PaddleNavContentProps } from "./client/PaddleNav/PaddleNavContent.cjs";
61
+ import { Pagination, PaginationProps } from "./client/Pagination/Pagination.cjs";
62
+ import { PaginationEllipsis, PaginationEllipsisProps } from "./client/Pagination/PaginationEllipsis.cjs";
63
+ import { PaginationItem, PaginationItemProps } from "./client/Pagination/PaginationItem.cjs";
64
+ import { PaginationLink, PaginationLinkProps } from "./client/Pagination/PaginationLink.cjs";
65
+ import { PaginationNext, PaginationNextProps } from "./client/Pagination/PaginationNext.cjs";
66
+ import { PaginationNumbers, PaginationNumbersProps } from "./client/Pagination/PaginationNumbers.cjs";
67
+ import { PaginationPrev, PaginationPrevProps } from "./client/Pagination/PaginationPrev.cjs";
61
68
  import { Popover } from "./client/Popover/Popover.cjs";
62
69
  import { PopoverContent } from "./client/Popover/PopoverContent.cjs";
63
70
  import { PopoverTrigger } from "./client/Popover/PopoverTrigger.cjs";
@@ -82,4 +89,4 @@ import { TooltipContent } from "./client/Tooltip/TooltipContent.cjs";
82
89
  import { TooltipTrigger } from "./client/Tooltip/TooltipTrigger.cjs";
83
90
  import { UDSTooltipConfigProvider, UDSTooltipConfigProviderProps } from "./client/Tooltip/UDSTooltipConfigProvider.cjs";
84
91
  import { Modal, ModalProps } from "./client/Modal/Modal.cjs";
85
- export { Avatar, AvatarIcon, type AvatarIconProps, AvatarImage, type AvatarImageProps, type AvatarProps, AvatarText, type AvatarTextProps, Badge, type BadgeProps, Banner, BannerContent, type BannerContentProps, BannerDescription, type BannerDescriptionProps, type BannerProps, BannerTitle, type BannerTitleProps, BottomSheet, BottomSheetContent, type BottomSheetContentProps, type BottomSheetController, BottomSheetDismiss, type BottomSheetDismissProps, BottomSheetHeader, type BottomSheetHeaderProps, type BottomSheetProps, BottomSheetProvider, type BottomSheetProviderProps, BottomSheetTrigger, type BottomSheetTriggerProps, Box, type BoxProps, Button, type ButtonProps, Checkbox, type CheckboxProps, Chip, ChipButton, type ChipButtonProps, ChipDismissible, type ChipDismissibleProps, ChipLink, type ChipLinkProps, type ChipProps, ChipToggle, type ChipToggleProps, Divider, DividerLabel, type DividerLabelProps, DividerLine, type DividerLineProps, type DividerProps, FormLabel, type FormLabelProps, HStack, type HStackProps, Icon, IconButton, type IconButtonProps, type IconProps, Image, type ImageProps, Input, InputHelpText, type InputHelpTextProps, type InputProps, Link, type LinkProps, Menu_index_d_exports as Menu, type MenuContentProps, type MenuDividerProps, type MenuItemCheckboxProps, type MenuItemProps, type MenuPlacement, type MenuProviderProps, type MenuTriggerProps, Modal, type ModalAPI, ModalActions, type ModalActionsProps, ModalContent, type ModalContentProps, ModalDescription, type ModalDescriptionProps, ModalPortal, type ModalProps, ModalTitle, type ModalTitleProps, PaddleButtonNext, type PaddleButtonNextProps, PaddleButtonPrevious, type PaddleButtonPreviousProps, PaddleNav, PaddleNavContent, type PaddleNavContentProps, type PaddleNavProps, Popover, PopoverContent, type UniversalPopoverContentProps as PopoverContentProps, type UniversalPopoverProps as PopoverProps, PopoverTrigger, type UniversalPopoverTriggerProps as PopoverTriggerProps, Pressable, type PressableProps, Radio, RadioGroupProvider, type RadioGroupProviderProps, type RadioProps, Scrim, type ScrimProps, SpringMotionConfig, type SpringMotionConfigProps, Switch, type SwitchProps, Tab, TabList, type TabListProps, TabPanel, type TabPanelProps, type TabProps, Tabs, type TabsProps, type TabsVariant, Text, type TextProps, Toast, ToastContainer, type ToastContainerProps, type ToastLoadingPromise, ToastPortal, type ToastPortalProps, type ToastProps, Tooltip, TooltipContent, type UniversalTooltipContentProps as TooltipContentProps, type UniversalTooltipProps as TooltipProps, TooltipTrigger, type UniversalTooltipTriggerProps as TooltipTriggerProps, UDSBreakpointsConfigProvider, type UDSBreakpointsConfigProviderProps, UDSConfigProvider, type UDSConfigProviderProps, UDSModalConfigProvider, type UDSModalConfigProviderProps, UDSPopoverConfigProvider, type UDSPopoverConfigProviderProps, UDSToastConfigProvider, type UDSToastConfigProviderProps, UDSTooltipConfigProvider, type UDSTooltipConfigProviderProps, VStack, type VStackProps, createModal, createToast, useBottomSheetStore, useBreakpointsConfig, useModalConfig, useToastConfig };
92
+ export { Avatar, AvatarIcon, type AvatarIconProps, AvatarImage, type AvatarImageProps, type AvatarProps, AvatarText, type AvatarTextProps, Badge, type BadgeProps, Banner, BannerContent, type BannerContentProps, BannerDescription, type BannerDescriptionProps, type BannerProps, BannerTitle, type BannerTitleProps, BottomSheet, BottomSheetContent, type BottomSheetContentProps, type BottomSheetController, BottomSheetDismiss, type BottomSheetDismissProps, BottomSheetHeader, type BottomSheetHeaderProps, type BottomSheetProps, BottomSheetProvider, type BottomSheetProviderProps, BottomSheetTrigger, type BottomSheetTriggerProps, Box, type BoxProps, Button, type ButtonProps, Checkbox, type CheckboxProps, Chip, ChipButton, type ChipButtonProps, ChipDismissible, type ChipDismissibleProps, ChipLink, type ChipLinkProps, type ChipProps, ChipToggle, type ChipToggleProps, Divider, DividerLabel, type DividerLabelProps, DividerLine, type DividerLineProps, type DividerProps, FormLabel, type FormLabelProps, HStack, type HStackProps, Icon, IconButton, type IconButtonProps, type IconProps, Image, type ImageProps, Input, InputHelpText, type InputHelpTextProps, type InputProps, Link, type LinkProps, Menu_index_d_exports as Menu, type MenuContentProps, type MenuDividerProps, type MenuItemCheckboxProps, type MenuItemProps, type MenuPlacement, type MenuProviderProps, type MenuTriggerProps, Modal, type ModalAPI, ModalActions, type ModalActionsProps, ModalContent, type ModalContentProps, ModalDescription, type ModalDescriptionProps, ModalPortal, type ModalProps, ModalTitle, type ModalTitleProps, PaddleButtonNext, type PaddleButtonNextProps, PaddleButtonPrevious, type PaddleButtonPreviousProps, PaddleNav, PaddleNavContent, type PaddleNavContentProps, type PaddleNavProps, Pagination, PaginationEllipsis, type PaginationEllipsisProps, PaginationItem, type PaginationItemProps, PaginationLink, type PaginationLinkProps, PaginationNext, type PaginationNextProps, PaginationNumbers, type PaginationNumbersProps, PaginationPrev, type PaginationPrevProps, type PaginationProps, Popover, PopoverContent, type UniversalPopoverContentProps as PopoverContentProps, type UniversalPopoverProps as PopoverProps, PopoverTrigger, type UniversalPopoverTriggerProps as PopoverTriggerProps, Pressable, type PressableProps, Radio, RadioGroupProvider, type RadioGroupProviderProps, type RadioProps, Scrim, type ScrimProps, SpringMotionConfig, type SpringMotionConfigProps, Switch, type SwitchProps, Tab, TabList, type TabListProps, TabPanel, type TabPanelProps, type TabProps, Tabs, type TabsProps, type TabsVariant, Text, type TextProps, Toast, ToastContainer, type ToastContainerProps, type ToastLoadingPromise, ToastPortal, type ToastPortalProps, type ToastProps, Tooltip, TooltipContent, type UniversalTooltipContentProps as TooltipContentProps, type UniversalTooltipProps as TooltipProps, TooltipTrigger, type UniversalTooltipTriggerProps as TooltipTriggerProps, UDSBreakpointsConfigProvider, type UDSBreakpointsConfigProviderProps, UDSConfigProvider, type UDSConfigProviderProps, UDSModalConfigProvider, type UDSModalConfigProviderProps, UDSPopoverConfigProvider, type UDSPopoverConfigProviderProps, UDSToastConfigProvider, type UDSToastConfigProviderProps, UDSTooltipConfigProvider, type UDSTooltipConfigProviderProps, VStack, type VStackProps, createModal, createToast, useBottomSheetStore, useBreakpointsConfig, useModalConfig, useToastConfig };
@@ -58,6 +58,13 @@ import { PaddleButtonNext, PaddleButtonNextProps } from "./client/PaddleNav/Padd
58
58
  import { PaddleButtonPrevious, PaddleButtonPreviousProps } from "./client/PaddleNav/PaddleButtonPrevious.js";
59
59
  import { PaddleNav, PaddleNavProps } from "./client/PaddleNav/PaddleNav.js";
60
60
  import { PaddleNavContent, PaddleNavContentProps } from "./client/PaddleNav/PaddleNavContent.js";
61
+ import { Pagination, PaginationProps } from "./client/Pagination/Pagination.js";
62
+ import { PaginationEllipsis, PaginationEllipsisProps } from "./client/Pagination/PaginationEllipsis.js";
63
+ import { PaginationItem, PaginationItemProps } from "./client/Pagination/PaginationItem.js";
64
+ import { PaginationLink, PaginationLinkProps } from "./client/Pagination/PaginationLink.js";
65
+ import { PaginationNext, PaginationNextProps } from "./client/Pagination/PaginationNext.js";
66
+ import { PaginationNumbers, PaginationNumbersProps } from "./client/Pagination/PaginationNumbers.js";
67
+ import { PaginationPrev, PaginationPrevProps } from "./client/Pagination/PaginationPrev.js";
61
68
  import { Popover } from "./client/Popover/Popover.js";
62
69
  import { PopoverContent } from "./client/Popover/PopoverContent.js";
63
70
  import { PopoverTrigger } from "./client/Popover/PopoverTrigger.js";
@@ -82,4 +89,4 @@ import { TooltipContent } from "./client/Tooltip/TooltipContent.js";
82
89
  import { TooltipTrigger } from "./client/Tooltip/TooltipTrigger.js";
83
90
  import { UDSTooltipConfigProvider, UDSTooltipConfigProviderProps } from "./client/Tooltip/UDSTooltipConfigProvider.js";
84
91
  import { Modal, ModalProps } from "./client/Modal/Modal.js";
85
- export { Avatar, AvatarIcon, type AvatarIconProps, AvatarImage, type AvatarImageProps, type AvatarProps, AvatarText, type AvatarTextProps, Badge, type BadgeProps, Banner, BannerContent, type BannerContentProps, BannerDescription, type BannerDescriptionProps, type BannerProps, BannerTitle, type BannerTitleProps, BottomSheet, BottomSheetContent, type BottomSheetContentProps, type BottomSheetController, BottomSheetDismiss, type BottomSheetDismissProps, BottomSheetHeader, type BottomSheetHeaderProps, type BottomSheetProps, BottomSheetProvider, type BottomSheetProviderProps, BottomSheetTrigger, type BottomSheetTriggerProps, Box, type BoxProps, Button, type ButtonProps, Checkbox, type CheckboxProps, Chip, ChipButton, type ChipButtonProps, ChipDismissible, type ChipDismissibleProps, ChipLink, type ChipLinkProps, type ChipProps, ChipToggle, type ChipToggleProps, Divider, DividerLabel, type DividerLabelProps, DividerLine, type DividerLineProps, type DividerProps, FormLabel, type FormLabelProps, HStack, type HStackProps, Icon, IconButton, type IconButtonProps, type IconProps, Image, type ImageProps, Input, InputHelpText, type InputHelpTextProps, type InputProps, Link, type LinkProps, Menu_index_d_exports as Menu, type MenuContentProps, type MenuDividerProps, type MenuItemCheckboxProps, type MenuItemProps, type MenuPlacement, type MenuProviderProps, type MenuTriggerProps, Modal, type ModalAPI, ModalActions, type ModalActionsProps, ModalContent, type ModalContentProps, ModalDescription, type ModalDescriptionProps, ModalPortal, type ModalProps, ModalTitle, type ModalTitleProps, PaddleButtonNext, type PaddleButtonNextProps, PaddleButtonPrevious, type PaddleButtonPreviousProps, PaddleNav, PaddleNavContent, type PaddleNavContentProps, type PaddleNavProps, Popover, PopoverContent, type UniversalPopoverContentProps as PopoverContentProps, type UniversalPopoverProps as PopoverProps, PopoverTrigger, type UniversalPopoverTriggerProps as PopoverTriggerProps, Pressable, type PressableProps, Radio, RadioGroupProvider, type RadioGroupProviderProps, type RadioProps, Scrim, type ScrimProps, SpringMotionConfig, type SpringMotionConfigProps, Switch, type SwitchProps, Tab, TabList, type TabListProps, TabPanel, type TabPanelProps, type TabProps, Tabs, type TabsProps, type TabsVariant, Text, type TextProps, Toast, ToastContainer, type ToastContainerProps, type ToastLoadingPromise, ToastPortal, type ToastPortalProps, type ToastProps, Tooltip, TooltipContent, type UniversalTooltipContentProps as TooltipContentProps, type UniversalTooltipProps as TooltipProps, TooltipTrigger, type UniversalTooltipTriggerProps as TooltipTriggerProps, UDSBreakpointsConfigProvider, type UDSBreakpointsConfigProviderProps, UDSConfigProvider, type UDSConfigProviderProps, UDSModalConfigProvider, type UDSModalConfigProviderProps, UDSPopoverConfigProvider, type UDSPopoverConfigProviderProps, UDSToastConfigProvider, type UDSToastConfigProviderProps, UDSTooltipConfigProvider, type UDSTooltipConfigProviderProps, VStack, type VStackProps, createModal, createToast, useBottomSheetStore, useBreakpointsConfig, useModalConfig, useToastConfig };
92
+ export { Avatar, AvatarIcon, type AvatarIconProps, AvatarImage, type AvatarImageProps, type AvatarProps, AvatarText, type AvatarTextProps, Badge, type BadgeProps, Banner, BannerContent, type BannerContentProps, BannerDescription, type BannerDescriptionProps, type BannerProps, BannerTitle, type BannerTitleProps, BottomSheet, BottomSheetContent, type BottomSheetContentProps, type BottomSheetController, BottomSheetDismiss, type BottomSheetDismissProps, BottomSheetHeader, type BottomSheetHeaderProps, type BottomSheetProps, BottomSheetProvider, type BottomSheetProviderProps, BottomSheetTrigger, type BottomSheetTriggerProps, Box, type BoxProps, Button, type ButtonProps, Checkbox, type CheckboxProps, Chip, ChipButton, type ChipButtonProps, ChipDismissible, type ChipDismissibleProps, ChipLink, type ChipLinkProps, type ChipProps, ChipToggle, type ChipToggleProps, Divider, DividerLabel, type DividerLabelProps, DividerLine, type DividerLineProps, type DividerProps, FormLabel, type FormLabelProps, HStack, type HStackProps, Icon, IconButton, type IconButtonProps, type IconProps, Image, type ImageProps, Input, InputHelpText, type InputHelpTextProps, type InputProps, Link, type LinkProps, Menu_index_d_exports as Menu, type MenuContentProps, type MenuDividerProps, type MenuItemCheckboxProps, type MenuItemProps, type MenuPlacement, type MenuProviderProps, type MenuTriggerProps, Modal, type ModalAPI, ModalActions, type ModalActionsProps, ModalContent, type ModalContentProps, ModalDescription, type ModalDescriptionProps, ModalPortal, type ModalProps, ModalTitle, type ModalTitleProps, PaddleButtonNext, type PaddleButtonNextProps, PaddleButtonPrevious, type PaddleButtonPreviousProps, PaddleNav, PaddleNavContent, type PaddleNavContentProps, type PaddleNavProps, Pagination, PaginationEllipsis, type PaginationEllipsisProps, PaginationItem, type PaginationItemProps, PaginationLink, type PaginationLinkProps, PaginationNext, type PaginationNextProps, PaginationNumbers, type PaginationNumbersProps, PaginationPrev, type PaginationPrevProps, type PaginationProps, Popover, PopoverContent, type UniversalPopoverContentProps as PopoverContentProps, type UniversalPopoverProps as PopoverProps, PopoverTrigger, type UniversalPopoverTriggerProps as PopoverTriggerProps, Pressable, type PressableProps, Radio, RadioGroupProvider, type RadioGroupProviderProps, type RadioProps, Scrim, type ScrimProps, SpringMotionConfig, type SpringMotionConfigProps, Switch, type SwitchProps, Tab, TabList, type TabListProps, TabPanel, type TabPanelProps, type TabProps, Tabs, type TabsProps, type TabsVariant, Text, type TextProps, Toast, ToastContainer, type ToastContainerProps, type ToastLoadingPromise, ToastPortal, type ToastPortalProps, type ToastProps, Tooltip, TooltipContent, type UniversalTooltipContentProps as TooltipContentProps, type UniversalTooltipProps as TooltipProps, TooltipTrigger, type UniversalTooltipTriggerProps as TooltipTriggerProps, UDSBreakpointsConfigProvider, type UDSBreakpointsConfigProviderProps, UDSConfigProvider, type UDSConfigProviderProps, UDSModalConfigProvider, type UDSModalConfigProviderProps, UDSPopoverConfigProvider, type UDSPopoverConfigProviderProps, UDSToastConfigProvider, type UDSToastConfigProviderProps, UDSTooltipConfigProvider, type UDSTooltipConfigProviderProps, VStack, type VStackProps, createModal, createToast, useBottomSheetStore, useBreakpointsConfig, useModalConfig, useToastConfig };
@@ -52,6 +52,13 @@ import { PaddleButtonNext } from "./client/PaddleNav/PaddleButtonNext.js";
52
52
  import { PaddleButtonPrevious } from "./client/PaddleNav/PaddleButtonPrevious.js";
53
53
  import { PaddleNavContent } from "./client/PaddleNav/PaddleNavContent.js";
54
54
  import { PaddleNav } from "./client/PaddleNav/PaddleNav.js";
55
+ import { Pagination } from "./client/Pagination/Pagination.js";
56
+ import { PaginationEllipsis } from "./client/Pagination/PaginationEllipsis.js";
57
+ import { PaginationItem } from "./client/Pagination/PaginationItem.js";
58
+ import { PaginationLink } from "./client/Pagination/PaginationLink.js";
59
+ import { PaginationNext } from "./client/Pagination/PaginationNext.js";
60
+ import { PaginationNumbers } from "./client/Pagination/PaginationNumbers.js";
61
+ import { PaginationPrev } from "./client/Pagination/PaginationPrev.js";
55
62
  import { UDSPopoverConfigProvider } from "./client/Popover/UDSPopoverConfigProvider.js";
56
63
  import { Popover } from "./client/Popover/Popover.js";
57
64
  import { PopoverContent } from "./client/Popover/PopoverContent.js";
@@ -74,4 +81,4 @@ import { ToastPortal } from "./client/Toast/ToastPortal.js";
74
81
  import { Tooltip } from "./client/Tooltip/Tooltip.js";
75
82
  import { TooltipContent } from "./client/Tooltip/TooltipContent.js";
76
83
  import { TooltipTrigger } from "./client/Tooltip/TooltipTrigger.js";
77
- export { Avatar, AvatarIcon, AvatarImage, AvatarText, Badge, Banner, BannerContent, BannerDescription, BannerTitle, BottomSheet, BottomSheetContent, BottomSheetDismiss, BottomSheetHeader, BottomSheetProvider, BottomSheetTrigger, Box, Button, Checkbox, Chip, ChipButton, ChipDismissible, ChipLink, ChipToggle, Divider, DividerLabel, DividerLine, FormLabel, HStack, Icon, IconButton, Image, Input, InputHelpText, Link, Menu_index_exports as Menu, Modal, ModalActions, ModalContent, ModalDescription, ModalPortal, ModalTitle, PaddleButtonNext, PaddleButtonPrevious, PaddleNav, PaddleNavContent, Popover, PopoverContent, PopoverTrigger, Pressable, Radio, RadioGroupProvider, Scrim, SpringMotionConfig, Switch, Tab, TabList, TabPanel, Tabs, Text, Toast, ToastContainer, ToastPortal, Tooltip, TooltipContent, TooltipTrigger, UDSBreakpointsConfigProvider, UDSConfigProvider, UDSModalConfigProvider, UDSPopoverConfigProvider, UDSToastConfigProvider, UDSTooltipConfigProvider, VStack, createModal, createToast, useBottomSheetStore, useBreakpointsConfig, useModalConfig, useToastConfig };
84
+ export { Avatar, AvatarIcon, AvatarImage, AvatarText, Badge, Banner, BannerContent, BannerDescription, BannerTitle, BottomSheet, BottomSheetContent, BottomSheetDismiss, BottomSheetHeader, BottomSheetProvider, BottomSheetTrigger, Box, Button, Checkbox, Chip, ChipButton, ChipDismissible, ChipLink, ChipToggle, Divider, DividerLabel, DividerLine, FormLabel, HStack, Icon, IconButton, Image, Input, InputHelpText, Link, Menu_index_exports as Menu, Modal, ModalActions, ModalContent, ModalDescription, ModalPortal, ModalTitle, PaddleButtonNext, PaddleButtonPrevious, PaddleNav, PaddleNavContent, Pagination, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationNumbers, PaginationPrev, Popover, PopoverContent, PopoverTrigger, Pressable, Radio, RadioGroupProvider, Scrim, SpringMotionConfig, Switch, Tab, TabList, TabPanel, Tabs, Text, Toast, ToastContainer, ToastPortal, Tooltip, TooltipContent, TooltipTrigger, UDSBreakpointsConfigProvider, UDSConfigProvider, UDSModalConfigProvider, UDSPopoverConfigProvider, UDSToastConfigProvider, UDSTooltipConfigProvider, VStack, createModal, createToast, useBottomSheetStore, useBreakpointsConfig, useModalConfig, useToastConfig };
@@ -28947,8 +28947,278 @@ const defaultTokensConfig = {
28947
28947
  }
28948
28948
  }
28949
28949
  },
28950
- version: "v0.94.0",
28951
- version: "v0.94.0"
28950
+ version: "v0.95.0",
28951
+ pagination: {
28952
+ defaults: {
28953
+ size: "md",
28954
+ variant: "default"
28955
+ },
28956
+ variables: {
28957
+ "size/md/icon": { size: { rest: {
28958
+ type: "iconSizes",
28959
+ value: "sm",
28960
+ valueType: "alias"
28961
+ } } },
28962
+ "size/md/item": {
28963
+ borderRadius: { rest: {
28964
+ type: "borderRadii",
28965
+ value: "full",
28966
+ valueType: "alias"
28967
+ } },
28968
+ spacing: { rest: {
28969
+ type: "spacingAliases",
28970
+ value: "2",
28971
+ valueType: "alias"
28972
+ } }
28973
+ },
28974
+ "size/md/root": { gap: { rest: {
28975
+ type: "spacingAliases",
28976
+ value: "0",
28977
+ valueType: "alias"
28978
+ } } },
28979
+ "size/md/text": { textVariant: { rest: {
28980
+ type: "textVariants",
28981
+ value: "ui2",
28982
+ valueType: "alias"
28983
+ } } },
28984
+ "size/sm/icon": { size: { rest: {
28985
+ type: "iconSizes",
28986
+ value: "sm",
28987
+ valueType: "alias"
28988
+ } } },
28989
+ "size/sm/item": {
28990
+ borderRadius: { rest: {
28991
+ type: "borderRadii",
28992
+ value: "full",
28993
+ valueType: "alias"
28994
+ } },
28995
+ spacing: { rest: {
28996
+ type: "spacingAliases",
28997
+ value: "1.5",
28998
+ valueType: "alias"
28999
+ } }
29000
+ },
29001
+ "size/sm/root": { gap: { rest: {
29002
+ type: "spacingAliases",
29003
+ value: "0",
29004
+ valueType: "alias"
29005
+ } } },
29006
+ "size/sm/text": { textVariant: { rest: {
29007
+ type: "textVariants",
29008
+ value: "ui2",
29009
+ valueType: "alias"
29010
+ } } },
29011
+ "variant/default/active/off/root": {
29012
+ backgroundColor: {
29013
+ hover: {
29014
+ type: "backgroundPaletteColors",
29015
+ value: "brand-secondary",
29016
+ valueType: "alias"
29017
+ },
29018
+ pressed: {
29019
+ type: "spectrumColors",
29020
+ value: "purple-2",
29021
+ valueType: "alias"
29022
+ },
29023
+ rest: {
29024
+ type: "alwaysPaletteAliases",
29025
+ value: "always/transparent",
29026
+ valueType: "alias"
29027
+ }
29028
+ },
29029
+ color: {
29030
+ hover: {
29031
+ type: "foregroundPaletteColors",
29032
+ value: "secondary",
29033
+ valueType: "alias"
29034
+ },
29035
+ pressed: {
29036
+ type: "foregroundPaletteColors",
29037
+ value: "secondary",
29038
+ valueType: "alias"
29039
+ },
29040
+ rest: {
29041
+ type: "foregroundPaletteColors",
29042
+ value: "secondary",
29043
+ valueType: "alias"
29044
+ }
29045
+ },
29046
+ borderColor: {
29047
+ hover: {
29048
+ type: "alwaysPaletteAliases",
29049
+ value: "always/transparent",
29050
+ valueType: "alias"
29051
+ },
29052
+ pressed: {
29053
+ type: "alwaysPaletteAliases",
29054
+ value: "always/transparent",
29055
+ valueType: "alias"
29056
+ },
29057
+ rest: {
29058
+ type: "alwaysPaletteAliases",
29059
+ value: "always/transparent",
29060
+ valueType: "alias"
29061
+ }
29062
+ },
29063
+ borderWidth: {
29064
+ hover: {
29065
+ type: "borderWidths",
29066
+ value: "none",
29067
+ valueType: "alias"
29068
+ },
29069
+ pressed: {
29070
+ type: "borderWidths",
29071
+ value: "none",
29072
+ valueType: "alias"
29073
+ },
29074
+ rest: {
29075
+ type: "borderWidths",
29076
+ value: "none",
29077
+ valueType: "alias"
29078
+ }
29079
+ },
29080
+ shadow: {
29081
+ hover: {
29082
+ type: "shadowVariants",
29083
+ value: "none",
29084
+ valueType: "alias"
29085
+ },
29086
+ pressed: {
29087
+ type: "shadowVariants",
29088
+ value: "none",
29089
+ valueType: "alias"
29090
+ },
29091
+ rest: {
29092
+ type: "shadowVariants",
29093
+ value: "none",
29094
+ valueType: "alias"
29095
+ }
29096
+ },
29097
+ insetShadow: {
29098
+ hover: {
29099
+ type: "shadowVariantsWithInvert",
29100
+ value: "none",
29101
+ valueType: "alias"
29102
+ },
29103
+ pressed: {
29104
+ type: "shadowVariantsWithInvert",
29105
+ value: "sm",
29106
+ valueType: "alias"
29107
+ },
29108
+ rest: {
29109
+ type: "shadowVariantsWithInvert",
29110
+ value: "none",
29111
+ valueType: "alias"
29112
+ }
29113
+ }
29114
+ },
29115
+ "variant/default/active/on/root": {
29116
+ backgroundColor: {
29117
+ hover: {
29118
+ type: "backgroundPaletteColors",
29119
+ value: "brand",
29120
+ valueType: "alias"
29121
+ },
29122
+ pressed: {
29123
+ type: "backgroundPaletteColors",
29124
+ value: "brand",
29125
+ valueType: "alias"
29126
+ },
29127
+ rest: {
29128
+ type: "backgroundPaletteColors",
29129
+ value: "brand",
29130
+ valueType: "alias"
29131
+ }
29132
+ },
29133
+ color: {
29134
+ hover: {
29135
+ type: "foregroundPaletteColors",
29136
+ value: "on-color",
29137
+ valueType: "alias"
29138
+ },
29139
+ pressed: {
29140
+ type: "foregroundPaletteColors",
29141
+ value: "on-color",
29142
+ valueType: "alias"
29143
+ },
29144
+ rest: {
29145
+ type: "foregroundPaletteColors",
29146
+ value: "on-color",
29147
+ valueType: "alias"
29148
+ }
29149
+ },
29150
+ borderColor: {
29151
+ hover: {
29152
+ type: "alwaysPaletteAliases",
29153
+ value: "always/transparent",
29154
+ valueType: "alias"
29155
+ },
29156
+ pressed: {
29157
+ type: "alwaysPaletteAliases",
29158
+ value: "always/transparent",
29159
+ valueType: "alias"
29160
+ },
29161
+ rest: {
29162
+ type: "alwaysPaletteAliases",
29163
+ value: "always/transparent",
29164
+ valueType: "alias"
29165
+ }
29166
+ },
29167
+ borderWidth: {
29168
+ hover: {
29169
+ type: "borderWidths",
29170
+ value: "none",
29171
+ valueType: "alias"
29172
+ },
29173
+ pressed: {
29174
+ type: "borderWidths",
29175
+ value: "none",
29176
+ valueType: "alias"
29177
+ },
29178
+ rest: {
29179
+ type: "borderWidths",
29180
+ value: "none",
29181
+ valueType: "alias"
29182
+ }
29183
+ },
29184
+ shadow: {
29185
+ hover: {
29186
+ type: "shadowVariants",
29187
+ value: "none",
29188
+ valueType: "alias"
29189
+ },
29190
+ pressed: {
29191
+ type: "shadowVariants",
29192
+ value: "none",
29193
+ valueType: "alias"
29194
+ },
29195
+ rest: {
29196
+ type: "shadowVariants",
29197
+ value: "none",
29198
+ valueType: "alias"
29199
+ }
29200
+ },
29201
+ insetShadow: {
29202
+ hover: {
29203
+ type: "shadowVariantsWithInvert",
29204
+ value: "none",
29205
+ valueType: "alias"
29206
+ },
29207
+ pressed: {
29208
+ type: "shadowVariantsWithInvert",
29209
+ value: "none",
29210
+ valueType: "alias"
29211
+ },
29212
+ rest: {
29213
+ type: "shadowVariantsWithInvert",
29214
+ value: "none",
29215
+ valueType: "alias"
29216
+ }
29217
+ }
29218
+ }
29219
+ }
29220
+ },
29221
+ version: "v0.95.0"
28952
29222
  };
28953
29223
  //#endregion
28954
29224
  exports.defaultTokensConfig = defaultTokensConfig;
@@ -28947,8 +28947,278 @@ const defaultTokensConfig = {
28947
28947
  }
28948
28948
  }
28949
28949
  },
28950
- version: "v0.94.0",
28951
- version: "v0.94.0"
28950
+ version: "v0.95.0",
28951
+ pagination: {
28952
+ defaults: {
28953
+ size: "md",
28954
+ variant: "default"
28955
+ },
28956
+ variables: {
28957
+ "size/md/icon": { size: { rest: {
28958
+ type: "iconSizes",
28959
+ value: "sm",
28960
+ valueType: "alias"
28961
+ } } },
28962
+ "size/md/item": {
28963
+ borderRadius: { rest: {
28964
+ type: "borderRadii",
28965
+ value: "full",
28966
+ valueType: "alias"
28967
+ } },
28968
+ spacing: { rest: {
28969
+ type: "spacingAliases",
28970
+ value: "2",
28971
+ valueType: "alias"
28972
+ } }
28973
+ },
28974
+ "size/md/root": { gap: { rest: {
28975
+ type: "spacingAliases",
28976
+ value: "0",
28977
+ valueType: "alias"
28978
+ } } },
28979
+ "size/md/text": { textVariant: { rest: {
28980
+ type: "textVariants",
28981
+ value: "ui2",
28982
+ valueType: "alias"
28983
+ } } },
28984
+ "size/sm/icon": { size: { rest: {
28985
+ type: "iconSizes",
28986
+ value: "sm",
28987
+ valueType: "alias"
28988
+ } } },
28989
+ "size/sm/item": {
28990
+ borderRadius: { rest: {
28991
+ type: "borderRadii",
28992
+ value: "full",
28993
+ valueType: "alias"
28994
+ } },
28995
+ spacing: { rest: {
28996
+ type: "spacingAliases",
28997
+ value: "1.5",
28998
+ valueType: "alias"
28999
+ } }
29000
+ },
29001
+ "size/sm/root": { gap: { rest: {
29002
+ type: "spacingAliases",
29003
+ value: "0",
29004
+ valueType: "alias"
29005
+ } } },
29006
+ "size/sm/text": { textVariant: { rest: {
29007
+ type: "textVariants",
29008
+ value: "ui2",
29009
+ valueType: "alias"
29010
+ } } },
29011
+ "variant/default/active/off/root": {
29012
+ backgroundColor: {
29013
+ hover: {
29014
+ type: "backgroundPaletteColors",
29015
+ value: "brand-secondary",
29016
+ valueType: "alias"
29017
+ },
29018
+ pressed: {
29019
+ type: "spectrumColors",
29020
+ value: "purple-2",
29021
+ valueType: "alias"
29022
+ },
29023
+ rest: {
29024
+ type: "alwaysPaletteAliases",
29025
+ value: "always/transparent",
29026
+ valueType: "alias"
29027
+ }
29028
+ },
29029
+ color: {
29030
+ hover: {
29031
+ type: "foregroundPaletteColors",
29032
+ value: "secondary",
29033
+ valueType: "alias"
29034
+ },
29035
+ pressed: {
29036
+ type: "foregroundPaletteColors",
29037
+ value: "secondary",
29038
+ valueType: "alias"
29039
+ },
29040
+ rest: {
29041
+ type: "foregroundPaletteColors",
29042
+ value: "secondary",
29043
+ valueType: "alias"
29044
+ }
29045
+ },
29046
+ borderColor: {
29047
+ hover: {
29048
+ type: "alwaysPaletteAliases",
29049
+ value: "always/transparent",
29050
+ valueType: "alias"
29051
+ },
29052
+ pressed: {
29053
+ type: "alwaysPaletteAliases",
29054
+ value: "always/transparent",
29055
+ valueType: "alias"
29056
+ },
29057
+ rest: {
29058
+ type: "alwaysPaletteAliases",
29059
+ value: "always/transparent",
29060
+ valueType: "alias"
29061
+ }
29062
+ },
29063
+ borderWidth: {
29064
+ hover: {
29065
+ type: "borderWidths",
29066
+ value: "none",
29067
+ valueType: "alias"
29068
+ },
29069
+ pressed: {
29070
+ type: "borderWidths",
29071
+ value: "none",
29072
+ valueType: "alias"
29073
+ },
29074
+ rest: {
29075
+ type: "borderWidths",
29076
+ value: "none",
29077
+ valueType: "alias"
29078
+ }
29079
+ },
29080
+ shadow: {
29081
+ hover: {
29082
+ type: "shadowVariants",
29083
+ value: "none",
29084
+ valueType: "alias"
29085
+ },
29086
+ pressed: {
29087
+ type: "shadowVariants",
29088
+ value: "none",
29089
+ valueType: "alias"
29090
+ },
29091
+ rest: {
29092
+ type: "shadowVariants",
29093
+ value: "none",
29094
+ valueType: "alias"
29095
+ }
29096
+ },
29097
+ insetShadow: {
29098
+ hover: {
29099
+ type: "shadowVariantsWithInvert",
29100
+ value: "none",
29101
+ valueType: "alias"
29102
+ },
29103
+ pressed: {
29104
+ type: "shadowVariantsWithInvert",
29105
+ value: "sm",
29106
+ valueType: "alias"
29107
+ },
29108
+ rest: {
29109
+ type: "shadowVariantsWithInvert",
29110
+ value: "none",
29111
+ valueType: "alias"
29112
+ }
29113
+ }
29114
+ },
29115
+ "variant/default/active/on/root": {
29116
+ backgroundColor: {
29117
+ hover: {
29118
+ type: "backgroundPaletteColors",
29119
+ value: "brand",
29120
+ valueType: "alias"
29121
+ },
29122
+ pressed: {
29123
+ type: "backgroundPaletteColors",
29124
+ value: "brand",
29125
+ valueType: "alias"
29126
+ },
29127
+ rest: {
29128
+ type: "backgroundPaletteColors",
29129
+ value: "brand",
29130
+ valueType: "alias"
29131
+ }
29132
+ },
29133
+ color: {
29134
+ hover: {
29135
+ type: "foregroundPaletteColors",
29136
+ value: "on-color",
29137
+ valueType: "alias"
29138
+ },
29139
+ pressed: {
29140
+ type: "foregroundPaletteColors",
29141
+ value: "on-color",
29142
+ valueType: "alias"
29143
+ },
29144
+ rest: {
29145
+ type: "foregroundPaletteColors",
29146
+ value: "on-color",
29147
+ valueType: "alias"
29148
+ }
29149
+ },
29150
+ borderColor: {
29151
+ hover: {
29152
+ type: "alwaysPaletteAliases",
29153
+ value: "always/transparent",
29154
+ valueType: "alias"
29155
+ },
29156
+ pressed: {
29157
+ type: "alwaysPaletteAliases",
29158
+ value: "always/transparent",
29159
+ valueType: "alias"
29160
+ },
29161
+ rest: {
29162
+ type: "alwaysPaletteAliases",
29163
+ value: "always/transparent",
29164
+ valueType: "alias"
29165
+ }
29166
+ },
29167
+ borderWidth: {
29168
+ hover: {
29169
+ type: "borderWidths",
29170
+ value: "none",
29171
+ valueType: "alias"
29172
+ },
29173
+ pressed: {
29174
+ type: "borderWidths",
29175
+ value: "none",
29176
+ valueType: "alias"
29177
+ },
29178
+ rest: {
29179
+ type: "borderWidths",
29180
+ value: "none",
29181
+ valueType: "alias"
29182
+ }
29183
+ },
29184
+ shadow: {
29185
+ hover: {
29186
+ type: "shadowVariants",
29187
+ value: "none",
29188
+ valueType: "alias"
29189
+ },
29190
+ pressed: {
29191
+ type: "shadowVariants",
29192
+ value: "none",
29193
+ valueType: "alias"
29194
+ },
29195
+ rest: {
29196
+ type: "shadowVariants",
29197
+ value: "none",
29198
+ valueType: "alias"
29199
+ }
29200
+ },
29201
+ insetShadow: {
29202
+ hover: {
29203
+ type: "shadowVariantsWithInvert",
29204
+ value: "none",
29205
+ valueType: "alias"
29206
+ },
29207
+ pressed: {
29208
+ type: "shadowVariantsWithInvert",
29209
+ value: "none",
29210
+ valueType: "alias"
29211
+ },
29212
+ rest: {
29213
+ type: "shadowVariantsWithInvert",
29214
+ value: "none",
29215
+ valueType: "alias"
29216
+ }
29217
+ }
29218
+ }
29219
+ }
29220
+ },
29221
+ version: "v0.95.0"
28952
29222
  };
28953
29223
  //#endregion
28954
29224
  export { defaultTokensConfig };