@brightspace-ui/core 3.175.2 → 3.175.4

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.
@@ -41,6 +41,7 @@ class TestTable extends DemoPassthroughMixin(TableWrapper, 'd2l-table-wrapper')
41
41
  return {
42
42
  paging: { type: Boolean, reflect: true },
43
43
  multiLine: { type: Boolean, attribute: 'multi-line' },
44
+ resetOnSort: { type: Boolean, attribute: 'reset-on-sort' },
44
45
  showButtons: { type: Boolean, attribute: 'show-buttons' },
45
46
  stickyControls: { attribute: 'sticky-controls', type: Boolean, reflect: true },
46
47
  visibleBackground: { attribute: 'visible-background', type: Boolean, reflect: true },
@@ -187,7 +188,7 @@ class TestTable extends DemoPassthroughMixin(TableWrapper, 'd2l-table-wrapper')
187
188
  }
188
189
 
189
190
  _handleSortData() {
190
- this._data = this._data.sort((a, b) => {
191
+ this._data = (this.resetOnSort ? data() : this._data).sort((a, b) => {
191
192
  if (this._sortDesc) {
192
193
  if (a.data[this._sortField] > b.data[this._sortField]) return -1;
193
194
  if (a.data[this._sortField] < b.data[this._sortField]) return 1;
@@ -50,6 +50,13 @@
50
50
  </template>
51
51
  </d2l-demo-snippet>
52
52
 
53
+ <h2>Default, Paging, Reset on sort</h2>
54
+ <d2l-demo-snippet>
55
+ <template>
56
+ <d2l-test-table type="default" sticky-controls paging reset-on-sort></d2l-test-table>
57
+ </template>
58
+ </d2l-demo-snippet>
59
+
53
60
  <h2>Default, Visible controls background</h2>
54
61
  <d2l-demo-snippet>
55
62
  <template>
@@ -258,7 +258,8 @@ export const tableStyles = css`
258
258
 
259
259
  const SELECTORS = {
260
260
  headers: 'tr.d2l-table-header, tr[header], thead tr',
261
- items: ':not(thead) > tr:not(.d2l-table-header):not([header])',
261
+ body: ':not(thead)',
262
+ items: 'tr:not(.d2l-table-header):not([header])',
262
263
  };
263
264
 
264
265
  /**
@@ -494,7 +495,7 @@ export class TableWrapper extends PageableMixin(SelectionMixin(LitElement)) {
494
495
  }
495
496
 
496
497
  _getItems() {
497
- return this._table?.querySelectorAll(SELECTORS.items) || [];
498
+ return this._table?.querySelectorAll(`${SELECTORS.body} > ${SELECTORS.items}`) || [];
498
499
  }
499
500
 
500
501
  _getItemShowingCount() {
@@ -604,7 +605,7 @@ export class TableWrapper extends PageableMixin(SelectionMixin(LitElement)) {
604
605
  updates.classNames ||= node.matches('tr, td, th');
605
606
  updates.syncWidths ||= node.matches('tr');
606
607
  updates.sticky ||= node.matches(SELECTORS.headers);
607
- updates.count ||= node.matches(SELECTORS.items);
608
+ updates.count ||= node.matches(SELECTORS.items) && target.matches(SELECTORS.body);
608
609
  }
609
610
  }
610
611
  }
@@ -14,7 +14,6 @@ import { RtlMixin } from '../../mixins/rtl/rtl-mixin.js';
14
14
  import { styleMap } from 'lit/directives/style-map.js';
15
15
 
16
16
  const usePopoverMixin = getFlag('GAUD-7355-tooltip-popover', false);
17
- const useMutationObserver = getFlag('GAUD-8203-tooltip-mutation-observer', true);
18
17
 
19
18
  const contentBorderSize = 1;
20
19
  const contentHorizontalPadding = 15;
@@ -337,11 +336,9 @@ if (usePopoverMixin) {
337
336
  this.#targetSizeObserver = new ResizeObserver(this.#handleTargetResizeBound);
338
337
  this.#targetSizeObserver.observe(this.#target);
339
338
 
340
- if (useMutationObserver) {
341
- this.#targetMutationObserver = new MutationObserver(this.#handleTargetMutationBound);
342
- this.#targetMutationObserver.observe(this.#target, { attributes: true, attributeFilter: ['id'] });
343
- this.#targetMutationObserver.observe(this.#target.parentNode, { childList: true });
344
- }
339
+ this.#targetMutationObserver = new MutationObserver(this.#handleTargetMutationBound);
340
+ this.#targetMutationObserver.observe(this.#target, { attributes: true, attributeFilter: ['id'] });
341
+ this.#targetMutationObserver.observe(this.#target.parentNode, { childList: true });
345
342
  }
346
343
 
347
344
  #findTarget() {
@@ -1215,11 +1212,9 @@ if (usePopoverMixin) {
1215
1212
  this._targetSizeObserver = new ResizeObserver(this._onTargetResize);
1216
1213
  this._targetSizeObserver.observe(this._target);
1217
1214
 
1218
- if (useMutationObserver) {
1219
- this._targetMutationObserver = new MutationObserver(this._onTargetMutation);
1220
- this._targetMutationObserver.observe(this._target, { attributes: true, attributeFilter: ['id'] });
1221
- this._targetMutationObserver.observe(this._target.parentNode, { childList: true });
1222
- }
1215
+ this._targetMutationObserver = new MutationObserver(this._onTargetMutation);
1216
+ this._targetMutationObserver.observe(this._target, { attributes: true, attributeFilter: ['id'] });
1217
+ this._targetMutationObserver.observe(this._target.parentNode, { childList: true });
1223
1218
  }
1224
1219
 
1225
1220
  _computeAvailableSpaces(targetRect, spaceAround) {
@@ -13495,6 +13495,10 @@
13495
13495
  "name": "d2l-test-table",
13496
13496
  "path": "./components/table/demo/table-test.js",
13497
13497
  "attributes": [
13498
+ {
13499
+ "name": "reset-on-sort",
13500
+ "type": "boolean"
13501
+ },
13498
13502
  {
13499
13503
  "name": "multi-line",
13500
13504
  "type": "boolean",
@@ -13557,6 +13561,11 @@
13557
13561
  }
13558
13562
  ],
13559
13563
  "properties": [
13564
+ {
13565
+ "name": "resetOnSort",
13566
+ "attribute": "reset-on-sort",
13567
+ "type": "boolean"
13568
+ },
13560
13569
  {
13561
13570
  "name": "multiLine",
13562
13571
  "attribute": "multi-line",
package/lang/ar.js CHANGED
@@ -3,7 +3,7 @@ export default {
3
3
  "components.breadcrumbs.breadcrumb": "شريط التنقل",
4
4
  "components.button-add.addItem": "إضافة عنصر",
5
5
  "components.button-copy.copied": "تم النسخ!",
6
- "components.button-copy.error": "Copy failed. Try again, or try copying manually.",
6
+ "components.button-copy.error": "فشل النسخ. حاول مرة أخرى، أو حاول النسخ يدويًا.",
7
7
  "components.button-split.otherOptions": "خيارات أخرى",
8
8
  "components.calendar.hasEvents": "يحتوي على أحداث.",
9
9
  "components.calendar.notSelected": "لم يتم التحديد.",
@@ -163,8 +163,8 @@ export default {
163
163
  "components.pager-load-more.action": "تحميل المزيد",
164
164
  "components.pager-load-more.action-with-page-size": "تحميل {count} إضافي",
165
165
  "components.pager-load-more.status-loading": "تحميل المزيد من المواد",
166
- "components.scroll-wrapper.scroll-left": "مرِّر لليسار",
167
- "components.scroll-wrapper.scroll-right": "مرِّر لليمين",
166
+ "components.scroll-wrapper.scroll-left": "مرِّر لليسار",
167
+ "components.scroll-wrapper.scroll-right": "مرِّر لليمين",
168
168
  "components.selection.action-max-hint":
169
169
  `{count, plural,
170
170
  one {يتم التعطيل عند تحديد أكثر من {countFormatted} عنصر}
@@ -174,9 +174,13 @@ export default {
174
174
  "components.selection.select-all": "تحديد الكل",
175
175
  "components.selection.select-all-items":
176
176
  `{count, plural,
177
- =1 {Select Item}
178
- one {Select All {countFormatted} Item}
179
- other {تحديد كل المواد الـ {countFormatted}}
177
+ =0 {تحديد جميع الـ {countFormatted} عناصر}
178
+ =1 {اختر عنصر}
179
+ =2 {تحديد جميع الـ {countFormatted} عنصرين}
180
+ one {تحديد جميع الـ {countFormatted} عنصر}
181
+ few {تحديد جميع الـ {countFormatted} عناصر}
182
+ many {تحديد جميع الـ {countFormatted} عناصر}
183
+ other {تحديد جميع الـ {countFormatted} عناصر}
180
184
  }`,
181
185
  "components.selection.selected": "تم تحديد {count}",
182
186
  "components.selection.selected-plus": "تم تحديد {count}+‎",
package/lang/cy.js CHANGED
@@ -3,7 +3,7 @@ export default {
3
3
  "components.breadcrumbs.breadcrumb": "Briwsionyn Bara",
4
4
  "components.button-add.addItem": "Ychwanegu Eitem",
5
5
  "components.button-copy.copied": "Wedi’i gopïo!",
6
- "components.button-copy.error": "Copy failed. Try again, or try copying manually.",
6
+ "components.button-copy.error": "Wedi methu â chopïo. Rhowch gynnig arall arni, neu rhowch gynnig ar gopïo â llaw.",
7
7
  "components.button-split.otherOptions": "Opsiynau Eraill",
8
8
  "components.calendar.hasEvents": "Yn Cynnwys Digwyddiadau.",
9
9
  "components.calendar.notSelected": "Heb ei Ddewis.",
@@ -174,9 +174,9 @@ export default {
174
174
  "components.selection.select-all": "Dewis y Cyfan",
175
175
  "components.selection.select-all-items":
176
176
  `{count, plural,
177
- =1 {Select Item}
178
- one {Select All {countFormatted} Item}
179
- other {Dewis Pob {countFormatted} Eitem}
177
+ =1 {Dewis Eitem}
178
+ one {Dewis Pob Un o’r {countFormatted} Eitem}
179
+ other {Dewis Pob Un o’r {countFormatted} Eitem}
180
180
  }`,
181
181
  "components.selection.selected": "{count} wedi’u dewis.",
182
182
  "components.selection.selected-plus": "{count}+ wedi’u dewis",
package/lang/da.js CHANGED
@@ -3,7 +3,7 @@ export default {
3
3
  "components.breadcrumbs.breadcrumb": "Brødkrumme",
4
4
  "components.button-add.addItem": "Tilføj element",
5
5
  "components.button-copy.copied": "Kopieret!",
6
- "components.button-copy.error": "Copy failed. Try again, or try copying manually.",
6
+ "components.button-copy.error": "Kopiering mislykkedes. Prøv igen, eller prøv at kopiere manuelt.",
7
7
  "components.button-split.otherOptions": "Andre indstillinger",
8
8
  "components.calendar.hasEvents": "Har begivenheder.",
9
9
  "components.calendar.notSelected": "Ikke valgt.",
@@ -174,8 +174,8 @@ export default {
174
174
  "components.selection.select-all": "Vælg alle",
175
175
  "components.selection.select-all-items":
176
176
  `{count, plural,
177
- =1 {Select Item}
178
- one {Select All {countFormatted} Item}
177
+ =1 {Vælg element}
178
+ one {Vælg alle {countFormatted} element}
179
179
  other {Vælg alle {countFormatted} elementer}
180
180
  }`,
181
181
  "components.selection.selected": "{count} valgt",
package/lang/de.js CHANGED
@@ -3,7 +3,7 @@ export default {
3
3
  "components.breadcrumbs.breadcrumb": "Brotkrümelnavigation",
4
4
  "components.button-add.addItem": "Element hinzufügen",
5
5
  "components.button-copy.copied": "Kopiert.",
6
- "components.button-copy.error": "Copy failed. Try again, or try copying manually.",
6
+ "components.button-copy.error": "Kopiervorgang fehlgeschlagen. Versuchen Sie es erneut, oder kopieren Sie manuell.",
7
7
  "components.button-split.otherOptions": "Sonstige Optionen",
8
8
  "components.calendar.hasEvents": "Hat Ereignisse.",
9
9
  "components.calendar.notSelected": "Nicht ausgewählt.",
@@ -174,9 +174,9 @@ export default {
174
174
  "components.selection.select-all": "Alle auswählen",
175
175
  "components.selection.select-all-items":
176
176
  `{count, plural,
177
- =1 {Select Item}
178
- one {Select All {countFormatted} Item}
179
- other {Alle {countFormatted} Elemente auswählen}
177
+ =1 {Element auswählen}
178
+ one {Jedes {countFormatted} Element auswählen}
179
+ other {Alle {countFormatted} Elemente auswählen}
180
180
  }`,
181
181
  "components.selection.selected": "{count} ausgewählt",
182
182
  "components.selection.selected-plus": "{count}+ ausgewählt",
package/lang/en-gb.js CHANGED
@@ -3,7 +3,7 @@ export default {
3
3
  "components.breadcrumbs.breadcrumb": "Breadcrumb",
4
4
  "components.button-add.addItem": "Add Item",
5
5
  "components.button-copy.copied": "Copied!",
6
- "components.button-copy.error": "Copy failed. Try again, or try copying manually.",
6
+ "components.button-copy.error": "Copy failed. Try again or try copying manually.",
7
7
  "components.button-split.otherOptions": "Other Options",
8
8
  "components.calendar.hasEvents": "Has Events.",
9
9
  "components.calendar.notSelected": "Not Selected.",
package/lang/es-es.js CHANGED
@@ -2,8 +2,8 @@ export default {
2
2
  "components.alert.close": "Cerrar alerta",
3
3
  "components.breadcrumbs.breadcrumb": "Ruta de navegación",
4
4
  "components.button-add.addItem": "Agregar elemento",
5
- "components.button-copy.copied": "Copiado.",
6
- "components.button-copy.error": "Copy failed. Try again, or try copying manually.",
5
+ "components.button-copy.copied": "¡Copiado!",
6
+ "components.button-copy.error": "Se ha producido un error al copiar. Inténtelo de nuevo o intente copiar manualmente.",
7
7
  "components.button-split.otherOptions": "Otras opciones",
8
8
  "components.calendar.hasEvents": "Tiene eventos.",
9
9
  "components.calendar.notSelected": "No seleccionado.",
@@ -174,9 +174,9 @@ export default {
174
174
  "components.selection.select-all": "Seleccionar todo",
175
175
  "components.selection.select-all-items":
176
176
  `{count, plural,
177
- =1 {Select Item}
178
- one {Select All {countFormatted} Item}
179
- other {Seleccione los {countFormatted} elementos}
177
+ =1 {Seleccionar elemento}
178
+ one {Seleccionar {countFormatted} elemento}
179
+ other {Seleccionar los {countFormatted} elementos}
180
180
  }`,
181
181
  "components.selection.selected": "{count} seleccionados",
182
182
  "components.selection.selected-plus": "{count}+ seleccionados",
package/lang/es.js CHANGED
@@ -3,7 +3,7 @@ export default {
3
3
  "components.breadcrumbs.breadcrumb": "Ruta de navegación",
4
4
  "components.button-add.addItem": "Agregar elemento",
5
5
  "components.button-copy.copied": "Copiado.",
6
- "components.button-copy.error": "Copy failed. Try again, or try copying manually.",
6
+ "components.button-copy.error": "No se pudo realizar la copia. Inténtelo de nuevo o intente copiar manualmente.",
7
7
  "components.button-split.otherOptions": "Otras opciones",
8
8
  "components.calendar.hasEvents": "Tiene eventos.",
9
9
  "components.calendar.notSelected": "No seleccionado.",
@@ -174,9 +174,9 @@ export default {
174
174
  "components.selection.select-all": "Seleccionar todo",
175
175
  "components.selection.select-all-items":
176
176
  `{count, plural,
177
- =1 {Select Item}
178
- one {Select All {countFormatted} Item}
179
- other {Seleccione todos los {countFormatted} elementos}
177
+ =1 {Seleccionar elemento}
178
+ one {Seleccionar {countFormatted} elemento}
179
+ other {Seleccionar todos los {countFormatted} elementos}
180
180
  }`,
181
181
  "components.selection.selected": "{count} seleccionados",
182
182
  "components.selection.selected-plus": "Más de {count} seleccionados",
package/lang/fr-fr.js CHANGED
@@ -2,8 +2,8 @@ export default {
2
2
  "components.alert.close": "Fermer l’alerte",
3
3
  "components.breadcrumbs.breadcrumb": "Chemin de navigation",
4
4
  "components.button-add.addItem": "Ajouter un élément",
5
- "components.button-copy.copied": "Copié !",
6
- "components.button-copy.error": "Copy failed. Try again, or try copying manually.",
5
+ "components.button-copy.copied": "Copie effectuée !",
6
+ "components.button-copy.error": "Échec de la copie. Essayez à nouveau ou effectuez une copie manuelle.",
7
7
  "components.button-split.otherOptions": "Autres options",
8
8
  "components.calendar.hasEvents": "A des événements.",
9
9
  "components.calendar.notSelected": "Non sélectionné.",
@@ -174,9 +174,9 @@ export default {
174
174
  "components.selection.select-all": "Tout sélectionner",
175
175
  "components.selection.select-all-items":
176
176
  `{count, plural,
177
- =1 {Select Item}
178
- one {Select All {countFormatted} Item}
179
- other {Sélectionner tous les {countFormatted} éléments}
177
+ =1 {Sélectionner 1 élément}
178
+ one {Sélectionner {countFormatted} élément}
179
+ other {Sélectionner {countFormatted} éléments}
180
180
  }`,
181
181
  "components.selection.selected": "{count} sélectionnés",
182
182
  "components.selection.selected-plus": "{count}+ sélectionné(e)(s)",
package/lang/fr.js CHANGED
@@ -2,8 +2,8 @@ export default {
2
2
  "components.alert.close": "Fermer l’alerte",
3
3
  "components.breadcrumbs.breadcrumb": "Chemin de navigation",
4
4
  "components.button-add.addItem": "Ajouter un élément",
5
- "components.button-copy.copied": "Copié !",
6
- "components.button-copy.error": "Copy failed. Try again, or try copying manually.",
5
+ "components.button-copy.copied": "Copié!",
6
+ "components.button-copy.error": "Échec de la copie. Essayez à nouveau ou essayez d’effectuer une copie manuellement.",
7
7
  "components.button-split.otherOptions": "Autres options",
8
8
  "components.calendar.hasEvents": "Comprend des événements.",
9
9
  "components.calendar.notSelected": "Non sélectionné(e)",
@@ -174,9 +174,9 @@ export default {
174
174
  "components.selection.select-all": "Tout sélectionner",
175
175
  "components.selection.select-all-items":
176
176
  `{count, plural,
177
- =1 {Select Item}
178
- one {Select All {countFormatted} Item}
179
- other {Sélectionner tous les {countFormatted} éléments}
177
+ =1 {Sélectionner un élément}
178
+ one {Sélectionner {countFormatted} élément}
179
+ other {Sélectionner les {countFormatted} éléments}
180
180
  }`,
181
181
  "components.selection.selected": "{count} sélectionné(s)",
182
182
  "components.selection.selected-plus": "{count}+ sélectionné",
package/lang/haw.js CHANGED
@@ -3,7 +3,7 @@ export default {
3
3
  "components.breadcrumbs.breadcrumb": "Palapalapala",
4
4
  "components.button-add.addItem": "Pākuʻi Mea",
5
5
  "components.button-copy.copied": "Kope ʻia!",
6
- "components.button-copy.error": "Copy failed. Try again, or try copying manually.",
6
+ "components.button-copy.error": "ʻAʻole hiki ke kope. E ho'āʻo hou, a e hoʻāʻo e kope me ka lima.",
7
7
  "components.button-split.otherOptions": "Nā Koho ʻē aʻe",
8
8
  "components.calendar.hasEvents": "Loaʻa nā hanana.",
9
9
  "components.calendar.notSelected": "ʻAʻole i koho ʻia.",
@@ -174,9 +174,9 @@ export default {
174
174
  "components.selection.select-all": "E koho i nā mea a pau",
175
175
  "components.selection.select-all-items":
176
176
  `{count, plural,
177
- =1 {Select Item}
178
- one {Select All {countFormatted} Item}
179
- other {E koho i nā mea a pau {countFormatted}}
177
+ =1 {E koho i ka mea}
178
+ one {Koho i nā mea āpau {countFormatted}}
179
+ other {E koho i nā mea a pau {countFormatted} Nā mea}
180
180
  }`,
181
181
  "components.selection.selected": "{count} koho",
182
182
  "components.selection.selected-plus": "{count}+ i koho ʻia",
package/lang/hi.js CHANGED
@@ -3,7 +3,7 @@ export default {
3
3
  "components.breadcrumbs.breadcrumb": "ब्रेडक्रंब",
4
4
  "components.button-add.addItem": "आइटम जोड़ें",
5
5
  "components.button-copy.copied": "कॉपी किया गया!",
6
- "components.button-copy.error": "Copy failed. Try again, or try copying manually.",
6
+ "components.button-copy.error": "कॉपी बनाना विफल रहा। फिर से प्रयास करें या मैन्युअल रूप से कॉपी करने का प्रयास करें।",
7
7
  "components.button-split.otherOptions": "अन्य विकल्प",
8
8
  "components.calendar.hasEvents": "ईवेंट हैं।",
9
9
  "components.calendar.notSelected": "चयनित नहीं।",
@@ -174,9 +174,9 @@ export default {
174
174
  "components.selection.select-all": "सभी का चयन करें",
175
175
  "components.selection.select-all-items":
176
176
  `{count, plural,
177
- =1 {Select Item}
178
- one {Select All {countFormatted} Item}
179
- other {सभी {countFormatted} आइटम चुनें।}
177
+ =1 {आइटम का चयन करें}
178
+ one {सभी {countFormatted} आइटम का चयन करें}
179
+ other {सभी {countFormatted} आइटम का चयन करें}
180
180
  }`,
181
181
  "components.selection.selected": "{count} चयनित",
182
182
  "components.selection.selected-plus": "{count} से अधिक चयनित",
package/lang/ja.js CHANGED
@@ -3,7 +3,7 @@ export default {
3
3
  "components.breadcrumbs.breadcrumb": "階層",
4
4
  "components.button-add.addItem": "項目の追加",
5
5
  "components.button-copy.copied": "コピーできました。",
6
- "components.button-copy.error": "Copy failed. Try again, or try copying manually.",
6
+ "components.button-copy.error": "コピーに失敗しました。再試行するか、手動でコピーしてください。",
7
7
  "components.button-split.otherOptions": "その他のオプション",
8
8
  "components.calendar.hasEvents": "イベントがあります。",
9
9
  "components.calendar.notSelected": "選択されていません。",
@@ -166,7 +166,8 @@ export default {
166
166
  "components.selection.select-all": "すべて選択",
167
167
  "components.selection.select-all-items":
168
168
  `{count, plural,
169
- other {{countFormatted} 個の項目をすべて選択}
169
+ =1 {項目を選択}
170
+ other {{countFormatted} 項目をすべて選択}
170
171
  }`,
171
172
  "components.selection.selected": "{count} 個を選択済み",
172
173
  "components.selection.selected-plus": "{count} 個以上を選択済み",
package/lang/ko.js CHANGED
@@ -3,7 +3,7 @@ export default {
3
3
  "components.breadcrumbs.breadcrumb": "이동 경로",
4
4
  "components.button-add.addItem": "항목 추가",
5
5
  "components.button-copy.copied": "복사 완료!",
6
- "components.button-copy.error": "Copy failed. Try again, or try copying manually.",
6
+ "components.button-copy.error": "복사에 실패했습니다. 다시 시도하거나 수동으로 복사해 보십시오.",
7
7
  "components.button-split.otherOptions": "기타 옵션",
8
8
  "components.calendar.hasEvents": "이벤트가 있습니다.",
9
9
  "components.calendar.notSelected": "선택되지 않음.",
@@ -166,7 +166,8 @@ export default {
166
166
  "components.selection.select-all": "모두 선택",
167
167
  "components.selection.select-all-items":
168
168
  `{count, plural,
169
- other {{countFormatted}개 항목을 모두 선택하십시오}
169
+ =1 {항목 선택}
170
+ other {{countFormatted}개 항목 모두 선택}
170
171
  }`,
171
172
  "components.selection.selected": "{count}개 선택됨",
172
173
  "components.selection.selected-plus": "{count}+개 선택됨",
package/lang/mi.js CHANGED
@@ -3,7 +3,7 @@ export default {
3
3
  "components.breadcrumbs.breadcrumb": "Pānui",
4
4
  "components.button-add.addItem": "Tāpiri Tūemi",
5
5
  "components.button-copy.copied": "Kua tāruatia!",
6
- "components.button-copy.error": "Copy failed. Try again, or try copying manually.",
6
+ "components.button-copy.error": "I rahua te kape. Ngana ano, me ngana ranei te kape a-ringa.",
7
7
  "components.button-split.otherOptions": "Ētahi atu kōwhiringa",
8
8
  "components.calendar.hasEvents": "He takatu ēnei.",
9
9
  "components.calendar.notSelected": "Kāore i tīpakona.",
@@ -174,9 +174,9 @@ export default {
174
174
  "components.selection.select-all": "Tīpako Katoa",
175
175
  "components.selection.select-all-items":
176
176
  `{count, plural,
177
- =1 {Select Item}
178
- one {Select All {countFormatted} Item}
179
- other {Tīpakohia Ngā Tūemi {countFormatted} Katoa}
177
+ =1 {Tīpako Tūemi}
178
+ one {Tīpakohia Katoa {countFormatted} Tūemi}
179
+ other {Tīpakohia Katoa {countFormatted} Tūemi}
180
180
  }`,
181
181
  "components.selection.selected": "{count} kua tīpakohia",
182
182
  "components.selection.selected-plus": "{count}+ kua tīpakohia",
package/lang/nl.js CHANGED
@@ -3,7 +3,7 @@ export default {
3
3
  "components.breadcrumbs.breadcrumb": "Kruimelpad",
4
4
  "components.button-add.addItem": "Item toevoegen",
5
5
  "components.button-copy.copied": "Gekopieerd!",
6
- "components.button-copy.error": "Copy failed. Try again, or try copying manually.",
6
+ "components.button-copy.error": "Kopiëren mislukt. Probeer het opnieuw of probeer handmatig te kopiëren.",
7
7
  "components.button-split.otherOptions": "Overige opties",
8
8
  "components.calendar.hasEvents": "Bevat gebeurtenissen.",
9
9
  "components.calendar.notSelected": "Niet geselecteerd.",
@@ -174,9 +174,9 @@ export default {
174
174
  "components.selection.select-all": "Alles selecteren",
175
175
  "components.selection.select-all-items":
176
176
  `{count, plural,
177
- =1 {Select Item}
178
- one {Select All {countFormatted} Item}
179
- other {Alle {countFormatted} records selecteren}
177
+ =1 {Item selecteren}
178
+ one {Alle {countFormatted} item selecteren}
179
+ other {Alle {countFormatted} items selecteren}
180
180
  }`,
181
181
  "components.selection.selected": "{count} geselecteerd",
182
182
  "components.selection.selected-plus": "Meer dan {count} geselecteerd",
package/lang/pt.js CHANGED
@@ -3,7 +3,7 @@ export default {
3
3
  "components.breadcrumbs.breadcrumb": "Auxiliar de navegação",
4
4
  "components.button-add.addItem": "Adicionar item",
5
5
  "components.button-copy.copied": "Copiado!",
6
- "components.button-copy.error": "Copy failed. Try again, or try copying manually.",
6
+ "components.button-copy.error": "Cópia com falha. Tente novamente ou copie manualmente.",
7
7
  "components.button-split.otherOptions": "Outras Opções",
8
8
  "components.calendar.hasEvents": "Tem eventos.",
9
9
  "components.calendar.notSelected": "Não selecionado.",
@@ -174,9 +174,9 @@ export default {
174
174
  "components.selection.select-all": "Selecionar Tudo",
175
175
  "components.selection.select-all-items":
176
176
  `{count, plural,
177
- =1 {Select Item}
178
- one {Select All {countFormatted} Item}
179
- other {Selecione todos os {countFormatted} itens}
177
+ =1 {Selecionar Item}
178
+ one {Selecionar {countFormatted} Item}
179
+ other {Selecionar todos {countFormatted} Itens}
180
180
  }`,
181
181
  "components.selection.selected": "{count} selecionados",
182
182
  "components.selection.selected-plus": "Mais de {count} selecionados",
package/lang/sv.js CHANGED
@@ -3,7 +3,7 @@ export default {
3
3
  "components.breadcrumbs.breadcrumb": "Sökväg",
4
4
  "components.button-add.addItem": "Lägg till objekt",
5
5
  "components.button-copy.copied": "Kopierat!",
6
- "components.button-copy.error": "Copy failed. Try again, or try copying manually.",
6
+ "components.button-copy.error": "Det gick inte att genomföra kopieringen. Försök igen eller försök kopiera manuellt.",
7
7
  "components.button-split.otherOptions": "Andra alternativ",
8
8
  "components.calendar.hasEvents": "Har händelser.",
9
9
  "components.calendar.notSelected": "Inte vald.",
@@ -174,8 +174,8 @@ export default {
174
174
  "components.selection.select-all": "Välj alla",
175
175
  "components.selection.select-all-items":
176
176
  `{count, plural,
177
- =1 {Select Item}
178
- one {Select All {countFormatted} Item}
177
+ =1 {Välj objekt}
178
+ one {Välj {countFormatted} objekt}
179
179
  other {Välj alla {countFormatted} objekt}
180
180
  }`,
181
181
  "components.selection.selected": "{count} valda",
package/lang/tr.js CHANGED
@@ -3,7 +3,7 @@ export default {
3
3
  "components.breadcrumbs.breadcrumb": "İçerik Haritası",
4
4
  "components.button-add.addItem": "Öğe Ekle",
5
5
  "components.button-copy.copied": "Kopyalandı!",
6
- "components.button-copy.error": "Copy failed. Try again, or try copying manually.",
6
+ "components.button-copy.error": "Kopyalanamadı. Tekrar deneyin veya manuel olarak kopyalamayı deneyin.",
7
7
  "components.button-split.otherOptions": "Diğer Seçenekler",
8
8
  "components.calendar.hasEvents": "Olayları Var.",
9
9
  "components.calendar.notSelected": "Seçili Değil.",
@@ -174,9 +174,9 @@ export default {
174
174
  "components.selection.select-all": "Tümünü Seç",
175
175
  "components.selection.select-all-items":
176
176
  `{count, plural,
177
- =1 {Select Item}
178
- one {Select All {countFormatted} Item}
179
- other {{countFormatted} Öğenin Tamamını Seç}
177
+ =1 {Öğeyi Seç}
178
+ one {Tüm {countFormatted} Öğeyi Seç}
179
+ other {Tüm {countFormatted} Öğeyi Seç}
180
180
  }`,
181
181
  "components.selection.selected": "{count} öğe seçildi",
182
182
  "components.selection.selected-plus": "{count}+ öğe seçildi",
package/lang/zh-cn.js CHANGED
@@ -3,7 +3,7 @@ export default {
3
3
  "components.breadcrumbs.breadcrumb": "痕迹导航",
4
4
  "components.button-add.addItem": "添加项目",
5
5
  "components.button-copy.copied": "已复制!",
6
- "components.button-copy.error": "Copy failed. Try again, or try copying manually.",
6
+ "components.button-copy.error": "复制失败。请重试,或尝试手动复制。",
7
7
  "components.button-split.otherOptions": "其他选项",
8
8
  "components.calendar.hasEvents": "有事件。",
9
9
  "components.calendar.notSelected": "未选择。",
@@ -166,6 +166,7 @@ export default {
166
166
  "components.selection.select-all": "全选",
167
167
  "components.selection.select-all-items":
168
168
  `{count, plural,
169
+ =1 {选择项目}
169
170
  other {选择全部 {countFormatted} 个项目}
170
171
  }`,
171
172
  "components.selection.selected": "已选 {count}",
package/lang/zh-tw.js CHANGED
@@ -3,7 +3,7 @@ export default {
3
3
  "components.breadcrumbs.breadcrumb": "導覽路徑",
4
4
  "components.button-add.addItem": "新增項目",
5
5
  "components.button-copy.copied": "複製成功!",
6
- "components.button-copy.error": "Copy failed. Try again, or try copying manually.",
6
+ "components.button-copy.error": "複製失敗。請再試一次,或嘗試手動複製。",
7
7
  "components.button-split.otherOptions": "其他選項",
8
8
  "components.calendar.hasEvents": "有事件。",
9
9
  "components.calendar.notSelected": "未選取。",
@@ -167,7 +167,8 @@ export default {
167
167
  "components.selection.select-all": "全選",
168
168
  "components.selection.select-all-items":
169
169
  `{count, plural,
170
- other {選取所有 {countFormatted} 個項目}
170
+ =1 {選取項目}
171
+ other {選取全部 {countFormatted} 個項目}
171
172
  }`,
172
173
  "components.selection.selected": "已選取 {count} 個",
173
174
  "components.selection.selected-plus": "已選取 {count}+ 個",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brightspace-ui/core",
3
- "version": "3.175.2",
3
+ "version": "3.175.4",
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",