@brightspace-ui/core 3.105.0 → 3.106.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.
@@ -241,7 +241,7 @@ Daylight buttons rely on standard button semantics to ensure a smooth experience
241
241
  * If the button's context is implied by visual layout, then `description` can be used to add missing context
242
242
  * Example: if multiple page sections have an Edit button relying on visual layout to indicate which section it edits, there could be extra information in the `description` to help differentiate the Edit buttons for non-sighted users
243
243
 
244
- * If expanding other content in a dropdown, use the [Dropdown](../../components/dropdown) component; if building custom expand/collapse behaviour, be sure to use [`aria-expanded`](https://www.w3.org/TR/wai-aria/states_and_properties#aria-expanded) and [`aria-haspopup`](https://www.w3.org/TR/wai-aria/states_and_properties#aria-haspopup) attributes in accordance with best practices.
244
+ * If expanding other content in a dropdown, use the [Dropdown](../../components/dropdown) component; if building custom expand/collapse behaviour, be sure to use [`expanded`](https://www.w3.org/TR/wai-aria/states_and_properties#aria-expanded) and [`aria-haspopup`](https://www.w3.org/TR/wai-aria/states_and_properties#aria-haspopup) attributes in accordance with best practices.
245
245
 
246
246
  * Disabled buttons are normally not focusable as per web standards, but if the disabled state needs explaining you can use `disabled-tooltip` to provide an explanation that appears in a [tooltip](../../components/tooltip) via [aria-describedby](https://www.w3.org/TR/wai-aria/states_and_properties#aria-describedby)
247
247
 
@@ -172,7 +172,7 @@ class ButtonIcon extends PropertyRequiredMixin(ThemeMixin(ButtonMixin(VisibleOnA
172
172
  <button
173
173
  aria-describedby="${ifDefined(this.description ? this._describedById : undefined)}"
174
174
  aria-disabled="${ifDefined(this.disabled && this.disabledTooltip ? 'true' : undefined)}"
175
- aria-expanded="${ifDefined(this.ariaExpanded)}"
175
+ aria-expanded="${ifDefined(this.expanded)}"
176
176
  aria-haspopup="${ifDefined(this.ariaHaspopup)}"
177
177
  aria-label="${this.ariaLabel ? this.ariaLabel : ifDefined(this.text)}"
178
178
  ?autofocus="${this.autofocus}"
@@ -21,6 +21,11 @@ export const ButtonMixin = superclass => class extends FocusMixin(superclass) {
21
21
  */
22
22
  // eslint-disable-next-line lit/no-native-attributes
23
23
  autofocus: { type: Boolean, reflect: true },
24
+ /**
25
+ * Wether the controlled element is expanded. Replaces 'aria-expanded'
26
+ * @type {'true' | 'false'}
27
+ */
28
+ expanded: { type: String, reflect: true, attribute: 'expanded' },
24
29
  /**
25
30
  * Disables the button
26
31
  * @type {boolean}
@@ -102,6 +107,10 @@ export const ButtonMixin = superclass => class extends FocusMixin(superclass) {
102
107
  return 'button';
103
108
  }
104
109
 
110
+ get isButtonMixin() {
111
+ return true;
112
+ }
113
+
105
114
  connectedCallback() {
106
115
  super.connectedCallback();
107
116
  this.addEventListener('click', this._handleClick, true);
@@ -112,6 +121,13 @@ export const ButtonMixin = superclass => class extends FocusMixin(superclass) {
112
121
  this.removeEventListener('click', this._handleClick, true);
113
122
  }
114
123
 
124
+ willUpdate(changedProperties) {
125
+ super.willUpdate(changedProperties);
126
+ if (changedProperties.has('ariaExpanded') && this.ariaExpanded !== undefined) {
127
+ this.expanded = this.ariaExpanded;
128
+ }
129
+ }
130
+
115
131
  /** @internal */
116
132
  _getType() {
117
133
  if (this.type === 'submit' || this.type === 'reset') {
@@ -204,7 +204,7 @@ class ButtonSubtle extends ButtonMixin(LitElement) {
204
204
  <button
205
205
  aria-describedby="${ifDefined(this.description ? this._describedById : undefined)}"
206
206
  aria-disabled="${ifDefined(this.disabled && this.disabledTooltip ? 'true' : undefined)}"
207
- aria-expanded="${ifDefined(this.ariaExpanded)}"
207
+ aria-expanded="${ifDefined(this.expanded)}"
208
208
  aria-haspopup="${ifDefined(this.ariaHaspopup)}"
209
209
  aria-label="${ifDefined(this.ariaLabel)}"
210
210
  ?autofocus="${this.autofocus}"
@@ -99,7 +99,7 @@ class Button extends ButtonMixin(LitElement) {
99
99
  <button
100
100
  aria-describedby="${ifDefined(this.description ? this._describedById : undefined)}"
101
101
  aria-disabled="${ifDefined(this.disabled && this.disabledTooltip ? 'true' : undefined)}"
102
- aria-expanded="${ifDefined(this.ariaExpanded)}"
102
+ aria-expanded="${ifDefined(this.expanded)}"
103
103
  aria-haspopup="${ifDefined(this.ariaHaspopup)}"
104
104
  aria-label="${ifDefined(this.ariaLabel)}"
105
105
  ?autofocus="${this.autofocus}"
@@ -113,13 +113,8 @@ export const DropdownOpenerMixin = superclass => class extends superclass {
113
113
 
114
114
  this.addEventListener('d2l-dropdown-open', this.__onOpened);
115
115
  this.addEventListener('d2l-dropdown-close', this.__onClosed);
116
-
117
- const opener = this.getOpenerElement();
118
116
  const content = this.__getContentElement();
119
- if (!opener) {
120
- return;
121
- }
122
- opener.setAttribute('aria-expanded', (content && content.opened || false).toString());
117
+ this._setOpenerElementAttribute(content?.opened || false);
123
118
  }
124
119
 
125
120
  updated(changedProperties) {
@@ -201,12 +196,7 @@ export const DropdownOpenerMixin = superclass => class extends superclass {
201
196
  __onClosed() {
202
197
  intersectionObserver.unobserve(this);
203
198
 
204
- const opener = this.getOpenerElement();
205
- if (!opener) {
206
- return;
207
- }
208
- opener.setAttribute('aria-expanded', 'false');
209
- opener.removeAttribute('active');
199
+ if (!this._setOpenerElementAttribute(false, true)) return;
210
200
  this.dropdownOpened = false;
211
201
  this._isOpenedViaClick = false;
212
202
  }
@@ -273,12 +263,7 @@ export const DropdownOpenerMixin = superclass => class extends superclass {
273
263
  }
274
264
 
275
265
  __onOpened() {
276
- const opener = this.getOpenerElement();
277
- if (!opener) {
278
- return;
279
- }
280
- opener.setAttribute('aria-expanded', 'true');
281
- opener.setAttribute('active', 'true');
266
+ if (!this._setOpenerElementAttribute(true, true)) return;
282
267
  this._isFading = false;
283
268
 
284
269
  intersectionObserver.observe(this);
@@ -345,4 +330,16 @@ export const DropdownOpenerMixin = superclass => class extends superclass {
345
330
  this.closeDropdown();
346
331
  }
347
332
  }
333
+
334
+ _setOpenerElementAttribute(val, setActive = false) {
335
+ const opener = this.getOpenerElement();
336
+ if (!opener) return false;
337
+ const attribute = opener.isButtonMixin ? 'expanded' : 'aria-expanded';
338
+ opener.setAttribute(attribute, val.toString());
339
+ if (setActive) {
340
+ if (val) opener.setAttribute('active', 'true');
341
+ else opener.removeAttribute('active');
342
+ }
343
+ return true;
344
+ }
348
345
  };
@@ -14,7 +14,7 @@ The `d2l-expand-collapse-content` element can be used to create expandable and c
14
14
  button.addEventListener('click', () => {
15
15
  const section = document.querySelector('d2l-expand-collapse-content');
16
16
  section.expanded = !section.expanded;
17
- button.setAttribute('aria-expanded', section.expanded ? 'true' : 'false');
17
+ button.setAttribute('expanded', section.expanded ? 'true' : 'false');
18
18
  });
19
19
  </script>
20
20
  <d2l-button primary>Toggle</d2l-button>
@@ -43,6 +43,6 @@ To make your usage of `d2l-expand-collapse-content` accessible, it should follow
43
43
  To achieve this, the control that toggles the expanded state should:
44
44
  - Use the [`d2l-button`](../button) or use an element with the [`button`](https://w3c.github.io/aria/#button) role
45
45
  - Toggle between states when using the `Enter` and `Space` buttons and retain focus upon toggle
46
- - Have the [`aria-expanded`](https://www.w3.org/TR/wai-aria/#aria-expanded) attribute set to `'true'` or `'false'` depending on expansion state so that screen reader users will know what state it's in
46
+ - Have the [`aria-expanded`](https://www.w3.org/TR/wai-aria/#aria-expanded)(`expanded` on controls using `ButtonMixin` like core [button components](../../components/button)) attribute set to `'true'` or `'false'` depending on expansion state so that screen reader users will know what state it's in
47
47
  - Be adjacent to the expanded/collapsed content
48
48
 
@@ -43,7 +43,7 @@
43
43
  button.addEventListener('click', () => {
44
44
  const section = document.querySelector('d2l-expand-collapse-content');
45
45
  section.expanded = !section.expanded;
46
- button.setAttribute('aria-expanded', section.expanded ? 'true' : 'false');
46
+ button.setAttribute('expanded', section.expanded ? 'true' : 'false');
47
47
  });
48
48
  </script>
49
49
  </template>
@@ -71,7 +71,7 @@ class FormErrorSummary extends LocalizeCoreElement(RtlMixin(LitElement)) {
71
71
  <div class="d2l-form-error-summary-header" @click=${this._toggleExpandCollapse}>
72
72
  <div class="d2l-form-error-summary-text">${this.localize('components.form-error-summary.errorSummary', { count: this.errors.length })}</div>
73
73
  <d2l-button-icon
74
- aria-expanded=${this._expanded ? 'true' : 'false'}
74
+ expanded=${this._expanded ? 'true' : 'false'}
75
75
  icon=${this._expanded ? 'tier1:arrow-collapse-small' : 'tier1:arrow-expand-small' }
76
76
  text="${this.localize('components.form-error-summary.text')}"
77
77
  @click=${this._toggleExpandCollapse}>
@@ -131,7 +131,7 @@ export const ListItemExpandCollapseMixin = superclass => class extends SkeletonM
131
131
  <d2l-button-icon
132
132
  class="d2l-skeletize"
133
133
  icon="${this.expanded ? 'tier1:arrow-collapse-small' : 'tier1:arrow-expand-small' }"
134
- aria-expanded="${this.expanded ? 'true' : 'false'}"
134
+ expanded="${this.expanded ? 'true' : 'false'}"
135
135
  text="${this.label}"
136
136
  @click="${this._toggleExpandCollapse}"></d2l-button-icon>`;
137
137
  }
@@ -152,7 +152,7 @@ class MoreLess extends LocalizeCoreElement(LitElement) {
152
152
  class="d2l-more-less-toggle"
153
153
  icon="${this.__computeIcon()}"
154
154
  aria-controls="${this.__contentId}"
155
- aria-expanded="${this.__computeAriaExpanded()}"
155
+ expanded="${this.__computeAriaExpanded()}"
156
156
  @click="${this.__toggleOnClick}"
157
157
  text="${this.__computeText()}"
158
158
  h-align="${ifDefined(this.hAlign)}">
@@ -426,6 +426,11 @@
426
426
  "type": "boolean",
427
427
  "default": "false"
428
428
  },
429
+ {
430
+ "name": "expanded",
431
+ "description": "Wether the controlled element is expanded. Replaces 'aria-expanded'",
432
+ "type": "'true' | 'false'"
433
+ },
429
434
  {
430
435
  "name": "disabled-tooltip",
431
436
  "description": "Tooltip text when disabled",
@@ -470,12 +475,22 @@
470
475
  "type": "boolean",
471
476
  "default": "false"
472
477
  },
478
+ {
479
+ "name": "expanded",
480
+ "attribute": "expanded",
481
+ "description": "Wether the controlled element is expanded. Replaces 'aria-expanded'",
482
+ "type": "'true' | 'false'"
483
+ },
473
484
  {
474
485
  "name": "disabledTooltip",
475
486
  "attribute": "disabled-tooltip",
476
487
  "description": "Tooltip text when disabled",
477
488
  "type": "string"
478
489
  },
490
+ {
491
+ "name": "isButtonMixin",
492
+ "type": "boolean"
493
+ },
479
494
  {
480
495
  "name": "disabled",
481
496
  "attribute": "disabled",
@@ -641,6 +656,11 @@
641
656
  "type": "boolean",
642
657
  "default": "false"
643
658
  },
659
+ {
660
+ "name": "expanded",
661
+ "description": "Wether the controlled element is expanded. Replaces 'aria-expanded'",
662
+ "type": "'true' | 'false'"
663
+ },
644
664
  {
645
665
  "name": "disabled-tooltip",
646
666
  "description": "Tooltip text when disabled",
@@ -692,12 +712,22 @@
692
712
  "type": "boolean",
693
713
  "default": "false"
694
714
  },
715
+ {
716
+ "name": "expanded",
717
+ "attribute": "expanded",
718
+ "description": "Wether the controlled element is expanded. Replaces 'aria-expanded'",
719
+ "type": "'true' | 'false'"
720
+ },
695
721
  {
696
722
  "name": "disabledTooltip",
697
723
  "attribute": "disabled-tooltip",
698
724
  "description": "Tooltip text when disabled",
699
725
  "type": "string"
700
726
  },
727
+ {
728
+ "name": "isButtonMixin",
729
+ "type": "boolean"
730
+ },
701
731
  {
702
732
  "name": "disabled",
703
733
  "attribute": "disabled",
@@ -765,6 +795,11 @@
765
795
  "type": "boolean",
766
796
  "default": "false"
767
797
  },
798
+ {
799
+ "name": "expanded",
800
+ "description": "Wether the controlled element is expanded. Replaces 'aria-expanded'",
801
+ "type": "'true' | 'false'"
802
+ },
768
803
  {
769
804
  "name": "disabled-tooltip",
770
805
  "description": "Tooltip text when disabled",
@@ -791,12 +826,22 @@
791
826
  "type": "boolean",
792
827
  "default": "false"
793
828
  },
829
+ {
830
+ "name": "expanded",
831
+ "attribute": "expanded",
832
+ "description": "Wether the controlled element is expanded. Replaces 'aria-expanded'",
833
+ "type": "'true' | 'false'"
834
+ },
794
835
  {
795
836
  "name": "disabledTooltip",
796
837
  "attribute": "disabled-tooltip",
797
838
  "description": "Tooltip text when disabled",
798
839
  "type": "string"
799
840
  },
841
+ {
842
+ "name": "isButtonMixin",
843
+ "type": "boolean"
844
+ },
800
845
  {
801
846
  "name": "disabled",
802
847
  "attribute": "disabled",
@@ -11376,6 +11421,11 @@
11376
11421
  "description": "Id of the `SelectionMixin` component this component wants to observe (if not located within that component)",
11377
11422
  "type": "string"
11378
11423
  },
11424
+ {
11425
+ "name": "expanded",
11426
+ "description": "Wether the controlled element is expanded. Replaces 'aria-expanded'",
11427
+ "type": "'true' | 'false'"
11428
+ },
11379
11429
  {
11380
11430
  "name": "disabled-tooltip",
11381
11431
  "description": "Tooltip text when disabled",
@@ -11424,12 +11474,22 @@
11424
11474
  {
11425
11475
  "name": "selectionInfo"
11426
11476
  },
11477
+ {
11478
+ "name": "expanded",
11479
+ "attribute": "expanded",
11480
+ "description": "Wether the controlled element is expanded. Replaces 'aria-expanded'",
11481
+ "type": "'true' | 'false'"
11482
+ },
11427
11483
  {
11428
11484
  "name": "disabledTooltip",
11429
11485
  "attribute": "disabled-tooltip",
11430
11486
  "description": "Tooltip text when disabled",
11431
11487
  "type": "string"
11432
11488
  },
11489
+ {
11490
+ "name": "isButtonMixin",
11491
+ "type": "boolean"
11492
+ },
11433
11493
  {
11434
11494
  "name": "disabled",
11435
11495
  "attribute": "disabled",
package/lang/mi.js ADDED
@@ -0,0 +1,148 @@
1
+ export default {
2
+ "components.alert.close": "Kati Matohi",
3
+ "components.breadcrumbs.breadcrumb": "Pānui",
4
+ "components.button-add.addItem": "Tāpiri Tūemi",
5
+ "components.calendar.hasEvents": "He takahanga anō.",
6
+ "components.calendar.notSelected": "Kāore i tīpakona.",
7
+ "components.calendar.selected": "I tīpakona.",
8
+ "components.calendar.show": "Whakaatu {month}",
9
+ "components.count-badge.plus": "{number}+",
10
+ "components.dialog.close": "Katia tēnei kōrero",
11
+ "components.dialog.critical": "Takenui!",
12
+ "components.dropdown.close": "Katia",
13
+ "components.filter.activeFilters": "Ngā Tātari Hohe:",
14
+ "components.filter.additionalContentTooltip": "Whakamahia <b>ngā pātuhi pere mauī/matau</b> hei nuku arotahi ki roto i tēnei tūemi rārangi",
15
+ "components.filter.clear": "Mahea",
16
+ "components.filter.clearAll": "Mukua",
17
+ "components.filter.clearAllAnnounce": "Ūkui ana i ngā tātari katoa",
18
+ "components.filter.clearAllAnnounceOverride": "Ūkui ana i ngā tātari katoa mō: {filterText}",
19
+ "components.filter.clearAllDescription": "Ūkuia ngā tātari katoa",
20
+ "components.filter.clearAllDescriptionOverride": "Ūkuia ngā tātari katoa mō: {filterText}",
21
+ "components.filter.clearAnnounce": "Ūkui ana i ngā tātari mō: {filterName}",
22
+ "components.filter.clearDescription": "Ūkui tātari mō: {filterName}",
23
+ "components.filter.loading": "Uta tātari ana",
24
+ "components.filter.filterCountDescription": "{number, plural, =0 {Kāore he tātari i hoatu.} one {{number} kua hoatu te tātari.} other {{number} Kua hoatu ngā tātari.}}",
25
+ "components.filter.filters": "Ngā Tātari",
26
+ "components.filter.noFilters": "Kāore he tātari wātea",
27
+ "components.filter.searchResults": "{number, plural, =0 {Kāore he hua rapu} one {{number} hua rapu} other {{number} Ngā Huanga Rapu}}",
28
+ "components.filter.selectedFirstListLabel": "{headerText}. Ka puta tuatahi ngā tātari kua tīpakohia.",
29
+ "components.filter.singleDimensionDescription": "Tātari mā: {filterName}",
30
+ "components.filter-dimension-set-date-text-value.textHours": "{num, plural, one {Tērā haora} other {Whakamutunga {num} hāora}}",
31
+ "components.filter-dimension-set-date-text-value.textDays": "{num, plural, =0 {Āianei} one {Whakamutunga {num} Te rā} other {Whakamutunga {num} ngā rā}}",
32
+ "components.filter-dimension-set-date-text-value.textMonths": "Ngā marama {num} whakamutunga",
33
+ "components.filter-dimension-set-date-time-range-value.label": "{text}, whakaroha hei kōwhiri i ngā rā",
34
+ "components.filter-dimension-set-date-time-range-value.valueTextRange": "{startValue} ki {endValue}",
35
+ "components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "After {startValue}",
36
+ "components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "Before {endValue}",
37
+ "components.filter-dimension-set-date-time-range-value.text": "Awhe rā ritenga",
38
+ "components.form-element.defaultError": "{label} is invalid",
39
+ "components.form-element.defaultFieldLabel": "Āpure",
40
+ "components.form-element.input.email.typeMismatch": "Kāore te īmēra i te tika",
41
+ "components.form-element.input.number.rangeError": "{minExclusive, select, true {{maxExclusive, select, true {Number me nui ake i te {min} me iti iho i te {max}.} other {Number me nui ake i te {min} me iti iho rānei i te ōrite ki {max}.}}} other {{maxExclusive, select, true {Number me nui ake, ōrite rānei ki {min} and less than {max}.} other {Number me nui ake, ōrite rānei ki {min} me iti iho, ōrite rānei ki {max}.}}}}",
42
+ "components.form-element.input.number.rangeOverflow": "{maxExclusive, select, true {Number me iti iho i te {max}.} other {Number me iti iho, kia ōrite rānei ki {max}.}}",
43
+ "components.form-element.input.number.rangeUnderflow": "{minExclusive, select, true {Number must me nui ake i te {min}.} other {Number me nui ake, ōrite rānei ki {min}.}}",
44
+ "components.form-element.input.text.tooShort": "Me noho te {label} kia {minlength} ngā pūāhua",
45
+ "components.form-element.input.url.typeMismatch": "Kāore te URL i te tika",
46
+ "components.form-element.valueMissing": "{label} is required",
47
+ "components.form-error-summary.errorSummary": "{count, plural, one {Tērā {count} hapa i kitea i te mōhiohio i tukuna e koe} other {I te {count} ngā hapa i kitea i te mōhiohio i tukuna e koe}}",
48
+ "components.form-error-summary.text": "Takahuri taipitopito hapa",
49
+ "components.input-color.backgroundColor": "Tae papamuri",
50
+ "components.input-color.foregroundColor": "Tae Papamua",
51
+ "components.input-color.none": "Kore",
52
+ "components.input-date-range.endDate": "Rā mutunga",
53
+ "components.input-date-range.errorBadInput": "Me noho te {startLabel} i mua i te {endLabel}",
54
+ "components.input-date-range.interactive-label": "Tāurunga awhe rā",
55
+ "components.input-date-range.startDate": "Rā tīmata",
56
+ "components.input-date-time-range-to.to": "ki",
57
+ "components.input-date-time-range.endDate": "Rā mutunga",
58
+ "components.input-date-time-range.errorBadInput": "Me noho te {startLabel} i mua i te {endLabel}",
59
+ "components.input-date-time-range.startDate": "Rā tīmata",
60
+ "components.input-date-time.date": "Rā",
61
+ "components.input-date-time.errorMaxDateOnly": "Me noho te rā i mua, i te {maxDate} rānei",
62
+ "components.input-date-time.errorMinDateOnly": "Me kā te rā, i muri rānei i te {minDate}",
63
+ "components.input-date-time.errorOutsideRange": "Me noho te rā ki waenga i te {minDate} me te {maxDate}",
64
+ "components.input-date-time.time": "Te wā",
65
+ "components.input-date-time-range.interactive-label": "Tāurunga awhe rā me te wā",
66
+ "components.input-date.clear": "Mahea",
67
+ "components.input-date.errorMaxDateOnly": "Me noho te rā i mua, i te {maxDate} rānei",
68
+ "components.input-date.errorMinDateOnly": "Me kā te rā, i muri rānei i te {minDate}",
69
+ "components.input-date.errorOutsideRange": "Me noho te rā ki waenga i te {minDate} me te {maxDate}",
70
+ "components.input-date.openInstructions": "Whakamahia te hōputu rā {format}. Pere whakararo, pēhi rānei i te tāuru hei uru ki te pae-iti.",
71
+ "components.input-date.now": "Ināianei",
72
+ "components.input-date.revert": "{label} reverted to previous value.",
73
+ "components.input-date.today": "Āianei",
74
+ "components.input-date.useDateFormat": "Use date format {format}.",
75
+ "components.input-number.hintInteger": "Ka whakaae anake tēnei āpure ki ngā uara tau tōpū (kāore he ira)",
76
+ "components.input-number.hintDecimalDuplicate": "He ira kē kei tēnei tau",
77
+ "components.input-number.hintDecimalIncorrectComma": "Hei tāpiri i tētahi ira whakamahi i te piko \",\" pūāhua",
78
+ "components.input-number.hintDecimalIncorrectPeriod": "Hei tāpiri i tētahi ira whakamahi i te wā \".\" pūāhua",
79
+ "components.input-search.clear": "Whakawātea rapu",
80
+ "components.input-search.defaultPlaceholder": "Rapua...",
81
+ "components.input-search.search": "Rapua",
82
+ "components.input-time-range.endTime": "Wā Whakamutu",
83
+ "components.input-time-range.errorBadInput": "Me noho te {startLabel} i mua i te {endLabel}",
84
+ "components.input-time-range.startTime": "Wā tīmata",
85
+ "components.interactive.instructions": "Pēhi Tāuru hei tauwhiti, Escape hei puta atu",
86
+ "components.link.open-in-new-window": "Whakatuwhera ai ki tētahi matapihi hōu.",
87
+ "components.list.keyboard": "Whakamahia <b>ngā pātuhi pere</b> hei nuku arotahi ki roto i tēnei rārangi, <b>whārangi whakarunga/iho</b> rānei hei neke whakarunga, whakararo rānei mā te 5",
88
+ "components.list-controls.label": "Ngā mahinga mō te rārangi",
89
+ "components.list-item.addItem": "Tāpiri Tūemi",
90
+ "components.list-item-drag-handle.default": "Raupapa anō i te hohenga tūemi mō {name}",
91
+ "components.list-item-drag-handle.keyboard": "Raupapa anō i te tūemi, te tūnga o nāianei {currentPosition} mai i te {size}. Hei nuku i tēnei tūemi, pēhia ngā pere whakarunga, whakararo rānei.",
92
+ "components.list-item-drag-handle-tooltip.title": "Ngā Mana Papapātuhi mō te Raupapa Anō:",
93
+ "components.list-item-drag-handle-tooltip.enter-key": "Tāuru",
94
+ "components.list-item-drag-handle-tooltip.enter-desc": "Takahuri aratau raupapa papapātuhi.",
95
+ "components.list-item-drag-handle-tooltip.up-down-key": "Runga/Raro",
96
+ "components.list-item-drag-handle-tooltip.up-down-desc": "Nukua te tūemi whakarunga, whakararo rānei i te rārangi.",
97
+ "components.list-item-drag-handle-tooltip.left-right-key": "Mauī/Matau",
98
+ "components.list-item-drag-handle-tooltip.left-right-desc": "Hurihia te taumata whakahangahanga.",
99
+ "components.menu-item-return.return": "Hoki ki te tahua tōmua.",
100
+ "components.menu-item-return.returnCurrentlyShowing": "Hoki ki te tahua tōmua. Kei te tiro koe i {menuTitle}.",
101
+ "components.meter-mixin.commaSeperatedAria": "{term1}, {term2}",
102
+ "components.meter-mixin.fraction": "{x}∕{y}",
103
+ "components.meter-mixin.fractionAria": "{x} mai i {y}",
104
+ "components.meter-mixin.progressIndicator": "Tūtohu Kaunuku",
105
+ "components.more-less.less": "iti iho",
106
+ "components.more-less.more": "ētahi atu",
107
+ "components.object-property-list.item-placeholder-text": "Tūemi Puriwāhi",
108
+ "components.overflow-group.moreActions": "Ētahi atu Hohenga",
109
+ "components.pager-load-more.action": "Utaina Anō",
110
+ "components.pager-load-more.action-with-page-size": "Utaina {count} Ētahi atu",
111
+ "components.pageable.info": "{count, plural, one {{countFormatted} Tūemi} other {{countFormatted} Ngā tūemi}}",
112
+ "components.pageable.info-with-total": "{totalCount, plural, one {{countFormatted} o {totalCountFormatted} Tūemi} other {{countFormatted} o {totalCountFormatted} Ngā tūemi}}",
113
+ "components.pager-load-more.status-loading": "Uta ana i ētahi atu tūemi",
114
+ "components.selection.action-max-hint": "{count, plural, one {Disabled when more than {countFormatted} item is selected} other {Disabled when more than {countFormatted} items are selected}}",
115
+ "components.selection.action-required-hint": "Select an item to perform this action",
116
+ "components.selection.select-all": "Tīpako Katoa",
117
+ "components.selection.select-all-items": "Tīpakohia Ngā Tūemi {count} Katoa",
118
+ "components.selection.selected": "{count} kua tīpakohia",
119
+ "components.selection.selected-plus": "{count}+ kua tīpakohia",
120
+ "components.selection-controls.label": "Ngā mahinga mō te tīpakonga",
121
+ "components.switch.visible": "Ka taea te kite",
122
+ "components.switch.visibleWithPeriod": "Ka taea te kite.",
123
+ "components.switch.hidden": "Hunaia",
124
+ "components.switch.conditions": "Me tutuki ngā here",
125
+ "components.table-col-sort-button.addSortOrder": "Tīpakohia hei tāpiri raupapa kōmaka",
126
+ "components.table-col-sort-button.changeSortOrder": "Tīpakohia hei huri i te raupapa kōmaka",
127
+ "components.table-col-sort-button.title": "{sourceType, select, dates {{direction, select, desc {Kua kōmakatia he mea hōu ki te tawhito} other {Kua kōmakatia te tawhito ki te mea hōu}}} numbers {{direction, select, desc {Kōmaka teitei ki te iti} other {Kua kōmaka iti iho ki te teitei}}} words {{direction, select, desc {I kōmakatia Z ki A} other {I kōmakatia te A ki Z}}} value {Kua kōmakatia {selectedMenuItemText}} other {{direction, select, desc {Kua kōmakatia te auheke} other {Kua kōmakatia te aupiki}}}}",
128
+ "components.table-controls.label": "Ngā mahinga mō te ripanga",
129
+ "components.tabs.next": "Panuku Whakamua",
130
+ "components.tabs.previous": "Panuku Whakamuri",
131
+ "components.tag-list.clear": "Pāwhiritia, pēhia te mokowāmuri, pēhia rānei te pātuhi muku hei tango i te tūemi {value}",
132
+ "components.tag-list.clear-all": "Mukua",
133
+ "components.tag-list.cleared-all": "I tangohia ngā tūemi rārangi tūtohu katoa",
134
+ "components.tag-list.cleared-item": "Kua tangohia te tūemi rārangi tūtohu {value}",
135
+ "components.tag-list.interactive-label": "Rārangi Tūtohu, {count} tūemi",
136
+ "components.tag-list.num-hidden": "+ {count} anō",
137
+ "components.tag-list.role-description": "Rārangi Tūtohu",
138
+ "components.tag-list.show-less": "Whakaaturia mai kia iti iho",
139
+ "components.tag-list.show-more-description": "Tīpakohia hei whakaatu i ngā tūemi rārangi tūtohu hunahuna",
140
+ "components.tag-list-item.role-description": "Tūtohu",
141
+ "components.tag-list-item.tooltip-arrow-keys": "Pātuhi Pere",
142
+ "components.tag-list-item.tooltip-arrow-keys-desc": "Nuku ki waenga i ngā tūtohu",
143
+ "components.tag-list-item.tooltip-delete-key": "Hokimuri/Muku",
144
+ "components.tag-list-item.tooltip-delete-key-desc": "Mukua te tūtohu arotahi",
145
+ "components.tag-list-item.tooltip-title": "Ngā Mana Papapātuhi",
146
+ "templates.primary-secondary.divider": "Kaiwehe paepae tuarua",
147
+ "templates.primary-secondary.secondary-panel": "Pae tuarua"
148
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brightspace-ui/core",
3
- "version": "3.105.0",
3
+ "version": "3.106.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",