@gitlab/ui 115.0.1 → 115.1.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.
Files changed (124) hide show
  1. package/bin/migrate_custom_utils_to_tw.bundled.mjs +172489 -139144
  2. package/dist/components/dashboards/dashboard_layout/grid_layout/grid_layout.js +286 -0
  3. package/dist/components/dashboards/mock_data.js +49 -0
  4. package/dist/index.css +2 -2
  5. package/dist/index.css.map +1 -1
  6. package/dist/tailwind.css +1 -1
  7. package/dist/tailwind.css.map +1 -1
  8. package/dist/tokens/docs/tokens-tailwind-docs.dark.json +7986 -0
  9. package/dist/tokens/docs/tokens-tailwind-docs.json +7986 -0
  10. package/dist/tokens/figma/constants.tokens.json +944 -236
  11. package/dist/tokens/figma/contextual.tokens.json +2721 -418
  12. package/dist/tokens/figma/deprecated.tokens.json +664 -8
  13. package/dist/tokens/figma/semantic.tokens.json +1130 -169
  14. package/dist/tokens/js/tokens.dark.js +1089 -1047
  15. package/dist/tokens/js/tokens.js +1078 -1047
  16. package/dist/tokens/json/tokens.dark.json +9267 -3
  17. package/dist/tokens/json/tokens.json +9267 -3
  18. package/dist/tokens/tailwind/tokens.cjs +76 -407
  19. package/package.json +19 -46
  20. package/src/components/base/accordion/accordion_item.vue +1 -1
  21. package/src/components/base/avatar/avatar.vue +1 -1
  22. package/src/components/base/button/button.vue +1 -1
  23. package/src/components/base/dropdown/dropdown.vue +3 -1
  24. package/src/components/base/filtered_search/filtered_search.vue +1 -1
  25. package/src/components/base/filtered_search/filtered_search_suggestion_list.vue +1 -1
  26. package/src/components/base/filtered_search/filtered_search_token.vue +1 -1
  27. package/src/components/base/filtered_search/filtered_search_token_segment.vue +3 -3
  28. package/src/components/base/form/form_checkbox_tree/models/tree.js +1 -1
  29. package/src/components/base/form/form_date/form_date.vue +1 -1
  30. package/src/components/base/form/form_input/form_input.vue +1 -1
  31. package/src/components/base/form/form_select/form_select.vue +1 -1
  32. package/src/components/base/modal/modal.vue +2 -2
  33. package/src/components/base/new_dropdowns/base_dropdown/base_dropdown.vue +4 -4
  34. package/src/components/base/new_dropdowns/disclosure/disclosure_dropdown.md +1 -2
  35. package/src/components/base/new_dropdowns/listbox/listbox.vue +7 -7
  36. package/src/components/base/pagination/pagination.vue +2 -2
  37. package/src/components/base/path/path.vue +1 -1
  38. package/src/components/base/skeleton_loader/skeleton_loader.vue +9 -9
  39. package/src/components/base/table/table.md +1 -2
  40. package/src/components/base/table_lite/table_lite.md +1 -1
  41. package/src/components/base/tabs/tabs/tabs.vue +1 -1
  42. package/src/components/base/toast/toast.js +2 -2
  43. package/src/components/base/token_selector/token_container.vue +1 -1
  44. package/src/components/base/token_selector/token_selector.vue +2 -2
  45. package/src/components/base/token_selector/token_selector_dropdown.vue +1 -1
  46. package/src/components/charts/area/area.vue +3 -3
  47. package/src/components/charts/bar/bar.vue +2 -2
  48. package/src/components/charts/column/column.vue +2 -2
  49. package/src/components/charts/discrete_scatter/discrete_scatter.vue +2 -2
  50. package/src/components/charts/gauge/gauge.vue +1 -1
  51. package/src/components/charts/heatmap/heatmap.vue +2 -2
  52. package/src/components/charts/heatmap/index.js +1 -0
  53. package/src/components/charts/legend/legend.vue +1 -1
  54. package/src/components/charts/line/line.vue +3 -3
  55. package/src/components/charts/sparkline/sparkline.vue +1 -1
  56. package/src/components/charts/stacked_column/stacked_column.vue +1 -1
  57. package/src/components/dashboards/dashboard_layout/grid_layout/grid_layout.scss +1 -0
  58. package/src/components/dashboards/dashboard_layout/grid_layout/grid_layout.vue +247 -0
  59. package/src/components/dashboards/mock_data.js +40 -0
  60. package/src/components/mixins/tooltip_mixin.js +1 -1
  61. package/src/components/utilities/intersection_observer/intersection_observer.vue +1 -1
  62. package/src/components/utilities/intersperse/intersperse.vue +2 -2
  63. package/src/components/utilities/sprintf/sprintf.md +1 -1
  64. package/src/components/utilities/sprintf/sprintf.vue +1 -1
  65. package/src/components/utilities/truncate/truncate.vue +2 -2
  66. package/src/config.js +1 -1
  67. package/src/directives/outside/outside.js +4 -4
  68. package/src/directives/tooltip/tooltip.js +1 -1
  69. package/src/scss/components.scss +1 -0
  70. package/src/tokens/build/docs/tokens-tailwind-docs.dark.json +7986 -0
  71. package/src/tokens/build/docs/tokens-tailwind-docs.json +7986 -0
  72. package/src/tokens/build/figma/constants.tokens.json +944 -236
  73. package/src/tokens/build/figma/contextual.tokens.json +2721 -418
  74. package/src/tokens/build/figma/deprecated.tokens.json +664 -8
  75. package/src/tokens/build/figma/semantic.tokens.json +1130 -169
  76. package/src/tokens/build/json/tokens.dark.json +9267 -3
  77. package/src/tokens/build/json/tokens.json +9267 -3
  78. package/src/tokens/constant/color.alpha.tokens.json +60 -15
  79. package/src/tokens/constant/color.tokens.json +844 -211
  80. package/src/tokens/constant/line_height.tokens.json +40 -10
  81. package/src/tokens/contextual/alert.tokens.json +119 -19
  82. package/src/tokens/contextual/avatar.tokens.json +90 -14
  83. package/src/tokens/contextual/badge.tokens.json +728 -112
  84. package/src/tokens/contextual/banner.tokens.json +19 -3
  85. package/src/tokens/contextual/breadcrumb.tokens.json +6 -1
  86. package/src/tokens/contextual/broadcast.tokens.json +301 -81
  87. package/src/tokens/contextual/button.tokens.json +793 -120
  88. package/src/tokens/contextual/chart.tokens.json +42 -7
  89. package/src/tokens/contextual/datepicker.tokens.json +13 -2
  90. package/src/tokens/contextual/dropdown.tokens.json +142 -21
  91. package/src/tokens/contextual/filtered-search.tokens.json +42 -6
  92. package/src/tokens/contextual/illustration.tokens.json +195 -33
  93. package/src/tokens/contextual/label.tokens.json +81 -12
  94. package/src/tokens/contextual/link.tokens.json +26 -4
  95. package/src/tokens/contextual/progress-bar.tokens.json +35 -5
  96. package/src/tokens/contextual/skeleton-loader.tokens.json +12 -2
  97. package/src/tokens/contextual/spinner.tokens.json +24 -4
  98. package/src/tokens/contextual/table.tokens.json +14 -2
  99. package/src/tokens/contextual/tabs.tokens.json +7 -1
  100. package/src/tokens/contextual/toggle.tokens.json +54 -9
  101. package/src/tokens/contextual/token-selector.tokens.json +7 -1
  102. package/src/tokens/contextual/token.tokens.json +14 -2
  103. package/src/tokens/deprecated/deprecated.color.data_viz.tokens.json +165 -0
  104. package/src/tokens/deprecated/deprecated.color.theme.tokens.json +216 -0
  105. package/src/tokens/deprecated/deprecated.color.tokens.json +240 -0
  106. package/src/tokens/deprecated/deprecated.color.transparency.tokens.json +39 -0
  107. package/src/tokens/semantic/action.tokens.json +500 -75
  108. package/src/tokens/semantic/background.tokens.json +49 -7
  109. package/src/tokens/semantic/border.tokens.json +30 -5
  110. package/src/tokens/semantic/control.tokens.json +129 -20
  111. package/src/tokens/semantic/feedback.tokens.json +126 -19
  112. package/src/tokens/semantic/focus-ring.tokens.json +12 -2
  113. package/src/tokens/semantic/highlight.tokens.json +26 -4
  114. package/src/tokens/semantic/icon.tokens.json +63 -9
  115. package/src/tokens/semantic/shadow.tokens.json +6 -1
  116. package/src/tokens/semantic/status.tokens.json +120 -18
  117. package/src/tokens/semantic/text.tokens.json +69 -9
  118. package/src/tokens/tokens_tailwind_table.vue +1 -1
  119. package/src/utils/charts/config.js +7 -7
  120. package/src/utils/charts/utils.js +1 -1
  121. package/src/utils/use_mock_intersection_observer.js +1 -1
  122. package/src/utils/utils.js +1 -1
  123. package/tailwind.defaults.js +1 -1
  124. package/translations.js +2 -2
