@mailstep/design-system 0.7.78 → 0.7.79-beta.2

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.
@@ -1,8 +0,0 @@
1
- import { default as React } from 'react';
2
- import { SelectProps } from '../Select/types';
3
-
4
- type Props = {
5
- checkAllButton?: boolean;
6
- } & Omit<SelectProps, 'isMulti'>;
7
- declare const SelectFilter: React.FC<Props>;
8
- export default SelectFilter;
@@ -1,29 +0,0 @@
1
- var __assign = (this && this.__assign) || function () {
2
- __assign = Object.assign || function(t) {
3
- for (var s, i = 1, n = arguments.length; i < n; i++) {
4
- s = arguments[i];
5
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
- t[p] = s[p];
7
- }
8
- return t;
9
- };
10
- return __assign.apply(this, arguments);
11
- };
12
- var __rest = (this && this.__rest) || function (s, e) {
13
- var t = {};
14
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
15
- t[p] = s[p];
16
- if (s != null && typeof Object.getOwnPropertySymbols === "function")
17
- for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
18
- if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
19
- t[p[i]] = s[p[i]];
20
- }
21
- return t;
22
- };
23
- import { jsx as _jsx } from "react/jsx-runtime";
24
- import Select from '../Select';
25
- var SelectFilter = function (_a) {
26
- var checkAllButton = _a.checkAllButton, restProps = __rest(_a, ["checkAllButton"]);
27
- return (_jsx(Select, __assign({}, restProps, { optionVariant: "checkbox", multiLabelVariant: "count", isMulti: true, showSelectAllButton: checkAllButton })));
28
- };
29
- export default SelectFilter;
@@ -1,3 +0,0 @@
1
- import { default as MultiSelect } from './MultiSelect';
2
-
3
- export default MultiSelect;
@@ -1,2 +0,0 @@
1
- import MultiSelect from './MultiSelect';
2
- export default MultiSelect;