@driveflux/beam 1.11.14 → 1.11.16

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 +1 @@
1
- {"version":3,"file":"IconDot.js","sourceRoot":"","sources":["../../src/icons/IconDot.tsx"],"names":[],"mappings":";AACA,OAAO,EAAE,IAAI,EAAkB,MAAM,QAAQ,CAAA;AAE7C,MAAM,QAAQ,GAAG;IAChB,OAAO,EAAE,CACR,4BACC,iBAAQ,IAAI,EAAC,cAAc,EAAC,EAAE,EAAC,GAAG,EAAC,EAAE,EAAC,GAAG,EAAC,CAAC,EAAC,GAAG,GAAG,GAChD,CACH;IACD,QAAQ,EAAE,CACT,8BACC,eACC,CAAC,EAAC,yKAAyK,EAC3K,IAAI,EAAC,cAAc,GAClB,EACF,eACC,CAAC,EAAC,8GAA8G,EAChH,IAAI,EAAC,cAAc,GAClB,IACA,CACH;CACD,CAAA;AAED,MAAM,OAAO,GAAmC,CAAC,EAChD,OAAO,GAAG,WAAW,EACrB,OAAO,GAAG,SAAS,EACnB,GAAG,KAAK,EACR,EAAE,EAAE,CAAC,KAAC,IAAI,IAAC,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,QAAQ,CAAC,OAAO,CAAC,KAAM,KAAK,GAAI,CAAA;AAEvE,eAAe,OAAO,CAAA"}
1
+ {"version":3,"file":"IconDot.js","sourceRoot":"","sources":["../../src/icons/IconDot.tsx"],"names":[],"mappings":";AACA,OAAO,EAAE,IAAI,EAAkB,MAAM,QAAQ,CAAA;AAE7C,MAAM,QAAQ,GAAG;IAChB,OAAO,EAAE,CACR,4BACC,iBAAQ,IAAI,EAAC,cAAc,EAAC,EAAE,EAAC,GAAG,EAAC,EAAE,EAAC,GAAG,EAAC,CAAC,EAAC,GAAG,GAAG,GAChD,CACH;IACD,QAAQ,EAAE,CACT,8BACC,eACC,CAAC,EAAC,iLAAiL,EACnL,IAAI,EAAC,cAAc,GAClB,EACF,eACC,CAAC,EAAC,8GAA8G,EAChH,IAAI,EAAC,cAAc,GAClB,IACA,CACH;CACD,CAAA;AAED,MAAM,OAAO,GAAmC,CAAC,EAChD,OAAO,GAAG,WAAW,EACrB,OAAO,GAAG,SAAS,EACnB,GAAG,KAAK,EACR,EAAE,EAAE,CAAC,KAAC,IAAI,IAAC,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,QAAQ,CAAC,OAAO,CAAC,KAAM,KAAK,GAAI,CAAA;AAEvE,eAAe,OAAO,CAAA"}
@@ -0,0 +1,8 @@
1
+ import type { FC } from 'react';
2
+ import { type IconProps } from './Icon';
3
+ declare const variants: {
4
+ default: import("react/jsx-runtime").JSX.Element;
5
+ };
6
+ declare const IconDownload: FC<IconProps<typeof variants>>;
7
+ export default IconDownload;
8
+ //# sourceMappingURL=IconDownload.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IconDownload.d.ts","sourceRoot":"","sources":["../../src/icons/IconDownload.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,OAAO,CAAA;AAC/B,OAAO,EAAQ,KAAK,SAAS,EAAE,MAAM,QAAQ,CAAA;AAE7C,QAAA,MAAM,QAAQ;;CAUb,CAAA;AAED,QAAA,MAAM,YAAY,EAAE,EAAE,CAAC,SAAS,CAAC,OAAO,QAAQ,CAAC,CAIsB,CAAA;AAEvE,eAAe,YAAY,CAAA"}
@@ -0,0 +1,82 @@
1
+ function _define_property(obj, key, value) {
2
+ if (key in obj) {
3
+ Object.defineProperty(obj, key, {
4
+ value: value,
5
+ enumerable: true,
6
+ configurable: true,
7
+ writable: true
8
+ });
9
+ } else {
10
+ obj[key] = value;
11
+ }
12
+ return obj;
13
+ }
14
+ function _object_spread(target) {
15
+ for(var i = 1; i < arguments.length; i++){
16
+ var source = arguments[i] != null ? arguments[i] : {};
17
+ var ownKeys = Object.keys(source);
18
+ if (typeof Object.getOwnPropertySymbols === "function") {
19
+ ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function(sym) {
20
+ return Object.getOwnPropertyDescriptor(source, sym).enumerable;
21
+ }));
22
+ }
23
+ ownKeys.forEach(function(key) {
24
+ _define_property(target, key, source[key]);
25
+ });
26
+ }
27
+ return target;
28
+ }
29
+ function _object_without_properties(source, excluded) {
30
+ if (source == null) return {};
31
+ var target = _object_without_properties_loose(source, excluded);
32
+ var key, i;
33
+ if (Object.getOwnPropertySymbols) {
34
+ var sourceSymbolKeys = Object.getOwnPropertySymbols(source);
35
+ for(i = 0; i < sourceSymbolKeys.length; i++){
36
+ key = sourceSymbolKeys[i];
37
+ if (excluded.indexOf(key) >= 0) continue;
38
+ if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue;
39
+ target[key] = source[key];
40
+ }
41
+ }
42
+ return target;
43
+ }
44
+ function _object_without_properties_loose(source, excluded) {
45
+ if (source == null) return {};
46
+ var target = {};
47
+ var sourceKeys = Object.keys(source);
48
+ var key, i;
49
+ for(i = 0; i < sourceKeys.length; i++){
50
+ key = sourceKeys[i];
51
+ if (excluded.indexOf(key) >= 0) continue;
52
+ target[key] = source[key];
53
+ }
54
+ return target;
55
+ }
56
+ import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
57
+ import { Icon } from './Icon';
58
+ var variants = {
59
+ default: /*#__PURE__*/ _jsxs(_Fragment, {
60
+ children: [
61
+ /*#__PURE__*/ _jsx("path", {
62
+ d: "M11.8484 9.26797L7.99844 13.168L4.14844 9.26797L4.84844 8.56797L7.49844 11.218V2.66797H8.49844V11.218L11.1484 8.56797L11.8484 9.26797Z",
63
+ fill: "currentColor"
64
+ }),
65
+ /*#__PURE__*/ _jsx("path", {
66
+ d: "M12.5 13.668H3.5V14.668H12.5V13.668Z",
67
+ fill: "currentColor"
68
+ })
69
+ ]
70
+ })
71
+ };
72
+ var IconDownload = function(_param) {
73
+ var _param_viewBox = _param.viewBox, viewBox = _param_viewBox === void 0 ? '0 0 16 16' : _param_viewBox, _param_variant = _param.variant, variant = _param_variant === void 0 ? 'default' : _param_variant, props = _object_without_properties(_param, [
74
+ "viewBox",
75
+ "variant"
76
+ ]);
77
+ return /*#__PURE__*/ _jsx(Icon, _object_spread({
78
+ viewBox: viewBox,
79
+ element: variants[variant]
80
+ }, props));
81
+ };
82
+ export default IconDownload;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IconDownload.js","sourceRoot":"","sources":["../../src/icons/IconDownload.tsx"],"names":[],"mappings":";AACA,OAAO,EAAE,IAAI,EAAkB,MAAM,QAAQ,CAAA;AAE7C,MAAM,QAAQ,GAAG;IAChB,OAAO,EAAE,CACR,8BACC,eACC,CAAC,EAAC,wIAAwI,EAC1I,IAAI,EAAC,cAAc,GAClB,EACF,eAAM,CAAC,EAAC,sCAAsC,EAAC,IAAI,EAAC,cAAc,GAAG,IACnE,CACH;CACD,CAAA;AAED,MAAM,YAAY,GAAmC,CAAC,EACrD,OAAO,GAAG,WAAW,EACrB,OAAO,GAAG,SAAS,EACnB,GAAG,KAAK,EACR,EAAE,EAAE,CAAC,KAAC,IAAI,IAAC,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,QAAQ,CAAC,OAAO,CAAC,KAAM,KAAK,GAAI,CAAA;AAEvE,eAAe,YAAY,CAAA"}
@@ -0,0 +1,8 @@
1
+ import type { FC } from 'react';
2
+ import { type IconProps } from './Icon';
3
+ declare const variants: {
4
+ default: import("react/jsx-runtime").JSX.Element;
5
+ };
6
+ declare const IconExpandAll: FC<IconProps<typeof variants>>;
7
+ export default IconExpandAll;
8
+ //# sourceMappingURL=IconExpandAll.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IconExpandAll.d.ts","sourceRoot":"","sources":["../../src/icons/IconExpandAll.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,OAAO,CAAA;AAC/B,OAAO,EAAQ,KAAK,SAAS,EAAE,MAAM,QAAQ,CAAA;AAE7C,QAAA,MAAM,QAAQ;;CAsBb,CAAA;AAED,QAAA,MAAM,aAAa,EAAE,EAAE,CAAC,SAAS,CAAC,OAAO,QAAQ,CAAC,CAIqB,CAAA;AAEvE,eAAe,aAAa,CAAA"}
@@ -0,0 +1,97 @@
1
+ function _define_property(obj, key, value) {
2
+ if (key in obj) {
3
+ Object.defineProperty(obj, key, {
4
+ value: value,
5
+ enumerable: true,
6
+ configurable: true,
7
+ writable: true
8
+ });
9
+ } else {
10
+ obj[key] = value;
11
+ }
12
+ return obj;
13
+ }
14
+ function _object_spread(target) {
15
+ for(var i = 1; i < arguments.length; i++){
16
+ var source = arguments[i] != null ? arguments[i] : {};
17
+ var ownKeys = Object.keys(source);
18
+ if (typeof Object.getOwnPropertySymbols === "function") {
19
+ ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function(sym) {
20
+ return Object.getOwnPropertyDescriptor(source, sym).enumerable;
21
+ }));
22
+ }
23
+ ownKeys.forEach(function(key) {
24
+ _define_property(target, key, source[key]);
25
+ });
26
+ }
27
+ return target;
28
+ }
29
+ function _object_without_properties(source, excluded) {
30
+ if (source == null) return {};
31
+ var target = _object_without_properties_loose(source, excluded);
32
+ var key, i;
33
+ if (Object.getOwnPropertySymbols) {
34
+ var sourceSymbolKeys = Object.getOwnPropertySymbols(source);
35
+ for(i = 0; i < sourceSymbolKeys.length; i++){
36
+ key = sourceSymbolKeys[i];
37
+ if (excluded.indexOf(key) >= 0) continue;
38
+ if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue;
39
+ target[key] = source[key];
40
+ }
41
+ }
42
+ return target;
43
+ }
44
+ function _object_without_properties_loose(source, excluded) {
45
+ if (source == null) return {};
46
+ var target = {};
47
+ var sourceKeys = Object.keys(source);
48
+ var key, i;
49
+ for(i = 0; i < sourceKeys.length; i++){
50
+ key = sourceKeys[i];
51
+ if (excluded.indexOf(key) >= 0) continue;
52
+ target[key] = source[key];
53
+ }
54
+ return target;
55
+ }
56
+ import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
57
+ import { Icon } from './Icon';
58
+ var variants = {
59
+ default: /*#__PURE__*/ _jsxs(_Fragment, {
60
+ children: [
61
+ /*#__PURE__*/ _jsx("mask", {
62
+ id: "mask0_6490_6481",
63
+ style: {
64
+ maskType: 'alpha'
65
+ },
66
+ maskUnits: "userSpaceOnUse",
67
+ x: "0",
68
+ y: "0",
69
+ width: "16",
70
+ height: "16",
71
+ children: /*#__PURE__*/ _jsx("rect", {
72
+ width: "16",
73
+ height: "16",
74
+ fill: "currentColor"
75
+ })
76
+ }),
77
+ /*#__PURE__*/ _jsx("g", {
78
+ mask: "url(#mask0_6490_6481)",
79
+ children: /*#__PURE__*/ _jsx("path", {
80
+ d: "M8 14.6693L4 10.6693L4.95 9.71927L8 12.7693L11.05 9.71927L12 10.6693L8 14.6693ZM4.96667 6.26927L4 5.33594L8 1.33594L12 5.33594L11.0333 6.26927L8 3.23594L4.96667 6.26927Z",
81
+ fill: "currentColor"
82
+ })
83
+ })
84
+ ]
85
+ })
86
+ };
87
+ var IconExpandAll = function(_param) {
88
+ var _param_viewBox = _param.viewBox, viewBox = _param_viewBox === void 0 ? '0 0 16 16' : _param_viewBox, _param_variant = _param.variant, variant = _param_variant === void 0 ? 'default' : _param_variant, props = _object_without_properties(_param, [
89
+ "viewBox",
90
+ "variant"
91
+ ]);
92
+ return /*#__PURE__*/ _jsx(Icon, _object_spread({
93
+ viewBox: viewBox,
94
+ element: variants[variant]
95
+ }, props));
96
+ };
97
+ export default IconExpandAll;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IconExpandAll.js","sourceRoot":"","sources":["../../src/icons/IconExpandAll.tsx"],"names":[],"mappings":";AACA,OAAO,EAAE,IAAI,EAAkB,MAAM,QAAQ,CAAA;AAE7C,MAAM,QAAQ,GAAG;IAChB,OAAO,EAAE,CACR,8BACC,eACC,EAAE,EAAC,iBAAiB,EACpB,KAAK,EAAE,EAAE,QAAQ,EAAE,OAAO,EAAE,EAC5B,SAAS,EAAC,gBAAgB,EAC1B,CAAC,EAAC,GAAG,EACL,CAAC,EAAC,GAAG,EACL,KAAK,EAAC,IAAI,EACV,MAAM,EAAC,IAAI,YAEX,eAAM,KAAK,EAAC,IAAI,EAAC,MAAM,EAAC,IAAI,EAAC,IAAI,EAAC,cAAc,GAAG,GAC7C,EACP,YAAG,IAAI,EAAC,uBAAuB,YAC9B,eACC,CAAC,EAAC,2KAA2K,EAC7K,IAAI,EAAC,cAAc,GAClB,GACC,IACF,CACH;CACD,CAAA;AAED,MAAM,aAAa,GAAmC,CAAC,EACtD,OAAO,GAAG,WAAW,EACrB,OAAO,GAAG,SAAS,EACnB,GAAG,KAAK,EACR,EAAE,EAAE,CAAC,KAAC,IAAI,IAAC,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,QAAQ,CAAC,OAAO,CAAC,KAAM,KAAK,GAAI,CAAA;AAEvE,eAAe,aAAa,CAAA"}
@@ -0,0 +1,9 @@
1
+ import type { FC } from 'react';
2
+ import { type IconProps } from './Icon';
3
+ declare const variants: {
4
+ filled: import("react/jsx-runtime").JSX.Element;
5
+ outline: import("react/jsx-runtime").JSX.Element;
6
+ };
7
+ declare const IconReport: FC<IconProps<typeof variants>>;
8
+ export default IconReport;
9
+ //# sourceMappingURL=IconReport.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IconReport.d.ts","sourceRoot":"","sources":["../../src/icons/IconReport.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,OAAO,CAAA;AAC/B,OAAO,EAAQ,KAAK,SAAS,EAAE,MAAM,QAAQ,CAAA;AAE7C,QAAA,MAAM,QAAQ;;;CAwBb,CAAA;AACD,QAAA,MAAM,UAAU,EAAE,EAAE,CAAC,SAAS,CAAC,OAAO,QAAQ,CAAC,CAIwB,CAAA;AAEvE,eAAe,UAAU,CAAA"}
@@ -0,0 +1,92 @@
1
+ function _define_property(obj, key, value) {
2
+ if (key in obj) {
3
+ Object.defineProperty(obj, key, {
4
+ value: value,
5
+ enumerable: true,
6
+ configurable: true,
7
+ writable: true
8
+ });
9
+ } else {
10
+ obj[key] = value;
11
+ }
12
+ return obj;
13
+ }
14
+ function _object_spread(target) {
15
+ for(var i = 1; i < arguments.length; i++){
16
+ var source = arguments[i] != null ? arguments[i] : {};
17
+ var ownKeys = Object.keys(source);
18
+ if (typeof Object.getOwnPropertySymbols === "function") {
19
+ ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function(sym) {
20
+ return Object.getOwnPropertyDescriptor(source, sym).enumerable;
21
+ }));
22
+ }
23
+ ownKeys.forEach(function(key) {
24
+ _define_property(target, key, source[key]);
25
+ });
26
+ }
27
+ return target;
28
+ }
29
+ function _object_without_properties(source, excluded) {
30
+ if (source == null) return {};
31
+ var target = _object_without_properties_loose(source, excluded);
32
+ var key, i;
33
+ if (Object.getOwnPropertySymbols) {
34
+ var sourceSymbolKeys = Object.getOwnPropertySymbols(source);
35
+ for(i = 0; i < sourceSymbolKeys.length; i++){
36
+ key = sourceSymbolKeys[i];
37
+ if (excluded.indexOf(key) >= 0) continue;
38
+ if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue;
39
+ target[key] = source[key];
40
+ }
41
+ }
42
+ return target;
43
+ }
44
+ function _object_without_properties_loose(source, excluded) {
45
+ if (source == null) return {};
46
+ var target = {};
47
+ var sourceKeys = Object.keys(source);
48
+ var key, i;
49
+ for(i = 0; i < sourceKeys.length; i++){
50
+ key = sourceKeys[i];
51
+ if (excluded.indexOf(key) >= 0) continue;
52
+ target[key] = source[key];
53
+ }
54
+ return target;
55
+ }
56
+ import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
57
+ import { Icon } from './Icon';
58
+ var variants = {
59
+ filled: /*#__PURE__*/ _jsx(_Fragment, {
60
+ children: /*#__PURE__*/ _jsx("path", {
61
+ d: "M14.1 3.75C13.8 2.85 12.975 2.25 12 2.25C11.025 2.25 10.2 2.85 9.9 3.75H4.5V21H19.5V3.75H14.1ZM15.975 15.525L15 14.55L12 17.475L9.75 15.225L8.025 16.95L6.975 15.9L9.825 13.05L12.075 15.3L15 12.375L17.025 14.4L15.975 15.525ZM16.5 9.75V11.25H7.5V9.75H16.5ZM9 5.25H11.25V4.425C11.25 4.05 11.55 3.75 12 3.75C12.375 3.75 12.675 4.05 12.675 4.35V5.25H15V6.75H9V5.25Z",
62
+ fill: "currentColor"
63
+ })
64
+ }),
65
+ outline: /*#__PURE__*/ _jsxs(_Fragment, {
66
+ children: [
67
+ /*#__PURE__*/ _jsx("path", {
68
+ d: "M14.1 3.75C13.8 2.85 12.975 2.25 12 2.25C11.025 2.25 10.2 2.85 9.9 3.75H4.5V21H19.5V3.75H14.1ZM9 5.25H11.25V4.425C11.25 4.05 11.55 3.75 12 3.75C12.375 3.75 12.675 4.05 12.675 4.35V5.25H15V6.75H9V5.25ZM18 19.5H6V5.25H7.5V8.25H16.5V5.25H18V19.5Z",
69
+ fill: "currentColor"
70
+ }),
71
+ /*#__PURE__*/ _jsx("path", {
72
+ d: "M16.5 9.75H7.5V11.25H16.5V9.75Z",
73
+ fill: "currentColor"
74
+ }),
75
+ /*#__PURE__*/ _jsx("path", {
76
+ d: "M12 17.4751L9.82504 15.3001L8.02504 17.0251L6.97504 15.9751L9.82504 13.1251L12 15.3751L15 12.4501L17.025 14.4751L15.975 15.5251L15 14.5501L12 17.4751Z",
77
+ fill: "currentColor"
78
+ })
79
+ ]
80
+ })
81
+ };
82
+ var IconReport = function(_param) {
83
+ var _param_viewBox = _param.viewBox, viewBox = _param_viewBox === void 0 ? '0 0 24 24' : _param_viewBox, _param_variant = _param.variant, variant = _param_variant === void 0 ? 'outline' : _param_variant, props = _object_without_properties(_param, [
84
+ "viewBox",
85
+ "variant"
86
+ ]);
87
+ return /*#__PURE__*/ _jsx(Icon, _object_spread({
88
+ viewBox: viewBox,
89
+ element: variants[variant]
90
+ }, props));
91
+ };
92
+ export default IconReport;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IconReport.js","sourceRoot":"","sources":["../../src/icons/IconReport.tsx"],"names":[],"mappings":";AACA,OAAO,EAAE,IAAI,EAAkB,MAAM,QAAQ,CAAA;AAE7C,MAAM,QAAQ,GAAG;IAChB,MAAM,EAAE,CACP,4BACC,eACC,CAAC,EAAC,kXACmL,EACrL,IAAI,EAAC,cAAc,GAClB,GACA,CACH;IACD,OAAO,EAAE,CACR,8BACC,eACC,CAAC,EAAC,6PACwF,EAC1F,IAAI,EAAC,cAAc,GAClB,EACF,eAAM,CAAC,EAAC,iCAAiC,EAAC,IAAI,EAAC,cAAc,GAAG,EAChE,eACC,CAAC,EAAC,wJAAwJ,EAC1J,IAAI,EAAC,cAAc,GAClB,IACA,CACH;CACD,CAAA;AACD,MAAM,UAAU,GAAmC,CAAC,EACnD,OAAO,GAAG,WAAW,EACrB,OAAO,GAAG,SAAS,EACnB,GAAG,KAAK,EACR,EAAE,EAAE,CAAC,KAAC,IAAI,IAAC,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,QAAQ,CAAC,OAAO,CAAC,KAAM,KAAK,GAAI,CAAA;AAEvE,eAAe,UAAU,CAAA"}
package/dist/root.css ADDED
@@ -0,0 +1,24 @@
1
+ /* copy of dump/assets/global.css */
2
+ :root {
3
+ --primary1: #efeff0;
4
+ --primary2: #cacaca;
5
+ --primary3: #585858;
6
+ --primary4: #191919;
7
+ --primary: #000000;
8
+ --accent4: #e55867;
9
+ --accent: #e24657;
10
+ --links: #50c8e8;
11
+ --alert: #e24657;
12
+ --warning: #f4b25c;
13
+ --success4: #4fd9c2;
14
+ --success: #3bd5bc;
15
+ --black: #000000;
16
+ --white: #fff;
17
+ --whiteHover: #e6e6e6;
18
+ --placeholder: #f4f4f4;
19
+
20
+ --primaryBold: "Gotham-Bold";
21
+ --primaryNormal: "Gotham-Book";
22
+ --primaryMedium: "Gotham-Medium";
23
+ --primaryBlack: "Gotham-Black";
24
+ }
@@ -281,7 +281,7 @@ var Select = /*#__PURE__*/ React.forwardRef(function(props, ref) {
281
281
  ]);
282
282
  var _React_useState = _sliced_to_array(React.useState(providedValue), 2), value = _React_useState[0], setValue = _React_useState[1];
283
283
  var handleValueChange = function(value) {
284
- var parsedValue = JSON.parse(value);
284
+ var parsedValue = value ? JSON.parse(value) : undefined;
285
285
  setValue(parsedValue);
286
286
  onChange === null || onChange === void 0 ? void 0 : onChange(parsedValue);
287
287
  };