@brightspace-ui/core 3.1.2 → 3.2.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.
@@ -48,6 +48,10 @@ input.addEventListener('change', (e) => {
48
48
  console.log(input.value);
49
49
  });
50
50
  ```
51
+
52
+ ### Slots
53
+
54
+ * `inline-help`: Help text that will appear below the input. Use this only when other helpful cues are not sufficient, such as a carefully-worded label.
51
55
  <!-- docs: end hidden content -->
52
56
 
53
57
  ### Accessibility Properties
@@ -81,6 +81,7 @@ const SWATCH_TRANSPARENT = `<svg xmlns="http://www.w3.org/2000/svg" width="24" h
81
81
 
82
82
  /**
83
83
  * This component allows for inputting a HEX color value.
84
+ * @slot inline-help - Help text that will appear below the input. Use this only when other helpful cues are not sufficient, such as a carefully-worded label.
84
85
  * @fires change - Dispatched when an alteration to the value is committed by the user.
85
86
  */
86
87
  class InputColor extends InputInlineHelpMixin(PropertyRequiredMixin(FocusMixin(FormElementMixin(LocalizeCoreElement(LitElement))))) {
@@ -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
- ?desc="${this._sortDesc}">
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
- return html`<button type="button"><slot></slot>${iconView}</button>`;
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
  }
@@ -5085,6 +5085,12 @@
5085
5085
  "name": "change",
5086
5086
  "description": "Dispatched when an alteration to the value is committed by the user."
5087
5087
  }
5088
+ ],
5089
+ "slots": [
5090
+ {
5091
+ "name": "inline-help",
5092
+ "description": "Help text that will appear below the input. Use this only when other helpful cues are not sufficient, such as a carefully-worded label."
5093
+ }
5088
5094
  ]
5089
5095
  },
5090
5096
  {
@@ -12019,20 +12025,33 @@
12019
12025
  "path": "./components/table/table-col-sort-button.js",
12020
12026
  "description": "Button for sorting a table column in ascending/descending order.",
12021
12027
  "attributes": [
12028
+ {
12029
+ "name": "desc",
12030
+ "description": "Whether sort direction is descending",
12031
+ "type": "boolean",
12032
+ "default": "false"
12033
+ },
12022
12034
  {
12023
12035
  "name": "nosort",
12024
12036
  "description": "Column is not currently sorted. Hides the ascending/descending sort icon.",
12025
12037
  "type": "boolean",
12026
12038
  "default": "false"
12027
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": [
12028
12048
  {
12029
12049
  "name": "desc",
12050
+ "attribute": "desc",
12030
12051
  "description": "Whether sort direction is descending",
12031
12052
  "type": "boolean",
12032
12053
  "default": "false"
12033
- }
12034
- ],
12035
- "properties": [
12054
+ },
12036
12055
  {
12037
12056
  "name": "nosort",
12038
12057
  "attribute": "nosort",
@@ -12041,11 +12060,15 @@
12041
12060
  "default": "false"
12042
12061
  },
12043
12062
  {
12044
- "name": "desc",
12045
- "attribute": "desc",
12046
- "description": "Whether sort direction is descending",
12047
- "type": "boolean",
12048
- "default": "false"
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()\""
12049
12072
  }
12050
12073
  ],
12051
12074
  "slots": [
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.2",
3
+ "version": "3.2.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",