@pingux/astro 1.4.2-alpha.1 → 1.5.0-alpha.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.
Files changed (41) hide show
  1. package/lib/cjs/components/ListView/ListView.js +12 -13
  2. package/lib/cjs/components/ListView/ListView.test.js +8 -8
  3. package/lib/cjs/components/ListViewItem/ListViewItem.js +0 -2
  4. package/lib/cjs/components/MultiselectFilter/MultiselectFilter.js +143 -0
  5. package/lib/cjs/components/MultiselectFilter/MultiselectFilter.stories.js +283 -0
  6. package/lib/cjs/components/MultiselectFilter/MultiselectFilter.test.js +83 -0
  7. package/lib/cjs/components/MultiselectFilter/index.js +18 -0
  8. package/lib/cjs/components/MultiselectFilterItem/MultiselectFilterItem.js +55 -0
  9. package/lib/cjs/components/MultiselectFilterItem/MultiselectFilterItem.test.js +53 -0
  10. package/lib/cjs/components/MultiselectFilterItem/index.js +18 -0
  11. package/lib/cjs/components/MultiselectListContainer/MultiselectBadge.js +47 -0
  12. package/lib/cjs/components/MultiselectListContainer/MultiselectBadge.test.js +48 -0
  13. package/lib/cjs/components/MultiselectListContainer/MultiselectListContainer.js +157 -0
  14. package/lib/cjs/components/MultiselectListContainer/MultiselectListContainer.test.js +112 -0
  15. package/lib/cjs/components/MultiselectListContainer/index.js +18 -0
  16. package/lib/cjs/index.js +98 -32
  17. package/lib/cjs/styles/variants/buttons.js +25 -1
  18. package/lib/cjs/styles/variants/multiselectListContainer.js +73 -0
  19. package/lib/cjs/styles/variants/text.js +22 -0
  20. package/lib/cjs/styles/variants/variants.js +3 -0
  21. package/lib/components/ListView/ListView.js +12 -13
  22. package/lib/components/ListView/ListView.test.js +8 -8
  23. package/lib/components/ListViewItem/ListViewItem.js +0 -2
  24. package/lib/components/MultiselectFilter/MultiselectFilter.js +118 -0
  25. package/lib/components/MultiselectFilter/MultiselectFilter.stories.js +251 -0
  26. package/lib/components/MultiselectFilter/MultiselectFilter.test.js +69 -0
  27. package/lib/components/MultiselectFilter/index.js +1 -0
  28. package/lib/components/MultiselectFilterItem/MultiselectFilterItem.js +36 -0
  29. package/lib/components/MultiselectFilterItem/MultiselectFilterItem.test.js +37 -0
  30. package/lib/components/MultiselectFilterItem/index.js +1 -0
  31. package/lib/components/MultiselectListContainer/MultiselectBadge.js +31 -0
  32. package/lib/components/MultiselectListContainer/MultiselectBadge.test.js +34 -0
  33. package/lib/components/MultiselectListContainer/MultiselectListContainer.js +123 -0
  34. package/lib/components/MultiselectListContainer/MultiselectListContainer.test.js +81 -0
  35. package/lib/components/MultiselectListContainer/index.js +1 -0
  36. package/lib/index.js +6 -0
  37. package/lib/styles/variants/buttons.js +25 -1
  38. package/lib/styles/variants/multiselectListContainer.js +63 -0
  39. package/lib/styles/variants/text.js +22 -0
  40. package/lib/styles/variants/variants.js +2 -0
  41. package/package.json +1 -1
