@brightspace-ui/core 2.68.1 → 2.70.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.
- package/components/filter/README.md +0 -1
- package/components/filter/demo/filter-tags.html +3 -3
- package/components/filter/filter-tags.js +14 -57
- package/components/inputs/demo/input-number.html +12 -0
- package/components/inputs/input-number.js +6 -0
- package/components/inputs/input-text.js +37 -8
- package/custom-elements.json +22 -13
- package/lang/ar.js +0 -1
- package/lang/cy.js +0 -1
- package/lang/da.js +0 -1
- package/lang/de.js +0 -1
- package/lang/en.js +0 -1
- package/lang/es-es.js +0 -1
- package/lang/es.js +0 -1
- package/lang/fr-fr.js +0 -1
- package/lang/fr.js +0 -1
- package/lang/hi.js +0 -1
- package/lang/ja.js +0 -1
- package/lang/ko.js +0 -1
- package/lang/nl.js +0 -1
- package/lang/pt.js +0 -1
- package/lang/sv.js +0 -1
- package/lang/tr.js +0 -1
- package/lang/zh-cn.js +0 -1
- package/lang/zh-tw.js +0 -1
- package/package.json +1 -1
|
@@ -327,7 +327,6 @@ A tag-list allowing the user to see (and remove) the currently applied filters.
|
|
|
327
327
|
| Property | Type | Description |
|
|
328
328
|
|---|---|---|
|
|
329
329
|
| `filter-ids` | String, required | Id(s) (space-delimited) of the filter component(s) to subscribe to |
|
|
330
|
-
| `label` | String | The text displayed in this component's label |
|
|
331
330
|
<!-- docs: end hidden content -->
|
|
332
331
|
|
|
333
332
|
## Filter Overflow Group [d2l-filter-overflow-group]
|
|
@@ -73,16 +73,16 @@
|
|
|
73
73
|
/* eslint-enable no-console */
|
|
74
74
|
</script>
|
|
75
75
|
|
|
76
|
-
<h2>
|
|
76
|
+
<h2>Registered to both filters</h2>
|
|
77
77
|
|
|
78
78
|
<d2l-demo-snippet>
|
|
79
79
|
<d2l-filter-tags filter-ids="core-filter core-filter-2"></d2l-filter-tags>
|
|
80
80
|
</d2l-demo-snippet>
|
|
81
81
|
|
|
82
|
-
<h2>
|
|
82
|
+
<h2>Registered to only the first filter</h2>
|
|
83
83
|
|
|
84
84
|
<d2l-demo-snippet>
|
|
85
|
-
<d2l-filter-tags filter-ids="core-filter"
|
|
85
|
+
<d2l-filter-tags filter-ids="core-filter"></d2l-filter-tags>
|
|
86
86
|
</d2l-demo-snippet>
|
|
87
87
|
|
|
88
88
|
</d2l-demo-page>
|
|
@@ -1,11 +1,8 @@
|
|
|
1
|
-
import '../colors/colors.js';
|
|
2
1
|
import '../tag-list/tag-list.js';
|
|
3
2
|
import '../tag-list/tag-list-item.js';
|
|
4
|
-
import { css, html, LitElement } from 'lit';
|
|
5
|
-
import { bodyCompactStyles } from '../typography/styles.js';
|
|
3
|
+
import { css, html, LitElement, nothing } from 'lit';
|
|
6
4
|
import { IdSubscriberController } from '../../controllers/subscriber/subscriberControllers.js';
|
|
7
5
|
import { LocalizeCoreElement } from '../../helpers/localize-core-element.js';
|
|
8
|
-
import { RtlMixin } from '../../mixins/rtl-mixin.js';
|
|
9
6
|
|
|
10
7
|
/**
|
|
11
8
|
* A tag-list allowing the user to see (and remove) the currently applied filters.
|
|
@@ -13,62 +10,30 @@ import { RtlMixin } from '../../mixins/rtl-mixin.js';
|
|
|
13
10
|
|
|
14
11
|
const CLEAR_TIMEOUT = 210; /** Corresponds to timeout in _dispatchChangeEvent in filter + 10 ms */
|
|
15
12
|
|
|
16
|
-
class FilterTags extends
|
|
13
|
+
class FilterTags extends LocalizeCoreElement(LitElement) {
|
|
17
14
|
static get properties() {
|
|
18
15
|
return {
|
|
19
16
|
/**
|
|
20
17
|
* REQUIRED: Id(s) (space-delimited) of the filter component(s) to subscribe to
|
|
21
18
|
* @type {string}
|
|
22
19
|
*/
|
|
23
|
-
filterIds: { type: String, attribute: 'filter-ids' }
|
|
24
|
-
/**
|
|
25
|
-
* The text displayed in this component's label (hidden when default is used)
|
|
26
|
-
* @default "Active Filters:"
|
|
27
|
-
* @type {string}
|
|
28
|
-
*/
|
|
29
|
-
label: { type: String }
|
|
20
|
+
filterIds: { type: String, attribute: 'filter-ids' }
|
|
30
21
|
};
|
|
31
22
|
}
|
|
32
23
|
|
|
33
24
|
static get styles() {
|
|
34
|
-
return
|
|
25
|
+
return css`
|
|
35
26
|
:host {
|
|
36
27
|
display: inline-block;
|
|
37
28
|
}
|
|
38
29
|
:host([hidden]) {
|
|
39
30
|
display: none;
|
|
40
31
|
}
|
|
41
|
-
|
|
42
|
-
.d2l-filter-tags-wrapper {
|
|
43
|
-
display: flex;
|
|
44
|
-
}
|
|
45
|
-
d2l-tag-list {
|
|
46
|
-
flex: 1;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.d2l-filter-tags-label {
|
|
50
|
-
display: inline-block;
|
|
51
|
-
font-weight: bold;
|
|
52
|
-
margin-right: 0.25rem;
|
|
53
|
-
padding-top: 0.15rem;
|
|
54
|
-
}
|
|
55
|
-
:host([dir="rtl"]) .d2l-filter-tags-label {
|
|
56
|
-
margin-left: 0.25rem;
|
|
57
|
-
margin-right: 0;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
.d2l-filter-tags-none-label {
|
|
61
|
-
color: var(--d2l-color-galena);
|
|
62
|
-
display: inline-block;
|
|
63
|
-
font-style: italic;
|
|
64
|
-
padding-top: 0.15rem;
|
|
65
|
-
}
|
|
66
|
-
`];
|
|
32
|
+
`;
|
|
67
33
|
}
|
|
68
34
|
|
|
69
35
|
constructor() {
|
|
70
36
|
super();
|
|
71
|
-
this.label = '';
|
|
72
37
|
|
|
73
38
|
this._allActiveFilters = new Map();
|
|
74
39
|
this._filters = new IdSubscriberController(this,
|
|
@@ -91,25 +56,17 @@ class FilterTags extends RtlMixin(LocalizeCoreElement(LitElement)) {
|
|
|
91
56
|
</d2l-tag-list-item>
|
|
92
57
|
`;
|
|
93
58
|
}));
|
|
94
|
-
|
|
95
|
-
if (numActiveFilters === 0)
|
|
96
|
-
else {
|
|
97
|
-
filters = html`
|
|
98
|
-
<d2l-tag-list
|
|
99
|
-
clearable
|
|
100
|
-
clear-focus-timeout="${CLEAR_TIMEOUT}"
|
|
101
|
-
@d2l-tag-list-clear="${this._clearFiltersClicked}"
|
|
102
|
-
description="${this.label || this.localize('components.filter.activeFilters')}">
|
|
103
|
-
${tagListItems}
|
|
104
|
-
</d2l-tag-list>
|
|
105
|
-
`;
|
|
106
|
-
}
|
|
59
|
+
|
|
60
|
+
if (numActiveFilters === 0) return nothing;
|
|
107
61
|
|
|
108
62
|
return html`
|
|
109
|
-
<
|
|
110
|
-
|
|
111
|
-
${
|
|
112
|
-
|
|
63
|
+
<d2l-tag-list
|
|
64
|
+
clearable
|
|
65
|
+
clear-focus-timeout="${CLEAR_TIMEOUT}"
|
|
66
|
+
@d2l-tag-list-clear="${this._clearFiltersClicked}"
|
|
67
|
+
description="${this.localize('components.filter.activeFilters')}">
|
|
68
|
+
${tagListItems}
|
|
69
|
+
</d2l-tag-list>
|
|
113
70
|
`;
|
|
114
71
|
}
|
|
115
72
|
|
|
@@ -8,6 +8,11 @@
|
|
|
8
8
|
import '../../demo/demo-page.js';
|
|
9
9
|
import '../input-number.js';
|
|
10
10
|
</script>
|
|
11
|
+
<style>
|
|
12
|
+
#denominator {
|
|
13
|
+
--d2l-input-text-align: end;
|
|
14
|
+
}
|
|
15
|
+
</style>
|
|
11
16
|
</head>
|
|
12
17
|
<body unresolved>
|
|
13
18
|
<d2l-demo-page page-title="d2l-input-number">
|
|
@@ -98,6 +103,13 @@
|
|
|
98
103
|
</template>
|
|
99
104
|
</d2l-demo-snippet>
|
|
100
105
|
|
|
106
|
+
<h2>Denominator</h2>
|
|
107
|
+
<d2l-demo-snippet>
|
|
108
|
+
<template>
|
|
109
|
+
<d2l-input-number id="denominator" max="5" min="0" label="Grade" label-hidden required unit="/5" unit-label="out of 5" value="3"></d2l-input-number>
|
|
110
|
+
</template>
|
|
111
|
+
</d2l-demo-snippet>
|
|
112
|
+
|
|
101
113
|
</d2l-demo-page>
|
|
102
114
|
<script>
|
|
103
115
|
document.body.addEventListener('change', e => console.log('change', e.srcElement.value));
|
|
@@ -163,6 +163,11 @@ class InputNumber extends FocusMixin(LabelledMixin(SkeletonMixin(FormElementMixi
|
|
|
163
163
|
* @type {string}
|
|
164
164
|
*/
|
|
165
165
|
unit: { type: String },
|
|
166
|
+
/**
|
|
167
|
+
* Accessible label for the unit which will not be visually rendered
|
|
168
|
+
* @type {string}
|
|
169
|
+
*/
|
|
170
|
+
unitLabel: { attribute: 'unit-label', type: String },
|
|
166
171
|
/**
|
|
167
172
|
* Value of the input
|
|
168
173
|
* @type {number}
|
|
@@ -350,6 +355,7 @@ class InputNumber extends FocusMixin(LabelledMixin(SkeletonMixin(FormElementMixi
|
|
|
350
355
|
?skeleton="${this.skeleton}"
|
|
351
356
|
title="${ifDefined(this.title)}"
|
|
352
357
|
unit="${ifDefined(this.unit)}"
|
|
358
|
+
unit-label="${ifDefined(this.unitLabel)}"
|
|
353
359
|
.value="${this._formattedValue}">
|
|
354
360
|
<slot slot="left" name="left"></slot>
|
|
355
361
|
<slot slot="right" name="right"></slot>
|
|
@@ -153,6 +153,11 @@ class InputText extends FocusMixin(LabelledMixin(FormElementMixin(SkeletonMixin(
|
|
|
153
153
|
* @type {string}
|
|
154
154
|
*/
|
|
155
155
|
unit: { type: String },
|
|
156
|
+
/**
|
|
157
|
+
* Accessible label for the unit which will not be visually rendered
|
|
158
|
+
* @type {string}
|
|
159
|
+
*/
|
|
160
|
+
unitLabel: { attribute: 'unit-label', type: String },
|
|
156
161
|
/**
|
|
157
162
|
* Value of the input
|
|
158
163
|
* @type {string}
|
|
@@ -210,6 +215,9 @@ class InputText extends FocusMixin(LabelledMixin(FormElementMixin(SkeletonMixin(
|
|
|
210
215
|
.d2l-input-inside-after {
|
|
211
216
|
right: 0;
|
|
212
217
|
}
|
|
218
|
+
.d2l-input-unit {
|
|
219
|
+
font-size: 0.8rem;
|
|
220
|
+
}
|
|
213
221
|
.d2l-input-inside-before .d2l-input-unit {
|
|
214
222
|
margin-left: 12px;
|
|
215
223
|
margin-right: 6px;
|
|
@@ -256,6 +264,7 @@ class InputText extends FocusMixin(LabelledMixin(FormElementMixin(SkeletonMixin(
|
|
|
256
264
|
this._intersectionObserver = null;
|
|
257
265
|
this._isIntersecting = false;
|
|
258
266
|
this._lastSlotWidth = 0;
|
|
267
|
+
this._missingUnitLabelErrorHasBeenThrown = false;
|
|
259
268
|
this._prevValue = '';
|
|
260
269
|
|
|
261
270
|
this._handleBlur = this._handleBlur.bind(this);
|
|
@@ -263,6 +272,7 @@ class InputText extends FocusMixin(LabelledMixin(FormElementMixin(SkeletonMixin(
|
|
|
263
272
|
this._handleMouseEnter = this._handleMouseEnter.bind(this);
|
|
264
273
|
this._handleMouseLeave = this._handleMouseLeave.bind(this);
|
|
265
274
|
this._perfMonitor = new PerfMonitor(this);
|
|
275
|
+
this._validatingUnitTimeout = null;
|
|
266
276
|
}
|
|
267
277
|
|
|
268
278
|
get value() { return this._value; }
|
|
@@ -335,6 +345,7 @@ class InputText extends FocusMixin(LabelledMixin(FormElementMixin(SkeletonMixin(
|
|
|
335
345
|
super.firstUpdated(changedProperties);
|
|
336
346
|
|
|
337
347
|
this._setValue(this.value, true);
|
|
348
|
+
this._validateUnit();
|
|
338
349
|
|
|
339
350
|
const container = this.shadowRoot && this.shadowRoot.querySelector('.d2l-input-text-container');
|
|
340
351
|
if (!container) return;
|
|
@@ -443,8 +454,9 @@ class InputText extends FocusMixin(LabelledMixin(FormElementMixin(SkeletonMixin(
|
|
|
443
454
|
${offscreenContainer}
|
|
444
455
|
`;
|
|
445
456
|
if (this.label && !this.labelHidden && !this.labelledBy) {
|
|
457
|
+
const unitLabel = this._getUnitLabel();
|
|
446
458
|
return html`
|
|
447
|
-
<label class="d2l-input-label d2l-skeletize" for="${this._inputId}">${this.label}${
|
|
459
|
+
<label class="d2l-input-label d2l-skeletize" for="${this._inputId}">${this.label}${unitLabel ? html`<span class="d2l-offscreen">${unitLabel}</span>` : ''}</label>
|
|
448
460
|
${input}`;
|
|
449
461
|
}
|
|
450
462
|
return input;
|
|
@@ -454,11 +466,8 @@ class InputText extends FocusMixin(LabelledMixin(FormElementMixin(SkeletonMixin(
|
|
|
454
466
|
super.updated(changedProperties);
|
|
455
467
|
|
|
456
468
|
changedProperties.forEach((oldVal, prop) => {
|
|
457
|
-
if (prop === 'unit') {
|
|
458
|
-
|
|
459
|
-
throw new Error('Invalid unit value for d2l-input-text.');
|
|
460
|
-
}
|
|
461
|
-
this._updateInputLayout();
|
|
469
|
+
if (prop === 'unit' || prop === 'unitLabel') {
|
|
470
|
+
this._validateUnit();
|
|
462
471
|
} else if (prop === 'validationError') {
|
|
463
472
|
if (oldVal && this.validationError) {
|
|
464
473
|
const tooltip = this.shadowRoot.querySelector('d2l-tooltip');
|
|
@@ -476,8 +485,7 @@ class InputText extends FocusMixin(LabelledMixin(FormElementMixin(SkeletonMixin(
|
|
|
476
485
|
label = this.getAttribute('aria-label');
|
|
477
486
|
}
|
|
478
487
|
if (label) {
|
|
479
|
-
|
|
480
|
-
return `${label}${unitLabel}`;
|
|
488
|
+
return `${label}${this._getUnitLabel()}`;
|
|
481
489
|
}
|
|
482
490
|
return undefined;
|
|
483
491
|
}
|
|
@@ -489,6 +497,12 @@ class InputText extends FocusMixin(LabelledMixin(FormElementMixin(SkeletonMixin(
|
|
|
489
497
|
return 'text';
|
|
490
498
|
}
|
|
491
499
|
|
|
500
|
+
_getUnitLabel() {
|
|
501
|
+
if (!this.unit) return '';
|
|
502
|
+
const unitLabel = this.unitLabel || this.unit;
|
|
503
|
+
return ` ${unitLabel}`;
|
|
504
|
+
}
|
|
505
|
+
|
|
492
506
|
_handleAfterSlotChange(e) {
|
|
493
507
|
const afterContent = e.target.assignedNodes({ flatten: true });
|
|
494
508
|
this._hasAfterContent = (afterContent && afterContent.length > 0);
|
|
@@ -618,5 +632,20 @@ class InputText extends FocusMixin(LabelledMixin(FormElementMixin(SkeletonMixin(
|
|
|
618
632
|
|
|
619
633
|
}
|
|
620
634
|
|
|
635
|
+
_validateUnit() {
|
|
636
|
+
if (this._missingUnitLabelErrorHasBeenThrown) return;
|
|
637
|
+
clearTimeout(this._validatingUnitTimeout);
|
|
638
|
+
// don't error immediately in case it doesn't get set immediately
|
|
639
|
+
this._validatingUnitTimeout = setTimeout(() => {
|
|
640
|
+
this._validatingUnitTimeout = null;
|
|
641
|
+
const hasUnit = (typeof this.unit === 'string') && this.unit.length > 0;
|
|
642
|
+
const hasUnitLabel = (typeof this.unitLabel === 'string') && this.unitLabel.length > 0;
|
|
643
|
+
if (hasUnit && this.unit !== '%' && !hasUnitLabel) {
|
|
644
|
+
this._missingUnitLabelErrorHasBeenThrown = true;
|
|
645
|
+
throw new Error(`<d2l-input-text>: missing required attribute "unit-label" for unit "${this.unit}"`);
|
|
646
|
+
}
|
|
647
|
+
}, 3000);
|
|
648
|
+
}
|
|
649
|
+
|
|
621
650
|
}
|
|
622
651
|
customElements.define('d2l-input-text', InputText);
|
package/custom-elements.json
CHANGED
|
@@ -3575,12 +3575,6 @@
|
|
|
3575
3575
|
"name": "filter-ids",
|
|
3576
3576
|
"description": "REQUIRED: Id(s) (space-delimited) of the filter component(s) to subscribe to",
|
|
3577
3577
|
"type": "string"
|
|
3578
|
-
},
|
|
3579
|
-
{
|
|
3580
|
-
"name": "label",
|
|
3581
|
-
"description": "The text displayed in this component's label (hidden when default is used)",
|
|
3582
|
-
"type": "string",
|
|
3583
|
-
"default": "\"\\\"Active Filters:\\\"\""
|
|
3584
3578
|
}
|
|
3585
3579
|
],
|
|
3586
3580
|
"properties": [
|
|
@@ -3590,13 +3584,6 @@
|
|
|
3590
3584
|
"description": "REQUIRED: Id(s) (space-delimited) of the filter component(s) to subscribe to",
|
|
3591
3585
|
"type": "string"
|
|
3592
3586
|
},
|
|
3593
|
-
{
|
|
3594
|
-
"name": "label",
|
|
3595
|
-
"attribute": "label",
|
|
3596
|
-
"description": "The text displayed in this component's label (hidden when default is used)",
|
|
3597
|
-
"type": "string",
|
|
3598
|
-
"default": "\"\\\"Active Filters:\\\"\""
|
|
3599
|
-
},
|
|
3600
3587
|
{
|
|
3601
3588
|
"name": "documentLocaleSettings",
|
|
3602
3589
|
"default": "\"getDocumentLocaleSettings()\""
|
|
@@ -5334,6 +5321,11 @@
|
|
|
5334
5321
|
"description": "Unit associated with the input value, displayed next to input and announced as part of the label",
|
|
5335
5322
|
"type": "string"
|
|
5336
5323
|
},
|
|
5324
|
+
{
|
|
5325
|
+
"name": "unit-label",
|
|
5326
|
+
"description": "Accessible label for the unit which will not be visually rendered",
|
|
5327
|
+
"type": "string"
|
|
5328
|
+
},
|
|
5337
5329
|
{
|
|
5338
5330
|
"name": "max-fraction-digits",
|
|
5339
5331
|
"description": "Maximum number of digits allowed after the decimal place. Must be between 0 and 20 and greater than or equal to `minFractionDigits`. Default is Greater of `minFractionDigits` or `3`.",
|
|
@@ -5456,6 +5448,12 @@
|
|
|
5456
5448
|
"description": "Unit associated with the input value, displayed next to input and announced as part of the label",
|
|
5457
5449
|
"type": "string"
|
|
5458
5450
|
},
|
|
5451
|
+
{
|
|
5452
|
+
"name": "unitLabel",
|
|
5453
|
+
"attribute": "unit-label",
|
|
5454
|
+
"description": "Accessible label for the unit which will not be visually rendered",
|
|
5455
|
+
"type": "string"
|
|
5456
|
+
},
|
|
5459
5457
|
{
|
|
5460
5458
|
"name": "maxFractionDigits",
|
|
5461
5459
|
"attribute": "max-fraction-digits",
|
|
@@ -5988,6 +5986,11 @@
|
|
|
5988
5986
|
"description": "Unit associated with the input value, displayed next to input and announced as part of the label",
|
|
5989
5987
|
"type": "string"
|
|
5990
5988
|
},
|
|
5989
|
+
{
|
|
5990
|
+
"name": "unit-label",
|
|
5991
|
+
"description": "Accessible label for the unit which will not be visually rendered",
|
|
5992
|
+
"type": "string"
|
|
5993
|
+
},
|
|
5991
5994
|
{
|
|
5992
5995
|
"name": "value",
|
|
5993
5996
|
"description": "Value of the input",
|
|
@@ -6166,6 +6169,12 @@
|
|
|
6166
6169
|
"description": "Unit associated with the input value, displayed next to input and announced as part of the label",
|
|
6167
6170
|
"type": "string"
|
|
6168
6171
|
},
|
|
6172
|
+
{
|
|
6173
|
+
"name": "unitLabel",
|
|
6174
|
+
"attribute": "unit-label",
|
|
6175
|
+
"description": "Accessible label for the unit which will not be visually rendered",
|
|
6176
|
+
"type": "string"
|
|
6177
|
+
},
|
|
6169
6178
|
{
|
|
6170
6179
|
"name": "value",
|
|
6171
6180
|
"attribute": "value",
|
package/lang/ar.js
CHANGED
|
@@ -21,7 +21,6 @@ export default {
|
|
|
21
21
|
"components.filter.loading": "يتم تحميل عوامل التصفية",
|
|
22
22
|
"components.filter.filterCountDescription": "{number, plural, =0 {لم يتم تطبيق عوامل تصفية.} one {تم تطبيق {number} عامل تصفية} other {تم تطبيق {number} من عوامل التصفية.}}",
|
|
23
23
|
"components.filter.filters": "عوامل التصفية",
|
|
24
|
-
"components.filter.noActiveFilters": "لا توجد عوامل تصفية نشطة",
|
|
25
24
|
"components.filter.noFilters": "ما من عوامل تصفية متوفرة",
|
|
26
25
|
"components.filter.searchResults": "{number, plural, =0 {ما من نتائج بحث} one {{number} نتيجة بحث} other {{number} من نتائج البحث}}",
|
|
27
26
|
"components.filter.singleDimensionDescription": "التصفية حسب: {filterName}",
|
package/lang/cy.js
CHANGED
|
@@ -21,7 +21,6 @@ export default {
|
|
|
21
21
|
"components.filter.loading": "Wrthi’n llwytho hidlyddion",
|
|
22
22
|
"components.filter.filterCountDescription": "{number, plural, =0 {Dim hidlyddion wedi’i gweithredu.} one {{number} hidlydd wedi’i weithredu.} other {{number} hidlyddion wedi’u gweithredu.}}",
|
|
23
23
|
"components.filter.filters": "Hidlyddion",
|
|
24
|
-
"components.filter.noActiveFilters": "Dim hidlwyr gweithredol",
|
|
25
24
|
"components.filter.noFilters": "Dim hidlyddion ar gael",
|
|
26
25
|
"components.filter.searchResults": "{number, plural, =0 {Dim canlyniadau chwilio} one {{number} canlyniad chwilio} other {{number} canlyniadau chwilio}}",
|
|
27
26
|
"components.filter.singleDimensionDescription": "Hidlo yn ôl: {filterName}",
|
package/lang/da.js
CHANGED
|
@@ -21,7 +21,6 @@ export default {
|
|
|
21
21
|
"components.filter.loading": "Indlæser filtre",
|
|
22
22
|
"components.filter.filterCountDescription": "{number, plural, =0 {Ingen filtre anvendt.} one {{number} filter anvendt.} other {{number} filtre anvendt.}}",
|
|
23
23
|
"components.filter.filters": "Filtre",
|
|
24
|
-
"components.filter.noActiveFilters": "Ingen aktive filtre",
|
|
25
24
|
"components.filter.noFilters": "Ingen tilgængelige filtre",
|
|
26
25
|
"components.filter.searchResults": "{number, plural, =0 {Ingen søgeresultater} one {{number} søgeresultat} other {{number} søgeresultater}}",
|
|
27
26
|
"components.filter.singleDimensionDescription": "Filtrer efter: {filterName}",
|
package/lang/de.js
CHANGED
|
@@ -21,7 +21,6 @@ export default {
|
|
|
21
21
|
"components.filter.loading": "Filter werden geladen",
|
|
22
22
|
"components.filter.filterCountDescription": "{number, plural, =0 {Keine Filter angewendet.} one {{number} Filter angewendet.} other {{number} Filter angewendet.}}",
|
|
23
23
|
"components.filter.filters": "Filter",
|
|
24
|
-
"components.filter.noActiveFilters": "Keine Filter aktiv",
|
|
25
24
|
"components.filter.noFilters": "Keine verfügbaren Filter",
|
|
26
25
|
"components.filter.searchResults": "{number, plural, =0 {Kein Suchergebnis} one {{number} Suchergebnis} other {{number} Suchergebnisse}}",
|
|
27
26
|
"components.filter.singleDimensionDescription": "Filtern nach: {filterName}",
|
package/lang/en.js
CHANGED
|
@@ -21,7 +21,6 @@ export default {
|
|
|
21
21
|
"components.filter.loading": "Loading filters",
|
|
22
22
|
"components.filter.filterCountDescription": "{number, plural, =0 {No filters applied.} one {{number} filter applied.} other {{number} filters applied.}}",
|
|
23
23
|
"components.filter.filters": "Filters",
|
|
24
|
-
"components.filter.noActiveFilters": "No active filters",
|
|
25
24
|
"components.filter.noFilters": "No available filters",
|
|
26
25
|
"components.filter.searchResults": "{number, plural, =0 {No search results} one {{number} search result} other {{number} search results}}",
|
|
27
26
|
"components.filter.singleDimensionDescription": "Filter by: {filterName}",
|
package/lang/es-es.js
CHANGED
|
@@ -21,7 +21,6 @@ export default {
|
|
|
21
21
|
"components.filter.loading": "Cargando filtros",
|
|
22
22
|
"components.filter.filterCountDescription": "{number, plural, =0 {Sin filtros aplicados.} one {{number} filtro aplicado.} other {{number} filtros aplicados.}}",
|
|
23
23
|
"components.filter.filters": "Filtros",
|
|
24
|
-
"components.filter.noActiveFilters": "No hay filtros activos",
|
|
25
24
|
"components.filter.noFilters": "No hay filtros disponibles",
|
|
26
25
|
"components.filter.searchResults": "{number, plural, =0 {No hay resultados de búsqueda} one {{number} resultado de búsqueda} other {{number} resultados de búsqueda}}",
|
|
27
26
|
"components.filter.singleDimensionDescription": "Filtrar por: {filterName}",
|
package/lang/es.js
CHANGED
|
@@ -21,7 +21,6 @@ export default {
|
|
|
21
21
|
"components.filter.loading": "Cargando filtros",
|
|
22
22
|
"components.filter.filterCountDescription": "{number, plural, =0 {Sin filtros aplicados.} one {{number} filtro aplicado.} other {{number} filtros aplicados.}}",
|
|
23
23
|
"components.filter.filters": "Filtros",
|
|
24
|
-
"components.filter.noActiveFilters": "No hay filtros activos",
|
|
25
24
|
"components.filter.noFilters": "No hay filtros disponibles",
|
|
26
25
|
"components.filter.searchResults": "{number, plural, =0 {No se encontraron resultados de búsqueda} one {{number} resultado de búsqueda} other {{number} resultados de búsqueda}}",
|
|
27
26
|
"components.filter.singleDimensionDescription": "Filtrar por: {filterName}",
|
package/lang/fr-fr.js
CHANGED
|
@@ -21,7 +21,6 @@ export default {
|
|
|
21
21
|
"components.filter.loading": "Chargement des filtres",
|
|
22
22
|
"components.filter.filterCountDescription": "{number, plural, =0 {Aucun filtre appliqué.} one {{number} filtre appliqué.} other {{number} filtres appliqués.}}",
|
|
23
23
|
"components.filter.filters": "Filtres",
|
|
24
|
-
"components.filter.noActiveFilters": "Aucun filtre actif",
|
|
25
24
|
"components.filter.noFilters": "Aucun filtre disponible",
|
|
26
25
|
"components.filter.searchResults": "{number, plural, =0 {Aucun résultat de recherche} one {{number} résultat de recherche} other {{number} résultats de recherche}}",
|
|
27
26
|
"components.filter.singleDimensionDescription": "Filtrer par : {filterName}",
|
package/lang/fr.js
CHANGED
|
@@ -21,7 +21,6 @@ export default {
|
|
|
21
21
|
"components.filter.loading": "Chargement des filtres",
|
|
22
22
|
"components.filter.filterCountDescription": "{number, plural, =0 {Aucun filtre appliqué.} one {{number} filtre appliqué.} other {{number} filtres appliqués.}}",
|
|
23
23
|
"components.filter.filters": "Filtres",
|
|
24
|
-
"components.filter.noActiveFilters": "Aucun filtre actif",
|
|
25
24
|
"components.filter.noFilters": "Aucun filtre disponible",
|
|
26
25
|
"components.filter.searchResults": "{number, plural, =0 {Aucun résultat de recherche} one {{number} résultat de recherche} other {{number} résultats de recherche}}",
|
|
27
26
|
"components.filter.singleDimensionDescription": "Filtrer par : {filterName}",
|
package/lang/hi.js
CHANGED
|
@@ -21,7 +21,6 @@ export default {
|
|
|
21
21
|
"components.filter.loading": "फिल्टर्स लोड किए जा रहे हैं",
|
|
22
22
|
"components.filter.filterCountDescription": "{number, plural, =0 {कोई फ़िल्टर लागू नहीं किए गए} one {1 फ़िल्टर लागू किया गया।} other {{number} फ़िल्टर्स लागू किए गए।}}",
|
|
23
23
|
"components.filter.filters": "फ़िल्टर्स",
|
|
24
|
-
"components.filter.noActiveFilters": "कोई सक्रिय फ़िल्टर नहीं हैं",
|
|
25
24
|
"components.filter.noFilters": "कोई उपलब्ध फ़िल्टर्स नहीं",
|
|
26
25
|
"components.filter.searchResults": "{number, plural, =0 {कोई खोज परिणाम नहीं} one {{number} खोज परिणाम} other {{number} खोज परिणाम}}",
|
|
27
26
|
"components.filter.singleDimensionDescription": "इसके अनुसार फ़िल्टर करें: {filterName}",
|
package/lang/ja.js
CHANGED
|
@@ -21,7 +21,6 @@ export default {
|
|
|
21
21
|
"components.filter.loading": "フィルタのロード中",
|
|
22
22
|
"components.filter.filterCountDescription": "{number, plural, =0 {フィルタは適用されていません。} other {{number} 個のフィルタが適用されています。}}",
|
|
23
23
|
"components.filter.filters": "フィルタ",
|
|
24
|
-
"components.filter.noActiveFilters": "アクティブフィルタなし",
|
|
25
24
|
"components.filter.noFilters": "使用可能なフィルタはありません",
|
|
26
25
|
"components.filter.searchResults": "{number, plural, =0 {検索結果なし} other {{number} 件の検索結果}}",
|
|
27
26
|
"components.filter.singleDimensionDescription": "フィルタ条件: {filterName}",
|
package/lang/ko.js
CHANGED
|
@@ -21,7 +21,6 @@ export default {
|
|
|
21
21
|
"components.filter.loading": "필터 로드 중",
|
|
22
22
|
"components.filter.filterCountDescription": "{number, plural, =0 {적용된 필터 없음.} other {{number}개 필터 적용됨.}}",
|
|
23
23
|
"components.filter.filters": "개 필터",
|
|
24
|
-
"components.filter.noActiveFilters": "활성 필터가 없음",
|
|
25
24
|
"components.filter.noFilters": "사용 가능한 필터가 없습니다",
|
|
26
25
|
"components.filter.searchResults": "{number, plural, =0 {검색 결과 없음} other {{number}개 검색 결과}}",
|
|
27
26
|
"components.filter.singleDimensionDescription": "필터 기준: {filterName}",
|
package/lang/nl.js
CHANGED
|
@@ -21,7 +21,6 @@ export default {
|
|
|
21
21
|
"components.filter.loading": "Laden van filters",
|
|
22
22
|
"components.filter.filterCountDescription": "{number, plural, =0 {Geen filters toegepast.} one {{number} filter toegepast.} other {{number} filters toegepast.}}",
|
|
23
23
|
"components.filter.filters": "Filters", // mfv-translated
|
|
24
|
-
"components.filter.noActiveFilters": "Geen actieve filters",
|
|
25
24
|
"components.filter.noFilters": "Geen beschikbare filters",
|
|
26
25
|
"components.filter.searchResults": "{number, plural, =0 {Geen zoekresultaten} one {{number} zoekresultaat} other {{number} zoekresultaten}}",
|
|
27
26
|
"components.filter.singleDimensionDescription": "Filter op {filterName}",
|
package/lang/pt.js
CHANGED
|
@@ -21,7 +21,6 @@ export default {
|
|
|
21
21
|
"components.filter.loading": "Carregar filtros",
|
|
22
22
|
"components.filter.filterCountDescription": "{number, plural, =0 {Nenhum filtro aplicado.} one {{number} filtro aplicado.} other {{number} filtros aplicados.}}",
|
|
23
23
|
"components.filter.filters": "Filtros",
|
|
24
|
-
"components.filter.noActiveFilters": "Nenhum filtro ativo",
|
|
25
24
|
"components.filter.noFilters": "Não há filtros disponíveis",
|
|
26
25
|
"components.filter.searchResults": "{number, plural, =0 {Sem resultados para a pesquisa} one {{number} resultado para a pesquisa} other {{number} resultados para a pesquisa}}",
|
|
27
26
|
"components.filter.singleDimensionDescription": "Filtrar por: {filterName}",
|
package/lang/sv.js
CHANGED
|
@@ -21,7 +21,6 @@ export default {
|
|
|
21
21
|
"components.filter.loading": "Läser in filter",
|
|
22
22
|
"components.filter.filterCountDescription": "{number, plural, =0 {Inga filter tillämpade.} one {{number} filter tillämpat.} other {{number} filter tillämpade.}}",
|
|
23
23
|
"components.filter.filters": "Filter",
|
|
24
|
-
"components.filter.noActiveFilters": "Inga aktiva filter",
|
|
25
24
|
"components.filter.noFilters": "Inga tillgängliga filter",
|
|
26
25
|
"components.filter.searchResults": "{number, plural, =0 {Inga sökresultat} one {{number} sökresultat} other {{number} sökresultat}}",
|
|
27
26
|
"components.filter.singleDimensionDescription": "Filtrera efter: {filterName}",
|
package/lang/tr.js
CHANGED
|
@@ -21,7 +21,6 @@ export default {
|
|
|
21
21
|
"components.filter.loading": "Filtreler yükleniyor",
|
|
22
22
|
"components.filter.filterCountDescription": "{number, plural, =0 {Filtre uygulanmadı.} one {{number} filtre uygulandı.} other {{number} filtre uygulandı.}}",
|
|
23
23
|
"components.filter.filters": "Filtre",
|
|
24
|
-
"components.filter.noActiveFilters": "Etkin filtre yok",
|
|
25
24
|
"components.filter.noFilters": "Uygun filtre yok",
|
|
26
25
|
"components.filter.searchResults": "{number, plural, =0 {Arama sonucu yok} one {{number} arama sonucu} other {{number} arama sonucu}}",
|
|
27
26
|
"components.filter.singleDimensionDescription": "Filtreleme ölçütü: {filterName}",
|
package/lang/zh-cn.js
CHANGED
|
@@ -21,7 +21,6 @@ export default {
|
|
|
21
21
|
"components.filter.loading": "正在加载筛选器",
|
|
22
22
|
"components.filter.filterCountDescription": "{number, plural, =0 {未应用筛选器。} other {已应用 {number} 个筛选器。}}",
|
|
23
23
|
"components.filter.filters": "个筛选条件",
|
|
24
|
-
"components.filter.noActiveFilters": "没有活动的筛选器",
|
|
25
24
|
"components.filter.noFilters": "无可用筛选器",
|
|
26
25
|
"components.filter.searchResults": "{number, plural, =0 {无搜索结果} other {{number} 个搜索结果}}",
|
|
27
26
|
"components.filter.singleDimensionDescription": "筛选依据:{filterName}",
|
package/lang/zh-tw.js
CHANGED
|
@@ -21,7 +21,6 @@ export default {
|
|
|
21
21
|
"components.filter.loading": "正在載入篩選條件",
|
|
22
22
|
"components.filter.filterCountDescription": "{number, plural, =0 {未套用篩選器。} other {已套用 {number} 個篩選器。}}",
|
|
23
23
|
"components.filter.filters": "篩選器",
|
|
24
|
-
"components.filter.noActiveFilters": "沒有啟用中的篩選器",
|
|
25
24
|
"components.filter.noFilters": "沒有可用的篩選條件",
|
|
26
25
|
"components.filter.searchResults": "{number, plural, =0 {無搜尋結果} other {{number} 個搜尋結果}}",
|
|
27
26
|
"components.filter.singleDimensionDescription": "按此條件篩選:{filterName}",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@brightspace-ui/core",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.70.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",
|