@brightspace-ui/core 3.124.2 → 3.125.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/list/README.md +105 -1
- package/components/list/list-item-nav-button-mixin.js +1 -1
- package/custom-elements.json +2 -2
- package/lang/ar.js +1 -1
- package/lang/cy.js +1 -1
- package/lang/da.js +1 -1
- package/lang/de.js +1 -1
- package/lang/es-es.js +1 -1
- package/lang/es.js +1 -1
- package/lang/fr-fr.js +1 -1
- package/lang/fr.js +1 -1
- package/lang/haw.js +1 -1
- package/lang/hi.js +1 -1
- package/lang/ja.js +1 -1
- package/lang/ko.js +1 -1
- package/lang/mi.js +10 -10
- package/lang/nl.js +1 -1
- package/lang/pt.js +15 -15
- package/lang/sv.js +1 -1
- package/lang/tr.js +1 -1
- package/lang/zh-cn.js +1 -1
- package/lang/zh-tw.js +1 -1
- package/package.json +1 -1
@@ -66,6 +66,16 @@ A list displays a collection of objects of the same type. A list is primarily us
|
|
66
66
|
|
67
67
|
## Accessibility
|
68
68
|
|
69
|
+
The list components are fairly complex and aim to be usable by all our users. Interesting details of note includes:
|
70
|
+
|
71
|
+
* When the `grid` attribute is used on the `d2l-list` component, it enables the list to follow the [Grid Pattern](https://www.w3.org/WAI/ARIA/apg/patterns/grid/). More details on this are [below](#aria-layout-grid).
|
72
|
+
|
73
|
+
* When using the `d2l-list-item-nav-button` component and/or mixin, usage of the `current` attribute adds the `aria-current` attribute to "page" for the `current` item and "location" for any parent and ancestors of the item. The components work together to keep these attributes up-to-date on subsequent selection.
|
74
|
+
|
75
|
+
* Usage of the new `current` attribute over the existing `selected` attribute corresponds to `aria-current` and also leaves open the possibility of using both `current` and selection behavior together.
|
76
|
+
|
77
|
+
### ARIA Layout Grid
|
78
|
+
|
69
79
|
If your list items are selectable or have secondary action buttons, use the ARIA layout grid on `d2l-list` to make it easy to navigate between items. This makes the entire list a single tab stop, and then the user can use the arrow keys to navigate between various list rows and actions in the list item.
|
70
80
|
|
71
81
|
**Benefits of the ARIA layout grid:**
|
@@ -599,6 +609,84 @@ The `d2l-list-item-button` provides the same functionality as `d2l-list-item` ex
|
|
599
609
|
- `d2l-list-item-expand-collapse-toggled`: dispatched when the item's expand/collapse toggle is clicked
|
600
610
|
<!-- docs: end hidden content -->
|
601
611
|
|
612
|
+
## Navigational Button List Item [d2l-list-item-nav-button]
|
613
|
+
|
614
|
+
Use a `d2l-list-item-nav-button` if your list serves as a table of contents or is part of a master/details workflow. It provides the same functionality as `d2l-list-item-button` while adding navigation semantics and behaviours. Use the `current` attribute to indicate the currently selected item — see more about this in [Accessibility](#accessibility).
|
615
|
+
|
616
|
+
The example below also includes expand/collapse behavior in order to expand or collapse the items on subsequent clicks.
|
617
|
+
|
618
|
+
<!-- docs: demo code properties name:d2l-list-item-nav-button sandboxTitle:'List Item Nav Button' display:block -->
|
619
|
+
```html
|
620
|
+
<script type="module">
|
621
|
+
import '@brightspace-ui/core/components/list/list.js';
|
622
|
+
import '@brightspace-ui/core/components/list/list-item-nav-button.js';
|
623
|
+
import '@brightspace-ui/core/components/list/list-item-content.js';
|
624
|
+
</script>
|
625
|
+
<script>
|
626
|
+
let currentItem = document.querySelector('d2l-list-item-nav-button[current]');
|
627
|
+
document.addEventListener('d2l-list-item-button-click', (e) => {
|
628
|
+
console.log('d2l-list-item-nav-button: click event');
|
629
|
+
|
630
|
+
if (!e.target.expandable) {
|
631
|
+
currentItem = e.target;
|
632
|
+
return;
|
633
|
+
}
|
634
|
+
|
635
|
+
if (currentItem !== e.target) {
|
636
|
+
e.target.expanded = true;
|
637
|
+
currentItem = e.target;
|
638
|
+
} else {
|
639
|
+
e.target.expanded = !e.target.expanded;
|
640
|
+
}
|
641
|
+
});
|
642
|
+
</script>
|
643
|
+
|
644
|
+
<d2l-list>
|
645
|
+
<d2l-list-item-nav-button key="L1-1" label="Geomorphology and GIS" color="#006fbf" expandable expanded>
|
646
|
+
<d2l-list-item-content>
|
647
|
+
<div>Geomorphology and GIS </div>
|
648
|
+
<div slot="supporting-info">This course explores the geological processes of the Earth's interior and surface. These include volcanism, earthquakes, mountain...</div>
|
649
|
+
</d2l-list-item-content>
|
650
|
+
<d2l-list slot="nested" grid>
|
651
|
+
<d2l-list-item-nav-button key="L2-1" label="Syallabus Confirmation">
|
652
|
+
<d2l-list-item-content>
|
653
|
+
<div><d2l-icon style="margin-right: 0.7rem;" icon="tier2:file-document"></d2l-icon>Syallabus Confirmation</div>
|
654
|
+
<div slot="secondary"><d2l-tooltip-help text="Due: May 2, 2023 at 2 pm">Due: May 2, 2023</d2l-tooltip-help></div>
|
655
|
+
</d2l-list-item-content>
|
656
|
+
</d2l-list-item-nav-button>
|
657
|
+
</d2l-list>
|
658
|
+
</d2l-list-item-nav-button>
|
659
|
+
</d2l-list>
|
660
|
+
```
|
661
|
+
|
662
|
+
<!-- docs: start hidden content -->
|
663
|
+
### Properties
|
664
|
+
|
665
|
+
| Property | Type | Description |
|
666
|
+
|---|---|---|
|
667
|
+
| `button-disabled` | Boolean | Disables the primary action button |
|
668
|
+
| `current` | Boolean | Whether the list item is the current page in a navigation context. At most one list item should have the `current` attribute at any time; this will be managed by the `list` after initial render. |
|
669
|
+
| `draggable` | Boolean | Whether the item is draggable |
|
670
|
+
| `drag-handle-text` | String | The drag-handle label for assistive technology. If implementing drag & drop, you should change this to dynamically announce what the drag-handle is moving for assistive technology in keyboard mode. |
|
671
|
+
| `drop-nested` | Boolean | Whether nested items can be dropped on this item |
|
672
|
+
| `drop-text` | String | Text to drag and drop |
|
673
|
+
| `expandable` | Boolean | Whether or not to show the expand/collapse toggle. |
|
674
|
+
| `expanded` | Boolean | Whether the item is expanded. Requires `expandable` to be set. |
|
675
|
+
| `key` | String | Value to identify item if selectable or draggable |
|
676
|
+
| `label` | String | Explicitly defined label for the element |
|
677
|
+
| `labelled-by` | String | The id of element that provides the label for this element |
|
678
|
+
| `padding-type` | String | List item whitespace (`normal` (default), `none`)|
|
679
|
+
| `selectable` | Boolean | Indicates an input should be rendered for selecting the item |
|
680
|
+
| `selected` | Boolean | Whether the item is selected |
|
681
|
+
| `selection-disabled` | Boolean | Disables selection |
|
682
|
+
| `skeleton` | Boolean | Renders the input as a skeleton loader |
|
683
|
+
|
684
|
+
### Events
|
685
|
+
|
686
|
+
- `d2l-list-item-button-click`: dispatched when the item's primary button action is clicked
|
687
|
+
- `d2l-list-item-expand-collapse-toggled`: dispatched when the item's expand/collapse toggle is clicked
|
688
|
+
<!-- docs: end hidden content -->
|
689
|
+
|
602
690
|
## ListItemMixin
|
603
691
|
|
604
692
|
Want to maintain consistency with `d2l-list-item` but need more modularity? This mixin is for you! This mixin allows you to make a component into a list item without requiring custom styling. All of the properties and functionality from `d2l-list-item` (listed above) will be added to your new component.
|
@@ -607,7 +695,7 @@ Want to maintain consistency with `d2l-list-item` but need more modularity? This
|
|
607
695
|
|
608
696
|
Import
|
609
697
|
```javascript
|
610
|
-
import { ListItemMixin } from '
|
698
|
+
import { ListItemMixin } from '@brightspace-ui/core/components/list/list-item-mixin.js';
|
611
699
|
|
612
700
|
class ListItem extends ListItemMixin(LitElement) {
|
613
701
|
...
|
@@ -636,6 +724,22 @@ Where the parameters correspond to the slots of `d2l-list-item`:
|
|
636
724
|
- actions (TemplateResult): Secondary actions for the list item.
|
637
725
|
- nested (TemplateResult): Optional `d2l-list` for a nested list.
|
638
726
|
|
727
|
+
## ListItemNavButtonMixin
|
728
|
+
|
729
|
+
This mixin allows you to make a component into a navigational list item without requiring custom styling. All of the properties and functionality from `d2l-list-item-nav-button` (listed above) will be added to your new component.
|
730
|
+
|
731
|
+
### How to use
|
732
|
+
|
733
|
+
Import
|
734
|
+
```javascript
|
735
|
+
import { ListItemNavButtonMixin } from '@brightspace-ui/core/components/list/list-item-nav-button-mixin.js';
|
736
|
+
|
737
|
+
class ListItem extends ListItemNavButtonMixin(LitElement) {
|
738
|
+
...
|
739
|
+
```
|
740
|
+
|
741
|
+
The remainder works the same as above in [ListItemMixin](#listitemmixin)
|
742
|
+
|
639
743
|
## List Item Content
|
640
744
|
|
641
745
|
The `d2l-list-item-content` provides additional consistent layout for primary and secondary text in item content. It may be used with or without the `illustration` and `action` slots mentioned above.
|
@@ -7,7 +7,7 @@ export const ListItemNavButtonMixin = superclass => class extends ListItemButton
|
|
7
7
|
static get properties() {
|
8
8
|
return {
|
9
9
|
/**
|
10
|
-
* Whether the list item is the current page in a navigation context
|
10
|
+
* Whether the list item is the current page in a navigation context. At most one list item should have the `current` attribute at any time; this will be managed by the `list` after initial render.
|
11
11
|
* @type {boolean}
|
12
12
|
*/
|
13
13
|
current: { type: Boolean, reflect: true },
|
package/custom-elements.json
CHANGED
@@ -9418,7 +9418,7 @@
|
|
9418
9418
|
"attributes": [
|
9419
9419
|
{
|
9420
9420
|
"name": "current",
|
9421
|
-
"description": "Whether the list item is the current page in a navigation context",
|
9421
|
+
"description": "Whether the list item is the current page in a navigation context. At most one list item should have the `current` attribute at any time; this will be managed by the `list` after initial render.",
|
9422
9422
|
"type": "boolean",
|
9423
9423
|
"default": "false"
|
9424
9424
|
},
|
@@ -9525,7 +9525,7 @@
|
|
9525
9525
|
{
|
9526
9526
|
"name": "current",
|
9527
9527
|
"attribute": "current",
|
9528
|
-
"description": "Whether the list item is the current page in a navigation context",
|
9528
|
+
"description": "Whether the list item is the current page in a navigation context. At most one list item should have the `current` attribute at any time; this will be managed by the `list` after initial render.",
|
9529
9529
|
"type": "boolean",
|
9530
9530
|
"default": "false"
|
9531
9531
|
},
|
package/lang/ar.js
CHANGED
@@ -2,7 +2,7 @@ export default {
|
|
2
2
|
"components.alert.close": "إغلاق التنبيه",
|
3
3
|
"components.breadcrumbs.breadcrumb": "شريط التنقل",
|
4
4
|
"components.button-add.addItem": "إضافة عنصر",
|
5
|
-
"components.button-split.otherOptions": "
|
5
|
+
"components.button-split.otherOptions": "خيارات أخرى",
|
6
6
|
"components.calendar.hasEvents": "يحتوي على أحداث.",
|
7
7
|
"components.calendar.notSelected": "لم يتم التحديد.",
|
8
8
|
"components.calendar.selected": "تم التحديد.",
|
package/lang/cy.js
CHANGED
@@ -2,7 +2,7 @@ export default {
|
|
2
2
|
"components.alert.close": "Cau Hysbysiad",
|
3
3
|
"components.breadcrumbs.breadcrumb": "Briwsionyn Bara",
|
4
4
|
"components.button-add.addItem": "Ychwanegu Eitem",
|
5
|
-
"components.button-split.otherOptions": "
|
5
|
+
"components.button-split.otherOptions": "Opsiynau Eraill",
|
6
6
|
"components.calendar.hasEvents": "Yn Cynnwys Digwyddiadau.",
|
7
7
|
"components.calendar.notSelected": "Heb ei Ddewis.",
|
8
8
|
"components.calendar.selected": "Wedi'i Ddewis.",
|
package/lang/da.js
CHANGED
@@ -2,7 +2,7 @@ export default {
|
|
2
2
|
"components.alert.close": "Luk besked",
|
3
3
|
"components.breadcrumbs.breadcrumb": "Brødkrumme",
|
4
4
|
"components.button-add.addItem": "Tilføj element",
|
5
|
-
"components.button-split.otherOptions": "
|
5
|
+
"components.button-split.otherOptions": "Andre indstillinger",
|
6
6
|
"components.calendar.hasEvents": "Har begivenheder.",
|
7
7
|
"components.calendar.notSelected": "Ikke valgt.",
|
8
8
|
"components.calendar.selected": "Valgt.",
|
package/lang/de.js
CHANGED
@@ -2,7 +2,7 @@ export default {
|
|
2
2
|
"components.alert.close": "Benachrichtigung schließen",
|
3
3
|
"components.breadcrumbs.breadcrumb": "Brotkrümelnavigation",
|
4
4
|
"components.button-add.addItem": "Element hinzufügen",
|
5
|
-
"components.button-split.otherOptions": "
|
5
|
+
"components.button-split.otherOptions": "Sonstige Optionen",
|
6
6
|
"components.calendar.hasEvents": "Hat Ereignisse.",
|
7
7
|
"components.calendar.notSelected": "Nicht ausgewählt.",
|
8
8
|
"components.calendar.selected": "Ausgewählt.",
|
package/lang/es-es.js
CHANGED
@@ -2,7 +2,7 @@ export default {
|
|
2
2
|
"components.alert.close": "Cerrar alerta",
|
3
3
|
"components.breadcrumbs.breadcrumb": "Ruta de navegación",
|
4
4
|
"components.button-add.addItem": "Agregar elemento",
|
5
|
-
"components.button-split.otherOptions": "
|
5
|
+
"components.button-split.otherOptions": "Otras opciones",
|
6
6
|
"components.calendar.hasEvents": "Tiene eventos.",
|
7
7
|
"components.calendar.notSelected": "No seleccionado.",
|
8
8
|
"components.calendar.selected": "Seleccionado.",
|
package/lang/es.js
CHANGED
@@ -2,7 +2,7 @@ export default {
|
|
2
2
|
"components.alert.close": "Cerrar alerta",
|
3
3
|
"components.breadcrumbs.breadcrumb": "Ruta de navegación",
|
4
4
|
"components.button-add.addItem": "Agregar elemento",
|
5
|
-
"components.button-split.otherOptions": "
|
5
|
+
"components.button-split.otherOptions": "Otras opciones",
|
6
6
|
"components.calendar.hasEvents": "Tiene eventos.",
|
7
7
|
"components.calendar.notSelected": "No seleccionado.",
|
8
8
|
"components.calendar.selected": "Seleccionado.",
|
package/lang/fr-fr.js
CHANGED
@@ -2,7 +2,7 @@ export default {
|
|
2
2
|
"components.alert.close": "Fermer l'alerte",
|
3
3
|
"components.breadcrumbs.breadcrumb": "Chemin de navigation",
|
4
4
|
"components.button-add.addItem": "Ajouter un élément",
|
5
|
-
"components.button-split.otherOptions": "
|
5
|
+
"components.button-split.otherOptions": "Autres options",
|
6
6
|
"components.calendar.hasEvents": "A des événements.",
|
7
7
|
"components.calendar.notSelected": "Non sélectionné.",
|
8
8
|
"components.calendar.selected": "Sélectionné.",
|
package/lang/fr.js
CHANGED
@@ -2,7 +2,7 @@ export default {
|
|
2
2
|
"components.alert.close": "Fermer l'alerte",
|
3
3
|
"components.breadcrumbs.breadcrumb": "Chemin de navigation",
|
4
4
|
"components.button-add.addItem": "Ajouter un élément",
|
5
|
-
"components.button-split.otherOptions": "
|
5
|
+
"components.button-split.otherOptions": "Autres options",
|
6
6
|
"components.calendar.hasEvents": "Comprend des événements.",
|
7
7
|
"components.calendar.notSelected": "Non sélectionné(e)",
|
8
8
|
"components.calendar.selected": "Sélectionné(e).",
|
package/lang/haw.js
CHANGED
@@ -2,7 +2,7 @@ export default {
|
|
2
2
|
"components.alert.close": "Pani i ka makaʻala",
|
3
3
|
"components.breadcrumbs.breadcrumb": "Palapalapala",
|
4
4
|
"components.button-add.addItem": "Pākuʻi Mea",
|
5
|
-
"components.button-split.otherOptions": "
|
5
|
+
"components.button-split.otherOptions": "Nā Koho ʻē aʻe",
|
6
6
|
"components.calendar.hasEvents": "Loaʻa nā hanana.",
|
7
7
|
"components.calendar.notSelected": "ʻAʻole i koho ʻia.",
|
8
8
|
"components.calendar.selected": "Koho ʻia.",
|
package/lang/hi.js
CHANGED
@@ -2,7 +2,7 @@ export default {
|
|
2
2
|
"components.alert.close": "अलर्ट बंद करें",
|
3
3
|
"components.breadcrumbs.breadcrumb": "ब्रेडक्रंब",
|
4
4
|
"components.button-add.addItem": "आइटम जोड़ें",
|
5
|
-
"components.button-split.otherOptions": "
|
5
|
+
"components.button-split.otherOptions": "अन्य विकल्प",
|
6
6
|
"components.calendar.hasEvents": "ईवेंट हैं।",
|
7
7
|
"components.calendar.notSelected": "चयनित नहीं।",
|
8
8
|
"components.calendar.selected": "चयनित।",
|
package/lang/ja.js
CHANGED
@@ -2,7 +2,7 @@ export default {
|
|
2
2
|
"components.alert.close": "アラートを閉じる",
|
3
3
|
"components.breadcrumbs.breadcrumb": "階層",
|
4
4
|
"components.button-add.addItem": "項目の追加",
|
5
|
-
"components.button-split.otherOptions": "
|
5
|
+
"components.button-split.otherOptions": "その他のオプション",
|
6
6
|
"components.calendar.hasEvents": "イベントがあります。",
|
7
7
|
"components.calendar.notSelected": "選択されていません。",
|
8
8
|
"components.calendar.selected": "選択されています。",
|
package/lang/ko.js
CHANGED
@@ -2,7 +2,7 @@ export default {
|
|
2
2
|
"components.alert.close": "경보 닫기",
|
3
3
|
"components.breadcrumbs.breadcrumb": "이동 경로",
|
4
4
|
"components.button-add.addItem": "항목 추가",
|
5
|
-
"components.button-split.otherOptions": "
|
5
|
+
"components.button-split.otherOptions": "기타 옵션",
|
6
6
|
"components.calendar.hasEvents": "이벤트가 있습니다.",
|
7
7
|
"components.calendar.notSelected": "선택되지 않음.",
|
8
8
|
"components.calendar.selected": "선택됨.",
|
package/lang/mi.js
CHANGED
@@ -2,8 +2,8 @@ export default {
|
|
2
2
|
"components.alert.close": "Kati Matohi",
|
3
3
|
"components.breadcrumbs.breadcrumb": "Pānui",
|
4
4
|
"components.button-add.addItem": "Tāpiri Tūemi",
|
5
|
-
"components.button-split.otherOptions": "
|
6
|
-
"components.calendar.hasEvents": "He
|
5
|
+
"components.button-split.otherOptions": "Ētahi atu kōwhiringa",
|
6
|
+
"components.calendar.hasEvents": "He takatu ēnei.",
|
7
7
|
"components.calendar.notSelected": "Kāore i tīpakona.",
|
8
8
|
"components.calendar.selected": "I tīpakona.",
|
9
9
|
"components.calendar.show": "Whakaatu {month}",
|
@@ -33,10 +33,10 @@ export default {
|
|
33
33
|
"components.filter-dimension-set-date-text-value.textMonths": "Ngā marama {num} whakamutunga",
|
34
34
|
"components.filter-dimension-set-date-time-range-value.label": "{text}, whakaroha hei kōwhiri i ngā rā",
|
35
35
|
"components.filter-dimension-set-date-time-range-value.valueTextRange": "{startValue} ki {endValue}",
|
36
|
-
"components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "
|
37
|
-
"components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "
|
36
|
+
"components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "I muri o {startValue}",
|
37
|
+
"components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "I mua i {endValue}",
|
38
38
|
"components.filter-dimension-set-date-time-range-value.text": "Awhe rā ritenga",
|
39
|
-
"components.form-element.defaultError": "{label}
|
39
|
+
"components.form-element.defaultError": "Kāore i te whai mana te {label}",
|
40
40
|
"components.form-element.defaultFieldLabel": "Āpure",
|
41
41
|
"components.form-element.input.email.typeMismatch": "Kāore te īmēra i te tika",
|
42
42
|
"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}.}}}}",
|
@@ -44,7 +44,7 @@ export default {
|
|
44
44
|
"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}.}}",
|
45
45
|
"components.form-element.input.text.tooShort": "Me noho te {label} kia {minlength} ngā pūāhua",
|
46
46
|
"components.form-element.input.url.typeMismatch": "Kāore te URL i te tika",
|
47
|
-
"components.form-element.valueMissing": "{label}
|
47
|
+
"components.form-element.valueMissing": "E hiahiatia ana te {label}",
|
48
48
|
"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}}",
|
49
49
|
"components.form-error-summary.text": "Takahuri taipitopito hapa",
|
50
50
|
"components.input-color.backgroundColor": "Tae papamuri",
|
@@ -70,9 +70,9 @@ export default {
|
|
70
70
|
"components.input-date.errorOutsideRange": "Me noho te rā ki waenga i te {minDate} me te {maxDate}",
|
71
71
|
"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.",
|
72
72
|
"components.input-date.now": "Ināianei",
|
73
|
-
"components.input-date.revert": "{label}
|
73
|
+
"components.input-date.revert": "Kua hokia te {label} ki te uara tōmua.",
|
74
74
|
"components.input-date.today": "Āianei",
|
75
|
-
"components.input-date.useDateFormat": "
|
75
|
+
"components.input-date.useDateFormat": "Whakamahia te hōputu rā {format}.",
|
76
76
|
"components.input-number.hintInteger": "Ka whakaae anake tēnei āpure ki ngā uara tau tōpū (kāore he ira)",
|
77
77
|
"components.input-number.hintDecimalDuplicate": "He ira kē kei tēnei tau",
|
78
78
|
"components.input-number.hintDecimalIncorrectComma": "Hei tāpiri i tētahi ira whakamahi i te piko \",\" pūāhua",
|
@@ -112,8 +112,8 @@ export default {
|
|
112
112
|
"components.pageable.info": "{count, plural, one {{countFormatted} Tūemi} other {{countFormatted} Ngā tūemi}}",
|
113
113
|
"components.pageable.info-with-total": "{totalCount, plural, one {{countFormatted} o {totalCountFormatted} Tūemi} other {{countFormatted} o {totalCountFormatted} Ngā tūemi}}",
|
114
114
|
"components.pager-load-more.status-loading": "Uta ana i ētahi atu tūemi",
|
115
|
-
"components.selection.action-max-hint": "{count, plural, one {
|
116
|
-
"components.selection.action-required-hint": "
|
115
|
+
"components.selection.action-max-hint": "{count, plural, one {Kua whakakorehia ina neke atu i te {countFormatted} o ngā tūemi i tīpakohia} other {Kua whakakorehia ina neke atu i te {countFormatted} o ngā tūemi i tīpakohia}}",
|
116
|
+
"components.selection.action-required-hint": "Tīpakohia tētahi tūemi hei whakahaere i tēnei mahi",
|
117
117
|
"components.selection.select-all": "Tīpako Katoa",
|
118
118
|
"components.selection.select-all-items": "Tīpakohia Ngā Tūemi {count} Katoa",
|
119
119
|
"components.selection.selected": "{count} kua tīpakohia",
|
package/lang/nl.js
CHANGED
@@ -2,7 +2,7 @@ export default {
|
|
2
2
|
"components.alert.close": "Waarschuwing sluiten",
|
3
3
|
"components.breadcrumbs.breadcrumb": "Kruimelpad",
|
4
4
|
"components.button-add.addItem": "Item toevoegen",
|
5
|
-
"components.button-split.otherOptions": "
|
5
|
+
"components.button-split.otherOptions": "Overige opties",
|
6
6
|
"components.calendar.hasEvents": "Bevat gebeurtenissen.",
|
7
7
|
"components.calendar.notSelected": "Niet geselecteerd.",
|
8
8
|
"components.calendar.selected": "Geselecteerd.",
|
package/lang/pt.js
CHANGED
@@ -2,7 +2,7 @@ export default {
|
|
2
2
|
"components.alert.close": "Fechar alerta",
|
3
3
|
"components.breadcrumbs.breadcrumb": "Auxiliar de navegação",
|
4
4
|
"components.button-add.addItem": "Adicionar item",
|
5
|
-
"components.button-split.otherOptions": "
|
5
|
+
"components.button-split.otherOptions": "Outras Opções",
|
6
6
|
"components.calendar.hasEvents": "Tem eventos.",
|
7
7
|
"components.calendar.notSelected": "Não selecionado.",
|
8
8
|
"components.calendar.selected": "Selecionado.",
|
@@ -50,14 +50,14 @@ export default {
|
|
50
50
|
"components.input-color.backgroundColor": "Cor do Plano de fundo",
|
51
51
|
"components.input-color.foregroundColor": "Cor do Primeiro plano",
|
52
52
|
"components.input-color.none": "Nenhum",
|
53
|
-
"components.input-date-range.endDate": "Data
|
53
|
+
"components.input-date-range.endDate": "Data Final",
|
54
54
|
"components.input-date-range.errorBadInput": "{startLabel} precisa ser anterior a {endLabel}",
|
55
55
|
"components.input-date-range.interactive-label": "Entrada do intervalo de datas",
|
56
|
-
"components.input-date-range.startDate": "Data de
|
57
|
-
"components.input-date-time-range-to.to": "
|
58
|
-
"components.input-date-time-range.endDate": "Data
|
56
|
+
"components.input-date-range.startDate": "Data de Início",
|
57
|
+
"components.input-date-time-range-to.to": "para",
|
58
|
+
"components.input-date-time-range.endDate": "Data Final",
|
59
59
|
"components.input-date-time-range.errorBadInput": "{startLabel} precisa ser anterior a {endLabel}",
|
60
|
-
"components.input-date-time-range.startDate": "Data de
|
60
|
+
"components.input-date-time-range.startDate": "Data de Início",
|
61
61
|
"components.input-date-time.date": "Data",
|
62
62
|
"components.input-date-time.errorMaxDateOnly": "A data deve ser anterior ou igual a {maxDate}",
|
63
63
|
"components.input-date-time.errorMinDateOnly": "A data deve ser igual ou posterior a {minDate}",
|
@@ -107,14 +107,14 @@ export default {
|
|
107
107
|
"components.more-less.more": "mais",
|
108
108
|
"components.object-property-list.item-placeholder-text": "Item de espaço reservado",
|
109
109
|
"components.overflow-group.moreActions": "Mais ações",
|
110
|
-
"components.pager-load-more.action": "Carregar
|
110
|
+
"components.pager-load-more.action": "Carregar Mais",
|
111
111
|
"components.pager-load-more.action-with-page-size": "Carregar mais {count}",
|
112
112
|
"components.pageable.info": "{count, plural, one {{countFormatted} item} other {{countFormatted} itens}}",
|
113
113
|
"components.pageable.info-with-total": "{totalCount, plural, one {{countFormatted} de {totalCountFormatted} item} other {{countFormatted} de {totalCountFormatted} itens}}",
|
114
114
|
"components.pager-load-more.status-loading": "Carregando mais itens",
|
115
115
|
"components.selection.action-max-hint": "{count, plural, one {Desativado quando mais de {countFormatted} item é selecionado} other {Desativado quando mais de {countFormatted} itens são selecionados}}",
|
116
116
|
"components.selection.action-required-hint": "Selecione um item para realizar esta ação",
|
117
|
-
"components.selection.select-all": "Selecionar
|
117
|
+
"components.selection.select-all": "Selecionar Tudo",
|
118
118
|
"components.selection.select-all-items": "Selecione todos os {count} itens",
|
119
119
|
"components.selection.selected": "{count} selecionados",
|
120
120
|
"components.selection.selected-plus": "Mais de {count} selecionados",
|
@@ -129,20 +129,20 @@ export default {
|
|
129
129
|
"components.table-controls.label": "Ações para a tabela",
|
130
130
|
"components.tabs.next": "Ir para frente",
|
131
131
|
"components.tabs.previous": "Ir para trás",
|
132
|
-
"components.tag-list.clear": "Clique
|
132
|
+
"components.tag-list.clear": "Clique, pressione a tecla Backspace ou a tecla Delete para remover o item {value}",
|
133
133
|
"components.tag-list.clear-all": "Limpar tudo",
|
134
|
-
"components.tag-list.cleared-all": "Todos os itens da lista de
|
135
|
-
"components.tag-list.cleared-item": "Item {value} da lista de
|
134
|
+
"components.tag-list.cleared-all": "Todos os itens da lista de etiquetas foram removidos",
|
135
|
+
"components.tag-list.cleared-item": "Item {value} da lista de etiquetas removido",
|
136
136
|
"components.tag-list.interactive-label": "Lista de marcas, {count} itens",
|
137
137
|
"components.tag-list.num-hidden": "+ {count} mais",
|
138
138
|
"components.tag-list.role-description": "Lista de marcas",
|
139
139
|
"components.tag-list.show-less": "Mostrar menos",
|
140
|
-
"components.tag-list.show-more-description": "Selecione para mostrar itens ocultos da lista de
|
140
|
+
"components.tag-list.show-more-description": "Selecione para mostrar itens ocultos da lista de etiquetas",
|
141
141
|
"components.tag-list-item.role-description": "Marca",
|
142
142
|
"components.tag-list-item.tooltip-arrow-keys": "Teclas de seta",
|
143
|
-
"components.tag-list-item.tooltip-arrow-keys-desc": "Mover entre
|
144
|
-
"components.tag-list-item.tooltip-delete-key": "
|
145
|
-
"components.tag-list-item.tooltip-delete-key-desc": "Excluir a
|
143
|
+
"components.tag-list-item.tooltip-arrow-keys-desc": "Mover entre etiquetas",
|
144
|
+
"components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
|
145
|
+
"components.tag-list-item.tooltip-delete-key-desc": "Excluir a etiqueta de foco",
|
146
146
|
"components.tag-list-item.tooltip-title": "Controles do teclado",
|
147
147
|
"templates.primary-secondary.divider": "Divisor do painel secundário",
|
148
148
|
"templates.primary-secondary.secondary-panel": "Painel secundário"
|
package/lang/sv.js
CHANGED
@@ -2,7 +2,7 @@ export default {
|
|
2
2
|
"components.alert.close": "Stängningsvarning",
|
3
3
|
"components.breadcrumbs.breadcrumb": "Sökväg",
|
4
4
|
"components.button-add.addItem": "Lägg till objekt",
|
5
|
-
"components.button-split.otherOptions": "
|
5
|
+
"components.button-split.otherOptions": "Andra alternativ",
|
6
6
|
"components.calendar.hasEvents": "Har händelser.",
|
7
7
|
"components.calendar.notSelected": "Inte vald.",
|
8
8
|
"components.calendar.selected": "Markerad.",
|
package/lang/tr.js
CHANGED
@@ -2,7 +2,7 @@ export default {
|
|
2
2
|
"components.alert.close": "Kapatma Uyarısı",
|
3
3
|
"components.breadcrumbs.breadcrumb": "İçerik Haritası",
|
4
4
|
"components.button-add.addItem": "Öğe Ekle",
|
5
|
-
"components.button-split.otherOptions": "
|
5
|
+
"components.button-split.otherOptions": "Diğer Seçenekler",
|
6
6
|
"components.calendar.hasEvents": "Olayları Var.",
|
7
7
|
"components.calendar.notSelected": "Seçili Değil.",
|
8
8
|
"components.calendar.selected": "Seçili.",
|
package/lang/zh-cn.js
CHANGED
@@ -2,7 +2,7 @@ export default {
|
|
2
2
|
"components.alert.close": "关闭提醒",
|
3
3
|
"components.breadcrumbs.breadcrumb": "痕迹导航",
|
4
4
|
"components.button-add.addItem": "添加项目",
|
5
|
-
"components.button-split.otherOptions": "
|
5
|
+
"components.button-split.otherOptions": "其他选项",
|
6
6
|
"components.calendar.hasEvents": "有事件。",
|
7
7
|
"components.calendar.notSelected": "未选择。",
|
8
8
|
"components.calendar.selected": "已选择。",
|
package/lang/zh-tw.js
CHANGED
@@ -2,7 +2,7 @@ export default {
|
|
2
2
|
"components.alert.close": "關閉警示",
|
3
3
|
"components.breadcrumbs.breadcrumb": "導覽路徑",
|
4
4
|
"components.button-add.addItem": "新增項目",
|
5
|
-
"components.button-split.otherOptions": "
|
5
|
+
"components.button-split.otherOptions": "其他選項",
|
6
6
|
"components.calendar.hasEvents": "有事件。",
|
7
7
|
"components.calendar.notSelected": "未選取。",
|
8
8
|
"components.calendar.selected": "已選取。",
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@brightspace-ui/core",
|
3
|
-
"version": "3.
|
3
|
+
"version": "3.125.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",
|