@esri/calcite-design-tokens 1.0.0 → 1.1.0-next.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (111) hide show
  1. package/.eslintrc.cjs +85 -0
  2. package/.turbo/turbo-build.log +64 -0
  3. package/.turbo/turbo-test.log +14 -0
  4. package/CHANGELOG.md +17 -4
  5. package/CONTRIBUTING.md +41 -0
  6. package/LICENSE.md +13 -0
  7. package/README.md +9 -11
  8. package/dist/css/brand-light.css +1 -1
  9. package/dist/css/calcite-dark.css +1 -1
  10. package/dist/css/calcite-headless.css +2 -1
  11. package/dist/css/calcite-light.css +1 -1
  12. package/dist/scss/brand-light.scss +1 -1
  13. package/dist/scss/calcite-dark.scss +1 -1
  14. package/dist/scss/calcite-headless.scss +3 -1
  15. package/dist/scss/calcite-light.scss +1 -1
  16. package/jest.config.json +16 -0
  17. package/package.json +11 -72
  18. package/src/$metadata.json +76 -0
  19. package/src/$themes.json +2360 -0
  20. package/src/brand/dark.json +1 -0
  21. package/src/brand/global.json +1 -0
  22. package/src/brand/light.json +20 -0
  23. package/src/calcite/dark.json +2488 -0
  24. package/src/calcite/light.json +2508 -0
  25. package/src/component/accordion-item.json +172 -0
  26. package/src/component/accordion.json +192 -0
  27. package/src/component/action-bar-grid.json +66 -0
  28. package/src/component/action-bar.json +66 -0
  29. package/src/component/action-pad-grid.json +80 -0
  30. package/src/component/action-pad.json +80 -0
  31. package/src/component/action.json +156 -0
  32. package/src/component/alert.json +258 -0
  33. package/src/component/avatar.json +140 -0
  34. package/src/component/block-section.json +124 -0
  35. package/src/component/block.json +198 -0
  36. package/src/component/button.json +650 -0
  37. package/src/component/card.json +116 -0
  38. package/src/component/checkbox.json +110 -0
  39. package/src/component/chip.json +382 -0
  40. package/src/component/color-picker.json +148 -0
  41. package/src/component/combobox.json +152 -0
  42. package/src/component/date-picker.json +354 -0
  43. package/src/component/dropdown-item.json +384 -0
  44. package/src/component/dropdown.json +58 -0
  45. package/src/component/fab.json +490 -0
  46. package/src/component/filter.json +174 -0
  47. package/src/component/input-date-picker.json +224 -0
  48. package/src/component/input-datetime-local.json +230 -0
  49. package/src/component/input-email.json +244 -0
  50. package/src/component/input-file.json +244 -0
  51. package/src/component/input-message.json +72 -0
  52. package/src/component/input-month.json +244 -0
  53. package/src/component/input-number.json +244 -0
  54. package/src/component/input-password.json +244 -0
  55. package/src/component/input-search.json +244 -0
  56. package/src/component/input-telephone.json +244 -0
  57. package/src/component/input-text.json +244 -0
  58. package/src/component/input-time.json +1 -0
  59. package/src/component/input-week.json +244 -0
  60. package/src/component/label.json +26 -0
  61. package/src/component/link.json +44 -0
  62. package/src/component/loader.json +130 -0
  63. package/src/component/modal.json +278 -0
  64. package/src/component/notice.json +280 -0
  65. package/src/component/pagination.json +152 -0
  66. package/src/component/panel-header.json +88 -0
  67. package/src/component/popover.json +170 -0
  68. package/src/component/radio.json +124 -0
  69. package/src/component/rating.json +243 -0
  70. package/src/component/scrim.json +18 -0
  71. package/src/component/segmented-control.json +154 -0
  72. package/src/component/slider-histogram-range.json +284 -0
  73. package/src/component/slider-histogram.json +280 -0
  74. package/src/component/slider-range.json +226 -0
  75. package/src/component/slider.json +226 -0
  76. package/src/component/split-button.json +830 -0
  77. package/src/component/stepper-item.json +372 -0
  78. package/src/component/stepper.json +152 -0
  79. package/src/component/switch.json +178 -0
  80. package/src/component/tab-title.json +228 -0
  81. package/src/component/tabs.json +242 -0
  82. package/src/component/textarea.json +200 -0
  83. package/src/component/time-picker.json +138 -0
  84. package/src/component/tip-manager.json +118 -0
  85. package/src/component/tip.json +114 -0
  86. package/src/component/tooltip.json +66 -0
  87. package/src/component/tree-item.json +176 -0
  88. package/src/core.json +1709 -0
  89. package/src/semantic.json +1709 -0
  90. package/support/run.ts +16 -0
  91. package/support/token-transformer/format/scss.ts +81 -0
  92. package/support/token-transformer/getThemes.ts +41 -0
  93. package/support/token-transformer/parse/expandComposites.test.ts +144 -0
  94. package/support/token-transformer/parse/expandComposites.ts +72 -0
  95. package/support/token-transformer/sd-run.ts +147 -0
  96. package/support/token-transformer/transform/nameCamelCase.test.ts +36 -0
  97. package/support/token-transformer/transform/nameCamelCase.ts +15 -0
  98. package/support/token-transformer/transform/nameKebabCase.test.ts +36 -0
  99. package/support/token-transformer/transform/nameKebabCase.ts +26 -0
  100. package/support/token-transformer/utils/compositeTokens.test.ts +133 -0
  101. package/support/token-transformer/utils/compositeTokens.ts +103 -0
  102. package/support/token-transformer/utils/convertTokenToStyleDictionaryFormat.ts +20 -0
  103. package/support/token-transformer/utils/matchList.ts +11 -0
  104. package/support/token-transformer/utils/parseName.ts +18 -0
  105. package/support/token-transformer/utils/parseTokenPath.ts +19 -0
  106. package/support/token-transformer/utils/regex.ts +9 -0
  107. package/support/token-transformer/utils/sortAllTokens.ts +12 -0
  108. package/support/token-transformer/utils/transformOptions.ts +31 -0
  109. package/tsconfig-base.json +17 -0
  110. package/tsconfig-eslint.json +4 -0
  111. package/tsconfig.json +4 -0