@@ -7,7 +7,13 @@
7
7
  "dark": "{color.neutral.950}"
8
8
  },
9
9
  "$type": "color",
10
- "$description": "Used for the default background color."
10
+ "$description": "Used for the default background color.",
11
+ "$extensions": {
12
+ "com.figma.scope": [
13
+ "FRAME_FILL",
14
+ "SHAPE_FILL"
15
+ ]
16
+ }
11
17
  },
12
18
  "subtle": {
13
19
  "$value": {
@@ -15,7 +21,13 @@
15
21
  "dark": "{color.neutral.900}"
16
22
  },
17
23
  "$type": "color",
18
- "$description": "Used to slightly differentiate the background from the default."
24
+ "$description": "Used to slightly differentiate the background from the default.",
25
+ "$extensions": {
26
+ "com.figma.scope": [
27
+ "FRAME_FILL",
28
+ "SHAPE_FILL"
29
+ ]
30
+ }
19
31
  },
20
32
  "strong": {
21
33
  "$value": {
@@ -23,7 +35,13 @@
23
35
  "dark": "{color.neutral.800}"
24
36
  },
25
37
  "$type": "color",
26
- "$description": "Used to make the background easily stand out from the default."
38
+ "$description": "Used to make the background easily stand out from the default.",
39
+ "$extensions": {
40
+ "com.figma.scope": [
41
+ "FRAME_FILL",
42
+ "SHAPE_FILL"
43
+ ]
44
+ }
27
45
  },
