seat-editor 3.6.7 → 3.6.8
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/app/graph-view-new/page.js +100 -12
- package/dist/app/graph-view-new/page.jsx +105 -19
- package/dist/app/graph-view-new/test.d.ts +0 -0
- package/dist/app/graph-view-new/test.js +0 -0
- package/dist/app/graph-view-new/test.jsx +0 -0
- package/dist/components/layer-v5/icons.d.ts +1 -0
- package/dist/components/layer-v5/icons.js +2 -0
- package/dist/components/layer-v5/icons.jsx +3 -0
- package/dist/components/layer-v5/index.d.ts +4 -1
- package/dist/components/layer-v5/index.js +203 -228
- package/dist/components/layer-v5/index.jsx +234 -272
- package/dist/features/view-only-5/connect-handle.d.ts +7 -0
- package/dist/features/view-only-5/connect-handle.js +10 -7
- package/dist/features/view-only-5/connect-handle.jsx +11 -7
- package/dist/features/view-only-5/connection-layer.d.ts +0 -1
- package/dist/features/view-only-5/connection-layer.js +7 -5
- package/dist/features/view-only-5/connection-layer.jsx +7 -5
- package/dist/features/view-only-5/index.d.ts +13 -4
- package/dist/features/view-only-5/index.js +168 -123
- package/dist/features/view-only-5/index.jsx +169 -124
- package/dist/features/view-only-5/use-connection-graph.js +1 -1
- package/dist/features/view-only-5/utils.d.ts +7 -1
- package/dist/features/view-only-5/utils.js +15 -7
- package/package.json +1 -1
|
@@ -7,6 +7,17 @@ import { Button } from "antd";
|
|
|
7
7
|
import { useMemo, useState } from "react";
|
|
8
8
|
export default function GraphView() {
|
|
9
9
|
const [isConnecting, setIsConnecting] = useState(false);
|
|
10
|
+
const [actionPrivileged, setActionPrivileged] = useState({
|
|
11
|
+
select: true,
|
|
12
|
+
move: false,
|
|
13
|
+
switch: false,
|
|
14
|
+
drop: false,
|
|
15
|
+
rightClick: false,
|
|
16
|
+
double: false,
|
|
17
|
+
selection: false,
|
|
18
|
+
selectNode: false,
|
|
19
|
+
connectingNode: false,
|
|
20
|
+
});
|
|
10
21
|
const [isSelectNode, setIsSelectNode] = useState(false);
|
|
11
22
|
const [sections, setSections] = useState([
|
|
12
23
|
{
|
|
@@ -20,7 +31,7 @@ export default function GraphView() {
|
|
|
20
31
|
name: "Section 2",
|
|
21
32
|
color: "#F6F6F6",
|
|
22
33
|
items: [],
|
|
23
|
-
}
|
|
34
|
+
},
|
|
24
35
|
]);
|
|
25
36
|
const [sectionActive, setSectionActive] = useState(null);
|
|
26
37
|
const componentSection = useMemo(() => data === null || data === void 0 ? void 0 : data.map((data) => {
|
|
@@ -52,20 +63,97 @@ export default function GraphView() {
|
|
|
52
63
|
: [...section.items, data] });
|
|
53
64
|
}));
|
|
54
65
|
};
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
66
|
+
const priviledged = [
|
|
67
|
+
{
|
|
68
|
+
key: "select",
|
|
69
|
+
name: "Select",
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
key: "move",
|
|
73
|
+
name: "Move",
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
key: "switch",
|
|
77
|
+
name: "Switch",
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
key: "drop",
|
|
81
|
+
name: "Drop",
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
key: "rightClick",
|
|
85
|
+
name: "Right Click",
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
key: "double",
|
|
89
|
+
name: "Double Click",
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
key: "selection",
|
|
93
|
+
name: "Selection",
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
key: "dragTable",
|
|
97
|
+
name: "Drag Table",
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
key: "selectNode",
|
|
101
|
+
name: "Select Node",
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
key: "connectingNode",
|
|
105
|
+
name: "Connecting Node",
|
|
106
|
+
},
|
|
107
|
+
];
|
|
108
|
+
const [dataDrag, setDataDrag] = useState(null);
|
|
109
|
+
console.log({ dataDrag });
|
|
110
|
+
const handleMouseMove = (e) => {
|
|
111
|
+
if (dataDrag) {
|
|
112
|
+
const table = document.getElementById("table");
|
|
113
|
+
table.style.position = "absolute";
|
|
114
|
+
table.style.opacity = "1";
|
|
115
|
+
table.style.top = `${e.clientY}px`;
|
|
116
|
+
table.style.left = `${e.clientX}px`;
|
|
117
|
+
table.style.height = "30px";
|
|
118
|
+
table.style.width = "200px";
|
|
119
|
+
table.style.backgroundColor = "red";
|
|
120
|
+
// add text
|
|
121
|
+
const text = document.createElement("div");
|
|
122
|
+
text.textContent = dataDrag.name;
|
|
123
|
+
text.style.position = "absolute";
|
|
124
|
+
text.style.top = "0";
|
|
125
|
+
text.style.left = "0";
|
|
126
|
+
text.style.color = "white";
|
|
127
|
+
text.style.fontSize = "12px";
|
|
128
|
+
text.style.fontWeight = "bold";
|
|
129
|
+
table.appendChild(text);
|
|
130
|
+
}
|
|
131
|
+
};
|
|
132
|
+
const handleMouseLeave = () => {
|
|
133
|
+
if (dataDrag) {
|
|
134
|
+
const table = document.getElementById("table");
|
|
135
|
+
table.style.opacity = "0";
|
|
136
|
+
table.children[0].remove();
|
|
137
|
+
setDataDrag(null);
|
|
138
|
+
}
|
|
139
|
+
};
|
|
140
|
+
return (_jsx("div", { className: "w-full h-screen flex relative", children: _jsxs("div", { className: "flex", children: [_jsx("div", { className: "absolute top-0 left-0 z-10 flex gap-2", children: priviledged.map((item) => (_jsx(Button, { type: actionPrivileged[item.key] ? "primary" : "default", htmlType: "button", onClick: () => {
|
|
141
|
+
setActionPrivileged((prev) => (Object.assign(Object.assign({}, prev), { [item.key]: !prev[item.key] })));
|
|
142
|
+
}, children: item.name }, item.key))) }), _jsx(LayerView, { componentProps: componentSection, statusKey: "section", defaultBackground: "#1e2d4a", mappingKey: "properties", keyNode: "nodes", onEdgesChange: (table, edges) => console.log({ edges, table }), isConnectEdge: isConnecting, isSelectNode: isSelectNode, onSelectComponent: handleSelectItem,
|
|
143
|
+
// actionPrivileged={{
|
|
144
|
+
// select: true,
|
|
145
|
+
// }}
|
|
146
|
+
onMakeSelection: onMakeSelection, tableMatchKey: [
|
|
64
147
|
{
|
|
65
|
-
key:
|
|
148
|
+
key: "section",
|
|
149
|
+
value: 1,
|
|
66
150
|
properties: {
|
|
67
151
|
fill: "#F6F6F6",
|
|
68
152
|
},
|
|
153
|
+
element: {
|
|
154
|
+
icon: undefined,
|
|
155
|
+
props: {},
|
|
156
|
+
},
|
|
69
157
|
},
|
|
70
|
-
] }),
|
|
158
|
+
], onDragTable: (_, data) => setDataDrag(data), actionPrivileged: actionPrivileged }), _jsxs("div", { className: "w-1/5 p-4", onMouseMove: handleMouseMove, onMouseLeave: handleMouseLeave, children: [_jsx("div", { id: "table" }), _jsxs("div", { className: "rounded-lg bg-white p-4", children: [_jsx("h1", { className: "text-2xl font-bold", children: "Section" }), sections.map((section) => (_jsxs("div", { className: clsx("font-bold text-white rounded-md p-2 cursor-pointer", sectionActive === section.id && "!bg-blue-500"), style: { backgroundColor: section.color }, onClick: () => setSectionActive(section.id), children: [_jsx("h2", { className: "text-lg", children: section.name }), section.items.length > 0 && (_jsx("ul", { className: "list-disc pl-5 bg-opacity-50 bg-white p-2 rounded ", children: section.items.map((item) => (_jsx("li", { children: item.name }, item.id))) }))] }, section.id)))] })] }), _jsx("div", { className: "w-1/5 p-4", children: _jsx("div", { className: "rounded-lg bg-white p-4", children: _jsx("h1", { className: "text-2xl font-bold", children: "Nodes" }) }) })] }) }));
|
|
71
159
|
}
|
|
@@ -6,6 +6,17 @@ import { Button } from "antd";
|
|
|
6
6
|
import { useMemo, useState } from "react";
|
|
7
7
|
export default function GraphView() {
|
|
8
8
|
const [isConnecting, setIsConnecting] = useState(false);
|
|
9
|
+
const [actionPrivileged, setActionPrivileged] = useState({
|
|
10
|
+
select: true,
|
|
11
|
+
move: false,
|
|
12
|
+
switch: false,
|
|
13
|
+
drop: false,
|
|
14
|
+
rightClick: false,
|
|
15
|
+
double: false,
|
|
16
|
+
selection: false,
|
|
17
|
+
selectNode: false,
|
|
18
|
+
connectingNode: false,
|
|
19
|
+
});
|
|
9
20
|
const [isSelectNode, setIsSelectNode] = useState(false);
|
|
10
21
|
const [sections, setSections] = useState([
|
|
11
22
|
{
|
|
@@ -19,7 +30,7 @@ export default function GraphView() {
|
|
|
19
30
|
name: "Section 2",
|
|
20
31
|
color: "#F6F6F6",
|
|
21
32
|
items: [],
|
|
22
|
-
}
|
|
33
|
+
},
|
|
23
34
|
]);
|
|
24
35
|
const [sectionActive, setSectionActive] = useState(null);
|
|
25
36
|
const componentSection = useMemo(() => data === null || data === void 0 ? void 0 : data.map((data) => {
|
|
@@ -51,33 +62,108 @@ export default function GraphView() {
|
|
|
51
62
|
: [...section.items, data] });
|
|
52
63
|
}));
|
|
53
64
|
};
|
|
65
|
+
const priviledged = [
|
|
66
|
+
{
|
|
67
|
+
key: "select",
|
|
68
|
+
name: "Select",
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
key: "move",
|
|
72
|
+
name: "Move",
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
key: "switch",
|
|
76
|
+
name: "Switch",
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
key: "drop",
|
|
80
|
+
name: "Drop",
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
key: "rightClick",
|
|
84
|
+
name: "Right Click",
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
key: "double",
|
|
88
|
+
name: "Double Click",
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
key: "selection",
|
|
92
|
+
name: "Selection",
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
key: "dragTable",
|
|
96
|
+
name: "Drag Table",
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
key: "selectNode",
|
|
100
|
+
name: "Select Node",
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
key: "connectingNode",
|
|
104
|
+
name: "Connecting Node",
|
|
105
|
+
},
|
|
106
|
+
];
|
|
107
|
+
const [dataDrag, setDataDrag] = useState(null);
|
|
108
|
+
console.log({ dataDrag });
|
|
109
|
+
const handleMouseMove = (e) => {
|
|
110
|
+
if (dataDrag) {
|
|
111
|
+
const table = document.getElementById("table");
|
|
112
|
+
table.style.position = "absolute";
|
|
113
|
+
table.style.opacity = "1";
|
|
114
|
+
table.style.top = `${e.clientY}px`;
|
|
115
|
+
table.style.left = `${e.clientX}px`;
|
|
116
|
+
table.style.height = "30px";
|
|
117
|
+
table.style.width = "200px";
|
|
118
|
+
table.style.backgroundColor = "red";
|
|
119
|
+
// add text
|
|
120
|
+
const text = document.createElement("div");
|
|
121
|
+
text.textContent = dataDrag.name;
|
|
122
|
+
text.style.position = "absolute";
|
|
123
|
+
text.style.top = "0";
|
|
124
|
+
text.style.left = "0";
|
|
125
|
+
text.style.color = "white";
|
|
126
|
+
text.style.fontSize = "12px";
|
|
127
|
+
text.style.fontWeight = "bold";
|
|
128
|
+
table.appendChild(text);
|
|
129
|
+
}
|
|
130
|
+
};
|
|
131
|
+
const handleMouseLeave = () => {
|
|
132
|
+
if (dataDrag) {
|
|
133
|
+
const table = document.getElementById("table");
|
|
134
|
+
table.style.opacity = "0";
|
|
135
|
+
table.children[0].remove();
|
|
136
|
+
setDataDrag(null);
|
|
137
|
+
}
|
|
138
|
+
};
|
|
54
139
|
return (<div className="w-full h-screen flex relative">
|
|
55
140
|
<div className="flex">
|
|
56
141
|
<div className="absolute top-0 left-0 z-10 flex gap-2">
|
|
57
|
-
<Button type="primary" onClick={() =>
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
</Button>
|
|
142
|
+
{priviledged.map((item) => (<Button key={item.key} type={actionPrivileged[item.key] ? "primary" : "default"} htmlType="button" onClick={() => {
|
|
143
|
+
setActionPrivileged((prev) => (Object.assign(Object.assign({}, prev), { [item.key]: !prev[item.key] })));
|
|
144
|
+
}}>
|
|
145
|
+
{item.name}
|
|
146
|
+
</Button>))}
|
|
63
147
|
</div>
|
|
64
|
-
<LayerView componentProps={componentSection} statusKey="section" defaultBackground="#1e2d4a" mappingKey="properties" keyNode="nodes" onEdgesChange={(table, edges) => console.log({ edges, table })} isConnectEdge={isConnecting} isSelectNode={isSelectNode} onSelectComponent={handleSelectItem}
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
properties: {
|
|
70
|
-
fill: "#1e2d4a",
|
|
71
|
-
},
|
|
72
|
-
},
|
|
148
|
+
<LayerView componentProps={componentSection} statusKey="section" defaultBackground="#1e2d4a" mappingKey="properties" keyNode="nodes" onEdgesChange={(table, edges) => console.log({ edges, table })} isConnectEdge={isConnecting} isSelectNode={isSelectNode} onSelectComponent={handleSelectItem}
|
|
149
|
+
// actionPrivileged={{
|
|
150
|
+
// select: true,
|
|
151
|
+
// }}
|
|
152
|
+
onMakeSelection={onMakeSelection} tableMatchKey={[
|
|
73
153
|
{
|
|
74
|
-
key:
|
|
154
|
+
key: "section",
|
|
155
|
+
value: 1,
|
|
75
156
|
properties: {
|
|
76
157
|
fill: "#F6F6F6",
|
|
77
158
|
},
|
|
159
|
+
element: {
|
|
160
|
+
icon: undefined,
|
|
161
|
+
props: {},
|
|
162
|
+
},
|
|
78
163
|
},
|
|
79
|
-
]}/>
|
|
80
|
-
<div className="w-1/5 p-4">
|
|
164
|
+
]} onDragTable={(_, data) => setDataDrag(data)} actionPrivileged={actionPrivileged}/>
|
|
165
|
+
<div className="w-1/5 p-4" onMouseMove={handleMouseMove} onMouseLeave={handleMouseLeave}>
|
|
166
|
+
<div id="table"/>
|
|
81
167
|
<div className="rounded-lg bg-white p-4">
|
|
82
168
|
<h1 className="text-2xl font-bold">Section</h1>
|
|
83
169
|
{sections.map((section) => (<div key={section.id} className={clsx("font-bold text-white rounded-md p-2 cursor-pointer", sectionActive === section.id && "!bg-blue-500")} style={{ backgroundColor: section.color }} onClick={() => setSectionActive(section.id)}>
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const IconCross: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
export const IconCross = () => (_jsx("svg", { width: "20", height: "20", viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: _jsx("path", { d: "M9.99935 2.20964C11.5404 2.20964 13.0468 2.66661 14.3282 3.52277C15.6095 4.37893 16.6082 5.59582 17.1979 7.01956C17.7876 8.4433 17.9419 10.0099 17.6413 11.5214C17.3407 13.0328 16.5986 14.4212 15.5089 15.5108C14.4192 16.6005 13.0309 17.3426 11.5194 17.6433C10.008 17.9439 8.44135 17.7896 7.01761 17.1999C5.59387 16.6101 4.37698 15.6115 3.52082 14.3301C2.66466 13.0488 2.20769 11.5423 2.20769 10.0013C2.20769 7.93482 3.02859 5.95298 4.48981 4.49176C5.95103 3.03054 7.93287 2.20964 9.99935 2.20964ZM9.99935 8.8763L7.79935 6.66797C7.64526 6.52506 7.44285 6.44565 7.23269 6.44565C7.02252 6.44565 6.82012 6.52506 6.66602 6.66797C6.52311 6.82206 6.4437 7.02447 6.4437 7.23464C6.4437 7.4448 6.52311 7.64721 6.66602 7.8013L8.89935 10.0013L6.66602 12.2013C6.52311 12.3554 6.4437 12.5578 6.4437 12.768C6.4437 12.9781 6.52311 13.1805 6.66602 13.3346C6.81863 13.4705 7.01585 13.5456 7.22019 13.5456C7.42453 13.5456 7.62174 13.4705 7.77435 13.3346L9.99935 11.1013L12.1994 13.3346C12.3534 13.4775 12.5559 13.557 12.766 13.557C12.9762 13.557 13.1786 13.4775 13.3327 13.3346C13.4686 13.182 13.5437 12.9848 13.5437 12.7805C13.5437 12.5761 13.4686 12.3789 13.3327 12.2263L11.0994 10.0013L13.3327 7.8013C13.4756 7.64721 13.555 7.4448 13.555 7.23464C13.555 7.02447 13.4756 6.82206 13.3327 6.66797C13.1801 6.53208 12.9829 6.45701 12.7785 6.45701C12.5742 6.45701 12.377 6.53208 12.2244 6.66797L9.99935 8.9013M9.99935 1.04297C8.22756 1.04297 6.49556 1.56837 5.02237 2.55272C3.54918 3.53707 2.40097 4.93618 1.72293 6.5731C1.0449 8.21002 0.867492 10.0112 1.21315 11.749C1.55881 13.4867 2.41201 15.083 3.66485 16.3358C4.9177 17.5886 6.51392 18.4418 8.25167 18.7875C9.98942 19.1332 11.7906 18.9558 13.4276 18.2777C15.0645 17.5997 16.4636 16.4515 17.4479 14.9783C18.4323 13.5051 18.9577 11.7731 18.9577 10.0013C18.9555 7.62608 18.011 5.34878 16.3314 3.66924C14.6519 1.98971 12.3746 1.04518 9.99935 1.04297Z", fill: "#D9214E" }) }));
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export const IconCross = () => (<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M9.99935 2.20964C11.5404 2.20964 13.0468 2.66661 14.3282 3.52277C15.6095 4.37893 16.6082 5.59582 17.1979 7.01956C17.7876 8.4433 17.9419 10.0099 17.6413 11.5214C17.3407 13.0328 16.5986 14.4212 15.5089 15.5108C14.4192 16.6005 13.0309 17.3426 11.5194 17.6433C10.008 17.9439 8.44135 17.7896 7.01761 17.1999C5.59387 16.6101 4.37698 15.6115 3.52082 14.3301C2.66466 13.0488 2.20769 11.5423 2.20769 10.0013C2.20769 7.93482 3.02859 5.95298 4.48981 4.49176C5.95103 3.03054 7.93287 2.20964 9.99935 2.20964ZM9.99935 8.8763L7.79935 6.66797C7.64526 6.52506 7.44285 6.44565 7.23269 6.44565C7.02252 6.44565 6.82012 6.52506 6.66602 6.66797C6.52311 6.82206 6.4437 7.02447 6.4437 7.23464C6.4437 7.4448 6.52311 7.64721 6.66602 7.8013L8.89935 10.0013L6.66602 12.2013C6.52311 12.3554 6.4437 12.5578 6.4437 12.768C6.4437 12.9781 6.52311 13.1805 6.66602 13.3346C6.81863 13.4705 7.01585 13.5456 7.22019 13.5456C7.42453 13.5456 7.62174 13.4705 7.77435 13.3346L9.99935 11.1013L12.1994 13.3346C12.3534 13.4775 12.5559 13.557 12.766 13.557C12.9762 13.557 13.1786 13.4775 13.3327 13.3346C13.4686 13.182 13.5437 12.9848 13.5437 12.7805C13.5437 12.5761 13.4686 12.3789 13.3327 12.2263L11.0994 10.0013L13.3327 7.8013C13.4756 7.64721 13.555 7.4448 13.555 7.23464C13.555 7.02447 13.4756 6.82206 13.3327 6.66797C13.1801 6.53208 12.9829 6.45701 12.7785 6.45701C12.5742 6.45701 12.377 6.53208 12.2244 6.66797L9.99935 8.9013M9.99935 1.04297C8.22756 1.04297 6.49556 1.56837 5.02237 2.55272C3.54918 3.53707 2.40097 4.93618 1.72293 6.5731C1.0449 8.21002 0.867492 10.0112 1.21315 11.749C1.55881 13.4867 2.41201 15.083 3.66485 16.3358C4.9177 17.5886 6.51392 18.4418 8.25167 18.7875C9.98942 19.1332 11.7906 18.9558 13.4276 18.2777C15.0645 17.5997 16.4636 16.4515 17.4479 14.9783C18.4323 13.5051 18.9577 11.7731 18.9577 10.0013C18.9555 7.62608 18.011 5.34878 16.3314 3.66924C14.6519 1.98971 12.3746 1.04518 9.99935 1.04297Z" fill="#D9214E"/>
|
|
3
|
+
</svg>);
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { EventHandleType } from "../../dto/event-handler";
|
|
2
2
|
import { PropertiesProps } from "../../dto/table";
|
|
3
3
|
import { TableMatchEvent } from "../../features/view-only-3";
|
|
4
|
+
import { SelectionLines } from "../layer-v3";
|
|
5
|
+
import React from "react";
|
|
4
6
|
interface LayersProps {
|
|
5
7
|
components?: PropertiesProps[];
|
|
6
8
|
selectedComponent?: PropertiesProps;
|
|
@@ -19,6 +21,7 @@ interface LayersProps {
|
|
|
19
21
|
key: string;
|
|
20
22
|
items: string[];
|
|
21
23
|
}[];
|
|
24
|
+
selectionLines?: SelectionLines;
|
|
22
25
|
}
|
|
23
|
-
declare const Layers: ({ components, selectedTable, iconTags, eventMatchTable, onHighlightGroup, onForceRestoreGroup, selectedTableColor,
|
|
26
|
+
declare const Layers: ({ components, selectedTable, iconTags, eventMatchTable, onHighlightGroup, onForceRestoreGroup, selectedTableColor, selectionLines, }: LayersProps) => import("react/jsx-runtime").JSX.Element;
|
|
24
27
|
export default Layers;
|