@brightspace-ui/core 2.37.0 → 2.37.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/menu/menu-item-mixin.js +1 -3
- package/components/menu/menu-item-styles.js +23 -4
- package/components/menu/menu.js +1 -2
- package/components/paging/pager-load-more.js +3 -2
- package/components/tooltip/tooltip-help.js +1 -0
- package/components/typography/styles.js +60 -33
- package/lang/ar.js +1 -1
- package/lang/cy.js +1 -1
- package/lang/da.js +1 -1
- package/lang/de.js +1 -1
- package/lang/en.js +1 -1
- package/lang/es-es.js +1 -1
- package/lang/es.js +1 -1
- package/lang/fr-fr.js +1 -1
- 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/nl.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
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
export const MenuItemMixin = superclass => class extends FocusVisiblePolyfillMixin(superclass) {
|
|
1
|
+
export const MenuItemMixin = superclass => class extends superclass {
|
|
4
2
|
|
|
5
3
|
static get properties() {
|
|
6
4
|
return {
|
|
@@ -16,8 +16,6 @@ export const menuItemStyles = css`
|
|
|
16
16
|
width: 100%;
|
|
17
17
|
}
|
|
18
18
|
|
|
19
|
-
:host(.focus-visible),
|
|
20
|
-
:host([first].focus-visible),
|
|
21
19
|
:host(:hover),
|
|
22
20
|
:host([first]:hover) {
|
|
23
21
|
background-color: var(--d2l-menu-background-color-hover);
|
|
@@ -27,7 +25,23 @@ export const menuItemStyles = css`
|
|
|
27
25
|
z-index: 2;
|
|
28
26
|
}
|
|
29
27
|
|
|
30
|
-
|
|
28
|
+
/** separated because Safari <15.4 is having trouble parsing these */
|
|
29
|
+
:host(:focus-visible),
|
|
30
|
+
:host([first]:focus-visible) {
|
|
31
|
+
background-color: var(--d2l-menu-background-color-hover);
|
|
32
|
+
border-bottom: 1px solid var(--d2l-menu-border-color-hover);
|
|
33
|
+
border-top: 1px solid var(--d2l-menu-border-color-hover);
|
|
34
|
+
color: var(--d2l-menu-foreground-color-hover);
|
|
35
|
+
z-index: 2;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
:host([disabled]), :host([disabled]:hover) {
|
|
39
|
+
cursor: default;
|
|
40
|
+
opacity: 0.75;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
/** separated because Safari <15.4 is having trouble parsing these */
|
|
44
|
+
:host([disabled]:focus-visible) {
|
|
31
45
|
cursor: default;
|
|
32
46
|
opacity: 0.75;
|
|
33
47
|
}
|
|
@@ -40,7 +54,12 @@ export const menuItemStyles = css`
|
|
|
40
54
|
border-top-color: transparent;
|
|
41
55
|
}
|
|
42
56
|
|
|
43
|
-
:host([last]:hover)
|
|
57
|
+
:host([last]:hover) {
|
|
58
|
+
border-bottom-color: var(--d2l-menu-border-color-hover);
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
/** separated because Safari <15.4 is having trouble parsing these */
|
|
62
|
+
:host([last]:focus-visible) {
|
|
44
63
|
border-bottom-color: var(--d2l-menu-border-color-hover);
|
|
45
64
|
}
|
|
46
65
|
|
package/components/menu/menu.js
CHANGED
|
@@ -2,7 +2,6 @@ import '../colors/colors.js';
|
|
|
2
2
|
import '../icons/icon.js';
|
|
3
3
|
import './menu-item-return.js';
|
|
4
4
|
import { css, html, LitElement } from 'lit';
|
|
5
|
-
import { FocusVisiblePolyfillMixin } from '../../mixins/focus-visible-polyfill-mixin.js';
|
|
6
5
|
import { HierarchicalViewMixin } from '../hierarchical-view/hierarchical-view-mixin.js';
|
|
7
6
|
import { ThemeMixin } from '../../mixins/theme-mixin.js';
|
|
8
7
|
|
|
@@ -21,7 +20,7 @@ const keyCodes = {
|
|
|
21
20
|
* @slot - Menu items
|
|
22
21
|
* @fires d2l-menu-resize - Dispatched when size of menu changes (e.g., when nested menu of a different size is opened)
|
|
23
22
|
*/
|
|
24
|
-
class Menu extends
|
|
23
|
+
class Menu extends ThemeMixin(HierarchicalViewMixin(LitElement)) {
|
|
25
24
|
|
|
26
25
|
static get properties() {
|
|
27
26
|
return {
|
|
@@ -5,6 +5,7 @@ import { buttonStyles } from '../button/button-styles.js';
|
|
|
5
5
|
import { findComposedAncestor } from '../../helpers/dom.js';
|
|
6
6
|
import { FocusMixin } from '../../mixins/focus-mixin.js';
|
|
7
7
|
import { FocusVisiblePolyfillMixin } from '../../mixins/focus-visible-polyfill-mixin.js';
|
|
8
|
+
import { formatNumber } from '@brightspace-ui/intl/lib/number.js';
|
|
8
9
|
import { getFirstFocusableDescendant } from '../../helpers/focus.js';
|
|
9
10
|
import { getSeparator } from '@brightspace-ui/intl/lib/list.js';
|
|
10
11
|
import { labelStyles } from '../typography/styles.js';
|
|
@@ -102,11 +103,11 @@ class LoadMore extends FocusMixin(FocusVisiblePolyfillMixin(LocalizeCoreElement(
|
|
|
102
103
|
<span class="d2l-offscreen" role="alert">${this.localize('components.pager-load-more.status-loading')}</span>
|
|
103
104
|
<d2l-loading-spinner size="24"></d2l-loading-spinner>
|
|
104
105
|
` : html`
|
|
105
|
-
<span class="action">${this.localize('components.pager-load-more.action', { count: this.pageSize })}</span>
|
|
106
|
+
<span class="action">${this.localize('components.pager-load-more.action', { count: formatNumber(this.pageSize) })}</span>
|
|
106
107
|
${this.itemCount > -1 ? html`
|
|
107
108
|
<span class="d2l-offscreen">${getSeparator({ nonBreaking: true })}</span>
|
|
108
109
|
<span class="separator"></span>
|
|
109
|
-
<span class="info">${this.localize('components.pager-load-more.info', { showingCount: this.itemShowingCount, totalCount: this.itemCount })}</span>
|
|
110
|
+
<span class="info">${this.localize('components.pager-load-more.info', { showingCount: formatNumber(this.itemShowingCount), totalCount: this.itemCount, totalCountFormatted: formatNumber(this.itemCount) })}</span>
|
|
110
111
|
` : nothing}
|
|
111
112
|
`}
|
|
112
113
|
</button>
|
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
import '../colors/colors.js';
|
|
2
|
-
import { css } from 'lit';
|
|
2
|
+
import { css, unsafeCSS } from 'lit';
|
|
3
|
+
|
|
4
|
+
export const _isValidCssSelector = (selector) => {
|
|
5
|
+
const re = /[#.]?([a-zA-Z0-9-_]+)(\[[a-zA-Z0-9-_]+\])?([a-zA-Z0-9-_]+)?/g;
|
|
6
|
+
const match = selector.match(re);
|
|
7
|
+
|
|
8
|
+
return !!match && match.length === 1 && match[0].length === selector.length;
|
|
9
|
+
};
|
|
3
10
|
|
|
4
11
|
export const bodyStandardStyles = css`
|
|
5
12
|
.d2l-body-standard {
|
|
@@ -41,26 +48,36 @@ export const bodyStandardStyles = css`
|
|
|
41
48
|
}
|
|
42
49
|
`;
|
|
43
50
|
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
51
|
+
/**
|
|
52
|
+
* A private helper method that should not be used by general consumers
|
|
53
|
+
*/
|
|
54
|
+
export const _generateBodyCompactStyles = (selector) => {
|
|
55
|
+
if (!_isValidCssSelector(selector)) return;
|
|
56
|
+
|
|
57
|
+
selector = unsafeCSS(selector);
|
|
58
|
+
return css`
|
|
59
|
+
${selector} {
|
|
60
|
+
font-size: 0.8rem;
|
|
61
|
+
font-weight: 400;
|
|
62
|
+
line-height: 1.2rem;
|
|
63
|
+
}
|
|
64
|
+
:host([skeleton]) ${selector}.d2l-skeletize::before {
|
|
65
|
+
bottom: 0.3rem;
|
|
66
|
+
top: 0.3rem;
|
|
67
|
+
}
|
|
68
|
+
:host([skeleton]) ${selector}.d2l-skeletize-paragraph-2 {
|
|
69
|
+
max-height: 2.4rem;
|
|
70
|
+
}
|
|
71
|
+
:host([skeleton]) ${selector}.d2l-skeletize-paragraph-3 {
|
|
72
|
+
max-height: 3.6rem;
|
|
73
|
+
}
|
|
74
|
+
:host([skeleton]) ${selector}.d2l-skeletize-paragraph-5 {
|
|
75
|
+
max-height: 6rem;
|
|
76
|
+
}
|
|
77
|
+
`;
|
|
78
|
+
};
|
|
79
|
+
|
|
80
|
+
export const bodyCompactStyles = _generateBodyCompactStyles('.d2l-body-compact');
|
|
64
81
|
|
|
65
82
|
export const bodySmallStyles = css`
|
|
66
83
|
.d2l-body-small {
|
|
@@ -212,18 +229,28 @@ export const heading4Styles = css`
|
|
|
212
229
|
}
|
|
213
230
|
`;
|
|
214
231
|
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
232
|
+
/**
|
|
233
|
+
* A private helper method that should not be used by general consumers
|
|
234
|
+
*/
|
|
235
|
+
export const _generateLabelStyles = (selector) => {
|
|
236
|
+
if (!_isValidCssSelector(selector)) return;
|
|
237
|
+
|
|
238
|
+
selector = unsafeCSS(selector);
|
|
239
|
+
return css`
|
|
240
|
+
${selector} {
|
|
241
|
+
font-size: 0.7rem;
|
|
242
|
+
font-weight: 700;
|
|
243
|
+
letter-spacing: 0.2px;
|
|
244
|
+
line-height: 1rem;
|
|
245
|
+
}
|
|
246
|
+
:host([skeleton]) ${selector}.d2l-skeletize::before {
|
|
247
|
+
bottom: 0.25rem;
|
|
248
|
+
top: 0.15rem;
|
|
249
|
+
}
|
|
250
|
+
`;
|
|
251
|
+
};
|
|
252
|
+
|
|
253
|
+
export const labelStyles = _generateLabelStyles('.d2l-label-text');
|
|
227
254
|
|
|
228
255
|
export const blockquoteStyles = css`
|
|
229
256
|
.d2l-blockquote {
|
package/lang/ar.js
CHANGED
|
@@ -92,7 +92,7 @@ export default {
|
|
|
92
92
|
"components.more-less.more": "المزيد",
|
|
93
93
|
"components.overflow-group.moreActions": "مزيد من الإجراءات",
|
|
94
94
|
"components.pager-load-more.action": "تحميل {count} إضافي",
|
|
95
|
-
"components.pager-load-more.info": "{showingCount}
|
|
95
|
+
"components.pager-load-more.info": "{totalCount, plural, one {{showingCount} of {totalCountFormatted} item} other {{showingCount} of {totalCountFormatted} items}}",
|
|
96
96
|
"components.pager-load-more.status-loading": "تحميل المزيد من المواد",
|
|
97
97
|
"components.selection.action-hint": "حدد مادة لتنفيذ هذا الإجراء.",
|
|
98
98
|
"components.selection.select-all": "تحديد الكل",
|
package/lang/cy.js
CHANGED
|
@@ -92,7 +92,7 @@ export default {
|
|
|
92
92
|
"components.more-less.more": "mwy",
|
|
93
93
|
"components.overflow-group.moreActions": "Rhagor o Gamau Gweithredu",
|
|
94
94
|
"components.pager-load-more.action": "Lwytho {count} Arall",
|
|
95
|
-
"components.pager-load-more.info": "{showingCount}
|
|
95
|
+
"components.pager-load-more.info": "{totalCount, plural, one {{showingCount} of {totalCountFormatted} item} other {{showingCount} of {totalCountFormatted} items}}",
|
|
96
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",
|
package/lang/da.js
CHANGED
|
@@ -92,7 +92,7 @@ export default {
|
|
|
92
92
|
"components.more-less.more": "flere",
|
|
93
93
|
"components.overflow-group.moreActions": "Flere handlinger",
|
|
94
94
|
"components.pager-load-more.action": "Indlæs {count} mere",
|
|
95
|
-
"components.pager-load-more.info": "{showingCount}
|
|
95
|
+
"components.pager-load-more.info": "{totalCount, plural, one {{showingCount} of {totalCountFormatted} item} other {{showingCount} of {totalCountFormatted} items}}",
|
|
96
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",
|
package/lang/de.js
CHANGED
|
@@ -92,7 +92,7 @@ export default {
|
|
|
92
92
|
"components.more-less.more": "mehr",
|
|
93
93
|
"components.overflow-group.moreActions": "Weitere Aktionen",
|
|
94
94
|
"components.pager-load-more.action": "{count} weitere laden",
|
|
95
|
-
"components.pager-load-more.info": "{showingCount}
|
|
95
|
+
"components.pager-load-more.info": "{totalCount, plural, one {{showingCount} of {totalCountFormatted} item} other {{showingCount} of {totalCountFormatted} items}}",
|
|
96
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",
|
package/lang/en.js
CHANGED
|
@@ -92,7 +92,7 @@ export default {
|
|
|
92
92
|
"components.more-less.more": "more",
|
|
93
93
|
"components.overflow-group.moreActions": "More Actions",
|
|
94
94
|
"components.pager-load-more.action": "Load {count} More",
|
|
95
|
-
"components.pager-load-more.info": "{showingCount} of {
|
|
95
|
+
"components.pager-load-more.info": "{totalCount, plural, one {{showingCount} of {totalCountFormatted} item} other {{showingCount} of {totalCountFormatted} items}}",
|
|
96
96
|
"components.pager-load-more.status-loading": "Loading more items",
|
|
97
97
|
"components.selection.action-hint": "Select an item to perform this action.",
|
|
98
98
|
"components.selection.select-all": "Select All",
|
package/lang/es-es.js
CHANGED
|
@@ -92,7 +92,7 @@ export default {
|
|
|
92
92
|
"components.more-less.more": "más",
|
|
93
93
|
"components.overflow-group.moreActions": "Más acciones",
|
|
94
94
|
"components.pager-load-more.action": "Cargar {count} más",
|
|
95
|
-
"components.pager-load-more.info": "{showingCount}
|
|
95
|
+
"components.pager-load-more.info": "{totalCount, plural, one {{showingCount} of {totalCountFormatted} item} other {{showingCount} of {totalCountFormatted} items}}",
|
|
96
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",
|
package/lang/es.js
CHANGED
|
@@ -92,7 +92,7 @@ export default {
|
|
|
92
92
|
"components.more-less.more": "más",
|
|
93
93
|
"components.overflow-group.moreActions": "Más acciones",
|
|
94
94
|
"components.pager-load-more.action": "Cargar {count} más",
|
|
95
|
-
"components.pager-load-more.info": "{showingCount}
|
|
95
|
+
"components.pager-load-more.info": "{totalCount, plural, one {{showingCount} of {totalCountFormatted} item} other {{showingCount} of {totalCountFormatted} items}}",
|
|
96
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",
|
package/lang/fr-fr.js
CHANGED
|
@@ -92,7 +92,7 @@ export default {
|
|
|
92
92
|
"components.more-less.more": "plus",
|
|
93
93
|
"components.overflow-group.moreActions": "Plus d'actions",
|
|
94
94
|
"components.pager-load-more.action": "Charger {count} supplémentaire(s)",
|
|
95
|
-
"components.pager-load-more.info": "{showingCount}
|
|
95
|
+
"components.pager-load-more.info": "{totalCount, plural, one {{showingCount} of {totalCountFormatted} item} other {{showingCount} of {totalCountFormatted} items}}",
|
|
96
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",
|
package/lang/fr.js
CHANGED
|
@@ -92,7 +92,7 @@ export default {
|
|
|
92
92
|
"components.more-less.more": "plus",
|
|
93
93
|
"components.overflow-group.moreActions": "Plus d'actions",
|
|
94
94
|
"components.pager-load-more.action": "Charger {count} de plus",
|
|
95
|
-
"components.pager-load-more.info": "{showingCount}
|
|
95
|
+
"components.pager-load-more.info": "{totalCount, plural, one {{showingCount} of {totalCountFormatted} item} other {{showingCount} of {totalCountFormatted} items}}",
|
|
96
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",
|
package/lang/hi.js
CHANGED
|
@@ -92,7 +92,7 @@ export default {
|
|
|
92
92
|
"components.more-less.more": "अधिक",
|
|
93
93
|
"components.overflow-group.moreActions": "अधिक क्रियाएँ",
|
|
94
94
|
"components.pager-load-more.action": "{count} और लोड करें",
|
|
95
|
-
"components.pager-load-more.info": "{totalCount}
|
|
95
|
+
"components.pager-load-more.info": "{totalCount, plural, one {{showingCount} of {totalCountFormatted} item} other {{showingCount} of {totalCountFormatted} items}}",
|
|
96
96
|
"components.pager-load-more.status-loading": "और आइटम लोड करना",
|
|
97
97
|
"components.selection.action-hint": "यह कार्रवाई निष्पादित करने के लिए कोई आइटम का चयन करें।",
|
|
98
98
|
"components.selection.select-all": "सभी का चयन करें",
|
package/lang/ja.js
CHANGED
|
@@ -92,7 +92,7 @@ export default {
|
|
|
92
92
|
"components.more-less.more": "増やす",
|
|
93
93
|
"components.overflow-group.moreActions": "その他のアクション",
|
|
94
94
|
"components.pager-load-more.action": "さらに {count} 件を読み込む",
|
|
95
|
-
"components.pager-load-more.info": "{showingCount}
|
|
95
|
+
"components.pager-load-more.info": "{totalCount, plural, other {{showingCount} of {totalCountFormatted} items}}",
|
|
96
96
|
"components.pager-load-more.status-loading": "さらに項目を読み込み中",
|
|
97
97
|
"components.selection.action-hint": "このアクションを実行するための項目を選択します。",
|
|
98
98
|
"components.selection.select-all": "すべて選択",
|
package/lang/ko.js
CHANGED
|
@@ -92,7 +92,7 @@ export default {
|
|
|
92
92
|
"components.more-less.more": "더 보기",
|
|
93
93
|
"components.overflow-group.moreActions": "추가 작업",
|
|
94
94
|
"components.pager-load-more.action": "{count}개 더 로드",
|
|
95
|
-
"components.pager-load-more.info": "{totalCount
|
|
95
|
+
"components.pager-load-more.info": "{totalCount, plural, other {{showingCount} of {totalCountFormatted} items}}",
|
|
96
96
|
"components.pager-load-more.status-loading": "더 많은 항목 로드",
|
|
97
97
|
"components.selection.action-hint": "이 작업을 수행할 항목을 선택하십시오.",
|
|
98
98
|
"components.selection.select-all": "모두 선택",
|
package/lang/nl.js
CHANGED
|
@@ -92,7 +92,7 @@ export default {
|
|
|
92
92
|
"components.more-less.more": "meer",
|
|
93
93
|
"components.overflow-group.moreActions": "Meer acties",
|
|
94
94
|
"components.pager-load-more.action": "Laad nog {count} extra",
|
|
95
|
-
"components.pager-load-more.info": "{showingCount}
|
|
95
|
+
"components.pager-load-more.info": "{totalCount, plural, one {{showingCount} of {totalCountFormatted} item} other {{showingCount} of {totalCountFormatted} items}}",
|
|
96
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",
|
package/lang/pt.js
CHANGED
|
@@ -92,7 +92,7 @@ export default {
|
|
|
92
92
|
"components.more-less.more": "mais",
|
|
93
93
|
"components.overflow-group.moreActions": "Mais ações",
|
|
94
94
|
"components.pager-load-more.action": "Carregar mais {count}",
|
|
95
|
-
"components.pager-load-more.info": "{showingCount}
|
|
95
|
+
"components.pager-load-more.info": "{totalCount, plural, one {{showingCount} of {totalCountFormatted} item} other {{showingCount} of {totalCountFormatted} items}}",
|
|
96
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",
|
package/lang/sv.js
CHANGED
|
@@ -92,7 +92,7 @@ export default {
|
|
|
92
92
|
"components.more-less.more": "mer",
|
|
93
93
|
"components.overflow-group.moreActions": "Fler åtgärder",
|
|
94
94
|
"components.pager-load-more.action": "Läs in {count} till",
|
|
95
|
-
"components.pager-load-more.info": "{showingCount}
|
|
95
|
+
"components.pager-load-more.info": "{totalCount, plural, one {{showingCount} of {totalCountFormatted} item} other {{showingCount} of {totalCountFormatted} items}}",
|
|
96
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",
|
package/lang/tr.js
CHANGED
|
@@ -92,7 +92,7 @@ export default {
|
|
|
92
92
|
"components.more-less.more": "daha fazla",
|
|
93
93
|
"components.overflow-group.moreActions": "Daha Fazla Eylem",
|
|
94
94
|
"components.pager-load-more.action": "{count} Tane Daha Yükle",
|
|
95
|
-
"components.pager-load-more.info": "{totalCount}
|
|
95
|
+
"components.pager-load-more.info": "{totalCount, plural, one {{showingCount} of {totalCountFormatted} item} other {{showingCount} of {totalCountFormatted} items}}",
|
|
96
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ç",
|
package/lang/zh-cn.js
CHANGED
|
@@ -92,7 +92,7 @@ export default {
|
|
|
92
92
|
"components.more-less.more": "更多",
|
|
93
93
|
"components.overflow-group.moreActions": "更多操作",
|
|
94
94
|
"components.pager-load-more.action": "再加载 {count} 个",
|
|
95
|
-
"components.pager-load-more.info": "{showingCount}
|
|
95
|
+
"components.pager-load-more.info": "{totalCount, plural, other {{showingCount} of {totalCountFormatted} items}}",
|
|
96
96
|
"components.pager-load-more.status-loading": "加载更多项目",
|
|
97
97
|
"components.selection.action-hint": "选择一个项目后才能执行此操作。",
|
|
98
98
|
"components.selection.select-all": "全选",
|
package/lang/zh-tw.js
CHANGED
|
@@ -92,7 +92,7 @@ export default {
|
|
|
92
92
|
"components.more-less.more": "較多",
|
|
93
93
|
"components.overflow-group.moreActions": "其他動作",
|
|
94
94
|
"components.pager-load-more.action": "再載入 {count} 個",
|
|
95
|
-
"components.pager-load-more.info": "{showingCount}
|
|
95
|
+
"components.pager-load-more.info": "{totalCount, plural, other {{showingCount} of {totalCountFormatted} items}}",
|
|
96
96
|
"components.pager-load-more.status-loading": "正在載入更多項目",
|
|
97
97
|
"components.selection.action-hint": "選取項目以執行此動作。",
|
|
98
98
|
"components.selection.select-all": "全選",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@brightspace-ui/core",
|
|
3
|
-
"version": "2.37.
|
|
3
|
+
"version": "2.37.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",
|