28
46
  "disabled": {
29
47
  "$value": {
@@ -31,7 +49,13 @@
31
49
  "dark": "{color.neutral.900}"
32
50
  },
33
51
  "$type": "color",
34
- "$description": "Used to identify a disabled section."
52
+ "$description": "Used to identify a disabled section.",
53
+ "$extensions": {
54
+ "com.figma.scope": [
55
+ "FRAME_FILL",
56
+ "SHAPE_FILL"
57
+ ]
58
+ }
35
59
  },
36
60
  "overlap": {
37
61
  "$value": {
@@ -39,7 +63,13 @@
39
63
  "dark": "{color.neutral.900}"
40
64
  },
41
65
  "$type": "color",
42
- "$description": "Used for components, like tooltips and drawers, and content, like a sticky header, that overlap other content."
66
+ "$description": "Used for components, like tooltips and drawers, and content, like a sticky header, that overlap other content.",
67
+ "$extensions": {
68
+ "com.figma.scope": [
69
+ "FRAME_FILL",
70
+ "SHAPE_FILL"
71
+ ]
72
+ }
43
73
  },
44
74
  "section": {
45
75
  "$value": {
@@ -47,7 +77,13 @@
47
77
  "dark": "{color.neutral.800}"
48
78
  },
49
79
  "$type": "color",
50
- "$description": "Used for containers, like a card header, that are visually distinct from the default page background only when necessary to maintain affordance and hierarchy in different modes."
80
+ "$description": "Used for containers, like a card header, that are visually distinct from the default page background only when necessary to maintain affordance and hierarchy in different modes.",
81
+ "$extensions": {
82
+ "com.figma.scope": [
83
+ "FRAME_FILL",
84
+ "SHAPE_FILL"
85
+ ]
86
+ }
51
87
  },
52
88
  "overlay": {
53
89
  "$value": {
@@ -55,7 +91,13 @@
55
91
  "dark": "rgba(0,0,0,0.64)"
56
92
  },
57
93
  "$type": "color",
58
- "$description": "Used for an overlay that covers other content."
94
+ "$description": "Used for an overlay that covers other content.",
95
+ "$extensions": {
96
+ "com.figma.scope": [
97
+ "FRAME_FILL",
98
+ "SHAPE_FILL"
99
+ ]
100
+ }
59
101
  }
60
102
  }
61
103
  }
