@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
@@ -5,7 +5,12 @@
5
5
  "color": {
6
6
  "$value": "{icon.color.subtle}",
7
7
  "$type": "color",
8
- "$description": "Used in charts for the color of the reference line and axis value under mouse pointer."
8
+ "$description": "Used in charts for the color of the reference line and axis value under mouse pointer.",
9
+ "$extensions": {
10
+ "com.figma.scope": [
11
+ "ALL_SCOPES"
12
+ ]
13
+ }
9
14
  }
10
15
  },
11
16
  "line": {
@@ -15,14 +20,24 @@
15
20
  "dark": "{color.neutral.700}"
16
21
  },
17
22
  "$type": "color",
18
- "$description": "Used in charts for axis line color."
23
+ "$description": "Used in charts for axis line color.",
24
+ "$extensions": {
25
+ "com.figma.scope": [
26
+ "ALL_SCOPES"
27
+ ]
28
+ }
19
29
  }
20
30
  },
21
31
  "text": {
22
32
  "color": {
23
33
  "$value": "{text.color.subtle}",
24
34
  "$type": "color",
25
- "$description": "Used in charts for the text color of axis titles and labels."
35
+ "$description": "Used in charts for the text color of axis titles and labels.",
36
+ "$extensions": {
37
+ "com.figma.scope": [
38
+ "ALL_SCOPES"
39
+ ]
40
+ }
26
41
  }
27
42
  }
28
43
  },
@@ -31,7 +46,12 @@
31
46
  "color": {
32
47
  "$value": "rgba(221,43,14,0.1)",
33
48
  "$type": "color",
34
- "$description": "Used in charts to delineate a threshold area in a chart."
49
+ "$description": "Used in charts to delineate a threshold area in a chart.",
50
+ "$extensions": {
51
+ "com.figma.scope": [
52
+ "ALL_SCOPES"
53
+ ]
54
+ }
35
55
  }
36
56
  },
37
57
  "line": {
@@ -41,7 +61,12 @@
41
61
  "dark": "{color.red.600}"
42
62
  },
43
63
  "$type": "color",
44
- "$description": "Used in charts to divide a threshold area in a chart from other data."
64
+ "$description": "Used in charts to divide a threshold area in a chart from other data.",
65
+ "$extensions": {
66
+ "com.figma.scope": [
67
+ "ALL_SCOPES"
68
+ ]
69
+ }
45
70
  }
46
71
  }
47
72
  },
@@ -53,14 +78,24 @@
53
78
  "dark": "{color.alpha.light.16}"
54
79
  },
55
80
  "$type": "color",
56
- "$description": "Used in charts for the overlay color when zooming in on a specific area of data."
81
+ "$description": "Used in charts for the overlay color when zooming in on a specific area of data.",
82
+ "$extensions": {
83
+ "com.figma.scope": [
84
+ "ALL_SCOPES"
85
+ ]
86
+ }
57
87
  }
58
88
  },
59
89
  "handle": {
60
90
  "color": {
61
91
  "$value": "{icon.color.subtle}",
62
92
  "$type": "color",
63
- "$description": "Used in charts for the handle color when zooming in on a specific area of data."
93
+ "$description": "Used in charts for the handle color when zooming in on a specific area of data.",
94
+ "$extensions": {
95
+ "com.figma.scope": [
96
+ "ALL_SCOPES"
97
+ ]
98
+ }
64
99
  }
65
100
  }
66
101
  }
@@ -7,7 +7,13 @@
7
7
  "dark": "{color.neutral.900}"
8
8
  },
9
9
  "$type": "color",
10
- "$description": "Used for the background color of datepicker."
10
+ "$description": "Used for the background color of datepicker.",
11
+ "$extensions": {
12
+ "com.figma.scope": [
13
+ "SHAPE_FILL",
14
+ "TEXT_FILL"
15
+ ]
16
+ }
11
17
  }
12
18
  },
13
19
  "date": {
@@ -16,7 +22,12 @@
16
22
  "selected": {
17
23
  "$value": "{control.indicator.color.selected}",
18
24
  "$type": "color",
19
- "$description": "Used for the datepicker date text color state indicators."
25
+ "$description": "Used for the datepicker date text color state indicators.",
26
+ "$extensions": {
27
+ "com.figma.scope": [
28
+ "TEXT_FILL"
29
+ ]
30
+ }
20
31
  }
21
32
  }
22
33
  }
