@kaizen/components 1.73.13 → 1.74.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/dist/cjs/Filter/FilterMultiSelect/subcomponents/MultiSelectOption/MultiSelectOption.cjs +18 -3
- package/dist/cjs/Filter/FilterMultiSelect/subcomponents/SelectionControlButton/ClearButton/ClearButton.cjs +11 -1
- package/dist/cjs/Filter/FilterMultiSelect/subcomponents/SelectionControlButton/SelectAllButton/SelectAllButton.cjs +7 -1
- package/dist/esm/Filter/FilterMultiSelect/subcomponents/MultiSelectOption/MultiSelectOption.mjs +18 -3
- package/dist/esm/Filter/FilterMultiSelect/subcomponents/SelectionControlButton/ClearButton/ClearButton.mjs +11 -1
- package/dist/esm/Filter/FilterMultiSelect/subcomponents/SelectionControlButton/SelectAllButton/SelectAllButton.mjs +7 -1
- package/dist/types/Badge/Badge.d.ts +3 -4
- package/locales/ar.json +12 -0
- package/locales/bg.json +12 -0
- package/locales/cs.json +12 -0
- package/locales/cy.json +12 -0
- package/locales/da.json +12 -0
- package/locales/de.json +12 -0
- package/locales/el.json +12 -0
- package/locales/en-GB.json +13 -1
- package/locales/en.json +12 -0
- package/locales/es-419.json +12 -0
- package/locales/es.json +12 -0
- package/locales/et.json +12 -0
- package/locales/fi.json +12 -0
- package/locales/fr-CA.json +12 -0
- package/locales/fr.json +12 -0
- package/locales/he.json +12 -0
- package/locales/hi.json +12 -0
- package/locales/ht.json +12 -0
- package/locales/hu.json +12 -0
- package/locales/id.json +12 -0
- package/locales/it.json +12 -0
- package/locales/ja.json +12 -0
- package/locales/km-KH.json +12 -0
- package/locales/ko.json +12 -0
- package/locales/lt.json +12 -0
- package/locales/lv.json +12 -0
- package/locales/mi.json +12 -0
- package/locales/ms.json +12 -0
- package/locales/nb.json +12 -0
- package/locales/nl.json +12 -0
- package/locales/pl.json +12 -0
- package/locales/pt-BR.json +12 -0
- package/locales/pt.json +12 -0
- package/locales/ro.json +12 -0
- package/locales/ru.json +12 -0
- package/locales/si-LK.json +12 -0
- package/locales/sk.json +12 -0
- package/locales/sr.json +12 -0
- package/locales/sv.json +12 -0
- package/locales/th.json +12 -0
- package/locales/tl.json +12 -0
- package/locales/tr.json +12 -0
- package/locales/uk.json +12 -0
- package/locales/vi.json +12 -0
- package/locales/zh-TW.json +12 -0
- package/locales/zh.json +12 -0
- package/package.json +1 -1
- package/src/Badge/Badge.tsx +9 -4
- package/src/Filter/FilterMultiSelect/subcomponents/MultiSelectOption/MultiSelectOption.spec.tsx +3 -3
- package/src/Filter/FilterMultiSelect/subcomponents/MultiSelectOption/MultiSelectOption.tsx +16 -2
- package/src/Filter/FilterMultiSelect/subcomponents/SelectionControlButton/ClearButton/ClearButton.tsx +11 -1
- package/src/Filter/FilterMultiSelect/subcomponents/SelectionControlButton/SelectAllButton/SelectAllButton.tsx +8 -1
- package/src/__next__/Tooltip/_docs/Tooltip.spec.stories.tsx +4 -1
package/dist/cjs/Filter/FilterMultiSelect/subcomponents/MultiSelectOption/MultiSelectOption.cjs
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
var tslib = require('tslib');
|
|
4
4
|
var React = require('react');
|
|
5
|
+
var i18nReactIntl = require('@cultureamp/i18n-react-intl');
|
|
5
6
|
var focus = require('@react-aria/focus');
|
|
6
7
|
var listbox = require('@react-aria/listbox');
|
|
7
8
|
var utils = require('@react-aria/utils');
|
|
@@ -38,6 +39,7 @@ var MultiSelectOption = function (_a) {
|
|
|
38
39
|
isFocusVisible = _f.isFocusVisible,
|
|
39
40
|
focusProps = _f.focusProps;
|
|
40
41
|
var countElementId = React.useId();
|
|
42
|
+
var formatNumber = i18nReactIntl.useIntl().formatNumber;
|
|
41
43
|
return React__default.default.createElement("li", tslib.__assign({}, utils.mergeProps(optionProps, focusProps), {
|
|
42
44
|
ref: ref,
|
|
43
45
|
className: classnames__default.default(MultiSelectOption_module.option, classNameOverride, isSelected && MultiSelectOption_module.isSelected, isFocusVisible && MultiSelectOption_module.isFocusVisible, isDisabled && MultiSelectOption_module.isDisabled),
|
|
@@ -51,9 +53,22 @@ var MultiSelectOption = function (_a) {
|
|
|
51
53
|
})), item.rendered, ((_d = item.value) === null || _d === void 0 ? void 0 : _d.count) && React__default.default.createElement("span", {
|
|
52
54
|
id: countElementId,
|
|
53
55
|
className: MultiSelectOption_module.badgeContainer
|
|
54
|
-
}, React__default.default.createElement(
|
|
55
|
-
|
|
56
|
-
|
|
56
|
+
}, React__default.default.createElement(i18nReactIntl.FormattedMessage, {
|
|
57
|
+
defaultMessage: "<Badge>{count}</Badge><VisuallyHidden> available</VisuallyHidden>",
|
|
58
|
+
id: "filterMultiSelectMultiSelectOption.available",
|
|
59
|
+
description: "Number of filter items available",
|
|
60
|
+
values: {
|
|
61
|
+
count: formatNumber(parseInt(item.value.count)),
|
|
62
|
+
Badge: function (children) {
|
|
63
|
+
return React__default.default.createElement(Badge.Badge, {
|
|
64
|
+
classNameOverride: MultiSelectOption_module.badge
|
|
65
|
+
}, children);
|
|
66
|
+
},
|
|
67
|
+
VisuallyHidden: function (children) {
|
|
68
|
+
return React__default.default.createElement(VisuallyHidden.VisuallyHidden, null, children);
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
})));
|
|
57
72
|
};
|
|
58
73
|
MultiSelectOption.displayName = 'FilterMultiSelect.Option';
|
|
59
74
|
exports.MultiSelectOption = MultiSelectOption;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var React = require('react');
|
|
4
|
+
var i18nReactIntl = require('@cultureamp/i18n-react-intl');
|
|
4
5
|
var classnames = require('classnames');
|
|
5
6
|
var VisuallyHidden = require('../../../../../VisuallyHidden/VisuallyHidden.cjs');
|
|
6
7
|
require('../../../context/MenuTriggerProvider/MenuTriggerProvider.cjs');
|
|
@@ -31,7 +32,16 @@ var ClearButton = function () {
|
|
|
31
32
|
}));
|
|
32
33
|
}
|
|
33
34
|
}
|
|
34
|
-
},
|
|
35
|
+
}, React__default.default.createElement(i18nReactIntl.FormattedMessage, {
|
|
36
|
+
defaultMessage: "Clear<VisuallyHidden> selections</VisuallyHidden>",
|
|
37
|
+
id: "filterMultiSelectClearButton.label",
|
|
38
|
+
description: "Clear button label for filter multi-select",
|
|
39
|
+
values: {
|
|
40
|
+
VisuallyHidden: function (children) {
|
|
41
|
+
return React__default.default.createElement(VisuallyHidden.VisuallyHidden, null, children);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}));
|
|
35
45
|
};
|
|
36
46
|
ClearButton.displayName = 'FilterMultiSelect.ClearButton';
|
|
37
47
|
exports.ClearButton = ClearButton;
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
var tslib = require('tslib');
|
|
4
4
|
var React = require('react');
|
|
5
|
+
var i18nReactIntl = require('@cultureamp/i18n-react-intl');
|
|
5
6
|
var classnames = require('classnames');
|
|
6
7
|
require('../../../context/MenuTriggerProvider/MenuTriggerProvider.cjs');
|
|
7
8
|
var SelectionProvider = require('../../../context/SelectionProvider/SelectionProvider.cjs');
|
|
@@ -20,6 +21,7 @@ var SelectAllButton = function () {
|
|
|
20
21
|
var filteredOptions = Array.from(selectionState.collection.getKeys()).filter(function (key) {
|
|
21
22
|
return !disabledOptions.includes(key);
|
|
22
23
|
});
|
|
24
|
+
var formatMessage = i18nReactIntl.useIntl().formatMessage;
|
|
23
25
|
return React__default.default.createElement("button", {
|
|
24
26
|
type: "button",
|
|
25
27
|
className: classnames__default.default(SelectionControlButton_module.button, selectionState.selectionManager.isSelectAll && SelectionControlButton_module.isDisabled),
|
|
@@ -27,7 +29,11 @@ var SelectAllButton = function () {
|
|
|
27
29
|
onClick: function () {
|
|
28
30
|
return !selectionState.selectionManager.isSelectAll && selectionState.selectionManager.setSelectedKeys(tslib.__spreadArray(tslib.__spreadArray([], selectedOptions, true), filteredOptions, true));
|
|
29
31
|
}
|
|
30
|
-
},
|
|
32
|
+
}, formatMessage({
|
|
33
|
+
defaultMessage: 'Select all',
|
|
34
|
+
id: 'filterMultiSelectSelectAllButton.label',
|
|
35
|
+
description: 'Select all button in filter multi select'
|
|
36
|
+
}));
|
|
31
37
|
};
|
|
32
38
|
SelectAllButton.displayName = 'FilterMultiSelect.SelectAllButton';
|
|
33
39
|
exports.SelectAllButton = SelectAllButton;
|
package/dist/esm/Filter/FilterMultiSelect/subcomponents/MultiSelectOption/MultiSelectOption.mjs
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { __assign } from 'tslib';
|
|
2
2
|
import React, { useId } from 'react';
|
|
3
|
+
import { useIntl, FormattedMessage } from '@cultureamp/i18n-react-intl';
|
|
3
4
|
import { useFocusRing } from '@react-aria/focus';
|
|
4
5
|
import { useOption } from '@react-aria/listbox';
|
|
5
6
|
import { mergeProps } from '@react-aria/utils';
|
|
@@ -30,6 +31,7 @@ const MultiSelectOption = /*#__PURE__*/function () {
|
|
|
30
31
|
isFocusVisible = _f.isFocusVisible,
|
|
31
32
|
focusProps = _f.focusProps;
|
|
32
33
|
var countElementId = useId();
|
|
34
|
+
var formatNumber = useIntl().formatNumber;
|
|
33
35
|
return /*#__PURE__*/React.createElement("li", __assign({}, mergeProps(optionProps, focusProps), {
|
|
34
36
|
ref: ref,
|
|
35
37
|
className: classnames(styles.option, classNameOverride, isSelected && styles.isSelected, isFocusVisible && styles.isFocusVisible, isDisabled && styles.isDisabled),
|
|
@@ -43,9 +45,22 @@ const MultiSelectOption = /*#__PURE__*/function () {
|
|
|
43
45
|
})), item.rendered, ((_d = item.value) === null || _d === void 0 ? void 0 : _d.count) && (/*#__PURE__*/React.createElement("span", {
|
|
44
46
|
id: countElementId,
|
|
45
47
|
className: styles.badgeContainer
|
|
46
|
-
}, /*#__PURE__*/React.createElement(
|
|
47
|
-
|
|
48
|
-
|
|
48
|
+
}, /*#__PURE__*/React.createElement(FormattedMessage, {
|
|
49
|
+
defaultMessage: "<Badge>{count}</Badge><VisuallyHidden> available</VisuallyHidden>",
|
|
50
|
+
id: "filterMultiSelectMultiSelectOption.available",
|
|
51
|
+
description: "Number of filter items available",
|
|
52
|
+
values: {
|
|
53
|
+
count: formatNumber(parseInt(item.value.count)),
|
|
54
|
+
Badge: function (children) {
|
|
55
|
+
return /*#__PURE__*/React.createElement(Badge, {
|
|
56
|
+
classNameOverride: styles.badge
|
|
57
|
+
}, children);
|
|
58
|
+
},
|
|
59
|
+
VisuallyHidden: function (children) {
|
|
60
|
+
return /*#__PURE__*/React.createElement(VisuallyHidden, null, children);
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
}))));
|
|
49
64
|
};
|
|
50
65
|
MultiSelectOption.displayName = 'FilterMultiSelect.Option';
|
|
51
66
|
return MultiSelectOption;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
+
import { FormattedMessage } from '@cultureamp/i18n-react-intl';
|
|
2
3
|
import classnames from 'classnames';
|
|
3
4
|
import { VisuallyHidden } from '../../../../../VisuallyHidden/VisuallyHidden.mjs';
|
|
4
5
|
import '../../../context/MenuTriggerProvider/MenuTriggerProvider.mjs';
|
|
@@ -23,7 +24,16 @@ const ClearButton = /*#__PURE__*/function () {
|
|
|
23
24
|
}));
|
|
24
25
|
}
|
|
25
26
|
}
|
|
26
|
-
},
|
|
27
|
+
}, /*#__PURE__*/React.createElement(FormattedMessage, {
|
|
28
|
+
defaultMessage: "Clear<VisuallyHidden> selections</VisuallyHidden>",
|
|
29
|
+
id: "filterMultiSelectClearButton.label",
|
|
30
|
+
description: "Clear button label for filter multi-select",
|
|
31
|
+
values: {
|
|
32
|
+
VisuallyHidden: function (children) {
|
|
33
|
+
return /*#__PURE__*/React.createElement(VisuallyHidden, null, children);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}));
|
|
27
37
|
};
|
|
28
38
|
ClearButton.displayName = 'FilterMultiSelect.ClearButton';
|
|
29
39
|
return ClearButton;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { __spreadArray } from 'tslib';
|
|
2
2
|
import React from 'react';
|
|
3
|
+
import { useIntl } from '@cultureamp/i18n-react-intl';
|
|
3
4
|
import classnames from 'classnames';
|
|
4
5
|
import '../../../context/MenuTriggerProvider/MenuTriggerProvider.mjs';
|
|
5
6
|
import { useSelectionContext } from '../../../context/SelectionProvider/SelectionProvider.mjs';
|
|
@@ -12,6 +13,7 @@ const SelectAllButton = /*#__PURE__*/function () {
|
|
|
12
13
|
var filteredOptions = Array.from(selectionState.collection.getKeys()).filter(function (key) {
|
|
13
14
|
return !disabledOptions.includes(key);
|
|
14
15
|
});
|
|
16
|
+
var formatMessage = useIntl().formatMessage;
|
|
15
17
|
return /*#__PURE__*/React.createElement("button", {
|
|
16
18
|
type: "button",
|
|
17
19
|
className: classnames(styles.button, selectionState.selectionManager.isSelectAll && styles.isDisabled),
|
|
@@ -19,7 +21,11 @@ const SelectAllButton = /*#__PURE__*/function () {
|
|
|
19
21
|
onClick: function () {
|
|
20
22
|
return !selectionState.selectionManager.isSelectAll && selectionState.selectionManager.setSelectedKeys(__spreadArray(__spreadArray([], selectedOptions, true), filteredOptions, true));
|
|
21
23
|
}
|
|
22
|
-
},
|
|
24
|
+
}, formatMessage({
|
|
25
|
+
defaultMessage: 'Select all',
|
|
26
|
+
id: 'filterMultiSelectSelectAllButton.label',
|
|
27
|
+
description: 'Select all button in filter multi select'
|
|
28
|
+
}));
|
|
23
29
|
};
|
|
24
30
|
SelectAllButton.displayName = 'FilterMultiSelect.SelectAllButton';
|
|
25
31
|
return SelectAllButton;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
import { type HTMLAttributes } from 'react';
|
|
1
|
+
import { type HTMLAttributes, type PropsWithChildren } from 'react';
|
|
2
2
|
import { type OverrideClassName } from "../types/OverrideClassName";
|
|
3
|
-
type BadgeCommonProps = {
|
|
4
|
-
children?: string;
|
|
3
|
+
type BadgeCommonProps = PropsWithChildren<{
|
|
5
4
|
/**
|
|
6
5
|
* The "dark" variant is no longer in the UI kit
|
|
7
6
|
*/
|
|
@@ -14,7 +13,7 @@ type BadgeCommonProps = {
|
|
|
14
13
|
* Supports "small" and "large" sizes - defaults to "small"
|
|
15
14
|
*/
|
|
16
15
|
size?: 'small' | 'large';
|
|
17
|
-
} & OverrideClassName<HTMLAttributes<HTMLSpanElement>>;
|
|
16
|
+
}> & OverrideClassName<HTMLAttributes<HTMLSpanElement>>;
|
|
18
17
|
type DotProps = Omit<BadgeCommonProps, 'variant'> & {
|
|
19
18
|
children?: never;
|
|
20
19
|
variant: 'dot';
|
package/locales/ar.json
CHANGED
|
@@ -61,6 +61,14 @@
|
|
|
61
61
|
"description" : "Label for the 'date to' field",
|
|
62
62
|
"message" : "التاريخ إلى"
|
|
63
63
|
},
|
|
64
|
+
"filterMultiSelectClearButton.label" : {
|
|
65
|
+
"description" : "Clear button label for filter multi-select",
|
|
66
|
+
"message" : "مسح<VisuallyHidden> الاختيارات</VisuallyHidden>"
|
|
67
|
+
},
|
|
68
|
+
"filterMultiSelectMultiSelectOption.available" : {
|
|
69
|
+
"description" : "Number of filter items available",
|
|
70
|
+
"message" : "<Badge>{count}</Badge><VisuallyHidden> متاح</VisuallyHidden>"
|
|
71
|
+
},
|
|
64
72
|
"filterMultiSelectSearchInput.label" : {
|
|
65
73
|
"description" : "Label for the search input",
|
|
66
74
|
"message" : "خيارات التصفية حسب استعلام البحث"
|
|
@@ -69,6 +77,10 @@
|
|
|
69
77
|
"description" : "Placeholder for the search input",
|
|
70
78
|
"message" : "بحث..."
|
|
71
79
|
},
|
|
80
|
+
"filterMultiSelectSelectAllButton.label" : {
|
|
81
|
+
"description" : "Select all button in filter multi select",
|
|
82
|
+
"message" : "حدد الكل"
|
|
83
|
+
},
|
|
72
84
|
"inputSearch.clear" : {
|
|
73
85
|
"description" : "Label for the clear search button",
|
|
74
86
|
"message" : "مسح البحث"
|
package/locales/bg.json
CHANGED
|
@@ -61,6 +61,14 @@
|
|
|
61
61
|
"description" : "Label for the 'date to' field",
|
|
62
62
|
"message" : "До дата"
|
|
63
63
|
},
|
|
64
|
+
"filterMultiSelectClearButton.label" : {
|
|
65
|
+
"description" : "Clear button label for filter multi-select",
|
|
66
|
+
"message" : "Изчистване<VisuallyHidden> на селекциите</VisuallyHidden>"
|
|
67
|
+
},
|
|
68
|
+
"filterMultiSelectMultiSelectOption.available" : {
|
|
69
|
+
"description" : "Number of filter items available",
|
|
70
|
+
"message" : "<Badge>{count}</Badge><VisuallyHidden> налични</VisuallyHidden>"
|
|
71
|
+
},
|
|
64
72
|
"filterMultiSelectSearchInput.label" : {
|
|
65
73
|
"description" : "Label for the search input",
|
|
66
74
|
"message" : "Опции за филтриране по заявка за търсене"
|
|
@@ -69,6 +77,10 @@
|
|
|
69
77
|
"description" : "Placeholder for the search input",
|
|
70
78
|
"message" : "Търсене..."
|
|
71
79
|
},
|
|
80
|
+
"filterMultiSelectSelectAllButton.label" : {
|
|
81
|
+
"description" : "Select all button in filter multi select",
|
|
82
|
+
"message" : "Изберете всички"
|
|
83
|
+
},
|
|
72
84
|
"inputSearch.clear" : {
|
|
73
85
|
"description" : "Label for the clear search button",
|
|
74
86
|
"message" : "Изчисти търсенето"
|
package/locales/cs.json
CHANGED
|
@@ -61,6 +61,14 @@
|
|
|
61
61
|
"description" : "Label for the 'date to' field",
|
|
62
62
|
"message" : "Datum do"
|
|
63
63
|
},
|
|
64
|
+
"filterMultiSelectClearButton.label" : {
|
|
65
|
+
"description" : "Clear button label for filter multi-select",
|
|
66
|
+
"message" : "Vymazat<VisuallyHidden> výběry</VisuallyHidden>"
|
|
67
|
+
},
|
|
68
|
+
"filterMultiSelectMultiSelectOption.available" : {
|
|
69
|
+
"description" : "Number of filter items available",
|
|
70
|
+
"message" : "<Badge>{count}</Badge><VisuallyHidden> k dispozici</VisuallyHidden>"
|
|
71
|
+
},
|
|
64
72
|
"filterMultiSelectSearchInput.label" : {
|
|
65
73
|
"description" : "Label for the search input",
|
|
66
74
|
"message" : "Možnosti filtrování podle vyhledávacího dotazu"
|
|
@@ -69,6 +77,10 @@
|
|
|
69
77
|
"description" : "Placeholder for the search input",
|
|
70
78
|
"message" : "Vyhledat..."
|
|
71
79
|
},
|
|
80
|
+
"filterMultiSelectSelectAllButton.label" : {
|
|
81
|
+
"description" : "Select all button in filter multi select",
|
|
82
|
+
"message" : "Vybrat vše"
|
|
83
|
+
},
|
|
72
84
|
"inputSearch.clear" : {
|
|
73
85
|
"description" : "Label for the clear search button",
|
|
74
86
|
"message" : "Vymazat hledání"
|
package/locales/cy.json
CHANGED
|
@@ -61,6 +61,14 @@
|
|
|
61
61
|
"description" : "Label for the 'date to' field",
|
|
62
62
|
"message" : "Dyddiad i"
|
|
63
63
|
},
|
|
64
|
+
"filterMultiSelectClearButton.label" : {
|
|
65
|
+
"description" : "Clear button label for filter multi-select",
|
|
66
|
+
"message" : "Clirio'r<VisuallyHidden> dewisiadau</VisuallyHidden>"
|
|
67
|
+
},
|
|
68
|
+
"filterMultiSelectMultiSelectOption.available" : {
|
|
69
|
+
"description" : "Number of filter items available",
|
|
70
|
+
"message" : "<Badge>{count}</Badge><VisuallyHidden> ar gael</VisuallyHidden>"
|
|
71
|
+
},
|
|
64
72
|
"filterMultiSelectSearchInput.label" : {
|
|
65
73
|
"description" : "Label for the search input",
|
|
66
74
|
"message" : "Hidlo opsiynau yn ôl ymholiad chwilio"
|
|
@@ -69,6 +77,10 @@
|
|
|
69
77
|
"description" : "Placeholder for the search input",
|
|
70
78
|
"message" : "Chwilio ..."
|
|
71
79
|
},
|
|
80
|
+
"filterMultiSelectSelectAllButton.label" : {
|
|
81
|
+
"description" : "Select all button in filter multi select",
|
|
82
|
+
"message" : "Dewis popeth"
|
|
83
|
+
},
|
|
72
84
|
"inputSearch.clear" : {
|
|
73
85
|
"description" : "Label for the clear search button",
|
|
74
86
|
"message" : "Clirio chwiliad"
|
package/locales/da.json
CHANGED
|
@@ -61,6 +61,14 @@
|
|
|
61
61
|
"description" : "Label for the 'date to' field",
|
|
62
62
|
"message" : "Til dato"
|
|
63
63
|
},
|
|
64
|
+
"filterMultiSelectClearButton.label" : {
|
|
65
|
+
"description" : "Clear button label for filter multi-select",
|
|
66
|
+
"message" : "Ryd<VisuallyHidden> valg</VisuallyHidden>"
|
|
67
|
+
},
|
|
68
|
+
"filterMultiSelectMultiSelectOption.available" : {
|
|
69
|
+
"description" : "Number of filter items available",
|
|
70
|
+
"message" : "<Badge>{count}</Badge><VisuallyHidden> tilgængelig</VisuallyHidden>"
|
|
71
|
+
},
|
|
64
72
|
"filterMultiSelectSearchInput.label" : {
|
|
65
73
|
"description" : "Label for the search input",
|
|
66
74
|
"message" : "Filtrer muligheder efter søgeforespørgsel"
|
|
@@ -69,6 +77,10 @@
|
|
|
69
77
|
"description" : "Placeholder for the search input",
|
|
70
78
|
"message" : "Søg …"
|
|
71
79
|
},
|
|
80
|
+
"filterMultiSelectSelectAllButton.label" : {
|
|
81
|
+
"description" : "Select all button in filter multi select",
|
|
82
|
+
"message" : "Vælg alle"
|
|
83
|
+
},
|
|
72
84
|
"inputSearch.clear" : {
|
|
73
85
|
"description" : "Label for the clear search button",
|
|
74
86
|
"message" : "Ryd søgning"
|
package/locales/de.json
CHANGED
|
@@ -61,6 +61,14 @@
|
|
|
61
61
|
"description" : "Label for the 'date to' field",
|
|
62
62
|
"message" : "Datum bis"
|
|
63
63
|
},
|
|
64
|
+
"filterMultiSelectClearButton.label" : {
|
|
65
|
+
"description" : "Clear button label for filter multi-select",
|
|
66
|
+
"message" : "Clear<VisuallyHidden> selections</VisuallyHidden>"
|
|
67
|
+
},
|
|
68
|
+
"filterMultiSelectMultiSelectOption.available" : {
|
|
69
|
+
"description" : "Number of filter items available",
|
|
70
|
+
"message" : "<Badge>{count}</Badge><VisuallyHidden> available</VisuallyHidden>"
|
|
71
|
+
},
|
|
64
72
|
"filterMultiSelectSearchInput.label" : {
|
|
65
73
|
"description" : "Label for the search input",
|
|
66
74
|
"message" : "Filteroptionen nach Suchanfrage"
|
|
@@ -69,6 +77,10 @@
|
|
|
69
77
|
"description" : "Placeholder for the search input",
|
|
70
78
|
"message" : "Suche läuft …"
|
|
71
79
|
},
|
|
80
|
+
"filterMultiSelectSelectAllButton.label" : {
|
|
81
|
+
"description" : "Select all button in filter multi select",
|
|
82
|
+
"message" : "Alles auswählen"
|
|
83
|
+
},
|
|
72
84
|
"inputSearch.clear" : {
|
|
73
85
|
"description" : "Label for the clear search button",
|
|
74
86
|
"message" : "Suche löschen"
|
package/locales/el.json
CHANGED
|
@@ -61,6 +61,14 @@
|
|
|
61
61
|
"description" : "Label for the 'date to' field",
|
|
62
62
|
"message" : "Ημερομηνία έως"
|
|
63
63
|
},
|
|
64
|
+
"filterMultiSelectClearButton.label" : {
|
|
65
|
+
"description" : "Clear button label for filter multi-select",
|
|
66
|
+
"message" : "Απαλοιφή <VisuallyHidden>επιλογών</VisuallyHidden>"
|
|
67
|
+
},
|
|
68
|
+
"filterMultiSelectMultiSelectOption.available" : {
|
|
69
|
+
"description" : "Number of filter items available",
|
|
70
|
+
"message" : "<Badge>{count}</Badge> <VisuallyHidden>διαθέσιμα</VisuallyHidden>"
|
|
71
|
+
},
|
|
64
72
|
"filterMultiSelectSearchInput.label" : {
|
|
65
73
|
"description" : "Label for the search input",
|
|
66
74
|
"message" : "Φιλτράρισμα επιλογών κατά ερώτημα αναζήτησης"
|
|
@@ -69,6 +77,10 @@
|
|
|
69
77
|
"description" : "Placeholder for the search input",
|
|
70
78
|
"message" : "Αναζήτηση…"
|
|
71
79
|
},
|
|
80
|
+
"filterMultiSelectSelectAllButton.label" : {
|
|
81
|
+
"description" : "Select all button in filter multi select",
|
|
82
|
+
"message" : "Επιλογή όλων"
|
|
83
|
+
},
|
|
72
84
|
"inputSearch.clear" : {
|
|
73
85
|
"description" : "Label for the clear search button",
|
|
74
86
|
"message" : "Διαγραφή αναζήτησης"
|
package/locales/en-GB.json
CHANGED
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
},
|
|
36
36
|
"filterBar.addFiltersMenu.buttonLabel" : {
|
|
37
37
|
"description" : "Menu button label to show additional available filter options",
|
|
38
|
-
"message" : "Add
|
|
38
|
+
"message" : "Add Filters"
|
|
39
39
|
},
|
|
40
40
|
"filterBar.clearAllButton.ariaLabel" : {
|
|
41
41
|
"description" : "Button aria-label to clear all values within the filter bar",
|
|
@@ -61,6 +61,14 @@
|
|
|
61
61
|
"description" : "Label for the 'date to' field",
|
|
62
62
|
"message" : "Date to"
|
|
63
63
|
},
|
|
64
|
+
"filterMultiSelectClearButton.label" : {
|
|
65
|
+
"description" : "Clear button label for filter multi-select",
|
|
66
|
+
"message" : "Clear<VisuallyHidden> selections</VisuallyHidden>"
|
|
67
|
+
},
|
|
68
|
+
"filterMultiSelectMultiSelectOption.available" : {
|
|
69
|
+
"description" : "Number of filter items available",
|
|
70
|
+
"message" : "<Badge>{count}</Badge><VisuallyHidden> available</VisuallyHidden>"
|
|
71
|
+
},
|
|
64
72
|
"filterMultiSelectSearchInput.label" : {
|
|
65
73
|
"description" : "Label for the search input",
|
|
66
74
|
"message" : "Filter options by search query"
|
|
@@ -69,6 +77,10 @@
|
|
|
69
77
|
"description" : "Placeholder for the search input",
|
|
70
78
|
"message" : "Search…"
|
|
71
79
|
},
|
|
80
|
+
"filterMultiSelectSelectAllButton.label" : {
|
|
81
|
+
"description" : "Select all button in filter multi select",
|
|
82
|
+
"message" : "Select all"
|
|
83
|
+
},
|
|
72
84
|
"inputSearch.clear" : {
|
|
73
85
|
"description" : "Label for the clear search button",
|
|
74
86
|
"message" : "Clear search"
|
package/locales/en.json
CHANGED
|
@@ -62,6 +62,14 @@
|
|
|
62
62
|
"description": "Label for the 'date to' field",
|
|
63
63
|
"message": "Date to"
|
|
64
64
|
},
|
|
65
|
+
"filterMultiSelectClearButton.label": {
|
|
66
|
+
"description": "Clear button label for filter multi-select",
|
|
67
|
+
"message": "Clear<VisuallyHidden> selections</VisuallyHidden>"
|
|
68
|
+
},
|
|
69
|
+
"filterMultiSelectMultiSelectOption.available": {
|
|
70
|
+
"description": "Number of filter items available",
|
|
71
|
+
"message": "<Badge>{count}</Badge><VisuallyHidden> available</VisuallyHidden>"
|
|
72
|
+
},
|
|
65
73
|
"filterMultiSelectSearchInput.label": {
|
|
66
74
|
"description": "Label for the search input",
|
|
67
75
|
"message": "Filter options by search query"
|
|
@@ -70,6 +78,10 @@
|
|
|
70
78
|
"description": "Placeholder for the search input",
|
|
71
79
|
"message": "Search…"
|
|
72
80
|
},
|
|
81
|
+
"filterMultiSelectSelectAllButton.label": {
|
|
82
|
+
"description": "Select all button in filter multi select",
|
|
83
|
+
"message": "Select all"
|
|
84
|
+
},
|
|
73
85
|
"inputSearch.clear": {
|
|
74
86
|
"description": "Label for the clear search button",
|
|
75
87
|
"message": "Clear search"
|
package/locales/es-419.json
CHANGED
|
@@ -61,6 +61,14 @@
|
|
|
61
61
|
"description" : "Label for the 'date to' field",
|
|
62
62
|
"message" : "Fecha hasta"
|
|
63
63
|
},
|
|
64
|
+
"filterMultiSelectClearButton.label" : {
|
|
65
|
+
"description" : "Clear button label for filter multi-select",
|
|
66
|
+
"message" : "Borrar<VisuallyHidden> selecciones</VisuallyHidden>"
|
|
67
|
+
},
|
|
68
|
+
"filterMultiSelectMultiSelectOption.available" : {
|
|
69
|
+
"description" : "Number of filter items available",
|
|
70
|
+
"message" : "<Badge>{count}</Badge><VisuallyHidden> disponibles</VisuallyHidden>"
|
|
71
|
+
},
|
|
64
72
|
"filterMultiSelectSearchInput.label" : {
|
|
65
73
|
"description" : "Label for the search input",
|
|
66
74
|
"message" : "Filtrar opciones por consulta de búsqueda"
|
|
@@ -69,6 +77,10 @@
|
|
|
69
77
|
"description" : "Placeholder for the search input",
|
|
70
78
|
"message" : "Buscar..."
|
|
71
79
|
},
|
|
80
|
+
"filterMultiSelectSelectAllButton.label" : {
|
|
81
|
+
"description" : "Select all button in filter multi select",
|
|
82
|
+
"message" : "Seleccionar todo"
|
|
83
|
+
},
|
|
72
84
|
"inputSearch.clear" : {
|
|
73
85
|
"description" : "Label for the clear search button",
|
|
74
86
|
"message" : "Borrar búsqueda"
|
package/locales/es.json
CHANGED
|
@@ -61,6 +61,14 @@
|
|
|
61
61
|
"description" : "Label for the 'date to' field",
|
|
62
62
|
"message" : "Fecha final"
|
|
63
63
|
},
|
|
64
|
+
"filterMultiSelectClearButton.label" : {
|
|
65
|
+
"description" : "Clear button label for filter multi-select",
|
|
66
|
+
"message" : "Borrar<VisuallyHidden> selecciones</VisuallyHidden>"
|
|
67
|
+
},
|
|
68
|
+
"filterMultiSelectMultiSelectOption.available" : {
|
|
69
|
+
"description" : "Number of filter items available",
|
|
70
|
+
"message" : "<Badge>{count}</Badge><VisuallyHidden> disponibles</VisuallyHidden>"
|
|
71
|
+
},
|
|
64
72
|
"filterMultiSelectSearchInput.label" : {
|
|
65
73
|
"description" : "Label for the search input",
|
|
66
74
|
"message" : "Filtrar opciones por consulta de búsqueda"
|
|
@@ -69,6 +77,10 @@
|
|
|
69
77
|
"description" : "Placeholder for the search input",
|
|
70
78
|
"message" : "Buscar…"
|
|
71
79
|
},
|
|
80
|
+
"filterMultiSelectSelectAllButton.label" : {
|
|
81
|
+
"description" : "Select all button in filter multi select",
|
|
82
|
+
"message" : "Seleccionar todo"
|
|
83
|
+
},
|
|
72
84
|
"inputSearch.clear" : {
|
|
73
85
|
"description" : "Label for the clear search button",
|
|
74
86
|
"message" : "Borrar búsqueda"
|
package/locales/et.json
CHANGED
|
@@ -61,6 +61,14 @@
|
|
|
61
61
|
"description" : "Label for the 'date to' field",
|
|
62
62
|
"message" : "Kuupäev kuni"
|
|
63
63
|
},
|
|
64
|
+
"filterMultiSelectClearButton.label" : {
|
|
65
|
+
"description" : "Clear button label for filter multi-select",
|
|
66
|
+
"message" : "Tühjenda<VisuallyHidden> valikud</VisuallyHidden>"
|
|
67
|
+
},
|
|
68
|
+
"filterMultiSelectMultiSelectOption.available" : {
|
|
69
|
+
"description" : "Number of filter items available",
|
|
70
|
+
"message" : "<Badge>{count}</Badge><VisuallyHidden> saadaval</VisuallyHidden>"
|
|
71
|
+
},
|
|
64
72
|
"filterMultiSelectSearchInput.label" : {
|
|
65
73
|
"description" : "Label for the search input",
|
|
66
74
|
"message" : "Filtreerimisvalikud otsingupäringu järgi"
|
|
@@ -69,6 +77,10 @@
|
|
|
69
77
|
"description" : "Placeholder for the search input",
|
|
70
78
|
"message" : "Otsing..."
|
|
71
79
|
},
|
|
80
|
+
"filterMultiSelectSelectAllButton.label" : {
|
|
81
|
+
"description" : "Select all button in filter multi select",
|
|
82
|
+
"message" : "Vali kõik"
|
|
83
|
+
},
|
|
72
84
|
"inputSearch.clear" : {
|
|
73
85
|
"description" : "Label for the clear search button",
|
|
74
86
|
"message" : "Tühjenda otsing"
|
package/locales/fi.json
CHANGED
|
@@ -61,6 +61,14 @@
|
|
|
61
61
|
"description" : "Label for the 'date to' field",
|
|
62
62
|
"message" : "Päättymispäivä"
|
|
63
63
|
},
|
|
64
|
+
"filterMultiSelectClearButton.label" : {
|
|
65
|
+
"description" : "Clear button label for filter multi-select",
|
|
66
|
+
"message" : "Tyhjennä<VisuallyHidden> valinnat</VisuallyHidden>"
|
|
67
|
+
},
|
|
68
|
+
"filterMultiSelectMultiSelectOption.available" : {
|
|
69
|
+
"description" : "Number of filter items available",
|
|
70
|
+
"message" : "<Badge>{count}</Badge><VisuallyHidden> saatavilla</VisuallyHidden>"
|
|
71
|
+
},
|
|
64
72
|
"filterMultiSelectSearchInput.label" : {
|
|
65
73
|
"description" : "Label for the search input",
|
|
66
74
|
"message" : "Suodata vaihtoehdot hakukyselyn mukaan"
|
|
@@ -69,6 +77,10 @@
|
|
|
69
77
|
"description" : "Placeholder for the search input",
|
|
70
78
|
"message" : "Hae…"
|
|
71
79
|
},
|
|
80
|
+
"filterMultiSelectSelectAllButton.label" : {
|
|
81
|
+
"description" : "Select all button in filter multi select",
|
|
82
|
+
"message" : "Valitse kaikki"
|
|
83
|
+
},
|
|
72
84
|
"inputSearch.clear" : {
|
|
73
85
|
"description" : "Label for the clear search button",
|
|
74
86
|
"message" : "Tyhjennä haku"
|
package/locales/fr-CA.json
CHANGED
|
@@ -61,6 +61,14 @@
|
|
|
61
61
|
"description" : "Label for the 'date to' field",
|
|
62
62
|
"message" : "Date de fin"
|
|
63
63
|
},
|
|
64
|
+
"filterMultiSelectClearButton.label" : {
|
|
65
|
+
"description" : "Clear button label for filter multi-select",
|
|
66
|
+
"message" : "Effacer les<VisuallyHidden> sélections</VisuallyHidden>"
|
|
67
|
+
},
|
|
68
|
+
"filterMultiSelectMultiSelectOption.available" : {
|
|
69
|
+
"description" : "Number of filter items available",
|
|
70
|
+
"message" : "<Badge>{count}</Badge><VisuallyHidden> disponible(s)</VisuallyHidden>"
|
|
71
|
+
},
|
|
64
72
|
"filterMultiSelectSearchInput.label" : {
|
|
65
73
|
"description" : "Label for the search input",
|
|
66
74
|
"message" : "Filtrer les options par requête de recherche"
|
|
@@ -69,6 +77,10 @@
|
|
|
69
77
|
"description" : "Placeholder for the search input",
|
|
70
78
|
"message" : "Rechercher..."
|
|
71
79
|
},
|
|
80
|
+
"filterMultiSelectSelectAllButton.label" : {
|
|
81
|
+
"description" : "Select all button in filter multi select",
|
|
82
|
+
"message" : "Sélectionner tout"
|
|
83
|
+
},
|
|
72
84
|
"inputSearch.clear" : {
|
|
73
85
|
"description" : "Label for the clear search button",
|
|
74
86
|
"message" : "Supprimer la recherche"
|
package/locales/fr.json
CHANGED
|
@@ -61,6 +61,14 @@
|
|
|
61
61
|
"description" : "Label for the 'date to' field",
|
|
62
62
|
"message" : "Date de fin"
|
|
63
63
|
},
|
|
64
|
+
"filterMultiSelectClearButton.label" : {
|
|
65
|
+
"description" : "Clear button label for filter multi-select",
|
|
66
|
+
"message" : "Effacer<VisuallyHidden> les sélections</VisuallyHidden>"
|
|
67
|
+
},
|
|
68
|
+
"filterMultiSelectMultiSelectOption.available" : {
|
|
69
|
+
"description" : "Number of filter items available",
|
|
70
|
+
"message" : "<Badge>{count}</Badge><VisuallyHidden> disponible(s)</VisuallyHidden>"
|
|
71
|
+
},
|
|
64
72
|
"filterMultiSelectSearchInput.label" : {
|
|
65
73
|
"description" : "Label for the search input",
|
|
66
74
|
"message" : "Options de filtrage par requête de recherche"
|
|
@@ -69,6 +77,10 @@
|
|
|
69
77
|
"description" : "Placeholder for the search input",
|
|
70
78
|
"message" : "Rechercher..."
|
|
71
79
|
},
|
|
80
|
+
"filterMultiSelectSelectAllButton.label" : {
|
|
81
|
+
"description" : "Select all button in filter multi select",
|
|
82
|
+
"message" : "Sélectionner tout"
|
|
83
|
+
},
|
|
72
84
|
"inputSearch.clear" : {
|
|
73
85
|
"description" : "Label for the clear search button",
|
|
74
86
|
"message" : "Effacer la recherche"
|
package/locales/he.json
CHANGED
|
@@ -61,6 +61,14 @@
|
|
|
61
61
|
"description" : "Label for the 'date to' field",
|
|
62
62
|
"message" : "עד"
|
|
63
63
|
},
|
|
64
|
+
"filterMultiSelectClearButton.label" : {
|
|
65
|
+
"description" : "Clear button label for filter multi-select",
|
|
66
|
+
"message" : "ניקוי<VisuallyHidden> הבחירות</VisuallyHidden>"
|
|
67
|
+
},
|
|
68
|
+
"filterMultiSelectMultiSelectOption.available" : {
|
|
69
|
+
"description" : "Number of filter items available",
|
|
70
|
+
"message" : "<Badge>{count}</Badge><VisuallyHidden> זמינים</VisuallyHidden>"
|
|
71
|
+
},
|
|
64
72
|
"filterMultiSelectSearchInput.label" : {
|
|
65
73
|
"description" : "Label for the search input",
|
|
66
74
|
"message" : "אפשרויות סינון לפי שאילתת חיפוש"
|
|
@@ -69,6 +77,10 @@
|
|
|
69
77
|
"description" : "Placeholder for the search input",
|
|
70
78
|
"message" : "חיפוש..."
|
|
71
79
|
},
|
|
80
|
+
"filterMultiSelectSelectAllButton.label" : {
|
|
81
|
+
"description" : "Select all button in filter multi select",
|
|
82
|
+
"message" : "בחירת הכול"
|
|
83
|
+
},
|
|
72
84
|
"inputSearch.clear" : {
|
|
73
85
|
"description" : "Label for the clear search button",
|
|
74
86
|
"message" : "ניקוי חיפוש"
|