@@ -7,7 +7,12 @@
7
7
  "dark": "{color.neutral.700}"
8
8
  },
9
9
  "$type": "color",
10
- "$description": "Used for the default border color."
10
+ "$description": "Used for the default border color.",
11
+ "$extensions": {
12
+ "com.figma.scope": [
13
+ "STROKE_COLOR"
14
+ ]
15
+ }
11
16
  },
12
17
  "subtle": {
13
18
  "$value": {
@@ -15,7 +20,12 @@
15
20
  "dark": "{color.neutral.800}"
16
21
  },
17
22
  "$type": "color",
18
- "$description": "Used for a subtle border in combination with the default background."
23
+ "$description": "Used for a subtle border in combination with the default background.",
24
+ "$extensions": {
25
+ "com.figma.scope": [
26
+ "STROKE_COLOR"
27
+ ]
28
+ }
19
29
  },
20
30
  "strong": {
21
31
  "$value": {
@@ -23,7 +33,12 @@
23
33
  "dark": "{color.neutral.600}"
24
34
  },
25
35
  "$type": "color",
26
- "$description": "Used for a distinct border that emphasizes an edge or boundaries."
36
+ "$description": "Used for a distinct border that emphasizes an edge or boundaries.",
37
+ "$extensions": {
38
+ "com.figma.scope": [
39
+ "STROKE_COLOR"
40
+ ]
41
+ }
27
42
  },
28
43
  "section": {
29
44
  "$value": {
@@ -31,12 +46,22 @@
31
46
  "dark": "{background.color.default}"
32
47
  },
33
48
  "$type": "color",
34
- "$description": "Used for the border color that surrounds content or elements when they appear as a closed container or closed section of the page."
49
+ "$description": "Used for the border color that surrounds content or elements when they appear as a closed container or closed section of the page.",
50
+ "$extensions": {
51
+ "com.figma.scope": [
52
+ "STROKE_COLOR"
53
+ ]
54
+ }
35
55
  },
36
56
  "transparent": {
37
57
  "$value": "{color.alpha.0}",
38
58
  "$type": "color",
39
- "$description": "Used when a border needs to be present, but not visibly perceived."
59
+ "$description": "Used when a border needs to be present, but not visibly perceived.",
60
+ "$extensions": {
61
+ "com.figma.scope": [
62
+ "ALL_SCOPES"
63
+ ]
64
+ }
40
65
  }
41
66
  }
42
67
  }
@@ -8,7 +8,13 @@
8
8
  "dark": "{color.alpha.dark.40}"
9
9
  },
10
10
  "$type": "color",
11
- "$description": "Used for form control (input, radio button, checkbox, textarea) default background."
11
+ "$description": "Used for form control (input, radio button, checkbox, textarea) default background.",
12
+ "$extensions": {
13
+ "com.figma.scope": [
14
+ "FRAME_FILL",
15
+ "SHAPE_FILL"
16
+ ]
17
+ }
12
18
  },
13
19
  "disabled": {
14
20
  "$value": {
@@ -16,7 +22,13 @@
16
22
  "dark": "{color.alpha.light.4}"
17
23
  },
18
24
  "$type": "color",
19
- "$description": "Used for disabled form control (checkbox, input, radio button, textarea) background."
25
+ "$description": "Used for disabled form control (checkbox, input, radio button, textarea) background.",
26
+ "$extensions": {
27
+ "com.figma.scope": [
28
+ "FRAME_FILL",
29
+ "SHAPE_FILL"
30
+ ]
31
+ }
20
32
  },
21
33
  "concatenation": {
22
34
  "$value": {
@@ -24,7 +36,13 @@
24
36
  "dark": "{color.alpha.light.4}"
25
37
  },
26
38
  "$type": "color",
27
- "$description": "Used for the background of static content that prepends or appends a text input."
39
+ "$description": "Used for the background of static content that prepends or appends a text input.",
40
+ "$extensions": {
41
+ "com.figma.scope": [
42
+ "FRAME_FILL",
43
+ "SHAPE_FILL"
44
+ ]
45
+ }
28
46
  },
29
47
  "readonly": {
30
48
  "$value": {
@@ -32,7 +50,13 @@
32
50
  "dark": "{color.alpha.light.8}"
33
51
  },
34
52
  "$type": "color",
35
- "$description": "Used for the background of static content that prepends or appends a text input."
53
+ "$description": "Used for the background of static content that prepends or appends a text input.",
54
+ "$extensions": {
55
+ "com.figma.scope": [
56
+ "FRAME_FILL",
57
+ "SHAPE_FILL"
58
+ ]
59
+ }
36
60
  },