@@ -4,7 +4,13 @@
4
4
  "color": {
5
5
  "$value": "{background.color.overlap}",
6
6
  "$type": "color",
7
- "$description": "Used for the background of a dropdown."
7
+ "$description": "Used for the background of a dropdown.",
8
+ "$extensions": {
9
+ "com.figma.scope": [
10
+ "FRAME_FILL",
11
+ "SHAPE_FILL"
12
+ ]
13
+ }
8
14
  }
9
15
  },
10
16
  "border": {
@@ -14,7 +20,13 @@
14
20
  "dark": "{border.color.default}"
15
21
  },
16
22
  "$type": "color",
17
- "$description": "Used for the border of a dropdown."
23
+ "$description": "Used for the border of a dropdown.",
24
+ "$extensions": {
25
+ "com.figma.scope": [
26
+ "EFFECT_COLOR",
27
+ "STROKE_COLOR"
28
+ ]
29
+ }
18
30
  }
19
31
  },
20
32
  "divider": {
@@ -24,7 +36,13 @@
24
36
  "dark": "{border.color.subtle}"
25
37
  },
26
38
  "$type": "color",
27
- "$description": "Used for the divider of a dropdown."
39
+ "$description": "Used for the divider of a dropdown.",
40
+ "$extensions": {
41
+ "com.figma.scope": [
42
+ "EFFECT_COLOR",
43
+ "STROKE_COLOR"
44
+ ]
45
+ }
28
46
  }
29
47
  },
30
48
  "option": {
@@ -33,27 +51,52 @@
33
51
  "default": {
34
52
  "$value": "{action.neutral.foreground.color.default}",
35
53
  "$type": "color",
36
- "$description": "Used for the text of a dropdown option in the default state."
54
+ "$description": "Used for the text of a dropdown option in the default state.",
55
+ "$extensions": {
56
+ "com.figma.scope": [
57
+ "TEXT_FILL"
58
+ ]
59
+ }
37
60
  },
38
61
  "hover": {
39
62
  "$value": "{action.neutral.foreground.color.hover}",
40
63
  "$type": "color",
41
- "$description": "Used for the text of a dropdown option in the hover state."
64
+ "$description": "Used for the text of a dropdown option in the hover state.",
65
+ "$extensions": {
66
+ "com.figma.scope": [
67
+ "TEXT_FILL"
68
+ ]
69
+ }
42
70
  },
43
71
  "focus": {
44
72
  "$value": "{action.neutral.foreground.color.focus}",
45
73
  "$type": "color",
46
- "$description": "Used for the text of a dropdown option in the focus state."
74
+ "$description": "Used for the text of a dropdown option in the focus state.",
75
+ "$extensions": {
76
+ "com.figma.scope": [
77
+ "TEXT_FILL"
78
+ ]
79
+ }
47
80
  },
48
81
  "active": {
49
82
  "$value": "{action.neutral.foreground.color.active}",
50
83
  "$type": "color",
51
- "$description": "Used for the text of a dropdown option in the active state."
84
+ "$description": "Used for the text of a dropdown option in the active state.",
85
+ "$extensions": {
86
+ "com.figma.scope": [
87
+ "TEXT_FILL"
88
+ ]
89
+ }
52
90
  },
53
91
  "disabled": {
54
92
  "$value": "{action.disabled.foreground.color}",
55
93
  "$type": "color",
56
- "$description": "Used for the text of a dropdown option in the disabled state."
94
+ "$description": "Used for the text of a dropdown option in the disabled state.",
95
+ "$extensions": {
96
+ "com.figma.scope": [
97
+ "TEXT_FILL"
98
+ ]
99
+ }
57
100
  }
58
101
  }
59
102
  },
@@ -63,22 +106,46 @@
63
106
  "default": {
64
107
  "$value": "{control.background.color.selected.default}",
65
108
  "$type": "color",
66
- "$description": "Used for the dropdown selected option indicator in the default state."
109
+ "$description": "Used for the dropdown selected option indicator in the default state.",
110
+ "$extensions": {
111
+ "com.figma.scope": [
112
+ "SHAPE_FILL",
113
+ "TEXT_FILL"
114
+ ]
115
+ }
67
116
  },
68
117
  "hover": {
69
118
  "$value": "{control.background.color.selected.hover}",
70
119
  "$type": "color",
71
- "$description": "Used for the dropdown selected option indicator in the hover state."
120
+ "$description": "Used for the dropdown selected option indicator in the hover state.",
121
+ "$extensions": {
122
+ "com.figma.scope": [
123
+ "SHAPE_FILL",
124
+ "TEXT_FILL"
125
+ ]
126
+ }
72
127
  },
