@brightspace-ui/core 3.265.0 → 3.266.1
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/inputs/input-select-styles.js +93 -82
- package/components/page/page.js +12 -4
- package/custom-elements.json +1 -1
- package/lang/ar.js +1 -0
- package/lang/ca.js +1 -0
- package/lang/cy.js +1 -0
- package/lang/da.js +1 -0
- package/lang/de.js +1 -0
- package/lang/en-gb.js +1 -0
- package/lang/en.js +1 -0
- package/lang/es-es.js +1 -0
- package/lang/es.js +1 -0
- package/lang/fr-fr.js +1 -0
- package/lang/fr.js +1 -0
- package/lang/haw.js +1 -0
- package/lang/hi.js +1 -0
- package/lang/ja.js +1 -0
- package/lang/ko.js +1 -0
- package/lang/mi.js +1 -0
- package/lang/nl.js +1 -0
- package/lang/pt.js +1 -0
- package/lang/sv.js +1 -0
- package/lang/th.js +1 -0
- package/lang/tr.js +1 -0
- package/lang/vi.js +1 -0
- package/lang/zh-cn.js +1 -0
- package/lang/zh-tw.js +1 -0
- package/package.json +1 -1
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import './input-styles.js';
|
|
2
2
|
import { css, unsafeCSS } from 'lit';
|
|
3
|
+
import { _isValidCssSelector } from '../../helpers/internal/css.js';
|
|
3
4
|
import { getFocusPseudoClass } from '../../helpers/focus.js';
|
|
4
5
|
import { registerSemanticVariableForSvgImageUrl } from '../colors/colors.js';
|
|
5
6
|
|
|
@@ -12,94 +13,104 @@ registerSemanticVariableForSvgImageUrl(
|
|
|
12
13
|
</svg>`
|
|
13
14
|
);
|
|
14
15
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
background-image: var(--d2l-input-select-chevron-image);
|
|
22
|
-
background-origin: border-box;
|
|
23
|
-
background-position: center var(--d2l-inline-end, right) 17px;
|
|
24
|
-
background-repeat: no-repeat;
|
|
25
|
-
background-size: 11px 7px;
|
|
26
|
-
border: none;
|
|
27
|
-
border-radius: 0.3rem;
|
|
28
|
-
box-shadow: inset var(--d2l-theme-shadow-inset-offset-x) var(--d2l-theme-shadow-inset-offset-y) var(--d2l-theme-shadow-inset-blur-radius) 1px var(--d2l-theme-shadow-inset-color);
|
|
29
|
-
color: var(--d2l-theme-text-color-static-standard);
|
|
30
|
-
display: inline-block;
|
|
31
|
-
font-family: inherit;
|
|
32
|
-
font-size: 0.8rem;
|
|
33
|
-
font-weight: 400;
|
|
34
|
-
height: auto;
|
|
35
|
-
letter-spacing: 0.02rem;
|
|
36
|
-
line-height: 1.2rem;
|
|
37
|
-
margin: 0;
|
|
38
|
-
max-height: calc(2rem + 2px);
|
|
39
|
-
outline: 1px solid var(--d2l-theme-border-color-emphasized);
|
|
40
|
-
outline-offset: -1px;
|
|
41
|
-
padding-block: calc(0.4rem + 1px);
|
|
42
|
-
padding-inline: calc(0.75rem + 1px) calc(2px + 0.8rem + 1px + 11px + 16px + 1px);
|
|
43
|
-
vertical-align: middle;
|
|
44
|
-
}
|
|
16
|
+
/**
|
|
17
|
+
* A private helper method that should not be used by general consumers
|
|
18
|
+
*/
|
|
19
|
+
export function _generateSelectStyles(selector) {
|
|
20
|
+
if (!_isValidCssSelector(selector)) return '';
|
|
21
|
+
const finalSelector = unsafeCSS(selector);
|
|
45
22
|
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
}
|
|
58
|
-
.d2l-input-select[aria-invalid="true"],
|
|
59
|
-
.d2l-input-select[aria-invalid="true"]:${focusClass},
|
|
60
|
-
.d2l-input-select[aria-invalid="true"]:hover {
|
|
61
|
-
outline-color: var(--d2l-theme-status-color-error);
|
|
62
|
-
}
|
|
63
|
-
.d2l-input-select:disabled {
|
|
64
|
-
opacity: var(--d2l-theme-opacity-disabled-control);
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
@media (prefers-contrast: more) {
|
|
68
|
-
.d2l-input-select {
|
|
69
|
-
appearance: auto;
|
|
70
|
-
background-color: Field;
|
|
71
|
-
background-image: none;
|
|
23
|
+
return css`
|
|
24
|
+
${finalSelector} {
|
|
25
|
+
-webkit-appearance: none;
|
|
26
|
+
-moz-appearance: none;
|
|
27
|
+
appearance: none;
|
|
28
|
+
background-color: var(--d2l-theme-background-color-base);
|
|
29
|
+
background-image: var(--d2l-input-select-chevron-image);
|
|
30
|
+
background-origin: border-box;
|
|
31
|
+
background-position: center var(--d2l-inline-end, right) 17px;
|
|
32
|
+
background-repeat: no-repeat;
|
|
33
|
+
background-size: 11px 7px;
|
|
72
34
|
border: none;
|
|
73
|
-
border-
|
|
74
|
-
box-shadow:
|
|
75
|
-
color:
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
35
|
+
border-radius: 0.3rem;
|
|
36
|
+
box-shadow: inset var(--d2l-theme-shadow-inset-offset-x) var(--d2l-theme-shadow-inset-offset-y) var(--d2l-theme-shadow-inset-blur-radius) 1px var(--d2l-theme-shadow-inset-color);
|
|
37
|
+
color: var(--d2l-theme-text-color-static-standard);
|
|
38
|
+
display: inline-block;
|
|
39
|
+
font-family: inherit;
|
|
40
|
+
font-size: 0.8rem;
|
|
41
|
+
font-weight: 400;
|
|
42
|
+
height: auto;
|
|
43
|
+
letter-spacing: 0.02rem;
|
|
44
|
+
line-height: 1.2rem;
|
|
45
|
+
margin: 0;
|
|
46
|
+
max-height: calc(2rem + 2px);
|
|
47
|
+
outline: 1px solid var(--d2l-theme-border-color-emphasized);
|
|
48
|
+
outline-offset: -1px;
|
|
49
|
+
padding-block: calc(0.4rem + 1px);
|
|
50
|
+
padding-inline: calc(0.75rem + 1px) calc(2px + 0.8rem + 1px + 11px + 16px + 1px);
|
|
51
|
+
vertical-align: middle;
|
|
80
52
|
}
|
|
81
53
|
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
box-shadow:
|
|
85
|
-
outline: 2px solid
|
|
54
|
+
${finalSelector}:not([disabled]):hover,
|
|
55
|
+
${finalSelector}:not([disabled]):${focusClass} {
|
|
56
|
+
box-shadow: inset var(--d2l-theme-shadow-inset-offset-x) var(--d2l-theme-shadow-inset-offset-y) var(--d2l-theme-shadow-inset-blur-radius) 2px var(--d2l-theme-shadow-inset-color);
|
|
57
|
+
outline: 2px solid var(--d2l-theme-border-color-focus);
|
|
58
|
+
outline-offset: -2px;
|
|
86
59
|
}
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
60
|
+
${finalSelector}[aria-invalid="true"] {
|
|
61
|
+
background-image: var(--d2l-input-select-chevron-image), var(--d2l-input-invalid-image);
|
|
62
|
+
background-position: center var(--d2l-inline-end, right) 17px, center var(--d2l-inline-end, right) calc(1px + 11px + 17px);
|
|
63
|
+
background-repeat: no-repeat, no-repeat;
|
|
64
|
+
background-size: 11px 7px, 0.8rem 0.8rem;
|
|
90
65
|
}
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
66
|
+
${finalSelector}[aria-invalid="true"],
|
|
67
|
+
${finalSelector}[aria-invalid="true"]:${focusClass},
|
|
68
|
+
${finalSelector}[aria-invalid="true"]:hover {
|
|
69
|
+
outline-color: var(--d2l-theme-status-color-error);
|
|
70
|
+
}
|
|
71
|
+
${finalSelector}:disabled {
|
|
72
|
+
opacity: var(--d2l-theme-opacity-disabled-control);
|
|
97
73
|
}
|
|
98
74
|
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
75
|
+
@media (prefers-contrast: more) {
|
|
76
|
+
${finalSelector} {
|
|
77
|
+
appearance: auto;
|
|
78
|
+
background-color: Field;
|
|
79
|
+
background-image: none;
|
|
80
|
+
border: none;
|
|
81
|
+
border-inline-end: 0.75rem solid transparent;
|
|
82
|
+
box-shadow: none;
|
|
83
|
+
color: FieldText;
|
|
84
|
+
forced-color-adjust: none;
|
|
85
|
+
height: 2rem;
|
|
86
|
+
outline: 1px solid ButtonBorder;
|
|
87
|
+
padding-inline: 0.6rem 16px;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
${finalSelector}:not([disabled]):${focusClass},
|
|
91
|
+
${finalSelector}:not([disabled]):hover {
|
|
92
|
+
box-shadow: none;
|
|
93
|
+
outline: 2px solid Highlight;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
${finalSelector}:disabled {
|
|
97
|
+
outline: 1px solid GrayText;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
${finalSelector}[aria-invalid="true"] {
|
|
101
|
+
background-image: var(--d2l-input-invalid-image);
|
|
102
|
+
background-position: center var(--d2l-inline-end, right) calc(1px + 11px + 17px);
|
|
103
|
+
background-repeat: no-repeat;
|
|
104
|
+
background-size: 0.8rem 0.8rem;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
${finalSelector}[aria-invalid="true"],
|
|
108
|
+
${finalSelector}[aria-invalid="true"]:${focusClass},
|
|
109
|
+
${finalSelector}[aria-invalid="true"]:hover {
|
|
110
|
+
outline-color: var(--d2l-theme-status-color-error);
|
|
111
|
+
}
|
|
103
112
|
}
|
|
104
|
-
|
|
105
|
-
|
|
113
|
+
`;
|
|
114
|
+
};
|
|
115
|
+
|
|
116
|
+
export const selectStyles = _generateSelectStyles('.d2l-input-select');
|
package/components/page/page.js
CHANGED
|
@@ -206,17 +206,25 @@ class Page extends ProviderMixin(LocalizeCoreElement(LitElement)) {
|
|
|
206
206
|
|
|
207
207
|
#renderSideNavPanel() {
|
|
208
208
|
return html`
|
|
209
|
-
<nav
|
|
209
|
+
<nav
|
|
210
|
+
class="side-nav-panel"
|
|
211
|
+
?hidden="${!this._slotVisibility['side-nav']}"
|
|
212
|
+
aria-label="${this.localize('components.page.side-nav-label')}">
|
|
210
213
|
<slot name="side-nav" @slotchange="${this.#handleSlotVisibilityChange}"></slot>
|
|
211
214
|
</nav>
|
|
212
|
-
${this._slotVisibility['side-nav'] ?
|
|
215
|
+
${!this._slotVisibility['side-nav'] ? nothing :
|
|
216
|
+
html`<div class="divider"></div>`}
|
|
213
217
|
`;
|
|
214
218
|
}
|
|
215
219
|
|
|
216
220
|
#renderSupportingPanel() {
|
|
217
221
|
return html`
|
|
218
|
-
${this._slotVisibility['supporting'] ?
|
|
219
|
-
|
|
222
|
+
${!this._slotVisibility['supporting'] ? nothing :
|
|
223
|
+
html`<div class="divider"></div>`}
|
|
224
|
+
<aside
|
|
225
|
+
class="supporting-panel"
|
|
226
|
+
?hidden="${!this._slotVisibility['supporting']}"
|
|
227
|
+
aria-label="${this.localize('components.page.supporting-panel-label')}">
|
|
220
228
|
<slot name="supporting" @slotchange="${this.#handleSlotVisibilityChange}"></slot>
|
|
221
229
|
</aside>
|
|
222
230
|
`;
|
package/custom-elements.json
CHANGED
|
@@ -12295,7 +12295,7 @@
|
|
|
12295
12295
|
},
|
|
12296
12296
|
{
|
|
12297
12297
|
"name": "styles",
|
|
12298
|
-
"type": "CSSResult[]",
|
|
12298
|
+
"type": "(string | CSSResult)[]",
|
|
12299
12299
|
"default": "[\"inputLabelStyles\",\"selectStyles\",\"tableStyles\",null]"
|
|
12300
12300
|
},
|
|
12301
12301
|
{
|
package/lang/ar.js
CHANGED
|
@@ -154,6 +154,7 @@ export default {
|
|
|
154
154
|
"components.overflow-group.moreActions": "مزيد من الإجراءات",
|
|
155
155
|
"components.page.header-nav-label": "الرئيسية",
|
|
156
156
|
"components.page.side-nav-label": "جانبية",
|
|
157
|
+
"components.page.supporting-panel-label": "Supporting",
|
|
157
158
|
"components.pageable.info":
|
|
158
159
|
`{count, plural,
|
|
159
160
|
one {{countFormatted} مادة واحد}
|
package/lang/ca.js
CHANGED
|
@@ -154,6 +154,7 @@ export default {
|
|
|
154
154
|
"components.overflow-group.moreActions": "Més accions",
|
|
155
155
|
"components.page.header-nav-label": "Principal",
|
|
156
156
|
"components.page.side-nav-label": "Lateral",
|
|
157
|
+
"components.page.supporting-panel-label": "Supporting",
|
|
157
158
|
"components.pageable.info":
|
|
158
159
|
`{count, plural,
|
|
159
160
|
one {{countFormatted} element}
|
package/lang/cy.js
CHANGED
|
@@ -154,6 +154,7 @@ export default {
|
|
|
154
154
|
"components.overflow-group.moreActions": "Rhagor o Gamau Gweithredu",
|
|
155
155
|
"components.page.header-nav-label": "Prif",
|
|
156
156
|
"components.page.side-nav-label": "Ochr",
|
|
157
|
+
"components.page.supporting-panel-label": "Supporting",
|
|
157
158
|
"components.pageable.info":
|
|
158
159
|
`{count, plural,
|
|
159
160
|
one {{countFormatted} eitem}
|
package/lang/da.js
CHANGED
|
@@ -154,6 +154,7 @@ export default {
|
|
|
154
154
|
"components.overflow-group.moreActions": "Flere handlinger",
|
|
155
155
|
"components.page.header-nav-label": "Hoved",
|
|
156
156
|
"components.page.side-nav-label": "Side",
|
|
157
|
+
"components.page.supporting-panel-label": "Supporting",
|
|
157
158
|
"components.pageable.info":
|
|
158
159
|
`{count, plural,
|
|
159
160
|
one {{countFormatted} element}
|
package/lang/de.js
CHANGED
|
@@ -154,6 +154,7 @@ export default {
|
|
|
154
154
|
"components.overflow-group.moreActions": "Weitere Aktionen",
|
|
155
155
|
"components.page.header-nav-label": "Haupt-",
|
|
156
156
|
"components.page.side-nav-label": "Seiten-",
|
|
157
|
+
"components.page.supporting-panel-label": "Supporting",
|
|
157
158
|
"components.pageable.info":
|
|
158
159
|
`{count, plural,
|
|
159
160
|
one {{countFormatted} Element}
|
package/lang/en-gb.js
CHANGED
|
@@ -154,6 +154,7 @@ export default {
|
|
|
154
154
|
"components.overflow-group.moreActions": "More Actions",
|
|
155
155
|
"components.page.header-nav-label": "Main",
|
|
156
156
|
"components.page.side-nav-label": "Side",
|
|
157
|
+
"components.page.supporting-panel-label": "Supporting",
|
|
157
158
|
"components.pageable.info":
|
|
158
159
|
`{count, plural,
|
|
159
160
|
one {{countFormatted} item}
|
package/lang/en.js
CHANGED
|
@@ -154,6 +154,7 @@ export default {
|
|
|
154
154
|
"components.overflow-group.moreActions": "More Actions",
|
|
155
155
|
"components.page.header-nav-label": "Main",
|
|
156
156
|
"components.page.side-nav-label": "Side",
|
|
157
|
+
"components.page.supporting-panel-label": "Supporting",
|
|
157
158
|
"components.pageable.info":
|
|
158
159
|
`{count, plural,
|
|
159
160
|
one {{countFormatted} item}
|
package/lang/es-es.js
CHANGED
|
@@ -154,6 +154,7 @@ export default {
|
|
|
154
154
|
"components.overflow-group.moreActions": "Más acciones",
|
|
155
155
|
"components.page.header-nav-label": "Principal",
|
|
156
156
|
"components.page.side-nav-label": "Lateral",
|
|
157
|
+
"components.page.supporting-panel-label": "Supporting",
|
|
157
158
|
"components.pageable.info":
|
|
158
159
|
`{count, plural,
|
|
159
160
|
one {{countFormatted} elemento}
|
package/lang/es.js
CHANGED
|
@@ -154,6 +154,7 @@ export default {
|
|
|
154
154
|
"components.overflow-group.moreActions": "Más acciones",
|
|
155
155
|
"components.page.header-nav-label": "Principal",
|
|
156
156
|
"components.page.side-nav-label": "Lateral",
|
|
157
|
+
"components.page.supporting-panel-label": "Supporting",
|
|
157
158
|
"components.pageable.info":
|
|
158
159
|
`{count, plural,
|
|
159
160
|
one {{countFormatted} elemento}
|
package/lang/fr-fr.js
CHANGED
|
@@ -154,6 +154,7 @@ export default {
|
|
|
154
154
|
"components.overflow-group.moreActions": "Plus d’actions",
|
|
155
155
|
"components.page.header-nav-label": "Principale",
|
|
156
156
|
"components.page.side-nav-label": "Côté",
|
|
157
|
+
"components.page.supporting-panel-label": "Supporting",
|
|
157
158
|
"components.pageable.info":
|
|
158
159
|
`{count, plural,
|
|
159
160
|
one {{countFormatted} élément}
|
package/lang/fr.js
CHANGED
|
@@ -154,6 +154,7 @@ export default {
|
|
|
154
154
|
"components.overflow-group.moreActions": "Plus d’actions",
|
|
155
155
|
"components.page.header-nav-label": "Principal",
|
|
156
156
|
"components.page.side-nav-label": "Côté",
|
|
157
|
+
"components.page.supporting-panel-label": "Supporting",
|
|
157
158
|
"components.pageable.info":
|
|
158
159
|
`{count, plural,
|
|
159
160
|
one {{countFormatted} élément}
|
package/lang/haw.js
CHANGED
|
@@ -154,6 +154,7 @@ export default {
|
|
|
154
154
|
"components.overflow-group.moreActions": "Nā Hana Hou",
|
|
155
155
|
"components.page.header-nav-label": "Nui",
|
|
156
156
|
"components.page.side-nav-label": "ʻaoʻao",
|
|
157
|
+
"components.page.supporting-panel-label": "Supporting",
|
|
157
158
|
"components.pageable.info":
|
|
158
159
|
`{count, plural,
|
|
159
160
|
one {{countFormatted} mea}
|
package/lang/hi.js
CHANGED
|
@@ -154,6 +154,7 @@ export default {
|
|
|
154
154
|
"components.overflow-group.moreActions": "अधिक क्रियाएँ",
|
|
155
155
|
"components.page.header-nav-label": "मुख्य",
|
|
156
156
|
"components.page.side-nav-label": "साइड",
|
|
157
|
+
"components.page.supporting-panel-label": "Supporting",
|
|
157
158
|
"components.pageable.info":
|
|
158
159
|
`{count, plural,
|
|
159
160
|
one {{countFormatted} आइटम}
|
package/lang/ja.js
CHANGED
|
@@ -149,6 +149,7 @@ export default {
|
|
|
149
149
|
"components.overflow-group.moreActions": "その他のアクション",
|
|
150
150
|
"components.page.header-nav-label": "メイン",
|
|
151
151
|
"components.page.side-nav-label": "サイド",
|
|
152
|
+
"components.page.supporting-panel-label": "Supporting",
|
|
152
153
|
"components.pageable.info":
|
|
153
154
|
`{count, plural,
|
|
154
155
|
other {{countFormatted} 個の項目}
|
package/lang/ko.js
CHANGED
|
@@ -149,6 +149,7 @@ export default {
|
|
|
149
149
|
"components.overflow-group.moreActions": "추가 작업",
|
|
150
150
|
"components.page.header-nav-label": "메인",
|
|
151
151
|
"components.page.side-nav-label": "사이드",
|
|
152
|
+
"components.page.supporting-panel-label": "Supporting",
|
|
152
153
|
"components.pageable.info":
|
|
153
154
|
`{count, plural,
|
|
154
155
|
other {해당 항목 수 {countFormatted}개}
|
package/lang/mi.js
CHANGED
|
@@ -154,6 +154,7 @@ export default {
|
|
|
154
154
|
"components.overflow-group.moreActions": "Ētahi atu Hohenga",
|
|
155
155
|
"components.page.header-nav-label": "Matua",
|
|
156
156
|
"components.page.side-nav-label": "Taha",
|
|
157
|
+
"components.page.supporting-panel-label": "Supporting",
|
|
157
158
|
"components.pageable.info":
|
|
158
159
|
`{count, plural,
|
|
159
160
|
one {{countFormatted} Tūemi}
|
package/lang/nl.js
CHANGED
|
@@ -154,6 +154,7 @@ export default {
|
|
|
154
154
|
"components.overflow-group.moreActions": "Meer acties",
|
|
155
155
|
"components.page.header-nav-label": "Hoofdgedeelte",
|
|
156
156
|
"components.page.side-nav-label": "Zij",
|
|
157
|
+
"components.page.supporting-panel-label": "Supporting",
|
|
157
158
|
"components.pageable.info":
|
|
158
159
|
`{count, plural,
|
|
159
160
|
one {{countFormatted} item}
|
package/lang/pt.js
CHANGED
|
@@ -154,6 +154,7 @@ export default {
|
|
|
154
154
|
"components.overflow-group.moreActions": "Mais ações",
|
|
155
155
|
"components.page.header-nav-label": "Principal",
|
|
156
156
|
"components.page.side-nav-label": "Lateral",
|
|
157
|
+
"components.page.supporting-panel-label": "Supporting",
|
|
157
158
|
"components.pageable.info":
|
|
158
159
|
`{count, plural,
|
|
159
160
|
one {{countFormatted} item}
|
package/lang/sv.js
CHANGED
|
@@ -154,6 +154,7 @@ export default {
|
|
|
154
154
|
"components.overflow-group.moreActions": "Fler åtgärder",
|
|
155
155
|
"components.page.header-nav-label": "Huvudsida",
|
|
156
156
|
"components.page.side-nav-label": "Sida",
|
|
157
|
+
"components.page.supporting-panel-label": "Supporting",
|
|
157
158
|
"components.pageable.info":
|
|
158
159
|
`{count, plural,
|
|
159
160
|
one {{countFormatted} objekt}
|
package/lang/th.js
CHANGED
|
@@ -150,6 +150,7 @@ export default {
|
|
|
150
150
|
"components.overflow-group.moreActions": "การดำเนินการเพิ่มเติม",
|
|
151
151
|
"components.page.header-nav-label": "หลัก",
|
|
152
152
|
"components.page.side-nav-label": "ด้านข้าง",
|
|
153
|
+
"components.page.supporting-panel-label": "Supporting",
|
|
153
154
|
"components.pageable.info":
|
|
154
155
|
`{count, plural,
|
|
155
156
|
other {{countFormatted} รายการ}
|
package/lang/tr.js
CHANGED
|
@@ -154,6 +154,7 @@ export default {
|
|
|
154
154
|
"components.overflow-group.moreActions": "Daha Fazla Eylem",
|
|
155
155
|
"components.page.header-nav-label": "Ana",
|
|
156
156
|
"components.page.side-nav-label": "Yan",
|
|
157
|
+
"components.page.supporting-panel-label": "Supporting",
|
|
157
158
|
"components.pageable.info":
|
|
158
159
|
`{count, plural,
|
|
159
160
|
one {{countFormatted} öğe}
|
package/lang/vi.js
CHANGED
|
@@ -148,6 +148,7 @@ export default {
|
|
|
148
148
|
"components.overflow-group.moreActions": "Thêm các Tác vụ",
|
|
149
149
|
"components.page.header-nav-label": "Chính",
|
|
150
150
|
"components.page.side-nav-label": "Bên",
|
|
151
|
+
"components.page.supporting-panel-label": "Supporting",
|
|
151
152
|
"components.pageable.info":
|
|
152
153
|
`{count, plural,
|
|
153
154
|
other {{countFormatted} mục}
|
package/lang/zh-cn.js
CHANGED
|
@@ -149,6 +149,7 @@ export default {
|
|
|
149
149
|
"components.overflow-group.moreActions": "更多操作",
|
|
150
150
|
"components.page.header-nav-label": "主要",
|
|
151
151
|
"components.page.side-nav-label": "侧面",
|
|
152
|
+
"components.page.supporting-panel-label": "Supporting",
|
|
152
153
|
"components.pageable.info":
|
|
153
154
|
`{count, plural,
|
|
154
155
|
other {{countFormatted} 项}
|
package/lang/zh-tw.js
CHANGED
|
@@ -150,6 +150,7 @@ export default {
|
|
|
150
150
|
"components.overflow-group.moreActions": "其他動作",
|
|
151
151
|
"components.page.header-nav-label": "主要",
|
|
152
152
|
"components.page.side-nav-label": "側邊",
|
|
153
|
+
"components.page.supporting-panel-label": "Supporting",
|
|
153
154
|
"components.pageable.info":
|
|
154
155
|
`{count, plural,
|
|
155
156
|
other {{countFormatted} 個項目}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@brightspace-ui/core",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.266.1",
|
|
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",
|