37
61
  "selected": {
38
62
  "default": {
@@ -41,7 +65,13 @@
41
65
  "dark": "{color.blue.300}"
42
66
  },
43
67
  "$type": "color",
44
- "$description": "Used for checked and indeterminate (selected) form control (checkbox, radio button) background."
68
+ "$description": "Used for checked and indeterminate (selected) form control (checkbox, radio button) background.",
69
+ "$extensions": {
70
+ "com.figma.scope": [
71
+ "FRAME_FILL",
72
+ "SHAPE_FILL"
73
+ ]
74
+ }
45
75
  },
46
76
  "hover": {
47
77
  "$value": {
@@ -49,7 +79,13 @@
49
79
  "dark": "{color.blue.200}"
50
80
  },
51
81
  "$type": "color",
52
- "$description": "Used for checked and indeterminate (selected) form control (checkbox, radio button) background on hover."
82
+ "$description": "Used for checked and indeterminate (selected) form control (checkbox, radio button) background on hover.",
83
+ "$extensions": {
84
+ "com.figma.scope": [
85
+ "FRAME_FILL",
86
+ "SHAPE_FILL"
87
+ ]
88
+ }
53
89
  },
54
90
  "focus": {
55
91
  "$value": {
@@ -57,7 +93,13 @@
57
93
  "dark": "{color.blue.200}"
58
94
  },
59
95
  "$type": "color",
60
- "$description": "Used for checked and indeterminate (selected) form control (checkbox, radio button) background on hover."
96
+ "$description": "Used for checked and indeterminate (selected) form control (checkbox, radio button) background on hover.",
97
+ "$extensions": {
98
+ "com.figma.scope": [
99
+ "FRAME_FILL",
100
+ "SHAPE_FILL"
101
+ ]
102
+ }
61
103
  }
62
104
  }
63
105
  }
@@ -70,7 +112,12 @@
70
112
  "dark": "{color.neutral.500}"
71
113
  },
72
114
  "$type": "color",
73
- "$description": "Used for form control (input, radio button, checkbox, textarea) default border."
115
+ "$description": "Used for form control (input, radio button, checkbox, textarea) default border.",
116
+ "$extensions": {
117
+ "com.figma.scope": [
118
+ "STROKE_COLOR"
119
+ ]
120
+ }
74
121
  },
75
122
  "hover": {
76
123
  "$value": {
@@ -78,7 +125,12 @@
78
125
  "dark": "{color.neutral.300}"
79
126
  },
80
127
  "$type": "color",
81
- "$description": "Used for form control (input, radio button, checkbox, textarea) border on hover."
128
+ "$description": "Used for form control (input, radio button, checkbox, textarea) border on hover.",
129
+ "$extensions": {
130
+ "com.figma.scope": [
131
+ "STROKE_COLOR"
132
+ ]
133
+ }
82
134
  },
83
135
  "focus": {
84
136
  "$value": {
@@ -86,7 +138,12 @@
86
138
  "dark": "{color.neutral.50}"
87
139
  },
88
140
  "$type": "color",
89
- "$description": "Used for form control (input, radio button, checkbox, textarea) border on focus."
141
+ "$description": "Used for form control (input, radio button, checkbox, textarea) border on focus.",
142
+ "$extensions": {
143
+ "com.figma.scope": [
144
+ "STROKE_COLOR"
145
+ ]
146
+ }
90
147
  },
91
148
  "disabled": {
92
149
  "$value": {
@@ -94,7 +151,12 @@
94
151
  "dark": "{color.neutral.800}"
95
152
  },
96
153
  "$type": "color",
97
- "$description": "Used for disabled form control (input, radio button, checkbox, textarea) border."
154
+ "$description": "Used for disabled form control (input, radio button, checkbox, textarea) border.",
155
+ "$extensions": {
156
+ "com.figma.scope": [
157
+ "STROKE_COLOR"
158
+ ]
159
+ }
98
160
  },