73
128
  "focus": {
74
129
  "$value": "{control.background.color.selected.focus}",
75
130
  "$type": "color",
76
- "$description": "Used for the dropdown selected option indicator in the focus state."
131
+ "$description": "Used for the dropdown selected option indicator in the focus state.",
132
+ "$extensions": {
133
+ "com.figma.scope": [
134
+ "SHAPE_FILL",
135
+ "TEXT_FILL"
136
+ ]
137
+ }
77
138
  },
78
139
  "active": {
79
140
  "$value": "{control.background.color.selected.focus}",
80
141
  "$type": "color",
81
- "$description": "Used for the dropdown selected option indicator in the active state."
142
+ "$description": "Used for the dropdown selected option indicator in the active state.",
143
+ "$extensions": {
144
+ "com.figma.scope": [
145
+ "SHAPE_FILL",
146
+ "TEXT_FILL"
147
+ ]
148
+ }
82
149
  }
83
150
  }
84
151
  }
@@ -89,22 +156,46 @@
89
156
  "default": {
90
157
  "$value": "{action.neutral.background.color.default}",
91
158
  "$type": "color",
92
- "$description": "Used for the background of an unselected dropdown option in the default state."
159
+ "$description": "Used for the background of an unselected dropdown option in the default state.",
160
+ "$extensions": {
161
+ "com.figma.scope": [
162
+ "FRAME_FILL",
163
+ "SHAPE_FILL"
164
+ ]
165
+ }
93
166
  },
94
167
  "hover": {
95
168
  "$value": "{action.neutral.background.color.hover}",
96
169
  "$type": "color",
97
- "$description": "Used for the background of an unselected dropdown option in the hover state."
170
+ "$description": "Used for the background of an unselected dropdown option in the hover state.",
171
+ "$extensions": {
172
+ "com.figma.scope": [
173
+ "FRAME_FILL",
174
+ "SHAPE_FILL"
175
+ ]
176
+ }
98
177
  },
99
178
  "focus": {
100
179
  "$value": "{action.neutral.background.color.focus}",
101
180
  "$type": "color",
102
- "$description": "Used for the background of an unselected dropdown option in the focus state."
181
+ "$description": "Used for the background of an unselected dropdown option in the focus state.",
182
+ "$extensions": {
183
+ "com.figma.scope": [
184
+ "FRAME_FILL",
185
+ "SHAPE_FILL"
186
+ ]
187
+ }
103
188
  },
104
189
  "active": {
105
190
  "$value": "{action.neutral.background.color.active}",
106
191
  "$type": "color",
107
- "$description": "Used for the background of an unselected dropdown option in the active state."
192
+ "$description": "Used for the background of an unselected dropdown option in the active state.",
193
+ "$extensions": {
194
+ "com.figma.scope": [
195
+ "FRAME_FILL",
196
+ "SHAPE_FILL"
197
+ ]
198
+ }
108
199
  }
109
200
  },
110
201
  "selected": {
@@ -114,7 +205,13 @@
114
205
  "dark": "{color.neutral.800}"
115
206
  },
116
207
  "$type": "color",
117
- "$description": "Used for the background of a selected dropdown option in the default state."
208
+ "$description": "Used for the background of a selected dropdown option in the default state.",
209
+ "$extensions": {
210
+ "com.figma.scope": [
211
+ "FRAME_FILL",
212
+ "SHAPE_FILL"
213
+ ]
214
+ }
118
215
  },
119
216
  "hover": {
120
217
  "$value": {
@@ -122,12 +219,24 @@
122
219
  "dark": "{color.neutral.700}"
123
220
  },
124
221
  "$type": "color",
125
- "$description": "Used for the background of a selected dropdown option in the hover state."
222
+ "$description": "Used for the background of a selected dropdown option in the hover state.",
223
+ "$extensions": {
224
+ "com.figma.scope": [
225
+ "FRAME_FILL",
226
+ "SHAPE_FILL"
227
+ ]
228
+ }
126
229
  },
127
230
  "focus": {
128
231
  "$value": "{dropdown.option.background.color.selected.hover}",
129
232
  "$type": "color",
130
- "$description": "Used for the background of a selected dropdown option in the focus state."
233
+ "$description": "Used for the background of a selected dropdown option in the focus state.",
234
+ "$extensions": {
235
+ "com.figma.scope": [
236
+ "FRAME_FILL",
237
+ "SHAPE_FILL"
238
+ ]
239
+ }
131
240
  },
