@ndla/ui 24.2.1 → 25.0.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/es/CompetenceGoals/CompetenceGoalsDialog.js +15 -24
- package/es/CompetenceGoals/index.js +1 -4
- package/es/Filter/FilterButtons.js +10 -11
- package/es/Filter/FilterList.js +82 -152
- package/es/Filter/FilterListPhone.js +180 -272
- package/es/Filter/ToggleItem.js +6 -25
- package/es/Frontpage/FrontpageAllSubjects.js +8 -9
- package/es/Frontpage/FrontpageSearch.js +3 -4
- package/es/LearningPaths/LearningPathMenuModalWrapper.js +1 -2
- package/es/Masthead/Masthead.js +65 -41
- package/es/Masthead/MastheadSearchModal.js +4 -5
- package/es/Masthead/SkipToMainContent.js +24 -0
- package/es/Masthead/index.js +2 -1
- package/es/SearchTypeResult/PopupFilter.js +8 -9
- package/es/SearchTypeResult/SearchFilterContent.js +3 -4
- package/es/SectionHeading/SectionHeading.js +24 -17
- package/es/Subject/index.js +0 -1
- package/es/User/UserInfo.js +11 -3
- package/es/all.css +1 -1
- package/es/index-javascript.js +1 -4
- package/es/index.js +5 -2
- package/es/locale/messages-en.js +1 -0
- package/es/locale/messages-nb.js +1 -0
- package/es/locale/messages-nn.js +1 -0
- package/es/locale/messages-se.js +1 -0
- package/es/locale/messages-sma.js +1 -0
- package/lib/CompetenceGoals/CompetenceGoalsDialog.d.ts +19 -0
- package/lib/CompetenceGoals/CompetenceGoalsDialog.js +13 -25
- package/lib/CompetenceGoals/index.d.ts +1 -0
- package/lib/CompetenceGoals/index.js +1 -33
- package/lib/Filter/FilterButtons.js +9 -9
- package/lib/Filter/FilterList.d.ts +25 -0
- package/lib/Filter/FilterList.js +85 -155
- package/lib/Filter/FilterListPhone.d.ts +32 -0
- package/lib/Filter/FilterListPhone.js +176 -270
- package/lib/Filter/ToggleItem.d.ts +15 -0
- package/lib/Filter/ToggleItem.js +6 -32
- package/lib/Filter/filterClasses.d.ts +2 -0
- package/lib/Filter/index.d.ts +12 -0
- package/lib/Frontpage/FrontpageAllSubjects.js +7 -7
- package/lib/Frontpage/FrontpageSearch.js +2 -3
- package/lib/LearningPaths/LearningPathMenuModalWrapper.js +1 -2
- package/lib/Masthead/Masthead.d.ts +4 -8
- package/lib/Masthead/Masthead.js +65 -49
- package/lib/Masthead/MastheadSearchModal.js +3 -4
- package/lib/Masthead/SkipToMainContent.d.ts +6 -0
- package/lib/Masthead/SkipToMainContent.js +38 -0
- package/lib/Masthead/index.d.ts +2 -1
- package/lib/Masthead/index.js +10 -0
- package/lib/SearchTypeResult/PopupFilter.js +7 -7
- package/lib/SearchTypeResult/SearchFilterContent.js +2 -2
- package/lib/SectionHeading/SectionHeading.d.ts +1 -13
- package/lib/SectionHeading/SectionHeading.js +23 -19
- package/lib/Subject/index.d.ts +0 -1
- package/lib/Subject/index.js +0 -8
- package/lib/User/UserInfo.js +11 -3
- package/lib/all.css +1 -1
- package/lib/index-javascript.js +1 -63
- package/lib/index.d.ts +5 -2
- package/lib/index.js +48 -7
- package/lib/locale/messages-en.d.ts +1 -0
- package/lib/locale/messages-en.js +1 -0
- package/lib/locale/messages-nb.d.ts +1 -0
- package/lib/locale/messages-nb.js +1 -0
- package/lib/locale/messages-nn.d.ts +1 -0
- package/lib/locale/messages-nn.js +1 -0
- package/lib/locale/messages-se.d.ts +1 -0
- package/lib/locale/messages-se.js +1 -0
- package/lib/locale/messages-sma.d.ts +1 -0
- package/lib/locale/messages-sma.js +1 -0
- package/package.json +11 -11
- package/src/.DS_Store +0 -0
- package/src/CompetenceGoals/{CompetenceGoalsDialog.jsx → CompetenceGoalsDialog.tsx} +34 -27
- package/src/CompetenceGoals/index.ts +1 -0
- package/src/Filter/FilterButtons.tsx +0 -1
- package/src/Filter/FilterList.tsx +135 -0
- package/src/Filter/FilterListPhone.tsx +275 -0
- package/src/Filter/ToggleItem.tsx +58 -0
- package/src/Filter/{filterClasses.js → filterClasses.ts} +0 -0
- package/src/Filter/{index.js → index.ts} +0 -0
- package/src/Frontpage/FrontpageAllSubjects.tsx +0 -1
- package/src/Frontpage/FrontpageSearch.tsx +0 -1
- package/src/LearningPaths/LearningPathMenuModalWrapper.tsx +0 -1
- package/src/Masthead/Masthead.tsx +85 -45
- package/src/Masthead/MastheadSearchModal.tsx +0 -1
- package/src/Masthead/SkipToMainContent.tsx +48 -0
- package/src/Masthead/index.ts +2 -1
- package/src/SearchTypeResult/PopupFilter.tsx +0 -1
- package/src/SearchTypeResult/SearchFilterContent.tsx +0 -1
- package/src/SectionHeading/SectionHeading.tsx +29 -16
- package/src/Subject/index.ts +0 -1
- package/src/User/UserInfo.tsx +4 -4
- package/src/index-javascript.js +0 -10
- package/src/index.ts +7 -2
- package/src/locale/messages-en.ts +1 -0
- package/src/locale/messages-nb.ts +1 -0
- package/src/locale/messages-nn.ts +1 -0
- package/src/locale/messages-se.ts +1 -0
- package/src/locale/messages-sma.ts +1 -0
- package/src/main.scss +0 -3
- package/es/CompetenceGoals/CompetenceGoalList.js +0 -58
- package/es/CompetenceGoals/CompetenceGoals.js +0 -159
- package/es/Subject/SubjectFilter.js +0 -42
- package/lib/CompetenceGoals/CompetenceGoalList.js +0 -78
- package/lib/CompetenceGoals/CompetenceGoals.js +0 -184
- package/lib/Subject/SubjectFilter.d.ts +0 -27
- package/lib/Subject/SubjectFilter.js +0 -58
- package/src/CompetenceGoals/CompetenceGoalList.jsx +0 -51
- package/src/CompetenceGoals/CompetenceGoals.jsx +0 -152
- package/src/CompetenceGoals/component.competence-goals.scss +0 -161
- package/src/CompetenceGoals/index.js +0 -6
- package/src/Filter/FilterList.jsx +0 -167
- package/src/Filter/FilterListPhone.jsx +0 -329
- package/src/Filter/ToggleItem.jsx +0 -71
- package/src/Masthead/component.masthead.scss +0 -146
- package/src/SectionHeading/component.section-heading.scss +0 -17
- package/src/Subject/SubjectFilter.tsx +0 -48
package/es/Filter/FilterList.js
CHANGED
|
@@ -1,38 +1,24 @@
|
|
|
1
|
-
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
|
2
|
-
|
|
3
1
|
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
4
2
|
|
|
5
3
|
function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }
|
|
6
4
|
|
|
7
5
|
function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
8
6
|
|
|
9
|
-
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
|
10
|
-
|
|
11
7
|
function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && Symbol.iterator in Object(iter)) return Array.from(iter); }
|
|
12
8
|
|
|
13
9
|
function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }
|
|
14
10
|
|
|
15
|
-
function
|
|
16
|
-
|
|
17
|
-
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
18
|
-
|
|
19
|
-
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
11
|
+
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
20
12
|
|
|
21
|
-
function
|
|
13
|
+
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
22
14
|
|
|
23
|
-
function
|
|
24
|
-
|
|
25
|
-
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
26
|
-
|
|
27
|
-
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
28
|
-
|
|
29
|
-
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
|
|
15
|
+
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
|
30
16
|
|
|
31
|
-
function
|
|
17
|
+
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
|
|
32
18
|
|
|
33
|
-
function
|
|
19
|
+
function _iterableToArrayLimit(arr, i) { if (typeof Symbol === "undefined" || !(Symbol.iterator in Object(arr))) return; var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
|
|
34
20
|
|
|
35
|
-
function
|
|
21
|
+
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
36
22
|
|
|
37
23
|
/*
|
|
38
24
|
* Copyright (c) 2016-present, NDLA.
|
|
@@ -41,151 +27,95 @@ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.g
|
|
|
41
27
|
* LICENSE file in the root directory of this source tree.
|
|
42
28
|
* FRI OG BEGRENSET
|
|
43
29
|
*/
|
|
44
|
-
import React, {
|
|
45
|
-
import PropTypes from 'prop-types';
|
|
30
|
+
import React, { useState } from 'react';
|
|
46
31
|
import { ChevronDown, ChevronUp } from '@ndla/icons/common';
|
|
47
32
|
import { classes } from './filterClasses';
|
|
48
33
|
import ToggleItem from './ToggleItem';
|
|
49
34
|
import { jsx as ___EmotionJSX } from "@emotion/core";
|
|
50
35
|
|
|
51
|
-
var FilterList =
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
36
|
+
var FilterList = function FilterList(_ref) {
|
|
37
|
+
var _ref$modifiers = _ref.modifiers,
|
|
38
|
+
modifiers = _ref$modifiers === void 0 ? '' : _ref$modifiers,
|
|
39
|
+
_ref$preid = _ref.preid,
|
|
40
|
+
preid = _ref$preid === void 0 ? '' : _ref$preid,
|
|
41
|
+
_ref$label = _ref.label,
|
|
42
|
+
label = _ref$label === void 0 ? 'FILTER:' : _ref$label,
|
|
43
|
+
labelNotVisible = _ref.labelNotVisible,
|
|
44
|
+
options = _ref.options,
|
|
45
|
+
_ref$values = _ref.values,
|
|
46
|
+
values = _ref$values === void 0 ? [] : _ref$values,
|
|
47
|
+
_onChange = _ref.onChange,
|
|
48
|
+
defaultVisibleCount = _ref.defaultVisibleCount,
|
|
49
|
+
showLabel = _ref.showLabel,
|
|
50
|
+
hideLabel = _ref.hideLabel,
|
|
51
|
+
alignedGroup = _ref.alignedGroup,
|
|
52
|
+
collapseMobile = _ref.collapseMobile,
|
|
53
|
+
noFilterSelectedLabel = _ref.noFilterSelectedLabel;
|
|
54
|
+
|
|
55
|
+
var _useState = useState(defaultVisibleCount),
|
|
56
|
+
_useState2 = _slicedToArray(_useState, 2),
|
|
57
|
+
visibleCount = _useState2[0],
|
|
58
|
+
setVisibleCount = _useState2[1];
|
|
59
|
+
|
|
60
|
+
var showAll = defaultVisibleCount === undefined || options.length <= defaultVisibleCount;
|
|
61
|
+
var labelModifiers = [];
|
|
62
|
+
|
|
63
|
+
if (labelNotVisible) {
|
|
64
|
+
labelModifiers.push('hidden');
|
|
66
65
|
}
|
|
67
66
|
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
_onChange = _this$props.onChange,
|
|
81
|
-
defaultVisibleCount = _this$props.defaultVisibleCount,
|
|
82
|
-
showLabel = _this$props.showLabel,
|
|
83
|
-
hideLabel = _this$props.hideLabel,
|
|
84
|
-
alignedGroup = _this$props.alignedGroup,
|
|
85
|
-
collapseMobile = _this$props.collapseMobile;
|
|
86
|
-
var showAll = defaultVisibleCount === null || options.length <= defaultVisibleCount;
|
|
87
|
-
var labelModifiers = [];
|
|
88
|
-
|
|
89
|
-
if (labelNotVisible) {
|
|
90
|
-
labelModifiers.push('hidden');
|
|
91
|
-
}
|
|
67
|
+
return ___EmotionJSX("section", classes('list', modifiers), label && ___EmotionJSX("h1", classes('label', labelModifiers), label), noFilterSelectedLabel && options.length === 0 && ___EmotionJSX("span", classes('no-filter-selected'), noFilterSelectedLabel), ___EmotionJSX("ul", classes('item-wrapper', {
|
|
68
|
+
'aligned-grouping': !!alignedGroup,
|
|
69
|
+
'collapse-mobile': !!collapseMobile
|
|
70
|
+
}), options.map(function (option, index) {
|
|
71
|
+
var itemModifiers = [];
|
|
72
|
+
var checked = values.some(function (value) {
|
|
73
|
+
return value === option.value;
|
|
74
|
+
});
|
|
75
|
+
|
|
76
|
+
if (!showAll && !checked && index + 1 > (visibleCount !== null && visibleCount !== void 0 ? visibleCount : 0)) {
|
|
77
|
+
itemModifiers.push('hidden');
|
|
78
|
+
}
|
|
92
79
|
|
|
93
|
-
|
|
94
|
-
'aligned-grouping': alignedGroup,
|
|
95
|
-
'collapse-mobile': collapseMobile
|
|
96
|
-
}), options.map(function (option, index) {
|
|
97
|
-
var itemModifiers = [];
|
|
98
|
-
var checked = values.some(function (value) {
|
|
99
|
-
return value === option.value;
|
|
100
|
-
});
|
|
101
|
-
|
|
102
|
-
if (!showAll && !checked && index + 1 > _this2.state.visibleCount) {
|
|
103
|
-
itemModifiers.push('hidden');
|
|
104
|
-
}
|
|
80
|
+
var disabled = option.noResults || option.hits === 0;
|
|
105
81
|
|
|
106
|
-
|
|
82
|
+
if (disabled) {
|
|
83
|
+
itemModifiers.push('no-results');
|
|
84
|
+
}
|
|
107
85
|
|
|
108
|
-
|
|
109
|
-
|
|
86
|
+
return ___EmotionJSX(ToggleItem, {
|
|
87
|
+
modifiers: itemModifiers,
|
|
88
|
+
id: preid + option.value,
|
|
89
|
+
key: option.value,
|
|
90
|
+
value: option.value,
|
|
91
|
+
disabled: disabled,
|
|
92
|
+
tabIndex: disabled ? -1 : 0,
|
|
93
|
+
checked: checked,
|
|
94
|
+
label: option.title,
|
|
95
|
+
onChange: function onChange(event) {
|
|
96
|
+
var newValues = null;
|
|
97
|
+
|
|
98
|
+
if (event.currentTarget.checked) {
|
|
99
|
+
newValues = [].concat(_toConsumableArray(values), [option.value]);
|
|
100
|
+
} else {
|
|
101
|
+
newValues = values.filter(function (value) {
|
|
102
|
+
return value !== option.value;
|
|
103
|
+
});
|
|
110
104
|
}
|
|
111
105
|
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
id: preid + option.value,
|
|
115
|
-
key: option.value,
|
|
116
|
-
value: option.value,
|
|
117
|
-
disabled: disabled,
|
|
118
|
-
tabIndex: disabled ? -1 : 0,
|
|
119
|
-
checked: checked,
|
|
120
|
-
icon: option.icon,
|
|
121
|
-
label: option.title,
|
|
122
|
-
onChange: function onChange(event) {
|
|
123
|
-
var newValues = null;
|
|
124
|
-
|
|
125
|
-
if (event.currentTarget.checked) {
|
|
126
|
-
newValues = [].concat(_toConsumableArray(values), [option.value]);
|
|
127
|
-
} else {
|
|
128
|
-
newValues = values.filter(function (value) {
|
|
129
|
-
return value !== option.value;
|
|
130
|
-
});
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
if (_onChange) {
|
|
134
|
-
_onChange(newValues, option.value);
|
|
135
|
-
}
|
|
136
|
-
}
|
|
137
|
-
});
|
|
138
|
-
})), !showAll && ___EmotionJSX("button", _extends({}, classes('expand'), {
|
|
139
|
-
type: "button",
|
|
140
|
-
onClick: function onClick() {
|
|
141
|
-
_this2.setState(function (prevState) {
|
|
142
|
-
if (prevState.visibleCount === defaultVisibleCount) {
|
|
143
|
-
return {
|
|
144
|
-
visibleCount: options.length
|
|
145
|
-
};
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
return {
|
|
149
|
-
visibleCount: defaultVisibleCount
|
|
150
|
-
};
|
|
151
|
-
});
|
|
106
|
+
if (_onChange) {
|
|
107
|
+
_onChange(newValues, option.value);
|
|
152
108
|
}
|
|
153
|
-
}
|
|
109
|
+
}
|
|
110
|
+
});
|
|
111
|
+
})), !showAll && ___EmotionJSX("button", _extends({}, classes('expand'), {
|
|
112
|
+
type: "button",
|
|
113
|
+
onClick: function onClick() {
|
|
114
|
+
setVisibleCount(function (prev) {
|
|
115
|
+
return prev === defaultVisibleCount ? options.length : defaultVisibleCount;
|
|
116
|
+
});
|
|
154
117
|
}
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
return FilterList;
|
|
158
|
-
}(Component);
|
|
159
|
-
|
|
160
|
-
var valueShape = PropTypes.oneOfType([PropTypes.string, PropTypes.number]);
|
|
161
|
-
FilterList.propTypes = {
|
|
162
|
-
children: PropTypes.node,
|
|
163
|
-
label: PropTypes.string,
|
|
164
|
-
preid: PropTypes.string,
|
|
165
|
-
labelNotVisible: PropTypes.bool,
|
|
166
|
-
modifiers: PropTypes.string,
|
|
167
|
-
onChange: PropTypes.func,
|
|
168
|
-
// isRequired
|
|
169
|
-
options: PropTypes.arrayOf(PropTypes.shape({
|
|
170
|
-
title: PropTypes.string.isRequired,
|
|
171
|
-
value: valueShape.isRequired,
|
|
172
|
-
hits: PropTypes.number,
|
|
173
|
-
icon: PropTypes.func,
|
|
174
|
-
noResults: PropTypes.bool
|
|
175
|
-
})).isRequired,
|
|
176
|
-
values: PropTypes.arrayOf(valueShape),
|
|
177
|
-
defaultVisibleCount: PropTypes.number,
|
|
178
|
-
showLabel: PropTypes.string,
|
|
179
|
-
noFilterSelectedLabel: PropTypes.string,
|
|
180
|
-
hideLabel: PropTypes.string,
|
|
181
|
-
alignedGroup: PropTypes.bool,
|
|
182
|
-
collapseMobile: PropTypes.bool
|
|
183
|
-
};
|
|
184
|
-
FilterList.defaultProps = {
|
|
185
|
-
label: 'FILTER:',
|
|
186
|
-
preid: '',
|
|
187
|
-
modifiers: '',
|
|
188
|
-
values: [],
|
|
189
|
-
defaultVisibleCount: null
|
|
118
|
+
}), visibleCount === defaultVisibleCount ? ___EmotionJSX(React.Fragment, null, ___EmotionJSX("span", null, showLabel), " ", ___EmotionJSX(ChevronDown, null)) : ___EmotionJSX(React.Fragment, null, ___EmotionJSX("span", null, hideLabel), " ", ___EmotionJSX(ChevronUp, null))));
|
|
190
119
|
};
|
|
120
|
+
|
|
191
121
|
export default FilterList;
|