@gitlab/ui 90.5.0 → 91.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 (46) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/dist/components/base/path/path.js +2 -15
  3. package/dist/components/experimental/duo/chat/components/duo_chat_context/constants.js +5 -0
  4. package/dist/components/experimental/duo/chat/components/duo_chat_context/duo_chat_context_item_popover/duo_chat_context_item_popover.js +93 -0
  5. package/dist/components/experimental/duo/chat/components/duo_chat_context/duo_chat_context_item_selections/duo_chat_context_item_selections.js +91 -0
  6. package/dist/components/experimental/duo/chat/components/duo_chat_context/mock_context_data.js +121 -0
  7. package/dist/components/experimental/duo/chat/components/duo_chat_message/duo_chat_message.js +24 -1
  8. package/dist/components/experimental/duo/chat/mock_data.js +9 -3
  9. package/dist/index.css +2 -2
  10. package/dist/index.css.map +1 -1
  11. package/dist/tailwind.css +1 -1
  12. package/dist/tailwind.css.map +1 -1
  13. package/dist/tokens/build/js/tokens.dark.js +13 -1
  14. package/dist/tokens/build/js/tokens.js +13 -1
  15. package/dist/tokens/css/tokens.css +12 -0
  16. package/dist/tokens/css/tokens.dark.css +12 -0
  17. package/dist/tokens/js/tokens.dark.js +12 -0
  18. package/dist/tokens/js/tokens.js +12 -0
  19. package/dist/tokens/json/tokens.dark.json +278 -0
  20. package/dist/tokens/json/tokens.json +278 -0
  21. package/dist/tokens/scss/_tokens.dark.scss +12 -0
  22. package/dist/tokens/scss/_tokens.scss +12 -0
  23. package/dist/tokens/scss/_tokens_custom_properties.scss +12 -0
  24. package/dist/utils/constants.js +1 -2
  25. package/package.json +1 -1
  26. package/src/components/base/path/path.scss +44 -62
  27. package/src/components/base/path/path.vue +2 -15
  28. package/src/components/experimental/duo/chat/components/duo_chat_context/constants.js +3 -0
  29. package/src/components/experimental/duo/chat/components/duo_chat_context/duo_chat_context_item_popover/duo_chat_context_item_popover.vue +111 -0
  30. package/src/components/experimental/duo/chat/components/duo_chat_context/duo_chat_context_item_selections/duo_chat_context_item_selections.vue +94 -0
  31. package/src/components/experimental/duo/chat/components/duo_chat_context/mock_context_data.js +137 -0
  32. package/src/components/experimental/duo/chat/components/duo_chat_message/duo_chat_message.md +5 -0
  33. package/src/components/experimental/duo/chat/components/duo_chat_message/duo_chat_message.vue +43 -0
  34. package/src/components/experimental/duo/chat/mock_data.js +8 -2
  35. package/src/tokens/action.tokens.json +86 -0
  36. package/src/tokens/build/css/tokens.css +12 -0
  37. package/src/tokens/build/css/tokens.dark.css +12 -0
  38. package/src/tokens/build/js/tokens.dark.js +12 -0
  39. package/src/tokens/build/js/tokens.js +12 -0
  40. package/src/tokens/build/json/tokens.dark.json +278 -0
  41. package/src/tokens/build/json/tokens.json +278 -0
  42. package/src/tokens/build/scss/_tokens.dark.scss +12 -0
  43. package/src/tokens/build/scss/_tokens.scss +12 -0
  44. package/src/tokens/build/scss/_tokens_custom_properties.scss +12 -0
  45. package/src/utils/constants.js +0 -2
  46. package/translations.js +3 -0
@@ -77,6 +77,284 @@
77
77
  }
78
78
  }
79
79
  },
