@brightspace-ui/core 2.35.1 → 2.36.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/filter/filter-tags.js +2 -2
- package/custom-elements.json +4 -4
- package/helpers/mathjax.js +12 -12
- package/lang/ar.js +3 -3
- package/lang/cy.js +3 -3
- package/lang/da.js +3 -3
- package/lang/de.js +3 -3
- package/lang/es-es.js +3 -3
- package/lang/es.js +3 -3
- package/lang/fr-fr.js +3 -3
- package/lang/fr.js +3 -3
- package/lang/hi.js +3 -3
- package/lang/ja.js +3 -3
- package/lang/ko.js +3 -3
- package/lang/nl.js +3 -3
- package/lang/pt.js +3 -3
- package/lang/sv.js +3 -3
- package/lang/tr.js +3 -3
- package/lang/zh-cn.js +3 -3
- package/lang/zh-tw.js +3 -3
- package/package.json +3 -3
|
@@ -22,8 +22,8 @@ class FilterTags extends RtlMixin(LocalizeCoreElement(LitElement)) {
|
|
|
22
22
|
*/
|
|
23
23
|
filterIds: { type: String, attribute: 'filter-ids' },
|
|
24
24
|
/**
|
|
25
|
-
* The text displayed in this component's label
|
|
26
|
-
* @default "
|
|
25
|
+
* The text displayed in this component's label (hidden when default is used)
|
|
26
|
+
* @default "Active Filters:"
|
|
27
27
|
* @type {string}
|
|
28
28
|
*/
|
|
29
29
|
label: { type: String }
|
package/custom-elements.json
CHANGED
|
@@ -3415,9 +3415,9 @@
|
|
|
3415
3415
|
},
|
|
3416
3416
|
{
|
|
3417
3417
|
"name": "label",
|
|
3418
|
-
"description": "The text displayed in this component's label",
|
|
3418
|
+
"description": "The text displayed in this component's label (hidden when default is used)",
|
|
3419
3419
|
"type": "string",
|
|
3420
|
-
"default": "\"\\\"
|
|
3420
|
+
"default": "\"\\\"Active Filters:\\\"\""
|
|
3421
3421
|
}
|
|
3422
3422
|
],
|
|
3423
3423
|
"properties": [
|
|
@@ -3430,9 +3430,9 @@
|
|
|
3430
3430
|
{
|
|
3431
3431
|
"name": "label",
|
|
3432
3432
|
"attribute": "label",
|
|
3433
|
-
"description": "The text displayed in this component's label",
|
|
3433
|
+
"description": "The text displayed in this component's label (hidden when default is used)",
|
|
3434
3434
|
"type": "string",
|
|
3435
|
-
"default": "\"\\\"
|
|
3435
|
+
"default": "\"\\\"Active Filters:\\\"\""
|
|
3436
3436
|
}
|
|
3437
3437
|
]
|
|
3438
3438
|
},
|
package/helpers/mathjax.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
const mathjaxContextAttribute = 'data-mathjax-context';
|
|
7
|
-
const mathjaxBaseUrl = 'https://s.brightspace.com/lib/mathjax/3.
|
|
7
|
+
const mathjaxBaseUrl = 'https://s.brightspace.com/lib/mathjax/3.2.2';
|
|
8
8
|
|
|
9
9
|
const mathjaxFontMappings = new Map([
|
|
10
10
|
['MJXTEX', 'MathJax_Main-Regular'],
|
|
@@ -31,6 +31,7 @@ const mathjaxFontMappings = new Map([
|
|
|
31
31
|
]);
|
|
32
32
|
|
|
33
33
|
let mathJaxLoaded;
|
|
34
|
+
let renderingPromise = Promise.resolve();
|
|
34
35
|
|
|
35
36
|
export class HtmlBlockMathRenderer {
|
|
36
37
|
|
|
@@ -70,7 +71,8 @@ export class HtmlBlockMathRenderer {
|
|
|
70
71
|
});
|
|
71
72
|
|
|
72
73
|
await window.MathJax.startup.promise;
|
|
73
|
-
window.MathJax.typesetShadow(elem.getRootNode(), elem);
|
|
74
|
+
renderingPromise = renderingPromise.then(() => window.MathJax.typesetShadow(elem.getRootNode(), elem));
|
|
75
|
+
await renderingPromise;
|
|
74
76
|
return elem;
|
|
75
77
|
}
|
|
76
78
|
|
|
@@ -82,8 +84,10 @@ export class HtmlBlockMathRenderer {
|
|
|
82
84
|
temp.shadowRoot.innerHTML = `<div><mjx-doc><mjx-head></mjx-head><mjx-body>${inner}</mjx-body></mjx-doc></div>`;
|
|
83
85
|
|
|
84
86
|
elem.appendChild(temp);
|
|
87
|
+
|
|
85
88
|
await window.MathJax.startup.promise;
|
|
86
|
-
window.MathJax.typesetShadow(temp.shadowRoot);
|
|
89
|
+
renderingPromise = renderingPromise.then(() => window.MathJax.typesetShadow(temp.shadowRoot));
|
|
90
|
+
await renderingPromise;
|
|
87
91
|
|
|
88
92
|
return temp.shadowRoot.firstChild;
|
|
89
93
|
}
|
|
@@ -94,13 +98,9 @@ export function loadMathJax(mathJaxConfig) {
|
|
|
94
98
|
|
|
95
99
|
if (mathJaxLoaded) return mathJaxLoaded;
|
|
96
100
|
|
|
97
|
-
const loadOptions = ['ui/menu'];
|
|
98
|
-
if (mathJaxConfig && mathJaxConfig.renderLatex) {
|
|
99
|
-
loadOptions.push('[tex]/all-packages');
|
|
100
|
-
}
|
|
101
|
-
|
|
102
101
|
window.MathJax = {
|
|
103
102
|
chtml: {
|
|
103
|
+
adaptiveCSS: false,
|
|
104
104
|
scale: (mathJaxConfig && mathJaxConfig.outputScale) || 1
|
|
105
105
|
},
|
|
106
106
|
options: {
|
|
@@ -108,7 +108,7 @@ export function loadMathJax(mathJaxConfig) {
|
|
|
108
108
|
settings: { zoom: 'None' }
|
|
109
109
|
}
|
|
110
110
|
},
|
|
111
|
-
loader: { load:
|
|
111
|
+
loader: { load: ['ui/menu'] },
|
|
112
112
|
startup: {
|
|
113
113
|
ready: () => {
|
|
114
114
|
|
|
@@ -188,15 +188,15 @@ export function loadMathJax(mathJaxConfig) {
|
|
|
188
188
|
// renders the document. The MathDocument is returned in case
|
|
189
189
|
// you need to rerender the shadowRoot later.
|
|
190
190
|
//
|
|
191
|
-
window.MathJax.typesetShadow = function(root, elem) {
|
|
191
|
+
window.MathJax.typesetShadow = async function(root, elem) {
|
|
192
192
|
const InputJax = startup.getInputJax();
|
|
193
193
|
const OutputJax = startup.getOutputJax();
|
|
194
194
|
const html = mathjax.document(root, { InputJax, OutputJax });
|
|
195
195
|
|
|
196
196
|
if (elem) html.options.elements = [elem];
|
|
197
197
|
|
|
198
|
-
|
|
199
|
-
|
|
198
|
+
await mathjax.handleRetriesFor(() => html.render());
|
|
199
|
+
html.typeset();
|
|
200
200
|
};
|
|
201
201
|
|
|
202
202
|
//
|
package/lang/ar.js
CHANGED
|
@@ -91,9 +91,9 @@ export default {
|
|
|
91
91
|
"components.more-less.less": "أقل",
|
|
92
92
|
"components.more-less.more": "المزيد",
|
|
93
93
|
"components.overflow-group.moreActions": "مزيد من الإجراءات",
|
|
94
|
-
"components.pager-load-more.action": "
|
|
95
|
-
"components.pager-load-more.info": "{showingCount}
|
|
96
|
-
"components.pager-load-more.status-loading": "
|
|
94
|
+
"components.pager-load-more.action": "تحميل {count} إضافي",
|
|
95
|
+
"components.pager-load-more.info": "{showingCount} من {totalCount} من المواد",
|
|
96
|
+
"components.pager-load-more.status-loading": "تحميل المزيد من المواد",
|
|
97
97
|
"components.selection.action-hint": "حدد مادة لتنفيذ هذا الإجراء.",
|
|
98
98
|
"components.selection.select-all": "تحديد الكل",
|
|
99
99
|
"components.selection.select-all-items": "تحديد كل المواد الـ {count}.",
|
package/lang/cy.js
CHANGED
|
@@ -91,9 +91,9 @@ export default {
|
|
|
91
91
|
"components.more-less.less": "llai",
|
|
92
92
|
"components.more-less.more": "mwy",
|
|
93
93
|
"components.overflow-group.moreActions": "Rhagor o Gamau Gweithredu",
|
|
94
|
-
"components.pager-load-more.action": "
|
|
95
|
-
"components.pager-load-more.info": "{showingCount}
|
|
96
|
-
"components.pager-load-more.status-loading": "
|
|
94
|
+
"components.pager-load-more.action": "Lwytho {count} Arall",
|
|
95
|
+
"components.pager-load-more.info": "{showingCount} o {totalCount} eitem",
|
|
96
|
+
"components.pager-load-more.status-loading": "Llwytho rhagor o eitemau",
|
|
97
97
|
"components.selection.action-hint": "Dewiswch eitem i gyflawni'r weithred hon.",
|
|
98
98
|
"components.selection.select-all": "Dewis y Cyfan",
|
|
99
99
|
"components.selection.select-all-items": "Dewis Pob {count} Eitem",
|
package/lang/da.js
CHANGED
|
@@ -91,9 +91,9 @@ export default {
|
|
|
91
91
|
"components.more-less.less": "færre",
|
|
92
92
|
"components.more-less.more": "flere",
|
|
93
93
|
"components.overflow-group.moreActions": "Flere handlinger",
|
|
94
|
-
"components.pager-load-more.action": "
|
|
95
|
-
"components.pager-load-more.info": "{showingCount}
|
|
96
|
-
"components.pager-load-more.status-loading": "
|
|
94
|
+
"components.pager-load-more.action": "Indlæs {count} mere",
|
|
95
|
+
"components.pager-load-more.info": "{showingCount} af {totalCount} elementer",
|
|
96
|
+
"components.pager-load-more.status-loading": "Indlæser flere elementer",
|
|
97
97
|
"components.selection.action-hint": "Vælg et element for at udføre denne handling.",
|
|
98
98
|
"components.selection.select-all": "Vælg alle",
|
|
99
99
|
"components.selection.select-all-items": "Vælg alle {count} elementer",
|
package/lang/de.js
CHANGED
|
@@ -91,9 +91,9 @@ export default {
|
|
|
91
91
|
"components.more-less.less": "Weniger",
|
|
92
92
|
"components.more-less.more": "mehr",
|
|
93
93
|
"components.overflow-group.moreActions": "Weitere Aktionen",
|
|
94
|
-
"components.pager-load-more.action": "
|
|
95
|
-
"components.pager-load-more.info": "{showingCount}
|
|
96
|
-
"components.pager-load-more.status-loading": "
|
|
94
|
+
"components.pager-load-more.action": "{count} weitere laden",
|
|
95
|
+
"components.pager-load-more.info": "{showingCount} von {totalCount} Elementen",
|
|
96
|
+
"components.pager-load-more.status-loading": "Weitere Elemente werden geladen",
|
|
97
97
|
"components.selection.action-hint": "Wählen Sie ein Element aus, um diese Aktion auszuführen.",
|
|
98
98
|
"components.selection.select-all": "Alle auswählen",
|
|
99
99
|
"components.selection.select-all-items": "Alle {count} Elemente auswählen",
|
package/lang/es-es.js
CHANGED
|
@@ -91,9 +91,9 @@ export default {
|
|
|
91
91
|
"components.more-less.less": "menos",
|
|
92
92
|
"components.more-less.more": "más",
|
|
93
93
|
"components.overflow-group.moreActions": "Más acciones",
|
|
94
|
-
"components.pager-load-more.action": "
|
|
95
|
-
"components.pager-load-more.info": "{showingCount}
|
|
96
|
-
"components.pager-load-more.status-loading": "
|
|
94
|
+
"components.pager-load-more.action": "Cargar {count} más",
|
|
95
|
+
"components.pager-load-more.info": "{showingCount} de {totalCount} elementos",
|
|
96
|
+
"components.pager-load-more.status-loading": "Cargando más elementos",
|
|
97
97
|
"components.selection.action-hint": "Seleccione un elemento para realizar esta acción.",
|
|
98
98
|
"components.selection.select-all": "Seleccionar todo",
|
|
99
99
|
"components.selection.select-all-items": "Seleccione los {count} elementos",
|
package/lang/es.js
CHANGED
|
@@ -91,9 +91,9 @@ export default {
|
|
|
91
91
|
"components.more-less.less": "menos",
|
|
92
92
|
"components.more-less.more": "más",
|
|
93
93
|
"components.overflow-group.moreActions": "Más acciones",
|
|
94
|
-
"components.pager-load-more.action": "
|
|
95
|
-
"components.pager-load-more.info": "{showingCount}
|
|
96
|
-
"components.pager-load-more.status-loading": "
|
|
94
|
+
"components.pager-load-more.action": "Cargar {count} más",
|
|
95
|
+
"components.pager-load-more.info": "{showingCount} de {totalCount} elementos",
|
|
96
|
+
"components.pager-load-more.status-loading": "Cargando más elementos",
|
|
97
97
|
"components.selection.action-hint": "Seleccione un elemento para realizar esta acción.",
|
|
98
98
|
"components.selection.select-all": "Seleccionar todo",
|
|
99
99
|
"components.selection.select-all-items": "Seleccione todos los {count} elementos",
|
package/lang/fr-fr.js
CHANGED
|
@@ -91,9 +91,9 @@ export default {
|
|
|
91
91
|
"components.more-less.less": "moins",
|
|
92
92
|
"components.more-less.more": "plus",
|
|
93
93
|
"components.overflow-group.moreActions": "Plus d'actions",
|
|
94
|
-
"components.pager-load-more.action": "
|
|
95
|
-
"components.pager-load-more.info": "{showingCount}
|
|
96
|
-
"components.pager-load-more.status-loading": "
|
|
94
|
+
"components.pager-load-more.action": "Charger {count} supplémentaire(s)",
|
|
95
|
+
"components.pager-load-more.info": "{showingCount} élément(s) sur {totalCount}",
|
|
96
|
+
"components.pager-load-more.status-loading": "Charger plus d’éléments",
|
|
97
97
|
"components.selection.action-hint": "Sélectionnez un élément pour exécuter cette action.",
|
|
98
98
|
"components.selection.select-all": "Tout sélectionner",
|
|
99
99
|
"components.selection.select-all-items": "Sélectionner tous les {count} éléments",
|
package/lang/fr.js
CHANGED
|
@@ -91,9 +91,9 @@ export default {
|
|
|
91
91
|
"components.more-less.less": "moins",
|
|
92
92
|
"components.more-less.more": "plus",
|
|
93
93
|
"components.overflow-group.moreActions": "Plus d'actions",
|
|
94
|
-
"components.pager-load-more.action": "
|
|
95
|
-
"components.pager-load-more.info": "{showingCount}
|
|
96
|
-
"components.pager-load-more.status-loading": "
|
|
94
|
+
"components.pager-load-more.action": "Charger {count} de plus",
|
|
95
|
+
"components.pager-load-more.info": "{showingCount} de {totalCount} éléments",
|
|
96
|
+
"components.pager-load-more.status-loading": "Chargement d'autres d'éléments",
|
|
97
97
|
"components.selection.action-hint": "Sélectionner un élément pour exécuter cette action.",
|
|
98
98
|
"components.selection.select-all": "Tout sélectionner",
|
|
99
99
|
"components.selection.select-all-items": "Sélectionner tous les {count} éléments",
|
package/lang/hi.js
CHANGED
|
@@ -91,9 +91,9 @@ export default {
|
|
|
91
91
|
"components.more-less.less": "कम",
|
|
92
92
|
"components.more-less.more": "अधिक",
|
|
93
93
|
"components.overflow-group.moreActions": "अधिक क्रियाएँ",
|
|
94
|
-
"components.pager-load-more.action": "
|
|
95
|
-
"components.pager-load-more.info": "{
|
|
96
|
-
"components.pager-load-more.status-loading": "
|
|
94
|
+
"components.pager-load-more.action": "{count} और लोड करें",
|
|
95
|
+
"components.pager-load-more.info": "{totalCount} में से {showingCount} आइटम",
|
|
96
|
+
"components.pager-load-more.status-loading": "और आइटम लोड करना",
|
|
97
97
|
"components.selection.action-hint": "यह कार्रवाई निष्पादित करने के लिए कोई आइटम का चयन करें।",
|
|
98
98
|
"components.selection.select-all": "सभी का चयन करें",
|
|
99
99
|
"components.selection.select-all-items": "सभी {count} आइटम चुनें।",
|
package/lang/ja.js
CHANGED
|
@@ -91,9 +91,9 @@ export default {
|
|
|
91
91
|
"components.more-less.less": "減らす",
|
|
92
92
|
"components.more-less.more": "増やす",
|
|
93
93
|
"components.overflow-group.moreActions": "その他のアクション",
|
|
94
|
-
"components.pager-load-more.action": "
|
|
95
|
-
"components.pager-load-more.info": "{showingCount}
|
|
96
|
-
"components.pager-load-more.status-loading": "
|
|
94
|
+
"components.pager-load-more.action": "さらに {count} 件を読み込む",
|
|
95
|
+
"components.pager-load-more.info": "{showingCount}/{totalCount} 項目",
|
|
96
|
+
"components.pager-load-more.status-loading": "さらに項目を読み込み中",
|
|
97
97
|
"components.selection.action-hint": "このアクションを実行するための項目を選択します。",
|
|
98
98
|
"components.selection.select-all": "すべて選択",
|
|
99
99
|
"components.selection.select-all-items": "{count} 個の項目をすべて選択",
|
package/lang/ko.js
CHANGED
|
@@ -91,9 +91,9 @@ export default {
|
|
|
91
91
|
"components.more-less.less": "축소",
|
|
92
92
|
"components.more-less.more": "더 보기",
|
|
93
93
|
"components.overflow-group.moreActions": "추가 작업",
|
|
94
|
-
"components.pager-load-more.action": "
|
|
95
|
-
"components.pager-load-more.info": "{
|
|
96
|
-
"components.pager-load-more.status-loading": "
|
|
94
|
+
"components.pager-load-more.action": "{count}개 더 로드",
|
|
95
|
+
"components.pager-load-more.info": "{totalCount}개 항목 중 {showingCount}개",
|
|
96
|
+
"components.pager-load-more.status-loading": "더 많은 항목 로드",
|
|
97
97
|
"components.selection.action-hint": "이 작업을 수행할 항목을 선택하십시오.",
|
|
98
98
|
"components.selection.select-all": "모두 선택",
|
|
99
99
|
"components.selection.select-all-items": "{count}개 항목을 모두 선택하십시오.",
|
package/lang/nl.js
CHANGED
|
@@ -91,9 +91,9 @@ export default {
|
|
|
91
91
|
"components.more-less.less": "minder",
|
|
92
92
|
"components.more-less.more": "meer",
|
|
93
93
|
"components.overflow-group.moreActions": "Meer acties",
|
|
94
|
-
"components.pager-load-more.action": "
|
|
95
|
-
"components.pager-load-more.info": "{showingCount}
|
|
96
|
-
"components.pager-load-more.status-loading": "
|
|
94
|
+
"components.pager-load-more.action": "Laad nog {count} extra",
|
|
95
|
+
"components.pager-load-more.info": "{showingCount} van {totalCount} items",
|
|
96
|
+
"components.pager-load-more.status-loading": "Er worden meer items geladen",
|
|
97
97
|
"components.selection.action-hint": "Selecteer een item om deze actie uit te voeren.",
|
|
98
98
|
"components.selection.select-all": "Alles selecteren",
|
|
99
99
|
"components.selection.select-all-items": "Alle {count} records selecteren",
|
package/lang/pt.js
CHANGED
|
@@ -91,9 +91,9 @@ export default {
|
|
|
91
91
|
"components.more-less.less": "menos",
|
|
92
92
|
"components.more-less.more": "mais",
|
|
93
93
|
"components.overflow-group.moreActions": "Mais ações",
|
|
94
|
-
"components.pager-load-more.action": "
|
|
95
|
-
"components.pager-load-more.info": "{showingCount}
|
|
96
|
-
"components.pager-load-more.status-loading": "
|
|
94
|
+
"components.pager-load-more.action": "Carregar mais {count}",
|
|
95
|
+
"components.pager-load-more.info": "{showingCount} de {totalCount} itens",
|
|
96
|
+
"components.pager-load-more.status-loading": "Carregando mais itens",
|
|
97
97
|
"components.selection.action-hint": "Selecione um item para realizar esta ação.",
|
|
98
98
|
"components.selection.select-all": "Selecionar tudo",
|
|
99
99
|
"components.selection.select-all-items": "Selecione todos os {count} itens",
|
package/lang/sv.js
CHANGED
|
@@ -91,9 +91,9 @@ export default {
|
|
|
91
91
|
"components.more-less.less": "mindre",
|
|
92
92
|
"components.more-less.more": "mer",
|
|
93
93
|
"components.overflow-group.moreActions": "Fler åtgärder",
|
|
94
|
-
"components.pager-load-more.action": "
|
|
95
|
-
"components.pager-load-more.info": "{showingCount}
|
|
96
|
-
"components.pager-load-more.status-loading": "
|
|
94
|
+
"components.pager-load-more.action": "Läs in {count} till",
|
|
95
|
+
"components.pager-load-more.info": "{showingCount} av {totalCount} objekt",
|
|
96
|
+
"components.pager-load-more.status-loading": "Läser in fler objekt",
|
|
97
97
|
"components.selection.action-hint": "Välj ett objekt för att utföra åtgärden.",
|
|
98
98
|
"components.selection.select-all": "Välj alla",
|
|
99
99
|
"components.selection.select-all-items": "Välj alla {count} objekt",
|
package/lang/tr.js
CHANGED
|
@@ -91,9 +91,9 @@ export default {
|
|
|
91
91
|
"components.more-less.less": "daha az",
|
|
92
92
|
"components.more-less.more": "daha fazla",
|
|
93
93
|
"components.overflow-group.moreActions": "Daha Fazla Eylem",
|
|
94
|
-
"components.pager-load-more.action": "
|
|
95
|
-
"components.pager-load-more.info": "{
|
|
96
|
-
"components.pager-load-more.status-loading": "
|
|
94
|
+
"components.pager-load-more.action": "{count} Tane Daha Yükle",
|
|
95
|
+
"components.pager-load-more.info": "{totalCount} / {showingCount} öğe",
|
|
96
|
+
"components.pager-load-more.status-loading": "Daha fazla öğe yükleniyor",
|
|
97
97
|
"components.selection.action-hint": "Bu eylemi gerçekleştirebilmek için bir öğe seçin.",
|
|
98
98
|
"components.selection.select-all": "Tümünü Seç",
|
|
99
99
|
"components.selection.select-all-items": "{count} Öğenin Tamamını Seç",
|
package/lang/zh-cn.js
CHANGED
|
@@ -91,9 +91,9 @@ export default {
|
|
|
91
91
|
"components.more-less.less": "更少",
|
|
92
92
|
"components.more-less.more": "更多",
|
|
93
93
|
"components.overflow-group.moreActions": "更多操作",
|
|
94
|
-
"components.pager-load-more.action": "
|
|
95
|
-
"components.pager-load-more.info": "{showingCount}
|
|
96
|
-
"components.pager-load-more.status-loading": "
|
|
94
|
+
"components.pager-load-more.action": "再加载 {count} 个",
|
|
95
|
+
"components.pager-load-more.info": "{showingCount} 个,共 {totalCount} 个项目",
|
|
96
|
+
"components.pager-load-more.status-loading": "加载更多项目",
|
|
97
97
|
"components.selection.action-hint": "选择一个项目后才能执行此操作。",
|
|
98
98
|
"components.selection.select-all": "全选",
|
|
99
99
|
"components.selection.select-all-items": "选择全部 {count} 个项目",
|
package/lang/zh-tw.js
CHANGED
|
@@ -91,9 +91,9 @@ export default {
|
|
|
91
91
|
"components.more-less.less": "較少",
|
|
92
92
|
"components.more-less.more": "較多",
|
|
93
93
|
"components.overflow-group.moreActions": "其他動作",
|
|
94
|
-
"components.pager-load-more.action": "
|
|
95
|
-
"components.pager-load-more.info": "{showingCount}
|
|
96
|
-
"components.pager-load-more.status-loading": "
|
|
94
|
+
"components.pager-load-more.action": "再載入 {count} 個",
|
|
95
|
+
"components.pager-load-more.info": "{showingCount} 個項目,共 {totalCount} 個項目",
|
|
96
|
+
"components.pager-load-more.status-loading": "正在載入更多項目",
|
|
97
97
|
"components.selection.action-hint": "選取項目以執行此動作。",
|
|
98
98
|
"components.selection.select-all": "全選",
|
|
99
99
|
"components.selection.select-all-items": "選取所有 {count} 個項目",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@brightspace-ui/core",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.36.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",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"license": "Apache-2.0",
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@babel/eslint-parser": "^7",
|
|
47
|
-
"@brightspace-ui/stylelint-config": "^0.
|
|
47
|
+
"@brightspace-ui/stylelint-config": "^0.6",
|
|
48
48
|
"@open-wc/testing": "^3",
|
|
49
49
|
"@web/dev-server": "^0.1",
|
|
50
50
|
"@web/test-runner": "^0.13",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"chalk": "^5",
|
|
54
54
|
"eslint": "^8",
|
|
55
55
|
"eslint-config-brightspace": "^0.18",
|
|
56
|
-
"eslint-plugin-html": "^
|
|
56
|
+
"eslint-plugin-html": "^7",
|
|
57
57
|
"eslint-plugin-import": "^2",
|
|
58
58
|
"eslint-plugin-lit": "^1",
|
|
59
59
|
"eslint-plugin-sort-class-members": "^1",
|