@sps-woodland/tokens 7.2.2 → 7.2.4
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/lib/css/tokens.css +8 -2
- package/lib/css/utils.css +1 -1
- package/lib/dictionary.d.ts +348 -33
- package/lib/font.css +21 -21
- package/lib/index.cjs.js +1 -1
- package/lib/index.es.js +9 -1
- package/lib/scss/tokens.scss +8 -2
- package/lib/scss/utils.scss +1 -1
- package/lib/tokens.d.ts +9 -1
- package/lib/vanilla-extract/sprinkleValues.d.ts +9 -1
- package/package.json +3 -1
- package/src/dictionary.ts +708 -52
- package/src/tokens.ts +9 -1
- package/src/vanilla-extract/sprinkleValues.ts +9 -1
package/src/dictionary.ts
CHANGED
|
@@ -3569,23 +3569,153 @@ export const dictionary = Object.freeze({
|
|
|
3569
3569
|
],
|
|
3570
3570
|
},
|
|
3571
3571
|
"box-shadow-color": {
|
|
3572
|
-
|
|
3573
|
-
|
|
3574
|
-
|
|
3575
|
-
|
|
3576
|
-
|
|
3577
|
-
|
|
3578
|
-
|
|
3579
|
-
|
|
3580
|
-
|
|
3581
|
-
|
|
3572
|
+
default: {
|
|
3573
|
+
value: "#e9e9ea",
|
|
3574
|
+
filePath: "./src/tokens/component/key-value-tag.json",
|
|
3575
|
+
isSource: true,
|
|
3576
|
+
original: { value: "{color.grey.light.value}" },
|
|
3577
|
+
name: "ComponentKeyValueTagValueSectionBoxShadowColorDefault",
|
|
3578
|
+
attributes: {
|
|
3579
|
+
category: "component",
|
|
3580
|
+
type: "key-value-tag",
|
|
3581
|
+
item: "value-section",
|
|
3582
|
+
subitem: "box-shadow-color",
|
|
3583
|
+
state: "default",
|
|
3584
|
+
},
|
|
3585
|
+
path: [
|
|
3586
|
+
"component",
|
|
3587
|
+
"key-value-tag",
|
|
3588
|
+
"value-section",
|
|
3589
|
+
"box-shadow-color",
|
|
3590
|
+
"default",
|
|
3591
|
+
],
|
|
3592
|
+
},
|
|
3593
|
+
key: {
|
|
3594
|
+
value: "#4b5356",
|
|
3595
|
+
filePath: "./src/tokens/component/key-value-tag.json",
|
|
3596
|
+
isSource: true,
|
|
3597
|
+
original: { value: "{color.grey.medium-dark.value}" },
|
|
3598
|
+
name: "ComponentKeyValueTagValueSectionBoxShadowColorKey",
|
|
3599
|
+
attributes: {
|
|
3600
|
+
category: "component",
|
|
3601
|
+
type: "key-value-tag",
|
|
3602
|
+
item: "value-section",
|
|
3603
|
+
subitem: "box-shadow-color",
|
|
3604
|
+
state: "key",
|
|
3605
|
+
},
|
|
3606
|
+
path: [
|
|
3607
|
+
"component",
|
|
3608
|
+
"key-value-tag",
|
|
3609
|
+
"value-section",
|
|
3610
|
+
"box-shadow-color",
|
|
3611
|
+
"key",
|
|
3612
|
+
],
|
|
3613
|
+
},
|
|
3614
|
+
warning: {
|
|
3615
|
+
value: "#e7760b",
|
|
3616
|
+
filePath: "./src/tokens/component/key-value-tag.json",
|
|
3617
|
+
isSource: true,
|
|
3618
|
+
original: { value: "{color.orange.medium.value}" },
|
|
3619
|
+
name: "ComponentKeyValueTagValueSectionBoxShadowColorWarning",
|
|
3620
|
+
attributes: {
|
|
3621
|
+
category: "component",
|
|
3622
|
+
type: "key-value-tag",
|
|
3623
|
+
item: "value-section",
|
|
3624
|
+
subitem: "box-shadow-color",
|
|
3625
|
+
state: "warning",
|
|
3626
|
+
},
|
|
3627
|
+
path: [
|
|
3628
|
+
"component",
|
|
3629
|
+
"key-value-tag",
|
|
3630
|
+
"value-section",
|
|
3631
|
+
"box-shadow-color",
|
|
3632
|
+
"warning",
|
|
3633
|
+
],
|
|
3634
|
+
},
|
|
3635
|
+
error: {
|
|
3636
|
+
value: "#de002e",
|
|
3637
|
+
filePath: "./src/tokens/component/key-value-tag.json",
|
|
3638
|
+
isSource: true,
|
|
3639
|
+
original: { value: "{color.red.medium.value}" },
|
|
3640
|
+
name: "ComponentKeyValueTagValueSectionBoxShadowColorError",
|
|
3641
|
+
attributes: {
|
|
3642
|
+
category: "component",
|
|
3643
|
+
type: "key-value-tag",
|
|
3644
|
+
item: "value-section",
|
|
3645
|
+
subitem: "box-shadow-color",
|
|
3646
|
+
state: "error",
|
|
3647
|
+
},
|
|
3648
|
+
path: [
|
|
3649
|
+
"component",
|
|
3650
|
+
"key-value-tag",
|
|
3651
|
+
"value-section",
|
|
3652
|
+
"box-shadow-color",
|
|
3653
|
+
"error",
|
|
3654
|
+
],
|
|
3655
|
+
},
|
|
3656
|
+
pending: {
|
|
3657
|
+
value: "#91467f",
|
|
3658
|
+
filePath: "./src/tokens/component/key-value-tag.json",
|
|
3659
|
+
isSource: true,
|
|
3660
|
+
original: { value: "{color.purple.medium.value}" },
|
|
3661
|
+
name: "ComponentKeyValueTagValueSectionBoxShadowColorPending",
|
|
3662
|
+
attributes: {
|
|
3663
|
+
category: "component",
|
|
3664
|
+
type: "key-value-tag",
|
|
3665
|
+
item: "value-section",
|
|
3666
|
+
subitem: "box-shadow-color",
|
|
3667
|
+
state: "pending",
|
|
3668
|
+
},
|
|
3669
|
+
path: [
|
|
3670
|
+
"component",
|
|
3671
|
+
"key-value-tag",
|
|
3672
|
+
"value-section",
|
|
3673
|
+
"box-shadow-color",
|
|
3674
|
+
"pending",
|
|
3675
|
+
],
|
|
3676
|
+
},
|
|
3677
|
+
success: {
|
|
3678
|
+
value: "#0b8940",
|
|
3679
|
+
filePath: "./src/tokens/component/key-value-tag.json",
|
|
3680
|
+
isSource: true,
|
|
3681
|
+
original: { value: "{color.green.medium.value}" },
|
|
3682
|
+
name: "ComponentKeyValueTagValueSectionBoxShadowColorSuccess",
|
|
3683
|
+
attributes: {
|
|
3684
|
+
category: "component",
|
|
3685
|
+
type: "key-value-tag",
|
|
3686
|
+
item: "value-section",
|
|
3687
|
+
subitem: "box-shadow-color",
|
|
3688
|
+
state: "success",
|
|
3689
|
+
},
|
|
3690
|
+
path: [
|
|
3691
|
+
"component",
|
|
3692
|
+
"key-value-tag",
|
|
3693
|
+
"value-section",
|
|
3694
|
+
"box-shadow-color",
|
|
3695
|
+
"success",
|
|
3696
|
+
],
|
|
3697
|
+
},
|
|
3698
|
+
info: {
|
|
3699
|
+
value: "#007db8",
|
|
3700
|
+
filePath: "./src/tokens/component/key-value-tag.json",
|
|
3701
|
+
isSource: true,
|
|
3702
|
+
original: { value: "{color.blue.medium.value}" },
|
|
3703
|
+
name: "ComponentKeyValueTagValueSectionBoxShadowColorInfo",
|
|
3704
|
+
attributes: {
|
|
3705
|
+
category: "component",
|
|
3706
|
+
type: "key-value-tag",
|
|
3707
|
+
item: "value-section",
|
|
3708
|
+
subitem: "box-shadow-color",
|
|
3709
|
+
state: "info",
|
|
3710
|
+
},
|
|
3711
|
+
path: [
|
|
3712
|
+
"component",
|
|
3713
|
+
"key-value-tag",
|
|
3714
|
+
"value-section",
|
|
3715
|
+
"box-shadow-color",
|
|
3716
|
+
"info",
|
|
3717
|
+
],
|
|
3582
3718
|
},
|
|
3583
|
-
path: [
|
|
3584
|
-
"component",
|
|
3585
|
-
"key-value-tag",
|
|
3586
|
-
"value-section",
|
|
3587
|
-
"box-shadow-color",
|
|
3588
|
-
],
|
|
3589
3719
|
},
|
|
3590
3720
|
"box-shadow-width": {
|
|
3591
3721
|
value: "0.0625rem",
|
|
@@ -12919,19 +13049,152 @@ export const dictionary = Object.freeze({
|
|
|
12919
13049
|
"border-right-radius",
|
|
12920
13050
|
],
|
|
12921
13051
|
},
|
|
13052
|
+
{
|
|
13053
|
+
value: "#e9e9ea",
|
|
13054
|
+
filePath: "./src/tokens/component/key-value-tag.json",
|
|
13055
|
+
isSource: true,
|
|
13056
|
+
original: { value: "{color.grey.light.value}" },
|
|
13057
|
+
name: "ComponentKeyValueTagValueSectionBoxShadowColorDefault",
|
|
13058
|
+
attributes: {
|
|
13059
|
+
category: "component",
|
|
13060
|
+
type: "key-value-tag",
|
|
13061
|
+
item: "value-section",
|
|
13062
|
+
subitem: "box-shadow-color",
|
|
13063
|
+
state: "default",
|
|
13064
|
+
},
|
|
13065
|
+
path: [
|
|
13066
|
+
"component",
|
|
13067
|
+
"key-value-tag",
|
|
13068
|
+
"value-section",
|
|
13069
|
+
"box-shadow-color",
|
|
13070
|
+
"default",
|
|
13071
|
+
],
|
|
13072
|
+
},
|
|
12922
13073
|
{
|
|
12923
13074
|
value: "#4b5356",
|
|
12924
13075
|
filePath: "./src/tokens/component/key-value-tag.json",
|
|
12925
13076
|
isSource: true,
|
|
12926
13077
|
original: { value: "{color.grey.medium-dark.value}" },
|
|
12927
|
-
name: "
|
|
13078
|
+
name: "ComponentKeyValueTagValueSectionBoxShadowColorKey",
|
|
13079
|
+
attributes: {
|
|
13080
|
+
category: "component",
|
|
13081
|
+
type: "key-value-tag",
|
|
13082
|
+
item: "value-section",
|
|
13083
|
+
subitem: "box-shadow-color",
|
|
13084
|
+
state: "key",
|
|
13085
|
+
},
|
|
13086
|
+
path: [
|
|
13087
|
+
"component",
|
|
13088
|
+
"key-value-tag",
|
|
13089
|
+
"value-section",
|
|
13090
|
+
"box-shadow-color",
|
|
13091
|
+
"key",
|
|
13092
|
+
],
|
|
13093
|
+
},
|
|
13094
|
+
{
|
|
13095
|
+
value: "#e7760b",
|
|
13096
|
+
filePath: "./src/tokens/component/key-value-tag.json",
|
|
13097
|
+
isSource: true,
|
|
13098
|
+
original: { value: "{color.orange.medium.value}" },
|
|
13099
|
+
name: "ComponentKeyValueTagValueSectionBoxShadowColorWarning",
|
|
12928
13100
|
attributes: {
|
|
12929
13101
|
category: "component",
|
|
12930
13102
|
type: "key-value-tag",
|
|
12931
13103
|
item: "value-section",
|
|
12932
13104
|
subitem: "box-shadow-color",
|
|
13105
|
+
state: "warning",
|
|
12933
13106
|
},
|
|
12934
|
-
path: [
|
|
13107
|
+
path: [
|
|
13108
|
+
"component",
|
|
13109
|
+
"key-value-tag",
|
|
13110
|
+
"value-section",
|
|
13111
|
+
"box-shadow-color",
|
|
13112
|
+
"warning",
|
|
13113
|
+
],
|
|
13114
|
+
},
|
|
13115
|
+
{
|
|
13116
|
+
value: "#de002e",
|
|
13117
|
+
filePath: "./src/tokens/component/key-value-tag.json",
|
|
13118
|
+
isSource: true,
|
|
13119
|
+
original: { value: "{color.red.medium.value}" },
|
|
13120
|
+
name: "ComponentKeyValueTagValueSectionBoxShadowColorError",
|
|
13121
|
+
attributes: {
|
|
13122
|
+
category: "component",
|
|
13123
|
+
type: "key-value-tag",
|
|
13124
|
+
item: "value-section",
|
|
13125
|
+
subitem: "box-shadow-color",
|
|
13126
|
+
state: "error",
|
|
13127
|
+
},
|
|
13128
|
+
path: [
|
|
13129
|
+
"component",
|
|
13130
|
+
"key-value-tag",
|
|
13131
|
+
"value-section",
|
|
13132
|
+
"box-shadow-color",
|
|
13133
|
+
"error",
|
|
13134
|
+
],
|
|
13135
|
+
},
|
|
13136
|
+
{
|
|
13137
|
+
value: "#91467f",
|
|
13138
|
+
filePath: "./src/tokens/component/key-value-tag.json",
|
|
13139
|
+
isSource: true,
|
|
13140
|
+
original: { value: "{color.purple.medium.value}" },
|
|
13141
|
+
name: "ComponentKeyValueTagValueSectionBoxShadowColorPending",
|
|
13142
|
+
attributes: {
|
|
13143
|
+
category: "component",
|
|
13144
|
+
type: "key-value-tag",
|
|
13145
|
+
item: "value-section",
|
|
13146
|
+
subitem: "box-shadow-color",
|
|
13147
|
+
state: "pending",
|
|
13148
|
+
},
|
|
13149
|
+
path: [
|
|
13150
|
+
"component",
|
|
13151
|
+
"key-value-tag",
|
|
13152
|
+
"value-section",
|
|
13153
|
+
"box-shadow-color",
|
|
13154
|
+
"pending",
|
|
13155
|
+
],
|
|
13156
|
+
},
|
|
13157
|
+
{
|
|
13158
|
+
value: "#0b8940",
|
|
13159
|
+
filePath: "./src/tokens/component/key-value-tag.json",
|
|
13160
|
+
isSource: true,
|
|
13161
|
+
original: { value: "{color.green.medium.value}" },
|
|
13162
|
+
name: "ComponentKeyValueTagValueSectionBoxShadowColorSuccess",
|
|
13163
|
+
attributes: {
|
|
13164
|
+
category: "component",
|
|
13165
|
+
type: "key-value-tag",
|
|
13166
|
+
item: "value-section",
|
|
13167
|
+
subitem: "box-shadow-color",
|
|
13168
|
+
state: "success",
|
|
13169
|
+
},
|
|
13170
|
+
path: [
|
|
13171
|
+
"component",
|
|
13172
|
+
"key-value-tag",
|
|
13173
|
+
"value-section",
|
|
13174
|
+
"box-shadow-color",
|
|
13175
|
+
"success",
|
|
13176
|
+
],
|
|
13177
|
+
},
|
|
13178
|
+
{
|
|
13179
|
+
value: "#007db8",
|
|
13180
|
+
filePath: "./src/tokens/component/key-value-tag.json",
|
|
13181
|
+
isSource: true,
|
|
13182
|
+
original: { value: "{color.blue.medium.value}" },
|
|
13183
|
+
name: "ComponentKeyValueTagValueSectionBoxShadowColorInfo",
|
|
13184
|
+
attributes: {
|
|
13185
|
+
category: "component",
|
|
13186
|
+
type: "key-value-tag",
|
|
13187
|
+
item: "value-section",
|
|
13188
|
+
subitem: "box-shadow-color",
|
|
13189
|
+
state: "info",
|
|
13190
|
+
},
|
|
13191
|
+
path: [
|
|
13192
|
+
"component",
|
|
13193
|
+
"key-value-tag",
|
|
13194
|
+
"value-section",
|
|
13195
|
+
"box-shadow-color",
|
|
13196
|
+
"info",
|
|
13197
|
+
],
|
|
12935
13198
|
},
|
|
12936
13199
|
{
|
|
12937
13200
|
value: "0.0625rem",
|
|
@@ -21701,23 +21964,153 @@ export const dictionary = Object.freeze({
|
|
|
21701
21964
|
],
|
|
21702
21965
|
},
|
|
21703
21966
|
"box-shadow-color": {
|
|
21704
|
-
|
|
21705
|
-
|
|
21706
|
-
|
|
21707
|
-
|
|
21708
|
-
|
|
21709
|
-
|
|
21710
|
-
|
|
21711
|
-
|
|
21712
|
-
|
|
21713
|
-
|
|
21967
|
+
default: {
|
|
21968
|
+
value: "#e9e9ea",
|
|
21969
|
+
filePath: "./src/tokens/component/key-value-tag.json",
|
|
21970
|
+
isSource: true,
|
|
21971
|
+
original: { value: "{color.grey.light.value}" },
|
|
21972
|
+
name: "ComponentKeyValueTagValueSectionBoxShadowColorDefault",
|
|
21973
|
+
attributes: {
|
|
21974
|
+
category: "component",
|
|
21975
|
+
type: "key-value-tag",
|
|
21976
|
+
item: "value-section",
|
|
21977
|
+
subitem: "box-shadow-color",
|
|
21978
|
+
state: "default",
|
|
21979
|
+
},
|
|
21980
|
+
path: [
|
|
21981
|
+
"component",
|
|
21982
|
+
"key-value-tag",
|
|
21983
|
+
"value-section",
|
|
21984
|
+
"box-shadow-color",
|
|
21985
|
+
"default",
|
|
21986
|
+
],
|
|
21987
|
+
},
|
|
21988
|
+
key: {
|
|
21989
|
+
value: "#4b5356",
|
|
21990
|
+
filePath: "./src/tokens/component/key-value-tag.json",
|
|
21991
|
+
isSource: true,
|
|
21992
|
+
original: { value: "{color.grey.medium-dark.value}" },
|
|
21993
|
+
name: "ComponentKeyValueTagValueSectionBoxShadowColorKey",
|
|
21994
|
+
attributes: {
|
|
21995
|
+
category: "component",
|
|
21996
|
+
type: "key-value-tag",
|
|
21997
|
+
item: "value-section",
|
|
21998
|
+
subitem: "box-shadow-color",
|
|
21999
|
+
state: "key",
|
|
22000
|
+
},
|
|
22001
|
+
path: [
|
|
22002
|
+
"component",
|
|
22003
|
+
"key-value-tag",
|
|
22004
|
+
"value-section",
|
|
22005
|
+
"box-shadow-color",
|
|
22006
|
+
"key",
|
|
22007
|
+
],
|
|
22008
|
+
},
|
|
22009
|
+
warning: {
|
|
22010
|
+
value: "#e7760b",
|
|
22011
|
+
filePath: "./src/tokens/component/key-value-tag.json",
|
|
22012
|
+
isSource: true,
|
|
22013
|
+
original: { value: "{color.orange.medium.value}" },
|
|
22014
|
+
name: "ComponentKeyValueTagValueSectionBoxShadowColorWarning",
|
|
22015
|
+
attributes: {
|
|
22016
|
+
category: "component",
|
|
22017
|
+
type: "key-value-tag",
|
|
22018
|
+
item: "value-section",
|
|
22019
|
+
subitem: "box-shadow-color",
|
|
22020
|
+
state: "warning",
|
|
22021
|
+
},
|
|
22022
|
+
path: [
|
|
22023
|
+
"component",
|
|
22024
|
+
"key-value-tag",
|
|
22025
|
+
"value-section",
|
|
22026
|
+
"box-shadow-color",
|
|
22027
|
+
"warning",
|
|
22028
|
+
],
|
|
22029
|
+
},
|
|
22030
|
+
error: {
|
|
22031
|
+
value: "#de002e",
|
|
22032
|
+
filePath: "./src/tokens/component/key-value-tag.json",
|
|
22033
|
+
isSource: true,
|
|
22034
|
+
original: { value: "{color.red.medium.value}" },
|
|
22035
|
+
name: "ComponentKeyValueTagValueSectionBoxShadowColorError",
|
|
22036
|
+
attributes: {
|
|
22037
|
+
category: "component",
|
|
22038
|
+
type: "key-value-tag",
|
|
22039
|
+
item: "value-section",
|
|
22040
|
+
subitem: "box-shadow-color",
|
|
22041
|
+
state: "error",
|
|
22042
|
+
},
|
|
22043
|
+
path: [
|
|
22044
|
+
"component",
|
|
22045
|
+
"key-value-tag",
|
|
22046
|
+
"value-section",
|
|
22047
|
+
"box-shadow-color",
|
|
22048
|
+
"error",
|
|
22049
|
+
],
|
|
22050
|
+
},
|
|
22051
|
+
pending: {
|
|
22052
|
+
value: "#91467f",
|
|
22053
|
+
filePath: "./src/tokens/component/key-value-tag.json",
|
|
22054
|
+
isSource: true,
|
|
22055
|
+
original: { value: "{color.purple.medium.value}" },
|
|
22056
|
+
name: "ComponentKeyValueTagValueSectionBoxShadowColorPending",
|
|
22057
|
+
attributes: {
|
|
22058
|
+
category: "component",
|
|
22059
|
+
type: "key-value-tag",
|
|
22060
|
+
item: "value-section",
|
|
22061
|
+
subitem: "box-shadow-color",
|
|
22062
|
+
state: "pending",
|
|
22063
|
+
},
|
|
22064
|
+
path: [
|
|
22065
|
+
"component",
|
|
22066
|
+
"key-value-tag",
|
|
22067
|
+
"value-section",
|
|
22068
|
+
"box-shadow-color",
|
|
22069
|
+
"pending",
|
|
22070
|
+
],
|
|
22071
|
+
},
|
|
22072
|
+
success: {
|
|
22073
|
+
value: "#0b8940",
|
|
22074
|
+
filePath: "./src/tokens/component/key-value-tag.json",
|
|
22075
|
+
isSource: true,
|
|
22076
|
+
original: { value: "{color.green.medium.value}" },
|
|
22077
|
+
name: "ComponentKeyValueTagValueSectionBoxShadowColorSuccess",
|
|
22078
|
+
attributes: {
|
|
22079
|
+
category: "component",
|
|
22080
|
+
type: "key-value-tag",
|
|
22081
|
+
item: "value-section",
|
|
22082
|
+
subitem: "box-shadow-color",
|
|
22083
|
+
state: "success",
|
|
22084
|
+
},
|
|
22085
|
+
path: [
|
|
22086
|
+
"component",
|
|
22087
|
+
"key-value-tag",
|
|
22088
|
+
"value-section",
|
|
22089
|
+
"box-shadow-color",
|
|
22090
|
+
"success",
|
|
22091
|
+
],
|
|
22092
|
+
},
|
|
22093
|
+
info: {
|
|
22094
|
+
value: "#007db8",
|
|
22095
|
+
filePath: "./src/tokens/component/key-value-tag.json",
|
|
22096
|
+
isSource: true,
|
|
22097
|
+
original: { value: "{color.blue.medium.value}" },
|
|
22098
|
+
name: "ComponentKeyValueTagValueSectionBoxShadowColorInfo",
|
|
22099
|
+
attributes: {
|
|
22100
|
+
category: "component",
|
|
22101
|
+
type: "key-value-tag",
|
|
22102
|
+
item: "value-section",
|
|
22103
|
+
subitem: "box-shadow-color",
|
|
22104
|
+
state: "info",
|
|
22105
|
+
},
|
|
22106
|
+
path: [
|
|
22107
|
+
"component",
|
|
22108
|
+
"key-value-tag",
|
|
22109
|
+
"value-section",
|
|
22110
|
+
"box-shadow-color",
|
|
22111
|
+
"info",
|
|
22112
|
+
],
|
|
21714
22113
|
},
|
|
21715
|
-
path: [
|
|
21716
|
-
"component",
|
|
21717
|
-
"key-value-tag",
|
|
21718
|
-
"value-section",
|
|
21719
|
-
"box-shadow-color",
|
|
21720
|
-
],
|
|
21721
22114
|
},
|
|
21722
22115
|
"box-shadow-width": {
|
|
21723
22116
|
value: "0.0625rem",
|
|
@@ -31051,19 +31444,152 @@ export const dictionary = Object.freeze({
|
|
|
31051
31444
|
"border-right-radius",
|
|
31052
31445
|
],
|
|
31053
31446
|
},
|
|
31447
|
+
{
|
|
31448
|
+
value: "#e9e9ea",
|
|
31449
|
+
filePath: "./src/tokens/component/key-value-tag.json",
|
|
31450
|
+
isSource: true,
|
|
31451
|
+
original: { value: "{color.grey.light.value}" },
|
|
31452
|
+
name: "ComponentKeyValueTagValueSectionBoxShadowColorDefault",
|
|
31453
|
+
attributes: {
|
|
31454
|
+
category: "component",
|
|
31455
|
+
type: "key-value-tag",
|
|
31456
|
+
item: "value-section",
|
|
31457
|
+
subitem: "box-shadow-color",
|
|
31458
|
+
state: "default",
|
|
31459
|
+
},
|
|
31460
|
+
path: [
|
|
31461
|
+
"component",
|
|
31462
|
+
"key-value-tag",
|
|
31463
|
+
"value-section",
|
|
31464
|
+
"box-shadow-color",
|
|
31465
|
+
"default",
|
|
31466
|
+
],
|
|
31467
|
+
},
|
|
31054
31468
|
{
|
|
31055
31469
|
value: "#4b5356",
|
|
31056
31470
|
filePath: "./src/tokens/component/key-value-tag.json",
|
|
31057
31471
|
isSource: true,
|
|
31058
31472
|
original: { value: "{color.grey.medium-dark.value}" },
|
|
31059
|
-
name: "
|
|
31473
|
+
name: "ComponentKeyValueTagValueSectionBoxShadowColorKey",
|
|
31474
|
+
attributes: {
|
|
31475
|
+
category: "component",
|
|
31476
|
+
type: "key-value-tag",
|
|
31477
|
+
item: "value-section",
|
|
31478
|
+
subitem: "box-shadow-color",
|
|
31479
|
+
state: "key",
|
|
31480
|
+
},
|
|
31481
|
+
path: [
|
|
31482
|
+
"component",
|
|
31483
|
+
"key-value-tag",
|
|
31484
|
+
"value-section",
|
|
31485
|
+
"box-shadow-color",
|
|
31486
|
+
"key",
|
|
31487
|
+
],
|
|
31488
|
+
},
|
|
31489
|
+
{
|
|
31490
|
+
value: "#e7760b",
|
|
31491
|
+
filePath: "./src/tokens/component/key-value-tag.json",
|
|
31492
|
+
isSource: true,
|
|
31493
|
+
original: { value: "{color.orange.medium.value}" },
|
|
31494
|
+
name: "ComponentKeyValueTagValueSectionBoxShadowColorWarning",
|
|
31495
|
+
attributes: {
|
|
31496
|
+
category: "component",
|
|
31497
|
+
type: "key-value-tag",
|
|
31498
|
+
item: "value-section",
|
|
31499
|
+
subitem: "box-shadow-color",
|
|
31500
|
+
state: "warning",
|
|
31501
|
+
},
|
|
31502
|
+
path: [
|
|
31503
|
+
"component",
|
|
31504
|
+
"key-value-tag",
|
|
31505
|
+
"value-section",
|
|
31506
|
+
"box-shadow-color",
|
|
31507
|
+
"warning",
|
|
31508
|
+
],
|
|
31509
|
+
},
|
|
31510
|
+
{
|
|
31511
|
+
value: "#de002e",
|
|
31512
|
+
filePath: "./src/tokens/component/key-value-tag.json",
|
|
31513
|
+
isSource: true,
|
|
31514
|
+
original: { value: "{color.red.medium.value}" },
|
|
31515
|
+
name: "ComponentKeyValueTagValueSectionBoxShadowColorError",
|
|
31516
|
+
attributes: {
|
|
31517
|
+
category: "component",
|
|
31518
|
+
type: "key-value-tag",
|
|
31519
|
+
item: "value-section",
|
|
31520
|
+
subitem: "box-shadow-color",
|
|
31521
|
+
state: "error",
|
|
31522
|
+
},
|
|
31523
|
+
path: [
|
|
31524
|
+
"component",
|
|
31525
|
+
"key-value-tag",
|
|
31526
|
+
"value-section",
|
|
31527
|
+
"box-shadow-color",
|
|
31528
|
+
"error",
|
|
31529
|
+
],
|
|
31530
|
+
},
|
|
31531
|
+
{
|
|
31532
|
+
value: "#91467f",
|
|
31533
|
+
filePath: "./src/tokens/component/key-value-tag.json",
|
|
31534
|
+
isSource: true,
|
|
31535
|
+
original: { value: "{color.purple.medium.value}" },
|
|
31536
|
+
name: "ComponentKeyValueTagValueSectionBoxShadowColorPending",
|
|
31537
|
+
attributes: {
|
|
31538
|
+
category: "component",
|
|
31539
|
+
type: "key-value-tag",
|
|
31540
|
+
item: "value-section",
|
|
31541
|
+
subitem: "box-shadow-color",
|
|
31542
|
+
state: "pending",
|
|
31543
|
+
},
|
|
31544
|
+
path: [
|
|
31545
|
+
"component",
|
|
31546
|
+
"key-value-tag",
|
|
31547
|
+
"value-section",
|
|
31548
|
+
"box-shadow-color",
|
|
31549
|
+
"pending",
|
|
31550
|
+
],
|
|
31551
|
+
},
|
|
31552
|
+
{
|
|
31553
|
+
value: "#0b8940",
|
|
31554
|
+
filePath: "./src/tokens/component/key-value-tag.json",
|
|
31555
|
+
isSource: true,
|
|
31556
|
+
original: { value: "{color.green.medium.value}" },
|
|
31557
|
+
name: "ComponentKeyValueTagValueSectionBoxShadowColorSuccess",
|
|
31060
31558
|
attributes: {
|
|
31061
31559
|
category: "component",
|
|
31062
31560
|
type: "key-value-tag",
|
|
31063
31561
|
item: "value-section",
|
|
31064
31562
|
subitem: "box-shadow-color",
|
|
31563
|
+
state: "success",
|
|
31065
31564
|
},
|
|
31066
|
-
path: [
|
|
31565
|
+
path: [
|
|
31566
|
+
"component",
|
|
31567
|
+
"key-value-tag",
|
|
31568
|
+
"value-section",
|
|
31569
|
+
"box-shadow-color",
|
|
31570
|
+
"success",
|
|
31571
|
+
],
|
|
31572
|
+
},
|
|
31573
|
+
{
|
|
31574
|
+
value: "#007db8",
|
|
31575
|
+
filePath: "./src/tokens/component/key-value-tag.json",
|
|
31576
|
+
isSource: true,
|
|
31577
|
+
original: { value: "{color.blue.medium.value}" },
|
|
31578
|
+
name: "ComponentKeyValueTagValueSectionBoxShadowColorInfo",
|
|
31579
|
+
attributes: {
|
|
31580
|
+
category: "component",
|
|
31581
|
+
type: "key-value-tag",
|
|
31582
|
+
item: "value-section",
|
|
31583
|
+
subitem: "box-shadow-color",
|
|
31584
|
+
state: "info",
|
|
31585
|
+
},
|
|
31586
|
+
path: [
|
|
31587
|
+
"component",
|
|
31588
|
+
"key-value-tag",
|
|
31589
|
+
"value-section",
|
|
31590
|
+
"box-shadow-color",
|
|
31591
|
+
"info",
|
|
31592
|
+
],
|
|
31067
31593
|
},
|
|
31068
31594
|
{
|
|
31069
31595
|
value: "0.0625rem",
|
|
@@ -39833,23 +40359,153 @@ export const dictionary = Object.freeze({
|
|
|
39833
40359
|
],
|
|
39834
40360
|
},
|
|
39835
40361
|
"box-shadow-color": {
|
|
39836
|
-
|
|
39837
|
-
|
|
39838
|
-
|
|
39839
|
-
|
|
39840
|
-
|
|
39841
|
-
|
|
39842
|
-
|
|
39843
|
-
|
|
39844
|
-
|
|
39845
|
-
|
|
40362
|
+
default: {
|
|
40363
|
+
value: "#e9e9ea",
|
|
40364
|
+
filePath: "./src/tokens/component/key-value-tag.json",
|
|
40365
|
+
isSource: true,
|
|
40366
|
+
original: { value: "{color.grey.light.value}" },
|
|
40367
|
+
name: "ComponentKeyValueTagValueSectionBoxShadowColorDefault",
|
|
40368
|
+
attributes: {
|
|
40369
|
+
category: "component",
|
|
40370
|
+
type: "key-value-tag",
|
|
40371
|
+
item: "value-section",
|
|
40372
|
+
subitem: "box-shadow-color",
|
|
40373
|
+
state: "default",
|
|
40374
|
+
},
|
|
40375
|
+
path: [
|
|
40376
|
+
"component",
|
|
40377
|
+
"key-value-tag",
|
|
40378
|
+
"value-section",
|
|
40379
|
+
"box-shadow-color",
|
|
40380
|
+
"default",
|
|
40381
|
+
],
|
|
40382
|
+
},
|
|
40383
|
+
key: {
|
|
40384
|
+
value: "#4b5356",
|
|
40385
|
+
filePath: "./src/tokens/component/key-value-tag.json",
|
|
40386
|
+
isSource: true,
|
|
40387
|
+
original: { value: "{color.grey.medium-dark.value}" },
|
|
40388
|
+
name: "ComponentKeyValueTagValueSectionBoxShadowColorKey",
|
|
40389
|
+
attributes: {
|
|
40390
|
+
category: "component",
|
|
40391
|
+
type: "key-value-tag",
|
|
40392
|
+
item: "value-section",
|
|
40393
|
+
subitem: "box-shadow-color",
|
|
40394
|
+
state: "key",
|
|
40395
|
+
},
|
|
40396
|
+
path: [
|
|
40397
|
+
"component",
|
|
40398
|
+
"key-value-tag",
|
|
40399
|
+
"value-section",
|
|
40400
|
+
"box-shadow-color",
|
|
40401
|
+
"key",
|
|
40402
|
+
],
|
|
40403
|
+
},
|
|
40404
|
+
warning: {
|
|
40405
|
+
value: "#e7760b",
|
|
40406
|
+
filePath: "./src/tokens/component/key-value-tag.json",
|
|
40407
|
+
isSource: true,
|
|
40408
|
+
original: { value: "{color.orange.medium.value}" },
|
|
40409
|
+
name: "ComponentKeyValueTagValueSectionBoxShadowColorWarning",
|
|
40410
|
+
attributes: {
|
|
40411
|
+
category: "component",
|
|
40412
|
+
type: "key-value-tag",
|
|
40413
|
+
item: "value-section",
|
|
40414
|
+
subitem: "box-shadow-color",
|
|
40415
|
+
state: "warning",
|
|
40416
|
+
},
|
|
40417
|
+
path: [
|
|
40418
|
+
"component",
|
|
40419
|
+
"key-value-tag",
|
|
40420
|
+
"value-section",
|
|
40421
|
+
"box-shadow-color",
|
|
40422
|
+
"warning",
|
|
40423
|
+
],
|
|
40424
|
+
},
|
|
40425
|
+
error: {
|
|
40426
|
+
value: "#de002e",
|
|
40427
|
+
filePath: "./src/tokens/component/key-value-tag.json",
|
|
40428
|
+
isSource: true,
|
|
40429
|
+
original: { value: "{color.red.medium.value}" },
|
|
40430
|
+
name: "ComponentKeyValueTagValueSectionBoxShadowColorError",
|
|
40431
|
+
attributes: {
|
|
40432
|
+
category: "component",
|
|
40433
|
+
type: "key-value-tag",
|
|
40434
|
+
item: "value-section",
|
|
40435
|
+
subitem: "box-shadow-color",
|
|
40436
|
+
state: "error",
|
|
40437
|
+
},
|
|
40438
|
+
path: [
|
|
40439
|
+
"component",
|
|
40440
|
+
"key-value-tag",
|
|
40441
|
+
"value-section",
|
|
40442
|
+
"box-shadow-color",
|
|
40443
|
+
"error",
|
|
40444
|
+
],
|
|
40445
|
+
},
|
|
40446
|
+
pending: {
|
|
40447
|
+
value: "#91467f",
|
|
40448
|
+
filePath: "./src/tokens/component/key-value-tag.json",
|
|
40449
|
+
isSource: true,
|
|
40450
|
+
original: { value: "{color.purple.medium.value}" },
|
|
40451
|
+
name: "ComponentKeyValueTagValueSectionBoxShadowColorPending",
|
|
40452
|
+
attributes: {
|
|
40453
|
+
category: "component",
|
|
40454
|
+
type: "key-value-tag",
|
|
40455
|
+
item: "value-section",
|
|
40456
|
+
subitem: "box-shadow-color",
|
|
40457
|
+
state: "pending",
|
|
40458
|
+
},
|
|
40459
|
+
path: [
|
|
40460
|
+
"component",
|
|
40461
|
+
"key-value-tag",
|
|
40462
|
+
"value-section",
|
|
40463
|
+
"box-shadow-color",
|
|
40464
|
+
"pending",
|
|
40465
|
+
],
|
|
40466
|
+
},
|
|
40467
|
+
success: {
|
|
40468
|
+
value: "#0b8940",
|
|
40469
|
+
filePath: "./src/tokens/component/key-value-tag.json",
|
|
40470
|
+
isSource: true,
|
|
40471
|
+
original: { value: "{color.green.medium.value}" },
|
|
40472
|
+
name: "ComponentKeyValueTagValueSectionBoxShadowColorSuccess",
|
|
40473
|
+
attributes: {
|
|
40474
|
+
category: "component",
|
|
40475
|
+
type: "key-value-tag",
|
|
40476
|
+
item: "value-section",
|
|
40477
|
+
subitem: "box-shadow-color",
|
|
40478
|
+
state: "success",
|
|
40479
|
+
},
|
|
40480
|
+
path: [
|
|
40481
|
+
"component",
|
|
40482
|
+
"key-value-tag",
|
|
40483
|
+
"value-section",
|
|
40484
|
+
"box-shadow-color",
|
|
40485
|
+
"success",
|
|
40486
|
+
],
|
|
40487
|
+
},
|
|
40488
|
+
info: {
|
|
40489
|
+
value: "#007db8",
|
|
40490
|
+
filePath: "./src/tokens/component/key-value-tag.json",
|
|
40491
|
+
isSource: true,
|
|
40492
|
+
original: { value: "{color.blue.medium.value}" },
|
|
40493
|
+
name: "ComponentKeyValueTagValueSectionBoxShadowColorInfo",
|
|
40494
|
+
attributes: {
|
|
40495
|
+
category: "component",
|
|
40496
|
+
type: "key-value-tag",
|
|
40497
|
+
item: "value-section",
|
|
40498
|
+
subitem: "box-shadow-color",
|
|
40499
|
+
state: "info",
|
|
40500
|
+
},
|
|
40501
|
+
path: [
|
|
40502
|
+
"component",
|
|
40503
|
+
"key-value-tag",
|
|
40504
|
+
"value-section",
|
|
40505
|
+
"box-shadow-color",
|
|
40506
|
+
"info",
|
|
40507
|
+
],
|
|
39846
40508
|
},
|
|
39847
|
-
path: [
|
|
39848
|
-
"component",
|
|
39849
|
-
"key-value-tag",
|
|
39850
|
-
"value-section",
|
|
39851
|
-
"box-shadow-color",
|
|
39852
|
-
],
|
|
39853
40509
|
},
|
|
39854
40510
|
"box-shadow-width": {
|
|
39855
40511
|
value: "0.0625rem",
|