80
+ "selected": {
81
+ "foreground": {
82
+ "color": {
83
+ "default": {
84
+ "value": "#fff",
85
+ "$type": "color",
86
+ "comment": "Used for the foreground of a selected action in the default state.",
87
+ "filePath": "src/tokens/action.tokens.json",
88
+ "isSource": true,
89
+ "original": {
90
+ "value": {
91
+ "default": "{color.neutral.0}",
92
+ "dark": "{color.neutral.950}"
93
+ },
94
+ "$type": "color",
95
+ "comment": "Used for the foreground of a selected action in the default state."
96
+ },
97
+ "name": "ACTION_SELECTED_FOREGROUND_COLOR_DEFAULT",
98
+ "attributes": {},
99
+ "path": [
100
+ "action",
101
+ "selected",
102
+ "foreground",
103
+ "color",
104
+ "default"
105
+ ]
106
+ },
107
+ "hover": {
108
+ "value": "#fff",
109
+ "$type": "color",
110
+ "comment": "Used for the foreground of a selected action in the hover state.",
111
+ "filePath": "src/tokens/action.tokens.json",
112
+ "isSource": true,
113
+ "original": {
114
+ "value": "{action.selected.foreground.color.default}",
115
+ "$type": "color",
116
+ "comment": "Used for the foreground of a selected action in the hover state."
117
+ },
118
+ "name": "ACTION_SELECTED_FOREGROUND_COLOR_HOVER",
119
+ "attributes": {},
120
+ "path": [
121
+ "action",
122
+ "selected",
123
+ "foreground",
124
+ "color",
125
+ "hover"
126
+ ]
127
+ },
128
+ "focus": {
129
+ "value": "#fff",
130
+ "$type": "color",
131
+ "comment": "Used for the foreground of a selected action in the focus state.",
132
+ "filePath": "src/tokens/action.tokens.json",
133
+ "isSource": true,
134
+ "original": {
135
+ "value": "{action.selected.foreground.color.hover}",
136
+ "$type": "color",
137
+ "comment": "Used for the foreground of a selected action in the focus state."
138
+ },
139
+ "name": "ACTION_SELECTED_FOREGROUND_COLOR_FOCUS",
140
+ "attributes": {},
141
+ "path": [
142
+ "action",
143
+ "selected",
144
+ "foreground",
145
+ "color",
146
+ "focus"
147
+ ]
148
+ },
149
+ "active": {
150
+ "value": "#fff",
151
+ "$type": "color",
152
+ "comment": "Used for the foreground of a selected action in the active state.",
153
+ "filePath": "src/tokens/action.tokens.json",
154
+ "isSource": true,
155
+ "original": {
156
+ "value": "{action.selected.foreground.color.focus}",
157
+ "$type": "color",
158
+ "comment": "Used for the foreground of a selected action in the active state."
159
+ },
160
+ "name": "ACTION_SELECTED_FOREGROUND_COLOR_ACTIVE",
161
+ "attributes": {},
162
+ "path": [
163
+ "action",
164
+ "selected",
165
+ "foreground",
166
+ "color",
167
+ "active"
168
+ ]
169
+ }
170
+ }
171
+ },
172
+ "background": {
173
+ "color": {
174
+ "default": {
175
+ "value": "#1f75cb",
176
+ "$type": "color",
177
+ "comment": "Used for the background of a selected action in the default state.",
178
+ "filePath": "src/tokens/action.tokens.json",
179
+ "isSource": true,
180
+ "original": {
181
+ "value": {
182
+ "default": "{color.blue.500}",
183
+ "dark": "{color.blue.300}"
184
+ },
185
+ "$type": "color",
186
+ "comment": "Used for the background of a selected action in the default state."
187
+ },
188
+ "name": "ACTION_SELECTED_BACKGROUND_COLOR_DEFAULT",
189
+ "attributes": {},
190
+ "path": [
191
+ "action",
192
+ "selected",
193
+ "background",
194
+ "color",
195
+ "default"
196
+ ]
197
+ },
198
+ "hover": {
199
+ "value": "#0b5cad",
200
+ "$type": "color",
201
+ "comment": "Used for the background of a selected action in the hover state.",
202
+ "filePath": "src/tokens/action.tokens.json",
203
+ "isSource": true,
204
+ "original": {
205
+ "value": {
206
+ "default": "{color.blue.700}",
207
+ "dark": "{color.blue.200}"
208
+ },
209
+ "$type": "color",
210
+ "comment": "Used for the background of a selected action in the hover state."
211
+ },
212
+ "name": "ACTION_SELECTED_BACKGROUND_COLOR_HOVER",
213
+ "attributes": {},
214
+ "path": [
215
+ "action",
216
+ "selected",
217
+ "background",
218
+ "color",
219
+ "hover"
220
+ ]
221
+ },
222
+ "focus": {
223
+ "value": "#0b5cad",
224
+ "$type": "color",
225
+ "comment": "Used for the background of a selected action in the focus state.",
226
+ "filePath": "src/tokens/action.tokens.json",
227
+ "isSource": true,
228
+ "original": {
229
+ "value": "{action.selected.background.color.hover}",
230
+ "$type": "color",
231
+ "comment": "Used for the background of a selected action in the focus state."
232
+ },
233
+ "name": "ACTION_SELECTED_BACKGROUND_COLOR_FOCUS",
234
+ "attributes": {},
235
+ "path": [
236
+ "action",
237
+ "selected",
238
+ "background",
239
+ "color",
240
+ "focus"
241
+ ]
242
+ },
243
+ "active": {
244
+ "value": "#064787",
245
+ "$type": "color",
246
+ "comment": "Used for the background of a selected action in the active state.",
247
+ "filePath": "src/tokens/action.tokens.json",
248
+ "isSource": true,
249
+ "original": {
250
+ "value": {
251
+ "default": "{color.blue.800}",
252
+ "dark": "{color.blue.100}"
253
+ },
254
+ "$type": "color",
255
+ "comment": "Used for the background of a selected action in the active state."
256
+ },
257
+ "name": "ACTION_SELECTED_BACKGROUND_COLOR_ACTIVE",
258
+ "attributes": {},
259
+ "path": [
260
+ "action",
261
+ "selected",
262
+ "background",
263
+ "color",
264
+ "active"
265
+ ]
266
+ }
267
+ }
268
+ },
269
+ "border": {
270
+ "color": {
271
+ "default": {
272
+ "value": "#1f75cb",
273
+ "$type": "color",
274
+ "comment": "Used for the border of a selected action in the default state.",
275
+ "filePath": "src/tokens/action.tokens.json",
276
+ "isSource": true,
277
+ "original": {
278
+ "value": "{action.selected.background.color.default}",
279
+ "$type": "color",
280
+ "comment": "Used for the border of a selected action in the default state."
281
+ },
282
+ "name": "ACTION_SELECTED_BORDER_COLOR_DEFAULT",
283
+ "attributes": {},
284
+ "path": [
285
+ "action",
286
+ "selected",
287
+ "border",
288
+ "color",
289
+ "default"
290
+ ]
291
+ },
292
+ "hover": {
293
+ "value": "#0b5cad",
294
+ "$type": "color",
295
+ "comment": "Used for the border of a selected action in the hover state.",
296
+ "filePath": "src/tokens/action.tokens.json",
297
+ "isSource": true,
298
+ "original": {
299
+ "value": "{action.selected.background.color.hover}",
300
+ "$type": "color",
301
+ "comment": "Used for the border of a selected action in the hover state."
302
+ },
303
+ "name": "ACTION_SELECTED_BORDER_COLOR_HOVER",
304
+ "attributes": {},
305
+ "path": [
306
+ "action",
307
+ "selected",
308
+ "border",
309
+ "color",
310
+ "hover"
311
+ ]
312
+ },
313
+ "focus": {
314
+ "value": "#0b5cad",
315
+ "$type": "color",
316
+ "comment": "Used for the border of a selected action in the focus state.",
317
+ "filePath": "src/tokens/action.tokens.json",
318
+ "isSource": true,
319
+ "original": {
320
+ "value": "{action.selected.background.color.focus}",
321
+ "$type": "color",
322
+ "comment": "Used for the border of a selected action in the focus state."
323
+ },
324
+ "name": "ACTION_SELECTED_BORDER_COLOR_FOCUS",
325
+ "attributes": {},
326
+ "path": [
327
+ "action",
328
+ "selected",
329
+ "border",
330
+ "color",
331
+ "focus"
332
+ ]
333
+ },
334
+ "active": {
335
+ "value": "#064787",
336
+ "$type": "color",
337
+ "comment": "Used for the border of a selected action in the active state.",
338
+ "filePath": "src/tokens/action.tokens.json",
339
+ "isSource": true,
340
+ "original": {
341
+ "value": "{action.selected.background.color.active}",
342
+ "$type": "color",
343
+ "comment": "Used for the border of a selected action in the active state."
344
+ },
345
+ "name": "ACTION_SELECTED_BORDER_COLOR_ACTIVE",
346
+ "attributes": {},
347
+ "path": [
348
+ "action",
349
+ "selected",
350
+ "border",
351
+ "color",
352
+ "active"
353
+ ]
354
+ }
355
+ }
356
+ }
357
+ },
80
358
  "neutral": {
81
359
  "foreground": {
82
360
  "color": {
@@ -706,6 +706,10 @@ $gl-action-confirm-foreground-color-default: $gl-color-blue-400; // Used for the
706
706
  $gl-action-neutral-border-color-default: $gl-color-alpha-0; // Used for the border of a neutral action in the default state.
707
707
  $gl-action-neutral-background-color-focus: $gl-action-neutral-background-color-hover; // Used for the background of a neutral action in the focus state.
708
708
  $gl-action-neutral-foreground-color-default: $gl-color-neutral-50; // Used for the foreground of a neutral action in the default state.
709
+ $gl-action-selected-background-color-active: $gl-color-blue-100; // Used for the background of a selected action in the active state.
710
+ $gl-action-selected-background-color-hover: $gl-color-blue-200; // Used for the background of a selected action in the hover state.
711
+ $gl-action-selected-background-color-default: $gl-color-blue-300; // Used for the background of a selected action in the default state.
712
+ $gl-action-selected-foreground-color-default: $gl-color-neutral-950; // Used for the foreground of a selected action in the default state.
709
713
  $gl-action-disabled-border-color: $gl-color-neutral-800; // Used for the border of a disabled action.
710
714
  $gl-action-disabled-background-color: $gl-color-neutral-900; // Used for the background of a disabled action.
711
715
  $gl-action-disabled-foreground-color: $gl-color-neutral-500; // Used for the foreground of a disabled action.
@@ -808,6 +812,11 @@ $gl-action-neutral-border-color-hover: $gl-action-neutral-border-color-default;
808
812
  $gl-action-neutral-foreground-color-active: $gl-action-neutral-foreground-color-default; // Used for the foreground of a neutral action in the active state.
809
813
  $gl-action-neutral-foreground-color-focus: $gl-action-neutral-foreground-color-default; // Used for the foreground of a neutral action in the focus state.
810
814
  $gl-action-neutral-foreground-color-hover: $gl-action-neutral-foreground-color-default; // Used for the foreground of a neutral action in the hover state.
815
+ $gl-action-selected-border-color-active: $gl-action-selected-background-color-active; // Used for the border of a selected action in the active state.
816
+ $gl-action-selected-border-color-hover: $gl-action-selected-background-color-hover; // Used for the border of a selected action in the hover state.
817
+ $gl-action-selected-border-color-default: $gl-action-selected-background-color-default; // Used for the border of a selected action in the default state.
818
+ $gl-action-selected-background-color-focus: $gl-action-selected-background-color-hover; // Used for the background of a selected action in the focus state.
819
+ $gl-action-selected-foreground-color-hover: $gl-action-selected-foreground-color-default; // Used for the foreground of a selected action in the hover state.
811
820
  $gl-button-selected-background-color-focus: $gl-button-default-primary-background-color-focus; // Used for the background of a selected button in the focus state.
812
821
  $gl-button-selected-foreground-color-active: $gl-button-default-primary-foreground-color-active; // Used for the foreground of a selected button in the active state.
813
822
  $gl-button-selected-foreground-color-focus: $gl-button-default-primary-foreground-color-focus; // Used for the foreground of a selected button in the focus state.
@@ -844,9 +853,12 @@ $gl-action-strong-neutral-border-color-focus: $gl-action-strong-neutral-border-c
844
853
  $gl-action-strong-neutral-foreground-color-focus: $gl-action-strong-neutral-foreground-color-hover; // Used for the foreground of a strong neutral action in the focus state.
845
854
  $gl-action-strong-confirm-border-color-focus: $gl-action-strong-confirm-border-color-hover; // Used for the border of a strong confirm action in the focus state.
846
855
  $gl-action-strong-confirm-foreground-color-focus: $gl-action-strong-confirm-foreground-color-hover; // Used for the foreground of a strong confirm action in the focus state.
856
+ $gl-action-selected-border-color-focus: $gl-action-selected-background-color-focus; // Used for the border of a selected action in the focus state.
857
+ $gl-action-selected-foreground-color-focus: $gl-action-selected-foreground-color-hover; // Used for the foreground of a selected action in the focus state.
847
858
  $gl-button-confirm-primary-foreground-color-focus: $gl-action-strong-confirm-foreground-color-focus; // Used for the foreground of a confirm (positive) primary button in the focus state.
848
859
  $gl-action-strong-neutral-border-color-active: $gl-action-strong-neutral-border-color-focus; // Used for the border of a strong neutral action in the active state.
849
860
  $gl-action-strong-neutral-foreground-color-active: $gl-action-strong-neutral-foreground-color-focus; // Used for the foreground of a strong neutral action in the active state.
850
861
  $gl-action-strong-confirm-border-color-active: $gl-action-strong-confirm-border-color-focus; // Used for the border of a strong confirm action in the active state.
851
862
  $gl-action-strong-confirm-foreground-color-active: $gl-action-strong-confirm-foreground-color-focus; // Used for the foreground of a strong confirm action in the active state.
863
+ $gl-action-selected-foreground-color-active: $gl-action-selected-foreground-color-focus; // Used for the foreground of a selected action in the active state.
852
864
  $gl-button-confirm-primary-foreground-color-active: $gl-action-strong-confirm-foreground-color-active; // Used for the foreground of a confirm (positive) primary button in the active state.
@@ -706,6 +706,10 @@ $gl-action-confirm-foreground-color-default: $gl-color-blue-500; // Used for the
706
706
  $gl-action-neutral-border-color-default: $gl-color-alpha-0; // Used for the border of a neutral action in the default state.
707
707
  $gl-action-neutral-background-color-focus: $gl-action-neutral-background-color-hover; // Used for the background of a neutral action in the focus state.
708
708
  $gl-action-neutral-foreground-color-default: $gl-color-neutral-900; // Used for the foreground of a neutral action in the default state.
709
+ $gl-action-selected-background-color-active: $gl-color-blue-800; // Used for the background of a selected action in the active state.
710
+ $gl-action-selected-background-color-hover: $gl-color-blue-700; // Used for the background of a selected action in the hover state.
711
+ $gl-action-selected-background-color-default: $gl-color-blue-500; // Used for the background of a selected action in the default state.
712
+ $gl-action-selected-foreground-color-default: $gl-color-neutral-0; // Used for the foreground of a selected action in the default state.
709
713
  $gl-action-disabled-border-color: $gl-color-neutral-100; // Used for the border of a disabled action.
710
714
  $gl-action-disabled-background-color: $gl-color-neutral-50; // Used for the background of a disabled action.
711
715
  $gl-action-disabled-foreground-color: $gl-color-neutral-400; // Used for the foreground of a disabled action.
@@ -808,6 +812,11 @@ $gl-action-neutral-border-color-hover: $gl-action-neutral-border-color-default;
808
812
  $gl-action-neutral-foreground-color-active: $gl-action-neutral-foreground-color-default; // Used for the foreground of a neutral action in the active state.
809
813
  $gl-action-neutral-foreground-color-focus: $gl-action-neutral-foreground-color-default; // Used for the foreground of a neutral action in the focus state.
810
814
  $gl-action-neutral-foreground-color-hover: $gl-action-neutral-foreground-color-default; // Used for the foreground of a neutral action in the hover state.
815
+ $gl-action-selected-border-color-active: $gl-action-selected-background-color-active; // Used for the border of a selected action in the active state.
816
+ $gl-action-selected-border-color-hover: $gl-action-selected-background-color-hover; // Used for the border of a selected action in the hover state.
817
+ $gl-action-selected-border-color-default: $gl-action-selected-background-color-default; // Used for the border of a selected action in the default state.
818
+ $gl-action-selected-background-color-focus: $gl-action-selected-background-color-hover; // Used for the background of a selected action in the focus state.
819
+ $gl-action-selected-foreground-color-hover: $gl-action-selected-foreground-color-default; // Used for the foreground of a selected action in the hover state.
811
820
  $gl-button-selected-background-color-focus: $gl-button-default-primary-background-color-focus; // Used for the background of a selected button in the focus state.
812
821
  $gl-button-selected-foreground-color-active: $gl-button-default-primary-foreground-color-active; // Used for the foreground of a selected button in the active state.
813
822
  $gl-button-selected-foreground-color-focus: $gl-button-default-primary-foreground-color-focus; // Used for the foreground of a selected button in the focus state.
@@ -844,9 +853,12 @@ $gl-action-strong-neutral-border-color-focus: $gl-action-strong-neutral-border-c
844
853
  $gl-action-strong-neutral-foreground-color-focus: $gl-action-strong-neutral-foreground-color-hover; // Used for the foreground of a strong neutral action in the focus state.
845
854
  $gl-action-strong-confirm-border-color-focus: $gl-action-strong-confirm-border-color-hover; // Used for the border of a strong confirm action in the focus state.
846
855
  $gl-action-strong-confirm-foreground-color-focus: $gl-action-strong-confirm-foreground-color-hover; // Used for the foreground of a strong confirm action in the focus state.
856
+ $gl-action-selected-border-color-focus: $gl-action-selected-background-color-focus; // Used for the border of a selected action in the focus state.
857
+ $gl-action-selected-foreground-color-focus: $gl-action-selected-foreground-color-hover; // Used for the foreground of a selected action in the focus state.
847
858
  $gl-button-confirm-primary-foreground-color-focus: $gl-action-strong-confirm-foreground-color-focus; // Used for the foreground of a confirm (positive) primary button in the focus state.
848
859
  $gl-action-strong-neutral-border-color-active: $gl-action-strong-neutral-border-color-focus; // Used for the border of a strong neutral action in the active state.
849
860
  $gl-action-strong-neutral-foreground-color-active: $gl-action-strong-neutral-foreground-color-focus; // Used for the foreground of a strong neutral action in the active state.
850
861
  $gl-action-strong-confirm-border-color-active: $gl-action-strong-confirm-border-color-focus; // Used for the border of a strong confirm action in the active state.
851
862
  $gl-action-strong-confirm-foreground-color-active: $gl-action-strong-confirm-foreground-color-focus; // Used for the foreground of a strong confirm action in the active state.
863
+ $gl-action-selected-foreground-color-active: $gl-action-selected-foreground-color-focus; // Used for the foreground of a selected action in the active state.
852
864
  $gl-button-confirm-primary-foreground-color-active: $gl-action-strong-confirm-foreground-color-active; // Used for the foreground of a confirm (positive) primary button in the active state.
@@ -6,6 +6,18 @@
6
6
  $gl-action-disabled-foreground-color: var(--gl-action-disabled-foreground-color);
7
7
  $gl-action-disabled-background-color: var(--gl-action-disabled-background-color);
8
8
  $gl-action-disabled-border-color: var(--gl-action-disabled-border-color);
9
+ $gl-action-selected-foreground-color-default: var(--gl-action-selected-foreground-color-default);
10
+ $gl-action-selected-foreground-color-hover: var(--gl-action-selected-foreground-color-hover);
11
+ $gl-action-selected-foreground-color-focus: var(--gl-action-selected-foreground-color-focus);
12
+ $gl-action-selected-foreground-color-active: var(--gl-action-selected-foreground-color-active);
13
+ $gl-action-selected-background-color-default: var(--gl-action-selected-background-color-default);
14
+ $gl-action-selected-background-color-hover: var(--gl-action-selected-background-color-hover);
15
+ $gl-action-selected-background-color-focus: var(--gl-action-selected-background-color-focus);
16
+ $gl-action-selected-background-color-active: var(--gl-action-selected-background-color-active);
17
+ $gl-action-selected-border-color-default: var(--gl-action-selected-border-color-default);
18
+ $gl-action-selected-border-color-hover: var(--gl-action-selected-border-color-hover);
19
+ $gl-action-selected-border-color-focus: var(--gl-action-selected-border-color-focus);
20
+ $gl-action-selected-border-color-active: var(--gl-action-selected-border-color-active);
9
21
  $gl-action-neutral-foreground-color-default: var(--gl-action-neutral-foreground-color-default);
10
22
  $gl-action-neutral-foreground-color-hover: var(--gl-action-neutral-foreground-color-hover);
11
23
  $gl-action-neutral-foreground-color-focus: var(--gl-action-neutral-foreground-color-focus);
@@ -33,8 +33,6 @@ export const HEX_REGEX = /^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$/;
33
33
 
34
34
  export const LEFT_MOUSE_BUTTON = 0;
35
35
 
36
- export const glThemes = ['indigo', 'blue', 'light-blue', 'green', 'red', 'light-red'];
37
-
38
36
  export const variantOptions = {
39
37
  primary: 'primary',
40
38
  secondary: 'secondary',
package/translations.js CHANGED
@@ -1,8 +1,11 @@
1
1
  /* eslint-disable import/no-default-export */
2
2
  export default {
3
3
  'ClearIconButton.title': 'Clear',
4
+ 'DuoChatContextItemPopover.DisabledReason': 'This item is disabled',
4
5
  'GlBreadcrumb.showMoreLabel': 'Show more breadcrumbs',
5
6
  'GlCollapsibleListbox.srOnlyResultsLabel': null,
7
+ 'GlDuoChatMessage.SelectedContextItemsTitleAssistantMessage': null,
8
+ 'GlDuoChatMessage.SelectedContextItemsTitleUserMessage': null,
6
9
  'GlDuoWorkflowPanel.collapseButtonTitle': 'Collapse',
7
10
  'GlDuoWorkflowPanel.expandButtonTitle': 'Expand',
8
11
  'GlDuoWorkflowPrompt.cancelButtonText': 'Cancel',