@brightspace-ui/core 3.1.3 → 3.2.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/html-block/demo/html-block.html +3 -3
- package/components/table/README.md +3 -1
- package/components/table/demo/table-test.js +3 -0
- package/components/table/table-col-sort-button.js +31 -3
- package/custom-elements.json +25 -8
- package/helpers/mathjax.js +18 -0
- package/lang/ar.js +3 -0
- package/lang/cy.js +3 -0
- package/lang/da.js +3 -0
- package/lang/de.js +3 -0
- package/lang/en-gb.js +3 -0
- package/lang/en.js +3 -0
- package/lang/es-es.js +3 -0
- package/lang/es.js +3 -0
- package/lang/fr-fr.js +3 -0
- package/lang/fr.js +3 -0
- package/lang/hi.js +3 -0
- package/lang/ja.js +3 -0
- package/lang/ko.js +3 -0
- package/lang/nl.js +3 -0
- package/lang/pt.js +3 -0
- package/lang/sv.js +3 -0
- package/lang/tr.js +3 -0
- package/lang/zh-cn.js +3 -0
- package/lang/zh-tw.js +3 -0
- package/package.json +1 -1
@@ -78,7 +78,7 @@
|
|
78
78
|
<li>ordered item 1</li>
|
79
79
|
<li>ordered item 2</li>
|
80
80
|
</ol>
|
81
|
-
<div><a href="https://d2l.com">anchor</a></div>">
|
81
|
+
<div><a href="https://d2l.com">anchor</a></div>">
|
82
82
|
</d2l-html-block>
|
83
83
|
</template>
|
84
84
|
</d2l-demo-snippet>
|
@@ -494,7 +494,7 @@
|
|
494
494
|
</mrow>
|
495
495
|
<mo>)</mo>
|
496
496
|
</mrow>
|
497
|
-
</math> and other symbols.">
|
497
|
+
</math> and other symbols.">
|
498
498
|
</d2l-html-block>
|
499
499
|
</template>
|
500
500
|
</d2l-demo-snippet>
|
@@ -504,7 +504,7 @@
|
|
504
504
|
<d2l-demo-snippet>
|
505
505
|
<template>
|
506
506
|
<d2l-html-block html="<div>$$ f(x) = \int \mathrm{e}^{-x}\,\mathrm{d}x $$ $$ x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a} $$</div>
|
507
|
-
<div>$$ {\color{red}x} + {\color{blue}y} = {\color{green}z} $$</div>">
|
507
|
+
<div>$$ {\color{red}x} + {\color{blue}y} = {\color{green}z} $$</div>">
|
508
508
|
</d2l-html-block>
|
509
509
|
</template>
|
510
510
|
</d2l-demo-snippet>
|
@@ -182,7 +182,8 @@ When tabular data can be sorted, the `<d2l-table-col-sort-button>` can be used t
|
|
182
182
|
<th>
|
183
183
|
<d2l-table-col-sort-button
|
184
184
|
@click="${this._handleSort}"
|
185
|
-
|
185
|
+
?desc="${this._sortDesc}"
|
186
|
+
source-type="words">
|
186
187
|
Column A
|
187
188
|
</d2l-table-col-sort-button>
|
188
189
|
</th>
|
@@ -226,6 +227,7 @@ When tabular data can be sorted, the `<d2l-table-col-sort-button>` can be used t
|
|
226
227
|
|---|---|---|---|
|
227
228
|
| `desc` | boolean | Whether sort direction is descending | false |
|
228
229
|
| `nosort` | boolean | Column is not currently sorted. Hides the ascending/descending sort icon. | false |
|
230
|
+
| `source-type` | string | The type of data in the column. Used to set the title. Accepted values are 'words', 'numbers', and 'dates'. | 'unknown' |
|
229
231
|
|
230
232
|
## Selection
|
231
233
|
|
@@ -177,10 +177,12 @@ class TestTable extends RtlMixin(DemoPassthroughMixin(TableWrapper, 'd2l-table-w
|
|
177
177
|
<th scope="col">
|
178
178
|
<d2l-table-col-sort-button
|
179
179
|
@click="${this._handleSort}"
|
180
|
+
source-type="words"
|
180
181
|
?desc="${this._sortDesc}"
|
181
182
|
?nosort="${this._sortField !== item1.toLowerCase()}">${item1}</d2l-table-col-sort-button>
|
182
183
|
<d2l-table-col-sort-button
|
183
184
|
@click="${this._handleSort}"
|
185
|
+
source-type="words"
|
184
186
|
?desc="${this._sortDesc}"
|
185
187
|
?nosort="${this._sortField !== item2.toLowerCase()}">${item2}</d2l-table-col-sort-button>
|
186
188
|
</th>
|
@@ -193,6 +195,7 @@ class TestTable extends RtlMixin(DemoPassthroughMixin(TableWrapper, 'd2l-table-w
|
|
193
195
|
<th scope="col">
|
194
196
|
<d2l-table-col-sort-button
|
195
197
|
@click="${this._handleSort}"
|
198
|
+
source-type="numbers"
|
196
199
|
?desc="${this._sortDesc}"
|
197
200
|
?nosort="${noSort}">${item}</d2l-table-col-sort-button>
|
198
201
|
${item === 'Size' && this.showButtons ? html`<d2l-button-icon text="Help" icon="tier1:help"></d2l-button-icon>` : nothing}
|
@@ -3,12 +3,15 @@ import '../icons/icon.js';
|
|
3
3
|
import { css, html, LitElement, unsafeCSS } from 'lit';
|
4
4
|
import { FocusMixin } from '../../mixins/focus/focus-mixin.js';
|
5
5
|
import { getFocusPseudoClass } from '../../helpers/focus.js';
|
6
|
+
import { getUniqueId } from '../../helpers/uniqueId.js';
|
7
|
+
import { ifDefined } from 'lit/directives/if-defined.js';
|
8
|
+
import { LocalizeCoreElement } from '../../helpers/localize-core-element.js';
|
6
9
|
|
7
10
|
/**
|
8
11
|
* Button for sorting a table column in ascending/descending order.
|
9
12
|
* @slot - Text of the sort button
|
10
13
|
*/
|
11
|
-
export class TableColSortButton extends FocusMixin(LitElement) {
|
14
|
+
export class TableColSortButton extends LocalizeCoreElement(FocusMixin(LitElement)) {
|
12
15
|
|
13
16
|
static get properties() {
|
14
17
|
return {
|
@@ -27,6 +30,14 @@ export class TableColSortButton extends FocusMixin(LitElement) {
|
|
27
30
|
nosort: {
|
28
31
|
reflect: true,
|
29
32
|
type: Boolean
|
33
|
+
},
|
34
|
+
/**
|
35
|
+
* The type of data in the column. Used to set the title.
|
36
|
+
* @type {'words'|'numbers'|'dates'|'unknown'}
|
37
|
+
*/
|
38
|
+
sourceType: {
|
39
|
+
attribute: 'source-type',
|
40
|
+
type: String
|
30
41
|
}
|
31
42
|
};
|
32
43
|
}
|
@@ -81,8 +92,11 @@ export class TableColSortButton extends FocusMixin(LitElement) {
|
|
81
92
|
|
82
93
|
constructor() {
|
83
94
|
super();
|
84
|
-
this.nosort = false;
|
85
95
|
this.desc = false;
|
96
|
+
this.nosort = false;
|
97
|
+
this.sourceType = 'unknown';
|
98
|
+
|
99
|
+
this._describedById = getUniqueId();
|
86
100
|
}
|
87
101
|
|
88
102
|
static get focusElementSelector() {
|
@@ -90,10 +104,24 @@ export class TableColSortButton extends FocusMixin(LitElement) {
|
|
90
104
|
}
|
91
105
|
|
92
106
|
render() {
|
107
|
+
const buttonDescription = this.nosort ? this.localize('components.table-col-sort-button.addSortOrder') : this.localize('components.table-col-sort-button.changeSortOrder');
|
108
|
+
const buttonTitle = this.nosort
|
109
|
+
? undefined
|
110
|
+
: this.localize('components.table-col-sort-button.title', {
|
111
|
+
sourceType: this.sourceType,
|
112
|
+
direction: this.desc ? 'desc' : undefined
|
113
|
+
});
|
114
|
+
|
93
115
|
const iconView = !this.nosort ?
|
94
116
|
html`<d2l-icon icon="${this.desc ? 'tier1:arrow-toggle-down' : 'tier1:arrow-toggle-up'}"></d2l-icon>` :
|
95
117
|
null;
|
96
|
-
|
118
|
+
|
119
|
+
return html`<button
|
120
|
+
aria-describedby="${this._describedById}"
|
121
|
+
title="${ifDefined(buttonTitle)}"
|
122
|
+
type="button">
|
123
|
+
<slot></slot>${iconView}
|
124
|
+
</button><span id="${this._describedById}" hidden>${buttonDescription}</span>`;
|
97
125
|
}
|
98
126
|
|
99
127
|
}
|
package/custom-elements.json
CHANGED
@@ -12025,20 +12025,33 @@
|
|
12025
12025
|
"path": "./components/table/table-col-sort-button.js",
|
12026
12026
|
"description": "Button for sorting a table column in ascending/descending order.",
|
12027
12027
|
"attributes": [
|
12028
|
+
{
|
12029
|
+
"name": "desc",
|
12030
|
+
"description": "Whether sort direction is descending",
|
12031
|
+
"type": "boolean",
|
12032
|
+
"default": "false"
|
12033
|
+
},
|
12028
12034
|
{
|
12029
12035
|
"name": "nosort",
|
12030
12036
|
"description": "Column is not currently sorted. Hides the ascending/descending sort icon.",
|
12031
12037
|
"type": "boolean",
|
12032
12038
|
"default": "false"
|
12033
12039
|
},
|
12040
|
+
{
|
12041
|
+
"name": "source-type",
|
12042
|
+
"description": "The type of data in the column. Used to set the title.",
|
12043
|
+
"type": "'words'|'numbers'|'dates'|'unknown'",
|
12044
|
+
"default": "\"unknown\""
|
12045
|
+
}
|
12046
|
+
],
|
12047
|
+
"properties": [
|
12034
12048
|
{
|
12035
12049
|
"name": "desc",
|
12050
|
+
"attribute": "desc",
|
12036
12051
|
"description": "Whether sort direction is descending",
|
12037
12052
|
"type": "boolean",
|
12038
12053
|
"default": "false"
|
12039
|
-
}
|
12040
|
-
],
|
12041
|
-
"properties": [
|
12054
|
+
},
|
12042
12055
|
{
|
12043
12056
|
"name": "nosort",
|
12044
12057
|
"attribute": "nosort",
|
@@ -12047,11 +12060,15 @@
|
|
12047
12060
|
"default": "false"
|
12048
12061
|
},
|
12049
12062
|
{
|
12050
|
-
"name": "
|
12051
|
-
"attribute": "
|
12052
|
-
"description": "
|
12053
|
-
"type": "
|
12054
|
-
"default": "
|
12063
|
+
"name": "sourceType",
|
12064
|
+
"attribute": "source-type",
|
12065
|
+
"description": "The type of data in the column. Used to set the title.",
|
12066
|
+
"type": "'words'|'numbers'|'dates'|'unknown'",
|
12067
|
+
"default": "\"unknown\""
|
12068
|
+
},
|
12069
|
+
{
|
12070
|
+
"name": "documentLocaleSettings",
|
12071
|
+
"default": "\"getDocumentLocaleSettings()\""
|
12055
12072
|
}
|
12056
12073
|
],
|
12057
12074
|
"slots": [
|
package/helpers/mathjax.js
CHANGED
@@ -64,6 +64,24 @@ class HtmlBlockMathRenderer {
|
|
64
64
|
elm.style.height = '0.5rem';
|
65
65
|
});
|
66
66
|
|
67
|
+
if (context.enableMML3Support) {
|
68
|
+
// There's a bug in the experimental MML3 plugin that causes mi and mo elements containing non-breaking
|
69
|
+
// spaces to break MathJax's math processing (e.g. <mo> </mo>, <mi>Some Identifier</mi>).
|
70
|
+
// Unfortunately, WIRIS tends to add a lot of these in chemistry equations, so they break math processing.
|
71
|
+
//
|
72
|
+
// In order to address this, we can just remove any non-breaking spaces entirely, replacing them with
|
73
|
+
// empty strings. MathJax will ignore any empty elements as a result, and while this may mean intended
|
74
|
+
// whitespace is occasionally removed, it's necessary for MathJax to render anything at all.
|
75
|
+
//
|
76
|
+
// NOTE: MathJax evidently has a fix for this in MathJax 4, so we should consider trying to remove this when
|
77
|
+
// the update comes out of beta and we decide to take it on.
|
78
|
+
//
|
79
|
+
// See https://github.com/mathjax/MathJax/issues/3030 for some related discussion.
|
80
|
+
elem.querySelectorAll('mo, mi').forEach(elm => {
|
81
|
+
elm.innerHTML = elm.innerHTML.replace(/ /g, '');
|
82
|
+
});
|
83
|
+
}
|
84
|
+
|
67
85
|
// If we're using deferred rendering, we need to create a document structure
|
68
86
|
// within the element so MathJax can appropriately process math.
|
69
87
|
if (!options.noDeferredRendering) elem.innerHTML = `<mjx-doc><mjx-head></mjx-head><mjx-body>${elem.innerHTML}</mjx-body></mjx-doc>`;
|
package/lang/ar.js
CHANGED
@@ -105,6 +105,9 @@ export default {
|
|
105
105
|
"components.switch.visibleWithPeriod": "مرئي.",
|
106
106
|
"components.switch.hidden": "مخفي",
|
107
107
|
"components.switch.conditions": "يجب استيفاء الشروط",
|
108
|
+
"components.table-col-sort-button.addSortOrder": "Select to add sort order",
|
109
|
+
"components.table-col-sort-button.changeSortOrder": "Select to change sort order",
|
110
|
+
"components.table-col-sort-button.title": "{sourceType, select, dates {{direction, select, desc {Sorted new to old} other {Sorted old to new}}} numbers {{direction, select, desc {Sorted high to low} other {Sorted low to high}}} words {{direction, select, desc {Sorted Z to A} other {Sorted A to Z}}} other {{direction, select, desc {Sorted descending} other {Sorted ascending}}}}",
|
108
111
|
"components.table-controls.label": "إجراءات للجدول",
|
109
112
|
"components.tabs.next": "التمرير إلى الأمام",
|
110
113
|
"components.tabs.previous": "التمرير إلى الخلف",
|
package/lang/cy.js
CHANGED
@@ -105,6 +105,9 @@ export default {
|
|
105
105
|
"components.switch.visibleWithPeriod": "Gweladwy.",
|
106
106
|
"components.switch.hidden": "Cudd",
|
107
107
|
"components.switch.conditions": "Rhaid bodloni’r amodau",
|
108
|
+
"components.table-col-sort-button.addSortOrder": "Select to add sort order",
|
109
|
+
"components.table-col-sort-button.changeSortOrder": "Select to change sort order",
|
110
|
+
"components.table-col-sort-button.title": "{sourceType, select, dates {{direction, select, desc {Sorted new to old} other {Sorted old to new}}} numbers {{direction, select, desc {Sorted high to low} other {Sorted low to high}}} words {{direction, select, desc {Sorted Z to A} other {Sorted A to Z}}} other {{direction, select, desc {Sorted descending} other {Sorted ascending}}}}",
|
108
111
|
"components.table-controls.label": "Camau gweithredu ar gyfer y tabl",
|
109
112
|
"components.tabs.next": "Sgrolio Ymlaen",
|
110
113
|
"components.tabs.previous": "Sgrolio Yn Ôl",
|
package/lang/da.js
CHANGED
@@ -105,6 +105,9 @@ export default {
|
|
105
105
|
"components.switch.visibleWithPeriod": "Synlig.",
|
106
106
|
"components.switch.hidden": "Skjult",
|
107
107
|
"components.switch.conditions": "Betingelserne skal være opfyldt",
|
108
|
+
"components.table-col-sort-button.addSortOrder": "Select to add sort order",
|
109
|
+
"components.table-col-sort-button.changeSortOrder": "Select to change sort order",
|
110
|
+
"components.table-col-sort-button.title": "{sourceType, select, dates {{direction, select, desc {Sorted new to old} other {Sorted old to new}}} numbers {{direction, select, desc {Sorted high to low} other {Sorted low to high}}} words {{direction, select, desc {Sorted Z to A} other {Sorted A to Z}}} other {{direction, select, desc {Sorted descending} other {Sorted ascending}}}}",
|
108
111
|
"components.table-controls.label": "Handlinger for tabel",
|
109
112
|
"components.tabs.next": "Rul frem",
|
110
113
|
"components.tabs.previous": "Rul tilbage",
|
package/lang/de.js
CHANGED
@@ -105,6 +105,9 @@ export default {
|
|
105
105
|
"components.switch.visibleWithPeriod": "Sichtbar.",
|
106
106
|
"components.switch.hidden": "Ausgeblendet",
|
107
107
|
"components.switch.conditions": "Bedingungen müssen erfüllt sein",
|
108
|
+
"components.table-col-sort-button.addSortOrder": "Select to add sort order",
|
109
|
+
"components.table-col-sort-button.changeSortOrder": "Select to change sort order",
|
110
|
+
"components.table-col-sort-button.title": "{sourceType, select, dates {{direction, select, desc {Sorted new to old} other {Sorted old to new}}} numbers {{direction, select, desc {Sorted high to low} other {Sorted low to high}}} words {{direction, select, desc {Sorted Z to A} other {Sorted A to Z}}} other {{direction, select, desc {Sorted descending} other {Sorted ascending}}}}",
|
108
111
|
"components.table-controls.label": "Aktionen für Tabelle",
|
109
112
|
"components.tabs.next": "Weiterblättern",
|
110
113
|
"components.tabs.previous": "Zurückblättern",
|
package/lang/en-gb.js
CHANGED
@@ -105,6 +105,9 @@ export default {
|
|
105
105
|
"components.switch.visibleWithPeriod": "Visible.",
|
106
106
|
"components.switch.hidden": "Hidden",
|
107
107
|
"components.switch.conditions": "Conditions must be met",
|
108
|
+
"components.table-col-sort-button.addSortOrder": "Select to add sort order",
|
109
|
+
"components.table-col-sort-button.changeSortOrder": "Select to change sort order",
|
110
|
+
"components.table-col-sort-button.title": "{sourceType, select, dates {{direction, select, desc {Sorted new to old} other {Sorted old to new}}} numbers {{direction, select, desc {Sorted high to low} other {Sorted low to high}}} words {{direction, select, desc {Sorted Z to A} other {Sorted A to Z}}} other {{direction, select, desc {Sorted descending} other {Sorted ascending}}}}",
|
108
111
|
"components.table-controls.label": "Actions for table",
|
109
112
|
"components.tabs.next": "Scroll Forwards",
|
110
113
|
"components.tabs.previous": "Scroll Backwards",
|
package/lang/en.js
CHANGED
@@ -105,6 +105,9 @@ export default {
|
|
105
105
|
"components.switch.visibleWithPeriod": "Visible.",
|
106
106
|
"components.switch.hidden": "Hidden",
|
107
107
|
"components.switch.conditions": "Conditions must be met",
|
108
|
+
"components.table-col-sort-button.addSortOrder": "Select to add sort order",
|
109
|
+
"components.table-col-sort-button.changeSortOrder": "Select to change sort order",
|
110
|
+
"components.table-col-sort-button.title": "{sourceType, select, dates {{direction, select, desc {Sorted new to old} other {Sorted old to new}}} numbers {{direction, select, desc {Sorted high to low} other {Sorted low to high}}} words {{direction, select, desc {Sorted Z to A} other {Sorted A to Z}}} other {{direction, select, desc {Sorted descending} other {Sorted ascending}}}}",
|
108
111
|
"components.table-controls.label": "Actions for table",
|
109
112
|
"components.tabs.next": "Scroll Forward",
|
110
113
|
"components.tabs.previous": "Scroll Backward",
|
package/lang/es-es.js
CHANGED
@@ -105,6 +105,9 @@ export default {
|
|
105
105
|
"components.switch.visibleWithPeriod": "Visible.", // mfv-translated
|
106
106
|
"components.switch.hidden": "Oculto",
|
107
107
|
"components.switch.conditions": "Deben cumplirse las condiciones",
|
108
|
+
"components.table-col-sort-button.addSortOrder": "Select to add sort order",
|
109
|
+
"components.table-col-sort-button.changeSortOrder": "Select to change sort order",
|
110
|
+
"components.table-col-sort-button.title": "{sourceType, select, dates {{direction, select, desc {Sorted new to old} other {Sorted old to new}}} numbers {{direction, select, desc {Sorted high to low} other {Sorted low to high}}} words {{direction, select, desc {Sorted Z to A} other {Sorted A to Z}}} other {{direction, select, desc {Sorted descending} other {Sorted ascending}}}}",
|
108
111
|
"components.table-controls.label": "Acciones para la tabla",
|
109
112
|
"components.tabs.next": "Desplazarse hacia delante",
|
110
113
|
"components.tabs.previous": "Desplazarse hacia atrás",
|
package/lang/es.js
CHANGED
@@ -105,6 +105,9 @@ export default {
|
|
105
105
|
"components.switch.visibleWithPeriod": "Visible.", // mfv-translated
|
106
106
|
"components.switch.hidden": "Oculto",
|
107
107
|
"components.switch.conditions": "Se deben cumplir las condiciones",
|
108
|
+
"components.table-col-sort-button.addSortOrder": "Select to add sort order",
|
109
|
+
"components.table-col-sort-button.changeSortOrder": "Select to change sort order",
|
110
|
+
"components.table-col-sort-button.title": "{sourceType, select, dates {{direction, select, desc {Sorted new to old} other {Sorted old to new}}} numbers {{direction, select, desc {Sorted high to low} other {Sorted low to high}}} words {{direction, select, desc {Sorted Z to A} other {Sorted A to Z}}} other {{direction, select, desc {Sorted descending} other {Sorted ascending}}}}",
|
108
111
|
"components.table-controls.label": "Acciones de la tabla",
|
109
112
|
"components.tabs.next": "Desplazarse hacia adelante",
|
110
113
|
"components.tabs.previous": "Desplazarse hacia atrás",
|
package/lang/fr-fr.js
CHANGED
@@ -105,6 +105,9 @@ export default {
|
|
105
105
|
"components.switch.visibleWithPeriod": "Visible.", // mfv-translated
|
106
106
|
"components.switch.hidden": "Masqué",
|
107
107
|
"components.switch.conditions": "Les conditions doivent être remplies",
|
108
|
+
"components.table-col-sort-button.addSortOrder": "Select to add sort order",
|
109
|
+
"components.table-col-sort-button.changeSortOrder": "Select to change sort order",
|
110
|
+
"components.table-col-sort-button.title": "{sourceType, select, dates {{direction, select, desc {Sorted new to old} other {Sorted old to new}}} numbers {{direction, select, desc {Sorted high to low} other {Sorted low to high}}} words {{direction, select, desc {Sorted Z to A} other {Sorted A to Z}}} other {{direction, select, desc {Sorted descending} other {Sorted ascending}}}}",
|
108
111
|
"components.table-controls.label": "Actions du tableau",
|
109
112
|
"components.tabs.next": "Faire défiler vers l'avant",
|
110
113
|
"components.tabs.previous": "Faire défiler vers l'arrière",
|
package/lang/fr.js
CHANGED
@@ -105,6 +105,9 @@ export default {
|
|
105
105
|
"components.switch.visibleWithPeriod": "Visible.", // mfv-translated
|
106
106
|
"components.switch.hidden": "Masqué(e)",
|
107
107
|
"components.switch.conditions": "Les conditions doivent être remplies",
|
108
|
+
"components.table-col-sort-button.addSortOrder": "Select to add sort order",
|
109
|
+
"components.table-col-sort-button.changeSortOrder": "Select to change sort order",
|
110
|
+
"components.table-col-sort-button.title": "{sourceType, select, dates {{direction, select, desc {Sorted new to old} other {Sorted old to new}}} numbers {{direction, select, desc {Sorted high to low} other {Sorted low to high}}} words {{direction, select, desc {Sorted Z to A} other {Sorted A to Z}}} other {{direction, select, desc {Sorted descending} other {Sorted ascending}}}}",
|
108
111
|
"components.table-controls.label": "Actions pour la table",
|
109
112
|
"components.tabs.next": "Défilement avant",
|
110
113
|
"components.tabs.previous": "Défilement arrière",
|
package/lang/hi.js
CHANGED
@@ -105,6 +105,9 @@ export default {
|
|
105
105
|
"components.switch.visibleWithPeriod": "दृश्यमान।",
|
106
106
|
"components.switch.hidden": "छुपा हुआ",
|
107
107
|
"components.switch.conditions": "शर्तें पूरी होनी चाहिए",
|
108
|
+
"components.table-col-sort-button.addSortOrder": "Select to add sort order",
|
109
|
+
"components.table-col-sort-button.changeSortOrder": "Select to change sort order",
|
110
|
+
"components.table-col-sort-button.title": "{sourceType, select, dates {{direction, select, desc {Sorted new to old} other {Sorted old to new}}} numbers {{direction, select, desc {Sorted high to low} other {Sorted low to high}}} words {{direction, select, desc {Sorted Z to A} other {Sorted A to Z}}} other {{direction, select, desc {Sorted descending} other {Sorted ascending}}}}",
|
108
111
|
"components.table-controls.label": "तालिका के लिए क्रियाएँ",
|
109
112
|
"components.tabs.next": "आगे स्क्रॉल करें",
|
110
113
|
"components.tabs.previous": "पीछे स्क्रॉल करें",
|
package/lang/ja.js
CHANGED
@@ -105,6 +105,9 @@ export default {
|
|
105
105
|
"components.switch.visibleWithPeriod": "表示。",
|
106
106
|
"components.switch.hidden": "非表示",
|
107
107
|
"components.switch.conditions": "条件が一致する必要があります",
|
108
|
+
"components.table-col-sort-button.addSortOrder": "Select to add sort order",
|
109
|
+
"components.table-col-sort-button.changeSortOrder": "Select to change sort order",
|
110
|
+
"components.table-col-sort-button.title": "{sourceType, select, dates {{direction, select, desc {Sorted new to old} other {Sorted old to new}}} numbers {{direction, select, desc {Sorted high to low} other {Sorted low to high}}} words {{direction, select, desc {Sorted Z to A} other {Sorted A to Z}}} other {{direction, select, desc {Sorted descending} other {Sorted ascending}}}}",
|
108
111
|
"components.table-controls.label": "テーブルのアクション",
|
109
112
|
"components.tabs.next": "前方にスクロール",
|
110
113
|
"components.tabs.previous": "後方にスクロール",
|
package/lang/ko.js
CHANGED
@@ -105,6 +105,9 @@ export default {
|
|
105
105
|
"components.switch.visibleWithPeriod": "표시.",
|
106
106
|
"components.switch.hidden": "숨김",
|
107
107
|
"components.switch.conditions": "조건을 충족해야 합니다",
|
108
|
+
"components.table-col-sort-button.addSortOrder": "Select to add sort order",
|
109
|
+
"components.table-col-sort-button.changeSortOrder": "Select to change sort order",
|
110
|
+
"components.table-col-sort-button.title": "{sourceType, select, dates {{direction, select, desc {Sorted new to old} other {Sorted old to new}}} numbers {{direction, select, desc {Sorted high to low} other {Sorted low to high}}} words {{direction, select, desc {Sorted Z to A} other {Sorted A to Z}}} other {{direction, select, desc {Sorted descending} other {Sorted ascending}}}}",
|
108
111
|
"components.table-controls.label": "표에 대한 작업",
|
109
112
|
"components.tabs.next": "앞으로 스크롤",
|
110
113
|
"components.tabs.previous": "뒤로 스크롤",
|
package/lang/nl.js
CHANGED
@@ -105,6 +105,9 @@ export default {
|
|
105
105
|
"components.switch.visibleWithPeriod": "Zichtbaar.",
|
106
106
|
"components.switch.hidden": "Verborgen",
|
107
107
|
"components.switch.conditions": "Er moet aan de voorwaarden worden voldaan",
|
108
|
+
"components.table-col-sort-button.addSortOrder": "Select to add sort order",
|
109
|
+
"components.table-col-sort-button.changeSortOrder": "Select to change sort order",
|
110
|
+
"components.table-col-sort-button.title": "{sourceType, select, dates {{direction, select, desc {Sorted new to old} other {Sorted old to new}}} numbers {{direction, select, desc {Sorted high to low} other {Sorted low to high}}} words {{direction, select, desc {Sorted Z to A} other {Sorted A to Z}}} other {{direction, select, desc {Sorted descending} other {Sorted ascending}}}}",
|
108
111
|
"components.table-controls.label": "Acties voor tabel",
|
109
112
|
"components.tabs.next": "Naar voren scrollen",
|
110
113
|
"components.tabs.previous": "Naar achteren scrollen",
|
package/lang/pt.js
CHANGED
@@ -105,6 +105,9 @@ export default {
|
|
105
105
|
"components.switch.visibleWithPeriod": "Visível.",
|
106
106
|
"components.switch.hidden": "Oculto",
|
107
107
|
"components.switch.conditions": "As condições devem ser atendidas",
|
108
|
+
"components.table-col-sort-button.addSortOrder": "Select to add sort order",
|
109
|
+
"components.table-col-sort-button.changeSortOrder": "Select to change sort order",
|
110
|
+
"components.table-col-sort-button.title": "{sourceType, select, dates {{direction, select, desc {Sorted new to old} other {Sorted old to new}}} numbers {{direction, select, desc {Sorted high to low} other {Sorted low to high}}} words {{direction, select, desc {Sorted Z to A} other {Sorted A to Z}}} other {{direction, select, desc {Sorted descending} other {Sorted ascending}}}}",
|
108
111
|
"components.table-controls.label": "Ações para a tabela",
|
109
112
|
"components.tabs.next": "Ir para frente",
|
110
113
|
"components.tabs.previous": "Ir para trás",
|
package/lang/sv.js
CHANGED
@@ -105,6 +105,9 @@ export default {
|
|
105
105
|
"components.switch.visibleWithPeriod": "Synlig.",
|
106
106
|
"components.switch.hidden": "Dold",
|
107
107
|
"components.switch.conditions": "Villkoren måste uppfyllas",
|
108
|
+
"components.table-col-sort-button.addSortOrder": "Select to add sort order",
|
109
|
+
"components.table-col-sort-button.changeSortOrder": "Select to change sort order",
|
110
|
+
"components.table-col-sort-button.title": "{sourceType, select, dates {{direction, select, desc {Sorted new to old} other {Sorted old to new}}} numbers {{direction, select, desc {Sorted high to low} other {Sorted low to high}}} words {{direction, select, desc {Sorted Z to A} other {Sorted A to Z}}} other {{direction, select, desc {Sorted descending} other {Sorted ascending}}}}",
|
108
111
|
"components.table-controls.label": "Åtgärder för tabell",
|
109
112
|
"components.tabs.next": "Bläddra framåt",
|
110
113
|
"components.tabs.previous": "Bläddra bakåt",
|
package/lang/tr.js
CHANGED
@@ -105,6 +105,9 @@ export default {
|
|
105
105
|
"components.switch.visibleWithPeriod": "Görünür.",
|
106
106
|
"components.switch.hidden": "Gizli",
|
107
107
|
"components.switch.conditions": "Koşullar karşılanmalıdır",
|
108
|
+
"components.table-col-sort-button.addSortOrder": "Select to add sort order",
|
109
|
+
"components.table-col-sort-button.changeSortOrder": "Select to change sort order",
|
110
|
+
"components.table-col-sort-button.title": "{sourceType, select, dates {{direction, select, desc {Sorted new to old} other {Sorted old to new}}} numbers {{direction, select, desc {Sorted high to low} other {Sorted low to high}}} words {{direction, select, desc {Sorted Z to A} other {Sorted A to Z}}} other {{direction, select, desc {Sorted descending} other {Sorted ascending}}}}",
|
108
111
|
"components.table-controls.label": "Tablo için eylemler",
|
109
112
|
"components.tabs.next": "İleri Kaydır",
|
110
113
|
"components.tabs.previous": "Geri Kaydır",
|
package/lang/zh-cn.js
CHANGED
@@ -105,6 +105,9 @@ export default {
|
|
105
105
|
"components.switch.visibleWithPeriod": "可见。",
|
106
106
|
"components.switch.hidden": "隐藏",
|
107
107
|
"components.switch.conditions": "必须符合条件",
|
108
|
+
"components.table-col-sort-button.addSortOrder": "Select to add sort order",
|
109
|
+
"components.table-col-sort-button.changeSortOrder": "Select to change sort order",
|
110
|
+
"components.table-col-sort-button.title": "{sourceType, select, dates {{direction, select, desc {Sorted new to old} other {Sorted old to new}}} numbers {{direction, select, desc {Sorted high to low} other {Sorted low to high}}} words {{direction, select, desc {Sorted Z to A} other {Sorted A to Z}}} other {{direction, select, desc {Sorted descending} other {Sorted ascending}}}}",
|
108
111
|
"components.table-controls.label": "对表格的操作",
|
109
112
|
"components.tabs.next": "向前滚动",
|
110
113
|
"components.tabs.previous": "向后滚动",
|
package/lang/zh-tw.js
CHANGED
@@ -105,6 +105,9 @@ export default {
|
|
105
105
|
"components.switch.visibleWithPeriod": "可見。",
|
106
106
|
"components.switch.hidden": "隱藏",
|
107
107
|
"components.switch.conditions": "必須符合條件",
|
108
|
+
"components.table-col-sort-button.addSortOrder": "Select to add sort order",
|
109
|
+
"components.table-col-sort-button.changeSortOrder": "Select to change sort order",
|
110
|
+
"components.table-col-sort-button.title": "{sourceType, select, dates {{direction, select, desc {Sorted new to old} other {Sorted old to new}}} numbers {{direction, select, desc {Sorted high to low} other {Sorted low to high}}} words {{direction, select, desc {Sorted Z to A} other {Sorted A to Z}}} other {{direction, select, desc {Sorted descending} other {Sorted ascending}}}}",
|
108
111
|
"components.table-controls.label": "表格動作",
|
109
112
|
"components.tabs.next": "向前捲動",
|
110
113
|
"components.tabs.previous": "向後捲動",
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@brightspace-ui/core",
|
3
|
-
"version": "3.1
|
3
|
+
"version": "3.2.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",
|