@@ -81,7 +81,6 @@ var ListViewItem = function ListViewItem(props) {
81
81
  classNames = _useStatusClasses.classNames;
82
82
 
83
83
  return ___EmotionJSX(React.Fragment, null, ___EmotionJSX(Box, _extends({
84
- as: "li",
85
84
  isDisabled: isDisabled,
86
85
  isRow: true
87
86
  }, raRowProps, {
@@ -90,7 +89,6 @@ var ListViewItem = function ListViewItem(props) {
90
89
  as: "div",
91
90
  ref: cellRef
92
91
  }, mergedProps, {
93
- role: "listitem",
94
92
  variant: "boxes.listViewItem",
95
93
  isFocused: isDisabled ? false : isFocusVisible,
96
94
  isDisabled: isDisabled,
@@ -0,0 +1,118 @@
1
+ import _extends from "@babel/runtime-corejs3/helpers/esm/extends";
2
+ import _objectWithoutProperties from "@babel/runtime-corejs3/helpers/esm/objectWithoutProperties";
3
+ import React, { forwardRef } from 'react';
4
+ import PropTypes from 'prop-types';
5
+ import { useFocusRing } from '@react-aria/focus';
6
+ import { mergeProps } from '@react-aria/utils';
7
+ import { isIterableProp } from '../../utils/devUtils/props/isIterable';
8
+ import { useStatusClasses } from '../../hooks';
9
+ import MultiselectBadge from '../MultiselectListContainer/MultiselectBadge';
10
+ import { Box, ListView, MultiselectListContainer, Text } from '../../index';
11
+ /**
12
+ * The MultiselectFilter serves as a filter menu with a menu title
13
+ * and selected count displayed in a badge.
14
+ */
15
+
16
+ import { jsx as ___EmotionJSX } from "@emotion/react";
17
+ var MultiselectFilter = /*#__PURE__*/forwardRef(function (props, ref) {
18
+ var selectedFilterCount = props.selectedFilterCount,
19
+ className = props.className,
20
+ closeAriaLabel = props.closeAriaLabel,
21
+ children = props.children,
22
+ isDefaultOpen = props.isDefaultOpen,
23
+ isOpen = props.isOpen,
24
+ items = props.items,
25
+ listTitle = props.listTitle,
26
+ onOpenChange = props.onOpenChange,
27
+ onSelectionChange = props.onSelectionChange,
28
+ openAriaLabel = props.openAriaLabel,
29
+ others = _objectWithoutProperties(props, ["selectedFilterCount", "className", "closeAriaLabel", "children", "isDefaultOpen", "isOpen", "items", "listTitle", "onOpenChange", "onSelectionChange", "openAriaLabel"]);
30
+
31
+ var _useFocusRing = useFocusRing({
32
+ within: true
33
+ }),
34
+ focusWithinProps = _useFocusRing.focusProps;
35
+
36
+ var _useFocusRing2 = useFocusRing(),
37
+ focusProps = _useFocusRing2.focusProps,
38
+ isFocusVisible = _useFocusRing2.isFocusVisible;
39
+
40
+ var mergedProps = mergeProps(focusWithinProps, focusProps);
41
+
42
+ var _useStatusClasses = useStatusClasses(className, {
43
+ isFocused: isFocusVisible
44
+ }),
45
+ classNames = _useStatusClasses.classNames;
46
+
47
+ return ___EmotionJSX(MultiselectListContainer, {
48
+ closeAriaLabel: closeAriaLabel,
49
+ isDefaultOpen: isDefaultOpen,
50
+ isOpen: isOpen,
51
+ onOpenChange: onOpenChange,
52
+ openAriaLabel: openAriaLabel,
53
+ selectedFilterCount: selectedFilterCount
54
+ }, ___EmotionJSX(Box, _extends({
55
+ className: classNames,
56
+ "data-testid": "multiselect-filter",
57
+ ref: ref,
58
+ tabIndex: 0,
59
+ variant: "multiselectListContainer.multiselectListContent"
60
+ }, mergedProps, others), ___EmotionJSX(Box, {
61
+ isRow: true,
62
+ variant: "multiselectListContainer.multiselectListTitle"
63
+ }, ___EmotionJSX(Text, {
64
+ variant: "multiselectFilterTitle"
65
+ }, listTitle), selectedFilterCount && ___EmotionJSX(MultiselectBadge, {
66
+ margin: "0",
67
+ selectedFilterCount: selectedFilterCount
68
+ })), ___EmotionJSX(Box, {
69
+ pl: "xs",
70
+ pr: "xs"
71
+ }, ___EmotionJSX(ListView, {
72
+ items: items,
73
+ onSelectionChange: onSelectionChange,
74
+ selectionMode: "multiple",
75
+ style: {
76
+ width: '100%'
77
+ },
78
+ pl: "md"
79
+ }, children))));
80
+ });
81
+ MultiselectFilter.propTypes = {
82
+ /** Amount of selected items indicator. */
83
+ selectedFilterCount: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
84
+
85
+ /** Title of list content. */
86
+ listTitle: PropTypes.string,
87
+
88
+ /** Defines a string value that labels the trigger icon when menu is open. */
89
+ closeAriaLabel: PropTypes.string,
90
+
91
+ /** Sets the default open state of the overlay. */
92
+ isDefaultOpen: PropTypes.bool,
93
+
94
+ /** Whether the overlay is currently open. */
95
+ isOpen: PropTypes.bool,
96
+
97
+ /** The list of ListView items (controlled). */
98
+ items: isIterableProp,
99
+
100
+ /**
101
+ * Method that is called when the open state of the menu changes.
102
+ * Returns the new open state and the action that caused the opening of the menu.
103
+ *
104
+ * `(isOpen: boolean, overlayTrigger: OverlayTriggerAction) => void`
105
+ */
106
+ onOpenChange: PropTypes.func,
107
+
108
+ /** Callback function that fires when the selected key changes. */
109
+ onSelectionChange: PropTypes.func,
110
+
111
+ /** Defines a string value that labels the trigger icon when menu is closed. */
112
+ openAriaLabel: PropTypes.string
113
+ };
114
+ MultiselectFilter.defaultProps = {
115
+ isDefaultOpen: true
116
+ };
117
+ MultiselectFilter.displayName = 'MultiselectFilter';
118
+ export default MultiselectFilter;
@@ -0,0 +1,251 @@
1
+ import _extends from "@babel/runtime-corejs3/helpers/esm/extends";
2
+ import React, { useRef } from 'react';
3
+ import AccountGroupIcon from 'mdi-react/AccountGroupIcon';
4
+ import Clear from 'mdi-react/CloseIcon';
5
+ import ChevronRightIcon from 'mdi-react/ChevronRightIcon';
6
+ import FilterIcon from 'mdi-react/FilterIcon';
7
+ import SearchIcon from 'mdi-react/SearchIcon';
8
+ import PersonIcon from 'mdi-react/PersonIcon';
9
+ import MultiselectFilter from './MultiselectFilter';
10
+ import { useOverlayPanelState } from '../../hooks';
11
+ import { Breadcrumbs, Box, Button, Chip, ListView, Item, Icon, IconButton, MultiselectFilterItem, OverlayPanel, OverlayProvider, SearchField, Text } from '../../index';
12
+ import { jsx as ___EmotionJSX } from "@emotion/react";
13
+ export default {
14
+ title: 'MultiselectFilter',
15
+ component: MultiselectFilter,
16
+ argTypes: {
17
+ listTitle: {
18
+ defaultValue: 'Selected Groups'
19
+ },
20
+ openAriaLabel: {
21
+ defaultValue: 'Open filter menu?'
22
+ },
23
+ closeAriaLabel: {
24
+ defaultValue: 'Close filter menu?'
25
+ },
26
+ isDefaultOpen: {},
27
+ isOpen: {
28
+ onClick: {
29
+ action: 'clicked'
30
+ },
31
+ control: {
32
+ type: 'none'
33
+ }
34
+ }
35
+ }
36
+ };
37
+ var items = [{
38
+ id: '1',
39
+ icon: 'Group',
40
+ key: 'Avengers',
41
+ name: 'Avengers',
42
+ subtitle: 'Default',
43
+ chipValue: '25'
44
+ }, {
45
+ id: '2',
46
+ icon: 'Group',
47
+ key: 'Credit Cards',
48
+ name: 'Credit Cards',
49
+ subtitle: '',
50
+ chipValue: '123'
51
+ }, {
52
+ id: '3',
53
+ icon: 'Group',
54
+ key: 'Debit Cards',
55
+ name: 'Debit Cards',
56
+ subtitle: '',
57
+ chipValue: '23'
58
+ }, {
59
+ id: '4',
60
+ icon: 'Group',
61
+ key: 'Digital Investors',
62
+ name: 'Digital Investors',
63
+ subtitle: 'N America',
64
+ chipValue: '12'
65
+ }, {
66
+ id: '5',
67
+ icon: 'Group',
68
+ key: 'Mortgages',
69
+ name: 'Mortgages',
70
+ subtitle: 'N America',
71
+ chipValue: '112'
72
+ }, {
73
+ id: '6',
74
+ icon: 'Group',
75
+ key: 'Person LOC',
76
+ name: 'Person LOC',
77
+ subtitle: '',
78
+ chipValue: '45'
79
+ }, {
80
+ id: '7',
81
+ icon: 'Group',
82
+ key: 'Production',
83
+ name: 'Production',
84
+ subtitle: '',
85
+ chipValue: '55'
86
+ }, {
87
+ id: '8',
88
+ icon: 'Group',
89
+ key: 'UX Team',
90
+ name: 'UX Team',
91
+ subtitle: '',
92
+ chipValue: '61'
93
+ }, {
94
+ id: '9',
95
+ icon: 'Group',
96
+ key: 'UI Team',
97
+ name: 'UI Team',
98
+ subtitle: '',
99
+ chipValue: '29'
100
+ }];
101
+ var mockData = [{
102
+ id: '10',
103
+ key: 'Avengers',
104
+ name: 'Avengers'
105
+ }, {
106
+ id: '11',
107
+ key: 'Digital Investors',
108
+ name: 'Digital Investors'
109
+ }, {
110
+ id: '12',
111
+ key: 'A very long title as well',
112
+ name: 'A very long title as well'
113
+ }];
114
+
115
+ var changeSelection = function changeSelection(selected) {
116
+ console.log(selected);
117
+ };
118
+
119
+ export var Default = function Default(args) {
120
+ return ___EmotionJSX(MultiselectFilter, args);
121
+ };
122
+ export var MultiselectWithBadge = function MultiselectWithBadge(args) {
123
+ var _useOverlayPanelState = useOverlayPanelState(),
124
+ state = _useOverlayPanelState.state,
125
+ onClose = _useOverlayPanelState.onClose;
126
+
127
+ var triggerRef = useRef();
128
+ return ___EmotionJSX(OverlayProvider, null, ___EmotionJSX(Button, {
129
+ ref: triggerRef,
130
+ onPress: state.open
131
+ }, "Open Panel"), ___EmotionJSX(OverlayPanel, {
132
+ isOpen: state.isOpen,
133
+ size: "large",
134
+ p: "0"
135
+ }, ___EmotionJSX(Box, {
136
+ sx: {
137
+ minHeight: '60px'
138
+ },
139
+ bg: "accent.99"
140
+ }, ___EmotionJSX(Box, {
141
+ isRow: true,
142
+ flexBasis: "0px",
143
+ flexGrow: "1",
144
+ alignItems: "center",
145
+ pl: "md",
146
+ pr: "md",
147
+ justifyContent: "space-between",
148
+ zIndex: 2
149
+ }, ___EmotionJSX(Box, {
150
+ isRow: true
151
+ }, ___EmotionJSX(Icon, {
152
+ icon: PersonIcon,
153
+ alignSelf: "center",
154
+ mr: "md",
155
+ color: "accent.40",
156
+ size: 25,
157
+ flexShrink: 0,
158
+ display: "flex"
159
+ }), ___EmotionJSX(Breadcrumbs, {
160
+ icon: ChevronRightIcon
161
+ }, ___EmotionJSX(Item, {
162
+ key: "home",
163
+ variant: "link",
164
+ "data-id": "home"
165
+ }, "Ed Nepomuceno"), ___EmotionJSX(Item, {
166
+ key: "editGroups",
167
+ variant: "neutralText",
168
+ "data-id": "editGroups"
169
+ }, "Edit Groups"))), ___EmotionJSX(Box, {
170
+ isRow: true
171
+ }, ___EmotionJSX(IconButton, {
172
+ "aria-label": "Close Panel",
173
+ onPress: function onPress() {
174
+ onClose(state, triggerRef);
175
+ }
176
+ }, ___EmotionJSX(Icon, {
177
+ icon: Clear,
178
+ size: 20
179
+ }))))), ___EmotionJSX(Box, {
180
+ pl: "md",
181
+ pt: "25px"
182
+ }, ___EmotionJSX(Box, {
183
+ isRow: true,
184
+ justifyContent: "space-between"
185
+ }, ___EmotionJSX(Box, {
186
+ width: "100%"
187
+ }, ___EmotionJSX(SearchField, {
188
+ icon: SearchIcon,
189
+ "aria-label": "Search",
190
+ placeholder: "Search",
191
+ width: "100%",
192
+ mt: "0px",
193
+ mr: "sm"
194
+ }), ___EmotionJSX(ListView, {
195
+ items: items,
196
+ style: {
197
+ width: '108%'
198
+ }
199
+ }, function (item) {
200
+ return ___EmotionJSX(Item, {
201
+ key: item.key,
202
+ textValue: item.name,
203
+ "data-id": item.key,
204
+ listItemProps: {
205
+ sx: {
206
+ bg: 'white',
207
+ '&.is-hovered': {
208
+ bg: 'accent.99'
209
+ }
210
+ }
211
+ }
212
+ }, ___EmotionJSX(Box, {
213
+ isRow: true
214
+ }, ___EmotionJSX(Icon, {
215
+ icon: AccountGroupIcon,
216
+ alignSelf: "center",
217
+ mr: "md",
218
+ color: "accent.40",
219
+ size: 25,
220
+ flexShrink: 1
221
+ }), ___EmotionJSX(Box, null, ___EmotionJSX(Box, {
222
+ isRow: true
223
+ }, ___EmotionJSX(Text, {
224
+ variant: "listTitle",
225
+ mb: "xs",
226
+ mr: "xs"
227
+ }, item.name), ___EmotionJSX(Chip, {
228
+ label: item.chipValue,
229
+ bg: "accent.99",
230
+ textColor: "text.secondary",
231
+ sx: {
232
+ minWidth: 'max-content'
233
+ }
234
+ })), ___EmotionJSX(Text, {
235
+ variant: "listSubtitle"
236
+ }, item.subtitle))));
237
+ })), ___EmotionJSX(MultiselectFilter, _extends({
238
+ items: mockData,
239
+ onSelectionChange: changeSelection,
240
+ selectedFilterCount: "1000+"
241
+ }, args), function (item) {
242
+ return ___EmotionJSX(Item, {
243
+ key: item.key,
244
+ textValue: item.name,
245
+ "data-id": item.key
246
+ }, ___EmotionJSX(MultiselectFilterItem, {
247
+ text: item.name,
248
+ icon: FilterIcon
249
+ }));
250
+ })))));
251
+ };
@@ -0,0 +1,69 @@
1
+ import _extends from "@babel/runtime-corejs3/helpers/esm/extends";
2
+ import React from 'react';
3
+ import axeTest from '../../utils/testUtils/testAxe';
4
+ import { render, screen } from '../../utils/testUtils/testWrapper';
5
+ import MultiselectFilter from './MultiselectFilter';
6
+ import { jsx as ___EmotionJSX } from "@emotion/react";
7
+ var testId = 'multiselect-filter-item';
8
+ var onSelectionChange = jest.fn();
9
+ var defaultProps = {
10
+ 'data-testid': testId,
11
+ isOpen: true,
12
+ items: [{
13
+ name: 'item name'
14
+ }],
15
+ listTitle: 'Selected Groups',
16
+ selectedFilterCount: 8,
17
+ onSelectionChange: onSelectionChange
18
+ };
19
+
20
+ var getComponent = function getComponent() {
21
+ var props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
22
+ return render(___EmotionJSX(MultiselectFilter, _extends({}, defaultProps, props)));
23
+ };
24
+
25
+ beforeAll(function () {
26
+ jest.spyOn(window.HTMLElement.prototype, 'clientWidth', 'get').mockImplementation(function () {
27
+ return 1000;
28
+ });
29
+ jest.spyOn(window.HTMLElement.prototype, 'clientHeight', 'get').mockImplementation(function () {
30
+ return 1000;
31
+ });
32
+ window.HTMLElement.prototype.scrollIntoView = jest.fn();
33
+ jest.spyOn(window.screen, 'width', 'get').mockImplementation(function () {
34
+ return 1024;
35
+ });
36
+ jest.spyOn(window, 'requestAnimationFrame').mockImplementation(function (cb) {
37
+ return cb();
38
+ });
39
+ });
40
+ afterEach(function () {
41
+ jest.clearAllMocks();
42
+ onSelectionChange.mockClear();
43
+ });
44
+ afterAll(function () {
45
+ jest.restoreAllMocks();
46
+ }); // Need to be added to each test file to test accessibility using axe.
47
+
48
+ axeTest(getComponent, {
49
+ rules: {
50
+ 'aria-required-children': {
51
+ enabled: false
52
+ },
53
+ 'aria-required-parent': {
54
+ enabled: false
55
+ }
56
+ }
57
+ });
58
+ test('default multiselectFilter', function () {
59
+ getComponent();
60
+ var multiselectFilter = screen.getByTestId(testId);
61
+ expect(multiselectFilter).toBeInTheDocument();
62
+ });
63
+ test('custom classname can be passed', function () {
64
+ getComponent({
65
+ className: 'testing-class'
66
+ });
67
+ var multiselectFilter = screen.getByTestId(testId);
68
+ expect(multiselectFilter).toHaveClass('testing-class');
69
+ });
@@ -0,0 +1 @@
1
+ export { default } from './MultiselectFilter';
@@ -0,0 +1,36 @@
1
+ import React, { forwardRef } from 'react';
2
+ import PropTypes from 'prop-types';
3
+ import { Box, Icon, Text } from '../../index';
4
+ import { jsx as ___EmotionJSX } from "@emotion/react";
5
+ var MultiselectFilterItem = /*#__PURE__*/forwardRef(function (props, ref) {
6
+ var text = props.text,
7
+ icon = props.icon;
8
+ return ___EmotionJSX(Box, {
9
+ "data-testid": "multiselect-filter-item",
10
+ isRow: true,
11
+ justifyContent: "space-between",
12
+ ref: ref
13
+ }, ___EmotionJSX(Text, {
14
+ variant: "multiselectFilterItem"
15
+ }, text), icon && ___EmotionJSX(Icon, {
16
+ "data-testid": "multiselect-filter-data-icon",
17
+ icon: icon,
18
+ mr: "md",
19
+ color: "neutral.10",
20
+ size: 13,
21
+ flexShrink: 0
22
+ }));
23
+ });
24
+ MultiselectFilterItem.propTypes = {
25
+ /**
26
+ * Display text.
27
+ */
28
+ text: PropTypes.string,
29
+
30
+ /**
31
+ * List icon.
32
+ */
33
+ icon: PropTypes.shape({})
34
+ };
35
+ MultiselectFilterItem.displayName = 'MultiselectFilterItem';
36
+ export default MultiselectFilterItem;
@@ -0,0 +1,37 @@
1
+ import _extends from "@babel/runtime-corejs3/helpers/esm/extends";
2
+ import React from 'react';
3
+ import FilterIcon from 'mdi-react/FilterIcon';
4
+ import axeTest from '../../utils/testUtils/testAxe';
5
+ import { render, screen } from '../../utils/testUtils/testWrapper';
6
+ import MultiselectFilterItem from './MultiselectFilterItem';
7
+ import { jsx as ___EmotionJSX } from "@emotion/react";
8
+ var testId = 'multiselect-filter-item';
9
+ var iconId = 'multiselect-filter-data-icon';
10
+ var defaultProps = {
11
+ text: 'Item name'
12
+ };
13
+
14
+ var getComponent = function getComponent() {
15
+ var props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
16
+ return render(___EmotionJSX(MultiselectFilterItem, _extends({}, defaultProps, props)));
17
+ };
18
+
19
+ afterEach(function () {
20
+ jest.restoreAllMocks();
21
+ }); // Need to be added to each test file to test accessibility using axe.
22
+
23
+ axeTest(getComponent);
24
+ test('default multiselectFilter', function () {
25
+ getComponent();
26
+ var multiselectFilterItem = screen.getByTestId(testId);
27
+ var icon = screen.queryByTestId(iconId);
28
+ expect(icon).not.toBeInTheDocument();
29
+ expect(multiselectFilterItem).toBeInTheDocument();
30
+ });
31
+ test('icon displays when icon prop is present', function () {
32
+ getComponent({
33
+ icon: FilterIcon
34
+ });
35
+ var icon = screen.getByTestId(iconId);
36
+ expect(icon).toBeInTheDocument();
37
+ });
@@ -0,0 +1 @@
1
+ export { default } from './MultiselectFilterItem';
@@ -0,0 +1,31 @@
1
+ import _extends from "@babel/runtime-corejs3/helpers/esm/extends";
2
+ import _objectWithoutProperties from "@babel/runtime-corejs3/helpers/esm/objectWithoutProperties";
3
+ import React from 'react';
4
+ import PropTypes from 'prop-types';
5
+ import Chip from '../Chip';
6
+ /**
7
+ * The MultiselectBadge serves as a badge to display selected count.
8
+ */
9
+
10
+ import { jsx as ___EmotionJSX } from "@emotion/react";
11
+
12
+ var MultiselectBadge = function MultiselectBadge(props) {
13
+ var selectedFilterCount = props.selectedFilterCount,
14
+ others = _objectWithoutProperties(props, ["selectedFilterCount"]);
15
+
16
+ return ___EmotionJSX(Chip, _extends({
17
+ as: "span",
18
+ bg: "neutral.90",
19
+ label: selectedFilterCount.toString(),
20
+ textColor: "neutral.30",
21
+ variant: "multiselectListContainer.multiselectListBadge",
22
+ isUppercase: true
23
+ }, others));
24
+ };
25
+
26
+ MultiselectBadge.propTypes = {
27
+ selectedFilterCount: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
28
+ margin: PropTypes.string
29
+ };
30
+ MultiselectBadge.displayName = 'MultiselectBadge';
31
+ export default MultiselectBadge;
@@ -0,0 +1,34 @@
1
+ import _extends from "@babel/runtime-corejs3/helpers/esm/extends";
2
+ import React from 'react';
3
+ import axeTest from '../../utils/testUtils/testAxe';
4
+ import { render, screen } from '../../utils/testUtils/testWrapper';
5
+ import MultiselectBadge from './MultiselectBadge';
6
+ import { jsx as ___EmotionJSX } from "@emotion/react";
7
+ var testId = 'test-multiselectBadge';
8
+ var defaultProps = {
9
+ 'data-testid': testId,
10
+ selectedFilterCount: 9
11
+ };
12
+
13
+ var getComponent = function getComponent() {
14
+ var props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
15
+ return render(___EmotionJSX(MultiselectBadge, _extends({}, defaultProps, props)));
16
+ };
17
+
18
+ afterEach(function () {
19
+ jest.restoreAllMocks();
20
+ }); // Need to be added to each test file to test accessibility using axe.
21
+
22
+ axeTest(getComponent);
23
+ test('default multiselectBadge', function () {
24
+ getComponent();
25
+ var multiselectBadge = screen.getByTestId(testId);
26
+ expect(multiselectBadge).toBeInTheDocument();
27
+ });
28
+ test('custom classname can be passed', function () {
29
+ getComponent({
30
+ className: 'testing-class'
31
+ });
32
+ var multiselectBadge = screen.getByTestId(testId);
33
+ expect(multiselectBadge).toHaveClass('testing-class');
34
+ });