132
241
  "active": {
133
242
  "$value": {
@@ -135,7 +244,13 @@
135
244
  "dark": "{color.neutral.900}"
136
245
  },
137
246
  "$type": "color",
138
- "$description": "Used for the background of a selected dropdown option in the active state."
247
+ "$description": "Used for the background of a selected dropdown option in the active state.",
248
+ "$extensions": {
249
+ "com.figma.scope": [
250
+ "FRAME_FILL",
251
+ "SHAPE_FILL"
252
+ ]
253
+ }
139
254
  }
140
255
  }
141
256
  }
@@ -149,7 +264,13 @@
149
264
  "dark": "{color.alpha.dark.24}"
150
265
  },
151
266
  "$type": "color",
152
- "$description": "Used for the background of a search input in a dropdown listbox."
267
+ "$description": "Used for the background of a search input in a dropdown listbox.",
268
+ "$extensions": {
269
+ "com.figma.scope": [
270
+ "FRAME_FILL",
271
+ "SHAPE_FILL"
272
+ ]
273
+ }
153
274
  }
154
275
  }
155
276
  }
@@ -10,7 +10,13 @@
10
10
  "dark": "{color.neutral.900}"
11
11
  },
12
12
  "$type": "color",
13
- "$description": "Used for the filtered search type token background color in the default state."
13
+ "$description": "Used for the filtered search type token background color in the default state.",
14
+ "$extensions": {
15
+ "com.figma.scope": [
16
+ "FRAME_FILL",
17
+ "SHAPE_FILL"
18
+ ]
19
+ }
14
20
  },
15
21
  "hover": {
16
22
  "$value": {
@@ -18,7 +24,13 @@
18
24
  "dark": "{color.neutral.800}"
19
25
  },
20
26
  "$type": "color",
21
- "$description": "Used for the filtered search type token background color in the hover state."
27
+ "$description": "Used for the filtered search type token background color in the hover state.",
28
+ "$extensions": {
29
+ "com.figma.scope": [
30
+ "FRAME_FILL",
31
+ "SHAPE_FILL"
32
+ ]
33
+ }
22
34
  }
23
35
  }
24
36
  }
@@ -32,7 +44,13 @@
32
44
  "dark": "{color.neutral.800}"
33
45
  },
34
46
  "$type": "color",
35
- "$description": "Used for the filtered search data background color in the default state."
47
+ "$description": "Used for the filtered search data background color in the default state.",
48
+ "$extensions": {
49
+ "com.figma.scope": [
50
+ "FRAME_FILL",
51
+ "SHAPE_FILL"
52
+ ]
53
+ }
36
54
  },
37
55
  "hover": {
38
56
  "$value": {
@@ -40,7 +58,13 @@
40
58
  "dark": "{color.neutral.700}"
41
59
  },
42
60
  "$type": "color",
43
- "$description": "Used for the filtered search data token background color in the hover state."
61
+ "$description": "Used for the filtered search data token background color in the hover state.",
62
+ "$extensions": {
63
+ "com.figma.scope": [
64
+ "FRAME_FILL",
65
+ "SHAPE_FILL"
66
+ ]
67
+ }
44
68
  }
45
69
  }
46
70
  }
@@ -54,7 +78,13 @@
54
78
  "dark": "{color.neutral.900}"
55
79
  },
56
80
  "$type": "color",
57
- "$description": "Used for the filtered search operator background color in the default state."
81
+ "$description": "Used for the filtered search operator background color in the default state.",
82
+ "$extensions": {
83
+ "com.figma.scope": [
84
+ "FRAME_FILL",
85
+ "SHAPE_FILL"
86
+ ]
87
+ }
58
88
  },
59
89
  "hover": {
60
90
  "$value": {
@@ -62,7 +92,13 @@
62
92
  "dark": "{color.neutral.800}"
63
93
  },
64
94
  "$type": "color",
65
- "$description": "Used for the filtered search operator token background color in the hover state."
95
+ "$description": "Used for the filtered search operator token background color in the hover state.",
96
+ "$extensions": {
97
+ "com.figma.scope": [
98
+ "FRAME_FILL",
99
+ "SHAPE_FILL"
100
+ ]
101
+ }
66
102
  }
67
103
  }
68
104
  }