@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,278 @@
1
+ {
2
+ "modal": {
3
+ "font": {
4
+ "header": {
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.wrap.regular.1",
15
+ "type": "typography"
16
+ },
17
+ "md": {
18
+ "value": "$semantic.font.wrap.regular.2",
19
+ "type": "typography"
20
+ },
21
+ "lg": {
22
+ "value": "$semantic.font.wrap.regular.3",
23
+ "type": "typography"
24
+ }
25
+ },
26
+ "content": {
27
+ "light": {
28
+ "value": "$semantic.ui.color.text.2.light",
29
+ "type": "color"
30
+ },
31
+ "dark": {
32
+ "value": "$semantic.ui.color.text.2.dark",
33
+ "type": "color"
34
+ },
35
+ "sm": {
36
+ "value": "$semantic.font.default.regular.-1h",
37
+ "type": "typography"
38
+ },
39
+ "md": {
40
+ "value": "$semantic.font.default.regular.0h",
41
+ "type": "typography"
42
+ },
43
+ "lg": {
44
+ "value": "$semantic.font.default.regular.1h",
45
+ "type": "typography"
46
+ }
47
+ }
48
+ },
49
+ "icon": {
50
+ "light": {
51
+ "value": "$semantic.ui.color.text.3.light",
52
+ "type": "color"
53
+ },
54
+ "dark": {
55
+ "value": "$semantic.ui.color.text.3.dark",
56
+ "type": "color"
57
+ }
58
+ },
59
+ "border": {
60
+ "default": {
61
+ "light": {
62
+ "value": "$semantic.ui.color.border.3.light",
63
+ "type": "color"
64
+ },
65
+ "dark": {
66
+ "value": "$semantic.ui.color.border.1.dark",
67
+ "type": "color"
68
+ }
69
+ },
70
+ "top": {
71
+ "brand": {
72
+ "light": {
73
+ "value": "$semantic.ui.color.brand.default.light",
74
+ "type": "color"
75
+ },
76
+ "dark": {
77
+ "value": "$semantic.ui.color.brand.default.dark",
78
+ "type": "color"
79
+ }
80
+ },
81
+ "info": {
82
+ "light": {
83
+ "value": "$semantic.ui.color.info.default.light",
84
+ "type": "color"
85
+ },
86
+ "dark": {
87
+ "value": "$semantic.ui.color.info.default.dark",
88
+ "type": "color"
89
+ }
90
+ },
91
+ "success": {
92
+ "light": {
93
+ "value": "$semantic.ui.color.success.default.light",
94
+ "type": "color"
95
+ },
96
+ "dark": {
97
+ "value": "$semantic.ui.color.success.default.dark",
98
+ "type": "color"
99
+ }
100
+ },
101
+ "danger": {
102
+ "light": {
103
+ "value": "$semantic.ui.color.danger.default.light",
104
+ "type": "color"
105
+ },
106
+ "dark": {
107
+ "value": "$semantic.ui.color.danger.default.dark",
108
+ "type": "color"
109
+ }
110
+ },
111
+ "warning": {
112
+ "light": {
113
+ "value": "$semantic.ui.color.warning.default.light",
114
+ "type": "color"
115
+ },
116
+ "dark": {
117
+ "value": "$semantic.ui.color.warning.default.dark",
118
+ "type": "color"
119
+ }
120
+ }
121
+ }
122
+ },
123
+ "background": {
124
+ "light": {
125
+ "value": "$semantic.ui.color.foreground.1.light",
126
+ "type": "color"
127
+ },
128
+ "dark": {
129
+ "value": "$semantic.ui.color.foreground.1.dark",
130
+ "type": "color"
131
+ }
132
+ },
133
+ "icon-size": {
134
+ "sm": {
135
+ "value": "$core.sizing.7",
136
+ "type": "sizing"
137
+ },
138
+ "md": {
139
+ "value": "$core.sizing.9",
140
+ "type": "sizing"
141
+ },
142
+ "lg": {
143
+ "value": "$core.sizing.11",
144
+ "type": "sizing"
145
+ }
146
+ },
147
+ "space-between": {
148
+ "sm": {
149
+ "value": "$core.spacing.none",
150
+ "type": "spacing"
151
+ },
152
+ "md": {
153
+ "value": "$core.spacing.none",
154
+ "type": "spacing"
155
+ },
156
+ "lg": {
157
+ "value": "$core.spacing.none",
158
+ "type": "spacing"
159
+ }
160
+ },
161
+ "space-around": {
162
+ "left-right": {
163
+ "sm": {
164
+ "value": "$core.spacing.7",
165
+ "type": "spacing"
166
+ },
167
+ "md": {
168
+ "value": "$core.spacing.8",
169
+ "type": "spacing"
170
+ },
171
+ "lg": {
172
+ "value": "$core.spacing.9",
173
+ "type": "spacing"
174
+ }
175
+ },
176
+ "top-bottom": {
177
+ "sm": {
178
+ "value": "$core.spacing.5",
179
+ "type": "spacing"
180
+ },
181
+ "md": {
182
+ "value": "$core.spacing.7",
183
+ "type": "spacing"
184
+ },
185
+ "lg": {
186
+ "value": "$core.spacing.8",
187
+ "type": "spacing"
188
+ }
189
+ },
190
+ "content": {
191
+ "sm": {
192
+ "value": "$core.spacing.5",
193
+ "type": "spacing"
194
+ },
195
+ "md": {
196
+ "value": "$core.spacing.7",
197
+ "type": "spacing"
198
+ },
199
+ "lg": {
200
+ "value": "$core.spacing.8",
201
+ "type": "spacing"
202
+ }
203
+ },
204
+ "cancel-button": {
205
+ "sm": {
206
+ "value": "$core.spacing.1",
207
+ "type": "spacing"
208
+ },
209
+ "md": {
210
+ "value": "$core.spacing.1",
211
+ "type": "spacing"
212
+ },
213
+ "lg": {
214
+ "value": "$core.spacing.1",
215
+ "type": "spacing"
216
+ }
217
+ }
218
+ },
219
+ "border-width": {
220
+ "default": {
221
+ "sm": {
222
+ "value": "$core.border.border-width.0",
223
+ "type": "borderWidth"
224
+ },
225
+ "md": {
226
+ "value": "$core.border.border-width.0",
227
+ "type": "borderWidth"
228
+ },
229
+ "lg": {
230
+ "value": "$core.border.border-width.0",
231
+ "type": "borderWidth"
232
+ }
233
+ },
234
+ "top": {
235
+ "sm": {
236
+ "value": "$core.border.border-width.2",
237
+ "type": "borderWidth"
238
+ },
239
+ "md": {
240
+ "value": "$core.border.border-width.2",
241
+ "type": "borderWidth"
242
+ },
243
+ "lg": {
244
+ "value": "$core.border.border-width.2",
245
+ "type": "borderWidth"
246
+ }
247
+ }
248
+ },
249
+ "border-radius": {
250
+ "sm": {
251
+ "value": "$core.border.border-radius.1",
252
+ "type": "borderRadius"
253
+ },
254
+ "lg": {
255
+ "value": "$core.border.border-radius.1",
256
+ "type": "borderRadius"
257
+ },
258
+ "md": {
259
+ "value": "$core.border.border-radius.1",
260
+ "type": "borderRadius"
261
+ }
262
+ },
263
+ "comp-size": {
264
+ "small-width": {
265
+ "value": "512",
266
+ "type": "sizing"
267
+ },
268
+ "medium-width": {
269
+ "value": "768px",
270
+ "type": "sizing"
271
+ },
272
+ "full-width": {
273
+ "value": "1504px",
274
+ "type": "sizing"
275
+ }
276
+ }
277
+ }
278
+ }
@@ -0,0 +1,280 @@
1
+ {
2
+ "notice": {
3
+ "font": {
4
+ "title": {
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.wrap.medium.-1",
15
+ "type": "typography"
16
+ },
17
+ "md": {
18
+ "value": "$semantic.font.wrap.medium.0",
19
+ "type": "typography"
20
+ },
21
+ "lg": {
22
+ "value": "$semantic.font.wrap.medium.1",
23
+ "type": "typography"
24
+ }
25
+ },
26
+ "message": {
27
+ "sm": {
28
+ "value": "$semantic.font.wrap.regular.-2",
29
+ "type": "typography"
30
+ },
31
+ "md": {
32
+ "value": "$semantic.font.wrap.regular.-1",
33
+ "type": "typography"
34
+ },
35
+ "lg": {
36
+ "value": "$semantic.font.wrap.regular.0",
37
+ "type": "typography"
38
+ },
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
+ },
49
+ "background": {
50
+ "light": {
51
+ "value": "$semantic.ui.color.foreground.1.light",
52
+ "type": "color"
53
+ },
54
+ "dark": {
55
+ "value": "$semantic.ui.color.foreground.2.dark",
56
+ "type": "color"
57
+ }
58
+ },
59
+ "border-radius": {
60
+ "sm": {
61
+ "value": "$core.border.border-radius.none",
62
+ "type": "borderRadius"
63
+ },
64
+ "md": {
65
+ "value": "$core.border.border-radius.none",
66
+ "type": "borderRadius"
67
+ },
68
+ "lg": {
69
+ "value": "$core.border.border-radius.none",
70
+ "type": "borderRadius"
71
+ }
72
+ },
73
+ "icon-size": {
74
+ "sm": {
75
+ "value": "$core.sizing.7",
76
+ "type": "sizing"
77
+ },
78
+ "md": {
79
+ "value": "$core.sizing.7",
80
+ "type": "sizing"
81
+ },
82
+ "lg": {
83
+ "value": "$core.sizing.9",
84
+ "type": "sizing"
85
+ }
86
+ },
87
+ "icon": {
88
+ "info": {
89
+ "light": {
90
+ "value": "$semantic.ui.color.info.default.light",
91
+ "type": "color"
92
+ },
93
+ "dark": {
94
+ "value": "$semantic.ui.color.info.default.dark",
95
+ "type": "color"
96
+ }
97
+ },
98
+ "success": {
99
+ "light": {
100
+ "value": "$semantic.ui.color.success.default.light",
101
+ "type": "color"
102
+ },
103
+ "dark": {
104
+ "value": "$semantic.ui.color.success.default.dark",
105
+ "type": "color"
106
+ }
107
+ },
108
+ "warning": {
109
+ "light": {
110
+ "value": "$semantic.ui.color.warning.default.light",
111
+ "type": "color"
112
+ },
113
+ "dark": {
114
+ "value": "$semantic.ui.color.warning.default.dark",
115
+ "type": "color"
116
+ }
117
+ },
118
+ "danger": {
119
+ "light": {
120
+ "value": "$semantic.ui.color.danger.default.light",
121
+ "type": "color"
122
+ },
123
+ "dark": {
124
+ "value": "$semantic.ui.color.danger.default.dark",
125
+ "type": "color"
126
+ }
127
+ },
128
+ "brand": {
129
+ "light": {
130
+ "value": "$semantic.ui.color.brand.default.light",
131
+ "type": "color"
132
+ },
133
+ "dark": {
134
+ "value": "$semantic.ui.color.brand.default.dark",
135
+ "type": "color"
136
+ }
137
+ }
138
+ },
139
+ "highlight": {
140
+ "info": {
141
+ "light": {
142
+ "value": "$semantic.ui.color.info.default.light",
143
+ "type": "color"
144
+ },
145
+ "dark": {
146
+ "value": "$semantic.ui.color.info.default.dark",
147
+ "type": "color"
148
+ }
149
+ },
150
+ "success": {
151
+ "light": {
152
+ "value": "$semantic.ui.color.success.default.light",
153
+ "type": "color"
154
+ },
155
+ "dark": {
156
+ "value": "$semantic.ui.color.success.default.dark",
157
+ "type": "color"
158
+ }
159
+ },
160
+ "warning": {
161
+ "light": {
162
+ "value": "$semantic.ui.color.warning.default.light",
163
+ "type": "color"
164
+ },
165
+ "dark": {
166
+ "value": "$semantic.ui.color.warning.default.dark",
167
+ "type": "color"
168
+ }
169
+ },
170
+ "danger": {
171
+ "light": {
172
+ "value": "$semantic.ui.color.danger.default.light",
173
+ "type": "color"
174
+ },
175
+ "dark": {
176
+ "value": "$semantic.ui.color.danger.default.dark",
177
+ "type": "color"
178
+ }
179
+ },
180
+ "brand": {
181
+ "light": {
182
+ "value": "$semantic.ui.color.brand.default.light",
183
+ "type": "color"
184
+ },
185
+ "dark": {
186
+ "value": "$semantic.ui.color.brand.default.dark",
187
+ "type": "color"
188
+ }
189
+ },
190
+ "border": {
191
+ "sm": {
192
+ "value": "$core.border.border-width.1",
193
+ "type": "borderWidth"
194
+ },
195
+ "md": {
196
+ "value": "$core.border.border-width.1",
197
+ "type": "borderWidth"
198
+ },
199
+ "lg": {
200
+ "value": "$core.border.border-width.1",
201
+ "type": "borderWidth"
202
+ }
203
+ }
204
+ },
205
+ "content": {
206
+ "space-between": {
207
+ "sm": {
208
+ "value": "$core.spacing.1",
209
+ "type": "spacing"
210
+ },
211
+ "md": {
212
+ "value": "$core.spacing.1",
213
+ "type": "spacing"
214
+ },
215
+ "lg": {
216
+ "value": "$core.spacing.1",
217
+ "type": "spacing"
218
+ }
219
+ }
220
+ },
221
+ "space-around": {
222
+ "top-bottom": {
223
+ "sm": {
224
+ "value": "$core.spacing.4",
225
+ "type": "spacing"
226
+ },
227
+ "md": {
228
+ "value": "$core.spacing.6",
229
+ "type": "spacing"
230
+ },
231
+ "lg": {
232
+ "value": "$core.spacing.7",
233
+ "type": "spacing"
234
+ }
235
+ },
236
+ "left": {
237
+ "sm": {
238
+ "value": "$core.spacing.5",
239
+ "type": "spacing"
240
+ },
241
+ "md": {
242
+ "value": "$core.spacing.7",
243
+ "type": "spacing"
244
+ },
245
+ "lg": {
246
+ "value": "$core.spacing.8",
247
+ "type": "spacing"
248
+ }
249
+ },
250
+ "right": {
251
+ "sm": {
252
+ "value": "$core.spacing.3",
253
+ "type": "spacing"
254
+ },
255
+ "md": {
256
+ "value": "$core.spacing.5",
257
+ "type": "spacing"
258
+ },
259
+ "lg": {
260
+ "value": "$core.spacing.7",
261
+ "type": "spacing"
262
+ }
263
+ }
264
+ },
265
+ "shadow": {
266
+ "sm": {
267
+ "value": "{core.box-shadow.1}",
268
+ "type": "boxShadow"
269
+ },
270
+ "md": {
271
+ "value": "{core.box-shadow.1}",
272
+ "type": "boxShadow"
273
+ },
274
+ "lg": {
275
+ "value": "{core.box-shadow.1}",
276
+ "type": "boxShadow"
277
+ }
278
+ }
279
+ }
280
+ }
@@ -0,0 +1,152 @@
1
+ {
2
+ "pagination": {
3
+ "font": {
4
+ "light": {
5
+ "value": "$semantic.ui.color.text.3.light",
6
+ "type": "color"
7
+ },
8
+ "dark": {
9
+ "value": "$semantic.ui.color.text.3.dark",
10
+ "type": "color"
11
+ },
12
+ "sm": {
13
+ "value": "$semantic.font.default.bold.-3h",
14
+ "type": "typography"
15
+ },
16
+ "md": {
17
+ "value": "$semantic.font.default.bold.-1h",
18
+ "type": "typography"
19
+ },
20
+ "lg": {
21
+ "value": "$semantic.font.default.bold.0h",
22
+ "type": "typography"
23
+ }
24
+ },
25
+ "icon": {
26
+ "light": {
27
+ "value": "$semantic.ui.color.text.3.light",
28
+ "type": "color"
29
+ },
30
+ "dark": {
31
+ "value": "$semantic.ui.color.text.3.dark",
32
+ "type": "color"
33
+ }
34
+ },
35
+ "border": {
36
+ "light": {
37
+ "value": "$semantic.ui.color.border.1.light",
38
+ "type": "color"
39
+ },
40
+ "dark": {
41
+ "value": "$semantic.ui.color.border.1.dark",
42
+ "type": "color"
43
+ }
44
+ },
45
+ "background": {
46
+ "default": {
47
+ "light": {
48
+ "value": "$semantic.ui.color.background.light",
49
+ "type": "color"
50
+ },
51
+ "dark": {
52
+ "value": "$semantic.ui.color.background.dark",
53
+ "type": "color"
54
+ }
55
+ }
56
+ },
57
+ "foreground": {
58
+ "light": {
59
+ "value": "$semantic.ui.color.foreground.2.light",
60
+ "type": "color"
61
+ },
62
+ "dark": {
63
+ "value": "$semantic.ui.color.foreground.2.dark",
64
+ "type": "color"
65
+ }
66
+ },
67
+ "border-radius": {
68
+ "sm": {
69
+ "value": "$core.border.border-radius.4",
70
+ "type": "borderRadius"
71
+ },
72
+ "md": {
73
+ "value": "$core.border.border-radius.5",
74
+ "type": "borderRadius"
75
+ },
76
+ "lg": {
77
+ "value": "$core.border.border-radius.6",
78
+ "type": "borderRadius"
79
+ }
80
+ },
81
+ "border-width": {
82
+ "sm": {
83
+ "value": "$core.border.border-width.1",
84
+ "type": "borderWidth"
85
+ },
86
+ "md": {
87
+ "value": "$core.border.border-width.2",
88
+ "type": "borderWidth"
89
+ },
90
+ "lg": {
91
+ "value": "$core.border.border-width.4",
92
+ "type": "borderWidth"
93
+ }
94
+ },
95
+ "comp-size": {
96
+ "sm": {
97
+ "value": "$core.sizing.9",
98
+ "type": "sizing"
99
+ },
100
+ "md": {
101
+ "value": "$core.sizing.11",
102
+ "type": "sizing"
103
+ },
104
+ "lg": {
105
+ "value": "$core.sizing.14",
106
+ "type": "sizing"
107
+ }
108
+ },
109
+ "icon-size": {
110
+ "sm": {
111
+ "value": "$core.sizing.7",
112
+ "type": "sizing"
113
+ },
114
+ "md": {
115
+ "value": "$core.sizing.9",
116
+ "type": "sizing"
117
+ },
118
+ "lg": {
119
+ "value": "$core.sizing.11",
120
+ "type": "sizing"
121
+ }
122
+ },
123
+ "space-between": {
124
+ "sm": {
125
+ "value": "$core.spacing.9",
126
+ "type": "spacing"
127
+ },
128
+ "md": {
129
+ "value": "$core.spacing.11",
130
+ "type": "spacing"
131
+ },
132
+ "lg": {
133
+ "value": "$core.spacing.14",
134
+ "type": "spacing"
135
+ }
136
+ },
137
+ "space-around": {
138
+ "sm": {
139
+ "value": "$core.spacing.7",
140
+ "type": "spacing"
141
+ },
142
+ "md": {
143
+ "value": "$core.spacing.9",
144
+ "type": "spacing"
145
+ },
146
+ "lg": {
147
+ "value": "$core.spacing.11",
148
+ "type": "spacing"
149
+ }
150
+ }
151
+ }
152
+ }