@yahoo/uds 3.114.0-beta.2 → 3.114.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/automated-config/dist/generated/autoVariants.cjs +3 -0
- package/dist/automated-config/dist/generated/autoVariants.d.cts +3 -0
- package/dist/automated-config/dist/generated/autoVariants.d.ts +3 -0
- package/dist/automated-config/dist/generated/autoVariants.js +3 -0
- package/dist/automated-config/dist/generated/generatedConfigs.cjs +1883 -0
- package/dist/automated-config/dist/generated/generatedConfigs.d.cts +175 -1
- package/dist/automated-config/dist/generated/generatedConfigs.d.ts +175 -1
- package/dist/automated-config/dist/generated/generatedConfigs.js +1882 -1
- package/dist/automated-config/dist/generated/universalTokensConfigAuto.cjs +84 -0
- package/dist/automated-config/dist/generated/universalTokensConfigAuto.d.cts +3 -1
- package/dist/automated-config/dist/generated/universalTokensConfigAuto.d.ts +3 -1
- package/dist/automated-config/dist/generated/universalTokensConfigAuto.js +84 -0
- package/dist/automated-config/dist/mapTextVariantFixtureToValue.cjs +1 -12
- package/dist/automated-config/dist/mapTextVariantFixtureToValue.js +1 -12
- package/dist/automated-config/dist/properties.cjs +58 -12
- package/dist/automated-config/dist/properties.d.cts +8 -0
- package/dist/automated-config/dist/properties.d.ts +8 -0
- package/dist/automated-config/dist/properties.js +58 -12
- package/dist/automated-config/dist/utils/getConfigVariantProperties.d.cts +2 -2
- package/dist/automated-config/dist/utils/getConfigVariantProperties.d.ts +2 -2
- package/dist/cli/commands/sync.cjs +7 -1
- package/dist/cli/commands/sync.d.cts +1 -1
- package/dist/cli/commands/sync.d.ts +1 -1
- package/dist/cli/commands/sync.js +7 -1
- package/dist/cli/commands/version.cjs +2 -0
- package/dist/cli/commands/version.d.cts +1 -1
- package/dist/cli/commands/version.d.ts +1 -1
- package/dist/cli/commands/version.js +2 -0
- package/dist/cli/dist/cli.cjs +1 -1
- package/dist/cli/dist/cli.js +1 -1
- package/dist/cli/dist/commands/editor-rules.cjs +2 -2
- package/dist/cli/dist/commands/editor-rules.js +2 -2
- package/dist/cli/dist/utils/rules/config.cjs +1 -1
- package/dist/cli/dist/utils/rules/config.js +1 -1
- package/dist/cli/runner.cjs +2 -11
- package/dist/cli/runner.js +2 -11
- package/dist/components/Scrim.cjs +28 -0
- package/dist/components/Scrim.d.cts +14 -0
- package/dist/components/Scrim.d.ts +14 -0
- package/dist/components/Scrim.js +26 -0
- package/dist/components/client/BottomSheet/BottomSheet.cjs +209 -0
- package/dist/components/client/BottomSheet/BottomSheet.d.cts +77 -0
- package/dist/components/client/BottomSheet/BottomSheet.d.ts +77 -0
- package/dist/components/client/BottomSheet/BottomSheet.js +207 -0
- package/dist/components/client/BottomSheet/BottomSheetContent.cjs +26 -0
- package/dist/components/client/BottomSheet/BottomSheetContent.d.cts +15 -0
- package/dist/components/client/BottomSheet/BottomSheetContent.d.ts +15 -0
- package/dist/components/client/BottomSheet/BottomSheetContent.js +24 -0
- package/dist/components/client/BottomSheet/BottomSheetDismiss.cjs +15 -0
- package/dist/components/client/BottomSheet/BottomSheetDismiss.d.cts +12 -0
- package/dist/components/client/BottomSheet/BottomSheetDismiss.d.ts +12 -0
- package/dist/components/client/BottomSheet/BottomSheetDismiss.js +13 -0
- package/dist/components/client/BottomSheet/BottomSheetHandle.cjs +30 -0
- package/dist/components/client/BottomSheet/BottomSheetHandle.d.cts +19 -0
- package/dist/components/client/BottomSheet/BottomSheetHandle.d.ts +19 -0
- package/dist/components/client/BottomSheet/BottomSheetHandle.js +28 -0
- package/dist/components/client/BottomSheet/BottomSheetHeader.cjs +42 -0
- package/dist/components/client/BottomSheet/BottomSheetHeader.d.cts +18 -0
- package/dist/components/client/BottomSheet/BottomSheetHeader.d.ts +18 -0
- package/dist/components/client/BottomSheet/BottomSheetHeader.js +40 -0
- package/dist/components/client/BottomSheet/BottomSheetProvider.cjs +21 -0
- package/dist/components/client/BottomSheet/BottomSheetProvider.d.cts +19 -0
- package/dist/components/client/BottomSheet/BottomSheetProvider.d.ts +19 -0
- package/dist/components/client/BottomSheet/BottomSheetProvider.js +19 -0
- package/dist/components/client/BottomSheet/BottomSheetTrigger.cjs +15 -0
- package/dist/components/client/BottomSheet/BottomSheetTrigger.d.cts +12 -0
- package/dist/components/client/BottomSheet/BottomSheetTrigger.d.ts +12 -0
- package/dist/components/client/BottomSheet/BottomSheetTrigger.js +13 -0
- package/dist/components/client/BottomSheet/UDSBottomSheetConfigProvider.cjs +32 -0
- package/dist/components/client/BottomSheet/UDSBottomSheetConfigProvider.d.cts +22 -0
- package/dist/components/client/BottomSheet/UDSBottomSheetConfigProvider.d.ts +22 -0
- package/dist/components/client/BottomSheet/UDSBottomSheetConfigProvider.js +29 -0
- package/dist/components/client/BottomSheet/index.cjs +22 -0
- package/dist/components/client/BottomSheet/index.d.cts +10 -0
- package/dist/components/client/BottomSheet/index.d.ts +10 -0
- package/dist/components/client/BottomSheet/index.js +12 -0
- package/dist/components/client/BottomSheet/useBottomSheetDrag.cjs +188 -0
- package/dist/components/client/BottomSheet/useBottomSheetDrag.d.cts +44 -0
- package/dist/components/client/BottomSheet/useBottomSheetDrag.d.ts +44 -0
- package/dist/components/client/BottomSheet/useBottomSheetDrag.js +185 -0
- package/dist/components/client/BottomSheet/useBottomSheetSnapModel.cjs +138 -0
- package/dist/components/client/BottomSheet/useBottomSheetSnapModel.d.cts +46 -0
- package/dist/components/client/BottomSheet/useBottomSheetSnapModel.d.ts +46 -0
- package/dist/components/client/BottomSheet/useBottomSheetSnapModel.js +135 -0
- package/dist/components/client/BottomSheet/useBottomSheetStore.cjs +34 -0
- package/dist/components/client/BottomSheet/useBottomSheetStore.d.cts +38 -0
- package/dist/components/client/BottomSheet/useBottomSheetStore.d.ts +38 -0
- package/dist/components/client/BottomSheet/useBottomSheetStore.js +31 -0
- package/dist/components/client/BottomSheet/useBottomSheetStoreInternal.cjs +17 -0
- package/dist/components/client/BottomSheet/useBottomSheetStoreInternal.d.cts +13 -0
- package/dist/components/client/BottomSheet/useBottomSheetStoreInternal.d.ts +13 -0
- package/dist/components/client/BottomSheet/useBottomSheetStoreInternal.js +15 -0
- package/dist/components/client/BottomSheet/useExpansionMargins.cjs +89 -0
- package/dist/components/client/BottomSheet/useExpansionMargins.d.cts +34 -0
- package/dist/components/client/BottomSheet/useExpansionMargins.d.ts +34 -0
- package/dist/components/client/BottomSheet/useExpansionMargins.js +87 -0
- package/dist/components/client/BottomSheet/useViewportHeight.cjs +32 -0
- package/dist/components/client/BottomSheet/useViewportHeight.d.cts +9 -0
- package/dist/components/client/BottomSheet/useViewportHeight.d.ts +9 -0
- package/dist/components/client/BottomSheet/useViewportHeight.js +30 -0
- package/dist/components/client/BottomSheet/useVirtualKeyboard.cjs +48 -0
- package/dist/components/client/BottomSheet/useVirtualKeyboard.d.cts +10 -0
- package/dist/components/client/BottomSheet/useVirtualKeyboard.d.ts +10 -0
- package/dist/components/client/BottomSheet/useVirtualKeyboard.js +46 -0
- package/dist/components/client/BottomSheet/utils.cjs +128 -0
- package/dist/components/client/BottomSheet/utils.d.cts +61 -0
- package/dist/components/client/BottomSheet/utils.d.ts +61 -0
- package/dist/components/client/BottomSheet/utils.js +118 -0
- package/dist/components/client/Menu/Menu.Content.cjs +1 -1
- package/dist/components/client/Menu/Menu.Content.js +1 -1
- package/dist/components/client/Menu/Menu.ItemCheckbox.d.cts +1 -1
- package/dist/components/client/Menu/Menu.ItemCheckbox.d.ts +1 -1
- package/dist/components/client/Menu/Menu.index.d.cts +1 -1
- package/dist/components/client/index.cjs +16 -0
- package/dist/components/client/index.d.cts +10 -1
- package/dist/components/client/index.d.ts +10 -1
- package/dist/components/client/index.js +9 -1
- package/dist/components/client/providers/UDSConfigProvider.cjs +10 -6
- package/dist/components/client/providers/UDSConfigProvider.d.cts +1 -0
- package/dist/components/client/providers/UDSConfigProvider.d.ts +1 -0
- package/dist/components/client/providers/UDSConfigProvider.js +10 -6
- package/dist/components/index.cjs +24 -0
- package/dist/components/index.d.cts +9 -1
- package/dist/components/index.d.ts +9 -1
- package/dist/components/index.js +17 -1
- package/dist/config/dist/index.cjs +110 -2
- package/dist/config/dist/index.js +110 -2
- package/dist/fixtures/dist/index.cjs +103 -0
- package/dist/fixtures/dist/index.d.cts +3 -2
- package/dist/fixtures/dist/index.d.ts +3 -2
- package/dist/fixtures/dist/index.js +103 -1
- package/dist/fixtures/index.cjs +1 -0
- package/dist/fixtures/index.d.cts +2 -2
- package/dist/fixtures/index.d.ts +2 -2
- package/dist/fixtures/index.js +2 -2
- package/dist/index.cjs +20 -2
- package/dist/index.d.cts +12 -5
- package/dist/index.d.ts +12 -5
- package/dist/index.js +11 -3
- package/dist/runtime/bottomSheetConfig.cjs +11 -0
- package/dist/runtime/bottomSheetConfig.d.cts +15 -0
- package/dist/runtime/bottomSheetConfig.d.ts +15 -0
- package/dist/runtime/bottomSheetConfig.js +9 -0
- package/dist/runtime/index.cjs +2 -0
- package/dist/runtime/index.d.cts +2 -1
- package/dist/runtime/index.d.ts +2 -1
- package/dist/runtime/index.js +2 -1
- package/dist/runtime/udsConfig.cjs +2 -0
- package/dist/runtime/udsConfig.d.cts +2 -0
- package/dist/runtime/udsConfig.d.ts +2 -0
- package/dist/runtime/udsConfig.js +2 -0
- package/dist/styles/styler.d.cts +33 -30
- package/dist/styles/styler.d.ts +33 -30
- package/dist/styles/variants.cjs +278 -278
- package/dist/styles/variants.d.cts +9 -0
- package/dist/styles/variants.d.ts +9 -0
- package/dist/styles/variants.js +278 -278
- package/dist/tailwind/dist/commands/generateComponentData.cjs +31 -33
- package/dist/tailwind/dist/commands/generateComponentData.d.ts +1 -1
- package/dist/tailwind/dist/commands/generateComponentData.js +31 -33
- package/dist/tailwind/dist/commands/generatePurgeCSSData.d.ts +1 -1
- package/dist/tailwind/dist/commands/purge.cjs +4 -3
- package/dist/tailwind/dist/commands/purge.d.ts +1 -1
- package/dist/tailwind/dist/commands/purge.js +4 -3
- package/dist/tailwind/dist/index.d.cts +0 -1
- package/dist/tailwind/dist/index.d.ts +3 -5
- package/dist/tailwind/dist/purger/legacy/purgeCSS.cjs +3 -4
- package/dist/tailwind/dist/purger/legacy/purgeCSS.js +3 -4
- package/dist/tailwind/dist/purger/optimized/ast/expressions.cjs +125 -122
- package/dist/tailwind/dist/purger/optimized/ast/expressions.js +125 -122
- package/dist/tailwind/dist/purger/optimized/ast/jsx.cjs +8 -1
- package/dist/tailwind/dist/purger/optimized/ast/jsx.js +8 -1
- package/dist/tailwind/dist/purger/optimized/purge.cjs +10 -11
- package/dist/tailwind/dist/purger/optimized/purge.js +9 -10
- package/dist/tailwind/dist/purger/optimized/purgeFromCode.cjs +127 -232
- package/dist/tailwind/dist/purger/optimized/purgeFromCode.js +127 -232
- package/dist/tailwind/dist/purger/optimized/utils/componentAnalyzer.cjs +262 -330
- package/dist/tailwind/dist/purger/optimized/utils/componentAnalyzer.js +262 -329
- package/dist/tailwind/dist/purger/optimized/utils/files.cjs +3 -4
- package/dist/tailwind/dist/purger/optimized/utils/files.js +3 -4
- package/dist/tailwind/dist/purger/optimized/utils/safelist.cjs +21 -13
- package/dist/tailwind/dist/purger/optimized/utils/safelist.js +21 -13
- package/dist/tailwind/dist/tailwind/plugins/components.cjs +2 -0
- package/dist/tailwind/dist/tailwind/plugins/components.js +3 -1
- package/dist/tailwind/dist/tailwind/plugins/typography.cjs +13 -41
- package/dist/tailwind/dist/tailwind/plugins/typography.js +13 -41
- package/dist/tailwind/dist/tailwind/utils/composeTailwindPlugins.cjs +2 -4
- package/dist/tailwind/dist/tailwind/utils/composeTailwindPlugins.d.cts +1 -10
- package/dist/tailwind/dist/tailwind/utils/composeTailwindPlugins.d.ts +1 -10
- package/dist/tailwind/dist/tailwind/utils/composeTailwindPlugins.js +2 -4
- package/dist/tailwind/dist/utils/tsMorph.cjs +1 -1
- package/dist/tokens/automation/configs/index.cjs +2 -0
- package/dist/tokens/automation/configs/index.d.cts +2 -2
- package/dist/tokens/automation/configs/index.d.ts +2 -2
- package/dist/tokens/automation/configs/index.js +2 -2
- package/dist/tokens/automation/index.cjs +2 -0
- package/dist/tokens/automation/index.d.cts +2 -2
- package/dist/tokens/automation/index.d.ts +2 -2
- package/dist/tokens/automation/index.js +2 -2
- package/dist/tokens/index.cjs +2 -0
- package/dist/tokens/index.d.cts +3 -3
- package/dist/tokens/index.d.ts +3 -3
- package/dist/tokens/index.js +2 -2
- package/dist/tokens/types.d.cts +2 -2
- package/dist/tokens/types.d.ts +2 -2
- package/dist/types/dist/index.d.cts +76 -1
- package/dist/types/dist/index.d.ts +76 -1
- package/dist/uds/generated/componentData.cjs +1187 -961
- package/dist/uds/generated/componentData.js +1111 -939
- package/dist/uds/generated/tailwindPurge.cjs +57 -29
- package/dist/uds/generated/tailwindPurge.js +57 -29
- package/dist/uds/package.cjs +4 -10
- package/dist/uds/package.js +4 -10
- package/package.json +4 -7
- package/dist/cli/dist/lib/logger.cjs +0 -66
- package/dist/cli/dist/lib/logger.js +0 -66
- package/dist/tailwind/dist/commands/css.cjs +0 -79
- package/dist/tailwind/dist/commands/css.d.ts +0 -3
- package/dist/tailwind/dist/commands/css.helpers.cjs +0 -32
- package/dist/tailwind/dist/commands/css.helpers.js +0 -28
- package/dist/tailwind/dist/commands/css.js +0 -79
- package/dist/tailwind/dist/css/generate.cjs +0 -120
- package/dist/tailwind/dist/css/generate.d.cts +0 -30
- package/dist/tailwind/dist/css/generate.d.ts +0 -31
- package/dist/tailwind/dist/css/generate.helpers.cjs +0 -112
- package/dist/tailwind/dist/css/generate.helpers.js +0 -100
- package/dist/tailwind/dist/css/generate.js +0 -115
- package/dist/tailwind/dist/css/postcss.cjs +0 -35
- package/dist/tailwind/dist/css/postcss.helpers.cjs +0 -27
- package/dist/tailwind/dist/css/postcss.helpers.js +0 -26
- package/dist/tailwind/dist/css/postcss.js +0 -35
- package/dist/tailwind/dist/css/runner.cjs +0 -278
- package/dist/tailwind/dist/css/runner.helpers.cjs +0 -26
- package/dist/tailwind/dist/css/runner.helpers.js +0 -23
- package/dist/tailwind/dist/css/runner.js +0 -275
- package/dist/tailwind/dist/css/theme.cjs +0 -12
- package/dist/tailwind/dist/css/theme.d.cts +0 -66
- package/dist/tailwind/dist/css/theme.d.ts +0 -66
- package/dist/tailwind/dist/css/theme.js +0 -11
- package/dist/tailwind/dist/css/utils.cjs +0 -234
- package/dist/tailwind/dist/css/utils.js +0 -223
- package/dist/tailwind/dist/utils/optimizeCSS.cjs +0 -405
- package/dist/tailwind/dist/utils/optimizeCSS.js +0 -403
- package/dist/tailwind/dist/utils/postcssPreserveVars.cjs +0 -67
- package/dist/tailwind/dist/utils/postcssPreserveVars.js +0 -65
- package/generated/componentData.json +0 -2397
- package/generated/tailwindPurge.ts +0 -4560
|
@@ -8,6 +8,7 @@ import { HStack, HStackProps } from "./HStack.js";
|
|
|
8
8
|
import { Icon, IconProps } from "./Icon.js";
|
|
9
9
|
import { Image, ImageProps } from "./Image.js";
|
|
10
10
|
import { Link, LinkProps } from "./Link.js";
|
|
11
|
+
import { Scrim, ScrimProps } from "./Scrim.js";
|
|
11
12
|
import { Text, TextProps } from "./Text.js";
|
|
12
13
|
import { VStack, VStackProps } from "./VStack.js";
|
|
13
14
|
import { SpringMotionConfig, SpringMotionConfigProps } from "./client/SpringMotionConfig.js";
|
|
@@ -16,6 +17,13 @@ import { AvatarText, AvatarTextProps } from "./client/Avatar/AvatarText.js";
|
|
|
16
17
|
import { AvatarImage, AvatarImageProps } from "./client/Avatar/AvatarImage.js";
|
|
17
18
|
import { Avatar, AvatarProps } from "./client/Avatar/Avatar.js";
|
|
18
19
|
import { Badge, BadgeProps } from "./client/Badge.js";
|
|
20
|
+
import { BottomSheetController, useBottomSheetStore } from "./client/BottomSheet/useBottomSheetStore.js";
|
|
21
|
+
import { BottomSheet, BottomSheetProps } from "./client/BottomSheet/BottomSheet.js";
|
|
22
|
+
import { BottomSheetContent, BottomSheetContentProps } from "./client/BottomSheet/BottomSheetContent.js";
|
|
23
|
+
import { BottomSheetDismiss, BottomSheetDismissProps } from "./client/BottomSheet/BottomSheetDismiss.js";
|
|
24
|
+
import { BottomSheetHeader, BottomSheetHeaderProps } from "./client/BottomSheet/BottomSheetHeader.js";
|
|
25
|
+
import { BottomSheetProvider, BottomSheetProviderProps } from "./client/BottomSheet/BottomSheetProvider.js";
|
|
26
|
+
import { BottomSheetTrigger, BottomSheetTriggerProps } from "./client/BottomSheet/BottomSheetTrigger.js";
|
|
19
27
|
import { Button, ButtonProps } from "./client/Button.js";
|
|
20
28
|
import { Checkbox, CheckboxProps } from "./client/Checkbox.js";
|
|
21
29
|
import { Chip, ChipProps } from "./client/Chip/Chip.js";
|
|
@@ -49,4 +57,4 @@ import { UDSTooltipConfigProvider, UDSTooltipConfigProviderProps } from "./clien
|
|
|
49
57
|
import { UDSBreakpointsConfigProvider, UDSBreakpointsConfigProviderProps, useBreakpointsConfig } from "./client/providers/UDSBreakpointsConfigProvider.js";
|
|
50
58
|
import { UDSConfigProvider, UDSConfigProviderProps } from "./client/providers/UDSConfigProvider.js";
|
|
51
59
|
import "./client/index.js";
|
|
52
|
-
export { Avatar, AvatarIcon, type AvatarIconProps, AvatarImage, type AvatarImageProps, type AvatarProps, AvatarText, type AvatarTextProps, Badge, type BadgeProps, 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, 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, Pressable, type PressableProps, Radio, RadioGroupProvider, type RadioGroupProviderProps, type RadioProps, SpringMotionConfig, type SpringMotionConfigProps, Switch, type SwitchProps, 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, UDSToastConfigProvider, type UDSToastConfigProviderProps, UDSTooltipConfigProvider, type UDSTooltipConfigProviderProps, VStack, type VStackProps, createToast, useBreakpointsConfig, useToastConfig };
|
|
60
|
+
export { Avatar, AvatarIcon, type AvatarIconProps, AvatarImage, type AvatarImageProps, type AvatarProps, AvatarText, type AvatarTextProps, Badge, type BadgeProps, 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, 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, Pressable, type PressableProps, Radio, RadioGroupProvider, type RadioGroupProviderProps, type RadioProps, Scrim, type ScrimProps, SpringMotionConfig, type SpringMotionConfigProps, Switch, type SwitchProps, 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, UDSToastConfigProvider, type UDSToastConfigProviderProps, UDSTooltipConfigProvider, type UDSTooltipConfigProviderProps, VStack, type VStackProps, createToast, useBottomSheetStore, useBreakpointsConfig, useToastConfig };
|
package/dist/components/index.js
CHANGED
|
@@ -9,11 +9,19 @@ import { FormLabel } from "./FormLabel.js";
|
|
|
9
9
|
import { Icon } from "./Icon.js";
|
|
10
10
|
import { Image } from "./Image.js";
|
|
11
11
|
import { Link } from "./Link.js";
|
|
12
|
+
import { Scrim } from "./Scrim.js";
|
|
12
13
|
import { AvatarIcon } from "./client/Avatar/AvatarIcon.js";
|
|
13
14
|
import { AvatarText } from "./client/Avatar/AvatarText.js";
|
|
14
15
|
import { AvatarImage } from "./client/Avatar/AvatarImage.js";
|
|
15
16
|
import { Avatar } from "./client/Avatar/Avatar.js";
|
|
16
17
|
import { Badge } from "./client/Badge.js";
|
|
18
|
+
import { useBottomSheetStore } from "./client/BottomSheet/useBottomSheetStore.js";
|
|
19
|
+
import { BottomSheet } from "./client/BottomSheet/BottomSheet.js";
|
|
20
|
+
import { BottomSheetContent } from "./client/BottomSheet/BottomSheetContent.js";
|
|
21
|
+
import { BottomSheetDismiss } from "./client/BottomSheet/BottomSheetDismiss.js";
|
|
22
|
+
import { BottomSheetHeader } from "./client/BottomSheet/BottomSheetHeader.js";
|
|
23
|
+
import { BottomSheetProvider } from "./client/BottomSheet/BottomSheetProvider.js";
|
|
24
|
+
import { BottomSheetTrigger } from "./client/BottomSheet/BottomSheetTrigger.js";
|
|
17
25
|
import { SpringMotionConfig } from "./client/SpringMotionConfig.js";
|
|
18
26
|
import { Button } from "./client/Button.js";
|
|
19
27
|
import { Checkbox } from "./client/Checkbox.js";
|
|
@@ -49,6 +57,12 @@ var components_exports = /* @__PURE__ */ __exportAll({
|
|
|
49
57
|
AvatarImage: () => AvatarImage,
|
|
50
58
|
AvatarText: () => AvatarText,
|
|
51
59
|
Badge: () => Badge,
|
|
60
|
+
BottomSheet: () => BottomSheet,
|
|
61
|
+
BottomSheetContent: () => BottomSheetContent,
|
|
62
|
+
BottomSheetDismiss: () => BottomSheetDismiss,
|
|
63
|
+
BottomSheetHeader: () => BottomSheetHeader,
|
|
64
|
+
BottomSheetProvider: () => BottomSheetProvider,
|
|
65
|
+
BottomSheetTrigger: () => BottomSheetTrigger,
|
|
52
66
|
Box: () => Box,
|
|
53
67
|
Button: () => Button,
|
|
54
68
|
Checkbox: () => Checkbox,
|
|
@@ -70,6 +84,7 @@ var components_exports = /* @__PURE__ */ __exportAll({
|
|
|
70
84
|
Pressable: () => Pressable,
|
|
71
85
|
Radio: () => Radio,
|
|
72
86
|
RadioGroupProvider: () => RadioGroupProvider,
|
|
87
|
+
Scrim: () => Scrim,
|
|
73
88
|
SpringMotionConfig: () => SpringMotionConfig,
|
|
74
89
|
Switch: () => Switch,
|
|
75
90
|
Text: () => Text,
|
|
@@ -85,9 +100,10 @@ var components_exports = /* @__PURE__ */ __exportAll({
|
|
|
85
100
|
UDSTooltipConfigProvider: () => UDSTooltipConfigProvider,
|
|
86
101
|
VStack: () => VStack,
|
|
87
102
|
createToast: () => createToast,
|
|
103
|
+
useBottomSheetStore: () => useBottomSheetStore,
|
|
88
104
|
useBreakpointsConfig: () => useBreakpointsConfig,
|
|
89
105
|
useToastConfig: () => useToastConfig
|
|
90
106
|
});
|
|
91
107
|
|
|
92
108
|
//#endregion
|
|
93
|
-
export { Avatar, AvatarIcon, AvatarImage, AvatarText, Badge, Box, Button, Checkbox, Chip, ChipButton, ChipDismissible, ChipLink, ChipToggle, Divider, FormLabel, HStack, Icon, IconButton, Image, Input, InputHelpText, Link, Menu_index_exports as Menu, Pressable, Radio, RadioGroupProvider, SpringMotionConfig, Switch, Text, Toast, ToastContainer, ToastPortal, Tooltip, TooltipContent, TooltipTrigger, UDSBreakpointsConfigProvider, UDSConfigProvider, UDSToastConfigProvider, UDSTooltipConfigProvider, VStack, components_exports, createToast, useBreakpointsConfig, useToastConfig };
|
|
109
|
+
export { Avatar, AvatarIcon, AvatarImage, AvatarText, Badge, BottomSheet, BottomSheetContent, BottomSheetDismiss, BottomSheetHeader, BottomSheetProvider, BottomSheetTrigger, Box, Button, Checkbox, Chip, ChipButton, ChipDismissible, ChipLink, ChipToggle, Divider, FormLabel, HStack, Icon, IconButton, Image, Input, InputHelpText, Link, Menu_index_exports as Menu, Pressable, Radio, RadioGroupProvider, Scrim, SpringMotionConfig, Switch, Text, Toast, ToastContainer, ToastPortal, Tooltip, TooltipContent, TooltipTrigger, UDSBreakpointsConfigProvider, UDSConfigProvider, UDSToastConfigProvider, UDSTooltipConfigProvider, VStack, components_exports, createToast, useBottomSheetStore, useBreakpointsConfig, useToastConfig };
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
//#region ../config/dist/index.js
|
|
4
4
|
/*! © 2026 Yahoo, Inc. UDS Default Config v0.0.0-development */
|
|
5
|
-
const LATEST_MIGRATION_VERSION = "v0.
|
|
5
|
+
const LATEST_MIGRATION_VERSION = "v0.85.0";
|
|
6
6
|
/**
|
|
7
7
|
* NOTE: If you're building a feature with a migration,
|
|
8
8
|
* this type will likely throw. You can regenerate yosConfig
|
|
@@ -886,6 +886,70 @@ const defaultTokensConfig = {
|
|
|
886
886
|
}
|
|
887
887
|
}
|
|
888
888
|
},
|
|
889
|
+
bottomSheet: {
|
|
890
|
+
defaults: { variant: "default" },
|
|
891
|
+
variables: {
|
|
892
|
+
"variant/default/header": {
|
|
893
|
+
color: { rest: {
|
|
894
|
+
type: "foregroundPaletteColors",
|
|
895
|
+
value: "primary",
|
|
896
|
+
valueType: "alias"
|
|
897
|
+
} },
|
|
898
|
+
textVariant: { rest: {
|
|
899
|
+
type: "textVariants",
|
|
900
|
+
value: "headline1",
|
|
901
|
+
valueType: "alias"
|
|
902
|
+
} }
|
|
903
|
+
},
|
|
904
|
+
"variant/default/root": {
|
|
905
|
+
backgroundColor: { rest: {
|
|
906
|
+
type: "backgroundPaletteColors",
|
|
907
|
+
value: "primary",
|
|
908
|
+
valueType: "alias"
|
|
909
|
+
} },
|
|
910
|
+
borderColor: { rest: {
|
|
911
|
+
type: "spectrumColors",
|
|
912
|
+
value: "gray-3",
|
|
913
|
+
valueType: "alias"
|
|
914
|
+
} },
|
|
915
|
+
borderRadius: { rest: {
|
|
916
|
+
type: "borderRadii",
|
|
917
|
+
value: "lg",
|
|
918
|
+
valueType: "alias"
|
|
919
|
+
} },
|
|
920
|
+
borderWidth: { rest: {
|
|
921
|
+
type: "borderWidths",
|
|
922
|
+
value: "thin",
|
|
923
|
+
valueType: "alias"
|
|
924
|
+
} },
|
|
925
|
+
bottomMargin: { rest: {
|
|
926
|
+
type: "spacingAliases",
|
|
927
|
+
value: "2",
|
|
928
|
+
valueType: "alias"
|
|
929
|
+
} },
|
|
930
|
+
horizontalMargin: { rest: {
|
|
931
|
+
type: "spacingAliases",
|
|
932
|
+
value: "2",
|
|
933
|
+
valueType: "alias"
|
|
934
|
+
} },
|
|
935
|
+
shadow: { rest: {
|
|
936
|
+
type: "elevationAliases",
|
|
937
|
+
value: "elevation-2",
|
|
938
|
+
valueType: "alias"
|
|
939
|
+
} },
|
|
940
|
+
spacingHorizontal: { rest: {
|
|
941
|
+
type: "spacingAliases",
|
|
942
|
+
value: "2",
|
|
943
|
+
valueType: "alias"
|
|
944
|
+
} },
|
|
945
|
+
spacingVertical: { rest: {
|
|
946
|
+
type: "spacingAliases",
|
|
947
|
+
value: "2",
|
|
948
|
+
valueType: "alias"
|
|
949
|
+
} }
|
|
950
|
+
}
|
|
951
|
+
}
|
|
952
|
+
},
|
|
889
953
|
breakpoints: {
|
|
890
954
|
"2xl": {
|
|
891
955
|
type: "px",
|
|
@@ -14155,6 +14219,30 @@ const defaultTokensConfig = {
|
|
|
14155
14219
|
},
|
|
14156
14220
|
isAdvancedModeEnabled: false
|
|
14157
14221
|
},
|
|
14222
|
+
focusRing: {
|
|
14223
|
+
dark: {
|
|
14224
|
+
color: {
|
|
14225
|
+
type: "spectrum",
|
|
14226
|
+
value: {
|
|
14227
|
+
hue: "gray",
|
|
14228
|
+
step: "15"
|
|
14229
|
+
}
|
|
14230
|
+
},
|
|
14231
|
+
offset: 2,
|
|
14232
|
+
width: 2
|
|
14233
|
+
},
|
|
14234
|
+
light: {
|
|
14235
|
+
color: {
|
|
14236
|
+
type: "spectrum",
|
|
14237
|
+
value: {
|
|
14238
|
+
hue: "gray",
|
|
14239
|
+
step: "15"
|
|
14240
|
+
}
|
|
14241
|
+
},
|
|
14242
|
+
offset: 2,
|
|
14243
|
+
width: 2
|
|
14244
|
+
}
|
|
14245
|
+
},
|
|
14158
14246
|
font: {
|
|
14159
14247
|
mono: "roboto-mono",
|
|
14160
14248
|
sans: "yas",
|
|
@@ -17462,6 +17550,26 @@ const defaultTokensConfig = {
|
|
|
17462
17550
|
}
|
|
17463
17551
|
}
|
|
17464
17552
|
},
|
|
17553
|
+
scrim: {
|
|
17554
|
+
defaults: { variant: "default" },
|
|
17555
|
+
variables: { "variant/default/root": {
|
|
17556
|
+
backdropBlur: { rest: {
|
|
17557
|
+
type: "positiveIntegers",
|
|
17558
|
+
value: 0,
|
|
17559
|
+
valueType: "custom"
|
|
17560
|
+
} },
|
|
17561
|
+
backgroundColor: { rest: {
|
|
17562
|
+
type: "alwaysPaletteAliases",
|
|
17563
|
+
value: "always/black",
|
|
17564
|
+
valueType: "alias"
|
|
17565
|
+
} },
|
|
17566
|
+
opacity: { rest: {
|
|
17567
|
+
type: "opacitySteps",
|
|
17568
|
+
value: "20",
|
|
17569
|
+
valueType: "alias"
|
|
17570
|
+
} }
|
|
17571
|
+
} }
|
|
17572
|
+
},
|
|
17465
17573
|
shadow: {
|
|
17466
17574
|
drop: {
|
|
17467
17575
|
"2xl": [{
|
|
@@ -26858,7 +26966,7 @@ const defaultTokensConfig = {
|
|
|
26858
26966
|
}
|
|
26859
26967
|
}
|
|
26860
26968
|
},
|
|
26861
|
-
version: "v0.
|
|
26969
|
+
version: "v0.85.0",
|
|
26862
26970
|
version: LATEST_MIGRATION_VERSION
|
|
26863
26971
|
};
|
|
26864
26972
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*! © 2026 Yahoo, Inc. UDS v0.0.0-development */
|
|
2
2
|
//#region ../config/dist/index.js
|
|
3
3
|
/*! © 2026 Yahoo, Inc. UDS Default Config v0.0.0-development */
|
|
4
|
-
const LATEST_MIGRATION_VERSION = "v0.
|
|
4
|
+
const LATEST_MIGRATION_VERSION = "v0.85.0";
|
|
5
5
|
/**
|
|
6
6
|
* NOTE: If you're building a feature with a migration,
|
|
7
7
|
* this type will likely throw. You can regenerate yosConfig
|
|
@@ -885,6 +885,70 @@ const defaultTokensConfig = {
|
|
|
885
885
|
}
|
|
886
886
|
}
|
|
887
887
|
},
|
|
888
|
+
bottomSheet: {
|
|
889
|
+
defaults: { variant: "default" },
|
|
890
|
+
variables: {
|
|
891
|
+
"variant/default/header": {
|
|
892
|
+
color: { rest: {
|
|
893
|
+
type: "foregroundPaletteColors",
|
|
894
|
+
value: "primary",
|
|
895
|
+
valueType: "alias"
|
|
896
|
+
} },
|
|
897
|
+
textVariant: { rest: {
|
|
898
|
+
type: "textVariants",
|
|
899
|
+
value: "headline1",
|
|
900
|
+
valueType: "alias"
|
|
901
|
+
} }
|
|
902
|
+
},
|
|
903
|
+
"variant/default/root": {
|
|
904
|
+
backgroundColor: { rest: {
|
|
905
|
+
type: "backgroundPaletteColors",
|
|
906
|
+
value: "primary",
|
|
907
|
+
valueType: "alias"
|
|
908
|
+
} },
|
|
909
|
+
borderColor: { rest: {
|
|
910
|
+
type: "spectrumColors",
|
|
911
|
+
value: "gray-3",
|
|
912
|
+
valueType: "alias"
|
|
913
|
+
} },
|
|
914
|
+
borderRadius: { rest: {
|
|
915
|
+
type: "borderRadii",
|
|
916
|
+
value: "lg",
|
|
917
|
+
valueType: "alias"
|
|
918
|
+
} },
|
|
919
|
+
borderWidth: { rest: {
|
|
920
|
+
type: "borderWidths",
|
|
921
|
+
value: "thin",
|
|
922
|
+
valueType: "alias"
|
|
923
|
+
} },
|
|
924
|
+
bottomMargin: { rest: {
|
|
925
|
+
type: "spacingAliases",
|
|
926
|
+
value: "2",
|
|
927
|
+
valueType: "alias"
|
|
928
|
+
} },
|
|
929
|
+
horizontalMargin: { rest: {
|
|
930
|
+
type: "spacingAliases",
|
|
931
|
+
value: "2",
|
|
932
|
+
valueType: "alias"
|
|
933
|
+
} },
|
|
934
|
+
shadow: { rest: {
|
|
935
|
+
type: "elevationAliases",
|
|
936
|
+
value: "elevation-2",
|
|
937
|
+
valueType: "alias"
|
|
938
|
+
} },
|
|
939
|
+
spacingHorizontal: { rest: {
|
|
940
|
+
type: "spacingAliases",
|
|
941
|
+
value: "2",
|
|
942
|
+
valueType: "alias"
|
|
943
|
+
} },
|
|
944
|
+
spacingVertical: { rest: {
|
|
945
|
+
type: "spacingAliases",
|
|
946
|
+
value: "2",
|
|
947
|
+
valueType: "alias"
|
|
948
|
+
} }
|
|
949
|
+
}
|
|
950
|
+
}
|
|
951
|
+
},
|
|
888
952
|
breakpoints: {
|
|
889
953
|
"2xl": {
|
|
890
954
|
type: "px",
|
|
@@ -14154,6 +14218,30 @@ const defaultTokensConfig = {
|
|
|
14154
14218
|
},
|
|
14155
14219
|
isAdvancedModeEnabled: false
|
|
14156
14220
|
},
|
|
14221
|
+
focusRing: {
|
|
14222
|
+
dark: {
|
|
14223
|
+
color: {
|
|
14224
|
+
type: "spectrum",
|
|
14225
|
+
value: {
|
|
14226
|
+
hue: "gray",
|
|
14227
|
+
step: "15"
|
|
14228
|
+
}
|
|
14229
|
+
},
|
|
14230
|
+
offset: 2,
|
|
14231
|
+
width: 2
|
|
14232
|
+
},
|
|
14233
|
+
light: {
|
|
14234
|
+
color: {
|
|
14235
|
+
type: "spectrum",
|
|
14236
|
+
value: {
|
|
14237
|
+
hue: "gray",
|
|
14238
|
+
step: "15"
|
|
14239
|
+
}
|
|
14240
|
+
},
|
|
14241
|
+
offset: 2,
|
|
14242
|
+
width: 2
|
|
14243
|
+
}
|
|
14244
|
+
},
|
|
14157
14245
|
font: {
|
|
14158
14246
|
mono: "roboto-mono",
|
|
14159
14247
|
sans: "yas",
|
|
@@ -17461,6 +17549,26 @@ const defaultTokensConfig = {
|
|
|
17461
17549
|
}
|
|
17462
17550
|
}
|
|
17463
17551
|
},
|
|
17552
|
+
scrim: {
|
|
17553
|
+
defaults: { variant: "default" },
|
|
17554
|
+
variables: { "variant/default/root": {
|
|
17555
|
+
backdropBlur: { rest: {
|
|
17556
|
+
type: "positiveIntegers",
|
|
17557
|
+
value: 0,
|
|
17558
|
+
valueType: "custom"
|
|
17559
|
+
} },
|
|
17560
|
+
backgroundColor: { rest: {
|
|
17561
|
+
type: "alwaysPaletteAliases",
|
|
17562
|
+
value: "always/black",
|
|
17563
|
+
valueType: "alias"
|
|
17564
|
+
} },
|
|
17565
|
+
opacity: { rest: {
|
|
17566
|
+
type: "opacitySteps",
|
|
17567
|
+
value: "20",
|
|
17568
|
+
valueType: "alias"
|
|
17569
|
+
} }
|
|
17570
|
+
} }
|
|
17571
|
+
},
|
|
17464
17572
|
shadow: {
|
|
17465
17573
|
drop: {
|
|
17466
17574
|
"2xl": [{
|
|
@@ -26857,7 +26965,7 @@ const defaultTokensConfig = {
|
|
|
26857
26965
|
}
|
|
26858
26966
|
}
|
|
26859
26967
|
},
|
|
26860
|
-
version: "v0.
|
|
26968
|
+
version: "v0.85.0",
|
|
26861
26969
|
version: LATEST_MIGRATION_VERSION
|
|
26862
26970
|
};
|
|
26863
26971
|
|
|
@@ -1157,6 +1157,108 @@ var iconVariants = [
|
|
|
1157
1157
|
"outline",
|
|
1158
1158
|
"multicolor"
|
|
1159
1159
|
];
|
|
1160
|
+
var percentageSteps = [
|
|
1161
|
+
4,
|
|
1162
|
+
1,
|
|
1163
|
+
2,
|
|
1164
|
+
3,
|
|
1165
|
+
5,
|
|
1166
|
+
6,
|
|
1167
|
+
7,
|
|
1168
|
+
8,
|
|
1169
|
+
9,
|
|
1170
|
+
10,
|
|
1171
|
+
11,
|
|
1172
|
+
12,
|
|
1173
|
+
13,
|
|
1174
|
+
14,
|
|
1175
|
+
15,
|
|
1176
|
+
16,
|
|
1177
|
+
17,
|
|
1178
|
+
18,
|
|
1179
|
+
19,
|
|
1180
|
+
20,
|
|
1181
|
+
21,
|
|
1182
|
+
22,
|
|
1183
|
+
23,
|
|
1184
|
+
24,
|
|
1185
|
+
25,
|
|
1186
|
+
26,
|
|
1187
|
+
27,
|
|
1188
|
+
28,
|
|
1189
|
+
29,
|
|
1190
|
+
30,
|
|
1191
|
+
31,
|
|
1192
|
+
32,
|
|
1193
|
+
33,
|
|
1194
|
+
34,
|
|
1195
|
+
35,
|
|
1196
|
+
36,
|
|
1197
|
+
37,
|
|
1198
|
+
38,
|
|
1199
|
+
39,
|
|
1200
|
+
40,
|
|
1201
|
+
41,
|
|
1202
|
+
42,
|
|
1203
|
+
43,
|
|
1204
|
+
44,
|
|
1205
|
+
45,
|
|
1206
|
+
46,
|
|
1207
|
+
47,
|
|
1208
|
+
48,
|
|
1209
|
+
49,
|
|
1210
|
+
50,
|
|
1211
|
+
51,
|
|
1212
|
+
52,
|
|
1213
|
+
53,
|
|
1214
|
+
54,
|
|
1215
|
+
55,
|
|
1216
|
+
56,
|
|
1217
|
+
57,
|
|
1218
|
+
58,
|
|
1219
|
+
59,
|
|
1220
|
+
60,
|
|
1221
|
+
61,
|
|
1222
|
+
62,
|
|
1223
|
+
63,
|
|
1224
|
+
64,
|
|
1225
|
+
65,
|
|
1226
|
+
66,
|
|
1227
|
+
67,
|
|
1228
|
+
68,
|
|
1229
|
+
69,
|
|
1230
|
+
70,
|
|
1231
|
+
71,
|
|
1232
|
+
72,
|
|
1233
|
+
73,
|
|
1234
|
+
74,
|
|
1235
|
+
75,
|
|
1236
|
+
76,
|
|
1237
|
+
77,
|
|
1238
|
+
78,
|
|
1239
|
+
79,
|
|
1240
|
+
80,
|
|
1241
|
+
81,
|
|
1242
|
+
82,
|
|
1243
|
+
83,
|
|
1244
|
+
84,
|
|
1245
|
+
85,
|
|
1246
|
+
86,
|
|
1247
|
+
87,
|
|
1248
|
+
88,
|
|
1249
|
+
89,
|
|
1250
|
+
90,
|
|
1251
|
+
91,
|
|
1252
|
+
92,
|
|
1253
|
+
93,
|
|
1254
|
+
94,
|
|
1255
|
+
95,
|
|
1256
|
+
96,
|
|
1257
|
+
97,
|
|
1258
|
+
98,
|
|
1259
|
+
99,
|
|
1260
|
+
100
|
|
1261
|
+
];
|
|
1160
1262
|
var spacingAliases = [
|
|
1161
1263
|
"0",
|
|
1162
1264
|
"px",
|
|
@@ -1957,6 +2059,7 @@ exports.motionVariants = motionVariants;
|
|
|
1957
2059
|
exports.opacityMap = opacityMap;
|
|
1958
2060
|
exports.opacitySteps = opacitySteps;
|
|
1959
2061
|
exports.palette = palette;
|
|
2062
|
+
exports.percentageSteps = percentageSteps;
|
|
1960
2063
|
exports.positiveIntegers = positiveIntegers;
|
|
1961
2064
|
exports.regionModes = regionModes;
|
|
1962
2065
|
exports.scaleEffects = scaleEffects;
|
|
@@ -4,7 +4,7 @@ import { positiveIntegers } from "./arbitrary.cjs";
|
|
|
4
4
|
|
|
5
5
|
//#region ../fixtures/dist/index.d.ts
|
|
6
6
|
declare namespace index_d_exports {
|
|
7
|
-
export { ArbitraryFixtures, InferArbitraryType, alwaysPaletteAliases, avatarShapes, avatarSizes, backgroundColors, backgroundPaletteColors, badgeSizes, badgeVariants, borderRadii, borderWidths, borderWidthsWithElevation, breakpoints, buttonIconSvgSize, buttonPalettes, buttonSizes, buttonVariants, buttonVariantsFlat, buttonVariantsPrimary, buttonVariantsSecondary, buttonVariantsTertiary, checkboxSizes, checkboxVariants, chipSizes, chipVariants, colorModes, configurableComponentNames, elevationAliases, elevationLevels, elevationShadowLayerCount, fontAliases, fontIds, fontUrls, fontWeights, foregroundColors, foregroundPaletteColors, hueSteps, hues, iconButtonSizes, iconSizes, iconVariants, inputSizes, lineColors, linePaletteColors, linkTextVariants, linkVariants, motionSpringConfigOptions, motionVariantSpeeds, motionVariants, opacityMap, opacitySteps, palette, positiveIntegers, regionModes, scaleEffects, scaleModes, shadowColors, shadowOffsetMap, shadowOffsets, shadowOpacities, shadowOpacityMap, shadowPaletteColors, shadowSpreadRadii, shadowSpreadRadiusMap, shadowVariantConfigs, shadowVariants, shadowVariantsInvert, shadowVariantsWithInvert, sortPalette, spacingAliases, spacingMap, spectrumColors, switchSizes, textDecorationLines, textProperties, textTransforms, textVariants, textVariantsTypography, textVariantsUi, textVariantsWithoutEmphasized, toastSizes, toastVariants, tooltipPlacements, tshirtSizes, typographyStyleProperties };
|
|
7
|
+
export { ArbitraryFixtures, InferArbitraryType, alwaysPaletteAliases, avatarShapes, avatarSizes, backgroundColors, backgroundPaletteColors, badgeSizes, badgeVariants, borderRadii, borderWidths, borderWidthsWithElevation, breakpoints, buttonIconSvgSize, buttonPalettes, buttonSizes, buttonVariants, buttonVariantsFlat, buttonVariantsPrimary, buttonVariantsSecondary, buttonVariantsTertiary, checkboxSizes, checkboxVariants, chipSizes, chipVariants, colorModes, configurableComponentNames, elevationAliases, elevationLevels, elevationShadowLayerCount, fontAliases, fontIds, fontUrls, fontWeights, foregroundColors, foregroundPaletteColors, hueSteps, hues, iconButtonSizes, iconSizes, iconVariants, inputSizes, lineColors, linePaletteColors, linkTextVariants, linkVariants, motionSpringConfigOptions, motionVariantSpeeds, motionVariants, opacityMap, opacitySteps, palette, percentageSteps, positiveIntegers, regionModes, scaleEffects, scaleModes, shadowColors, shadowOffsetMap, shadowOffsets, shadowOpacities, shadowOpacityMap, shadowPaletteColors, shadowSpreadRadii, shadowSpreadRadiusMap, shadowVariantConfigs, shadowVariants, shadowVariantsInvert, shadowVariantsWithInvert, sortPalette, spacingAliases, spacingMap, spectrumColors, switchSizes, textDecorationLines, textProperties, textTransforms, textVariants, textVariantsTypography, textVariantsUi, textVariantsWithoutEmphasized, toastSizes, toastVariants, tooltipPlacements, tshirtSizes, typographyStyleProperties };
|
|
8
8
|
}
|
|
9
9
|
type ArbitraryFixturesMap = {
|
|
10
10
|
positiveIntegers: typeof positiveIntegers;
|
|
@@ -63,6 +63,7 @@ declare const borderWidths: BorderWidth[];
|
|
|
63
63
|
declare const borderWidthsWithElevation: string[];
|
|
64
64
|
declare const iconSizes: IconSize[];
|
|
65
65
|
declare const iconVariants: IconVariant[];
|
|
66
|
+
declare const percentageSteps: (0 | 1 | 4 | 2 | 100 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99)[];
|
|
66
67
|
/** Preserve order we want to display */
|
|
67
68
|
declare const spacingAliases: SpacingAlias[];
|
|
68
69
|
declare const spacingMap: Record<SpacingAlias, number>;
|
|
@@ -113,4 +114,4 @@ declare const fontIds: ("centra-no2" | "gelica" | "yas" | "inter" | "roboto-mono
|
|
|
113
114
|
*/
|
|
114
115
|
declare const fontUrls: ("https://s.yimg.com/bw/fonts/centra-no2-hairline.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-hairline-italic.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-thin.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-thin-italic.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-light.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-light-italic.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-book.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-book-italic.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-medium.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-medium-italic.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-bold.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-bold-italic.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-extrabold.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-extrabold-italic.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-black.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-black-italic.woff2" | "https://s.yimg.com/bw/fonts/gelica-extralight.woff2" | "https://s.yimg.com/bw/fonts/gelica-extralight-italic.woff2" | "https://s.yimg.com/bw/fonts/gelica-light.woff2" | "https://s.yimg.com/bw/fonts/gelica-light-italic.woff2" | "https://s.yimg.com/bw/fonts/gelica-regular.woff2" | "https://s.yimg.com/bw/fonts/gelica-regular-italic.woff2" | "https://s.yimg.com/bw/fonts/gelica-medium.woff2" | "https://s.yimg.com/bw/fonts/gelica-medium-italic.woff2" | "https://s.yimg.com/bw/fonts/gelica-semibold.woff2" | "https://s.yimg.com/bw/fonts/gelica-semibold-italic.woff2" | "https://s.yimg.com/bw/fonts/gelica-bold.woff2" | "https://s.yimg.com/bw/fonts/gelica-bold-italic.woff2" | "https://s.yimg.com/bw/fonts/gelica-black.woff2" | "https://s.yimg.com/bw/fonts/gelica-black-italic.woff2" | "https://s.yimg.com/bw/fonts/yas-latin1-normal-no-italic-vf.woff2" | "https://s.yimg.com/bw/fonts/inter-vf.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-100.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-100-italic.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-300.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-300-italic.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-400.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-400-italic.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-500.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-500-italic.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-700.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-700-italic.woff2" | "https://s.yimg.com/bw/fonts/yahoo-sans-vf.woff2" | "https://s.yimg.com/bw/fonts/yahoo-sans-cr4-vf.woff2" | "https://s.yimg.com/bw/fonts/yahoo-product-sans-vf.woff2" | "https://s.yimg.com/bw/fonts/YahooPd_Eval202412-v1.1.0.woff2" | "https://s.yimg.com/bw/fonts/yahoo-sans-condensed-vf.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-display-light.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-display-regular.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-display-bold.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-display-extrabold.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-display-black.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-text-regular.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-text-italic.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-text-bold.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-text-bold-italic.woff2")[];
|
|
115
116
|
//#endregion
|
|
116
|
-
export { ArbitraryFixtures, InferArbitraryType, alwaysPaletteAliases, avatarShapes, avatarSizes, backgroundColors, backgroundPaletteColors, badgeSizes, badgeVariants, borderRadii, borderWidths, borderWidthsWithElevation, breakpoints, buttonIconSvgSize, buttonPalettes, buttonSizes, buttonVariants, buttonVariantsFlat, buttonVariantsPrimary, buttonVariantsSecondary, buttonVariantsTertiary, checkboxSizes, checkboxVariants, chipSizes, chipVariants, colorModes, configurableComponentNames, elevationAliases, elevationLevels, elevationShadowLayerCount, fontAliases, fontIds, fontUrls, fontWeights, foregroundColors, foregroundPaletteColors, hueSteps, hues, iconButtonSizes, iconSizes, iconVariants, index_d_exports, inputSizes, lineColors, linePaletteColors, linkTextVariants, linkVariants, motionSpringConfigOptions, motionVariantSpeeds, motionVariants, opacityMap, opacitySteps, palette, regionModes, scaleEffects, scaleModes, shadowColors, shadowOffsetMap, shadowOffsets, shadowOpacities, shadowOpacityMap, shadowPaletteColors, shadowSpreadRadii, shadowSpreadRadiusMap, shadowVariantConfigs, shadowVariants, shadowVariantsInvert, shadowVariantsWithInvert, sortPalette, spacingAliases, spacingMap, spectrumColors, switchSizes, textDecorationLines, textProperties, textTransforms, textVariants, textVariantsTypography, textVariantsUi, textVariantsWithoutEmphasized, toastSizes, toastVariants, tooltipPlacements, tshirtSizes, typographyStyleProperties };
|
|
117
|
+
export { ArbitraryFixtures, InferArbitraryType, alwaysPaletteAliases, avatarShapes, avatarSizes, backgroundColors, backgroundPaletteColors, badgeSizes, badgeVariants, borderRadii, borderWidths, borderWidthsWithElevation, breakpoints, buttonIconSvgSize, buttonPalettes, buttonSizes, buttonVariants, buttonVariantsFlat, buttonVariantsPrimary, buttonVariantsSecondary, buttonVariantsTertiary, checkboxSizes, checkboxVariants, chipSizes, chipVariants, colorModes, configurableComponentNames, elevationAliases, elevationLevels, elevationShadowLayerCount, fontAliases, fontIds, fontUrls, fontWeights, foregroundColors, foregroundPaletteColors, hueSteps, hues, iconButtonSizes, iconSizes, iconVariants, index_d_exports, inputSizes, lineColors, linePaletteColors, linkTextVariants, linkVariants, motionSpringConfigOptions, motionVariantSpeeds, motionVariants, opacityMap, opacitySteps, palette, percentageSteps, regionModes, scaleEffects, scaleModes, shadowColors, shadowOffsetMap, shadowOffsets, shadowOpacities, shadowOpacityMap, shadowPaletteColors, shadowSpreadRadii, shadowSpreadRadiusMap, shadowVariantConfigs, shadowVariants, shadowVariantsInvert, shadowVariantsWithInvert, sortPalette, spacingAliases, spacingMap, spectrumColors, switchSizes, textDecorationLines, textProperties, textTransforms, textVariants, textVariantsTypography, textVariantsUi, textVariantsWithoutEmphasized, toastSizes, toastVariants, tooltipPlacements, tshirtSizes, typographyStyleProperties };
|
|
@@ -4,7 +4,7 @@ import { positiveIntegers } from "./arbitrary.js";
|
|
|
4
4
|
|
|
5
5
|
//#region ../fixtures/dist/index.d.ts
|
|
6
6
|
declare namespace index_d_exports {
|
|
7
|
-
export { ArbitraryFixtures, InferArbitraryType, alwaysPaletteAliases, avatarShapes, avatarSizes, backgroundColors, backgroundPaletteColors, badgeSizes, badgeVariants, borderRadii, borderWidths, borderWidthsWithElevation, breakpoints, buttonIconSvgSize, buttonPalettes, buttonSizes, buttonVariants, buttonVariantsFlat, buttonVariantsPrimary, buttonVariantsSecondary, buttonVariantsTertiary, checkboxSizes, checkboxVariants, chipSizes, chipVariants, colorModes, configurableComponentNames, elevationAliases, elevationLevels, elevationShadowLayerCount, fontAliases, fontIds, fontUrls, fontWeights, foregroundColors, foregroundPaletteColors, hueSteps, hues, iconButtonSizes, iconSizes, iconVariants, inputSizes, lineColors, linePaletteColors, linkTextVariants, linkVariants, motionSpringConfigOptions, motionVariantSpeeds, motionVariants, opacityMap, opacitySteps, palette, positiveIntegers, regionModes, scaleEffects, scaleModes, shadowColors, shadowOffsetMap, shadowOffsets, shadowOpacities, shadowOpacityMap, shadowPaletteColors, shadowSpreadRadii, shadowSpreadRadiusMap, shadowVariantConfigs, shadowVariants, shadowVariantsInvert, shadowVariantsWithInvert, sortPalette, spacingAliases, spacingMap, spectrumColors, switchSizes, textDecorationLines, textProperties, textTransforms, textVariants, textVariantsTypography, textVariantsUi, textVariantsWithoutEmphasized, toastSizes, toastVariants, tooltipPlacements, tshirtSizes, typographyStyleProperties };
|
|
7
|
+
export { ArbitraryFixtures, InferArbitraryType, alwaysPaletteAliases, avatarShapes, avatarSizes, backgroundColors, backgroundPaletteColors, badgeSizes, badgeVariants, borderRadii, borderWidths, borderWidthsWithElevation, breakpoints, buttonIconSvgSize, buttonPalettes, buttonSizes, buttonVariants, buttonVariantsFlat, buttonVariantsPrimary, buttonVariantsSecondary, buttonVariantsTertiary, checkboxSizes, checkboxVariants, chipSizes, chipVariants, colorModes, configurableComponentNames, elevationAliases, elevationLevels, elevationShadowLayerCount, fontAliases, fontIds, fontUrls, fontWeights, foregroundColors, foregroundPaletteColors, hueSteps, hues, iconButtonSizes, iconSizes, iconVariants, inputSizes, lineColors, linePaletteColors, linkTextVariants, linkVariants, motionSpringConfigOptions, motionVariantSpeeds, motionVariants, opacityMap, opacitySteps, palette, percentageSteps, positiveIntegers, regionModes, scaleEffects, scaleModes, shadowColors, shadowOffsetMap, shadowOffsets, shadowOpacities, shadowOpacityMap, shadowPaletteColors, shadowSpreadRadii, shadowSpreadRadiusMap, shadowVariantConfigs, shadowVariants, shadowVariantsInvert, shadowVariantsWithInvert, sortPalette, spacingAliases, spacingMap, spectrumColors, switchSizes, textDecorationLines, textProperties, textTransforms, textVariants, textVariantsTypography, textVariantsUi, textVariantsWithoutEmphasized, toastSizes, toastVariants, tooltipPlacements, tshirtSizes, typographyStyleProperties };
|
|
8
8
|
}
|
|
9
9
|
type ArbitraryFixturesMap = {
|
|
10
10
|
positiveIntegers: typeof positiveIntegers;
|
|
@@ -63,6 +63,7 @@ declare const borderWidths: BorderWidth[];
|
|
|
63
63
|
declare const borderWidthsWithElevation: string[];
|
|
64
64
|
declare const iconSizes: IconSize[];
|
|
65
65
|
declare const iconVariants: IconVariant[];
|
|
66
|
+
declare const percentageSteps: (0 | 1 | 4 | 2 | 100 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99)[];
|
|
66
67
|
/** Preserve order we want to display */
|
|
67
68
|
declare const spacingAliases: SpacingAlias[];
|
|
68
69
|
declare const spacingMap: Record<SpacingAlias, number>;
|
|
@@ -113,4 +114,4 @@ declare const fontIds: ("centra-no2" | "gelica" | "yas" | "inter" | "roboto-mono
|
|
|
113
114
|
*/
|
|
114
115
|
declare const fontUrls: ("https://s.yimg.com/bw/fonts/centra-no2-hairline.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-hairline-italic.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-thin.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-thin-italic.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-light.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-light-italic.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-book.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-book-italic.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-medium.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-medium-italic.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-bold.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-bold-italic.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-extrabold.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-extrabold-italic.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-black.woff2" | "https://s.yimg.com/bw/fonts/centra-no2-black-italic.woff2" | "https://s.yimg.com/bw/fonts/gelica-extralight.woff2" | "https://s.yimg.com/bw/fonts/gelica-extralight-italic.woff2" | "https://s.yimg.com/bw/fonts/gelica-light.woff2" | "https://s.yimg.com/bw/fonts/gelica-light-italic.woff2" | "https://s.yimg.com/bw/fonts/gelica-regular.woff2" | "https://s.yimg.com/bw/fonts/gelica-regular-italic.woff2" | "https://s.yimg.com/bw/fonts/gelica-medium.woff2" | "https://s.yimg.com/bw/fonts/gelica-medium-italic.woff2" | "https://s.yimg.com/bw/fonts/gelica-semibold.woff2" | "https://s.yimg.com/bw/fonts/gelica-semibold-italic.woff2" | "https://s.yimg.com/bw/fonts/gelica-bold.woff2" | "https://s.yimg.com/bw/fonts/gelica-bold-italic.woff2" | "https://s.yimg.com/bw/fonts/gelica-black.woff2" | "https://s.yimg.com/bw/fonts/gelica-black-italic.woff2" | "https://s.yimg.com/bw/fonts/yas-latin1-normal-no-italic-vf.woff2" | "https://s.yimg.com/bw/fonts/inter-vf.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-100.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-100-italic.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-300.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-300-italic.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-400.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-400-italic.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-500.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-500-italic.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-700.woff2" | "https://s.yimg.com/bw/fonts/roboto-mono-700-italic.woff2" | "https://s.yimg.com/bw/fonts/yahoo-sans-vf.woff2" | "https://s.yimg.com/bw/fonts/yahoo-sans-cr4-vf.woff2" | "https://s.yimg.com/bw/fonts/yahoo-product-sans-vf.woff2" | "https://s.yimg.com/bw/fonts/YahooPd_Eval202412-v1.1.0.woff2" | "https://s.yimg.com/bw/fonts/yahoo-sans-condensed-vf.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-display-light.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-display-regular.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-display-bold.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-display-extrabold.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-display-black.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-text-regular.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-text-italic.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-text-bold.woff2" | "https://s.yimg.com/bw/fonts/yahoo-serif-text-bold-italic.woff2")[];
|
|
115
116
|
//#endregion
|
|
116
|
-
export { ArbitraryFixtures, InferArbitraryType, alwaysPaletteAliases, avatarShapes, avatarSizes, backgroundColors, backgroundPaletteColors, badgeSizes, badgeVariants, borderRadii, borderWidths, borderWidthsWithElevation, breakpoints, buttonIconSvgSize, buttonPalettes, buttonSizes, buttonVariants, buttonVariantsFlat, buttonVariantsPrimary, buttonVariantsSecondary, buttonVariantsTertiary, checkboxSizes, checkboxVariants, chipSizes, chipVariants, colorModes, configurableComponentNames, elevationAliases, elevationLevels, elevationShadowLayerCount, fontAliases, fontIds, fontUrls, fontWeights, foregroundColors, foregroundPaletteColors, hueSteps, hues, iconButtonSizes, iconSizes, iconVariants, index_d_exports, inputSizes, lineColors, linePaletteColors, linkTextVariants, linkVariants, motionSpringConfigOptions, motionVariantSpeeds, motionVariants, opacityMap, opacitySteps, palette, regionModes, scaleEffects, scaleModes, shadowColors, shadowOffsetMap, shadowOffsets, shadowOpacities, shadowOpacityMap, shadowPaletteColors, shadowSpreadRadii, shadowSpreadRadiusMap, shadowVariantConfigs, shadowVariants, shadowVariantsInvert, shadowVariantsWithInvert, sortPalette, spacingAliases, spacingMap, spectrumColors, switchSizes, textDecorationLines, textProperties, textTransforms, textVariants, textVariantsTypography, textVariantsUi, textVariantsWithoutEmphasized, toastSizes, toastVariants, tooltipPlacements, tshirtSizes, typographyStyleProperties };
|
|
117
|
+
export { ArbitraryFixtures, InferArbitraryType, alwaysPaletteAliases, avatarShapes, avatarSizes, backgroundColors, backgroundPaletteColors, badgeSizes, badgeVariants, borderRadii, borderWidths, borderWidthsWithElevation, breakpoints, buttonIconSvgSize, buttonPalettes, buttonSizes, buttonVariants, buttonVariantsFlat, buttonVariantsPrimary, buttonVariantsSecondary, buttonVariantsTertiary, checkboxSizes, checkboxVariants, chipSizes, chipVariants, colorModes, configurableComponentNames, elevationAliases, elevationLevels, elevationShadowLayerCount, fontAliases, fontIds, fontUrls, fontWeights, foregroundColors, foregroundPaletteColors, hueSteps, hues, iconButtonSizes, iconSizes, iconVariants, index_d_exports, inputSizes, lineColors, linePaletteColors, linkTextVariants, linkVariants, motionSpringConfigOptions, motionVariantSpeeds, motionVariants, opacityMap, opacitySteps, palette, percentageSteps, regionModes, scaleEffects, scaleModes, shadowColors, shadowOffsetMap, shadowOffsets, shadowOpacities, shadowOpacityMap, shadowPaletteColors, shadowSpreadRadii, shadowSpreadRadiusMap, shadowVariantConfigs, shadowVariants, shadowVariantsInvert, shadowVariantsWithInvert, sortPalette, spacingAliases, spacingMap, spectrumColors, switchSizes, textDecorationLines, textProperties, textTransforms, textVariants, textVariantsTypography, textVariantsUi, textVariantsWithoutEmphasized, toastSizes, toastVariants, tooltipPlacements, tshirtSizes, typographyStyleProperties };
|