@gitlab/ui 91.4.0 → 91.6.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.
- package/CHANGELOG.md +14 -0
- package/dist/components/experimental/duo/chat/components/duo_chat_context/duo_chat_context_item_menu/duo_chat_context_item_menu.js +162 -0
- package/dist/components/experimental/duo/chat/components/duo_chat_context/duo_chat_context_item_popover/duo_chat_context_item_popover.js +9 -0
- package/dist/components/experimental/duo/chat/components/duo_chat_context/duo_chat_context_item_selections/duo_chat_context_item_selections.js +28 -2
- package/dist/components/experimental/duo/chat/components/duo_chat_context/mock_context_data.js +26 -11
- package/dist/components/experimental/duo/chat/components/duo_chat_context/utils.js +17 -0
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/tokens/build/js/tokens.dark.js +5 -5
- package/dist/tokens/css/tokens.dark.css +5 -5
- package/dist/tokens/js/tokens.dark.js +5 -5
- package/dist/tokens/json/tokens.dark.json +10 -25
- package/dist/tokens/json/tokens.json +5 -20
- package/dist/tokens/scss/_tokens.dark.scss +5 -5
- package/package.json +3 -3
- package/src/components/experimental/duo/chat/components/duo_chat_context/duo_chat_context_item_menu/duo_chat_context_item_menu.vue +168 -0
- package/src/components/experimental/duo/chat/components/duo_chat_context/duo_chat_context_item_popover/duo_chat_context_item_popover.vue +9 -0
- package/src/components/experimental/duo/chat/components/duo_chat_context/duo_chat_context_item_selections/duo_chat_context_item_selections.vue +28 -1
- package/src/components/experimental/duo/chat/components/duo_chat_context/mock_context_data.js +22 -10
- package/src/components/experimental/duo/chat/components/duo_chat_context/utils.js +29 -0
- package/src/tokens/build/css/tokens.dark.css +5 -5
- package/src/tokens/build/js/tokens.dark.js +5 -5
- package/src/tokens/build/json/tokens.dark.json +10 -25
- package/src/tokens/build/json/tokens.json +5 -20
- package/src/tokens/build/scss/_tokens.dark.scss +5 -5
- package/src/tokens/contextual/alert.tokens.json +5 -20
- package/translations.js +1 -0
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
function categoryValidator(category) {
|
|
2
|
+
return Boolean(category && category.value && category.label && category.icon);
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
export function categoriesValidator(categories) {
|
|
6
|
+
return Array.isArray(categories) && categories.every((category) => categoryValidator(category));
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
function disabledReasonsValidator(disabledReasons) {
|
|
10
|
+
return (
|
|
11
|
+
disabledReasons === undefined ||
|
|
12
|
+
(Array.isArray(disabledReasons) &&
|
|
13
|
+
disabledReasons.every((reason) => typeof reason === 'string'))
|
|
14
|
+
);
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
function contextItemValidator(item) {
|
|
18
|
+
return Boolean(
|
|
19
|
+
item &&
|
|
20
|
+
item.id &&
|
|
21
|
+
item.type &&
|
|
22
|
+
typeof item.isEnabled === 'boolean' &&
|
|
23
|
+
disabledReasonsValidator(item.disabledReasons)
|
|
24
|
+
);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
export function contextItemsValidator(items) {
|
|
28
|
+
return Array.isArray(items) && items.every((item) => contextItemValidator(item));
|
|
29
|
+
}
|
|
@@ -666,15 +666,15 @@
|
|
|
666
666
|
--gl-avatar-fallback-text-color-red: var(--gl-color-red-200); /* Red text color for avatar fallback with no particular meaning. */
|
|
667
667
|
--gl-avatar-border-color-hover: var(--gl-color-alpha-light-24); /* Used to increase the edge definition of an avatar in the hover state. */
|
|
668
668
|
--gl-avatar-border-color-default: var(--gl-color-alpha-light-8); /* Used to define the edge of an avatar. */
|
|
669
|
-
--gl-alert-danger-border-bottom-color: var(--gl-color-
|
|
669
|
+
--gl-alert-danger-border-bottom-color: var(--gl-color-alpha-0); /* Used for the border bottom color of a danger alert. */
|
|
670
670
|
--gl-alert-danger-border-top-color: var(--gl-color-red-400); /* Used for the border color of a danger alert. */
|
|
671
|
-
--gl-alert-warning-border-bottom-color: var(--gl-color-
|
|
671
|
+
--gl-alert-warning-border-bottom-color: var(--gl-color-alpha-0); /* Used for the border bottom color of a warning alert. */
|
|
672
672
|
--gl-alert-warning-border-top-color: var(--gl-color-orange-400); /* Used for the border color of a warning alert. */
|
|
673
|
-
--gl-alert-success-border-bottom-color: var(--gl-color-
|
|
673
|
+
--gl-alert-success-border-bottom-color: var(--gl-color-alpha-0); /* Used for the border bottom color of a success alert. */
|
|
674
674
|
--gl-alert-success-border-top-color: var(--gl-color-green-400); /* Used for the border color of a success alert. */
|
|
675
|
-
--gl-alert-info-border-bottom-color: var(--gl-color-
|
|
675
|
+
--gl-alert-info-border-bottom-color: var(--gl-color-alpha-0); /* Used for the border bottom color of an info alert. */
|
|
676
676
|
--gl-alert-info-border-top-color: var(--gl-color-blue-400); /* Used for the border color of an info alert. */
|
|
677
|
-
--gl-alert-neutral-border-bottom-color: var(--gl-color-
|
|
677
|
+
--gl-alert-neutral-border-bottom-color: var(--gl-color-alpha-0); /* Used for the border bottom color of a neutral alert. */
|
|
678
678
|
--gl-alert-neutral-border-top-color: var(--gl-color-neutral-400); /* Used for the border center color of a neutral alert. */
|
|
679
679
|
--gl-border-color-transparent: var(--gl-color-alpha-0); /* Used when a border needs to be present, but not visibly perceived. */
|
|
680
680
|
--gl-border-color-strong: var(--gl-color-neutral-400); /* Used for a distinct border that emphasizes an edge or boundaries. */
|
|
@@ -316,23 +316,23 @@ export const DATA_VIZ_ORANGE_950 = '#fae8d1';
|
|
|
316
316
|
export const GL_ALERT_NEUTRAL_TITLE_COLOR = '#fff'; // Used for the title color of a neutral alert.
|
|
317
317
|
export const GL_ALERT_NEUTRAL_BACKGROUND_COLOR = '#28272d'; // Used for the background color of a neutral alert.
|
|
318
318
|
export const GL_ALERT_NEUTRAL_BORDER_TOP_COLOR = '#89888d'; // Used for the border center color of a neutral alert.
|
|
319
|
-
export const GL_ALERT_NEUTRAL_BORDER_BOTTOM_COLOR = '
|
|
319
|
+
export const GL_ALERT_NEUTRAL_BORDER_BOTTOM_COLOR = 'transparent'; // Used for the border bottom color of a neutral alert.
|
|
320
320
|
export const GL_ALERT_INFO_TITLE_COLOR = '#63a6e9'; // Used for the title color of an info alert.
|
|
321
321
|
export const GL_ALERT_INFO_BACKGROUND_COLOR = '#28272d'; // Used for the background color of an info alert.
|
|
322
322
|
export const GL_ALERT_INFO_BORDER_TOP_COLOR = '#428fdc'; // Used for the border color of an info alert.
|
|
323
|
-
export const GL_ALERT_INFO_BORDER_BOTTOM_COLOR = '
|
|
323
|
+
export const GL_ALERT_INFO_BORDER_BOTTOM_COLOR = 'transparent'; // Used for the border bottom color of an info alert.
|
|
324
324
|
export const GL_ALERT_SUCCESS_TITLE_COLOR = '#52b87a'; // Used for the title color of a success alert.
|
|
325
325
|
export const GL_ALERT_SUCCESS_BACKGROUND_COLOR = '#28272d'; // Used for the background color of a success alert.
|
|
326
326
|
export const GL_ALERT_SUCCESS_BORDER_TOP_COLOR = '#2da160'; // Used for the border color of a success alert.
|
|
327
|
-
export const GL_ALERT_SUCCESS_BORDER_BOTTOM_COLOR = '
|
|
327
|
+
export const GL_ALERT_SUCCESS_BORDER_BOTTOM_COLOR = 'transparent'; // Used for the border bottom color of a success alert.
|
|
328
328
|
export const GL_ALERT_WARNING_TITLE_COLOR = '#d99530'; // Used for the title color of a warning alert.
|
|
329
329
|
export const GL_ALERT_WARNING_BACKGROUND_COLOR = '#28272d'; // Used for the background color of a warning alert.
|
|
330
330
|
export const GL_ALERT_WARNING_BORDER_TOP_COLOR = '#c17d10'; // Used for the border color of a warning alert.
|
|
331
|
-
export const GL_ALERT_WARNING_BORDER_BOTTOM_COLOR = '
|
|
331
|
+
export const GL_ALERT_WARNING_BORDER_BOTTOM_COLOR = 'transparent'; // Used for the border bottom color of a warning alert.
|
|
332
332
|
export const GL_ALERT_DANGER_TITLE_COLOR = '#f57f6c'; // Used for the title color of a danger alert.
|
|
333
333
|
export const GL_ALERT_DANGER_BACKGROUND_COLOR = '#28272d'; // Used for the background color of a danger alert.
|
|
334
334
|
export const GL_ALERT_DANGER_BORDER_TOP_COLOR = '#ec5941'; // Used for the border color of a danger alert.
|
|
335
|
-
export const GL_ALERT_DANGER_BORDER_BOTTOM_COLOR = '
|
|
335
|
+
export const GL_ALERT_DANGER_BORDER_BOTTOM_COLOR = 'transparent'; // Used for the border bottom color of a danger alert.
|
|
336
336
|
export const GL_AVATAR_BORDER_COLOR_DEFAULT = 'rgba(255, 255, 255, 0.08)'; // Used to define the edge of an avatar.
|
|
337
337
|
export const GL_AVATAR_BORDER_COLOR_HOVER = 'rgba(255, 255, 255, 0.24)'; // Used to increase the edge definition of an avatar in the hover state.
|
|
338
338
|
export const GL_AVATAR_FALLBACK_TEXT_COLOR_RED = '#fcb5aa'; // Red text color for avatar fallback with no particular meaning.
|
|
@@ -6353,16 +6353,13 @@
|
|
|
6353
6353
|
},
|
|
6354
6354
|
"bottom": {
|
|
6355
6355
|
"color": {
|
|
6356
|
-
"value": "
|
|
6356
|
+
"value": "transparent",
|
|
6357
6357
|
"$type": "color",
|
|
6358
6358
|
"comment": "Used for the border bottom color of a neutral alert.",
|
|
6359
6359
|
"filePath": "src/tokens/contextual/alert.tokens.json",
|
|
6360
6360
|
"isSource": true,
|
|
6361
6361
|
"original": {
|
|
6362
|
-
"value": {
|
|
6363
|
-
"default": "{color.alpha.0}",
|
|
6364
|
-
"dark": "{color.neutral.800}"
|
|
6365
|
-
},
|
|
6362
|
+
"value": "{color.alpha.0}",
|
|
6366
6363
|
"$type": "color",
|
|
6367
6364
|
"comment": "Used for the border bottom color of a neutral alert."
|
|
6368
6365
|
},
|
|
@@ -6459,16 +6456,13 @@
|
|
|
6459
6456
|
},
|
|
6460
6457
|
"bottom": {
|
|
6461
6458
|
"color": {
|
|
6462
|
-
"value": "
|
|
6459
|
+
"value": "transparent",
|
|
6463
6460
|
"$type": "color",
|
|
6464
6461
|
"comment": "Used for the border bottom color of an info alert.",
|
|
6465
6462
|
"filePath": "src/tokens/contextual/alert.tokens.json",
|
|
6466
6463
|
"isSource": true,
|
|
6467
6464
|
"original": {
|
|
6468
|
-
"value": {
|
|
6469
|
-
"default": "{color.alpha.0}",
|
|
6470
|
-
"dark": "{color.neutral.800}"
|
|
6471
|
-
},
|
|
6465
|
+
"value": "{color.alpha.0}",
|
|
6472
6466
|
"$type": "color",
|
|
6473
6467
|
"comment": "Used for the border bottom color of an info alert."
|
|
6474
6468
|
},
|
|
@@ -6565,16 +6559,13 @@
|
|
|
6565
6559
|
},
|
|
6566
6560
|
"bottom": {
|
|
6567
6561
|
"color": {
|
|
6568
|
-
"value": "
|
|
6562
|
+
"value": "transparent",
|
|
6569
6563
|
"$type": "color",
|
|
6570
6564
|
"comment": "Used for the border bottom color of a success alert.",
|
|
6571
6565
|
"filePath": "src/tokens/contextual/alert.tokens.json",
|
|
6572
6566
|
"isSource": true,
|
|
6573
6567
|
"original": {
|
|
6574
|
-
"value": {
|
|
6575
|
-
"default": "{color.alpha.0}",
|
|
6576
|
-
"dark": "{color.neutral.800}"
|
|
6577
|
-
},
|
|
6568
|
+
"value": "{color.alpha.0}",
|
|
6578
6569
|
"$type": "color",
|
|
6579
6570
|
"comment": "Used for the border bottom color of a success alert."
|
|
6580
6571
|
},
|
|
@@ -6671,16 +6662,13 @@
|
|
|
6671
6662
|
},
|
|
6672
6663
|
"bottom": {
|
|
6673
6664
|
"color": {
|
|
6674
|
-
"value": "
|
|
6665
|
+
"value": "transparent",
|
|
6675
6666
|
"$type": "color",
|
|
6676
6667
|
"comment": "Used for the border bottom color of a warning alert.",
|
|
6677
6668
|
"filePath": "src/tokens/contextual/alert.tokens.json",
|
|
6678
6669
|
"isSource": true,
|
|
6679
6670
|
"original": {
|
|
6680
|
-
"value": {
|
|
6681
|
-
"default": "{color.alpha.0}",
|
|
6682
|
-
"dark": "{color.neutral.800}"
|
|
6683
|
-
},
|
|
6671
|
+
"value": "{color.alpha.0}",
|
|
6684
6672
|
"$type": "color",
|
|
6685
6673
|
"comment": "Used for the border bottom color of a warning alert."
|
|
6686
6674
|
},
|
|
@@ -6777,16 +6765,13 @@
|
|
|
6777
6765
|
},
|
|
6778
6766
|
"bottom": {
|
|
6779
6767
|
"color": {
|
|
6780
|
-
"value": "
|
|
6768
|
+
"value": "transparent",
|
|
6781
6769
|
"$type": "color",
|
|
6782
6770
|
"comment": "Used for the border bottom color of a danger alert.",
|
|
6783
6771
|
"filePath": "src/tokens/contextual/alert.tokens.json",
|
|
6784
6772
|
"isSource": true,
|
|
6785
6773
|
"original": {
|
|
6786
|
-
"value": {
|
|
6787
|
-
"default": "{color.alpha.0}",
|
|
6788
|
-
"dark": "{color.neutral.800}"
|
|
6789
|
-
},
|
|
6774
|
+
"value": "{color.alpha.0}",
|
|
6790
6775
|
"$type": "color",
|
|
6791
6776
|
"comment": "Used for the border bottom color of a danger alert."
|
|
6792
6777
|
},
|
|
@@ -6359,10 +6359,7 @@
|
|
|
6359
6359
|
"filePath": "src/tokens/contextual/alert.tokens.json",
|
|
6360
6360
|
"isSource": true,
|
|
6361
6361
|
"original": {
|
|
6362
|
-
"value": {
|
|
6363
|
-
"default": "{color.alpha.0}",
|
|
6364
|
-
"dark": "{color.neutral.800}"
|
|
6365
|
-
},
|
|
6362
|
+
"value": "{color.alpha.0}",
|
|
6366
6363
|
"$type": "color",
|
|
6367
6364
|
"comment": "Used for the border bottom color of a neutral alert."
|
|
6368
6365
|
},
|
|
@@ -6465,10 +6462,7 @@
|
|
|
6465
6462
|
"filePath": "src/tokens/contextual/alert.tokens.json",
|
|
6466
6463
|
"isSource": true,
|
|
6467
6464
|
"original": {
|
|
6468
|
-
"value": {
|
|
6469
|
-
"default": "{color.alpha.0}",
|
|
6470
|
-
"dark": "{color.neutral.800}"
|
|
6471
|
-
},
|
|
6465
|
+
"value": "{color.alpha.0}",
|
|
6472
6466
|
"$type": "color",
|
|
6473
6467
|
"comment": "Used for the border bottom color of an info alert."
|
|
6474
6468
|
},
|
|
@@ -6571,10 +6565,7 @@
|
|
|
6571
6565
|
"filePath": "src/tokens/contextual/alert.tokens.json",
|
|
6572
6566
|
"isSource": true,
|
|
6573
6567
|
"original": {
|
|
6574
|
-
"value": {
|
|
6575
|
-
"default": "{color.alpha.0}",
|
|
6576
|
-
"dark": "{color.neutral.800}"
|
|
6577
|
-
},
|
|
6568
|
+
"value": "{color.alpha.0}",
|
|
6578
6569
|
"$type": "color",
|
|
6579
6570
|
"comment": "Used for the border bottom color of a success alert."
|
|
6580
6571
|
},
|
|
@@ -6677,10 +6668,7 @@
|
|
|
6677
6668
|
"filePath": "src/tokens/contextual/alert.tokens.json",
|
|
6678
6669
|
"isSource": true,
|
|
6679
6670
|
"original": {
|
|
6680
|
-
"value": {
|
|
6681
|
-
"default": "{color.alpha.0}",
|
|
6682
|
-
"dark": "{color.neutral.800}"
|
|
6683
|
-
},
|
|
6671
|
+
"value": "{color.alpha.0}",
|
|
6684
6672
|
"$type": "color",
|
|
6685
6673
|
"comment": "Used for the border bottom color of a warning alert."
|
|
6686
6674
|
},
|
|
@@ -6783,10 +6771,7 @@
|
|
|
6783
6771
|
"filePath": "src/tokens/contextual/alert.tokens.json",
|
|
6784
6772
|
"isSource": true,
|
|
6785
6773
|
"original": {
|
|
6786
|
-
"value": {
|
|
6787
|
-
"default": "{color.alpha.0}",
|
|
6788
|
-
"dark": "{color.neutral.800}"
|
|
6789
|
-
},
|
|
6774
|
+
"value": "{color.alpha.0}",
|
|
6790
6775
|
"$type": "color",
|
|
6791
6776
|
"comment": "Used for the border bottom color of a danger alert."
|
|
6792
6777
|
},
|
|
@@ -664,15 +664,15 @@ $gl-avatar-fallback-text-color-purple: $gl-color-purple-200; // Purple text colo
|
|
|
664
664
|
$gl-avatar-fallback-text-color-red: $gl-color-red-200; // Red text color for avatar fallback with no particular meaning.
|
|
665
665
|
$gl-avatar-border-color-hover: $gl-color-alpha-light-24; // Used to increase the edge definition of an avatar in the hover state.
|
|
666
666
|
$gl-avatar-border-color-default: $gl-color-alpha-light-8; // Used to define the edge of an avatar.
|
|
667
|
-
$gl-alert-danger-border-bottom-color: $gl-color-
|
|
667
|
+
$gl-alert-danger-border-bottom-color: $gl-color-alpha-0; // Used for the border bottom color of a danger alert.
|
|
668
668
|
$gl-alert-danger-border-top-color: $gl-color-red-400; // Used for the border color of a danger alert.
|
|
669
|
-
$gl-alert-warning-border-bottom-color: $gl-color-
|
|
669
|
+
$gl-alert-warning-border-bottom-color: $gl-color-alpha-0; // Used for the border bottom color of a warning alert.
|
|
670
670
|
$gl-alert-warning-border-top-color: $gl-color-orange-400; // Used for the border color of a warning alert.
|
|
671
|
-
$gl-alert-success-border-bottom-color: $gl-color-
|
|
671
|
+
$gl-alert-success-border-bottom-color: $gl-color-alpha-0; // Used for the border bottom color of a success alert.
|
|
672
672
|
$gl-alert-success-border-top-color: $gl-color-green-400; // Used for the border color of a success alert.
|
|
673
|
-
$gl-alert-info-border-bottom-color: $gl-color-
|
|
673
|
+
$gl-alert-info-border-bottom-color: $gl-color-alpha-0; // Used for the border bottom color of an info alert.
|
|
674
674
|
$gl-alert-info-border-top-color: $gl-color-blue-400; // Used for the border color of an info alert.
|
|
675
|
-
$gl-alert-neutral-border-bottom-color: $gl-color-
|
|
675
|
+
$gl-alert-neutral-border-bottom-color: $gl-color-alpha-0; // Used for the border bottom color of a neutral alert.
|
|
676
676
|
$gl-alert-neutral-border-top-color: $gl-color-neutral-400; // Used for the border center color of a neutral alert.
|
|
677
677
|
$gl-border-color-transparent: $gl-color-alpha-0; // Used when a border needs to be present, but not visibly perceived.
|
|
678
678
|
$gl-border-color-strong: $gl-color-neutral-400; // Used for a distinct border that emphasizes an edge or boundaries.
|
|
@@ -34,10 +34,7 @@
|
|
|
34
34
|
},
|
|
35
35
|
"bottom": {
|
|
36
36
|
"color": {
|
|
37
|
-
"$value": {
|
|
38
|
-
"default": "{color.alpha.0}",
|
|
39
|
-
"dark": "{color.neutral.800}"
|
|
40
|
-
},
|
|
37
|
+
"$value": "{color.alpha.0}",
|
|
41
38
|
"$type": "color",
|
|
42
39
|
"$description": "Used for the border bottom color of a neutral alert."
|
|
43
40
|
}
|
|
@@ -78,10 +75,7 @@
|
|
|
78
75
|
},
|
|
79
76
|
"bottom": {
|
|
80
77
|
"color": {
|
|
81
|
-
"$value": {
|
|
82
|
-
"default": "{color.alpha.0}",
|
|
83
|
-
"dark": "{color.neutral.800}"
|
|
84
|
-
},
|
|
78
|
+
"$value": "{color.alpha.0}",
|
|
85
79
|
"$type": "color",
|
|
86
80
|
"$description": "Used for the border bottom color of an info alert."
|
|
87
81
|
}
|
|
@@ -122,10 +116,7 @@
|
|
|
122
116
|
},
|
|
123
117
|
"bottom": {
|
|
124
118
|
"color": {
|
|
125
|
-
"$value": {
|
|
126
|
-
"default": "{color.alpha.0}",
|
|
127
|
-
"dark": "{color.neutral.800}"
|
|
128
|
-
},
|
|
119
|
+
"$value": "{color.alpha.0}",
|
|
129
120
|
"$type": "color",
|
|
130
121
|
"$description": "Used for the border bottom color of a success alert."
|
|
131
122
|
}
|
|
@@ -166,10 +157,7 @@
|
|
|
166
157
|
},
|
|
167
158
|
"bottom": {
|
|
168
159
|
"color": {
|
|
169
|
-
"$value": {
|
|
170
|
-
"default": "{color.alpha.0}",
|
|
171
|
-
"dark": "{color.neutral.800}"
|
|
172
|
-
},
|
|
160
|
+
"$value": "{color.alpha.0}",
|
|
173
161
|
"$type": "color",
|
|
174
162
|
"$description": "Used for the border bottom color of a warning alert."
|
|
175
163
|
}
|
|
@@ -210,10 +198,7 @@
|
|
|
210
198
|
},
|
|
211
199
|
"bottom": {
|
|
212
200
|
"color": {
|
|
213
|
-
"$value": {
|
|
214
|
-
"default": "{color.alpha.0}",
|
|
215
|
-
"dark": "{color.neutral.800}"
|
|
216
|
-
},
|
|
201
|
+
"$value": "{color.alpha.0}",
|
|
217
202
|
"$type": "color",
|
|
218
203
|
"$description": "Used for the border bottom color of a danger alert."
|
|
219
204
|
}
|
package/translations.js
CHANGED
|
@@ -8,6 +8,7 @@ export default {
|
|
|
8
8
|
'GlBreadcrumb.showMoreLabel': 'Show more breadcrumbs',
|
|
9
9
|
'GlBroadcastMessage.closeButtonTitle': 'Dismiss',
|
|
10
10
|
'GlCollapsibleListbox.srOnlyResultsLabel': null,
|
|
11
|
+
'GlDuoChatContextItemMenu.selectedContextItemsTitle': 'Included references',
|
|
11
12
|
'GlDuoChatMessage.SelectedContextItemsTitleAssistantMessage': null,
|
|
12
13
|
'GlDuoChatMessage.SelectedContextItemsTitleUserMessage': null,
|
|
13
14
|
'GlDuoWorkflowPanel.collapseButtonTitle': 'Collapse',
|