@brightspace-ui/core 2.131.3 → 2.131.5
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/list/list-item-generic-layout.js +7 -8
- package/components/list/list-item-mixin.js +2 -30
- package/lang/ar.js +2 -2
- package/lang/cy.js +2 -2
- package/lang/da.js +2 -2
- package/lang/de.js +2 -2
- package/lang/es-es.js +2 -2
- package/lang/es.js +2 -2
- package/lang/fr-fr.js +2 -2
- package/lang/fr.js +2 -2
- package/lang/hi.js +2 -2
- package/lang/ja.js +2 -2
- package/lang/ko.js +2 -2
- package/lang/nl.js +2 -2
- package/lang/pt.js +2 -2
- package/lang/sv.js +2 -2
- package/lang/tr.js +2 -2
- package/lang/zh-cn.js +2 -2
- package/lang/zh-tw.js +2 -2
- package/package.json +1 -1
|
@@ -69,7 +69,6 @@ class ListItemGenericLayout extends RtlMixin(LitElement) {
|
|
|
69
69
|
[end actions-end];
|
|
70
70
|
grid-template-rows: [main-start] [main-end nested-start] [nested-end];
|
|
71
71
|
position: relative;
|
|
72
|
-
z-index: 0;
|
|
73
72
|
}
|
|
74
73
|
|
|
75
74
|
::slotted([slot="nested"]) {
|
|
@@ -80,15 +79,15 @@ class ListItemGenericLayout extends RtlMixin(LitElement) {
|
|
|
80
79
|
grid-column: control-start / end;
|
|
81
80
|
}
|
|
82
81
|
:host(.d2l-dragging-over) ::slotted([slot="nested"]) {
|
|
83
|
-
|
|
82
|
+
order: 7; /* must be greater than item's drop-target to allow dropping onto items within nested list */
|
|
84
83
|
}
|
|
85
84
|
|
|
86
85
|
::slotted([slot="drop-target"]) {
|
|
87
86
|
height: 100%;
|
|
87
|
+
order: 6;
|
|
88
88
|
position: absolute;
|
|
89
89
|
top: 0;
|
|
90
90
|
width: 100%;
|
|
91
|
-
z-index: 6;
|
|
92
91
|
}
|
|
93
92
|
|
|
94
93
|
::slotted([slot="outside-control"]),
|
|
@@ -105,7 +104,7 @@ class ListItemGenericLayout extends RtlMixin(LitElement) {
|
|
|
105
104
|
::slotted([slot="expand-collapse"]) {
|
|
106
105
|
cursor: pointer;
|
|
107
106
|
grid-column: expand-collapse-start / expand-collapse-end;
|
|
108
|
-
|
|
107
|
+
order: 2;
|
|
109
108
|
}
|
|
110
109
|
|
|
111
110
|
::slotted([slot="control"]) {
|
|
@@ -124,7 +123,7 @@ class ListItemGenericLayout extends RtlMixin(LitElement) {
|
|
|
124
123
|
::slotted([slot="actions"]) {
|
|
125
124
|
grid-column: actions-start / actions-end;
|
|
126
125
|
justify-self: end;
|
|
127
|
-
|
|
126
|
+
order: 5;
|
|
128
127
|
}
|
|
129
128
|
|
|
130
129
|
::slotted([slot="outside-control-action"]),
|
|
@@ -134,7 +133,7 @@ class ListItemGenericLayout extends RtlMixin(LitElement) {
|
|
|
134
133
|
}
|
|
135
134
|
::slotted([slot="outside-control-action"]) {
|
|
136
135
|
grid-column: start / end;
|
|
137
|
-
|
|
136
|
+
order: 1;
|
|
138
137
|
}
|
|
139
138
|
:host([no-primary-action]) ::slotted([slot="outside-control-action"]) {
|
|
140
139
|
grid-column: start / outside-control-end;
|
|
@@ -142,15 +141,15 @@ class ListItemGenericLayout extends RtlMixin(LitElement) {
|
|
|
142
141
|
::slotted([slot="control-action"]) {
|
|
143
142
|
grid-column: control-start / end;
|
|
144
143
|
height: 100%;
|
|
144
|
+
order: 3;
|
|
145
145
|
width: 100%;
|
|
146
|
-
z-index: 3;
|
|
147
146
|
}
|
|
148
147
|
:host([no-primary-action]) ::slotted([slot="control-action"]) {
|
|
149
148
|
grid-column: control-start / control-end;
|
|
150
149
|
}
|
|
151
150
|
::slotted([slot="content-action"]) {
|
|
152
151
|
grid-column: content-start / end;
|
|
153
|
-
|
|
152
|
+
order: 4;
|
|
154
153
|
}
|
|
155
154
|
:host([no-primary-action]) ::slotted([slot="content-action"]) {
|
|
156
155
|
display: none;
|
|
@@ -84,15 +84,12 @@ export const ListItemMixin = superclass => class extends composeMixins(
|
|
|
84
84
|
paddingType: { type: String, attribute: 'padding-type' },
|
|
85
85
|
_breakpoint: { type: Number },
|
|
86
86
|
_displayKeyboardTooltip: { type: Boolean },
|
|
87
|
-
_dropdownOpen: { type: Boolean, attribute: '_dropdown-open', reflect: true },
|
|
88
|
-
_fullscreenWithin: { type: Boolean, attribute: '_fullscreen-within', reflect: true },
|
|
89
87
|
_hovering: { type: Boolean, reflect: true },
|
|
90
88
|
_hoveringPrimaryAction: { type: Boolean, attribute: '_hovering-primary-action', reflect: true },
|
|
91
89
|
_focusing: { type: Boolean, reflect: true },
|
|
92
90
|
_focusingPrimaryAction: { type: Boolean, attribute: '_focusing-primary-action', reflect: true },
|
|
93
91
|
_highlight: { type: Boolean, reflect: true },
|
|
94
92
|
_highlighting: { type: Boolean, reflect: true },
|
|
95
|
-
_tooltipShowing: { type: Boolean, attribute: '_tooltip-showing', reflect: true },
|
|
96
93
|
_hasNestedList: { state: true }
|
|
97
94
|
};
|
|
98
95
|
}
|
|
@@ -108,15 +105,6 @@ export const ListItemMixin = superclass => class extends composeMixins(
|
|
|
108
105
|
display: none;
|
|
109
106
|
}
|
|
110
107
|
|
|
111
|
-
:host([_tooltip-showing]),
|
|
112
|
-
:host([_dropdown-open]) {
|
|
113
|
-
z-index: 10; /* must be greater than adjacent selected items (if this is increased, d2l-collapsible-panel must be updated too) */
|
|
114
|
-
}
|
|
115
|
-
:host([_fullscreen-within]) {
|
|
116
|
-
position: fixed; /* required for Safari */
|
|
117
|
-
z-index: 998; /* must be greater than floating workflow buttons */
|
|
118
|
-
}
|
|
119
|
-
|
|
120
108
|
:host([dragging]) d2l-list-item-generic-layout {
|
|
121
109
|
filter: grayscale(75%);
|
|
122
110
|
opacity: 0.4;
|
|
@@ -126,9 +114,10 @@ export const ListItemMixin = superclass => class extends composeMixins(
|
|
|
126
114
|
}
|
|
127
115
|
|
|
128
116
|
[slot="control-container"] {
|
|
117
|
+
pointer-events: none;
|
|
129
118
|
position: relative;
|
|
130
|
-
z-index: -1; /* must allow for interactive content to be accessible with mouse */
|
|
131
119
|
}
|
|
120
|
+
|
|
132
121
|
:host(:first-of-type) [slot="control-container"]::before,
|
|
133
122
|
[slot="control-container"]::after {
|
|
134
123
|
border-top: 1px solid var(--d2l-color-mica);
|
|
@@ -389,8 +378,6 @@ export const ListItemMixin = superclass => class extends composeMixins(
|
|
|
389
378
|
this._breakpoint = 0;
|
|
390
379
|
this._contentId = getUniqueId();
|
|
391
380
|
this._displayKeyboardTooltip = false;
|
|
392
|
-
this._fullscreenWithin = false;
|
|
393
|
-
this._fullscreenWithinCount = 0;
|
|
394
381
|
this._hasNestedList = false;
|
|
395
382
|
}
|
|
396
383
|
|
|
@@ -421,14 +408,6 @@ export const ListItemMixin = superclass => class extends composeMixins(
|
|
|
421
408
|
ro.unobserve(this);
|
|
422
409
|
}
|
|
423
410
|
|
|
424
|
-
firstUpdated(changedProperties) {
|
|
425
|
-
this.addEventListener('d2l-dropdown-open', () => this._dropdownOpen = true);
|
|
426
|
-
this.addEventListener('d2l-dropdown-close', () => this._dropdownOpen = false);
|
|
427
|
-
this.addEventListener('d2l-tooltip-show', () => this._tooltipShowing = true);
|
|
428
|
-
this.addEventListener('d2l-tooltip-hide', () => this._tooltipShowing = false);
|
|
429
|
-
super.firstUpdated(changedProperties);
|
|
430
|
-
}
|
|
431
|
-
|
|
432
411
|
updated(changedProperties) {
|
|
433
412
|
super.updated(changedProperties);
|
|
434
413
|
if (changedProperties.has('breakpoints')) {
|
|
@@ -579,12 +558,6 @@ export const ListItemMixin = superclass => class extends composeMixins(
|
|
|
579
558
|
this._focusingPrimaryAction = false;
|
|
580
559
|
}
|
|
581
560
|
|
|
582
|
-
_onFullscreenWithin(e) {
|
|
583
|
-
if (e.detail.state) this._fullscreenWithinCount += 1;
|
|
584
|
-
else this._fullscreenWithinCount -= 1;
|
|
585
|
-
this._fullscreenWithin = (this._fullscreenWithinCount > 0);
|
|
586
|
-
}
|
|
587
|
-
|
|
588
561
|
_onMouseEnter() {
|
|
589
562
|
this._hovering = true;
|
|
590
563
|
}
|
|
@@ -629,7 +602,6 @@ export const ListItemMixin = superclass => class extends composeMixins(
|
|
|
629
602
|
align-nested="${ifDefined(this.draggable && this.selectable ? 'control' : undefined)}"
|
|
630
603
|
@focusin="${this._onFocusIn}"
|
|
631
604
|
@focusout="${this._onFocusOut}"
|
|
632
|
-
@d2l-fullscreen-within="${this._onFullscreenWithin}"
|
|
633
605
|
class="${classMap(classes)}"
|
|
634
606
|
data-breakpoint="${this._breakpoint}"
|
|
635
607
|
data-separators="${ifDefined(this._separators)}"
|
package/lang/ar.js
CHANGED
|
@@ -21,7 +21,7 @@ export default {
|
|
|
21
21
|
"components.filter.filters": "عوامل التصفية",
|
|
22
22
|
"components.filter.noFilters": "ما من عوامل تصفية متوفرة",
|
|
23
23
|
"components.filter.searchResults": "{number, plural, =0 {ما من نتائج بحث} one {{number} نتيجة بحث} other {{number} من نتائج البحث}}",
|
|
24
|
-
"components.filter.selectedFirstListLabel": "{headerText}.
|
|
24
|
+
"components.filter.selectedFirstListLabel": "{headerText}. تظهر عوامل التصفية المحددة أولاً.",
|
|
25
25
|
"components.filter.singleDimensionDescription": "التصفية حسب: {filterName}",
|
|
26
26
|
"components.form-element.defaultError": "{label} غير صالحة.",
|
|
27
27
|
"components.form-element.defaultFieldLabel": "الحقل",
|
|
@@ -94,7 +94,7 @@ export default {
|
|
|
94
94
|
"components.more-less.more": "المزيد",
|
|
95
95
|
"components.object-property-list.item-placeholder-text": "عنصر نائب",
|
|
96
96
|
"components.overflow-group.moreActions": "مزيد من الإجراءات",
|
|
97
|
-
"components.pager-load-more.action": "
|
|
97
|
+
"components.pager-load-more.action": "تحميل المزيد",
|
|
98
98
|
"components.pager-load-more.action-with-page-size": "تحميل {count} إضافي",
|
|
99
99
|
"components.pageable.info": "{count, plural, one {{countFormatted} مادة واحد} other {{countFormatted} من المواد}}",
|
|
100
100
|
"components.pageable.info-with-total": "{totalCount, plural, one {{countFormatted} من أصل {totalCountFormatted} مادة واحدة} other {{countFormatted} من أصل {totalCountFormatted} من المواد}}",
|
package/lang/cy.js
CHANGED
|
@@ -21,7 +21,7 @@ export default {
|
|
|
21
21
|
"components.filter.filters": "Hidlyddion",
|
|
22
22
|
"components.filter.noFilters": "Dim hidlyddion ar gael",
|
|
23
23
|
"components.filter.searchResults": "{number, plural, =0 {Dim canlyniadau chwilio} one {{number} canlyniad chwilio} other {{number} canlyniadau chwilio}}",
|
|
24
|
-
"components.filter.selectedFirstListLabel": "{headerText}.
|
|
24
|
+
"components.filter.selectedFirstListLabel": "{headerText}. Mae'r hidlyddion a ddewiswyd yn ymddangos gyntaf.",
|
|
25
25
|
"components.filter.singleDimensionDescription": "Hidlo yn ôl: {filterName}",
|
|
26
26
|
"components.form-element.defaultError": "Mae {label} yn annilys.",
|
|
27
27
|
"components.form-element.defaultFieldLabel": "Maes",
|
|
@@ -94,7 +94,7 @@ export default {
|
|
|
94
94
|
"components.more-less.more": "mwy",
|
|
95
95
|
"components.object-property-list.item-placeholder-text": "Eitem Dalfan",
|
|
96
96
|
"components.overflow-group.moreActions": "Rhagor o Gamau Gweithredu",
|
|
97
|
-
"components.pager-load-more.action": "
|
|
97
|
+
"components.pager-load-more.action": "Llwytho Mwy",
|
|
98
98
|
"components.pager-load-more.action-with-page-size": "Lwytho {count} Arall",
|
|
99
99
|
"components.pageable.info": "{count, plural, one {{countFormatted} eitem} other {{countFormatted} o eitemau}}",
|
|
100
100
|
"components.pageable.info-with-total": "{totalCount, plural, one {{countFormatted} o {totalCountFormatted} eitem} other {{countFormatted} o {totalCountFormatted} eitemau}}",
|
package/lang/da.js
CHANGED
|
@@ -21,7 +21,7 @@ export default {
|
|
|
21
21
|
"components.filter.filters": "Filtre",
|
|
22
22
|
"components.filter.noFilters": "Ingen tilgængelige filtre",
|
|
23
23
|
"components.filter.searchResults": "{number, plural, =0 {Ingen søgeresultater} one {{number} søgeresultat} other {{number} søgeresultater}}",
|
|
24
|
-
"components.filter.selectedFirstListLabel": "{headerText}.
|
|
24
|
+
"components.filter.selectedFirstListLabel": "{headerText}. Valgte filtre vises først.",
|
|
25
25
|
"components.filter.singleDimensionDescription": "Filtrer efter: {filterName}",
|
|
26
26
|
"components.form-element.defaultError": "{label} er ugyldigt.",
|
|
27
27
|
"components.form-element.defaultFieldLabel": "Felt",
|
|
@@ -94,7 +94,7 @@ export default {
|
|
|
94
94
|
"components.more-less.more": "flere",
|
|
95
95
|
"components.object-property-list.item-placeholder-text": "Pladsholder-element",
|
|
96
96
|
"components.overflow-group.moreActions": "Flere handlinger",
|
|
97
|
-
"components.pager-load-more.action": "
|
|
97
|
+
"components.pager-load-more.action": "Indlæs flere",
|
|
98
98
|
"components.pager-load-more.action-with-page-size": "Indlæs {count} mere",
|
|
99
99
|
"components.pageable.info": "{count, plural, one {{countFormatted} element} other {{countFormatted} elementer}}",
|
|
100
100
|
"components.pageable.info-with-total": "{totalCount, plural, one {{countFormatted} af {totalCountFormatted} element} other {{countFormatted} af {totalCountFormatted} elementer}}",
|
package/lang/de.js
CHANGED
|
@@ -21,7 +21,7 @@ export default {
|
|
|
21
21
|
"components.filter.filters": "Filter",
|
|
22
22
|
"components.filter.noFilters": "Keine verfügbaren Filter",
|
|
23
23
|
"components.filter.searchResults": "{number, plural, =0 {Kein Suchergebnis} one {{number} Suchergebnis} other {{number} Suchergebnisse}}",
|
|
24
|
-
"components.filter.selectedFirstListLabel": "{headerText}.
|
|
24
|
+
"components.filter.selectedFirstListLabel": "{headerText}. Ausgewählte Filter werden zuerst angezeigt.",
|
|
25
25
|
"components.filter.singleDimensionDescription": "Filtern nach: {filterName}",
|
|
26
26
|
"components.form-element.defaultError": "{label} ist ungültig.",
|
|
27
27
|
"components.form-element.defaultFieldLabel": "Feld",
|
|
@@ -94,7 +94,7 @@ export default {
|
|
|
94
94
|
"components.more-less.more": "mehr",
|
|
95
95
|
"components.object-property-list.item-placeholder-text": "Platzhalterelement",
|
|
96
96
|
"components.overflow-group.moreActions": "Weitere Aktionen",
|
|
97
|
-
"components.pager-load-more.action": "
|
|
97
|
+
"components.pager-load-more.action": "Mehr laden",
|
|
98
98
|
"components.pager-load-more.action-with-page-size": "{count} weitere laden",
|
|
99
99
|
"components.pageable.info": "{count, plural, one {{countFormatted} Element} other {{countFormatted} Elemente}}",
|
|
100
100
|
"components.pageable.info-with-total": "{totalCount, plural, one {{countFormatted} von {totalCountFormatted} Element} other {{countFormatted} von {totalCountFormatted} Elemente}}",
|
package/lang/es-es.js
CHANGED
|
@@ -21,7 +21,7 @@ export default {
|
|
|
21
21
|
"components.filter.filters": "Filtros",
|
|
22
22
|
"components.filter.noFilters": "No hay filtros disponibles",
|
|
23
23
|
"components.filter.searchResults": "{number, plural, =0 {No hay resultados de búsqueda} one {{number} resultado de búsqueda} other {{number} resultados de búsqueda}}",
|
|
24
|
-
"components.filter.selectedFirstListLabel": "{headerText}.
|
|
24
|
+
"components.filter.selectedFirstListLabel": "{headerText}. Los filtros seleccionados aparecen primero.",
|
|
25
25
|
"components.filter.singleDimensionDescription": "Filtrar por: {filterName}",
|
|
26
26
|
"components.form-element.defaultError": "{label} no es válido.",
|
|
27
27
|
"components.form-element.defaultFieldLabel": "Campo",
|
|
@@ -94,7 +94,7 @@ export default {
|
|
|
94
94
|
"components.more-less.more": "más",
|
|
95
95
|
"components.object-property-list.item-placeholder-text": "Elemento de marcador de posición",
|
|
96
96
|
"components.overflow-group.moreActions": "Más acciones",
|
|
97
|
-
"components.pager-load-more.action": "
|
|
97
|
+
"components.pager-load-more.action": "Cargar más",
|
|
98
98
|
"components.pager-load-more.action-with-page-size": "Cargar {count} más",
|
|
99
99
|
"components.pageable.info": "{count, plural, one {{countFormatted} elemento} other {{countFormatted} elementos}}",
|
|
100
100
|
"components.pageable.info-with-total": "{totalCount, plural, one {{countFormatted} de {totalCountFormatted} elemento} other {{countFormatted} de {totalCountFormatted} elementos}}",
|
package/lang/es.js
CHANGED
|
@@ -21,7 +21,7 @@ export default {
|
|
|
21
21
|
"components.filter.filters": "Filtros",
|
|
22
22
|
"components.filter.noFilters": "No hay filtros disponibles",
|
|
23
23
|
"components.filter.searchResults": "{number, plural, =0 {No se encontraron resultados de búsqueda} one {{number} resultado de búsqueda} other {{number} resultados de búsqueda}}",
|
|
24
|
-
"components.filter.selectedFirstListLabel": "{headerText}.
|
|
24
|
+
"components.filter.selectedFirstListLabel": "{headerText}. Los filtros seleccionados aparecen primero.",
|
|
25
25
|
"components.filter.singleDimensionDescription": "Filtrar por: {filterName}",
|
|
26
26
|
"components.form-element.defaultError": "{label} no es válida.",
|
|
27
27
|
"components.form-element.defaultFieldLabel": "Campo",
|
|
@@ -94,7 +94,7 @@ export default {
|
|
|
94
94
|
"components.more-less.more": "más",
|
|
95
95
|
"components.object-property-list.item-placeholder-text": "Elemento de marcador de posición",
|
|
96
96
|
"components.overflow-group.moreActions": "Más acciones",
|
|
97
|
-
"components.pager-load-more.action": "
|
|
97
|
+
"components.pager-load-more.action": "Cargar más",
|
|
98
98
|
"components.pager-load-more.action-with-page-size": "Cargar {count} más",
|
|
99
99
|
"components.pageable.info": "{count, plural, one {{countFormatted} elemento} other {{countFormatted} elementos}}",
|
|
100
100
|
"components.pageable.info-with-total": "{totalCount, plural, one {{countFormatted} de {totalCountFormatted} elemento} other {{countFormatted} de {totalCountFormatted} elementos}}",
|
package/lang/fr-fr.js
CHANGED
|
@@ -21,7 +21,7 @@ export default {
|
|
|
21
21
|
"components.filter.filters": "Filtres",
|
|
22
22
|
"components.filter.noFilters": "Aucun filtre disponible",
|
|
23
23
|
"components.filter.searchResults": "{number, plural, =0 {Aucun résultat de recherche} one {{number} résultat de recherche} other {{number} résultats de recherche}}",
|
|
24
|
-
"components.filter.selectedFirstListLabel": "{headerText}.
|
|
24
|
+
"components.filter.selectedFirstListLabel": "{headerText}. Les filtres sélectionnés s’affichent en premier.",
|
|
25
25
|
"components.filter.singleDimensionDescription": "Filtrer par : {filterName}",
|
|
26
26
|
"components.form-element.defaultError": "{label} n'est pas valide.",
|
|
27
27
|
"components.form-element.defaultFieldLabel": "Champ",
|
|
@@ -94,7 +94,7 @@ export default {
|
|
|
94
94
|
"components.more-less.more": "plus",
|
|
95
95
|
"components.object-property-list.item-placeholder-text": "Élément d’espace réservé",
|
|
96
96
|
"components.overflow-group.moreActions": "Plus d'actions",
|
|
97
|
-
"components.pager-load-more.action": "
|
|
97
|
+
"components.pager-load-more.action": "Charger plus",
|
|
98
98
|
"components.pager-load-more.action-with-page-size": "Charger {count} supplémentaire(s)",
|
|
99
99
|
"components.pageable.info": "{count, plural, one {{countFormatted} élément} other {{countFormatted} éléments}}",
|
|
100
100
|
"components.pageable.info-with-total": "{totalCount, plural, one {{countFormatted} sur {totalCountFormatted} élément} other {{countFormatted} sur {totalCountFormatted} éléments}}",
|
package/lang/fr.js
CHANGED
|
@@ -21,7 +21,7 @@ export default {
|
|
|
21
21
|
"components.filter.filters": "Filtres",
|
|
22
22
|
"components.filter.noFilters": "Aucun filtre disponible",
|
|
23
23
|
"components.filter.searchResults": "{number, plural, =0 {Aucun résultat de recherche} one {{number} résultat de recherche} other {{number} résultats de recherche}}",
|
|
24
|
-
"components.filter.selectedFirstListLabel": "{headerText}.
|
|
24
|
+
"components.filter.selectedFirstListLabel": "{headerText}. Les filtres sélectionnés s’affichent en premier.",
|
|
25
25
|
"components.filter.singleDimensionDescription": "Filtrer par : {filterName}",
|
|
26
26
|
"components.form-element.defaultError": "{label} n'est pas valide.",
|
|
27
27
|
"components.form-element.defaultFieldLabel": "Champ",
|
|
@@ -94,7 +94,7 @@ export default {
|
|
|
94
94
|
"components.more-less.more": "plus",
|
|
95
95
|
"components.object-property-list.item-placeholder-text": "Élément de paramètre fictif",
|
|
96
96
|
"components.overflow-group.moreActions": "Plus d'actions",
|
|
97
|
-
"components.pager-load-more.action": "
|
|
97
|
+
"components.pager-load-more.action": "En télécharger plus",
|
|
98
98
|
"components.pager-load-more.action-with-page-size": "Charger {count} de plus",
|
|
99
99
|
"components.pageable.info": "{count, plural, one {{countFormatted} élément} other {{countFormatted} éléments}}",
|
|
100
100
|
"components.pageable.info-with-total": "{totalCount, plural, one {{countFormatted} de {totalCountFormatted} élément} other {{countFormatted} de {totalCountFormatted} éléments}}",
|
package/lang/hi.js
CHANGED
|
@@ -21,7 +21,7 @@ export default {
|
|
|
21
21
|
"components.filter.filters": "फ़िल्टर्स",
|
|
22
22
|
"components.filter.noFilters": "कोई उपलब्ध फ़िल्टर्स नहीं",
|
|
23
23
|
"components.filter.searchResults": "{number, plural, =0 {कोई खोज परिणाम नहीं} one {{number} खोज परिणाम} other {{number} खोज परिणाम}}",
|
|
24
|
-
"components.filter.selectedFirstListLabel": "{headerText}.
|
|
24
|
+
"components.filter.selectedFirstListLabel": "{headerText}. चुने गए फ़िल्टर सबसे पहले दिखाई देते हैं।",
|
|
25
25
|
"components.filter.singleDimensionDescription": "इसके अनुसार फ़िल्टर करें: {filterName}",
|
|
26
26
|
"components.form-element.defaultError": "{label} अमान्य है।",
|
|
27
27
|
"components.form-element.defaultFieldLabel": "फ़ील्ड",
|
|
@@ -94,7 +94,7 @@ export default {
|
|
|
94
94
|
"components.more-less.more": "अधिक",
|
|
95
95
|
"components.object-property-list.item-placeholder-text": "प्लेसहोल्डर आइटम",
|
|
96
96
|
"components.overflow-group.moreActions": "अधिक क्रियाएँ",
|
|
97
|
-
"components.pager-load-more.action": "
|
|
97
|
+
"components.pager-load-more.action": "और लोड करें",
|
|
98
98
|
"components.pager-load-more.action-with-page-size": "{count} और लोड करें",
|
|
99
99
|
"components.pageable.info": "{count, plural, one {{countFormatted} आइटम} other {{countFormatted} आइटम}}",
|
|
100
100
|
"components.pageable.info-with-total": "{totalCount, plural, one {{totalCountFormatted} में से {countFormatted} आइटम} other {{totalCountFormatted} में से {countFormatted} आइटम}}",
|
package/lang/ja.js
CHANGED
|
@@ -21,7 +21,7 @@ export default {
|
|
|
21
21
|
"components.filter.filters": "フィルタ",
|
|
22
22
|
"components.filter.noFilters": "使用可能なフィルタはありません",
|
|
23
23
|
"components.filter.searchResults": "{number, plural, =0 {検索結果なし} other {{number} 件の検索結果}}",
|
|
24
|
-
"components.filter.selectedFirstListLabel": "{headerText}
|
|
24
|
+
"components.filter.selectedFirstListLabel": "{headerText}。選択したフィルタが最初に表示されます。",
|
|
25
25
|
"components.filter.singleDimensionDescription": "フィルタ条件: {filterName}",
|
|
26
26
|
"components.form-element.defaultError": "{label} は無効です。",
|
|
27
27
|
"components.form-element.defaultFieldLabel": "フィールド",
|
|
@@ -94,7 +94,7 @@ export default {
|
|
|
94
94
|
"components.more-less.more": "増やす",
|
|
95
95
|
"components.object-property-list.item-placeholder-text": "プレースホルダの項目",
|
|
96
96
|
"components.overflow-group.moreActions": "その他のアクション",
|
|
97
|
-
"components.pager-load-more.action": "
|
|
97
|
+
"components.pager-load-more.action": "さらに読み込む",
|
|
98
98
|
"components.pager-load-more.action-with-page-size": "さらに {count} 件を読み込む",
|
|
99
99
|
"components.pageable.info": "{count, plural, other {{countFormatted} 個の項目}}",
|
|
100
100
|
"components.pageable.info-with-total": "{totalCount, plural, other {{countFormatted}/{totalCountFormatted} 個の項目}}",
|
package/lang/ko.js
CHANGED
|
@@ -21,7 +21,7 @@ export default {
|
|
|
21
21
|
"components.filter.filters": "개 필터",
|
|
22
22
|
"components.filter.noFilters": "사용 가능한 필터가 없습니다",
|
|
23
23
|
"components.filter.searchResults": "{number, plural, =0 {검색 결과 없음} other {{number}개 검색 결과}}",
|
|
24
|
-
"components.filter.selectedFirstListLabel": "{headerText}.
|
|
24
|
+
"components.filter.selectedFirstListLabel": "{headerText}. 선택한 필터가 먼저 나타납니다.",
|
|
25
25
|
"components.filter.singleDimensionDescription": "필터 기준: {filterName}",
|
|
26
26
|
"components.form-element.defaultError": "{label}이(가) 잘못되었습니다.",
|
|
27
27
|
"components.form-element.defaultFieldLabel": "필드",
|
|
@@ -94,7 +94,7 @@ export default {
|
|
|
94
94
|
"components.more-less.more": "더 보기",
|
|
95
95
|
"components.object-property-list.item-placeholder-text": "자리표시자 항목",
|
|
96
96
|
"components.overflow-group.moreActions": "추가 작업",
|
|
97
|
-
"components.pager-load-more.action": "
|
|
97
|
+
"components.pager-load-more.action": "더 많이 로드",
|
|
98
98
|
"components.pager-load-more.action-with-page-size": "{count}개 더 로드",
|
|
99
99
|
"components.pageable.info": "{count, plural, other {해당 항목 수 {countFormatted}개}}",
|
|
100
100
|
"components.pageable.info-with-total": "{totalCount, plural, other {{totalCountFormatted}개 항목 중 {countFormatted}개}}",
|
package/lang/nl.js
CHANGED
|
@@ -21,7 +21,7 @@ export default {
|
|
|
21
21
|
"components.filter.filters": "Filters", // mfv-translated
|
|
22
22
|
"components.filter.noFilters": "Geen beschikbare filters",
|
|
23
23
|
"components.filter.searchResults": "{number, plural, =0 {Geen zoekresultaten} one {{number} zoekresultaat} other {{number} zoekresultaten}}",
|
|
24
|
-
"components.filter.selectedFirstListLabel": "{headerText}.
|
|
24
|
+
"components.filter.selectedFirstListLabel": "{headerText}. Geselecteerde filters verschijnen als eerste.",
|
|
25
25
|
"components.filter.singleDimensionDescription": "Filter op {filterName}",
|
|
26
26
|
"components.form-element.defaultError": "{label} is ongeldig.",
|
|
27
27
|
"components.form-element.defaultFieldLabel": "Veld",
|
|
@@ -94,7 +94,7 @@ export default {
|
|
|
94
94
|
"components.more-less.more": "meer",
|
|
95
95
|
"components.object-property-list.item-placeholder-text": "Item tijdelijke aanduiding",
|
|
96
96
|
"components.overflow-group.moreActions": "Meer acties",
|
|
97
|
-
"components.pager-load-more.action": "
|
|
97
|
+
"components.pager-load-more.action": "Meer laden",
|
|
98
98
|
"components.pager-load-more.action-with-page-size": "Laad nog {count} extra",
|
|
99
99
|
"components.pageable.info": "{count, plural, one {{countFormatted} item} other {{countFormatted} items}}",
|
|
100
100
|
"components.pageable.info-with-total": "{totalCount, plural, one {{countFormatted} van {totalCountFormatted} artikel} other {{countFormatted} van {totalCountFormatted} artikelen}}",
|
package/lang/pt.js
CHANGED
|
@@ -21,7 +21,7 @@ export default {
|
|
|
21
21
|
"components.filter.filters": "Filtros",
|
|
22
22
|
"components.filter.noFilters": "Não há filtros disponíveis",
|
|
23
23
|
"components.filter.searchResults": "{number, plural, =0 {Sem resultados para a pesquisa} one {{number} resultado para a pesquisa} other {{number} resultados para a pesquisa}}",
|
|
24
|
-
"components.filter.selectedFirstListLabel": "{headerText}.
|
|
24
|
+
"components.filter.selectedFirstListLabel": "{headerText}. Os filtros selecionados aparecem primeiro.",
|
|
25
25
|
"components.filter.singleDimensionDescription": "Filtrar por: {filterName}",
|
|
26
26
|
"components.form-element.defaultError": "{label} é inválido.",
|
|
27
27
|
"components.form-element.defaultFieldLabel": "Campo",
|
|
@@ -94,7 +94,7 @@ export default {
|
|
|
94
94
|
"components.more-less.more": "mais",
|
|
95
95
|
"components.object-property-list.item-placeholder-text": "Item de espaço reservado",
|
|
96
96
|
"components.overflow-group.moreActions": "Mais ações",
|
|
97
|
-
"components.pager-load-more.action": "
|
|
97
|
+
"components.pager-load-more.action": "Carregar mais",
|
|
98
98
|
"components.pager-load-more.action-with-page-size": "Carregar mais {count}",
|
|
99
99
|
"components.pageable.info": "{count, plural, one {{countFormatted} item} other {{countFormatted} itens}}",
|
|
100
100
|
"components.pageable.info-with-total": "{totalCount, plural, one {{countFormatted} de {totalCountFormatted} item} other {{countFormatted} de {totalCountFormatted} itens}}",
|
package/lang/sv.js
CHANGED
|
@@ -21,7 +21,7 @@ export default {
|
|
|
21
21
|
"components.filter.filters": "Filter",
|
|
22
22
|
"components.filter.noFilters": "Inga tillgängliga filter",
|
|
23
23
|
"components.filter.searchResults": "{number, plural, =0 {Inga sökresultat} one {{number} sökresultat} other {{number} sökresultat}}",
|
|
24
|
-
"components.filter.selectedFirstListLabel": "{headerText}.
|
|
24
|
+
"components.filter.selectedFirstListLabel": "{headerText}. Valda filter visas först.",
|
|
25
25
|
"components.filter.singleDimensionDescription": "Filtrera efter: {filterName}",
|
|
26
26
|
"components.form-element.defaultError": "{label} är ogiltig.",
|
|
27
27
|
"components.form-element.defaultFieldLabel": "Fält",
|
|
@@ -94,7 +94,7 @@ export default {
|
|
|
94
94
|
"components.more-less.more": "mer",
|
|
95
95
|
"components.object-property-list.item-placeholder-text": "Platshållarobjekt",
|
|
96
96
|
"components.overflow-group.moreActions": "Fler åtgärder",
|
|
97
|
-
"components.pager-load-more.action": "
|
|
97
|
+
"components.pager-load-more.action": "Läs in fler",
|
|
98
98
|
"components.pager-load-more.action-with-page-size": "Läs in {count} till",
|
|
99
99
|
"components.pageable.info": "{count, plural, one {{countFormatted} objekt} other {{countFormatted} objekt}}",
|
|
100
100
|
"components.pageable.info-with-total": "{totalCount, plural, one {{countFormatted} av {totalCountFormatted} objekt} other {{countFormatted} av {totalCountFormatted} objekt}}",
|
package/lang/tr.js
CHANGED
|
@@ -21,7 +21,7 @@ export default {
|
|
|
21
21
|
"components.filter.filters": "Filtre",
|
|
22
22
|
"components.filter.noFilters": "Uygun filtre yok",
|
|
23
23
|
"components.filter.searchResults": "{number, plural, =0 {Arama sonucu yok} one {{number} arama sonucu} other {{number} arama sonucu}}",
|
|
24
|
-
"components.filter.selectedFirstListLabel": "{headerText}.
|
|
24
|
+
"components.filter.selectedFirstListLabel": "{headerText}. Seçilen filtreler önce görünür.",
|
|
25
25
|
"components.filter.singleDimensionDescription": "Filtreleme ölçütü: {filterName}",
|
|
26
26
|
"components.form-element.defaultError": "{label} geçersiz.",
|
|
27
27
|
"components.form-element.defaultFieldLabel": "Alan",
|
|
@@ -94,7 +94,7 @@ export default {
|
|
|
94
94
|
"components.more-less.more": "daha fazla",
|
|
95
95
|
"components.object-property-list.item-placeholder-text": "Yer Tutucu Öğesi",
|
|
96
96
|
"components.overflow-group.moreActions": "Daha Fazla Eylem",
|
|
97
|
-
"components.pager-load-more.action": "
|
|
97
|
+
"components.pager-load-more.action": "Daha Fazla Yükle",
|
|
98
98
|
"components.pager-load-more.action-with-page-size": "{count} Tane Daha Yükle",
|
|
99
99
|
"components.pageable.info": "{count, plural, one {{countFormatted} öğe} other {{countFormatted} öğe}}",
|
|
100
100
|
"components.pageable.info-with-total": "{totalCount, plural, one {{countFormatted} / {totalCountFormatted} öğe} other {{countFormatted} / {totalCountFormatted} öğe}}",
|
package/lang/zh-cn.js
CHANGED
|
@@ -21,7 +21,7 @@ export default {
|
|
|
21
21
|
"components.filter.filters": "个筛选条件",
|
|
22
22
|
"components.filter.noFilters": "无可用筛选器",
|
|
23
23
|
"components.filter.searchResults": "{number, plural, =0 {无搜索结果} other {{number} 个搜索结果}}",
|
|
24
|
-
"components.filter.selectedFirstListLabel": "{headerText}
|
|
24
|
+
"components.filter.selectedFirstListLabel": "{headerText}。先显示所选筛选器。",
|
|
25
25
|
"components.filter.singleDimensionDescription": "筛选依据:{filterName}",
|
|
26
26
|
"components.form-element.defaultError": "{label} 无效。",
|
|
27
27
|
"components.form-element.defaultFieldLabel": "字段",
|
|
@@ -94,7 +94,7 @@ export default {
|
|
|
94
94
|
"components.more-less.more": "更多",
|
|
95
95
|
"components.object-property-list.item-placeholder-text": "占位符项目",
|
|
96
96
|
"components.overflow-group.moreActions": "更多操作",
|
|
97
|
-
"components.pager-load-more.action": "
|
|
97
|
+
"components.pager-load-more.action": "加载更多",
|
|
98
98
|
"components.pager-load-more.action-with-page-size": "再加载 {count} 个",
|
|
99
99
|
"components.pageable.info": "{count, plural, other {{countFormatted} 项}}",
|
|
100
100
|
"components.pageable.info-with-total": "{totalCount, plural, other {{countFormatted}/{totalCountFormatted} 项}}",
|
package/lang/zh-tw.js
CHANGED
|
@@ -21,7 +21,7 @@ export default {
|
|
|
21
21
|
"components.filter.filters": "篩選器",
|
|
22
22
|
"components.filter.noFilters": "沒有可用的篩選條件",
|
|
23
23
|
"components.filter.searchResults": "{number, plural, =0 {無搜尋結果} other {{number} 個搜尋結果}}",
|
|
24
|
-
"components.filter.selectedFirstListLabel": "{headerText}
|
|
24
|
+
"components.filter.selectedFirstListLabel": "{headerText}。所選篩選器會先顯示。",
|
|
25
25
|
"components.filter.singleDimensionDescription": "按此條件篩選:{filterName}",
|
|
26
26
|
"components.form-element.defaultError": "{label} 無效。",
|
|
27
27
|
"components.form-element.defaultFieldLabel": "欄位",
|
|
@@ -94,7 +94,7 @@ export default {
|
|
|
94
94
|
"components.more-less.more": "較多",
|
|
95
95
|
"components.object-property-list.item-placeholder-text": "預留位置項目",
|
|
96
96
|
"components.overflow-group.moreActions": "其他動作",
|
|
97
|
-
"components.pager-load-more.action": "
|
|
97
|
+
"components.pager-load-more.action": "載入更多",
|
|
98
98
|
"components.pager-load-more.action-with-page-size": "再載入 {count} 個",
|
|
99
99
|
"components.pageable.info": "{count, plural, other {{countFormatted} 個項目}}",
|
|
100
100
|
"components.pageable.info-with-total": "{totalCount, plural, other {{countFormatted} 項,共 {totalCountFormatted} 項}}",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@brightspace-ui/core",
|
|
3
|
-
"version": "2.131.
|
|
3
|
+
"version": "2.131.5",
|
|
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",
|