@yahoo/uds 3.117.6 → 3.118.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 +1 -0
- package/dist/automated-config/dist/generated/autoVariants.d.cts +1 -0
- package/dist/automated-config/dist/generated/autoVariants.d.ts +1 -0
- package/dist/automated-config/dist/generated/autoVariants.js +1 -0
- package/dist/automated-config/dist/generated/generatedConfigs.cjs +370 -1
- package/dist/automated-config/dist/generated/generatedConfigs.d.cts +16 -2
- package/dist/automated-config/dist/generated/generatedConfigs.d.ts +16 -2
- package/dist/automated-config/dist/generated/generatedConfigs.js +370 -1
- package/dist/automated-config/dist/generated/universalTokensConfigAuto.cjs +5 -0
- package/dist/automated-config/dist/generated/universalTokensConfigAuto.js +5 -0
- package/dist/automated-config/dist/utils/getConfigVariantProperties.d.cts +2 -2
- package/dist/automated-config/dist/utils/getConfigVariantProperties.d.ts +2 -2
- package/dist/components/client/BottomSheet/BottomSheet.cjs +2 -1
- package/dist/components/client/BottomSheet/BottomSheet.js +2 -1
- package/dist/components/client/BottomSheet/BottomSheetHandle.cjs +3 -2
- package/dist/components/client/BottomSheet/BottomSheetHandle.d.cts +4 -1
- package/dist/components/client/BottomSheet/BottomSheetHandle.d.ts +4 -1
- package/dist/components/client/BottomSheet/BottomSheetHandle.js +4 -3
- package/dist/components/client/Toast/UDSToastConfigProvider.d.cts +1 -1
- package/dist/components/client/Toast/UDSToastConfigProvider.d.ts +1 -1
- package/dist/config/dist/index.cjs +7 -2
- package/dist/config/dist/index.js +7 -2
- package/dist/styles/styler.d.cts +10 -9
- package/dist/styles/styler.d.ts +10 -9
- package/dist/styles/variants.d.cts +3 -0
- package/dist/styles/variants.d.ts +3 -0
- package/dist/tailwind/dist/automated-config/dist/generated/autoVariants.cjs +1 -0
- package/dist/tailwind/dist/automated-config/dist/generated/autoVariants.js +1 -0
- package/dist/tailwind/dist/automated-config/dist/generated/autoVariants.js.map +1 -1
- package/dist/tailwind/dist/automated-config/dist/generated/generatedConfigs.cjs +370 -1
- package/dist/tailwind/dist/automated-config/dist/generated/generatedConfigs.js +370 -1
- package/dist/tailwind/dist/automated-config/dist/generated/generatedConfigs.js.map +1 -1
- package/dist/tailwind/dist/config/dist/index.cjs +7 -2
- package/dist/tailwind/dist/config/dist/index.js +7 -2
- package/dist/tailwind/dist/config/dist/index.js.map +1 -1
- package/dist/uds/generated/componentData.cjs +1209 -1210
- package/dist/uds/generated/componentData.js +1209 -1210
- package/dist/uds/generated/tailwindPurge.cjs +7 -6
- package/dist/uds/generated/tailwindPurge.js +7 -6
- package/generated/componentData.json +1685 -1680
- package/generated/tailwindPurge.ts +2 -2
- package/package.json +1 -1
|
@@ -78,6 +78,7 @@ const autoVariants = {
|
|
|
78
78
|
warning: "uds-badge-variant-warning-root",
|
|
79
79
|
"warning-secondary": "uds-badge-variant-warning-secondary-root"
|
|
80
80
|
},
|
|
81
|
+
bottomsheetVariantHandleIndicator: { default: "uds-bottomsheet-variant-default-handleindicator" },
|
|
81
82
|
bottomsheetVariantHeader: { default: "uds-bottomsheet-variant-default-header" },
|
|
82
83
|
bottomsheetVariantRoot: { default: "uds-bottomsheet-variant-default-root" },
|
|
83
84
|
buttonSizeIcon: {
|
|
@@ -10,6 +10,7 @@ interface StylePropsVariantsAuto<T> {
|
|
|
10
10
|
badgeSizeRoot: Record<'default' | 'lg' | 'md' | 'sm' | 'xs', T>;
|
|
11
11
|
badgeVariantIcon: Record<'alert' | 'alert-secondary' | 'brand' | 'brand-secondary' | 'default' | 'info' | 'info-secondary' | 'positive' | 'positive-secondary' | 'primary' | 'secondary' | 'warning' | 'warning-secondary', T>;
|
|
12
12
|
badgeVariantRoot: Record<'alert' | 'alert-secondary' | 'brand' | 'brand-secondary' | 'default' | 'info' | 'info-secondary' | 'positive' | 'positive-secondary' | 'primary' | 'secondary' | 'warning' | 'warning-secondary', T>;
|
|
13
|
+
bottomsheetVariantHandleIndicator: Record<'default', T>;
|
|
13
14
|
bottomsheetVariantHeader: Record<'default', T>;
|
|
14
15
|
bottomsheetVariantRoot: Record<'default', T>;
|
|
15
16
|
buttonSizeIcon: Record<'default' | 'lg' | 'md' | 'sm' | 'xs', T>;
|
|
@@ -10,6 +10,7 @@ interface StylePropsVariantsAuto<T> {
|
|
|
10
10
|
badgeSizeRoot: Record<'default' | 'lg' | 'md' | 'sm' | 'xs', T>;
|
|
11
11
|
badgeVariantIcon: Record<'alert' | 'alert-secondary' | 'brand' | 'brand-secondary' | 'default' | 'info' | 'info-secondary' | 'positive' | 'positive-secondary' | 'primary' | 'secondary' | 'warning' | 'warning-secondary', T>;
|
|
12
12
|
badgeVariantRoot: Record<'alert' | 'alert-secondary' | 'brand' | 'brand-secondary' | 'default' | 'info' | 'info-secondary' | 'positive' | 'positive-secondary' | 'primary' | 'secondary' | 'warning' | 'warning-secondary', T>;
|
|
13
|
+
bottomsheetVariantHandleIndicator: Record<'default', T>;
|
|
13
14
|
bottomsheetVariantHeader: Record<'default', T>;
|
|
14
15
|
bottomsheetVariantRoot: Record<'default', T>;
|
|
15
16
|
buttonSizeIcon: Record<'default' | 'lg' | 'md' | 'sm' | 'xs', T>;
|
|
@@ -77,6 +77,7 @@ const autoVariants = {
|
|
|
77
77
|
warning: "uds-badge-variant-warning-root",
|
|
78
78
|
"warning-secondary": "uds-badge-variant-warning-secondary-root"
|
|
79
79
|
},
|
|
80
|
+
bottomsheetVariantHandleIndicator: { default: "uds-bottomsheet-variant-default-handleindicator" },
|
|
80
81
|
bottomsheetVariantHeader: { default: "uds-bottomsheet-variant-default-header" },
|
|
81
82
|
bottomsheetVariantRoot: { default: "uds-bottomsheet-variant-default-root" },
|
|
82
83
|
buttonSizeIcon: {
|
|
@@ -4750,6 +4750,366 @@ const BottomSheetConfig = {
|
|
|
4750
4750
|
description: "Bottom sheet styling.",
|
|
4751
4751
|
label: "Variant",
|
|
4752
4752
|
layers: {
|
|
4753
|
+
handleIndicator: {
|
|
4754
|
+
label: "handle indicator",
|
|
4755
|
+
properties: { backgroundColor: {
|
|
4756
|
+
defaults: { default: "accent" },
|
|
4757
|
+
label: "Handle indicator color",
|
|
4758
|
+
name: "backgroundColor",
|
|
4759
|
+
typeOfFixture: [
|
|
4760
|
+
"spectrumColors",
|
|
4761
|
+
"backgroundPaletteColors",
|
|
4762
|
+
"alwaysPaletteAliases"
|
|
4763
|
+
],
|
|
4764
|
+
values: [
|
|
4765
|
+
[
|
|
4766
|
+
"gray-0",
|
|
4767
|
+
"gray-1",
|
|
4768
|
+
"gray-2",
|
|
4769
|
+
"gray-3",
|
|
4770
|
+
"gray-4",
|
|
4771
|
+
"gray-5",
|
|
4772
|
+
"gray-6",
|
|
4773
|
+
"gray-7",
|
|
4774
|
+
"gray-8",
|
|
4775
|
+
"gray-9",
|
|
4776
|
+
"gray-10",
|
|
4777
|
+
"gray-11",
|
|
4778
|
+
"gray-12",
|
|
4779
|
+
"gray-13",
|
|
4780
|
+
"gray-14",
|
|
4781
|
+
"gray-15",
|
|
4782
|
+
"purple-0",
|
|
4783
|
+
"purple-1",
|
|
4784
|
+
"purple-2",
|
|
4785
|
+
"purple-3",
|
|
4786
|
+
"purple-4",
|
|
4787
|
+
"purple-5",
|
|
4788
|
+
"purple-6",
|
|
4789
|
+
"purple-7",
|
|
4790
|
+
"purple-8",
|
|
4791
|
+
"purple-9",
|
|
4792
|
+
"purple-10",
|
|
4793
|
+
"purple-11",
|
|
4794
|
+
"purple-12",
|
|
4795
|
+
"purple-13",
|
|
4796
|
+
"purple-14",
|
|
4797
|
+
"purple-15",
|
|
4798
|
+
"indigo-0",
|
|
4799
|
+
"indigo-1",
|
|
4800
|
+
"indigo-2",
|
|
4801
|
+
"indigo-3",
|
|
4802
|
+
"indigo-4",
|
|
4803
|
+
"indigo-5",
|
|
4804
|
+
"indigo-6",
|
|
4805
|
+
"indigo-7",
|
|
4806
|
+
"indigo-8",
|
|
4807
|
+
"indigo-9",
|
|
4808
|
+
"indigo-10",
|
|
4809
|
+
"indigo-11",
|
|
4810
|
+
"indigo-12",
|
|
4811
|
+
"indigo-13",
|
|
4812
|
+
"indigo-14",
|
|
4813
|
+
"indigo-15",
|
|
4814
|
+
"blue-0",
|
|
4815
|
+
"blue-1",
|
|
4816
|
+
"blue-2",
|
|
4817
|
+
"blue-3",
|
|
4818
|
+
"blue-4",
|
|
4819
|
+
"blue-5",
|
|
4820
|
+
"blue-6",
|
|
4821
|
+
"blue-7",
|
|
4822
|
+
"blue-8",
|
|
4823
|
+
"blue-9",
|
|
4824
|
+
"blue-10",
|
|
4825
|
+
"blue-11",
|
|
4826
|
+
"blue-12",
|
|
4827
|
+
"blue-13",
|
|
4828
|
+
"blue-14",
|
|
4829
|
+
"blue-15",
|
|
4830
|
+
"cyan-0",
|
|
4831
|
+
"cyan-1",
|
|
4832
|
+
"cyan-2",
|
|
4833
|
+
"cyan-3",
|
|
4834
|
+
"cyan-4",
|
|
4835
|
+
"cyan-5",
|
|
4836
|
+
"cyan-6",
|
|
4837
|
+
"cyan-7",
|
|
4838
|
+
"cyan-8",
|
|
4839
|
+
"cyan-9",
|
|
4840
|
+
"cyan-10",
|
|
4841
|
+
"cyan-11",
|
|
4842
|
+
"cyan-12",
|
|
4843
|
+
"cyan-13",
|
|
4844
|
+
"cyan-14",
|
|
4845
|
+
"cyan-15",
|
|
4846
|
+
"teal-0",
|
|
4847
|
+
"teal-1",
|
|
4848
|
+
"teal-2",
|
|
4849
|
+
"teal-3",
|
|
4850
|
+
"teal-4",
|
|
4851
|
+
"teal-5",
|
|
4852
|
+
"teal-6",
|
|
4853
|
+
"teal-7",
|
|
4854
|
+
"teal-8",
|
|
4855
|
+
"teal-9",
|
|
4856
|
+
"teal-10",
|
|
4857
|
+
"teal-11",
|
|
4858
|
+
"teal-12",
|
|
4859
|
+
"teal-13",
|
|
4860
|
+
"teal-14",
|
|
4861
|
+
"teal-15",
|
|
4862
|
+
"mint-0",
|
|
4863
|
+
"mint-1",
|
|
4864
|
+
"mint-2",
|
|
4865
|
+
"mint-3",
|
|
4866
|
+
"mint-4",
|
|
4867
|
+
"mint-5",
|
|
4868
|
+
"mint-6",
|
|
4869
|
+
"mint-7",
|
|
4870
|
+
"mint-8",
|
|
4871
|
+
"mint-9",
|
|
4872
|
+
"mint-10",
|
|
4873
|
+
"mint-11",
|
|
4874
|
+
"mint-12",
|
|
4875
|
+
"mint-13",
|
|
4876
|
+
"mint-14",
|
|
4877
|
+
"mint-15",
|
|
4878
|
+
"green-0",
|
|
4879
|
+
"green-1",
|
|
4880
|
+
"green-2",
|
|
4881
|
+
"green-3",
|
|
4882
|
+
"green-4",
|
|
4883
|
+
"green-5",
|
|
4884
|
+
"green-6",
|
|
4885
|
+
"green-7",
|
|
4886
|
+
"green-8",
|
|
4887
|
+
"green-9",
|
|
4888
|
+
"green-10",
|
|
4889
|
+
"green-11",
|
|
4890
|
+
"green-12",
|
|
4891
|
+
"green-13",
|
|
4892
|
+
"green-14",
|
|
4893
|
+
"green-15",
|
|
4894
|
+
"lime-0",
|
|
4895
|
+
"lime-1",
|
|
4896
|
+
"lime-2",
|
|
4897
|
+
"lime-3",
|
|
4898
|
+
"lime-4",
|
|
4899
|
+
"lime-5",
|
|
4900
|
+
"lime-6",
|
|
4901
|
+
"lime-7",
|
|
4902
|
+
"lime-8",
|
|
4903
|
+
"lime-9",
|
|
4904
|
+
"lime-10",
|
|
4905
|
+
"lime-11",
|
|
4906
|
+
"lime-12",
|
|
4907
|
+
"lime-13",
|
|
4908
|
+
"lime-14",
|
|
4909
|
+
"lime-15",
|
|
4910
|
+
"citron-0",
|
|
4911
|
+
"citron-1",
|
|
4912
|
+
"citron-2",
|
|
4913
|
+
"citron-3",
|
|
4914
|
+
"citron-4",
|
|
4915
|
+
"citron-5",
|
|
4916
|
+
"citron-6",
|
|
4917
|
+
"citron-7",
|
|
4918
|
+
"citron-8",
|
|
4919
|
+
"citron-9",
|
|
4920
|
+
"citron-10",
|
|
4921
|
+
"citron-11",
|
|
4922
|
+
"citron-12",
|
|
4923
|
+
"citron-13",
|
|
4924
|
+
"citron-14",
|
|
4925
|
+
"citron-15",
|
|
4926
|
+
"yellow-0",
|
|
4927
|
+
"yellow-1",
|
|
4928
|
+
"yellow-2",
|
|
4929
|
+
"yellow-3",
|
|
4930
|
+
"yellow-4",
|
|
4931
|
+
"yellow-5",
|
|
4932
|
+
"yellow-6",
|
|
4933
|
+
"yellow-7",
|
|
4934
|
+
"yellow-8",
|
|
4935
|
+
"yellow-9",
|
|
4936
|
+
"yellow-10",
|
|
4937
|
+
"yellow-11",
|
|
4938
|
+
"yellow-12",
|
|
4939
|
+
"yellow-13",
|
|
4940
|
+
"yellow-14",
|
|
4941
|
+
"yellow-15",
|
|
4942
|
+
"brown-0",
|
|
4943
|
+
"brown-1",
|
|
4944
|
+
"brown-2",
|
|
4945
|
+
"brown-3",
|
|
4946
|
+
"brown-4",
|
|
4947
|
+
"brown-5",
|
|
4948
|
+
"brown-6",
|
|
4949
|
+
"brown-7",
|
|
4950
|
+
"brown-8",
|
|
4951
|
+
"brown-9",
|
|
4952
|
+
"brown-10",
|
|
4953
|
+
"brown-11",
|
|
4954
|
+
"brown-12",
|
|
4955
|
+
"brown-13",
|
|
4956
|
+
"brown-14",
|
|
4957
|
+
"brown-15",
|
|
4958
|
+
"nude-0",
|
|
4959
|
+
"nude-1",
|
|
4960
|
+
"nude-2",
|
|
4961
|
+
"nude-3",
|
|
4962
|
+
"nude-4",
|
|
4963
|
+
"nude-5",
|
|
4964
|
+
"nude-6",
|
|
4965
|
+
"nude-7",
|
|
4966
|
+
"nude-8",
|
|
4967
|
+
"nude-9",
|
|
4968
|
+
"nude-10",
|
|
4969
|
+
"nude-11",
|
|
4970
|
+
"nude-12",
|
|
4971
|
+
"nude-13",
|
|
4972
|
+
"nude-14",
|
|
4973
|
+
"nude-15",
|
|
4974
|
+
"orange-0",
|
|
4975
|
+
"orange-1",
|
|
4976
|
+
"orange-2",
|
|
4977
|
+
"orange-3",
|
|
4978
|
+
"orange-4",
|
|
4979
|
+
"orange-5",
|
|
4980
|
+
"orange-6",
|
|
4981
|
+
"orange-7",
|
|
4982
|
+
"orange-8",
|
|
4983
|
+
"orange-9",
|
|
4984
|
+
"orange-10",
|
|
4985
|
+
"orange-11",
|
|
4986
|
+
"orange-12",
|
|
4987
|
+
"orange-13",
|
|
4988
|
+
"orange-14",
|
|
4989
|
+
"orange-15",
|
|
4990
|
+
"sunset-0",
|
|
4991
|
+
"sunset-1",
|
|
4992
|
+
"sunset-2",
|
|
4993
|
+
"sunset-3",
|
|
4994
|
+
"sunset-4",
|
|
4995
|
+
"sunset-5",
|
|
4996
|
+
"sunset-6",
|
|
4997
|
+
"sunset-7",
|
|
4998
|
+
"sunset-8",
|
|
4999
|
+
"sunset-9",
|
|
5000
|
+
"sunset-10",
|
|
5001
|
+
"sunset-11",
|
|
5002
|
+
"sunset-12",
|
|
5003
|
+
"sunset-13",
|
|
5004
|
+
"sunset-14",
|
|
5005
|
+
"sunset-15",
|
|
5006
|
+
"red-0",
|
|
5007
|
+
"red-1",
|
|
5008
|
+
"red-2",
|
|
5009
|
+
"red-3",
|
|
5010
|
+
"red-4",
|
|
5011
|
+
"red-5",
|
|
5012
|
+
"red-6",
|
|
5013
|
+
"red-7",
|
|
5014
|
+
"red-8",
|
|
5015
|
+
"red-9",
|
|
5016
|
+
"red-10",
|
|
5017
|
+
"red-11",
|
|
5018
|
+
"red-12",
|
|
5019
|
+
"red-13",
|
|
5020
|
+
"red-14",
|
|
5021
|
+
"red-15",
|
|
5022
|
+
"rose-0",
|
|
5023
|
+
"rose-1",
|
|
5024
|
+
"rose-2",
|
|
5025
|
+
"rose-3",
|
|
5026
|
+
"rose-4",
|
|
5027
|
+
"rose-5",
|
|
5028
|
+
"rose-6",
|
|
5029
|
+
"rose-7",
|
|
5030
|
+
"rose-8",
|
|
5031
|
+
"rose-9",
|
|
5032
|
+
"rose-10",
|
|
5033
|
+
"rose-11",
|
|
5034
|
+
"rose-12",
|
|
5035
|
+
"rose-13",
|
|
5036
|
+
"rose-14",
|
|
5037
|
+
"rose-15",
|
|
5038
|
+
"pink-0",
|
|
5039
|
+
"pink-1",
|
|
5040
|
+
"pink-2",
|
|
5041
|
+
"pink-3",
|
|
5042
|
+
"pink-4",
|
|
5043
|
+
"pink-5",
|
|
5044
|
+
"pink-6",
|
|
5045
|
+
"pink-7",
|
|
5046
|
+
"pink-8",
|
|
5047
|
+
"pink-9",
|
|
5048
|
+
"pink-10",
|
|
5049
|
+
"pink-11",
|
|
5050
|
+
"pink-12",
|
|
5051
|
+
"pink-13",
|
|
5052
|
+
"pink-14",
|
|
5053
|
+
"pink-15",
|
|
5054
|
+
"magenta-0",
|
|
5055
|
+
"magenta-1",
|
|
5056
|
+
"magenta-2",
|
|
5057
|
+
"magenta-3",
|
|
5058
|
+
"magenta-4",
|
|
5059
|
+
"magenta-5",
|
|
5060
|
+
"magenta-6",
|
|
5061
|
+
"magenta-7",
|
|
5062
|
+
"magenta-8",
|
|
5063
|
+
"magenta-9",
|
|
5064
|
+
"magenta-10",
|
|
5065
|
+
"magenta-11",
|
|
5066
|
+
"magenta-12",
|
|
5067
|
+
"magenta-13",
|
|
5068
|
+
"magenta-14",
|
|
5069
|
+
"magenta-15",
|
|
5070
|
+
"carbon-0",
|
|
5071
|
+
"carbon-1",
|
|
5072
|
+
"carbon-2",
|
|
5073
|
+
"carbon-3",
|
|
5074
|
+
"carbon-4",
|
|
5075
|
+
"carbon-5",
|
|
5076
|
+
"carbon-6",
|
|
5077
|
+
"carbon-7",
|
|
5078
|
+
"carbon-8",
|
|
5079
|
+
"carbon-9",
|
|
5080
|
+
"carbon-10",
|
|
5081
|
+
"carbon-11",
|
|
5082
|
+
"carbon-12",
|
|
5083
|
+
"carbon-13",
|
|
5084
|
+
"carbon-14",
|
|
5085
|
+
"carbon-15"
|
|
5086
|
+
],
|
|
5087
|
+
[
|
|
5088
|
+
"primary",
|
|
5089
|
+
"secondary",
|
|
5090
|
+
"accent",
|
|
5091
|
+
"brand",
|
|
5092
|
+
"alert",
|
|
5093
|
+
"positive",
|
|
5094
|
+
"warning",
|
|
5095
|
+
"info",
|
|
5096
|
+
"brand-secondary",
|
|
5097
|
+
"alert-secondary",
|
|
5098
|
+
"positive-secondary",
|
|
5099
|
+
"warning-secondary",
|
|
5100
|
+
"info-secondary"
|
|
5101
|
+
],
|
|
5102
|
+
[
|
|
5103
|
+
"always/white",
|
|
5104
|
+
"always/black",
|
|
5105
|
+
"always/transparent",
|
|
5106
|
+
"always/current",
|
|
5107
|
+
"always/brand",
|
|
5108
|
+
"always/accent"
|
|
5109
|
+
]
|
|
5110
|
+
]
|
|
5111
|
+
} }
|
|
5112
|
+
},
|
|
4753
5113
|
header: {
|
|
4754
5114
|
label: "header",
|
|
4755
5115
|
properties: {
|
|
@@ -5543,7 +5903,8 @@ const BottomSheetConfig = {
|
|
|
5543
5903
|
typeOfFixture: [
|
|
5544
5904
|
"spectrumColors",
|
|
5545
5905
|
"linePaletteColors",
|
|
5546
|
-
"alwaysPaletteAliases"
|
|
5906
|
+
"alwaysPaletteAliases",
|
|
5907
|
+
"elevationAliases"
|
|
5547
5908
|
],
|
|
5548
5909
|
values: [
|
|
5549
5910
|
[
|
|
@@ -5892,6 +6253,14 @@ const BottomSheetConfig = {
|
|
|
5892
6253
|
"always/current",
|
|
5893
6254
|
"always/brand",
|
|
5894
6255
|
"always/accent"
|
|
6256
|
+
],
|
|
6257
|
+
[
|
|
6258
|
+
"elevation-0",
|
|
6259
|
+
"elevation-1",
|
|
6260
|
+
"elevation-2",
|
|
6261
|
+
"elevation-3",
|
|
6262
|
+
"elevation-4",
|
|
6263
|
+
"elevation-5"
|
|
5895
6264
|
]
|
|
5896
6265
|
]
|
|
5897
6266
|
},
|
|
@@ -522,6 +522,20 @@ declare const BottomSheetConfig: {
|
|
|
522
522
|
readonly description: "Bottom sheet styling.";
|
|
523
523
|
readonly label: "Variant";
|
|
524
524
|
readonly layers: {
|
|
525
|
+
readonly handleIndicator: {
|
|
526
|
+
readonly label: "handle indicator";
|
|
527
|
+
readonly properties: {
|
|
528
|
+
readonly backgroundColor: {
|
|
529
|
+
readonly defaults: {
|
|
530
|
+
readonly default: "accent";
|
|
531
|
+
};
|
|
532
|
+
readonly label: "Handle indicator color";
|
|
533
|
+
readonly name: "backgroundColor";
|
|
534
|
+
readonly typeOfFixture: readonly ["spectrumColors", "backgroundPaletteColors", "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"], readonly ["always/white", "always/black", "always/transparent", "always/current", "always/brand", "always/accent"]];
|
|
536
|
+
};
|
|
537
|
+
};
|
|
538
|
+
};
|
|
525
539
|
readonly header: {
|
|
526
540
|
readonly label: "header";
|
|
527
541
|
readonly properties: {
|
|
@@ -563,8 +577,8 @@ declare const BottomSheetConfig: {
|
|
|
563
577
|
};
|
|
564
578
|
readonly label: "Border color";
|
|
565
579
|
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"]];
|
|
580
|
+
readonly typeOfFixture: readonly ["spectrumColors", "linePaletteColors", "alwaysPaletteAliases", "elevationAliases"];
|
|
581
|
+
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"], readonly ["elevation-0", "elevation-1", "elevation-2", "elevation-3", "elevation-4", "elevation-5"]];
|
|
568
582
|
};
|
|
569
583
|
readonly borderRadius: {
|
|
570
584
|
readonly defaults: {
|
|
@@ -522,6 +522,20 @@ declare const BottomSheetConfig: {
|
|
|
522
522
|
readonly description: "Bottom sheet styling.";
|
|
523
523
|
readonly label: "Variant";
|
|
524
524
|
readonly layers: {
|
|
525
|
+
readonly handleIndicator: {
|
|
526
|
+
readonly label: "handle indicator";
|
|
527
|
+
readonly properties: {
|
|
528
|
+
readonly backgroundColor: {
|
|
529
|
+
readonly defaults: {
|
|
530
|
+
readonly default: "accent";
|
|
531
|
+
};
|
|
532
|
+
readonly label: "Handle indicator color";
|
|
533
|
+
readonly name: "backgroundColor";
|
|
534
|
+
readonly typeOfFixture: readonly ["spectrumColors", "backgroundPaletteColors", "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"], readonly ["always/white", "always/black", "always/transparent", "always/current", "always/brand", "always/accent"]];
|
|
536
|
+
};
|
|
537
|
+
};
|
|
538
|
+
};
|
|
525
539
|
readonly header: {
|
|
526
540
|
readonly label: "header";
|
|
527
541
|
readonly properties: {
|
|
@@ -563,8 +577,8 @@ declare const BottomSheetConfig: {
|
|
|
563
577
|
};
|
|
564
578
|
readonly label: "Border color";
|
|
565
579
|
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"]];
|
|
580
|
+
readonly typeOfFixture: readonly ["spectrumColors", "linePaletteColors", "alwaysPaletteAliases", "elevationAliases"];
|
|
581
|
+
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"], readonly ["elevation-0", "elevation-1", "elevation-2", "elevation-3", "elevation-4", "elevation-5"]];
|
|
568
582
|
};
|
|
569
583
|
readonly borderRadius: {
|
|
570
584
|
readonly defaults: {
|