99
161
  "error": {
100
162
  "$value": {
@@ -102,7 +164,12 @@
102
164
  "dark": "{color.red.300}"
103
165
  },
104
166
  "$type": "color",
105
- "$description": "Used for invalid form control (input, textarea) border."
167
+ "$description": "Used for invalid form control (input, textarea) border.",
168
+ "$extensions": {
169
+ "com.figma.scope": [
170
+ "STROKE_COLOR"
171
+ ]
172
+ }
106
173
  },
107
174
  "selected": {
108
175
  "default": {
@@ -111,7 +178,12 @@
111
178
  "dark": "{color.blue.400}"
112
179
  },
113
180
  "$type": "color",
114
- "$description": "Used for checked and indeterminate (selected) form control (checkbox, radio button) border."
181
+ "$description": "Used for checked and indeterminate (selected) form control (checkbox, radio button) border.",
182
+ "$extensions": {
183
+ "com.figma.scope": [
184
+ "STROKE_COLOR"
185
+ ]
186
+ }
115
187
  },
116
188
  "hover": {
117
189
  "$value": {
@@ -119,7 +191,12 @@
119
191
  "dark": "{color.blue.200}"
120
192
  },
121
193
  "$type": "color",
122
- "$description": "Used for checked and indeterminate (selected) form control (checkbox, radio button) border on hover."
194
+ "$description": "Used for checked and indeterminate (selected) form control (checkbox, radio button) border on hover.",
195
+ "$extensions": {
196
+ "com.figma.scope": [
197
+ "STROKE_COLOR"
198
+ ]
199
+ }
123
200
  },
124
201
  "focus": {
125
202
  "$value": {
@@ -127,7 +204,12 @@
127
204
  "dark": "{color.blue.200}"
128
205
  },
129
206
  "$type": "color",
130
- "$description": "Used for checked and indeterminate (selected) form control (checkbox, radio button) border on focus."
207
+ "$description": "Used for checked and indeterminate (selected) form control (checkbox, radio button) border on focus.",
208
+ "$extensions": {
209
+ "com.figma.scope": [
210
+ "STROKE_COLOR"
211
+ ]
212
+ }
131
213
  }
132
214
  }
133
215
  }
@@ -137,12 +219,22 @@
137
219
  "error": {
138
220
  "$value": "{text.color.danger}",
139
221
  "$type": "color",
140
- "$description": "Used for the helper text when the input is invalid."
222
+ "$description": "Used for the helper text when the input is invalid.",
223
+ "$extensions": {
224
+ "com.figma.scope": [
225
+ "TEXT_FILL"
226
+ ]
227
+ }
141
228
  },
142
229
  "valid": {
143
230
  "$value": "{text.color.success}",
144
231
  "$type": "color",
145
- "$description": "Used for the helper text when the input is valid."
232
+ "$description": "Used for the helper text when the input is valid.",
233
+ "$extensions": {
234
+ "com.figma.scope": [
235
+ "TEXT_FILL"
236
+ ]
237
+ }
146
238
  }
147
239
  }
148
240
  },
@@ -150,7 +242,12 @@
150
242
  "color": {
151
243
  "$value": "{text.color.disabled}",
152
244
  "$type": "color",
153
- "$description": "Used for placeholder text within inputs."
245
+ "$description": "Used for placeholder text within inputs.",
246
+ "$extensions": {
247
+ "com.figma.scope": [
248
+ "TEXT_FILL"
249
+ ]
250
+ }
154
251
  }
155
252
  },
156
253
  "indicator": {
@@ -161,7 +258,13 @@
161
258
  "dark": "{color.neutral.950}"
162
259
  },
163
260
  "$type": "color",
164
- "$description": "Used for checkbox and radio button state indicators."
261
+ "$description": "Used for checkbox and radio button state indicators.",
262
+ "$extensions": {
263
+ "com.figma.scope": [
264
+ "FRAME_FILL",
265
+ "SHAPE_FILL"
266
+ ]
267
+ }
165
268
  },
166
269
  "disabled": {
167
270
  "$value": {
@@ -169,7 +272,13 @@
169
272
  "dark": "{color.neutral.400}"
170
273
  },
171
274
  "$type": "color",
172
- "$description": "Used for disabled checkbox and radio button state indicators."
275
+ "$description": "Used for disabled checkbox and radio button state indicators.",
276
+ "$extensions": {
277
+ "com.figma.scope": [
278
+ "FRAME_FILL",
279
+ "SHAPE_FILL"
280
+ ]
281
+ }
173
282
  }
174
283
  }
175
284
  }