@brightspace-ui/core 2.16.1 → 2.17.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/components/tag-list/tag-list-item-mixin.js +76 -9
- package/components/tag-list/tag-list.js +14 -2
- package/lang/ar.js +5 -0
- package/lang/cy.js +5 -0
- package/lang/da.js +5 -0
- package/lang/de.js +5 -0
- package/lang/en.js +5 -0
- package/lang/es-es.js +5 -0
- package/lang/es.js +5 -0
- package/lang/fr-fr.js +5 -0
- package/lang/fr.js +5 -0
- package/lang/hi.js +5 -0
- package/lang/ja.js +5 -0
- package/lang/ko.js +5 -0
- package/lang/nl.js +5 -0
- package/lang/pt.js +5 -0
- package/lang/sv.js +5 -0
- package/lang/tr.js +5 -0
- package/lang/zh-cn.js +5 -0
- package/lang/zh-tw.js +5 -0
- package/package.json +1 -1
|
@@ -10,6 +10,13 @@ import { labelStyles } from '../typography/styles.js';
|
|
|
10
10
|
import { LocalizeCoreElement } from '../../helpers/localize-core-element.js';
|
|
11
11
|
import { RtlMixin } from '../../mixins/rtl-mixin.js';
|
|
12
12
|
|
|
13
|
+
const keyCodes = {
|
|
14
|
+
BACKSPACE: 8,
|
|
15
|
+
DELETE: 46,
|
|
16
|
+
ENTER: 13,
|
|
17
|
+
SPACE: 32
|
|
18
|
+
};
|
|
19
|
+
|
|
13
20
|
export const TagListItemMixin = superclass => class extends LocalizeCoreElement(RtlMixin(superclass)) {
|
|
14
21
|
|
|
15
22
|
static get properties() {
|
|
@@ -22,7 +29,12 @@ export const TagListItemMixin = superclass => class extends LocalizeCoreElement(
|
|
|
22
29
|
/**
|
|
23
30
|
* @ignore
|
|
24
31
|
*/
|
|
25
|
-
|
|
32
|
+
keyboardTooltipItem: { type: Boolean, attribute: 'keyboard-tooltip-item' },
|
|
33
|
+
/**
|
|
34
|
+
* @ignore
|
|
35
|
+
*/
|
|
36
|
+
role: { type: String, reflect: true },
|
|
37
|
+
_displayKeyboardTooltip: { type: Boolean }
|
|
26
38
|
};
|
|
27
39
|
}
|
|
28
40
|
|
|
@@ -48,7 +60,6 @@ export const TagListItemMixin = superclass => class extends LocalizeCoreElement(
|
|
|
48
60
|
max-width: 320px;
|
|
49
61
|
min-width: 0;
|
|
50
62
|
outline: none;
|
|
51
|
-
padding: 0.25rem 0.6rem;
|
|
52
63
|
transition: background-color 0.2s ease-out, box-shadow 0.2s ease-out;
|
|
53
64
|
white-space: nowrap;
|
|
54
65
|
}
|
|
@@ -57,11 +68,12 @@ export const TagListItemMixin = superclass => class extends LocalizeCoreElement(
|
|
|
57
68
|
}
|
|
58
69
|
:host([dir="rtl"]) .tag-list-item-container.tag-list-item-container-clearable {
|
|
59
70
|
padding-left: 0.25rem;
|
|
60
|
-
padding-right: 0
|
|
71
|
+
padding-right: 0;
|
|
61
72
|
}
|
|
62
73
|
.tag-list-item-content {
|
|
63
74
|
outline: none;
|
|
64
75
|
overflow: hidden;
|
|
76
|
+
padding: 0.25rem 0.6rem;
|
|
65
77
|
text-overflow: ellipsis;
|
|
66
78
|
}
|
|
67
79
|
:host(:focus-visible) .tag-list-item-container,
|
|
@@ -82,9 +94,12 @@ export const TagListItemMixin = superclass => class extends LocalizeCoreElement(
|
|
|
82
94
|
}
|
|
83
95
|
}
|
|
84
96
|
.d2l-tag-list-item-clear-button {
|
|
97
|
+
margin-left: -0.6rem;
|
|
85
98
|
padding-left: 3px;
|
|
86
99
|
}
|
|
87
100
|
:host([dir="rtl"]) .d2l-tag-list-item-clear-button {
|
|
101
|
+
margin-left: 0;
|
|
102
|
+
margin-right: -0.6rem;
|
|
88
103
|
padding-left: 0;
|
|
89
104
|
padding-right: 3px;
|
|
90
105
|
}
|
|
@@ -96,6 +111,15 @@ export const TagListItemMixin = superclass => class extends LocalizeCoreElement(
|
|
|
96
111
|
d2l-button-icon:hover {
|
|
97
112
|
--d2l-button-icon-fill-color: var(--d2l-color-tungsten);
|
|
98
113
|
}
|
|
114
|
+
d2l-tooltip ul {
|
|
115
|
+
list-style: none;
|
|
116
|
+
margin-bottom: 0;
|
|
117
|
+
margin-top: 0.2rem;
|
|
118
|
+
padding: 0;
|
|
119
|
+
}
|
|
120
|
+
.d2l-tag-list-item-tooltip-title-key {
|
|
121
|
+
font-weight: 600;
|
|
122
|
+
}
|
|
99
123
|
`];
|
|
100
124
|
}
|
|
101
125
|
|
|
@@ -103,21 +127,30 @@ export const TagListItemMixin = superclass => class extends LocalizeCoreElement(
|
|
|
103
127
|
super();
|
|
104
128
|
this.clearable = false;
|
|
105
129
|
/** @ignore */
|
|
130
|
+
this.keyboardTooltipItem = false;
|
|
131
|
+
/** @ignore */
|
|
106
132
|
this.role = 'listitem';
|
|
133
|
+
this._displayKeyboardTooltip = false;
|
|
107
134
|
this._id = getUniqueId();
|
|
135
|
+
this._tooltipShown = false;
|
|
108
136
|
}
|
|
109
137
|
|
|
110
138
|
firstUpdated(changedProperties) {
|
|
111
139
|
super.firstUpdated(changedProperties);
|
|
112
140
|
|
|
113
141
|
const container = this.shadowRoot.querySelector('.tag-list-item-content');
|
|
114
|
-
this.addEventListener('focus', (e) => {
|
|
142
|
+
this.addEventListener('focus', async(e) => {
|
|
115
143
|
// ignore focus events coming from inside the tag content
|
|
116
144
|
if (e.composedPath()[0] !== this) return;
|
|
145
|
+
|
|
146
|
+
this._displayKeyboardTooltip = (this.keyboardTooltipItem && !this._tooltipShown);
|
|
147
|
+
await this.updateComplete;
|
|
148
|
+
|
|
117
149
|
/** @ignore */
|
|
118
150
|
container.dispatchEvent(new FocusEvent('focus', { bubbles: false, cancelable: true }));
|
|
119
151
|
});
|
|
120
152
|
this.addEventListener('blur', () => {
|
|
153
|
+
this._displayKeyboardTooltip = false;
|
|
121
154
|
/** @ignore */
|
|
122
155
|
container.dispatchEvent(new FocusEvent('blur', { bubbles: false, cancelable: true }));
|
|
123
156
|
});
|
|
@@ -143,28 +176,52 @@ export const TagListItemMixin = superclass => class extends LocalizeCoreElement(
|
|
|
143
176
|
}
|
|
144
177
|
|
|
145
178
|
_handleKeydown(e) {
|
|
146
|
-
const
|
|
147
|
-
if (
|
|
179
|
+
const openKeys = e.keyCode === keyCodes.SPACE || e.keyCode === keyCodes.ENTER;
|
|
180
|
+
if (this._displayKeyboardTooltip && openKeys) this._displayKeyboardTooltip = false;
|
|
181
|
+
|
|
182
|
+
const clearKeys = e.keyCode === keyCodes.BACKSPACE || e.keyCode === keyCodes.DELETE;
|
|
183
|
+
if (!this.clearable || !clearKeys) return;
|
|
148
184
|
e.preventDefault();
|
|
149
185
|
this.handleClearItem(e);
|
|
150
186
|
}
|
|
151
187
|
|
|
188
|
+
_handleTooltipHide() {
|
|
189
|
+
if (this._tooltipShown) this._displayKeyboardTooltip = false;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
_handleTooltipShow() {
|
|
193
|
+
this._tooltipShown = true;
|
|
194
|
+
/** @ignore */
|
|
195
|
+
this.dispatchEvent(new CustomEvent(
|
|
196
|
+
'd2l-tag-list-item-tooltip-show',
|
|
197
|
+
{ bubbles: true, composed: true }
|
|
198
|
+
));
|
|
199
|
+
}
|
|
200
|
+
|
|
152
201
|
_renderTag(tagContent, hasTruncationTooltip) {
|
|
153
202
|
const buttonText = typeof tagContent === 'object'
|
|
154
203
|
? this.localize('components.tag-list.clear', { value: '' })
|
|
155
204
|
: this.localize('components.tag-list.clear', { value: tagContent });
|
|
156
|
-
const
|
|
157
|
-
<d2l-tooltip for="${this._id}"
|
|
205
|
+
const tooltipTagOverflow = hasTruncationTooltip ? html`
|
|
206
|
+
<d2l-tooltip for="${this._id}" show-truncated-only>
|
|
158
207
|
${tagContent}
|
|
159
208
|
</d2l-tooltip>
|
|
160
209
|
` : null;
|
|
210
|
+
const tooltipKeyboardInstructions = this._displayKeyboardTooltip ? html`
|
|
211
|
+
<d2l-tooltip
|
|
212
|
+
align="start"
|
|
213
|
+
@d2l-tooltip-hide="${this._handleTooltipHide}"
|
|
214
|
+
@d2l-tooltip-show="${this._handleTooltipShow}"
|
|
215
|
+
for="${this._id}">
|
|
216
|
+
${this._renderTooltipContent()}
|
|
217
|
+
</d2l-tooltip>` : null;
|
|
161
218
|
const containerClasses = {
|
|
162
219
|
'd2l-label-text': true,
|
|
163
220
|
'tag-list-item-container': true,
|
|
164
221
|
'tag-list-item-container-clearable': this.clearable
|
|
165
222
|
};
|
|
166
223
|
return html`
|
|
167
|
-
${
|
|
224
|
+
${tooltipKeyboardInstructions || tooltipTagOverflow}
|
|
168
225
|
<div class="${classMap(containerClasses)}">
|
|
169
226
|
<div class="tag-list-item-content" id="${this._id}" tabindex="-1">${tagContent}</div>
|
|
170
227
|
${this.clearable ? html`
|
|
@@ -179,4 +236,14 @@ export const TagListItemMixin = superclass => class extends LocalizeCoreElement(
|
|
|
179
236
|
`;
|
|
180
237
|
}
|
|
181
238
|
|
|
239
|
+
_renderTooltipContent() {
|
|
240
|
+
return html`
|
|
241
|
+
<div class="d2l-tag-list-item-tooltip-title-key">${this.localize('components.tag-list-item.tooltip-title')}</div>
|
|
242
|
+
<ul>
|
|
243
|
+
<li><span class="d2l-tag-list-item-tooltip-title-key">${this.localize('components.tag-list-item.tooltip-arrow-keys')}</span> - ${this.localize('components.tag-list-item.tooltip-arrow-keys-desc')}</li>
|
|
244
|
+
<li><span class="d2l-tag-list-item-tooltip-title-key">${this.localize('components.tag-list-item.tooltip-delete-key')}</span> - ${this.localize('components.tag-list-item.tooltip-delete-key-desc')}</li>
|
|
245
|
+
</ul>
|
|
246
|
+
`;
|
|
247
|
+
}
|
|
248
|
+
|
|
182
249
|
};
|
|
@@ -93,6 +93,7 @@ class TagList extends LocalizeCoreElement(InteractiveMixin(ArrowKeysMixin(LitEle
|
|
|
93
93
|
this._clearButtonWidth = 0;
|
|
94
94
|
this._contentReady = false;
|
|
95
95
|
this._hasResized = false;
|
|
96
|
+
this._hasShownKeyboardTooltip = false;
|
|
96
97
|
this._itemHeight = 0;
|
|
97
98
|
this._listContainerObserver = null;
|
|
98
99
|
this._resizeObserver = null;
|
|
@@ -177,7 +178,13 @@ class TagList extends LocalizeCoreElement(InteractiveMixin(ArrowKeysMixin(LitEle
|
|
|
177
178
|
};
|
|
178
179
|
|
|
179
180
|
const list = html`
|
|
180
|
-
<div
|
|
181
|
+
<div
|
|
182
|
+
aria-label="${this.description}"
|
|
183
|
+
class="${classMap(containerClasses)}"
|
|
184
|
+
role="list"
|
|
185
|
+
@d2l-tag-list-item-clear="${this._handleItemDeleted}"
|
|
186
|
+
@d2l-tag-list-item-tooltip-show="${this._handleKeyboardTooltipShown}"
|
|
187
|
+
>
|
|
181
188
|
<slot @slotchange="${this._handleSlotChange}"></slot>
|
|
182
189
|
${overflowButton}
|
|
183
190
|
<d2l-button-subtle
|
|
@@ -206,7 +213,6 @@ class TagList extends LocalizeCoreElement(InteractiveMixin(ArrowKeysMixin(LitEle
|
|
|
206
213
|
if (this._items && this._items.length > 0) this._items[0].focus();
|
|
207
214
|
}
|
|
208
215
|
);
|
|
209
|
-
|
|
210
216
|
}
|
|
211
217
|
|
|
212
218
|
async arrowKeysFocusablesProvider() {
|
|
@@ -299,6 +305,7 @@ class TagList extends LocalizeCoreElement(InteractiveMixin(ArrowKeysMixin(LitEle
|
|
|
299
305
|
|
|
300
306
|
if (this.clearable) node.setAttribute('clearable', 'clearable');
|
|
301
307
|
node.removeAttribute('data-is-chomped');
|
|
308
|
+
node.removeAttribute('keyboard-tooltip-item');
|
|
302
309
|
|
|
303
310
|
return true;
|
|
304
311
|
});
|
|
@@ -339,6 +346,10 @@ class TagList extends LocalizeCoreElement(InteractiveMixin(ArrowKeysMixin(LitEle
|
|
|
339
346
|
}
|
|
340
347
|
}
|
|
341
348
|
|
|
349
|
+
_handleKeyboardTooltipShown() {
|
|
350
|
+
this._hasShownKeyboardTooltip = true;
|
|
351
|
+
}
|
|
352
|
+
|
|
342
353
|
async _handleResize(entries) {
|
|
343
354
|
this._availableWidth = Math.floor(entries[0].contentRect.width);
|
|
344
355
|
if (this._availableWidth >= PAGE_SIZE.large) this._lines = PAGE_SIZE_LINES.large;
|
|
@@ -370,6 +381,7 @@ class TagList extends LocalizeCoreElement(InteractiveMixin(ArrowKeysMixin(LitEle
|
|
|
370
381
|
});
|
|
371
382
|
this._chomp();
|
|
372
383
|
this._contentReady = true;
|
|
384
|
+
if (!this._hasShownKeyboardTooltip) this._items[0].setAttribute('keyboard-tooltip-item', 'keyboard-tooltip-item');
|
|
373
385
|
}
|
|
374
386
|
|
|
375
387
|
async _toggleHiddenTagVisibility(e) {
|
package/lang/ar.js
CHANGED
|
@@ -104,6 +104,11 @@ export default {
|
|
|
104
104
|
"components.tag-list.num-hidden": "زيادة {count} إضافي",
|
|
105
105
|
"components.tag-list.show-less": "إظهار أقل",
|
|
106
106
|
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
107
|
+
"components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
|
|
108
|
+
"components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
|
|
109
|
+
"components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
|
|
110
|
+
"components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
|
|
111
|
+
"components.tag-list-item.tooltip-title": "Keyboard Controls",
|
|
107
112
|
"templates.primary-secondary.adjustableSplitView": "تقسيم العرض القابل للضبط",
|
|
108
113
|
"templates.primary-secondary.keyboardHorizontal": "السهم المتّجه إلى اليسار أو إلى اليمين لضبط حجم لوحات العرض",
|
|
109
114
|
"templates.primary-secondary.keyboardVertical": "السهم المتّجه إلى الأعلى أو إلى الأسفل لضبط حجم لوحات العرض"
|
package/lang/cy.js
CHANGED
|
@@ -104,6 +104,11 @@ export default {
|
|
|
104
104
|
"components.tag-list.num-hidden": "+ {count} yn rhagor",
|
|
105
105
|
"components.tag-list.show-less": "Dangos Llai",
|
|
106
106
|
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
107
|
+
"components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
|
|
108
|
+
"components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
|
|
109
|
+
"components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
|
|
110
|
+
"components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
|
|
111
|
+
"components.tag-list-item.tooltip-title": "Keyboard Controls",
|
|
107
112
|
"templates.primary-secondary.adjustableSplitView": "Gwedd Hollt Addasadwy",
|
|
108
113
|
"templates.primary-secondary.keyboardHorizontal": "Saeth i'r chwith neu'r dde i addasu maint y paneli gweld",
|
|
109
114
|
"templates.primary-secondary.keyboardVertical": "Saeth i fyny neu i lawr i addasu maint y paneli gweld"
|
package/lang/da.js
CHANGED
|
@@ -104,6 +104,11 @@ export default {
|
|
|
104
104
|
"components.tag-list.num-hidden": "+ {count} mere",
|
|
105
105
|
"components.tag-list.show-less": "Vis færre",
|
|
106
106
|
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
107
|
+
"components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
|
|
108
|
+
"components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
|
|
109
|
+
"components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
|
|
110
|
+
"components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
|
|
111
|
+
"components.tag-list-item.tooltip-title": "Keyboard Controls",
|
|
107
112
|
"templates.primary-secondary.adjustableSplitView": "Justerbar delt visning",
|
|
108
113
|
"templates.primary-secondary.keyboardHorizontal": "Pil til venstre eller højre for at justere størrelsen på visningspaneler",
|
|
109
114
|
"templates.primary-secondary.keyboardVertical": "Pil op eller ned for at justere størrelsen på visningspaneler"
|
package/lang/de.js
CHANGED
|
@@ -104,6 +104,11 @@ export default {
|
|
|
104
104
|
"components.tag-list.num-hidden": "+ {count} weitere",
|
|
105
105
|
"components.tag-list.show-less": "Weniger anzeigen",
|
|
106
106
|
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
107
|
+
"components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
|
|
108
|
+
"components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
|
|
109
|
+
"components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
|
|
110
|
+
"components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
|
|
111
|
+
"components.tag-list-item.tooltip-title": "Keyboard Controls",
|
|
107
112
|
"templates.primary-secondary.adjustableSplitView": "Anpassbare geteilte Ansicht",
|
|
108
113
|
"templates.primary-secondary.keyboardHorizontal": "Pfeil nach links oder rechts, um die Größe der Ansichtsbereiche anzupassen",
|
|
109
114
|
"templates.primary-secondary.keyboardVertical": "Pfeil nach oben oder unten, um die Größe der Ansichtsbereiche anzupassen"
|
package/lang/en.js
CHANGED
|
@@ -104,6 +104,11 @@ export default {
|
|
|
104
104
|
"components.tag-list.num-hidden": "+ {count} more",
|
|
105
105
|
"components.tag-list.show-less": "Show Less",
|
|
106
106
|
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
107
|
+
"components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
|
|
108
|
+
"components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
|
|
109
|
+
"components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
|
|
110
|
+
"components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
|
|
111
|
+
"components.tag-list-item.tooltip-title": "Keyboard Controls",
|
|
107
112
|
"templates.primary-secondary.adjustableSplitView": "Adjustable Split View",
|
|
108
113
|
"templates.primary-secondary.keyboardHorizontal": "Arrow left or right to adjust the size of the view panels",
|
|
109
114
|
"templates.primary-secondary.keyboardVertical": "Arrow up or down to adjust the size of the view panels"
|
package/lang/es-es.js
CHANGED
|
@@ -104,6 +104,11 @@ export default {
|
|
|
104
104
|
"components.tag-list.num-hidden": "+ {count} más",
|
|
105
105
|
"components.tag-list.show-less": "Mostrar menos",
|
|
106
106
|
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
107
|
+
"components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
|
|
108
|
+
"components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
|
|
109
|
+
"components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
|
|
110
|
+
"components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
|
|
111
|
+
"components.tag-list-item.tooltip-title": "Keyboard Controls",
|
|
107
112
|
"templates.primary-secondary.adjustableSplitView": "Vista dividida ajustable",
|
|
108
113
|
"templates.primary-secondary.keyboardHorizontal": "Flecha hacia la izquierda o la derecha para ajustar el tamaño de los paneles de visualización",
|
|
109
114
|
"templates.primary-secondary.keyboardVertical": "Flecha hacia arriba o abajo para ajustar el tamaño de los paneles de visualización"
|
package/lang/es.js
CHANGED
|
@@ -104,6 +104,11 @@ export default {
|
|
|
104
104
|
"components.tag-list.num-hidden": "+ {count} más",
|
|
105
105
|
"components.tag-list.show-less": "Mostrar menos",
|
|
106
106
|
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
107
|
+
"components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
|
|
108
|
+
"components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
|
|
109
|
+
"components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
|
|
110
|
+
"components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
|
|
111
|
+
"components.tag-list-item.tooltip-title": "Keyboard Controls",
|
|
107
112
|
"templates.primary-secondary.adjustableSplitView": "Pantalla dividida ajustable",
|
|
108
113
|
"templates.primary-secondary.keyboardHorizontal": "Utilice la flecha izquierda o derecha para ajustar el tamaño de los paneles de visualización",
|
|
109
114
|
"templates.primary-secondary.keyboardVertical": "Utilice la flecha hacia arriba o hacia abajo para ajustar el tamaño de los paneles de visualización"
|
package/lang/fr-fr.js
CHANGED
|
@@ -104,6 +104,11 @@ export default {
|
|
|
104
104
|
"components.tag-list.num-hidden": "{count} de plus",
|
|
105
105
|
"components.tag-list.show-less": "Afficher moins",
|
|
106
106
|
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
107
|
+
"components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
|
|
108
|
+
"components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
|
|
109
|
+
"components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
|
|
110
|
+
"components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
|
|
111
|
+
"components.tag-list-item.tooltip-title": "Keyboard Controls",
|
|
107
112
|
"templates.primary-secondary.adjustableSplitView": "Vue fractionnée réglable",
|
|
108
113
|
"templates.primary-secondary.keyboardHorizontal": "Flèche vers la gauche ou vers la droite pour régler la taille des panneaux d’affichage",
|
|
109
114
|
"templates.primary-secondary.keyboardVertical": "Flèche vers le haut ou vers le bas pour régler la taille des panneaux d’affichage"
|
package/lang/fr.js
CHANGED
|
@@ -104,6 +104,11 @@ export default {
|
|
|
104
104
|
"components.tag-list.num-hidden": "+ {count} de plus",
|
|
105
105
|
"components.tag-list.show-less": "Afficher moins",
|
|
106
106
|
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
107
|
+
"components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
|
|
108
|
+
"components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
|
|
109
|
+
"components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
|
|
110
|
+
"components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
|
|
111
|
+
"components.tag-list-item.tooltip-title": "Keyboard Controls",
|
|
107
112
|
"templates.primary-secondary.adjustableSplitView": "Vue partagée réglable",
|
|
108
113
|
"templates.primary-secondary.keyboardHorizontal": "Utiliser la flèche vers la gauche ou vers la droite pour régler la taille des volets d'affichage",
|
|
109
114
|
"templates.primary-secondary.keyboardVertical": "Flèche vers le haut ou vers le bas pour régler la taille des volets d'affichage"
|
package/lang/hi.js
CHANGED
|
@@ -104,6 +104,11 @@ export default {
|
|
|
104
104
|
"components.tag-list.num-hidden": "+ {count} और",
|
|
105
105
|
"components.tag-list.show-less": "कम दिखाएँ",
|
|
106
106
|
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
107
|
+
"components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
|
|
108
|
+
"components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
|
|
109
|
+
"components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
|
|
110
|
+
"components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
|
|
111
|
+
"components.tag-list-item.tooltip-title": "Keyboard Controls",
|
|
107
112
|
"templates.primary-secondary.adjustableSplitView": "समायोजन योग्य विभाजन दृश्य",
|
|
108
113
|
"templates.primary-secondary.keyboardHorizontal": "दृश्य पैनल्स का आकार समायोजित करने के लिए तीर बाएँ या दाएँ करें",
|
|
109
114
|
"templates.primary-secondary.keyboardVertical": "दृश्य पैनल्स का आकार समायोजित करने के लिए तीर ऊपर या नीचे करें"
|
package/lang/ja.js
CHANGED
|
@@ -104,6 +104,11 @@ export default {
|
|
|
104
104
|
"components.tag-list.num-hidden": "+ {count} 件追加",
|
|
105
105
|
"components.tag-list.show-less": "少なく表示",
|
|
106
106
|
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
107
|
+
"components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
|
|
108
|
+
"components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
|
|
109
|
+
"components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
|
|
110
|
+
"components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
|
|
111
|
+
"components.tag-list-item.tooltip-title": "Keyboard Controls",
|
|
107
112
|
"templates.primary-secondary.adjustableSplitView": "調整可能な分割ビュー",
|
|
108
113
|
"templates.primary-secondary.keyboardHorizontal": "左矢印または右矢印を使用して、ビューパネルのサイズを調整します",
|
|
109
114
|
"templates.primary-secondary.keyboardVertical": "上矢印または下矢印を使用して、ビューパネルのサイズを調整します"
|
package/lang/ko.js
CHANGED
|
@@ -104,6 +104,11 @@ export default {
|
|
|
104
104
|
"components.tag-list.num-hidden": "{count}개 더",
|
|
105
105
|
"components.tag-list.show-less": "간단히 표시",
|
|
106
106
|
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
107
|
+
"components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
|
|
108
|
+
"components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
|
|
109
|
+
"components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
|
|
110
|
+
"components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
|
|
111
|
+
"components.tag-list-item.tooltip-title": "Keyboard Controls",
|
|
107
112
|
"templates.primary-secondary.adjustableSplitView": "조정 가능한 분할 보기",
|
|
108
113
|
"templates.primary-secondary.keyboardHorizontal": "왼쪽 또는 오른쪽 화살표로 보기 패널의 크기 조정",
|
|
109
114
|
"templates.primary-secondary.keyboardVertical": "위 또는 아래 화살표로 보기 패널의 크기 조정"
|
package/lang/nl.js
CHANGED
|
@@ -104,6 +104,11 @@ export default {
|
|
|
104
104
|
"components.tag-list.num-hidden": "+ {count} extra",
|
|
105
105
|
"components.tag-list.show-less": "Minder weergeven",
|
|
106
106
|
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
107
|
+
"components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
|
|
108
|
+
"components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
|
|
109
|
+
"components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
|
|
110
|
+
"components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
|
|
111
|
+
"components.tag-list-item.tooltip-title": "Keyboard Controls",
|
|
107
112
|
"templates.primary-secondary.adjustableSplitView": "Instelbare gesplitste weergave",
|
|
108
113
|
"templates.primary-secondary.keyboardHorizontal": "Pijl naar links of rechts om de grootte van de weergavevensters aan te passen",
|
|
109
114
|
"templates.primary-secondary.keyboardVertical": "Pijl omhoog of omlaag om de grootte van de weergavevensters aan te passen"
|
package/lang/pt.js
CHANGED
|
@@ -104,6 +104,11 @@ export default {
|
|
|
104
104
|
"components.tag-list.num-hidden": "+ {count} mais",
|
|
105
105
|
"components.tag-list.show-less": "Mostrar menos",
|
|
106
106
|
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
107
|
+
"components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
|
|
108
|
+
"components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
|
|
109
|
+
"components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
|
|
110
|
+
"components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
|
|
111
|
+
"components.tag-list-item.tooltip-title": "Keyboard Controls",
|
|
107
112
|
"templates.primary-secondary.adjustableSplitView": "Exibição dividida ajustável",
|
|
108
113
|
"templates.primary-secondary.keyboardHorizontal": "Use a seta para a esquerda ou para a direita para ajustar o tamanho dos painéis de exibição",
|
|
109
114
|
"templates.primary-secondary.keyboardVertical": "Use a seta para cima ou para baixo para ajustar o tamanho dos painéis de exibição"
|
package/lang/sv.js
CHANGED
|
@@ -104,6 +104,11 @@ export default {
|
|
|
104
104
|
"components.tag-list.num-hidden": "+ {count} till",
|
|
105
105
|
"components.tag-list.show-less": "Visa färre",
|
|
106
106
|
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
107
|
+
"components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
|
|
108
|
+
"components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
|
|
109
|
+
"components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
|
|
110
|
+
"components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
|
|
111
|
+
"components.tag-list-item.tooltip-title": "Keyboard Controls",
|
|
107
112
|
"templates.primary-secondary.adjustableSplitView": "Justerbar delad vy",
|
|
108
113
|
"templates.primary-secondary.keyboardHorizontal": "Pil vänster eller höger för att justera storleken på vypaneler",
|
|
109
114
|
"templates.primary-secondary.keyboardVertical": "Pil upp eller ned för att justera storleken på vypaneler"
|
package/lang/tr.js
CHANGED
|
@@ -104,6 +104,11 @@ export default {
|
|
|
104
104
|
"components.tag-list.num-hidden": "+{count} tane daha",
|
|
105
105
|
"components.tag-list.show-less": "Daha Azını Göster",
|
|
106
106
|
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
107
|
+
"components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
|
|
108
|
+
"components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
|
|
109
|
+
"components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
|
|
110
|
+
"components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
|
|
111
|
+
"components.tag-list-item.tooltip-title": "Keyboard Controls",
|
|
107
112
|
"templates.primary-secondary.adjustableSplitView": "Ayarlanabilir Bölünmüş Görüntü",
|
|
108
113
|
"templates.primary-secondary.keyboardHorizontal": "Görüntü panellerinin boyutunu ayarlamak için sol veya sağ okları kullanın",
|
|
109
114
|
"templates.primary-secondary.keyboardVertical": "Görüntü panellerinin boyutunu ayarlamak için yukarı veya aşağı okları kullanın"
|
package/lang/zh-cn.js
CHANGED
|
@@ -104,6 +104,11 @@ export default {
|
|
|
104
104
|
"components.tag-list.num-hidden": "+ {count} 个",
|
|
105
105
|
"components.tag-list.show-less": "显示更少",
|
|
106
106
|
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
107
|
+
"components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
|
|
108
|
+
"components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
|
|
109
|
+
"components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
|
|
110
|
+
"components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
|
|
111
|
+
"components.tag-list-item.tooltip-title": "Keyboard Controls",
|
|
107
112
|
"templates.primary-secondary.adjustableSplitView": "可调分屏视图",
|
|
108
113
|
"templates.primary-secondary.keyboardHorizontal": "向左或向右箭头可调整视图面板的大小",
|
|
109
114
|
"templates.primary-secondary.keyboardVertical": "向上或向下箭头可调整视图面板的大小"
|
package/lang/zh-tw.js
CHANGED
|
@@ -104,6 +104,11 @@ export default {
|
|
|
104
104
|
"components.tag-list.num-hidden": "還有 {count} 個",
|
|
105
105
|
"components.tag-list.show-less": "顯示更少",
|
|
106
106
|
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
107
|
+
"components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
|
|
108
|
+
"components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
|
|
109
|
+
"components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
|
|
110
|
+
"components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
|
|
111
|
+
"components.tag-list-item.tooltip-title": "Keyboard Controls",
|
|
107
112
|
"templates.primary-secondary.adjustableSplitView": "可調整的分割檢視",
|
|
108
113
|
"templates.primary-secondary.keyboardHorizontal": "向左或向右箭頭可調整檢視面板的大小",
|
|
109
114
|
"templates.primary-secondary.keyboardVertical": "向上或向下箭頭可調整檢視面板的大小"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@brightspace-ui/core",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.17.0",
|
|
4
4
|
"description": "A collection of accessible, free, open-source web components for building Brightspace applications",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": "https://github.com/BrightspaceUI/core.git",
|