@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
|
@@ -513,6 +513,130 @@ declare const BadgeConfig: {
|
|
|
513
513
|
};
|
|
514
514
|
};
|
|
515
515
|
};
|
|
516
|
+
declare const BottomSheetConfig: {
|
|
517
|
+
readonly description: "Bottom anchored floating surface with optional scrim.";
|
|
518
|
+
readonly label: "BottomSheet";
|
|
519
|
+
readonly variants: {
|
|
520
|
+
readonly variant: {
|
|
521
|
+
readonly default: "default";
|
|
522
|
+
readonly description: "Bottom sheet styling.";
|
|
523
|
+
readonly label: "Variant";
|
|
524
|
+
readonly layers: {
|
|
525
|
+
readonly header: {
|
|
526
|
+
readonly label: "header";
|
|
527
|
+
readonly properties: {
|
|
528
|
+
readonly color: {
|
|
529
|
+
readonly defaults: {
|
|
530
|
+
readonly default: "primary";
|
|
531
|
+
};
|
|
532
|
+
readonly label: "Text color";
|
|
533
|
+
readonly name: "color";
|
|
534
|
+
readonly typeOfFixture: readonly ["spectrumColors", "foregroundPaletteColors", "alwaysPaletteAliases"];
|
|
535
|
+
readonly values: readonly [readonly ["gray-0", "gray-1", "gray-2", "gray-3", "gray-4", "gray-5", "gray-6", "gray-7", "gray-8", "gray-9", "gray-10", "gray-11", "gray-12", "gray-13", "gray-14", "gray-15", "purple-0", "purple-1", "purple-2", "purple-3", "purple-4", "purple-5", "purple-6", "purple-7", "purple-8", "purple-9", "purple-10", "purple-11", "purple-12", "purple-13", "purple-14", "purple-15", "indigo-0", "indigo-1", "indigo-2", "indigo-3", "indigo-4", "indigo-5", "indigo-6", "indigo-7", "indigo-8", "indigo-9", "indigo-10", "indigo-11", "indigo-12", "indigo-13", "indigo-14", "indigo-15", "blue-0", "blue-1", "blue-2", "blue-3", "blue-4", "blue-5", "blue-6", "blue-7", "blue-8", "blue-9", "blue-10", "blue-11", "blue-12", "blue-13", "blue-14", "blue-15", "cyan-0", "cyan-1", "cyan-2", "cyan-3", "cyan-4", "cyan-5", "cyan-6", "cyan-7", "cyan-8", "cyan-9", "cyan-10", "cyan-11", "cyan-12", "cyan-13", "cyan-14", "cyan-15", "teal-0", "teal-1", "teal-2", "teal-3", "teal-4", "teal-5", "teal-6", "teal-7", "teal-8", "teal-9", "teal-10", "teal-11", "teal-12", "teal-13", "teal-14", "teal-15", "mint-0", "mint-1", "mint-2", "mint-3", "mint-4", "mint-5", "mint-6", "mint-7", "mint-8", "mint-9", "mint-10", "mint-11", "mint-12", "mint-13", "mint-14", "mint-15", "green-0", "green-1", "green-2", "green-3", "green-4", "green-5", "green-6", "green-7", "green-8", "green-9", "green-10", "green-11", "green-12", "green-13", "green-14", "green-15", "lime-0", "lime-1", "lime-2", "lime-3", "lime-4", "lime-5", "lime-6", "lime-7", "lime-8", "lime-9", "lime-10", "lime-11", "lime-12", "lime-13", "lime-14", "lime-15", "citron-0", "citron-1", "citron-2", "citron-3", "citron-4", "citron-5", "citron-6", "citron-7", "citron-8", "citron-9", "citron-10", "citron-11", "citron-12", "citron-13", "citron-14", "citron-15", "yellow-0", "yellow-1", "yellow-2", "yellow-3", "yellow-4", "yellow-5", "yellow-6", "yellow-7", "yellow-8", "yellow-9", "yellow-10", "yellow-11", "yellow-12", "yellow-13", "yellow-14", "yellow-15", "brown-0", "brown-1", "brown-2", "brown-3", "brown-4", "brown-5", "brown-6", "brown-7", "brown-8", "brown-9", "brown-10", "brown-11", "brown-12", "brown-13", "brown-14", "brown-15", "nude-0", "nude-1", "nude-2", "nude-3", "nude-4", "nude-5", "nude-6", "nude-7", "nude-8", "nude-9", "nude-10", "nude-11", "nude-12", "nude-13", "nude-14", "nude-15", "orange-0", "orange-1", "orange-2", "orange-3", "orange-4", "orange-5", "orange-6", "orange-7", "orange-8", "orange-9", "orange-10", "orange-11", "orange-12", "orange-13", "orange-14", "orange-15", "sunset-0", "sunset-1", "sunset-2", "sunset-3", "sunset-4", "sunset-5", "sunset-6", "sunset-7", "sunset-8", "sunset-9", "sunset-10", "sunset-11", "sunset-12", "sunset-13", "sunset-14", "sunset-15", "red-0", "red-1", "red-2", "red-3", "red-4", "red-5", "red-6", "red-7", "red-8", "red-9", "red-10", "red-11", "red-12", "red-13", "red-14", "red-15", "rose-0", "rose-1", "rose-2", "rose-3", "rose-4", "rose-5", "rose-6", "rose-7", "rose-8", "rose-9", "rose-10", "rose-11", "rose-12", "rose-13", "rose-14", "rose-15", "pink-0", "pink-1", "pink-2", "pink-3", "pink-4", "pink-5", "pink-6", "pink-7", "pink-8", "pink-9", "pink-10", "pink-11", "pink-12", "pink-13", "pink-14", "pink-15", "magenta-0", "magenta-1", "magenta-2", "magenta-3", "magenta-4", "magenta-5", "magenta-6", "magenta-7", "magenta-8", "magenta-9", "magenta-10", "magenta-11", "magenta-12", "magenta-13", "magenta-14", "magenta-15", "carbon-0", "carbon-1", "carbon-2", "carbon-3", "carbon-4", "carbon-5", "carbon-6", "carbon-7", "carbon-8", "carbon-9", "carbon-10", "carbon-11", "carbon-12", "carbon-13", "carbon-14", "carbon-15"], readonly ["primary", "secondary", "accent", "brand", "alert", "positive", "warning", "info", "brand-secondary", "alert-secondary", "positive-secondary", "warning-secondary", "info-secondary", "tertiary", "muted", "on-color"], readonly ["always/white", "always/black", "always/transparent", "always/current", "always/brand", "always/accent"]];
|
|
536
|
+
};
|
|
537
|
+
readonly textVariant: {
|
|
538
|
+
readonly defaults: {
|
|
539
|
+
readonly default: "headline1";
|
|
540
|
+
};
|
|
541
|
+
readonly label: "Title text variant";
|
|
542
|
+
readonly name: "textVariant";
|
|
543
|
+
readonly typeOfFixture: readonly ["textVariants"];
|
|
544
|
+
readonly values: readonly [readonly ["display1", "display2", "display3", "title1", "title2", "title3", "title4", "headline1", "body1", "label1", "label2", "label3", "label4", "caption1", "caption2", "legal1", "ui1", "ui2", "ui3", "ui4", "ui5", "ui6", "display1/emphasized", "display2/emphasized", "display3/emphasized", "title1/emphasized", "title2/emphasized", "title3/emphasized", "title4/emphasized", "headline1/emphasized", "body1/emphasized", "label1/emphasized", "label2/emphasized", "label3/emphasized", "label4/emphasized", "caption1/emphasized", "caption2/emphasized", "legal1/emphasized", "ui1/emphasized", "ui2/emphasized", "ui3/emphasized", "ui4/emphasized", "ui5/emphasized", "ui6/emphasized"]];
|
|
545
|
+
};
|
|
546
|
+
};
|
|
547
|
+
};
|
|
548
|
+
readonly root: {
|
|
549
|
+
readonly label: "container";
|
|
550
|
+
readonly properties: {
|
|
551
|
+
readonly backgroundColor: {
|
|
552
|
+
readonly defaults: {
|
|
553
|
+
readonly default: "primary";
|
|
554
|
+
};
|
|
555
|
+
readonly label: "Background color";
|
|
556
|
+
readonly name: "backgroundColor";
|
|
557
|
+
readonly typeOfFixture: readonly ["spectrumColors", "backgroundPaletteColors", "alwaysPaletteAliases", "elevationAliases"];
|
|
558
|
+
readonly values: readonly [readonly ["gray-0", "gray-1", "gray-2", "gray-3", "gray-4", "gray-5", "gray-6", "gray-7", "gray-8", "gray-9", "gray-10", "gray-11", "gray-12", "gray-13", "gray-14", "gray-15", "purple-0", "purple-1", "purple-2", "purple-3", "purple-4", "purple-5", "purple-6", "purple-7", "purple-8", "purple-9", "purple-10", "purple-11", "purple-12", "purple-13", "purple-14", "purple-15", "indigo-0", "indigo-1", "indigo-2", "indigo-3", "indigo-4", "indigo-5", "indigo-6", "indigo-7", "indigo-8", "indigo-9", "indigo-10", "indigo-11", "indigo-12", "indigo-13", "indigo-14", "indigo-15", "blue-0", "blue-1", "blue-2", "blue-3", "blue-4", "blue-5", "blue-6", "blue-7", "blue-8", "blue-9", "blue-10", "blue-11", "blue-12", "blue-13", "blue-14", "blue-15", "cyan-0", "cyan-1", "cyan-2", "cyan-3", "cyan-4", "cyan-5", "cyan-6", "cyan-7", "cyan-8", "cyan-9", "cyan-10", "cyan-11", "cyan-12", "cyan-13", "cyan-14", "cyan-15", "teal-0", "teal-1", "teal-2", "teal-3", "teal-4", "teal-5", "teal-6", "teal-7", "teal-8", "teal-9", "teal-10", "teal-11", "teal-12", "teal-13", "teal-14", "teal-15", "mint-0", "mint-1", "mint-2", "mint-3", "mint-4", "mint-5", "mint-6", "mint-7", "mint-8", "mint-9", "mint-10", "mint-11", "mint-12", "mint-13", "mint-14", "mint-15", "green-0", "green-1", "green-2", "green-3", "green-4", "green-5", "green-6", "green-7", "green-8", "green-9", "green-10", "green-11", "green-12", "green-13", "green-14", "green-15", "lime-0", "lime-1", "lime-2", "lime-3", "lime-4", "lime-5", "lime-6", "lime-7", "lime-8", "lime-9", "lime-10", "lime-11", "lime-12", "lime-13", "lime-14", "lime-15", "citron-0", "citron-1", "citron-2", "citron-3", "citron-4", "citron-5", "citron-6", "citron-7", "citron-8", "citron-9", "citron-10", "citron-11", "citron-12", "citron-13", "citron-14", "citron-15", "yellow-0", "yellow-1", "yellow-2", "yellow-3", "yellow-4", "yellow-5", "yellow-6", "yellow-7", "yellow-8", "yellow-9", "yellow-10", "yellow-11", "yellow-12", "yellow-13", "yellow-14", "yellow-15", "brown-0", "brown-1", "brown-2", "brown-3", "brown-4", "brown-5", "brown-6", "brown-7", "brown-8", "brown-9", "brown-10", "brown-11", "brown-12", "brown-13", "brown-14", "brown-15", "nude-0", "nude-1", "nude-2", "nude-3", "nude-4", "nude-5", "nude-6", "nude-7", "nude-8", "nude-9", "nude-10", "nude-11", "nude-12", "nude-13", "nude-14", "nude-15", "orange-0", "orange-1", "orange-2", "orange-3", "orange-4", "orange-5", "orange-6", "orange-7", "orange-8", "orange-9", "orange-10", "orange-11", "orange-12", "orange-13", "orange-14", "orange-15", "sunset-0", "sunset-1", "sunset-2", "sunset-3", "sunset-4", "sunset-5", "sunset-6", "sunset-7", "sunset-8", "sunset-9", "sunset-10", "sunset-11", "sunset-12", "sunset-13", "sunset-14", "sunset-15", "red-0", "red-1", "red-2", "red-3", "red-4", "red-5", "red-6", "red-7", "red-8", "red-9", "red-10", "red-11", "red-12", "red-13", "red-14", "red-15", "rose-0", "rose-1", "rose-2", "rose-3", "rose-4", "rose-5", "rose-6", "rose-7", "rose-8", "rose-9", "rose-10", "rose-11", "rose-12", "rose-13", "rose-14", "rose-15", "pink-0", "pink-1", "pink-2", "pink-3", "pink-4", "pink-5", "pink-6", "pink-7", "pink-8", "pink-9", "pink-10", "pink-11", "pink-12", "pink-13", "pink-14", "pink-15", "magenta-0", "magenta-1", "magenta-2", "magenta-3", "magenta-4", "magenta-5", "magenta-6", "magenta-7", "magenta-8", "magenta-9", "magenta-10", "magenta-11", "magenta-12", "magenta-13", "magenta-14", "magenta-15", "carbon-0", "carbon-1", "carbon-2", "carbon-3", "carbon-4", "carbon-5", "carbon-6", "carbon-7", "carbon-8", "carbon-9", "carbon-10", "carbon-11", "carbon-12", "carbon-13", "carbon-14", "carbon-15"], readonly ["primary", "secondary", "accent", "brand", "alert", "positive", "warning", "info", "brand-secondary", "alert-secondary", "positive-secondary", "warning-secondary", "info-secondary"], readonly ["always/white", "always/black", "always/transparent", "always/current", "always/brand", "always/accent"], readonly ["elevation-0", "elevation-1", "elevation-2", "elevation-3", "elevation-4", "elevation-5"]];
|
|
559
|
+
};
|
|
560
|
+
readonly borderColor: {
|
|
561
|
+
readonly defaults: {
|
|
562
|
+
readonly default: "primary";
|
|
563
|
+
};
|
|
564
|
+
readonly label: "Border color";
|
|
565
|
+
readonly name: "borderColor";
|
|
566
|
+
readonly typeOfFixture: readonly ["spectrumColors", "linePaletteColors", "alwaysPaletteAliases"];
|
|
567
|
+
readonly values: readonly [readonly ["gray-0", "gray-1", "gray-2", "gray-3", "gray-4", "gray-5", "gray-6", "gray-7", "gray-8", "gray-9", "gray-10", "gray-11", "gray-12", "gray-13", "gray-14", "gray-15", "purple-0", "purple-1", "purple-2", "purple-3", "purple-4", "purple-5", "purple-6", "purple-7", "purple-8", "purple-9", "purple-10", "purple-11", "purple-12", "purple-13", "purple-14", "purple-15", "indigo-0", "indigo-1", "indigo-2", "indigo-3", "indigo-4", "indigo-5", "indigo-6", "indigo-7", "indigo-8", "indigo-9", "indigo-10", "indigo-11", "indigo-12", "indigo-13", "indigo-14", "indigo-15", "blue-0", "blue-1", "blue-2", "blue-3", "blue-4", "blue-5", "blue-6", "blue-7", "blue-8", "blue-9", "blue-10", "blue-11", "blue-12", "blue-13", "blue-14", "blue-15", "cyan-0", "cyan-1", "cyan-2", "cyan-3", "cyan-4", "cyan-5", "cyan-6", "cyan-7", "cyan-8", "cyan-9", "cyan-10", "cyan-11", "cyan-12", "cyan-13", "cyan-14", "cyan-15", "teal-0", "teal-1", "teal-2", "teal-3", "teal-4", "teal-5", "teal-6", "teal-7", "teal-8", "teal-9", "teal-10", "teal-11", "teal-12", "teal-13", "teal-14", "teal-15", "mint-0", "mint-1", "mint-2", "mint-3", "mint-4", "mint-5", "mint-6", "mint-7", "mint-8", "mint-9", "mint-10", "mint-11", "mint-12", "mint-13", "mint-14", "mint-15", "green-0", "green-1", "green-2", "green-3", "green-4", "green-5", "green-6", "green-7", "green-8", "green-9", "green-10", "green-11", "green-12", "green-13", "green-14", "green-15", "lime-0", "lime-1", "lime-2", "lime-3", "lime-4", "lime-5", "lime-6", "lime-7", "lime-8", "lime-9", "lime-10", "lime-11", "lime-12", "lime-13", "lime-14", "lime-15", "citron-0", "citron-1", "citron-2", "citron-3", "citron-4", "citron-5", "citron-6", "citron-7", "citron-8", "citron-9", "citron-10", "citron-11", "citron-12", "citron-13", "citron-14", "citron-15", "yellow-0", "yellow-1", "yellow-2", "yellow-3", "yellow-4", "yellow-5", "yellow-6", "yellow-7", "yellow-8", "yellow-9", "yellow-10", "yellow-11", "yellow-12", "yellow-13", "yellow-14", "yellow-15", "brown-0", "brown-1", "brown-2", "brown-3", "brown-4", "brown-5", "brown-6", "brown-7", "brown-8", "brown-9", "brown-10", "brown-11", "brown-12", "brown-13", "brown-14", "brown-15", "nude-0", "nude-1", "nude-2", "nude-3", "nude-4", "nude-5", "nude-6", "nude-7", "nude-8", "nude-9", "nude-10", "nude-11", "nude-12", "nude-13", "nude-14", "nude-15", "orange-0", "orange-1", "orange-2", "orange-3", "orange-4", "orange-5", "orange-6", "orange-7", "orange-8", "orange-9", "orange-10", "orange-11", "orange-12", "orange-13", "orange-14", "orange-15", "sunset-0", "sunset-1", "sunset-2", "sunset-3", "sunset-4", "sunset-5", "sunset-6", "sunset-7", "sunset-8", "sunset-9", "sunset-10", "sunset-11", "sunset-12", "sunset-13", "sunset-14", "sunset-15", "red-0", "red-1", "red-2", "red-3", "red-4", "red-5", "red-6", "red-7", "red-8", "red-9", "red-10", "red-11", "red-12", "red-13", "red-14", "red-15", "rose-0", "rose-1", "rose-2", "rose-3", "rose-4", "rose-5", "rose-6", "rose-7", "rose-8", "rose-9", "rose-10", "rose-11", "rose-12", "rose-13", "rose-14", "rose-15", "pink-0", "pink-1", "pink-2", "pink-3", "pink-4", "pink-5", "pink-6", "pink-7", "pink-8", "pink-9", "pink-10", "pink-11", "pink-12", "pink-13", "pink-14", "pink-15", "magenta-0", "magenta-1", "magenta-2", "magenta-3", "magenta-4", "magenta-5", "magenta-6", "magenta-7", "magenta-8", "magenta-9", "magenta-10", "magenta-11", "magenta-12", "magenta-13", "magenta-14", "magenta-15", "carbon-0", "carbon-1", "carbon-2", "carbon-3", "carbon-4", "carbon-5", "carbon-6", "carbon-7", "carbon-8", "carbon-9", "carbon-10", "carbon-11", "carbon-12", "carbon-13", "carbon-14", "carbon-15"], readonly ["primary", "secondary", "accent", "brand", "alert", "positive", "warning", "info", "brand-secondary", "alert-secondary", "positive-secondary", "warning-secondary", "info-secondary", "tertiary", "muted"], readonly ["always/white", "always/black", "always/transparent", "always/current", "always/brand", "always/accent"]];
|
|
568
|
+
};
|
|
569
|
+
readonly borderRadius: {
|
|
570
|
+
readonly defaults: {
|
|
571
|
+
readonly default: "lg";
|
|
572
|
+
};
|
|
573
|
+
readonly label: "Border radius";
|
|
574
|
+
readonly name: "borderRadius";
|
|
575
|
+
readonly typeOfFixture: readonly ["borderRadii"];
|
|
576
|
+
readonly values: readonly [readonly ["none", "xs", "sm", "md", "lg", "xl", "full"]];
|
|
577
|
+
};
|
|
578
|
+
readonly borderWidth: {
|
|
579
|
+
readonly defaults: {
|
|
580
|
+
readonly default: "thin";
|
|
581
|
+
};
|
|
582
|
+
readonly label: "Border width";
|
|
583
|
+
readonly name: "borderWidth";
|
|
584
|
+
readonly typeOfFixture: readonly ["borderWidths"];
|
|
585
|
+
readonly values: readonly [readonly ["none", "thin", "medium", "thick"]];
|
|
586
|
+
};
|
|
587
|
+
readonly bottomMargin: {
|
|
588
|
+
readonly defaults: {
|
|
589
|
+
readonly default: "0";
|
|
590
|
+
};
|
|
591
|
+
readonly label: "Margin bottom";
|
|
592
|
+
readonly name: "bottomMargin";
|
|
593
|
+
readonly typeOfFixture: readonly ["spacingAliases"];
|
|
594
|
+
readonly values: readonly [readonly ["0", "px", "0.5", "1", "1.5", "2", "2.5", "3", "3.5", "4", "4.5", "5", "5.5", "6", "7", "8", "9", "10", "11", "12", "14", "16", "20", "24", "28", "32", "36", "40", "44", "48", "52", "56", "60", "64", "72", "80", "96"]];
|
|
595
|
+
};
|
|
596
|
+
readonly horizontalMargin: {
|
|
597
|
+
readonly defaults: {
|
|
598
|
+
readonly default: "0";
|
|
599
|
+
};
|
|
600
|
+
readonly label: "Margin horizontal";
|
|
601
|
+
readonly name: "horizontalMargin";
|
|
602
|
+
readonly typeOfFixture: readonly ["spacingAliases"];
|
|
603
|
+
readonly values: readonly [readonly ["0", "px", "0.5", "1", "1.5", "2", "2.5", "3", "3.5", "4", "4.5", "5", "5.5", "6", "7", "8", "9", "10", "11", "12", "14", "16", "20", "24", "28", "32", "36", "40", "44", "48", "52", "56", "60", "64", "72", "80", "96"]];
|
|
604
|
+
};
|
|
605
|
+
readonly shadow: {
|
|
606
|
+
readonly defaults: {
|
|
607
|
+
readonly default: "elevation-2";
|
|
608
|
+
};
|
|
609
|
+
readonly label: "Drop shadow";
|
|
610
|
+
readonly name: "shadow";
|
|
611
|
+
readonly supportsCustom: true;
|
|
612
|
+
readonly typeOfFixture: readonly ["shadowVariants", "elevationAliases"];
|
|
613
|
+
readonly values: readonly [readonly ["none", "xs", "sm", "md", "lg", "xl", "2xl"], readonly ["elevation-0", "elevation-1", "elevation-2", "elevation-3", "elevation-4", "elevation-5"]];
|
|
614
|
+
};
|
|
615
|
+
readonly spacingHorizontal: {
|
|
616
|
+
readonly defaults: {
|
|
617
|
+
readonly default: "4";
|
|
618
|
+
};
|
|
619
|
+
readonly label: "Spacing horizontal";
|
|
620
|
+
readonly name: "spacingHorizontal";
|
|
621
|
+
readonly typeOfFixture: readonly ["spacingAliases"];
|
|
622
|
+
readonly values: readonly [readonly ["0", "px", "0.5", "1", "1.5", "2", "2.5", "3", "3.5", "4", "4.5", "5", "5.5", "6", "7", "8", "9", "10", "11", "12", "14", "16", "20", "24", "28", "32", "36", "40", "44", "48", "52", "56", "60", "64", "72", "80", "96"]];
|
|
623
|
+
};
|
|
624
|
+
readonly spacingVertical: {
|
|
625
|
+
readonly defaults: {
|
|
626
|
+
readonly default: "0";
|
|
627
|
+
};
|
|
628
|
+
readonly label: "Spacing vertical";
|
|
629
|
+
readonly name: "spacingVertical";
|
|
630
|
+
readonly typeOfFixture: readonly ["spacingAliases"];
|
|
631
|
+
readonly values: readonly [readonly ["0", "px", "0.5", "1", "1.5", "2", "2.5", "3", "3.5", "4", "4.5", "5", "5.5", "6", "7", "8", "9", "10", "11", "12", "14", "16", "20", "24", "28", "32", "36", "40", "44", "48", "52", "56", "60", "64", "72", "80", "96"]];
|
|
632
|
+
};
|
|
633
|
+
};
|
|
634
|
+
};
|
|
635
|
+
};
|
|
636
|
+
readonly options: readonly ["default"];
|
|
637
|
+
};
|
|
638
|
+
};
|
|
639
|
+
};
|
|
516
640
|
declare const ButtonConfig: {
|
|
517
641
|
readonly description: "Customizing your own buttons involves adjusting text styles, icon sizes, and spacing values to create a personalized button.";
|
|
518
642
|
readonly label: "Button";
|
|
@@ -2761,6 +2885,56 @@ declare const RadioConfig: {
|
|
|
2761
2885
|
};
|
|
2762
2886
|
};
|
|
2763
2887
|
};
|
|
2888
|
+
declare const ScrimConfig: {
|
|
2889
|
+
readonly description: "Backdrop overlay used behind modal and sheet surfaces.";
|
|
2890
|
+
readonly label: "Scrim";
|
|
2891
|
+
readonly variants: {
|
|
2892
|
+
readonly variant: {
|
|
2893
|
+
readonly default: "default";
|
|
2894
|
+
readonly description: "Scrim styling.";
|
|
2895
|
+
readonly label: "Variant";
|
|
2896
|
+
readonly layers: {
|
|
2897
|
+
readonly root: {
|
|
2898
|
+
readonly label: "root";
|
|
2899
|
+
readonly properties: {
|
|
2900
|
+
readonly backdropBlur: {
|
|
2901
|
+
readonly defaults: {
|
|
2902
|
+
readonly default: 0;
|
|
2903
|
+
};
|
|
2904
|
+
readonly label: "blur radius";
|
|
2905
|
+
readonly layerReference: {
|
|
2906
|
+
readonly propertyName: "backgroundColor";
|
|
2907
|
+
readonly variablePath: "variant/default/root";
|
|
2908
|
+
};
|
|
2909
|
+
readonly name: "backdropBlur";
|
|
2910
|
+
readonly typeOfFixture: readonly ["positiveIntegers"];
|
|
2911
|
+
readonly values: readonly [];
|
|
2912
|
+
};
|
|
2913
|
+
readonly backgroundColor: {
|
|
2914
|
+
readonly defaults: {
|
|
2915
|
+
readonly default: "always/black";
|
|
2916
|
+
};
|
|
2917
|
+
readonly label: "background color";
|
|
2918
|
+
readonly name: "scrimBackgroundColor";
|
|
2919
|
+
readonly typeOfFixture: readonly ["spectrumColors", "backgroundPaletteColors", "alwaysPaletteAliases"];
|
|
2920
|
+
readonly values: readonly [readonly ["gray-0", "gray-1", "gray-2", "gray-3", "gray-4", "gray-5", "gray-6", "gray-7", "gray-8", "gray-9", "gray-10", "gray-11", "gray-12", "gray-13", "gray-14", "gray-15", "purple-0", "purple-1", "purple-2", "purple-3", "purple-4", "purple-5", "purple-6", "purple-7", "purple-8", "purple-9", "purple-10", "purple-11", "purple-12", "purple-13", "purple-14", "purple-15", "indigo-0", "indigo-1", "indigo-2", "indigo-3", "indigo-4", "indigo-5", "indigo-6", "indigo-7", "indigo-8", "indigo-9", "indigo-10", "indigo-11", "indigo-12", "indigo-13", "indigo-14", "indigo-15", "blue-0", "blue-1", "blue-2", "blue-3", "blue-4", "blue-5", "blue-6", "blue-7", "blue-8", "blue-9", "blue-10", "blue-11", "blue-12", "blue-13", "blue-14", "blue-15", "cyan-0", "cyan-1", "cyan-2", "cyan-3", "cyan-4", "cyan-5", "cyan-6", "cyan-7", "cyan-8", "cyan-9", "cyan-10", "cyan-11", "cyan-12", "cyan-13", "cyan-14", "cyan-15", "teal-0", "teal-1", "teal-2", "teal-3", "teal-4", "teal-5", "teal-6", "teal-7", "teal-8", "teal-9", "teal-10", "teal-11", "teal-12", "teal-13", "teal-14", "teal-15", "mint-0", "mint-1", "mint-2", "mint-3", "mint-4", "mint-5", "mint-6", "mint-7", "mint-8", "mint-9", "mint-10", "mint-11", "mint-12", "mint-13", "mint-14", "mint-15", "green-0", "green-1", "green-2", "green-3", "green-4", "green-5", "green-6", "green-7", "green-8", "green-9", "green-10", "green-11", "green-12", "green-13", "green-14", "green-15", "lime-0", "lime-1", "lime-2", "lime-3", "lime-4", "lime-5", "lime-6", "lime-7", "lime-8", "lime-9", "lime-10", "lime-11", "lime-12", "lime-13", "lime-14", "lime-15", "citron-0", "citron-1", "citron-2", "citron-3", "citron-4", "citron-5", "citron-6", "citron-7", "citron-8", "citron-9", "citron-10", "citron-11", "citron-12", "citron-13", "citron-14", "citron-15", "yellow-0", "yellow-1", "yellow-2", "yellow-3", "yellow-4", "yellow-5", "yellow-6", "yellow-7", "yellow-8", "yellow-9", "yellow-10", "yellow-11", "yellow-12", "yellow-13", "yellow-14", "yellow-15", "brown-0", "brown-1", "brown-2", "brown-3", "brown-4", "brown-5", "brown-6", "brown-7", "brown-8", "brown-9", "brown-10", "brown-11", "brown-12", "brown-13", "brown-14", "brown-15", "nude-0", "nude-1", "nude-2", "nude-3", "nude-4", "nude-5", "nude-6", "nude-7", "nude-8", "nude-9", "nude-10", "nude-11", "nude-12", "nude-13", "nude-14", "nude-15", "orange-0", "orange-1", "orange-2", "orange-3", "orange-4", "orange-5", "orange-6", "orange-7", "orange-8", "orange-9", "orange-10", "orange-11", "orange-12", "orange-13", "orange-14", "orange-15", "sunset-0", "sunset-1", "sunset-2", "sunset-3", "sunset-4", "sunset-5", "sunset-6", "sunset-7", "sunset-8", "sunset-9", "sunset-10", "sunset-11", "sunset-12", "sunset-13", "sunset-14", "sunset-15", "red-0", "red-1", "red-2", "red-3", "red-4", "red-5", "red-6", "red-7", "red-8", "red-9", "red-10", "red-11", "red-12", "red-13", "red-14", "red-15", "rose-0", "rose-1", "rose-2", "rose-3", "rose-4", "rose-5", "rose-6", "rose-7", "rose-8", "rose-9", "rose-10", "rose-11", "rose-12", "rose-13", "rose-14", "rose-15", "pink-0", "pink-1", "pink-2", "pink-3", "pink-4", "pink-5", "pink-6", "pink-7", "pink-8", "pink-9", "pink-10", "pink-11", "pink-12", "pink-13", "pink-14", "pink-15", "magenta-0", "magenta-1", "magenta-2", "magenta-3", "magenta-4", "magenta-5", "magenta-6", "magenta-7", "magenta-8", "magenta-9", "magenta-10", "magenta-11", "magenta-12", "magenta-13", "magenta-14", "magenta-15", "carbon-0", "carbon-1", "carbon-2", "carbon-3", "carbon-4", "carbon-5", "carbon-6", "carbon-7", "carbon-8", "carbon-9", "carbon-10", "carbon-11", "carbon-12", "carbon-13", "carbon-14", "carbon-15"], readonly ["primary", "secondary", "accent", "brand", "alert", "positive", "warning", "info", "brand-secondary", "alert-secondary", "positive-secondary", "warning-secondary", "info-secondary"], readonly ["always/white", "always/black", "always/transparent", "always/current", "always/brand", "always/accent"]];
|
|
2921
|
+
};
|
|
2922
|
+
readonly opacity: {
|
|
2923
|
+
readonly defaults: {
|
|
2924
|
+
readonly default: "20";
|
|
2925
|
+
};
|
|
2926
|
+
readonly label: "opacity";
|
|
2927
|
+
readonly name: "scrimOpacity";
|
|
2928
|
+
readonly typeOfFixture: readonly ["opacitySteps"];
|
|
2929
|
+
readonly values: readonly [readonly ["0", "1", "2", "3", "4", "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", "100"]];
|
|
2930
|
+
};
|
|
2931
|
+
};
|
|
2932
|
+
};
|
|
2933
|
+
};
|
|
2934
|
+
readonly options: readonly ["default"];
|
|
2935
|
+
};
|
|
2936
|
+
};
|
|
2937
|
+
};
|
|
2764
2938
|
declare const SwitchConfig: {
|
|
2765
2939
|
readonly description: "A switch is a toggle control that lets users turn a setting on or off. It’s commonly used for binary actions like enabling or disabling a feature.";
|
|
2766
2940
|
readonly label: "Switch";
|
|
@@ -3513,4 +3687,4 @@ declare const TooltipConfig: {
|
|
|
3513
3687
|
};
|
|
3514
3688
|
}; //#endregion
|
|
3515
3689
|
//#endregion
|
|
3516
|
-
export { AvatarConfig, BadgeConfig, ButtonConfig, CheckboxConfig, ChipConfig, DividerConfig, IconButtonConfig, InputConfig, LinkConfig, MenuContentConfig, MenuItemConfig, RadioConfig, SwitchConfig, ToastConfig, TooltipConfig };
|
|
3690
|
+
export { AvatarConfig, BadgeConfig, BottomSheetConfig, ButtonConfig, CheckboxConfig, ChipConfig, DividerConfig, IconButtonConfig, InputConfig, LinkConfig, MenuContentConfig, MenuItemConfig, RadioConfig, ScrimConfig, SwitchConfig, ToastConfig, TooltipConfig };
|
|
@@ -513,6 +513,130 @@ declare const BadgeConfig: {
|
|
|
513
513
|
};
|
|
514
514
|
};
|
|
515
515
|
};
|
|
516
|
+
declare const BottomSheetConfig: {
|
|
517
|
+
readonly description: "Bottom anchored floating surface with optional scrim.";
|
|
518
|
+
readonly label: "BottomSheet";
|
|
519
|
+
readonly variants: {
|
|
520
|
+
readonly variant: {
|
|
521
|
+
readonly default: "default";
|
|
522
|
+
readonly description: "Bottom sheet styling.";
|
|
523
|
+
readonly label: "Variant";
|
|
524
|
+
readonly layers: {
|
|
525
|
+
readonly header: {
|
|
526
|
+
readonly label: "header";
|
|
527
|
+
readonly properties: {
|
|
528
|
+
readonly color: {
|
|
529
|
+
readonly defaults: {
|
|
530
|
+
readonly default: "primary";
|
|
531
|
+
};
|
|
532
|
+
readonly label: "Text color";
|
|
533
|
+
readonly name: "color";
|
|
534
|
+
readonly typeOfFixture: readonly ["spectrumColors", "foregroundPaletteColors", "alwaysPaletteAliases"];
|
|
535
|
+
readonly values: readonly [readonly ["gray-0", "gray-1", "gray-2", "gray-3", "gray-4", "gray-5", "gray-6", "gray-7", "gray-8", "gray-9", "gray-10", "gray-11", "gray-12", "gray-13", "gray-14", "gray-15", "purple-0", "purple-1", "purple-2", "purple-3", "purple-4", "purple-5", "purple-6", "purple-7", "purple-8", "purple-9", "purple-10", "purple-11", "purple-12", "purple-13", "purple-14", "purple-15", "indigo-0", "indigo-1", "indigo-2", "indigo-3", "indigo-4", "indigo-5", "indigo-6", "indigo-7", "indigo-8", "indigo-9", "indigo-10", "indigo-11", "indigo-12", "indigo-13", "indigo-14", "indigo-15", "blue-0", "blue-1", "blue-2", "blue-3", "blue-4", "blue-5", "blue-6", "blue-7", "blue-8", "blue-9", "blue-10", "blue-11", "blue-12", "blue-13", "blue-14", "blue-15", "cyan-0", "cyan-1", "cyan-2", "cyan-3", "cyan-4", "cyan-5", "cyan-6", "cyan-7", "cyan-8", "cyan-9", "cyan-10", "cyan-11", "cyan-12", "cyan-13", "cyan-14", "cyan-15", "teal-0", "teal-1", "teal-2", "teal-3", "teal-4", "teal-5", "teal-6", "teal-7", "teal-8", "teal-9", "teal-10", "teal-11", "teal-12", "teal-13", "teal-14", "teal-15", "mint-0", "mint-1", "mint-2", "mint-3", "mint-4", "mint-5", "mint-6", "mint-7", "mint-8", "mint-9", "mint-10", "mint-11", "mint-12", "mint-13", "mint-14", "mint-15", "green-0", "green-1", "green-2", "green-3", "green-4", "green-5", "green-6", "green-7", "green-8", "green-9", "green-10", "green-11", "green-12", "green-13", "green-14", "green-15", "lime-0", "lime-1", "lime-2", "lime-3", "lime-4", "lime-5", "lime-6", "lime-7", "lime-8", "lime-9", "lime-10", "lime-11", "lime-12", "lime-13", "lime-14", "lime-15", "citron-0", "citron-1", "citron-2", "citron-3", "citron-4", "citron-5", "citron-6", "citron-7", "citron-8", "citron-9", "citron-10", "citron-11", "citron-12", "citron-13", "citron-14", "citron-15", "yellow-0", "yellow-1", "yellow-2", "yellow-3", "yellow-4", "yellow-5", "yellow-6", "yellow-7", "yellow-8", "yellow-9", "yellow-10", "yellow-11", "yellow-12", "yellow-13", "yellow-14", "yellow-15", "brown-0", "brown-1", "brown-2", "brown-3", "brown-4", "brown-5", "brown-6", "brown-7", "brown-8", "brown-9", "brown-10", "brown-11", "brown-12", "brown-13", "brown-14", "brown-15", "nude-0", "nude-1", "nude-2", "nude-3", "nude-4", "nude-5", "nude-6", "nude-7", "nude-8", "nude-9", "nude-10", "nude-11", "nude-12", "nude-13", "nude-14", "nude-15", "orange-0", "orange-1", "orange-2", "orange-3", "orange-4", "orange-5", "orange-6", "orange-7", "orange-8", "orange-9", "orange-10", "orange-11", "orange-12", "orange-13", "orange-14", "orange-15", "sunset-0", "sunset-1", "sunset-2", "sunset-3", "sunset-4", "sunset-5", "sunset-6", "sunset-7", "sunset-8", "sunset-9", "sunset-10", "sunset-11", "sunset-12", "sunset-13", "sunset-14", "sunset-15", "red-0", "red-1", "red-2", "red-3", "red-4", "red-5", "red-6", "red-7", "red-8", "red-9", "red-10", "red-11", "red-12", "red-13", "red-14", "red-15", "rose-0", "rose-1", "rose-2", "rose-3", "rose-4", "rose-5", "rose-6", "rose-7", "rose-8", "rose-9", "rose-10", "rose-11", "rose-12", "rose-13", "rose-14", "rose-15", "pink-0", "pink-1", "pink-2", "pink-3", "pink-4", "pink-5", "pink-6", "pink-7", "pink-8", "pink-9", "pink-10", "pink-11", "pink-12", "pink-13", "pink-14", "pink-15", "magenta-0", "magenta-1", "magenta-2", "magenta-3", "magenta-4", "magenta-5", "magenta-6", "magenta-7", "magenta-8", "magenta-9", "magenta-10", "magenta-11", "magenta-12", "magenta-13", "magenta-14", "magenta-15", "carbon-0", "carbon-1", "carbon-2", "carbon-3", "carbon-4", "carbon-5", "carbon-6", "carbon-7", "carbon-8", "carbon-9", "carbon-10", "carbon-11", "carbon-12", "carbon-13", "carbon-14", "carbon-15"], readonly ["primary", "secondary", "accent", "brand", "alert", "positive", "warning", "info", "brand-secondary", "alert-secondary", "positive-secondary", "warning-secondary", "info-secondary", "tertiary", "muted", "on-color"], readonly ["always/white", "always/black", "always/transparent", "always/current", "always/brand", "always/accent"]];
|
|
536
|
+
};
|
|
537
|
+
readonly textVariant: {
|
|
538
|
+
readonly defaults: {
|
|
539
|
+
readonly default: "headline1";
|
|
540
|
+
};
|
|
541
|
+
readonly label: "Title text variant";
|
|
542
|
+
readonly name: "textVariant";
|
|
543
|
+
readonly typeOfFixture: readonly ["textVariants"];
|
|
544
|
+
readonly values: readonly [readonly ["display1", "display2", "display3", "title1", "title2", "title3", "title4", "headline1", "body1", "label1", "label2", "label3", "label4", "caption1", "caption2", "legal1", "ui1", "ui2", "ui3", "ui4", "ui5", "ui6", "display1/emphasized", "display2/emphasized", "display3/emphasized", "title1/emphasized", "title2/emphasized", "title3/emphasized", "title4/emphasized", "headline1/emphasized", "body1/emphasized", "label1/emphasized", "label2/emphasized", "label3/emphasized", "label4/emphasized", "caption1/emphasized", "caption2/emphasized", "legal1/emphasized", "ui1/emphasized", "ui2/emphasized", "ui3/emphasized", "ui4/emphasized", "ui5/emphasized", "ui6/emphasized"]];
|
|
545
|
+
};
|
|
546
|
+
};
|
|
547
|
+
};
|
|
548
|
+
readonly root: {
|
|
549
|
+
readonly label: "container";
|
|
550
|
+
readonly properties: {
|
|
551
|
+
readonly backgroundColor: {
|
|
552
|
+
readonly defaults: {
|
|
553
|
+
readonly default: "primary";
|
|
554
|
+
};
|
|
555
|
+
readonly label: "Background color";
|
|
556
|
+
readonly name: "backgroundColor";
|
|
557
|
+
readonly typeOfFixture: readonly ["spectrumColors", "backgroundPaletteColors", "alwaysPaletteAliases", "elevationAliases"];
|
|
558
|
+
readonly values: readonly [readonly ["gray-0", "gray-1", "gray-2", "gray-3", "gray-4", "gray-5", "gray-6", "gray-7", "gray-8", "gray-9", "gray-10", "gray-11", "gray-12", "gray-13", "gray-14", "gray-15", "purple-0", "purple-1", "purple-2", "purple-3", "purple-4", "purple-5", "purple-6", "purple-7", "purple-8", "purple-9", "purple-10", "purple-11", "purple-12", "purple-13", "purple-14", "purple-15", "indigo-0", "indigo-1", "indigo-2", "indigo-3", "indigo-4", "indigo-5", "indigo-6", "indigo-7", "indigo-8", "indigo-9", "indigo-10", "indigo-11", "indigo-12", "indigo-13", "indigo-14", "indigo-15", "blue-0", "blue-1", "blue-2", "blue-3", "blue-4", "blue-5", "blue-6", "blue-7", "blue-8", "blue-9", "blue-10", "blue-11", "blue-12", "blue-13", "blue-14", "blue-15", "cyan-0", "cyan-1", "cyan-2", "cyan-3", "cyan-4", "cyan-5", "cyan-6", "cyan-7", "cyan-8", "cyan-9", "cyan-10", "cyan-11", "cyan-12", "cyan-13", "cyan-14", "cyan-15", "teal-0", "teal-1", "teal-2", "teal-3", "teal-4", "teal-5", "teal-6", "teal-7", "teal-8", "teal-9", "teal-10", "teal-11", "teal-12", "teal-13", "teal-14", "teal-15", "mint-0", "mint-1", "mint-2", "mint-3", "mint-4", "mint-5", "mint-6", "mint-7", "mint-8", "mint-9", "mint-10", "mint-11", "mint-12", "mint-13", "mint-14", "mint-15", "green-0", "green-1", "green-2", "green-3", "green-4", "green-5", "green-6", "green-7", "green-8", "green-9", "green-10", "green-11", "green-12", "green-13", "green-14", "green-15", "lime-0", "lime-1", "lime-2", "lime-3", "lime-4", "lime-5", "lime-6", "lime-7", "lime-8", "lime-9", "lime-10", "lime-11", "lime-12", "lime-13", "lime-14", "lime-15", "citron-0", "citron-1", "citron-2", "citron-3", "citron-4", "citron-5", "citron-6", "citron-7", "citron-8", "citron-9", "citron-10", "citron-11", "citron-12", "citron-13", "citron-14", "citron-15", "yellow-0", "yellow-1", "yellow-2", "yellow-3", "yellow-4", "yellow-5", "yellow-6", "yellow-7", "yellow-8", "yellow-9", "yellow-10", "yellow-11", "yellow-12", "yellow-13", "yellow-14", "yellow-15", "brown-0", "brown-1", "brown-2", "brown-3", "brown-4", "brown-5", "brown-6", "brown-7", "brown-8", "brown-9", "brown-10", "brown-11", "brown-12", "brown-13", "brown-14", "brown-15", "nude-0", "nude-1", "nude-2", "nude-3", "nude-4", "nude-5", "nude-6", "nude-7", "nude-8", "nude-9", "nude-10", "nude-11", "nude-12", "nude-13", "nude-14", "nude-15", "orange-0", "orange-1", "orange-2", "orange-3", "orange-4", "orange-5", "orange-6", "orange-7", "orange-8", "orange-9", "orange-10", "orange-11", "orange-12", "orange-13", "orange-14", "orange-15", "sunset-0", "sunset-1", "sunset-2", "sunset-3", "sunset-4", "sunset-5", "sunset-6", "sunset-7", "sunset-8", "sunset-9", "sunset-10", "sunset-11", "sunset-12", "sunset-13", "sunset-14", "sunset-15", "red-0", "red-1", "red-2", "red-3", "red-4", "red-5", "red-6", "red-7", "red-8", "red-9", "red-10", "red-11", "red-12", "red-13", "red-14", "red-15", "rose-0", "rose-1", "rose-2", "rose-3", "rose-4", "rose-5", "rose-6", "rose-7", "rose-8", "rose-9", "rose-10", "rose-11", "rose-12", "rose-13", "rose-14", "rose-15", "pink-0", "pink-1", "pink-2", "pink-3", "pink-4", "pink-5", "pink-6", "pink-7", "pink-8", "pink-9", "pink-10", "pink-11", "pink-12", "pink-13", "pink-14", "pink-15", "magenta-0", "magenta-1", "magenta-2", "magenta-3", "magenta-4", "magenta-5", "magenta-6", "magenta-7", "magenta-8", "magenta-9", "magenta-10", "magenta-11", "magenta-12", "magenta-13", "magenta-14", "magenta-15", "carbon-0", "carbon-1", "carbon-2", "carbon-3", "carbon-4", "carbon-5", "carbon-6", "carbon-7", "carbon-8", "carbon-9", "carbon-10", "carbon-11", "carbon-12", "carbon-13", "carbon-14", "carbon-15"], readonly ["primary", "secondary", "accent", "brand", "alert", "positive", "warning", "info", "brand-secondary", "alert-secondary", "positive-secondary", "warning-secondary", "info-secondary"], readonly ["always/white", "always/black", "always/transparent", "always/current", "always/brand", "always/accent"], readonly ["elevation-0", "elevation-1", "elevation-2", "elevation-3", "elevation-4", "elevation-5"]];
|
|
559
|
+
};
|
|
560
|
+
readonly borderColor: {
|
|
561
|
+
readonly defaults: {
|
|
562
|
+
readonly default: "primary";
|
|
563
|
+
};
|
|
564
|
+
readonly label: "Border color";
|
|
565
|
+
readonly name: "borderColor";
|
|
566
|
+
readonly typeOfFixture: readonly ["spectrumColors", "linePaletteColors", "alwaysPaletteAliases"];
|
|
567
|
+
readonly values: readonly [readonly ["gray-0", "gray-1", "gray-2", "gray-3", "gray-4", "gray-5", "gray-6", "gray-7", "gray-8", "gray-9", "gray-10", "gray-11", "gray-12", "gray-13", "gray-14", "gray-15", "purple-0", "purple-1", "purple-2", "purple-3", "purple-4", "purple-5", "purple-6", "purple-7", "purple-8", "purple-9", "purple-10", "purple-11", "purple-12", "purple-13", "purple-14", "purple-15", "indigo-0", "indigo-1", "indigo-2", "indigo-3", "indigo-4", "indigo-5", "indigo-6", "indigo-7", "indigo-8", "indigo-9", "indigo-10", "indigo-11", "indigo-12", "indigo-13", "indigo-14", "indigo-15", "blue-0", "blue-1", "blue-2", "blue-3", "blue-4", "blue-5", "blue-6", "blue-7", "blue-8", "blue-9", "blue-10", "blue-11", "blue-12", "blue-13", "blue-14", "blue-15", "cyan-0", "cyan-1", "cyan-2", "cyan-3", "cyan-4", "cyan-5", "cyan-6", "cyan-7", "cyan-8", "cyan-9", "cyan-10", "cyan-11", "cyan-12", "cyan-13", "cyan-14", "cyan-15", "teal-0", "teal-1", "teal-2", "teal-3", "teal-4", "teal-5", "teal-6", "teal-7", "teal-8", "teal-9", "teal-10", "teal-11", "teal-12", "teal-13", "teal-14", "teal-15", "mint-0", "mint-1", "mint-2", "mint-3", "mint-4", "mint-5", "mint-6", "mint-7", "mint-8", "mint-9", "mint-10", "mint-11", "mint-12", "mint-13", "mint-14", "mint-15", "green-0", "green-1", "green-2", "green-3", "green-4", "green-5", "green-6", "green-7", "green-8", "green-9", "green-10", "green-11", "green-12", "green-13", "green-14", "green-15", "lime-0", "lime-1", "lime-2", "lime-3", "lime-4", "lime-5", "lime-6", "lime-7", "lime-8", "lime-9", "lime-10", "lime-11", "lime-12", "lime-13", "lime-14", "lime-15", "citron-0", "citron-1", "citron-2", "citron-3", "citron-4", "citron-5", "citron-6", "citron-7", "citron-8", "citron-9", "citron-10", "citron-11", "citron-12", "citron-13", "citron-14", "citron-15", "yellow-0", "yellow-1", "yellow-2", "yellow-3", "yellow-4", "yellow-5", "yellow-6", "yellow-7", "yellow-8", "yellow-9", "yellow-10", "yellow-11", "yellow-12", "yellow-13", "yellow-14", "yellow-15", "brown-0", "brown-1", "brown-2", "brown-3", "brown-4", "brown-5", "brown-6", "brown-7", "brown-8", "brown-9", "brown-10", "brown-11", "brown-12", "brown-13", "brown-14", "brown-15", "nude-0", "nude-1", "nude-2", "nude-3", "nude-4", "nude-5", "nude-6", "nude-7", "nude-8", "nude-9", "nude-10", "nude-11", "nude-12", "nude-13", "nude-14", "nude-15", "orange-0", "orange-1", "orange-2", "orange-3", "orange-4", "orange-5", "orange-6", "orange-7", "orange-8", "orange-9", "orange-10", "orange-11", "orange-12", "orange-13", "orange-14", "orange-15", "sunset-0", "sunset-1", "sunset-2", "sunset-3", "sunset-4", "sunset-5", "sunset-6", "sunset-7", "sunset-8", "sunset-9", "sunset-10", "sunset-11", "sunset-12", "sunset-13", "sunset-14", "sunset-15", "red-0", "red-1", "red-2", "red-3", "red-4", "red-5", "red-6", "red-7", "red-8", "red-9", "red-10", "red-11", "red-12", "red-13", "red-14", "red-15", "rose-0", "rose-1", "rose-2", "rose-3", "rose-4", "rose-5", "rose-6", "rose-7", "rose-8", "rose-9", "rose-10", "rose-11", "rose-12", "rose-13", "rose-14", "rose-15", "pink-0", "pink-1", "pink-2", "pink-3", "pink-4", "pink-5", "pink-6", "pink-7", "pink-8", "pink-9", "pink-10", "pink-11", "pink-12", "pink-13", "pink-14", "pink-15", "magenta-0", "magenta-1", "magenta-2", "magenta-3", "magenta-4", "magenta-5", "magenta-6", "magenta-7", "magenta-8", "magenta-9", "magenta-10", "magenta-11", "magenta-12", "magenta-13", "magenta-14", "magenta-15", "carbon-0", "carbon-1", "carbon-2", "carbon-3", "carbon-4", "carbon-5", "carbon-6", "carbon-7", "carbon-8", "carbon-9", "carbon-10", "carbon-11", "carbon-12", "carbon-13", "carbon-14", "carbon-15"], readonly ["primary", "secondary", "accent", "brand", "alert", "positive", "warning", "info", "brand-secondary", "alert-secondary", "positive-secondary", "warning-secondary", "info-secondary", "tertiary", "muted"], readonly ["always/white", "always/black", "always/transparent", "always/current", "always/brand", "always/accent"]];
|
|
568
|
+
};
|
|
569
|
+
readonly borderRadius: {
|
|
570
|
+
readonly defaults: {
|
|
571
|
+
readonly default: "lg";
|
|
572
|
+
};
|
|
573
|
+
readonly label: "Border radius";
|
|
574
|
+
readonly name: "borderRadius";
|
|
575
|
+
readonly typeOfFixture: readonly ["borderRadii"];
|
|
576
|
+
readonly values: readonly [readonly ["none", "xs", "sm", "md", "lg", "xl", "full"]];
|
|
577
|
+
};
|
|
578
|
+
readonly borderWidth: {
|
|
579
|
+
readonly defaults: {
|
|
580
|
+
readonly default: "thin";
|
|
581
|
+
};
|
|
582
|
+
readonly label: "Border width";
|
|
583
|
+
readonly name: "borderWidth";
|
|
584
|
+
readonly typeOfFixture: readonly ["borderWidths"];
|
|
585
|
+
readonly values: readonly [readonly ["none", "thin", "medium", "thick"]];
|
|
586
|
+
};
|
|
587
|
+
readonly bottomMargin: {
|
|
588
|
+
readonly defaults: {
|
|
589
|
+
readonly default: "0";
|
|
590
|
+
};
|
|
591
|
+
readonly label: "Margin bottom";
|
|
592
|
+
readonly name: "bottomMargin";
|
|
593
|
+
readonly typeOfFixture: readonly ["spacingAliases"];
|
|
594
|
+
readonly values: readonly [readonly ["0", "px", "0.5", "1", "1.5", "2", "2.5", "3", "3.5", "4", "4.5", "5", "5.5", "6", "7", "8", "9", "10", "11", "12", "14", "16", "20", "24", "28", "32", "36", "40", "44", "48", "52", "56", "60", "64", "72", "80", "96"]];
|
|
595
|
+
};
|
|
596
|
+
readonly horizontalMargin: {
|
|
597
|
+
readonly defaults: {
|
|
598
|
+
readonly default: "0";
|
|
599
|
+
};
|
|
600
|
+
readonly label: "Margin horizontal";
|
|
601
|
+
readonly name: "horizontalMargin";
|
|
602
|
+
readonly typeOfFixture: readonly ["spacingAliases"];
|
|
603
|
+
readonly values: readonly [readonly ["0", "px", "0.5", "1", "1.5", "2", "2.5", "3", "3.5", "4", "4.5", "5", "5.5", "6", "7", "8", "9", "10", "11", "12", "14", "16", "20", "24", "28", "32", "36", "40", "44", "48", "52", "56", "60", "64", "72", "80", "96"]];
|
|
604
|
+
};
|
|
605
|
+
readonly shadow: {
|
|
606
|
+
readonly defaults: {
|
|
607
|
+
readonly default: "elevation-2";
|
|
608
|
+
};
|
|
609
|
+
readonly label: "Drop shadow";
|
|
610
|
+
readonly name: "shadow";
|
|
611
|
+
readonly supportsCustom: true;
|
|
612
|
+
readonly typeOfFixture: readonly ["shadowVariants", "elevationAliases"];
|
|
613
|
+
readonly values: readonly [readonly ["none", "xs", "sm", "md", "lg", "xl", "2xl"], readonly ["elevation-0", "elevation-1", "elevation-2", "elevation-3", "elevation-4", "elevation-5"]];
|
|
614
|
+
};
|
|
615
|
+
readonly spacingHorizontal: {
|
|
616
|
+
readonly defaults: {
|
|
617
|
+
readonly default: "4";
|
|
618
|
+
};
|
|
619
|
+
readonly label: "Spacing horizontal";
|
|
620
|
+
readonly name: "spacingHorizontal";
|
|
621
|
+
readonly typeOfFixture: readonly ["spacingAliases"];
|
|
622
|
+
readonly values: readonly [readonly ["0", "px", "0.5", "1", "1.5", "2", "2.5", "3", "3.5", "4", "4.5", "5", "5.5", "6", "7", "8", "9", "10", "11", "12", "14", "16", "20", "24", "28", "32", "36", "40", "44", "48", "52", "56", "60", "64", "72", "80", "96"]];
|
|
623
|
+
};
|
|
624
|
+
readonly spacingVertical: {
|
|
625
|
+
readonly defaults: {
|
|
626
|
+
readonly default: "0";
|
|
627
|
+
};
|
|
628
|
+
readonly label: "Spacing vertical";
|
|
629
|
+
readonly name: "spacingVertical";
|
|
630
|
+
readonly typeOfFixture: readonly ["spacingAliases"];
|
|
631
|
+
readonly values: readonly [readonly ["0", "px", "0.5", "1", "1.5", "2", "2.5", "3", "3.5", "4", "4.5", "5", "5.5", "6", "7", "8", "9", "10", "11", "12", "14", "16", "20", "24", "28", "32", "36", "40", "44", "48", "52", "56", "60", "64", "72", "80", "96"]];
|
|
632
|
+
};
|
|
633
|
+
};
|
|
634
|
+
};
|
|
635
|
+
};
|
|
636
|
+
readonly options: readonly ["default"];
|
|
637
|
+
};
|
|
638
|
+
};
|
|
639
|
+
};
|
|
516
640
|
declare const ButtonConfig: {
|
|
517
641
|
readonly description: "Customizing your own buttons involves adjusting text styles, icon sizes, and spacing values to create a personalized button.";
|
|
518
642
|
readonly label: "Button";
|
|
@@ -2761,6 +2885,56 @@ declare const RadioConfig: {
|
|
|
2761
2885
|
};
|
|
2762
2886
|
};
|
|
2763
2887
|
};
|
|
2888
|
+
declare const ScrimConfig: {
|
|
2889
|
+
readonly description: "Backdrop overlay used behind modal and sheet surfaces.";
|
|
2890
|
+
readonly label: "Scrim";
|
|
2891
|
+
readonly variants: {
|
|
2892
|
+
readonly variant: {
|
|
2893
|
+
readonly default: "default";
|
|
2894
|
+
readonly description: "Scrim styling.";
|
|
2895
|
+
readonly label: "Variant";
|
|
2896
|
+
readonly layers: {
|
|
2897
|
+
readonly root: {
|
|
2898
|
+
readonly label: "root";
|
|
2899
|
+
readonly properties: {
|
|
2900
|
+
readonly backdropBlur: {
|
|
2901
|
+
readonly defaults: {
|
|
2902
|
+
readonly default: 0;
|
|
2903
|
+
};
|
|
2904
|
+
readonly label: "blur radius";
|
|
2905
|
+
readonly layerReference: {
|
|
2906
|
+
readonly propertyName: "backgroundColor";
|
|
2907
|
+
readonly variablePath: "variant/default/root";
|
|
2908
|
+
};
|
|
2909
|
+
readonly name: "backdropBlur";
|
|
2910
|
+
readonly typeOfFixture: readonly ["positiveIntegers"];
|
|
2911
|
+
readonly values: readonly [];
|
|
2912
|
+
};
|
|
2913
|
+
readonly backgroundColor: {
|
|
2914
|
+
readonly defaults: {
|
|
2915
|
+
readonly default: "always/black";
|
|
2916
|
+
};
|
|
2917
|
+
readonly label: "background color";
|
|
2918
|
+
readonly name: "scrimBackgroundColor";
|
|
2919
|
+
readonly typeOfFixture: readonly ["spectrumColors", "backgroundPaletteColors", "alwaysPaletteAliases"];
|
|
2920
|
+
readonly values: readonly [readonly ["gray-0", "gray-1", "gray-2", "gray-3", "gray-4", "gray-5", "gray-6", "gray-7", "gray-8", "gray-9", "gray-10", "gray-11", "gray-12", "gray-13", "gray-14", "gray-15", "purple-0", "purple-1", "purple-2", "purple-3", "purple-4", "purple-5", "purple-6", "purple-7", "purple-8", "purple-9", "purple-10", "purple-11", "purple-12", "purple-13", "purple-14", "purple-15", "indigo-0", "indigo-1", "indigo-2", "indigo-3", "indigo-4", "indigo-5", "indigo-6", "indigo-7", "indigo-8", "indigo-9", "indigo-10", "indigo-11", "indigo-12", "indigo-13", "indigo-14", "indigo-15", "blue-0", "blue-1", "blue-2", "blue-3", "blue-4", "blue-5", "blue-6", "blue-7", "blue-8", "blue-9", "blue-10", "blue-11", "blue-12", "blue-13", "blue-14", "blue-15", "cyan-0", "cyan-1", "cyan-2", "cyan-3", "cyan-4", "cyan-5", "cyan-6", "cyan-7", "cyan-8", "cyan-9", "cyan-10", "cyan-11", "cyan-12", "cyan-13", "cyan-14", "cyan-15", "teal-0", "teal-1", "teal-2", "teal-3", "teal-4", "teal-5", "teal-6", "teal-7", "teal-8", "teal-9", "teal-10", "teal-11", "teal-12", "teal-13", "teal-14", "teal-15", "mint-0", "mint-1", "mint-2", "mint-3", "mint-4", "mint-5", "mint-6", "mint-7", "mint-8", "mint-9", "mint-10", "mint-11", "mint-12", "mint-13", "mint-14", "mint-15", "green-0", "green-1", "green-2", "green-3", "green-4", "green-5", "green-6", "green-7", "green-8", "green-9", "green-10", "green-11", "green-12", "green-13", "green-14", "green-15", "lime-0", "lime-1", "lime-2", "lime-3", "lime-4", "lime-5", "lime-6", "lime-7", "lime-8", "lime-9", "lime-10", "lime-11", "lime-12", "lime-13", "lime-14", "lime-15", "citron-0", "citron-1", "citron-2", "citron-3", "citron-4", "citron-5", "citron-6", "citron-7", "citron-8", "citron-9", "citron-10", "citron-11", "citron-12", "citron-13", "citron-14", "citron-15", "yellow-0", "yellow-1", "yellow-2", "yellow-3", "yellow-4", "yellow-5", "yellow-6", "yellow-7", "yellow-8", "yellow-9", "yellow-10", "yellow-11", "yellow-12", "yellow-13", "yellow-14", "yellow-15", "brown-0", "brown-1", "brown-2", "brown-3", "brown-4", "brown-5", "brown-6", "brown-7", "brown-8", "brown-9", "brown-10", "brown-11", "brown-12", "brown-13", "brown-14", "brown-15", "nude-0", "nude-1", "nude-2", "nude-3", "nude-4", "nude-5", "nude-6", "nude-7", "nude-8", "nude-9", "nude-10", "nude-11", "nude-12", "nude-13", "nude-14", "nude-15", "orange-0", "orange-1", "orange-2", "orange-3", "orange-4", "orange-5", "orange-6", "orange-7", "orange-8", "orange-9", "orange-10", "orange-11", "orange-12", "orange-13", "orange-14", "orange-15", "sunset-0", "sunset-1", "sunset-2", "sunset-3", "sunset-4", "sunset-5", "sunset-6", "sunset-7", "sunset-8", "sunset-9", "sunset-10", "sunset-11", "sunset-12", "sunset-13", "sunset-14", "sunset-15", "red-0", "red-1", "red-2", "red-3", "red-4", "red-5", "red-6", "red-7", "red-8", "red-9", "red-10", "red-11", "red-12", "red-13", "red-14", "red-15", "rose-0", "rose-1", "rose-2", "rose-3", "rose-4", "rose-5", "rose-6", "rose-7", "rose-8", "rose-9", "rose-10", "rose-11", "rose-12", "rose-13", "rose-14", "rose-15", "pink-0", "pink-1", "pink-2", "pink-3", "pink-4", "pink-5", "pink-6", "pink-7", "pink-8", "pink-9", "pink-10", "pink-11", "pink-12", "pink-13", "pink-14", "pink-15", "magenta-0", "magenta-1", "magenta-2", "magenta-3", "magenta-4", "magenta-5", "magenta-6", "magenta-7", "magenta-8", "magenta-9", "magenta-10", "magenta-11", "magenta-12", "magenta-13", "magenta-14", "magenta-15", "carbon-0", "carbon-1", "carbon-2", "carbon-3", "carbon-4", "carbon-5", "carbon-6", "carbon-7", "carbon-8", "carbon-9", "carbon-10", "carbon-11", "carbon-12", "carbon-13", "carbon-14", "carbon-15"], readonly ["primary", "secondary", "accent", "brand", "alert", "positive", "warning", "info", "brand-secondary", "alert-secondary", "positive-secondary", "warning-secondary", "info-secondary"], readonly ["always/white", "always/black", "always/transparent", "always/current", "always/brand", "always/accent"]];
|
|
2921
|
+
};
|
|
2922
|
+
readonly opacity: {
|
|
2923
|
+
readonly defaults: {
|
|
2924
|
+
readonly default: "20";
|
|
2925
|
+
};
|
|
2926
|
+
readonly label: "opacity";
|
|
2927
|
+
readonly name: "scrimOpacity";
|
|
2928
|
+
readonly typeOfFixture: readonly ["opacitySteps"];
|
|
2929
|
+
readonly values: readonly [readonly ["0", "1", "2", "3", "4", "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", "100"]];
|
|
2930
|
+
};
|
|
2931
|
+
};
|
|
2932
|
+
};
|
|
2933
|
+
};
|
|
2934
|
+
readonly options: readonly ["default"];
|
|
2935
|
+
};
|
|
2936
|
+
};
|
|
2937
|
+
};
|
|
2764
2938
|
declare const SwitchConfig: {
|
|
2765
2939
|
readonly description: "A switch is a toggle control that lets users turn a setting on or off. It’s commonly used for binary actions like enabling or disabling a feature.";
|
|
2766
2940
|
readonly label: "Switch";
|
|
@@ -3513,4 +3687,4 @@ declare const TooltipConfig: {
|
|
|
3513
3687
|
};
|
|
3514
3688
|
}; //#endregion
|
|
3515
3689
|
//#endregion
|
|
3516
|
-
export { AvatarConfig, BadgeConfig, ButtonConfig, CheckboxConfig, ChipConfig, DividerConfig, IconButtonConfig, InputConfig, LinkConfig, MenuContentConfig, MenuItemConfig, RadioConfig, SwitchConfig, ToastConfig, TooltipConfig };
|
|
3690
|
+
export { AvatarConfig, BadgeConfig, BottomSheetConfig, ButtonConfig, CheckboxConfig, ChipConfig, DividerConfig, IconButtonConfig, InputConfig, LinkConfig, MenuContentConfig, MenuItemConfig, RadioConfig, ScrimConfig, SwitchConfig, ToastConfig, TooltipConfig };
|