@@ -0,0 +1,228 @@
1
+ {
2
+ "tab-title": {
3
+ "font": {
4
+ "default": {
5
+ "light": {
6
+ "value": "$semantic.ui.color.text.3.light",
7
+ "type": "color"
8
+ },
9
+ "dark": {
10
+ "value": "$semantic.ui.color.text.3.dark",
11
+ "type": "color"
12
+ }
13
+ },
14
+ "sm": {
15
+ "value": "$semantic.font.default.regular.-2h",
16
+ "type": "typography"
17
+ },
18
+ "md": {
19
+ "value": "$semantic.font.default.regular.-1h",
20
+ "type": "typography"
21
+ },
22
+ "lg": {
23
+ "value": "$semantic.font.default.regular.0h",
24
+ "type": "typography"
25
+ },
26
+ "active": {
27
+ "light": {
28
+ "value": "$semantic.ui.color.text.1.light",
29
+ "type": "color"
30
+ },
31
+ "dark": {
32
+ "value": "$semantic.ui.color.text.1.dark",
33
+ "type": "color"
34
+ }
35
+ }
36
+ },
37
+ "icon": {
38
+ "default": {
39
+ "light": {
40
+ "value": "$semantic.ui.color.text.3.light",
41
+ "type": "color"
42
+ },
43
+ "dark": {
44
+ "value": "$semantic.ui.color.text.3.dark",
45
+ "type": "color"
46
+ }
47
+ },
48
+ "active": {
49
+ "light": {
50
+ "value": "$semantic.ui.color.text.1.light",
51
+ "type": "color"
52
+ },
53
+ "dark": {
54
+ "value": "$semantic.ui.color.text.1.dark",
55
+ "type": "color"
56
+ }
57
+ }
58
+ },
59
+ "bordered": {
60
+ "border": {
61
+ "light": {
62
+ "value": "$semantic.ui.color.border.3.light",
63
+ "type": "color"
64
+ },
65
+ "dark": {
66
+ "value": "$semantic.ui.color.border.3.dark",
67
+ "type": "color"
68
+ }
69
+ },
70
+ "background": {
71
+ "default": {
72
+ "light": {
73
+ "value": "$semantic.ui.color.foreground.1.light",
74
+ "type": "color"
75
+ },
76
+ "dark": {
77
+ "value": "$semantic.ui.color.background.dark",
78
+ "type": "color"
79
+ }
80
+ }
81
+ },
82
+ "space-around": {
83
+ "left-right": {
84
+ "sm": {
85
+ "value": "$core.spacing.5",
86
+ "type": "spacing"
87
+ },
88
+ "md": {
89
+ "value": "$core.spacing.5",
90
+ "type": "spacing"
91
+ },
92
+ "lg": {
93
+ "value": "$core.spacing.7",
94
+ "type": "spacing"
95
+ }
96
+ },
97
+ "top-bottom": {
98
+ "sm": {
99
+ "value": "$core.spacing.1",
100
+ "type": "spacing"
101
+ },
102
+ "md": {
103
+ "value": "$core.spacing.3",
104
+ "type": "spacing"
105
+ },
106
+ "lg": {
107
+ "value": "$core.spacing.4",
108
+ "type": "spacing"
109
+ }
110
+ }
111
+ }
112
+ },
113
+ "border-radius": {
114
+ "sm": {
115
+ "value": "$core.border.border-radius.none",
116
+ "type": "borderRadius"
117
+ },
118
+ "md": {
119
+ "value": "$core.border.border-radius.none",
120
+ "type": "borderRadius"
121
+ },
122
+ "lg": {
123
+ "value": "$core.border.border-radius.none",
124
+ "type": "borderRadius"
125
+ }
126
+ },
127
+ "border-width": {
128
+ "sm": {
129
+ "value": "$core.border.border-width.0",
130
+ "type": "borderWidth"
131
+ },
132
+ "md": {
133
+ "value": "$core.border.border-width.0",
134
+ "type": "borderWidth"
135
+ },
136
+ "lg": {
137
+ "value": "$core.border.border-width.0",
138
+ "type": "borderWidth"
139
+ },
140
+ "active": {
141
+ "sm": {
142
+ "value": "$core.border.border-width.1",
143
+ "type": "borderWidth"
144
+ },
145
+ "md": {
146
+ "value": "$core.border.border-width.1",
147
+ "type": "borderWidth"
148
+ },
149
+ "lg": {
150
+ "value": "$core.border.border-width.1",
151
+ "type": "borderWidth"
152
+ }
153
+ }
154
+ },
155
+ "icon-size": {
156
+ "sm": {
157
+ "value": "$core.sizing.7",
158
+ "type": "sizing"
159
+ },
160
+ "md": {
161
+ "value": "$core.sizing.7",
162
+ "type": "sizing"
163
+ },
164
+ "lg": {
165
+ "value": "$core.sizing.9",
166
+ "type": "sizing"
167
+ }
168
+ },
169
+ "space-between": {
170
+ "sm": {
171
+ "value": "$core.spacing.3",
172
+ "type": "spacing"
173
+ },
174
+ "md": {
175
+ "value": "$core.spacing.3",
176
+ "type": "spacing"
177
+ },
178
+ "lg": {
179
+ "value": "$core.spacing.3",
180
+ "type": "spacing"
181
+ }
182
+ },
183
+ "default": {
184
+ "space-around": {
185
+ "left-right": {
186
+ "sm": {
187
+ "value": "$core.spacing.1",
188
+ "type": "spacing"
189
+ },
190
+ "md": {
191
+ "value": "$core.spacing.1",
192
+ "type": "spacing"
193
+ },
194
+ "lg": {
195
+ "value": "$core.spacing.1",
196
+ "type": "spacing"
197
+ }
198
+ },
199
+ "top-bottom": {
200
+ "sm": {
201
+ "value": "$core.spacing.1",
202
+ "type": "spacing"
203
+ },
204
+ "md": {
205
+ "value": "$core.spacing.3",
206
+ "type": "spacing"
207
+ },
208
+ "lg": {
209
+ "value": "$core.spacing.4",
210
+ "type": "spacing"
211
+ }
212
+ }
213
+ }
214
+ },
215
+ "border": {
216
+ "active": {
217
+ "light": {
218
+ "value": "{semantic.ui.color.brand.default.light}",
219
+ "type": "color"
220
+ },
221
+ "dark": {
222
+ "value": "{semantic.ui.color.brand.default.dark}",
223
+ "type": "color"
224
+ }
225
+ }
226
+ }
227
+ }
228
+ }
@@ -0,0 +1,242 @@
1
+ {
2
+ "tabs": {
3
+ "font": {
4
+ "default": {
5
+ "light": {
6
+ "value": "$semantic.ui.color.text.3.light",
7
+ "type": "color"
8
+ },
9
+ "dark": {
10
+ "value": "$semantic.ui.color.text.3.dark",
11
+ "type": "color"
12
+ }
13
+ },
14
+ "sm": {
15
+ "value": "$semantic.font.default.regular.-2h",
16
+ "type": "typography"
17
+ },
18
+ "md": {
19
+ "value": "$semantic.font.default.regular.-1h",
20
+ "type": "typography"
21
+ },
22
+ "lg": {
23
+ "value": "$semantic.font.default.regular.0h",
24
+ "type": "typography"
25
+ },
26
+ "active": {
27
+ "light": {
28
+ "value": "$semantic.ui.color.text.1.light",
29
+ "type": "color"
30
+ },
31
+ "dark": {
32
+ "value": "$semantic.ui.color.text.1.dark",
33
+ "type": "color"
34
+ }
35
+ }
36
+ },
37
+ "icon": {
38
+ "default": {
39
+ "light": {
40
+ "value": "$semantic.ui.color.text.3.light",
41
+ "type": "color"
42
+ },
43
+ "dark": {
44
+ "value": "$semantic.ui.color.text.3.dark",
45
+ "type": "color"
46
+ }
47
+ },
48
+ "active": {
49
+ "light": {
50
+ "value": "$semantic.ui.color.text.1.light",
51
+ "type": "color"
52
+ },
53
+ "dark": {
54
+ "value": "$semantic.ui.color.text.1.dark",
55
+ "type": "color"
56
+ }
57
+ }
58
+ },
59
+ "bordered": {
60
+ "border": {
61
+ "light": {
62
+ "value": "$semantic.ui.color.border.3.light",
63
+ "type": "color"
64
+ },
65
+ "dark": {
66
+ "value": "$semantic.ui.color.border.3.dark",
67
+ "type": "color"
68
+ }
69
+ },
70
+ "background": {
71
+ "default": {
72
+ "light": {
73
+ "value": "$semantic.ui.color.foreground.1.light",
74
+ "type": "color"
75
+ },
76
+ "dark": {
77
+ "value": "$semantic.ui.color.foreground.1.dark",
78
+ "type": "color"
79
+ }
80
+ }
81
+ },
82
+ "space-around": {
83
+ "left-right": {
84
+ "sm": {
85
+ "value": "$core.spacing.5",
86
+ "type": "spacing"
87
+ },
88
+ "md": {
89
+ "value": "$core.spacing.5",
90
+ "type": "spacing"
91
+ },
92
+ "lg": {
93
+ "value": "$core.spacing.7",
94
+ "type": "spacing"
95
+ }
96
+ },
97
+ "top-bottom": {
98
+ "sm": {
99
+ "value": "$core.spacing.7",
100
+ "type": "spacing"
101
+ },
102
+ "md": {
103
+ "value": "$core.spacing.7",
104
+ "type": "spacing"
105
+ },
106
+ "lg": {
107
+ "value": "$core.spacing.10",
108
+ "type": "spacing"
109
+ }
110
+ }
111
+ },
112
+ "border-radius": {
113
+ "sm": {
114
+ "value": "$core.border.border-radius.none",
115
+ "type": "borderRadius"
116
+ },
117
+ "md": {
118
+ "value": "$core.border.border-radius.none",
119
+ "type": "borderRadius"
120
+ },
121
+ "lg": {
122
+ "value": "$core.border.border-radius.none",
123
+ "type": "borderRadius"
124
+ }
125
+ },
126
+ "space-between": {
127
+ "sm": {
128
+ "value": "$core.spacing.none",
129
+ "type": "spacing"
130
+ },
131
+ "md": {
132
+ "value": "$core.spacing.none",
133
+ "type": "spacing"
134
+ },
135
+ "lg": {
136
+ "value": "$core.spacing.none",
137
+ "type": "spacing"
138
+ }
139
+ }
140
+ },
141
+ "border-width": {
142
+ "sm": {
143
+ "value": "$core.border.border-width.0",
144
+ "type": "borderWidth"
145
+ },
146
+ "md": {
147
+ "value": "$core.border.border-width.0",
148
+ "type": "borderWidth"
149
+ },
150
+ "lg": {
151
+ "value": "$core.border.border-width.0",
152
+ "type": "borderWidth"
153
+ },
154
+ "active": {
155
+ "sm": {
156
+ "value": "$core.border.border-width.1",
157
+ "type": "borderWidth"
158
+ },
159
+ "md": {
160
+ "value": "$core.border.border-width.1",
161
+ "type": "borderWidth"
162
+ },
163
+ "lg": {
164
+ "value": "$core.border.border-width.1",
165
+ "type": "borderWidth"
166
+ }
167
+ }
168
+ },
169
+ "icon-size": {
170
+ "sm": {
171
+ "value": "$core.sizing.7",
172
+ "type": "sizing"
173
+ },
174
+ "md": {
175
+ "value": "$core.sizing.7",
176
+ "type": "sizing"
177
+ },
178
+ "lg": {
179
+ "value": "$core.sizing.9",
180
+ "type": "sizing"
181
+ }
182
+ },
183
+ "default": {
184
+ "space-around": {
185
+ "left-right": {
186
+ "sm": {
187
+ "value": "$core.spacing.none",
188
+ "type": "spacing"
189
+ },
190
+ "md": {
191
+ "value": "$core.spacing.none",
192
+ "type": "spacing"
193
+ },
194
+ "lg": {
195
+ "value": "$core.spacing.none",
196
+ "type": "spacing"
197
+ }
198
+ },
199
+ "top-bottom": {
200
+ "sm": {
201
+ "value": "$core.spacing.1",
202
+ "type": "spacing"
203
+ },
204
+ "md": {
205
+ "value": "$core.spacing.3",
206
+ "type": "spacing"
207
+ },
208
+ "lg": {
209
+ "value": "$core.spacing.5",
210
+ "type": "spacing"
211
+ }
212
+ }
213
+ },
214
+ "space-between": {
215
+ "sm": {
216
+ "value": "$core.spacing.7",
217
+ "type": "spacing"
218
+ },
219
+ "md": {
220
+ "value": "$core.spacing.8",
221
+ "type": "spacing"
222
+ },
223
+ "lg": {
224
+ "value": "$core.spacing.9",
225
+ "type": "spacing"
226
+ }
227
+ }
228
+ },
229
+ "border": {
230
+ "active": {
231
+ "light": {
232
+ "value": "{semantic.ui.color.brand.default.light}",
233
+ "type": "color"
234
+ },
235
+ "dark": {
236
+ "value": "{semantic.ui.color.brand.default.dark}",
237
+ "type": "color"
238
+ }
239
+ }
240
+ }
241
+ }
242
+ }
@@ -0,0 +1,200 @@
1
+ {
2
+ "textarea": {
3
+ "font": {
4
+ "placeholder-value": {
5
+ "light": {
6
+ "value": "$semantic.ui.color.text.1.light",
7
+ "type": "color"
8
+ },
9
+ "dark": {
10
+ "value": "$semantic.ui.color.text.1.dark",
11
+ "type": "color"
12
+ },
13
+ "sm": {
14
+ "value": "$semantic.font.default.regular.-2h",
15
+ "type": "typography"
16
+ },
17
+ "md": {
18
+ "value": "$semantic.font.default.regular.-1h",
19
+ "type": "typography"
20
+ },
21
+ "lg": {
22
+ "value": "$semantic.font.default.regular.0h",
23
+ "type": "typography"
24
+ }
25
+ },
26
+ "label": {
27
+ "light": {
28
+ "value": "$semantic.ui.color.text.1.light",
29
+ "type": "color"
30
+ },
31
+ "dark": {
32
+ "value": "$semantic.ui.color.text.1.dark",
33
+ "type": "color"
34
+ },
35
+ "sm": {
36
+ "value": "$semantic.font.default.regular.-2h",
37
+ "type": "typography"
38
+ },
39
+ "md": {
40
+ "value": "$semantic.font.default.regular.-1h",
41
+ "type": "typography"
42
+ },
43
+ "lg": {
44
+ "value": "$semantic.font.default.regular.0h",
45
+ "type": "typography"
46
+ }
47
+ },
48
+ "read-only": {
49
+ "sm": {
50
+ "value": "$semantic.font.default.medium.-2h",
51
+ "type": "typography"
52
+ },
53
+ "md": {
54
+ "value": "$semantic.font.default.medium.-1h",
55
+ "type": "typography"
56
+ },
57
+ "lg": {
58
+ "value": "$semantic.font.default.medium.0h",
59
+ "type": "typography"
60
+ }
61
+ },
62
+ "chat-limit": {
63
+ "sm": {
64
+ "value": "$semantic.font.default.regular.-2h",
65
+ "type": "typography"
66
+ },
67
+ "md": {
68
+ "value": "$semantic.font.default.regular.-1h",
69
+ "type": "typography"
70
+ },
71
+ "lg": {
72
+ "value": "$semantic.font.default.regular.0h",
73
+ "type": "typography"
74
+ },
75
+ "light": {
76
+ "value": "$semantic.ui.color.text.2.light",
77
+ "type": "color"
78
+ },
79
+ "dark": {
80
+ "value": "$semantic.ui.color.text.2.dark",
81
+ "type": "color"
82
+ }
83
+ }
84
+ },
85
+ "icon": {
86
+ "light": {
87
+ "value": "$semantic.ui.color.text.3.light",
88
+ "type": "color"
89
+ },
90
+ "dark": {
91
+ "value": "$semantic.ui.color.text.3.dark",
92
+ "type": "color"
93
+ }
94
+ },
95
+ "border": {
96
+ "light": {
97
+ "value": "$semantic.ui.color.border.input.light",
98
+ "type": "color"
99
+ },
100
+ "dark": {
101
+ "value": "$semantic.ui.color.border.input.dark",
102
+ "type": "color"
103
+ }
104
+ },
105
+ "background": {
106
+ "default": {
107
+ "light": {
108
+ "value": "$semantic.ui.color.foreground.1.light",
109
+ "type": "color"
110
+ },
111
+ "dark": {
112
+ "value": "$semantic.ui.color.foreground.1.dark",
113
+ "type": "color"
114
+ }
115
+ },
116
+ "read-only": {
117
+ "light": {
118
+ "value": "$semantic.ui.color.background.light",
119
+ "type": "color"
120
+ },
121
+ "dark": {
122
+ "value": "$semantic.ui.color.background.dark",
123
+ "type": "color"
124
+ }
125
+ }
126
+ },
127
+ "border-radius": {
128
+ "sm": {
129
+ "value": "$core.border.border-radius.none",
130
+ "type": "borderRadius"
131
+ },
132
+ "md": {
133
+ "value": "$core.border.border-radius.none",
134
+ "type": "borderRadius"
135
+ },
136
+ "lg": {
137
+ "value": "$core.border.border-radius.none",
138
+ "type": "borderRadius"
139
+ }
140
+ },
141
+ "border-width": {
142
+ "sm": {
143
+ "value": "$core.border.border-width.0",
144
+ "type": "borderWidth"
145
+ },
146
+ "md": {
147
+ "value": "$core.border.border-width.0",
148
+ "type": "borderWidth"
149
+ },
150
+ "lg": {
151
+ "value": "$core.border.border-width.0",
152
+ "type": "borderWidth"
153
+ }
154
+ },
155
+ "icon-size": {
156
+ "sm": {
157
+ "value": "$core.sizing.7",
158
+ "type": "sizing"
159
+ },
160
+ "md": {
161
+ "value": "$core.sizing.7",
162
+ "type": "sizing"
163
+ },
164
+ "lg": {
165
+ "value": "$core.sizing.7",
166
+ "type": "sizing"
167
+ }
168
+ },
169
+ "space-around": {
170
+ "left-right": {
171
+ "sm": {
172
+ "value": "$core.spacing.3",
173
+ "type": "spacing"
174
+ },
175
+ "md": {
176
+ "value": "$core.spacing.5",
177
+ "type": "spacing"
178
+ },
179
+ "lg": {
180
+ "value": "$core.spacing.7",
181
+ "type": "spacing"
182
+ }
183
+ },
184
+ "top-bottom": {
185
+ "sm": {
186
+ "value": "$core.spacing.1",
187
+ "type": "spacing"
188
+ },
189
+ "md": {
190
+ "value": "$core.spacing.3",
191
+ "type": "spacing"
192
+ },
193
+ "lg": {
194
+ "value": "$core.spacing.5",
195
+ "type": "spacing"
196
+ }
197
+ }
198
+ }
199
+ }
200
+ }