@brightspace-ui/core 2.68.0 → 2.69.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/button/floating-buttons.js +2 -1
- 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/custom-elements.json +0 -13
- package/helpers/README.md +13 -0
- package/helpers/offsetParent-legacy.js +130 -0
- 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
|
@@ -2,6 +2,7 @@ import '../colors/colors.js';
|
|
|
2
2
|
import '../../helpers/requestIdleCallback.js';
|
|
3
3
|
import { css, html, LitElement } from 'lit';
|
|
4
4
|
import { getBoundingAncestor, getComposedParent } from '../../helpers/dom.js';
|
|
5
|
+
import { getLegacyOffsetParent } from '../../helpers/offsetParent-legacy.js';
|
|
5
6
|
import { RtlMixin } from '../../mixins/rtl-mixin.js';
|
|
6
7
|
import { styleMap } from 'lit/directives/style-map.js';
|
|
7
8
|
|
|
@@ -224,7 +225,7 @@ class FloatingButtons extends RtlMixin(LitElement) {
|
|
|
224
225
|
_getBoundingAncestor() {
|
|
225
226
|
|
|
226
227
|
const boundingAncestor = getBoundingAncestor(this);
|
|
227
|
-
const offsetParent = this
|
|
228
|
+
const offsetParent = getLegacyOffsetParent(this);
|
|
228
229
|
if (!offsetParent) {
|
|
229
230
|
return null;
|
|
230
231
|
}
|
|
@@ -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
|
|
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()\""
|
package/helpers/README.md
CHANGED
|
@@ -171,6 +171,19 @@ element.addEventListener('d2l-gesture-swipe', (e) => {
|
|
|
171
171
|
});
|
|
172
172
|
```
|
|
173
173
|
|
|
174
|
+
## offsetParent-legacy
|
|
175
|
+
|
|
176
|
+
A ponyfill for [offsetParent](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/offsetParent) for "legacy" `offsetParent` behaviour, which will include any ancestor shadow DOMs when searching for the closest positioned ancestor. The native browser behaviour was changed in 2022 to not leak nodes within a shadow tree.
|
|
177
|
+
|
|
178
|
+
To use the ponyfill, import `getLegacyOffsetParent` (and/or `getLegacyOffsetTop`, `getLegacyOffsetLeft`):
|
|
179
|
+
|
|
180
|
+
```js
|
|
181
|
+
import { getLegacyOffsetParent } from '@brightspace-ui/core/helpers/offsetParent-legacy.js';
|
|
182
|
+
|
|
183
|
+
// Replace `element.offsetParent` with:
|
|
184
|
+
const offsetParent = getLegacyOffsetParent(element);
|
|
185
|
+
```
|
|
186
|
+
|
|
174
187
|
## queueMicrotask
|
|
175
188
|
|
|
176
189
|
A polyfill for [queueMicrotask](https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/queueMicrotask). For more information on microtasks, read [this article from Mozilla](https://developer.mozilla.org/en-US/docs/Web/API/HTML_DOM_API/Microtask_guide).
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Adapted from:
|
|
3
|
+
* https://github.com/josepharhar/offsetparent-polyfills
|
|
4
|
+
*
|
|
5
|
+
* More discussion:
|
|
6
|
+
* https://bugs.chromium.org/p/chromium/issues/detail?id=1331803
|
|
7
|
+
* https://github.com/mjfroman/moz-libwebrtc-third-party/commit/047e8804fc9d871825c1005413610e934f0116d9
|
|
8
|
+
* https://github.com/WICG/webcomponents/issues/497
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
const originalOffsetParent = Object.getOwnPropertyDescriptor(HTMLElement.prototype, 'offsetParent').get;
|
|
12
|
+
const originalOffsetTop = Object.getOwnPropertyDescriptor(HTMLElement.prototype, 'offsetTop').get;
|
|
13
|
+
const originalOffsetLeft = Object.getOwnPropertyDescriptor(HTMLElement.prototype, 'offsetLeft').get;
|
|
14
|
+
|
|
15
|
+
function flatTreeParent(element) {
|
|
16
|
+
if (element.assignedSlot) {
|
|
17
|
+
return element.assignedSlot;
|
|
18
|
+
}
|
|
19
|
+
if (element.parentNode instanceof ShadowRoot) {
|
|
20
|
+
return element.parentNode.host;
|
|
21
|
+
}
|
|
22
|
+
return element.parentNode;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
function ancestorTreeScopes(element) {
|
|
26
|
+
const scopes = new Set();
|
|
27
|
+
let currentScope = element.getRootNode();
|
|
28
|
+
while (currentScope) {
|
|
29
|
+
scopes.add(currentScope);
|
|
30
|
+
currentScope = currentScope.parentNode
|
|
31
|
+
? currentScope.parentNode.getRootNode()
|
|
32
|
+
: null;
|
|
33
|
+
}
|
|
34
|
+
return scopes;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
function offsetParentPolyfill(element, isNewBehavior) {
|
|
38
|
+
// Do an initial walk to check for display:none ancestors.
|
|
39
|
+
for (let ancestor = element; ancestor; ancestor = flatTreeParent(ancestor)) {
|
|
40
|
+
if (!(ancestor instanceof Element))
|
|
41
|
+
continue;
|
|
42
|
+
if (getComputedStyle(ancestor).display === 'none')
|
|
43
|
+
return null;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
let scopes = null;
|
|
47
|
+
if (isNewBehavior)
|
|
48
|
+
scopes = ancestorTreeScopes(element);
|
|
49
|
+
|
|
50
|
+
for (let ancestor = flatTreeParent(element); ancestor; ancestor = flatTreeParent(ancestor)) {
|
|
51
|
+
if (!(ancestor instanceof Element))
|
|
52
|
+
continue;
|
|
53
|
+
const style = getComputedStyle(ancestor);
|
|
54
|
+
// display:contents nodes aren't in the layout tree so they should be skipped.
|
|
55
|
+
if (style.display === 'contents')
|
|
56
|
+
continue;
|
|
57
|
+
if (style.position !== 'static') {
|
|
58
|
+
if (isNewBehavior) {
|
|
59
|
+
if (scopes.has(ancestor.getRootNode())) {
|
|
60
|
+
return ancestor;
|
|
61
|
+
}
|
|
62
|
+
} else {
|
|
63
|
+
return ancestor;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
if (ancestor.tagName === 'BODY')
|
|
67
|
+
return ancestor;
|
|
68
|
+
}
|
|
69
|
+
return null;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
let isOffsetParentPatchedCached = null;
|
|
73
|
+
function isOffsetParentPatched() {
|
|
74
|
+
if (isOffsetParentPatchedCached !== null) {
|
|
75
|
+
return isOffsetParentPatchedCached;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
const container = document.createElement('div');
|
|
79
|
+
container.style.position = 'absolute';
|
|
80
|
+
const shadowroot = container.attachShadow({ mode: 'open' });
|
|
81
|
+
document.body.appendChild(container);
|
|
82
|
+
|
|
83
|
+
const lightChild = document.createElement('div');
|
|
84
|
+
container.appendChild(lightChild);
|
|
85
|
+
|
|
86
|
+
const shadowChild = document.createElement('div');
|
|
87
|
+
shadowChild.style.position = 'absolute';
|
|
88
|
+
shadowChild.appendChild(document.createElement('slot'));
|
|
89
|
+
shadowroot.appendChild(shadowChild);
|
|
90
|
+
|
|
91
|
+
const originalValue = originalOffsetParent.apply(lightChild);
|
|
92
|
+
if (originalValue === container) {
|
|
93
|
+
isOffsetParentPatchedCached = true;
|
|
94
|
+
} else if (originalValue === shadowChild) {
|
|
95
|
+
isOffsetParentPatchedCached = false;
|
|
96
|
+
} else {
|
|
97
|
+
console.error('what ', originalValue);
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
container.remove();
|
|
101
|
+
return isOffsetParentPatchedCached;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
function offsetTopLeftPolyfill(element, originalFn) {
|
|
105
|
+
if (!isOffsetParentPatched())
|
|
106
|
+
return originalFn.apply(element);
|
|
107
|
+
|
|
108
|
+
let value = originalFn.apply(element);
|
|
109
|
+
let nextOffsetParent = offsetParentPolyfill(element, /*isNewBehavior=*/false);
|
|
110
|
+
const scopes = ancestorTreeScopes(element);
|
|
111
|
+
|
|
112
|
+
while (!scopes.has(nextOffsetParent.getRootNode())) {
|
|
113
|
+
value -= originalFn.apply(nextOffsetParent);
|
|
114
|
+
nextOffsetParent = offsetParentPolyfill(nextOffsetParent, /*isNewBehavior=*/false);
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
return value;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
export function getLegacyOffsetParent(element) {
|
|
121
|
+
return offsetParentPolyfill(element, /*isNewBehavior=*/false);
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
export function getLegacyOffsetTop(element) {
|
|
125
|
+
return offsetTopLeftPolyfill(element, originalOffsetTop);
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
export function getLegacyOffsetLeft(element) {
|
|
129
|
+
return offsetTopLeftPolyfill(element, originalOffsetLeft);
|
|
130
|
+
}
|
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.69.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",
|