@veeqo/transfigure 0.0.13 → 0.0.14
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/index100.cjs +1 -80
- package/dist/index100.js +64 -95
- package/dist/index101.cjs +1 -7
- package/dist/index101.js +30 -10
- package/dist/index102.cjs +7 -13
- package/dist/index102.js +9 -16
- package/dist/index28.cjs +1 -1
- package/dist/index28.js +1 -1
- package/dist/index31.cjs +1 -1
- package/dist/index31.js +1 -1
- package/dist/index33.cjs +1 -1
- package/dist/index33.js +1 -1
- package/dist/index36.cjs +1 -1
- package/dist/index36.js +1 -1
- package/dist/index37.cjs +1 -1
- package/dist/index37.js +1 -1
- package/dist/index38.cjs +1 -1
- package/dist/index38.js +1 -1
- package/dist/index39.cjs +1 -1
- package/dist/index39.js +1 -1
- package/dist/index41.cjs +1 -1
- package/dist/index41.js +1 -1
- package/dist/index45.cjs +1 -1
- package/dist/index45.js +6 -5
- package/dist/index77.cjs +1 -1
- package/dist/index77.js +7 -7
- package/dist/index79.cjs +1 -1
- package/dist/index79.js +28 -23
- package/dist/index80.cjs +1 -1
- package/dist/index80.js +22 -13
- package/dist/index81.cjs +71 -95
- package/dist/index81.js +85 -110
- package/dist/index82.cjs +1 -1
- package/dist/index82.js +14 -67
- package/dist/index83.cjs +12 -1
- package/dist/index83.js +16 -29
- package/dist/index84.cjs +19 -1
- package/dist/index84.js +24 -2
- package/dist/index85.cjs +1 -1
- package/dist/index85.js +23 -40
- package/dist/index86.cjs +1 -1
- package/dist/index86.js +13 -8
- package/dist/index87.cjs +104 -1
- package/dist/index87.js +118 -27
- package/dist/index88.cjs +1 -19
- package/dist/index88.js +67 -23
- package/dist/index89.cjs +1 -1
- package/dist/index89.js +27 -20
- package/dist/index90.cjs +1 -1
- package/dist/index90.js +2 -15
- package/dist/index91.cjs +1 -80
- package/dist/index91.js +41 -95
- package/dist/index92.cjs +1 -12
- package/dist/index92.js +8 -16
- package/dist/index94.cjs +80 -1
- package/dist/index94.js +94 -35
- package/dist/index95.cjs +1 -1
- package/dist/index95.js +1 -1
- package/dist/index96.cjs +13 -1
- package/dist/index96.js +17 -19
- package/dist/index97.cjs +1 -1
- package/dist/index97.js +36 -8
- package/dist/index98.cjs +1 -1
- package/dist/index98.js +17 -62
- package/dist/index99.cjs +1 -1
- package/dist/index99.js +7 -29
- package/package.json +1 -1
package/dist/index79.js
CHANGED
|
@@ -1,26 +1,31 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
1
|
+
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
+
import { Modal as n, Text as r } from "@veeqo/ui";
|
|
3
|
+
const s = ({ shouldShow: a, viewName: i, onCancel: t, onDelete: o }) => /* @__PURE__ */ e(
|
|
4
|
+
n,
|
|
5
|
+
{
|
|
6
|
+
headerTitle: `Delete '${i}' view?`,
|
|
7
|
+
"data-testid": "act-react-listing-custom-confirmation-popup",
|
|
8
|
+
variant: "sm",
|
|
9
|
+
shouldShow: a,
|
|
10
|
+
onClose: t,
|
|
11
|
+
rightActions: [
|
|
12
|
+
{
|
|
13
|
+
className: "act-react-listing-custom-confirmation-popup-cancel",
|
|
14
|
+
label: "Cancel",
|
|
15
|
+
onClick: t,
|
|
16
|
+
variant: "default"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
className: "act-react-listing-custom-confirmation-popup-delete",
|
|
20
|
+
label: "Delete",
|
|
21
|
+
onClick: o,
|
|
22
|
+
variant: "primaryDestructive"
|
|
15
23
|
}
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
};
|
|
22
|
-
}, []), /* @__PURE__ */ p(v, { style: s, className: f, offset: i, ref: r, children: o });
|
|
23
|
-
};
|
|
24
|
+
],
|
|
25
|
+
showHeaderCloseButton: !0,
|
|
26
|
+
children: /* @__PURE__ */ e(r, { variant: "body", children: "This cannot be undone." })
|
|
27
|
+
}
|
|
28
|
+
);
|
|
24
29
|
export {
|
|
25
|
-
|
|
30
|
+
s as Confirmation
|
|
26
31
|
};
|
package/dist/index80.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("react/jsx-runtime"),
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("react/jsx-runtime"),i=require("@veeqo/ui"),t=require("./index94.cjs"),a=i.theme.colors.secondary.blue.base,o=({mainEntityLabelPlural:r="",onClick:n})=>e.jsx(t.Notification,{className:"act-react-listing-custom-notification-new-draft",children:e.jsx(t.Pill,{children:e.jsxs(i.Stack,{direction:"horizontal",alignY:"center",children:[e.jsx(t.Glyph,{name:"info",color:a}),e.jsxs(t.Wrap,{children:[e.jsx(t.Text,{variant:"body",margin:"0 4px 0 0",children:"You are currently in a"}),e.jsx(t.Bold,{variant:"bodyBoldDark",children:"draft view"}),e.jsx(t.Hint,{variant:"hintText",children:`Apply filters and create a custom view of your ${r.toLowerCase()}`})]}),e.jsx(t.Button,{className:"act-react-listing-custom-notification-save-draft-btn",variant:"primary",onClick:n,size:"sm",children:"Create view"})]})})});exports.InfoPill=o;
|
package/dist/index80.js
CHANGED
|
@@ -1,15 +1,24 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { Stack as
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
/* @__PURE__ */
|
|
12
|
-
|
|
1
|
+
import { jsx as t, jsxs as i } from "react/jsx-runtime";
|
|
2
|
+
import { Stack as e, theme as o } from "@veeqo/ui";
|
|
3
|
+
import { Notification as n, Pill as c, Glyph as l, Wrap as s, Text as d, Bold as m, Hint as f, Button as h } from "./index94.js";
|
|
4
|
+
const p = o.colors.secondary.blue.base, x = ({ mainEntityLabelPlural: r = "", onClick: a }) => /* @__PURE__ */ t(n, { className: "act-react-listing-custom-notification-new-draft", children: /* @__PURE__ */ t(c, { children: /* @__PURE__ */ i(e, { direction: "horizontal", alignY: "center", children: [
|
|
5
|
+
/* @__PURE__ */ t(l, { name: "info", color: p }),
|
|
6
|
+
/* @__PURE__ */ i(s, { children: [
|
|
7
|
+
/* @__PURE__ */ t(d, { variant: "body", margin: "0 4px 0 0", children: "You are currently in a" }),
|
|
8
|
+
/* @__PURE__ */ t(m, { variant: "bodyBoldDark", children: "draft view" }),
|
|
9
|
+
/* @__PURE__ */ t(f, { variant: "hintText", children: `Apply filters and create a custom view of your ${r.toLowerCase()}` })
|
|
10
|
+
] }),
|
|
11
|
+
/* @__PURE__ */ t(
|
|
12
|
+
h,
|
|
13
|
+
{
|
|
14
|
+
className: "act-react-listing-custom-notification-save-draft-btn",
|
|
15
|
+
variant: "primary",
|
|
16
|
+
onClick: a,
|
|
17
|
+
size: "sm",
|
|
18
|
+
children: "Create view"
|
|
19
|
+
}
|
|
20
|
+
)
|
|
21
|
+
] }) }) });
|
|
13
22
|
export {
|
|
14
|
-
|
|
23
|
+
x as InfoPill
|
|
15
24
|
};
|
package/dist/index81.cjs
CHANGED
|
@@ -1,104 +1,80 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const
|
|
2
|
-
|
|
3
|
-
position:
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
margin-top: 40px;
|
|
9
|
-
`,c=t.default(e.Text)`
|
|
10
|
-
writing-mode: vertical-rl;
|
|
11
|
-
position: absolute;
|
|
12
|
-
top: 50%;
|
|
13
|
-
left: 50%;
|
|
14
|
-
transform: translate(-50%, -50%);
|
|
15
|
-
background: white;
|
|
16
|
-
padding: 30px 0;
|
|
17
|
-
text-align: center;
|
|
18
|
-
font-size: 10px;
|
|
19
|
-
color: ${e.theme.colors.neutral.ink.lightest};
|
|
20
|
-
height: max-content;
|
|
21
|
-
`,d=t.default(e.Text)`
|
|
22
|
-
position: sticky;
|
|
23
|
-
top: 0;
|
|
24
|
-
background: #ffffff;
|
|
25
|
-
padding-bottom: ${e.theme.sizes[2]};
|
|
26
|
-
z-index: 1;
|
|
27
|
-
`,u=t.default(e.Text)`
|
|
28
|
-
color: ${e.theme.colors.neutral.ink.light};
|
|
29
|
-
`,g=t.default(e.Grid)`
|
|
30
|
-
// overflow-y: auto;
|
|
31
|
-
position: unset;
|
|
32
|
-
`,r=t.default(n).attrs(()=>({name:"visibility-off"}))`
|
|
33
|
-
margin-left: auto;
|
|
34
|
-
`,p=t.default(e.Stack)`
|
|
35
|
-
border-radius: 4px;
|
|
36
|
-
padding: 8px 12px;
|
|
37
|
-
background: #ffffff;
|
|
38
|
-
border: 1px solid ${e.theme.colors.neutral.ink.lightest};
|
|
39
|
-
transition: all ease 200ms;
|
|
40
|
-
|
|
41
|
-
${({isHidden:o})=>o&&`
|
|
42
|
-
${e.Text} {
|
|
43
|
-
color: ${e.theme.colors.neutral.ink.light};
|
|
44
|
-
}
|
|
45
|
-
`}
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const i=require("styled-components"),e=require("@veeqo/ui"),a=require("@veeqo/components"),r=t=>t&&t.__esModule?t:{default:t},o=r(i),{Glyph:l}=a.VeeqoCommon,s=o.default(e.BaseContainer)`
|
|
2
|
+
display: flex;
|
|
3
|
+
position: fixed;
|
|
4
|
+
width: 100vw;
|
|
5
|
+
left: 0;
|
|
6
|
+
bottom: 24px;
|
|
7
|
+
z-index: 18;
|
|
46
8
|
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
9
|
+
&.notification-enter {
|
|
10
|
+
opacity: 0;
|
|
11
|
+
transform: translateY(-16px);
|
|
12
|
+
}
|
|
51
13
|
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
14
|
+
&.notification-enter-active {
|
|
15
|
+
opacity: 1;
|
|
16
|
+
transform: translateY(0);
|
|
17
|
+
transition: 350ms ease;
|
|
18
|
+
}
|
|
55
19
|
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
20
|
+
&.notification-exit {
|
|
21
|
+
opacity: 0;
|
|
22
|
+
transform: translateY(16px);
|
|
23
|
+
transition: 350ms ease;
|
|
59
24
|
}
|
|
25
|
+
pointer-events: none;
|
|
26
|
+
`,c=o.default(e.BaseContainer)`
|
|
27
|
+
display: inline-flex;
|
|
28
|
+
flex-direction: row;
|
|
29
|
+
align-items: center;
|
|
30
|
+
padding: 20px 24px 24px 24px;
|
|
31
|
+
border-radius: 4px;
|
|
32
|
+
margin: 0 auto;
|
|
33
|
+
background-color: #fff;
|
|
34
|
+
box-shadow: ${e.theme.shadows.lg};
|
|
35
|
+
pointer-events: all;
|
|
36
|
+
`;o.default(e.Banner)`
|
|
37
|
+
display: inline-flex;
|
|
38
|
+
flex-direction: row;
|
|
39
|
+
align-items: center;
|
|
40
|
+
margin: 0 auto;
|
|
41
|
+
background-color: #fff;
|
|
42
|
+
box-shadow: ${e.theme.shadows.lg};
|
|
43
|
+
pointer-events: all;
|
|
44
|
+
`;const d=o.default(e.Button)`
|
|
45
|
+
margin-right: 16px;
|
|
46
|
+
`;o.default(e.Text)`
|
|
47
|
+
line-height: 20px;
|
|
48
|
+
`;const n=o.default(e.Text)`
|
|
49
|
+
margin: ${t=>t.margin?t.margin:""};
|
|
50
|
+
color: ${t=>t.color};
|
|
51
|
+
`,f=o.default(e.Text)`
|
|
52
|
+
margin-right: 8px;
|
|
53
|
+
color: ${t=>t.color};
|
|
54
|
+
`,p=o.default(l)``,x=o.default(e.BaseContainer)`
|
|
55
|
+
display: flex;
|
|
56
|
+
flex-direction: row;
|
|
57
|
+
align-items: flex-end;
|
|
58
|
+
flex-grow: 2;
|
|
59
|
+
margin-left: 24px;
|
|
60
|
+
margin-right: 24px;
|
|
61
|
+
`,u=o.default.button`
|
|
62
|
+
display: flex;
|
|
63
|
+
flex-direction: row;
|
|
64
|
+
width: 100%;
|
|
65
|
+
padding: 12px 16px;
|
|
66
|
+
cursor: pointer;
|
|
60
67
|
|
|
61
|
-
${
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
cursor: grabbing;
|
|
68
|
+
& > ${n} {
|
|
69
|
+
white-space: nowrap;
|
|
70
|
+
user-select: none;
|
|
71
|
+
}
|
|
66
72
|
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
}
|
|
70
|
-
`}
|
|
71
|
-
`,h=t.default.div`
|
|
72
|
-
position: absolute;
|
|
73
|
-
top: 0;
|
|
74
|
-
left: 0;
|
|
75
|
-
right: 0;
|
|
76
|
-
bottom: 0;
|
|
77
|
-
height: 100%;
|
|
78
|
-
width: calc(100% - 2px);
|
|
79
|
-
border-radius: 4px;
|
|
80
|
-
border: 1px dashed ${e.theme.colors.neutral.grey.dark};
|
|
81
|
-
background: ${e.theme.colors.neutral.grey.lightest};
|
|
82
|
-
`,f=t.default(e.Stack)`
|
|
83
|
-
flex: 1;
|
|
84
|
-
padding: 0;
|
|
85
|
-
`,m=t.default(e.Search)`
|
|
86
|
-
input {
|
|
87
|
-
height: 40px;
|
|
88
|
-
box-sizing: border-box;
|
|
73
|
+
&:hover {
|
|
74
|
+
background-color: ${e.theme.colors.neutral.grey.lightest};
|
|
89
75
|
}
|
|
90
76
|
|
|
91
|
-
|
|
92
|
-
|
|
77
|
+
&:hover > ${n} {
|
|
78
|
+
color: ${e.theme.colors.secondary.blue.base};
|
|
93
79
|
}
|
|
94
|
-
|
|
95
|
-
position: relative;
|
|
96
|
-
min-height: 500px;
|
|
97
|
-
`,x=t.default(e.BaseContainer)`
|
|
98
|
-
display: flex;
|
|
99
|
-
flex-direction: column;
|
|
100
|
-
gap: ${e.theme.sizes.base};
|
|
101
|
-
padding: ${e.theme.sizes.md};
|
|
102
|
-
`,y=t.default.dialog`
|
|
103
|
-
display: contents;
|
|
104
|
-
`;exports.ColumnGroupsGrid=g;exports.ColumnItemWrapper=p;exports.ColumnSearch=m;exports.Container=b;exports.DetailedText=u;exports.DndDragOverlayDialog=y;exports.DraggingOverlay=h;exports.DroppableAreaStack=f;exports.HeaderContainer=x;exports.StickyText=d;exports.VerticalSeparator=s;exports.VerticalText=c;exports.VisibilityOffIcon=r;
|
|
80
|
+
`;exports.Bold=f;exports.Button=d;exports.Container=c;exports.Glyph=p;exports.Item=u;exports.Notification=s;exports.Text=n;exports.Wrap=x;
|
package/dist/index81.js
CHANGED
|
@@ -1,122 +1,97 @@
|
|
|
1
|
-
import
|
|
2
|
-
import {
|
|
3
|
-
import { VeeqoCommon as
|
|
4
|
-
const { Glyph: c } =
|
|
5
|
-
|
|
6
|
-
position:
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
margin-top: 40px;
|
|
12
|
-
`, f = r(t)`
|
|
13
|
-
writing-mode: vertical-rl;
|
|
14
|
-
position: absolute;
|
|
15
|
-
top: 50%;
|
|
16
|
-
left: 50%;
|
|
17
|
-
transform: translate(-50%, -50%);
|
|
18
|
-
background: white;
|
|
19
|
-
padding: 30px 0;
|
|
20
|
-
text-align: center;
|
|
21
|
-
font-size: 10px;
|
|
22
|
-
color: ${o.colors.neutral.ink.lightest};
|
|
23
|
-
height: max-content;
|
|
24
|
-
`, h = r(t)`
|
|
25
|
-
position: sticky;
|
|
26
|
-
top: 0;
|
|
27
|
-
background: #ffffff;
|
|
28
|
-
padding-bottom: ${o.sizes[2]};
|
|
29
|
-
z-index: 1;
|
|
30
|
-
`, x = r(t)`
|
|
31
|
-
color: ${o.colors.neutral.ink.light};
|
|
32
|
-
`, m = r(l)`
|
|
33
|
-
// overflow-y: auto;
|
|
34
|
-
position: unset;
|
|
35
|
-
`, d = r(c).attrs(() => ({ name: "visibility-off" }))`
|
|
36
|
-
margin-left: auto;
|
|
37
|
-
`, $ = r(i)`
|
|
38
|
-
border-radius: 4px;
|
|
39
|
-
padding: 8px 12px;
|
|
40
|
-
background: #ffffff;
|
|
41
|
-
border: 1px solid ${o.colors.neutral.ink.lightest};
|
|
42
|
-
transition: all ease 200ms;
|
|
43
|
-
|
|
44
|
-
${({ isHidden: e }) => e && `
|
|
45
|
-
${t} {
|
|
46
|
-
color: ${o.colors.neutral.ink.light};
|
|
47
|
-
}
|
|
48
|
-
`}
|
|
1
|
+
import o from "styled-components";
|
|
2
|
+
import { BaseContainer as n, theme as e, Text as i, Button as a, Banner as l } from "@veeqo/ui";
|
|
3
|
+
import { VeeqoCommon as s } from "@veeqo/components";
|
|
4
|
+
const { Glyph: c } = s, f = o(n)`
|
|
5
|
+
display: flex;
|
|
6
|
+
position: fixed;
|
|
7
|
+
width: 100vw;
|
|
8
|
+
left: 0;
|
|
9
|
+
bottom: 24px;
|
|
10
|
+
z-index: 18;
|
|
49
11
|
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
12
|
+
&.notification-enter {
|
|
13
|
+
opacity: 0;
|
|
14
|
+
transform: translateY(-16px);
|
|
15
|
+
}
|
|
54
16
|
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
17
|
+
&.notification-enter-active {
|
|
18
|
+
opacity: 1;
|
|
19
|
+
transform: translateY(0);
|
|
20
|
+
transition: 350ms ease;
|
|
21
|
+
}
|
|
58
22
|
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
23
|
+
&.notification-exit {
|
|
24
|
+
opacity: 0;
|
|
25
|
+
transform: translateY(16px);
|
|
26
|
+
transition: 350ms ease;
|
|
62
27
|
}
|
|
28
|
+
pointer-events: none;
|
|
29
|
+
`, m = o(n)`
|
|
30
|
+
display: inline-flex;
|
|
31
|
+
flex-direction: row;
|
|
32
|
+
align-items: center;
|
|
33
|
+
padding: 20px 24px 24px 24px;
|
|
34
|
+
border-radius: 4px;
|
|
35
|
+
margin: 0 auto;
|
|
36
|
+
background-color: #fff;
|
|
37
|
+
box-shadow: ${e.shadows.lg};
|
|
38
|
+
pointer-events: all;
|
|
39
|
+
`;
|
|
40
|
+
o(l)`
|
|
41
|
+
display: inline-flex;
|
|
42
|
+
flex-direction: row;
|
|
43
|
+
align-items: center;
|
|
44
|
+
margin: 0 auto;
|
|
45
|
+
background-color: #fff;
|
|
46
|
+
box-shadow: ${e.shadows.lg};
|
|
47
|
+
pointer-events: all;
|
|
48
|
+
`;
|
|
49
|
+
const g = o(a)`
|
|
50
|
+
margin-right: 16px;
|
|
51
|
+
`;
|
|
52
|
+
o(i)`
|
|
53
|
+
line-height: 20px;
|
|
54
|
+
`;
|
|
55
|
+
const r = o(i)`
|
|
56
|
+
margin: ${(t) => t.margin ? t.margin : ""};
|
|
57
|
+
color: ${(t) => t.color};
|
|
58
|
+
`, h = o(i)`
|
|
59
|
+
margin-right: 8px;
|
|
60
|
+
color: ${(t) => t.color};
|
|
61
|
+
`, u = o(c)``, w = o(n)`
|
|
62
|
+
display: flex;
|
|
63
|
+
flex-direction: row;
|
|
64
|
+
align-items: flex-end;
|
|
65
|
+
flex-grow: 2;
|
|
66
|
+
margin-left: 24px;
|
|
67
|
+
margin-right: 24px;
|
|
68
|
+
`, y = o.button`
|
|
69
|
+
display: flex;
|
|
70
|
+
flex-direction: row;
|
|
71
|
+
width: 100%;
|
|
72
|
+
padding: 12px 16px;
|
|
73
|
+
cursor: pointer;
|
|
63
74
|
|
|
64
|
-
${
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
cursor: grabbing;
|
|
75
|
+
& > ${r} {
|
|
76
|
+
white-space: nowrap;
|
|
77
|
+
user-select: none;
|
|
78
|
+
}
|
|
69
79
|
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
}
|
|
73
|
-
`}
|
|
74
|
-
`, y = r.div`
|
|
75
|
-
position: absolute;
|
|
76
|
-
top: 0;
|
|
77
|
-
left: 0;
|
|
78
|
-
right: 0;
|
|
79
|
-
bottom: 0;
|
|
80
|
-
height: 100%;
|
|
81
|
-
width: calc(100% - 2px);
|
|
82
|
-
border-radius: 4px;
|
|
83
|
-
border: 1px dashed ${o.colors.neutral.grey.dark};
|
|
84
|
-
background: ${o.colors.neutral.grey.lightest};
|
|
85
|
-
`, k = r(i)`
|
|
86
|
-
flex: 1;
|
|
87
|
-
padding: 0;
|
|
88
|
-
`, v = r(s)`
|
|
89
|
-
input {
|
|
90
|
-
height: 40px;
|
|
91
|
-
box-sizing: border-box;
|
|
80
|
+
&:hover {
|
|
81
|
+
background-color: ${e.colors.neutral.grey.lightest};
|
|
92
82
|
}
|
|
93
83
|
|
|
94
|
-
|
|
95
|
-
|
|
84
|
+
&:hover > ${r} {
|
|
85
|
+
color: ${e.colors.secondary.blue.base};
|
|
96
86
|
}
|
|
97
|
-
`, C = r.div`
|
|
98
|
-
position: relative;
|
|
99
|
-
min-height: 500px;
|
|
100
|
-
`, w = r(n)`
|
|
101
|
-
display: flex;
|
|
102
|
-
flex-direction: column;
|
|
103
|
-
gap: ${o.sizes.base};
|
|
104
|
-
padding: ${o.sizes.md};
|
|
105
|
-
`, z = r.dialog`
|
|
106
|
-
display: contents;
|
|
107
87
|
`;
|
|
108
88
|
export {
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
w as HeaderContainer,
|
|
118
|
-
h as StickyText,
|
|
119
|
-
b as VerticalSeparator,
|
|
120
|
-
f as VerticalText,
|
|
121
|
-
d as VisibilityOffIcon
|
|
89
|
+
h as Bold,
|
|
90
|
+
g as Button,
|
|
91
|
+
m as Container,
|
|
92
|
+
u as Glyph,
|
|
93
|
+
y as Item,
|
|
94
|
+
f as Notification,
|
|
95
|
+
r as Text,
|
|
96
|
+
w as Wrap
|
|
122
97
|
};
|
package/dist/index82.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const i=require("react/jsx-runtime"),l=require("./index96.cjs"),o=e=>i.jsx(l.StyledSortableViews,{...e,onChange:t=>{t.filter(r=>{var n;return(n=r.children)==null?void 0:n.length}).length||e.onChange(t)}});exports.LegacySortableViews=o;
|
package/dist/index82.js
CHANGED
|
@@ -1,70 +1,17 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
droppable: {
|
|
13
|
-
strategy: A.Always
|
|
14
|
-
}
|
|
15
|
-
}, G = {
|
|
16
|
-
sideEffects: C({
|
|
17
|
-
styles: {
|
|
18
|
-
active: {
|
|
19
|
-
opacity: "0.5"
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
})
|
|
23
|
-
}, q = ({
|
|
24
|
-
items: o,
|
|
25
|
-
setItems: a,
|
|
26
|
-
children: i,
|
|
27
|
-
renderDragOverlay: e
|
|
28
|
-
}) => {
|
|
29
|
-
const { closeModal: s, openModal: l } = x(), d = u(
|
|
30
|
-
n(y),
|
|
31
|
-
n(S, {
|
|
32
|
-
coordinateGetter: M
|
|
33
|
-
})
|
|
34
|
-
), { activeId: t, handleDragCancel: c, handleDragEnd: m, handleDragOver: p, handleDragStart: D } = O({ items: o, setItems: a }), { collisionDetectionStrategy: g } = I({
|
|
35
|
-
items: o
|
|
36
|
-
});
|
|
37
|
-
return /* @__PURE__ */ r(R, { errorComponent: /* @__PURE__ */ r(b, { variant: "error", title: "An error occurred", rightActions: [
|
|
38
|
-
{
|
|
39
|
-
label: "Reload",
|
|
40
|
-
onClick: () => {
|
|
41
|
-
s(), l(j.ORDERS_TABLE_MANAGEMENT);
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
] }), children: /* @__PURE__ */ f(
|
|
45
|
-
h,
|
|
46
|
-
{
|
|
47
|
-
sensors: d,
|
|
48
|
-
measuring: B,
|
|
49
|
-
collisionDetection: g,
|
|
50
|
-
onDragStart: D,
|
|
51
|
-
onDragOver: p,
|
|
52
|
-
onDragEnd: m,
|
|
53
|
-
onDragCancel: c,
|
|
54
|
-
children: [
|
|
55
|
-
i,
|
|
56
|
-
/* @__PURE__ */ r(v, { open: !0, children: /* @__PURE__ */ r(
|
|
57
|
-
E,
|
|
58
|
-
{
|
|
59
|
-
dropAnimation: G,
|
|
60
|
-
zIndex: 2001,
|
|
61
|
-
children: t && e ? e(t) : null
|
|
62
|
-
}
|
|
63
|
-
) })
|
|
64
|
-
]
|
|
1
|
+
import { jsx as o } from "react/jsx-runtime";
|
|
2
|
+
import { StyledSortableViews as i } from "./index96.js";
|
|
3
|
+
const h = (e) => /* @__PURE__ */ o(
|
|
4
|
+
i,
|
|
5
|
+
{
|
|
6
|
+
...e,
|
|
7
|
+
onChange: (t) => {
|
|
8
|
+
t.filter((n) => {
|
|
9
|
+
var r;
|
|
10
|
+
return (r = n.children) == null ? void 0 : r.length;
|
|
11
|
+
}).length || e.onChange(t);
|
|
65
12
|
}
|
|
66
|
-
|
|
67
|
-
|
|
13
|
+
}
|
|
14
|
+
);
|
|
68
15
|
export {
|
|
69
|
-
|
|
16
|
+
h as LegacySortableViews
|
|
70
17
|
};
|
package/dist/index83.cjs
CHANGED
|
@@ -1 +1,12 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const i=require("styled-components"),t=require("@veeqo/ui"),o=e=>e&&e.__esModule?e:{default:e},r=o(i),d=r.default(t.BaseContainer)`
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-direction: column;
|
|
4
|
+
padding: 8px;
|
|
5
|
+
padding-left: 35px;
|
|
6
|
+
margin: 8px;
|
|
7
|
+
background-color: ${t.theme.colors.neutral.grey.lightest};
|
|
8
|
+
`,l=r.default.hr`
|
|
9
|
+
width: 100%;
|
|
10
|
+
border-top: 1px solid ${t.theme.colors.neutral.grey.dark};
|
|
11
|
+
margin: 0 0 4px 0;
|
|
12
|
+
`;exports.Divider=l;exports.FixedViews=d;
|
package/dist/index83.js
CHANGED
|
@@ -1,31 +1,18 @@
|
|
|
1
|
-
import
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
children: [
|
|
16
|
-
/* @__PURE__ */ i(s, { name: "drag-indicator", size: 4 }),
|
|
17
|
-
t.detailed ? /* @__PURE__ */ e(d, { spacing: "xs", children: [
|
|
18
|
-
/* @__PURE__ */ e(a, { variant: "body", children: [
|
|
19
|
-
n,
|
|
20
|
-
" (detailed)"
|
|
21
|
-
] }),
|
|
22
|
-
/* @__PURE__ */ i(c, { variant: "hintText", children: t.detailed })
|
|
23
|
-
] }) : /* @__PURE__ */ i(a, { variant: "body", children: n }),
|
|
24
|
-
!o && r && /* @__PURE__ */ i(p, { size: 4 })
|
|
25
|
-
]
|
|
26
|
-
}
|
|
27
|
-
);
|
|
28
|
-
};
|
|
1
|
+
import r from "styled-components";
|
|
2
|
+
import { theme as o, BaseContainer as e } from "@veeqo/ui";
|
|
3
|
+
const d = r(e)`
|
|
4
|
+
display: flex;
|
|
5
|
+
flex-direction: column;
|
|
6
|
+
padding: 8px;
|
|
7
|
+
padding-left: 35px;
|
|
8
|
+
margin: 8px;
|
|
9
|
+
background-color: ${o.colors.neutral.grey.lightest};
|
|
10
|
+
`, l = r.hr`
|
|
11
|
+
width: 100%;
|
|
12
|
+
border-top: 1px solid ${o.colors.neutral.grey.dark};
|
|
13
|
+
margin: 0 0 4px 0;
|
|
14
|
+
`;
|
|
29
15
|
export {
|
|
30
|
-
|
|
16
|
+
l as Divider,
|
|
17
|
+
d as FixedViews
|
|
31
18
|
};
|
package/dist/index84.cjs
CHANGED
|
@@ -1 +1,19 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=require("styled-components"),e=require("@veeqo/ui"),s=t=>t&&t.__esModule?t:{default:t},o=s(r),i=o.default(e.Button).attrs(()=>({role:"option",variant:"flat"}))`
|
|
2
|
+
margin: ${e.theme.sizes.xs};
|
|
3
|
+
min-width: 180px;
|
|
4
|
+
justify-content: flex-start;
|
|
5
|
+
font-size: ${e.theme.text.body.fontSize};
|
|
6
|
+
|
|
7
|
+
&:hover {
|
|
8
|
+
background-color: ${e.theme.colors.neutral.grey.lightest};
|
|
9
|
+
color: ${e.theme.colors.secondary.blue.base};
|
|
10
|
+
cursor: pointer;
|
|
11
|
+
}
|
|
12
|
+
`,n=o.default(e.Card.Surface).attrs(()=>({role:"listbox",elevation:4}))`
|
|
13
|
+
margin-top: ${e.theme.sizes.xs};
|
|
14
|
+
background-color: white;
|
|
15
|
+
`,l=o.default.hr`
|
|
16
|
+
width: 100%;
|
|
17
|
+
border-top: 1px solid ${e.theme.colors.neutral.grey.dark};
|
|
18
|
+
margin: 0;
|
|
19
|
+
`;exports.Divider=l;exports.Item=i;exports.MenuItems=n;
|