@brightspace-ui/core 2.111.1 → 2.111.3
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/selection/README.md +1 -0
- package/components/selection/selection-controls.js +10 -2
- package/components/selection/selection-summary.js +1 -1
- package/custom-elements.json +33 -0
- package/lang/ar.js +2 -2
- package/lang/cy.js +2 -2
- package/lang/da.js +1 -1
- 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 +1 -1
- package/lang/hi.js +1 -1
- package/lang/ja.js +1 -1
- package/lang/ko.js +1 -1
- package/lang/pt.js +1 -1
- package/lang/sv.js +1 -1
- package/lang/tr.js +1 -1
- package/lang/zh-cn.js +1 -1
- package/lang/zh-tw.js +1 -1
- package/package.json +1 -1
|
@@ -486,6 +486,7 @@ When using lists, use the list-specific `d2l-list-controls` instead, which exten
|
|
|
486
486
|
| Property | Type | Description |
|
|
487
487
|
|---|---|---|
|
|
488
488
|
| `no-selection` | Boolean | Whether to render select-all and selection summary |
|
|
489
|
+
| `no-selection-text` | String | Text to display if no items are selected (overrides pageable counts) |
|
|
489
490
|
| `no-sticky` | Boolean | Disables sticky positioning for the controls |
|
|
490
491
|
| `select-all-pages-allowed` | Boolean | Whether all pages can be selected |
|
|
491
492
|
<!-- docs: end hidden content -->
|
|
@@ -24,6 +24,11 @@ export class SelectionControls extends PageableSubscriberMixin(SelectionObserver
|
|
|
24
24
|
* @type {boolean}
|
|
25
25
|
*/
|
|
26
26
|
noSelection: { type: Boolean, attribute: 'no-selection' },
|
|
27
|
+
/**
|
|
28
|
+
* ADVANCED: Text to display if no items are selected (overrides pageable counts)
|
|
29
|
+
* @type {string}
|
|
30
|
+
*/
|
|
31
|
+
noSelectionText: { type: String, attribute: 'no-selection-text' },
|
|
27
32
|
/**
|
|
28
33
|
* Disables sticky positioning for the controls
|
|
29
34
|
* @type {boolean}
|
|
@@ -150,8 +155,11 @@ export class SelectionControls extends PageableSubscriberMixin(SelectionObserver
|
|
|
150
155
|
if (changedProperties.has('noSticky')) {
|
|
151
156
|
this._stickyObserverUpdate();
|
|
152
157
|
}
|
|
153
|
-
|
|
154
|
-
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
willUpdate(changedProperties) {
|
|
161
|
+
if (changedProperties.has('noSelectionText') || changedProperties.has('_pageableInfo')) {
|
|
162
|
+
this._noSelectionText = this.noSelectionText || this._getNoSelectionText();
|
|
155
163
|
}
|
|
156
164
|
}
|
|
157
165
|
|
|
@@ -44,7 +44,7 @@ class Summary extends LocalizeCoreElement(SelectionObserverMixin(LitElement)) {
|
|
|
44
44
|
}
|
|
45
45
|
|
|
46
46
|
willUpdate(changedProperties) {
|
|
47
|
-
if (changedProperties.has('_provider') || changedProperties.has('selectionInfo')) {
|
|
47
|
+
if (changedProperties.has('_provider') || changedProperties.has('selectionInfo') || changedProperties.has('noSelectionText')) {
|
|
48
48
|
this._updateSelectSummary();
|
|
49
49
|
}
|
|
50
50
|
}
|
package/custom-elements.json
CHANGED
|
@@ -8014,6 +8014,11 @@
|
|
|
8014
8014
|
"path": "./components/list/list-controls.js",
|
|
8015
8015
|
"description": "Controls for list components containing select-all, etc.",
|
|
8016
8016
|
"attributes": [
|
|
8017
|
+
{
|
|
8018
|
+
"name": "no-selection-text",
|
|
8019
|
+
"description": "ADVANCED: Text to display if no items are selected (overrides pageable counts)",
|
|
8020
|
+
"type": "string"
|
|
8021
|
+
},
|
|
8017
8022
|
{
|
|
8018
8023
|
"name": "no-selection",
|
|
8019
8024
|
"description": "Whether to render select-all and selection summary",
|
|
@@ -8044,6 +8049,12 @@
|
|
|
8044
8049
|
}
|
|
8045
8050
|
],
|
|
8046
8051
|
"properties": [
|
|
8052
|
+
{
|
|
8053
|
+
"name": "noSelectionText",
|
|
8054
|
+
"attribute": "no-selection-text",
|
|
8055
|
+
"description": "ADVANCED: Text to display if no items are selected (overrides pageable counts)",
|
|
8056
|
+
"type": "string"
|
|
8057
|
+
},
|
|
8047
8058
|
{
|
|
8048
8059
|
"name": "noSelection",
|
|
8049
8060
|
"attribute": "no-selection",
|
|
@@ -10639,6 +10650,11 @@
|
|
|
10639
10650
|
"path": "./components/selection/selection-controls.js",
|
|
10640
10651
|
"description": "Controls for selection components (e.g. list, table-wrapper) containing select-all, etc.",
|
|
10641
10652
|
"attributes": [
|
|
10653
|
+
{
|
|
10654
|
+
"name": "no-selection-text",
|
|
10655
|
+
"description": "ADVANCED: Text to display if no items are selected (overrides pageable counts)",
|
|
10656
|
+
"type": "string"
|
|
10657
|
+
},
|
|
10642
10658
|
{
|
|
10643
10659
|
"name": "no-selection",
|
|
10644
10660
|
"description": "Whether to render select-all and selection summary",
|
|
@@ -10669,6 +10685,12 @@
|
|
|
10669
10685
|
}
|
|
10670
10686
|
],
|
|
10671
10687
|
"properties": [
|
|
10688
|
+
{
|
|
10689
|
+
"name": "noSelectionText",
|
|
10690
|
+
"attribute": "no-selection-text",
|
|
10691
|
+
"description": "ADVANCED: Text to display if no items are selected (overrides pageable counts)",
|
|
10692
|
+
"type": "string"
|
|
10693
|
+
},
|
|
10672
10694
|
{
|
|
10673
10695
|
"name": "noSelection",
|
|
10674
10696
|
"attribute": "no-selection",
|
|
@@ -11665,6 +11687,11 @@
|
|
|
11665
11687
|
"path": "./components/table/table-controls.js",
|
|
11666
11688
|
"description": "Controls for table components containing a selection summary and selection actions.",
|
|
11667
11689
|
"attributes": [
|
|
11690
|
+
{
|
|
11691
|
+
"name": "no-selection-text",
|
|
11692
|
+
"description": "ADVANCED: Text to display if no items are selected (overrides pageable counts)",
|
|
11693
|
+
"type": "string"
|
|
11694
|
+
},
|
|
11668
11695
|
{
|
|
11669
11696
|
"name": "no-selection",
|
|
11670
11697
|
"description": "Whether to render the selection summary",
|
|
@@ -11695,6 +11722,12 @@
|
|
|
11695
11722
|
}
|
|
11696
11723
|
],
|
|
11697
11724
|
"properties": [
|
|
11725
|
+
{
|
|
11726
|
+
"name": "noSelectionText",
|
|
11727
|
+
"attribute": "no-selection-text",
|
|
11728
|
+
"description": "ADVANCED: Text to display if no items are selected (overrides pageable counts)",
|
|
11729
|
+
"type": "string"
|
|
11730
|
+
},
|
|
11698
11731
|
{
|
|
11699
11732
|
"name": "noSelection",
|
|
11700
11733
|
"attribute": "no-selection",
|
package/lang/ar.js
CHANGED
|
@@ -94,8 +94,8 @@ export default {
|
|
|
94
94
|
"components.object-property-list.item-placeholder-text": "عنصر نائب",
|
|
95
95
|
"components.overflow-group.moreActions": "مزيد من الإجراءات",
|
|
96
96
|
"components.pager-load-more.action": "تحميل {count} إضافي",
|
|
97
|
-
"components.pageable.info": "{count, plural, one {{countFormatted}
|
|
98
|
-
"components.pageable.info-with-total": "{totalCount, plural, one {{countFormatted} من أصل {totalCountFormatted}
|
|
97
|
+
"components.pageable.info": "{count, plural, one {{countFormatted} مادة واحد} other {{countFormatted} من المواد}}",
|
|
98
|
+
"components.pageable.info-with-total": "{totalCount, plural, one {{countFormatted} من أصل {totalCountFormatted} مادة واحدة} other {{countFormatted} من أصل {totalCountFormatted} من المواد}}",
|
|
99
99
|
"components.pager-load-more.status-loading": "تحميل المزيد من المواد",
|
|
100
100
|
"components.selection.action-hint": "حدد مادة لتنفيذ هذا الإجراء.",
|
|
101
101
|
"components.selection.select-all": "تحديد الكل",
|
package/lang/cy.js
CHANGED
|
@@ -94,8 +94,8 @@ export default {
|
|
|
94
94
|
"components.object-property-list.item-placeholder-text": "Eitem Dalfan",
|
|
95
95
|
"components.overflow-group.moreActions": "Rhagor o Gamau Gweithredu",
|
|
96
96
|
"components.pager-load-more.action": "Lwytho {count} Arall",
|
|
97
|
-
"components.pageable.info": "{count, plural, one {{countFormatted}
|
|
98
|
-
"components.pageable.info-with-total": "{totalCount, plural, one {{countFormatted} o {totalCountFormatted} eitem} other {{countFormatted} o {totalCountFormatted}
|
|
97
|
+
"components.pageable.info": "{count, plural, one {{countFormatted} eitem} other {{countFormatted} o eitemau}}",
|
|
98
|
+
"components.pageable.info-with-total": "{totalCount, plural, one {{countFormatted} o {totalCountFormatted} eitem} other {{countFormatted} o {totalCountFormatted} eitemau}}",
|
|
99
99
|
"components.pager-load-more.status-loading": "Llwytho rhagor o eitemau",
|
|
100
100
|
"components.selection.action-hint": "Dewiswch eitem i gyflawni'r weithred hon.",
|
|
101
101
|
"components.selection.select-all": "Dewis y Cyfan",
|
package/lang/da.js
CHANGED
|
@@ -94,7 +94,7 @@ export default {
|
|
|
94
94
|
"components.object-property-list.item-placeholder-text": "Pladsholder-element",
|
|
95
95
|
"components.overflow-group.moreActions": "Flere handlinger",
|
|
96
96
|
"components.pager-load-more.action": "Indlæs {count} mere",
|
|
97
|
-
"components.pageable.info": "{count, plural, one {{countFormatted}
|
|
97
|
+
"components.pageable.info": "{count, plural, one {{countFormatted} element} other {{countFormatted} elementer}}",
|
|
98
98
|
"components.pageable.info-with-total": "{totalCount, plural, one {{countFormatted} af {totalCountFormatted} element} other {{countFormatted} af {totalCountFormatted} elementer}}",
|
|
99
99
|
"components.pager-load-more.status-loading": "Indlæser flere elementer",
|
|
100
100
|
"components.selection.action-hint": "Vælg et element for at udføre denne handling.",
|
package/lang/de.js
CHANGED
|
@@ -94,8 +94,8 @@ export default {
|
|
|
94
94
|
"components.object-property-list.item-placeholder-text": "Platzhalterelement",
|
|
95
95
|
"components.overflow-group.moreActions": "Weitere Aktionen",
|
|
96
96
|
"components.pager-load-more.action": "{count} weitere laden",
|
|
97
|
-
"components.pageable.info": "{count, plural, one {{countFormatted}
|
|
98
|
-
"components.pageable.info-with-total": "{totalCount, plural, one {{countFormatted} von {totalCountFormatted} Element} other {{countFormatted} von {totalCountFormatted}
|
|
97
|
+
"components.pageable.info": "{count, plural, one {{countFormatted} Element} other {{countFormatted} Elemente}}",
|
|
98
|
+
"components.pageable.info-with-total": "{totalCount, plural, one {{countFormatted} von {totalCountFormatted} Element} other {{countFormatted} von {totalCountFormatted} Elemente}}",
|
|
99
99
|
"components.pager-load-more.status-loading": "Weitere Elemente werden geladen",
|
|
100
100
|
"components.selection.action-hint": "Wählen Sie ein Element aus, um diese Aktion auszuführen.",
|
|
101
101
|
"components.selection.select-all": "Alle auswählen",
|
package/lang/es-es.js
CHANGED
|
@@ -94,8 +94,8 @@ export default {
|
|
|
94
94
|
"components.object-property-list.item-placeholder-text": "Elemento de marcador de posición",
|
|
95
95
|
"components.overflow-group.moreActions": "Más acciones",
|
|
96
96
|
"components.pager-load-more.action": "Cargar {count} más",
|
|
97
|
-
"components.pageable.info": "{count, plural, one {{countFormatted}
|
|
98
|
-
"components.pageable.info-with-total": "{totalCount, plural, one {{countFormatted} de {totalCountFormatted} elemento} other {{countFormatted} de {totalCountFormatted}
|
|
97
|
+
"components.pageable.info": "{count, plural, one {{countFormatted} elemento} other {{countFormatted} elementos}}",
|
|
98
|
+
"components.pageable.info-with-total": "{totalCount, plural, one {{countFormatted} de {totalCountFormatted} elemento} other {{countFormatted} de {totalCountFormatted} elementos}}",
|
|
99
99
|
"components.pager-load-more.status-loading": "Cargando más elementos",
|
|
100
100
|
"components.selection.action-hint": "Seleccione un elemento para realizar esta acción.",
|
|
101
101
|
"components.selection.select-all": "Seleccionar todo",
|
package/lang/es.js
CHANGED
|
@@ -94,8 +94,8 @@ export default {
|
|
|
94
94
|
"components.object-property-list.item-placeholder-text": "Elemento de marcador de posición",
|
|
95
95
|
"components.overflow-group.moreActions": "Más acciones",
|
|
96
96
|
"components.pager-load-more.action": "Cargar {count} más",
|
|
97
|
-
"components.pageable.info": "{count, plural, one {{countFormatted}
|
|
98
|
-
"components.pageable.info-with-total": "{totalCount, plural, one {{countFormatted} de {totalCountFormatted} elemento} other {{countFormatted} de {totalCountFormatted}
|
|
97
|
+
"components.pageable.info": "{count, plural, one {{countFormatted} elemento} other {{countFormatted} elementos}}",
|
|
98
|
+
"components.pageable.info-with-total": "{totalCount, plural, one {{countFormatted} de {totalCountFormatted} elemento} other {{countFormatted} de {totalCountFormatted} elementos}}",
|
|
99
99
|
"components.pager-load-more.status-loading": "Cargando más elementos",
|
|
100
100
|
"components.selection.action-hint": "Seleccione un elemento para realizar esta acción.",
|
|
101
101
|
"components.selection.select-all": "Seleccionar todo",
|
package/lang/fr-fr.js
CHANGED
|
@@ -94,8 +94,8 @@ export default {
|
|
|
94
94
|
"components.object-property-list.item-placeholder-text": "Élément d’espace réservé",
|
|
95
95
|
"components.overflow-group.moreActions": "Plus d'actions",
|
|
96
96
|
"components.pager-load-more.action": "Charger {count} supplémentaire(s)",
|
|
97
|
-
"components.pageable.info": "{count, plural, one {{countFormatted}
|
|
98
|
-
"components.pageable.info-with-total": "{totalCount, plural, one {{countFormatted} sur {totalCountFormatted}
|
|
97
|
+
"components.pageable.info": "{count, plural, one {{countFormatted} élément} other {{countFormatted} éléments}}",
|
|
98
|
+
"components.pageable.info-with-total": "{totalCount, plural, one {{countFormatted} sur {totalCountFormatted} élément} other {{countFormatted} sur {totalCountFormatted} éléments}}",
|
|
99
99
|
"components.pager-load-more.status-loading": "Charger plus d’éléments",
|
|
100
100
|
"components.selection.action-hint": "Sélectionnez un élément pour exécuter cette action.",
|
|
101
101
|
"components.selection.select-all": "Tout sélectionner",
|
package/lang/fr.js
CHANGED
|
@@ -94,7 +94,7 @@ export default {
|
|
|
94
94
|
"components.object-property-list.item-placeholder-text": "Élément de paramètre fictif",
|
|
95
95
|
"components.overflow-group.moreActions": "Plus d'actions",
|
|
96
96
|
"components.pager-load-more.action": "Charger {count} de plus",
|
|
97
|
-
"components.pageable.info": "{count, plural, one {{countFormatted}
|
|
97
|
+
"components.pageable.info": "{count, plural, one {{countFormatted} élément} other {{countFormatted} éléments}}",
|
|
98
98
|
"components.pageable.info-with-total": "{totalCount, plural, one {{countFormatted} de {totalCountFormatted} élément} other {{countFormatted} de {totalCountFormatted} éléments}}",
|
|
99
99
|
"components.pager-load-more.status-loading": "Chargement d'autres d'éléments",
|
|
100
100
|
"components.selection.action-hint": "Sélectionner un élément pour exécuter cette action.",
|
package/lang/hi.js
CHANGED
|
@@ -94,7 +94,7 @@ export default {
|
|
|
94
94
|
"components.object-property-list.item-placeholder-text": "प्लेसहोल्डर आइटम",
|
|
95
95
|
"components.overflow-group.moreActions": "अधिक क्रियाएँ",
|
|
96
96
|
"components.pager-load-more.action": "{count} और लोड करें",
|
|
97
|
-
"components.pageable.info": "{count, plural, one {{countFormatted}
|
|
97
|
+
"components.pageable.info": "{count, plural, one {{countFormatted} आइटम} other {{countFormatted} आइटम}}",
|
|
98
98
|
"components.pageable.info-with-total": "{totalCount, plural, one {{totalCountFormatted} में से {countFormatted} आइटम} other {{totalCountFormatted} में से {countFormatted} आइटम}}",
|
|
99
99
|
"components.pager-load-more.status-loading": "और आइटम लोड करना",
|
|
100
100
|
"components.selection.action-hint": "यह कार्रवाई निष्पादित करने के लिए कोई आइटम का चयन करें।",
|
package/lang/ja.js
CHANGED
|
@@ -94,7 +94,7 @@ export default {
|
|
|
94
94
|
"components.object-property-list.item-placeholder-text": "プレースホルダの項目",
|
|
95
95
|
"components.overflow-group.moreActions": "その他のアクション",
|
|
96
96
|
"components.pager-load-more.action": "さらに {count} 件を読み込む",
|
|
97
|
-
"components.pageable.info": "{count, plural, other {{countFormatted}
|
|
97
|
+
"components.pageable.info": "{count, plural, other {{countFormatted} 個の項目}}",
|
|
98
98
|
"components.pageable.info-with-total": "{totalCount, plural, other {{countFormatted}/{totalCountFormatted} 個の項目}}",
|
|
99
99
|
"components.pager-load-more.status-loading": "さらに項目を読み込み中",
|
|
100
100
|
"components.selection.action-hint": "このアクションを実行するための項目を選択します。",
|
package/lang/ko.js
CHANGED
|
@@ -94,7 +94,7 @@ export default {
|
|
|
94
94
|
"components.object-property-list.item-placeholder-text": "자리표시자 항목",
|
|
95
95
|
"components.overflow-group.moreActions": "추가 작업",
|
|
96
96
|
"components.pager-load-more.action": "{count}개 더 로드",
|
|
97
|
-
"components.pageable.info": "{count, plural, other {{countFormatted}
|
|
97
|
+
"components.pageable.info": "{count, plural, other {해당 항목 수 {countFormatted}개}}",
|
|
98
98
|
"components.pageable.info-with-total": "{totalCount, plural, other {{totalCountFormatted}개 항목 중 {countFormatted}개}}",
|
|
99
99
|
"components.pager-load-more.status-loading": "더 많은 항목 로드",
|
|
100
100
|
"components.selection.action-hint": "이 작업을 수행할 항목을 선택하십시오.",
|
package/lang/pt.js
CHANGED
|
@@ -94,7 +94,7 @@ export default {
|
|
|
94
94
|
"components.object-property-list.item-placeholder-text": "Item de espaço reservado",
|
|
95
95
|
"components.overflow-group.moreActions": "Mais ações",
|
|
96
96
|
"components.pager-load-more.action": "Carregar mais {count}",
|
|
97
|
-
"components.pageable.info": "{count, plural, one {{countFormatted} item} other {{countFormatted}
|
|
97
|
+
"components.pageable.info": "{count, plural, one {{countFormatted} item} other {{countFormatted} itens}}",
|
|
98
98
|
"components.pageable.info-with-total": "{totalCount, plural, one {{countFormatted} de {totalCountFormatted} item} other {{countFormatted} de {totalCountFormatted} itens}}",
|
|
99
99
|
"components.pager-load-more.status-loading": "Carregando mais itens",
|
|
100
100
|
"components.selection.action-hint": "Selecione um item para realizar esta ação.",
|
package/lang/sv.js
CHANGED
|
@@ -94,7 +94,7 @@ export default {
|
|
|
94
94
|
"components.object-property-list.item-placeholder-text": "Platshållarobjekt",
|
|
95
95
|
"components.overflow-group.moreActions": "Fler åtgärder",
|
|
96
96
|
"components.pager-load-more.action": "Läs in {count} till",
|
|
97
|
-
"components.pageable.info": "{count, plural, one {{countFormatted}
|
|
97
|
+
"components.pageable.info": "{count, plural, one {{countFormatted} objekt} other {{countFormatted} objekt}}",
|
|
98
98
|
"components.pageable.info-with-total": "{totalCount, plural, one {{countFormatted} av {totalCountFormatted} objekt} other {{countFormatted} av {totalCountFormatted} objekt}}",
|
|
99
99
|
"components.pager-load-more.status-loading": "Läser in fler objekt",
|
|
100
100
|
"components.selection.action-hint": "Välj ett objekt för att utföra åtgärden.",
|
package/lang/tr.js
CHANGED
|
@@ -94,7 +94,7 @@ export default {
|
|
|
94
94
|
"components.object-property-list.item-placeholder-text": "Yer Tutucu Öğesi",
|
|
95
95
|
"components.overflow-group.moreActions": "Daha Fazla Eylem",
|
|
96
96
|
"components.pager-load-more.action": "{count} Tane Daha Yükle",
|
|
97
|
-
"components.pageable.info": "{count, plural, one {{countFormatted}
|
|
97
|
+
"components.pageable.info": "{count, plural, one {{countFormatted} öğe} other {{countFormatted} öğe}}",
|
|
98
98
|
"components.pageable.info-with-total": "{totalCount, plural, one {{countFormatted} / {totalCountFormatted} öğe} other {{countFormatted} / {totalCountFormatted} öğe}}",
|
|
99
99
|
"components.pager-load-more.status-loading": "Daha fazla öğe yükleniyor",
|
|
100
100
|
"components.selection.action-hint": "Bu eylemi gerçekleştirebilmek için bir öğe seçin.",
|
package/lang/zh-cn.js
CHANGED
|
@@ -94,7 +94,7 @@ export default {
|
|
|
94
94
|
"components.object-property-list.item-placeholder-text": "占位符项目",
|
|
95
95
|
"components.overflow-group.moreActions": "更多操作",
|
|
96
96
|
"components.pager-load-more.action": "再加载 {count} 个",
|
|
97
|
-
"components.pageable.info": "{count, plural, other {{countFormatted}
|
|
97
|
+
"components.pageable.info": "{count, plural, other {{countFormatted} 项}}",
|
|
98
98
|
"components.pageable.info-with-total": "{totalCount, plural, other {{countFormatted}/{totalCountFormatted} 项}}",
|
|
99
99
|
"components.pager-load-more.status-loading": "加载更多项目",
|
|
100
100
|
"components.selection.action-hint": "选择一个项目后才能执行此操作。",
|
package/lang/zh-tw.js
CHANGED
|
@@ -94,7 +94,7 @@ export default {
|
|
|
94
94
|
"components.object-property-list.item-placeholder-text": "預留位置項目",
|
|
95
95
|
"components.overflow-group.moreActions": "其他動作",
|
|
96
96
|
"components.pager-load-more.action": "再載入 {count} 個",
|
|
97
|
-
"components.pageable.info": "{count, plural, other {{countFormatted}
|
|
97
|
+
"components.pageable.info": "{count, plural, other {{countFormatted} 個項目}}",
|
|
98
98
|
"components.pageable.info-with-total": "{totalCount, plural, other {{countFormatted} 項,共 {totalCountFormatted} 項}}",
|
|
99
99
|
"components.pager-load-more.status-loading": "正在載入更多項目",
|
|
100
100
|
"components.selection.action-hint": "選取項目以執行此動作。",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@brightspace-ui/core",
|
|
3
|
-
"version": "2.111.
|
|
3
|
+
"version": "2.111.3",
|
|
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",
|