@uipath/apollo-react 4.48.4 → 4.50.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.
- package/dist/canvas/components/NodePropertyPanel/NodePropertyPanel.cjs +138 -0
- package/dist/canvas/components/NodePropertyPanel/NodePropertyPanel.d.ts +3 -0
- package/dist/canvas/components/NodePropertyPanel/NodePropertyPanel.d.ts.map +1 -0
- package/dist/canvas/components/NodePropertyPanel/NodePropertyPanel.js +104 -0
- package/dist/canvas/components/NodePropertyPanel/NodePropertyPanel.types.cjs +18 -0
- package/dist/canvas/components/NodePropertyPanel/NodePropertyPanel.types.d.ts +18 -0
- package/dist/canvas/components/NodePropertyPanel/NodePropertyPanel.types.d.ts.map +1 -0
- package/dist/canvas/components/NodePropertyPanel/NodePropertyPanel.types.js +0 -0
- package/dist/canvas/components/NodePropertyPanel/index.cjs +36 -0
- package/dist/canvas/components/NodePropertyPanel/index.d.ts +3 -0
- package/dist/canvas/components/NodePropertyPanel/index.d.ts.map +1 -0
- package/dist/canvas/components/NodePropertyPanel/index.js +2 -0
- package/dist/canvas/components/ProbeCard/ProbeCard.cjs +482 -0
- package/dist/canvas/components/ProbeCard/ProbeCard.d.ts +48 -0
- package/dist/canvas/components/ProbeCard/ProbeCard.d.ts.map +1 -0
- package/dist/canvas/components/ProbeCard/ProbeCard.js +448 -0
- package/dist/canvas/components/ProbeCard/ProbeResizeHandles.cjs +118 -0
- package/dist/canvas/components/ProbeCard/ProbeResizeHandles.d.ts +18 -0
- package/dist/canvas/components/ProbeCard/ProbeResizeHandles.d.ts.map +1 -0
- package/dist/canvas/components/ProbeCard/ProbeResizeHandles.js +84 -0
- package/dist/canvas/components/ProbeCard/index.cjs +36 -0
- package/dist/canvas/components/ProbeCard/index.d.ts +4 -0
- package/dist/canvas/components/ProbeCard/index.d.ts.map +1 -0
- package/dist/canvas/components/ProbeCard/index.js +2 -0
- package/dist/canvas/components/ProbeCard/useDragSession.cjs +79 -0
- package/dist/canvas/components/ProbeCard/useDragSession.d.ts +11 -0
- package/dist/canvas/components/ProbeCard/useDragSession.d.ts.map +1 -0
- package/dist/canvas/components/ProbeCard/useDragSession.js +45 -0
- package/dist/canvas/components/ProbeCard/useLatestRef.cjs +46 -0
- package/dist/canvas/components/ProbeCard/useLatestRef.d.ts +2 -0
- package/dist/canvas/components/ProbeCard/useLatestRef.d.ts.map +1 -0
- package/dist/canvas/components/ProbeCard/useLatestRef.js +12 -0
- package/dist/canvas/components/index.cjs +66 -52
- package/dist/canvas/components/index.d.ts +2 -0
- package/dist/canvas/components/index.d.ts.map +1 -1
- package/dist/canvas/components/index.js +2 -0
- package/dist/canvas/styles/tailwind.canvas.css +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __webpack_require__ = {};
|
|
3
|
+
(()=>{
|
|
4
|
+
__webpack_require__.d = (exports1, definition)=>{
|
|
5
|
+
for(var key in definition)if (__webpack_require__.o(definition, key) && !__webpack_require__.o(exports1, key)) Object.defineProperty(exports1, key, {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: definition[key]
|
|
8
|
+
});
|
|
9
|
+
};
|
|
10
|
+
})();
|
|
11
|
+
(()=>{
|
|
12
|
+
__webpack_require__.o = (obj, prop)=>Object.prototype.hasOwnProperty.call(obj, prop);
|
|
13
|
+
})();
|
|
14
|
+
(()=>{
|
|
15
|
+
__webpack_require__.r = (exports1)=>{
|
|
16
|
+
if ("u" > typeof Symbol && Symbol.toStringTag) Object.defineProperty(exports1, Symbol.toStringTag, {
|
|
17
|
+
value: 'Module'
|
|
18
|
+
});
|
|
19
|
+
Object.defineProperty(exports1, '__esModule', {
|
|
20
|
+
value: true
|
|
21
|
+
});
|
|
22
|
+
};
|
|
23
|
+
})();
|
|
24
|
+
var __webpack_exports__ = {};
|
|
25
|
+
__webpack_require__.r(__webpack_exports__);
|
|
26
|
+
__webpack_require__.d(__webpack_exports__, {
|
|
27
|
+
ProbeCard: ()=>external_ProbeCard_cjs_namespaceObject.ProbeCard
|
|
28
|
+
});
|
|
29
|
+
const external_ProbeCard_cjs_namespaceObject = require("./ProbeCard.cjs");
|
|
30
|
+
exports.ProbeCard = __webpack_exports__.ProbeCard;
|
|
31
|
+
for(var __rspack_i in __webpack_exports__)if (-1 === [
|
|
32
|
+
"ProbeCard"
|
|
33
|
+
].indexOf(__rspack_i)) exports[__rspack_i] = __webpack_exports__[__rspack_i];
|
|
34
|
+
Object.defineProperty(exports, '__esModule', {
|
|
35
|
+
value: true
|
|
36
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/canvas/components/ProbeCard/index.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,YAAY,EAAE,cAAc,EAAE,WAAW,EAAE,gBAAgB,EAAE,MAAM,aAAa,CAAC;AACjF,YAAY,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC"}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __webpack_require__ = {};
|
|
3
|
+
(()=>{
|
|
4
|
+
__webpack_require__.d = (exports1, definition)=>{
|
|
5
|
+
for(var key in definition)if (__webpack_require__.o(definition, key) && !__webpack_require__.o(exports1, key)) Object.defineProperty(exports1, key, {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: definition[key]
|
|
8
|
+
});
|
|
9
|
+
};
|
|
10
|
+
})();
|
|
11
|
+
(()=>{
|
|
12
|
+
__webpack_require__.o = (obj, prop)=>Object.prototype.hasOwnProperty.call(obj, prop);
|
|
13
|
+
})();
|
|
14
|
+
(()=>{
|
|
15
|
+
__webpack_require__.r = (exports1)=>{
|
|
16
|
+
if ("u" > typeof Symbol && Symbol.toStringTag) Object.defineProperty(exports1, Symbol.toStringTag, {
|
|
17
|
+
value: 'Module'
|
|
18
|
+
});
|
|
19
|
+
Object.defineProperty(exports1, '__esModule', {
|
|
20
|
+
value: true
|
|
21
|
+
});
|
|
22
|
+
};
|
|
23
|
+
})();
|
|
24
|
+
var __webpack_exports__ = {};
|
|
25
|
+
__webpack_require__.r(__webpack_exports__);
|
|
26
|
+
__webpack_require__.d(__webpack_exports__, {
|
|
27
|
+
useDragSession: ()=>useDragSession
|
|
28
|
+
});
|
|
29
|
+
const external_react_namespaceObject = require("react");
|
|
30
|
+
const external_useLatestRef_cjs_namespaceObject = require("./useLatestRef.cjs");
|
|
31
|
+
function useDragSession(handlers) {
|
|
32
|
+
const handlersRef = (0, external_useLatestRef_cjs_namespaceObject.useLatestRef)(handlers);
|
|
33
|
+
const startRef = (0, external_react_namespaceObject.useRef)(null);
|
|
34
|
+
const cleanupRef = (0, external_react_namespaceObject.useRef)(null);
|
|
35
|
+
(0, external_react_namespaceObject.useEffect)(()=>()=>cleanupRef.current?.(), []);
|
|
36
|
+
return (0, external_react_namespaceObject.useCallback)((e)=>{
|
|
37
|
+
if (0 !== e.button) return;
|
|
38
|
+
e.stopPropagation();
|
|
39
|
+
e.preventDefault();
|
|
40
|
+
startRef.current = {
|
|
41
|
+
x: e.clientX,
|
|
42
|
+
y: e.clientY
|
|
43
|
+
};
|
|
44
|
+
handlersRef.current.onStart?.();
|
|
45
|
+
const handleMove = (ev)=>{
|
|
46
|
+
const start = startRef.current;
|
|
47
|
+
if (!start) return;
|
|
48
|
+
handlersRef.current.onMove?.({
|
|
49
|
+
x: ev.clientX - start.x,
|
|
50
|
+
y: ev.clientY - start.y
|
|
51
|
+
});
|
|
52
|
+
};
|
|
53
|
+
const handleUp = ()=>{
|
|
54
|
+
startRef.current = null;
|
|
55
|
+
window.removeEventListener('mousemove', handleMove);
|
|
56
|
+
window.removeEventListener('mouseup', handleUp);
|
|
57
|
+
cleanupRef.current = null;
|
|
58
|
+
handlersRef.current.onEnd?.();
|
|
59
|
+
};
|
|
60
|
+
cleanupRef.current = ()=>{
|
|
61
|
+
window.removeEventListener('mousemove', handleMove);
|
|
62
|
+
window.removeEventListener('mouseup', handleUp);
|
|
63
|
+
startRef.current = null;
|
|
64
|
+
};
|
|
65
|
+
window.addEventListener('mousemove', handleMove);
|
|
66
|
+
window.addEventListener('mouseup', handleUp);
|
|
67
|
+
}, [
|
|
68
|
+
handlersRef,
|
|
69
|
+
startRef,
|
|
70
|
+
cleanupRef
|
|
71
|
+
]);
|
|
72
|
+
}
|
|
73
|
+
exports.useDragSession = __webpack_exports__.useDragSession;
|
|
74
|
+
for(var __rspack_i in __webpack_exports__)if (-1 === [
|
|
75
|
+
"useDragSession"
|
|
76
|
+
].indexOf(__rspack_i)) exports[__rspack_i] = __webpack_exports__[__rspack_i];
|
|
77
|
+
Object.defineProperty(exports, '__esModule', {
|
|
78
|
+
value: true
|
|
79
|
+
});
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
interface DragSessionHandlers {
|
|
2
|
+
onStart?: () => void;
|
|
3
|
+
onMove?: (cumulativeDelta: {
|
|
4
|
+
x: number;
|
|
5
|
+
y: number;
|
|
6
|
+
}) => void;
|
|
7
|
+
onEnd?: () => void;
|
|
8
|
+
}
|
|
9
|
+
export declare function useDragSession(handlers: DragSessionHandlers): (e: React.MouseEvent) => void;
|
|
10
|
+
export {};
|
|
11
|
+
//# sourceMappingURL=useDragSession.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useDragSession.d.ts","sourceRoot":"","sources":["../../../../src/canvas/components/ProbeCard/useDragSession.ts"],"names":[],"mappings":"AAGA,UAAU,mBAAmB;IAC3B,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,MAAM,CAAC,EAAE,CAAC,eAAe,EAAE;QAAE,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAA;KAAE,KAAK,IAAI,CAAC;IAC7D,KAAK,CAAC,EAAE,MAAM,IAAI,CAAC;CACpB;AAMD,wBAAgB,cAAc,CAAC,QAAQ,EAAE,mBAAmB,GAAG,CAAC,CAAC,EAAE,KAAK,CAAC,UAAU,KAAK,IAAI,CAqC3F"}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { useCallback, useEffect, useRef } from "react";
|
|
2
|
+
import { useLatestRef } from "./useLatestRef.js";
|
|
3
|
+
function useDragSession(handlers) {
|
|
4
|
+
const handlersRef = useLatestRef(handlers);
|
|
5
|
+
const startRef = useRef(null);
|
|
6
|
+
const cleanupRef = useRef(null);
|
|
7
|
+
useEffect(()=>()=>cleanupRef.current?.(), []);
|
|
8
|
+
return useCallback((e)=>{
|
|
9
|
+
if (0 !== e.button) return;
|
|
10
|
+
e.stopPropagation();
|
|
11
|
+
e.preventDefault();
|
|
12
|
+
startRef.current = {
|
|
13
|
+
x: e.clientX,
|
|
14
|
+
y: e.clientY
|
|
15
|
+
};
|
|
16
|
+
handlersRef.current.onStart?.();
|
|
17
|
+
const handleMove = (ev)=>{
|
|
18
|
+
const start = startRef.current;
|
|
19
|
+
if (!start) return;
|
|
20
|
+
handlersRef.current.onMove?.({
|
|
21
|
+
x: ev.clientX - start.x,
|
|
22
|
+
y: ev.clientY - start.y
|
|
23
|
+
});
|
|
24
|
+
};
|
|
25
|
+
const handleUp = ()=>{
|
|
26
|
+
startRef.current = null;
|
|
27
|
+
window.removeEventListener('mousemove', handleMove);
|
|
28
|
+
window.removeEventListener('mouseup', handleUp);
|
|
29
|
+
cleanupRef.current = null;
|
|
30
|
+
handlersRef.current.onEnd?.();
|
|
31
|
+
};
|
|
32
|
+
cleanupRef.current = ()=>{
|
|
33
|
+
window.removeEventListener('mousemove', handleMove);
|
|
34
|
+
window.removeEventListener('mouseup', handleUp);
|
|
35
|
+
startRef.current = null;
|
|
36
|
+
};
|
|
37
|
+
window.addEventListener('mousemove', handleMove);
|
|
38
|
+
window.addEventListener('mouseup', handleUp);
|
|
39
|
+
}, [
|
|
40
|
+
handlersRef,
|
|
41
|
+
startRef,
|
|
42
|
+
cleanupRef
|
|
43
|
+
]);
|
|
44
|
+
}
|
|
45
|
+
export { useDragSession };
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __webpack_require__ = {};
|
|
3
|
+
(()=>{
|
|
4
|
+
__webpack_require__.d = (exports1, definition)=>{
|
|
5
|
+
for(var key in definition)if (__webpack_require__.o(definition, key) && !__webpack_require__.o(exports1, key)) Object.defineProperty(exports1, key, {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: definition[key]
|
|
8
|
+
});
|
|
9
|
+
};
|
|
10
|
+
})();
|
|
11
|
+
(()=>{
|
|
12
|
+
__webpack_require__.o = (obj, prop)=>Object.prototype.hasOwnProperty.call(obj, prop);
|
|
13
|
+
})();
|
|
14
|
+
(()=>{
|
|
15
|
+
__webpack_require__.r = (exports1)=>{
|
|
16
|
+
if ("u" > typeof Symbol && Symbol.toStringTag) Object.defineProperty(exports1, Symbol.toStringTag, {
|
|
17
|
+
value: 'Module'
|
|
18
|
+
});
|
|
19
|
+
Object.defineProperty(exports1, '__esModule', {
|
|
20
|
+
value: true
|
|
21
|
+
});
|
|
22
|
+
};
|
|
23
|
+
})();
|
|
24
|
+
var __webpack_exports__ = {};
|
|
25
|
+
__webpack_require__.r(__webpack_exports__);
|
|
26
|
+
__webpack_require__.d(__webpack_exports__, {
|
|
27
|
+
useLatestRef: ()=>useLatestRef
|
|
28
|
+
});
|
|
29
|
+
const external_react_namespaceObject = require("react");
|
|
30
|
+
const useIsomorphicLayoutEffect = "u" > typeof window ? external_react_namespaceObject.useLayoutEffect : external_react_namespaceObject.useEffect;
|
|
31
|
+
function useLatestRef(value) {
|
|
32
|
+
const ref = (0, external_react_namespaceObject.useRef)(value);
|
|
33
|
+
useIsomorphicLayoutEffect(()=>{
|
|
34
|
+
ref.current = value;
|
|
35
|
+
}, [
|
|
36
|
+
value
|
|
37
|
+
]);
|
|
38
|
+
return ref;
|
|
39
|
+
}
|
|
40
|
+
exports.useLatestRef = __webpack_exports__.useLatestRef;
|
|
41
|
+
for(var __rspack_i in __webpack_exports__)if (-1 === [
|
|
42
|
+
"useLatestRef"
|
|
43
|
+
].indexOf(__rspack_i)) exports[__rspack_i] = __webpack_exports__[__rspack_i];
|
|
44
|
+
Object.defineProperty(exports, '__esModule', {
|
|
45
|
+
value: true
|
|
46
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useLatestRef.d.ts","sourceRoot":"","sources":["../../../../src/canvas/components/ProbeCard/useLatestRef.ts"],"names":[],"mappings":"AAIA,wBAAgB,YAAY,CAAC,CAAC,EAAE,KAAK,EAAE,CAAC,gCAMvC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { useEffect, useLayoutEffect, useRef } from "react";
|
|
2
|
+
const useIsomorphicLayoutEffect = "u" > typeof window ? useLayoutEffect : useEffect;
|
|
3
|
+
function useLatestRef(value) {
|
|
4
|
+
const ref = useRef(value);
|
|
5
|
+
useIsomorphicLayoutEffect(()=>{
|
|
6
|
+
ref.current = value;
|
|
7
|
+
}, [
|
|
8
|
+
value
|
|
9
|
+
]);
|
|
10
|
+
return ref;
|
|
11
|
+
}
|
|
12
|
+
export { useLatestRef };
|
|
@@ -60,6 +60,12 @@ var __webpack_modules__ = {
|
|
|
60
60
|
"./NodePropertiesPanel" (module) {
|
|
61
61
|
module.exports = require("./NodePropertiesPanel/index.cjs");
|
|
62
62
|
},
|
|
63
|
+
"./NodePropertyPanel" (module) {
|
|
64
|
+
module.exports = require("./NodePropertyPanel/index.cjs");
|
|
65
|
+
},
|
|
66
|
+
"./ProbeCard" (module) {
|
|
67
|
+
module.exports = require("./ProbeCard/index.cjs");
|
|
68
|
+
},
|
|
63
69
|
"./StageNode" (module) {
|
|
64
70
|
module.exports = require("./StageNode/index.cjs");
|
|
65
71
|
},
|
|
@@ -129,109 +135,117 @@ var __webpack_exports__ = {};
|
|
|
129
135
|
var __rspack_reexport = {};
|
|
130
136
|
for(const __rspack_import_key in _AddNodePanel__rspack_import_0)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_AddNodePanel__rspack_import_0[__rspack_import_key];
|
|
131
137
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
132
|
-
var
|
|
138
|
+
var _ProbeCard__rspack_import_1 = __webpack_require__("./ProbeCard");
|
|
139
|
+
var __rspack_reexport = {};
|
|
140
|
+
for(const __rspack_import_key in _ProbeCard__rspack_import_1)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_ProbeCard__rspack_import_1[__rspack_import_key];
|
|
141
|
+
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
142
|
+
var _AgentCanvas__rspack_import_2 = __webpack_require__("./AgentCanvas");
|
|
143
|
+
var __rspack_reexport = {};
|
|
144
|
+
for(const __rspack_import_key in _AgentCanvas__rspack_import_2)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_AgentCanvas__rspack_import_2[__rspack_import_key];
|
|
145
|
+
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
146
|
+
var _BaseCanvas__rspack_import_3 = __webpack_require__("./BaseCanvas?cd45");
|
|
133
147
|
var __rspack_reexport = {};
|
|
134
|
-
for(const __rspack_import_key in
|
|
148
|
+
for(const __rspack_import_key in _BaseCanvas__rspack_import_3)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_BaseCanvas__rspack_import_3[__rspack_import_key];
|
|
135
149
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
136
|
-
var
|
|
150
|
+
var _BaseNode__rspack_import_4 = __webpack_require__("./BaseNode?fbba");
|
|
137
151
|
var __rspack_reexport = {};
|
|
138
|
-
for(const __rspack_import_key in
|
|
152
|
+
for(const __rspack_import_key in _BaseNode__rspack_import_4)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_BaseNode__rspack_import_4[__rspack_import_key];
|
|
139
153
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
140
|
-
var
|
|
154
|
+
var _ButtonHandle__rspack_import_5 = __webpack_require__("./ButtonHandle?f877");
|
|
141
155
|
var __rspack_reexport = {};
|
|
142
|
-
for(const __rspack_import_key in
|
|
156
|
+
for(const __rspack_import_key in _ButtonHandle__rspack_import_5)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_ButtonHandle__rspack_import_5[__rspack_import_key];
|
|
143
157
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
144
|
-
var
|
|
158
|
+
var _CanvasModeToolbar__rspack_import_6 = __webpack_require__("./CanvasModeToolbar");
|
|
145
159
|
var __rspack_reexport = {};
|
|
146
|
-
for(const __rspack_import_key in
|
|
160
|
+
for(const __rspack_import_key in _CanvasModeToolbar__rspack_import_6)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_CanvasModeToolbar__rspack_import_6[__rspack_import_key];
|
|
147
161
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
148
|
-
var
|
|
162
|
+
var _CanvasPositionControls__rspack_import_7 = __webpack_require__("./CanvasPositionControls");
|
|
149
163
|
var __rspack_reexport = {};
|
|
150
|
-
for(const __rspack_import_key in
|
|
164
|
+
for(const __rspack_import_key in _CanvasPositionControls__rspack_import_7)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_CanvasPositionControls__rspack_import_7[__rspack_import_key];
|
|
151
165
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
152
|
-
var
|
|
166
|
+
var _CanvasZoomControls__rspack_import_8 = __webpack_require__("./CanvasZoomControls");
|
|
153
167
|
var __rspack_reexport = {};
|
|
154
|
-
for(const __rspack_import_key in
|
|
168
|
+
for(const __rspack_import_key in _CanvasZoomControls__rspack_import_8)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_CanvasZoomControls__rspack_import_8[__rspack_import_key];
|
|
155
169
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
156
|
-
var
|
|
170
|
+
var _CaseFlow__rspack_import_9 = __webpack_require__("./CaseFlow");
|
|
157
171
|
var __rspack_reexport = {};
|
|
158
|
-
for(const __rspack_import_key in
|
|
172
|
+
for(const __rspack_import_key in _CaseFlow__rspack_import_9)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_CaseFlow__rspack_import_9[__rspack_import_key];
|
|
159
173
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
160
|
-
var
|
|
174
|
+
var _CodedAgent__rspack_import_10 = __webpack_require__("./CodedAgent");
|
|
161
175
|
var __rspack_reexport = {};
|
|
162
|
-
for(const __rspack_import_key in
|
|
176
|
+
for(const __rspack_import_key in _CodedAgent__rspack_import_10)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_CodedAgent__rspack_import_10[__rspack_import_key];
|
|
163
177
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
164
|
-
var
|
|
178
|
+
var _Edges__rspack_import_11 = __webpack_require__("./Edges");
|
|
165
179
|
var __rspack_reexport = {};
|
|
166
|
-
for(const __rspack_import_key in
|
|
180
|
+
for(const __rspack_import_key in _Edges__rspack_import_11)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_Edges__rspack_import_11[__rspack_import_key];
|
|
167
181
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
168
|
-
var
|
|
182
|
+
var _ExecutionStatusIcon__rspack_import_12 = __webpack_require__("./ExecutionStatusIcon");
|
|
169
183
|
var __rspack_reexport = {};
|
|
170
|
-
for(const __rspack_import_key in
|
|
184
|
+
for(const __rspack_import_key in _ExecutionStatusIcon__rspack_import_12)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_ExecutionStatusIcon__rspack_import_12[__rspack_import_key];
|
|
171
185
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
172
|
-
var
|
|
186
|
+
var _FloatingCanvasPanel__rspack_import_13 = __webpack_require__("./FloatingCanvasPanel");
|
|
173
187
|
var __rspack_reexport = {};
|
|
174
|
-
for(const __rspack_import_key in
|
|
188
|
+
for(const __rspack_import_key in _FloatingCanvasPanel__rspack_import_13)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_FloatingCanvasPanel__rspack_import_13[__rspack_import_key];
|
|
175
189
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
176
|
-
var
|
|
190
|
+
var _GroupNode__rspack_import_14 = __webpack_require__("./GroupNode");
|
|
177
191
|
var __rspack_reexport = {};
|
|
178
|
-
for(const __rspack_import_key in
|
|
192
|
+
for(const __rspack_import_key in _GroupNode__rspack_import_14)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_GroupNode__rspack_import_14[__rspack_import_key];
|
|
179
193
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
180
|
-
var
|
|
194
|
+
var _HierarchicalCanvas__rspack_import_15 = __webpack_require__("./HierarchicalCanvas");
|
|
181
195
|
var __rspack_reexport = {};
|
|
182
|
-
for(const __rspack_import_key in
|
|
196
|
+
for(const __rspack_import_key in _HierarchicalCanvas__rspack_import_15)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_HierarchicalCanvas__rspack_import_15[__rspack_import_key];
|
|
183
197
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
184
|
-
var
|
|
198
|
+
var _LoopNode__rspack_import_16 = __webpack_require__("./LoopNode?4ffc");
|
|
185
199
|
var __rspack_reexport = {};
|
|
186
|
-
for(const __rspack_import_key in
|
|
200
|
+
for(const __rspack_import_key in _LoopNode__rspack_import_16)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_LoopNode__rspack_import_16[__rspack_import_key];
|
|
187
201
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
188
|
-
var
|
|
202
|
+
var _MiniCanvasNavigator__rspack_import_17 = __webpack_require__("./MiniCanvasNavigator?564d");
|
|
189
203
|
var __rspack_reexport = {};
|
|
190
|
-
for(const __rspack_import_key in
|
|
204
|
+
for(const __rspack_import_key in _MiniCanvasNavigator__rspack_import_17)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_MiniCanvasNavigator__rspack_import_17[__rspack_import_key];
|
|
191
205
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
192
|
-
var
|
|
206
|
+
var _NodeContextMenu__rspack_import_18 = __webpack_require__("./NodeContextMenu");
|
|
193
207
|
var __rspack_reexport = {};
|
|
194
|
-
for(const __rspack_import_key in
|
|
208
|
+
for(const __rspack_import_key in _NodeContextMenu__rspack_import_18)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_NodeContextMenu__rspack_import_18[__rspack_import_key];
|
|
195
209
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
196
|
-
var
|
|
210
|
+
var _NodeInspector__rspack_import_19 = __webpack_require__("./NodeInspector");
|
|
197
211
|
var __rspack_reexport = {};
|
|
198
|
-
for(const __rspack_import_key in
|
|
212
|
+
for(const __rspack_import_key in _NodeInspector__rspack_import_19)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_NodeInspector__rspack_import_19[__rspack_import_key];
|
|
199
213
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
200
|
-
var
|
|
214
|
+
var _NodePropertiesPanel__rspack_import_20 = __webpack_require__("./NodePropertiesPanel");
|
|
201
215
|
var __rspack_reexport = {};
|
|
202
|
-
for(const __rspack_import_key in
|
|
216
|
+
for(const __rspack_import_key in _NodePropertiesPanel__rspack_import_20)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_NodePropertiesPanel__rspack_import_20[__rspack_import_key];
|
|
203
217
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
204
|
-
var
|
|
218
|
+
var _NodePropertyPanel__rspack_import_21 = __webpack_require__("./NodePropertyPanel");
|
|
205
219
|
var __rspack_reexport = {};
|
|
206
|
-
for(const __rspack_import_key in
|
|
220
|
+
for(const __rspack_import_key in _NodePropertyPanel__rspack_import_21)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_NodePropertyPanel__rspack_import_21[__rspack_import_key];
|
|
207
221
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
208
|
-
var
|
|
222
|
+
var _shared__rspack_import_22 = __webpack_require__("./shared");
|
|
209
223
|
var __rspack_reexport = {};
|
|
210
|
-
for(const __rspack_import_key in
|
|
224
|
+
for(const __rspack_import_key in _shared__rspack_import_22)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_shared__rspack_import_22[__rspack_import_key];
|
|
211
225
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
212
|
-
var
|
|
226
|
+
var _StageNode__rspack_import_23 = __webpack_require__("./StageNode");
|
|
213
227
|
var __rspack_reexport = {};
|
|
214
|
-
for(const __rspack_import_key in
|
|
228
|
+
for(const __rspack_import_key in _StageNode__rspack_import_23)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_StageNode__rspack_import_23[__rspack_import_key];
|
|
215
229
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
216
|
-
var
|
|
230
|
+
var _StickyNoteNode__rspack_import_24 = __webpack_require__("./StickyNoteNode?d2a3");
|
|
217
231
|
var __rspack_reexport = {};
|
|
218
|
-
for(const __rspack_import_key in
|
|
232
|
+
for(const __rspack_import_key in _StickyNoteNode__rspack_import_24)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_StickyNoteNode__rspack_import_24[__rspack_import_key];
|
|
219
233
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
220
|
-
var
|
|
234
|
+
var _TaskIcon__rspack_import_25 = __webpack_require__("./TaskIcon");
|
|
221
235
|
var __rspack_reexport = {};
|
|
222
|
-
for(const __rspack_import_key in
|
|
236
|
+
for(const __rspack_import_key in _TaskIcon__rspack_import_25)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_TaskIcon__rspack_import_25[__rspack_import_key];
|
|
223
237
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
224
|
-
var
|
|
238
|
+
var _Toolbar__rspack_import_26 = __webpack_require__("./Toolbar");
|
|
225
239
|
var __rspack_reexport = {};
|
|
226
|
-
for(const __rspack_import_key in
|
|
240
|
+
for(const __rspack_import_key in _Toolbar__rspack_import_26)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_Toolbar__rspack_import_26[__rspack_import_key];
|
|
227
241
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
228
|
-
var
|
|
242
|
+
var _Toolbox__rspack_import_27 = __webpack_require__("./Toolbox?2740");
|
|
229
243
|
var __rspack_reexport = {};
|
|
230
|
-
for(const __rspack_import_key in
|
|
244
|
+
for(const __rspack_import_key in _Toolbox__rspack_import_27)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_Toolbox__rspack_import_27[__rspack_import_key];
|
|
231
245
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
232
|
-
var
|
|
246
|
+
var _TriggerNode__rspack_import_28 = __webpack_require__("./TriggerNode");
|
|
233
247
|
var __rspack_reexport = {};
|
|
234
|
-
for(const __rspack_import_key in
|
|
248
|
+
for(const __rspack_import_key in _TriggerNode__rspack_import_28)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_TriggerNode__rspack_import_28[__rspack_import_key];
|
|
235
249
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
236
250
|
})();
|
|
237
251
|
for(var __rspack_i in __webpack_exports__)exports[__rspack_i] = __webpack_exports__[__rspack_i];
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export * from './AddNodePanel';
|
|
2
|
+
export * from './ProbeCard';
|
|
2
3
|
export * from './AgentCanvas';
|
|
3
4
|
export * from './BaseCanvas';
|
|
4
5
|
export * from './BaseNode';
|
|
@@ -18,6 +19,7 @@ export * from './MiniCanvasNavigator';
|
|
|
18
19
|
export * from './NodeContextMenu';
|
|
19
20
|
export * from './NodeInspector';
|
|
20
21
|
export * from './NodePropertiesPanel';
|
|
22
|
+
export * from './NodePropertyPanel';
|
|
21
23
|
export * from './shared';
|
|
22
24
|
export * from './StageNode';
|
|
23
25
|
export * from './StickyNoteNode';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/canvas/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC;AAC7B,cAAc,YAAY,CAAC;AAC3B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,qBAAqB,CAAC;AACpC,cAAc,0BAA0B,CAAC;AACzC,cAAc,sBAAsB,CAAC;AACrC,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC;AACxB,cAAc,uBAAuB,CAAC;AACtC,cAAc,uBAAuB,CAAC;AACtC,cAAc,aAAa,CAAC;AAC5B,cAAc,sBAAsB,CAAC;AACrC,cAAc,YAAY,CAAC;AAC3B,cAAc,uBAAuB,CAAC;AACtC,cAAc,mBAAmB,CAAC;AAClC,cAAc,iBAAiB,CAAC;AAChC,cAAc,uBAAuB,CAAC;AACtC,cAAc,UAAU,CAAC;AACzB,cAAc,aAAa,CAAC;AAC5B,cAAc,kBAAkB,CAAC;AACjC,cAAc,YAAY,CAAC;AAC3B,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,eAAe,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/canvas/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,aAAa,CAAC;AAC5B,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC;AAC7B,cAAc,YAAY,CAAC;AAC3B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,qBAAqB,CAAC;AACpC,cAAc,0BAA0B,CAAC;AACzC,cAAc,sBAAsB,CAAC;AACrC,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC;AACxB,cAAc,uBAAuB,CAAC;AACtC,cAAc,uBAAuB,CAAC;AACtC,cAAc,aAAa,CAAC;AAC5B,cAAc,sBAAsB,CAAC;AACrC,cAAc,YAAY,CAAC;AAC3B,cAAc,uBAAuB,CAAC;AACtC,cAAc,mBAAmB,CAAC;AAClC,cAAc,iBAAiB,CAAC;AAChC,cAAc,uBAAuB,CAAC;AACtC,cAAc,qBAAqB,CAAC;AACpC,cAAc,UAAU,CAAC;AACzB,cAAc,aAAa,CAAC;AAC5B,cAAc,kBAAkB,CAAC;AACjC,cAAc,YAAY,CAAC;AAC3B,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,eAAe,CAAC"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export * from "./AddNodePanel/index.js";
|
|
2
|
+
export * from "./ProbeCard/index.js";
|
|
2
3
|
export * from "./AgentCanvas/index.js";
|
|
3
4
|
export * from "./BaseCanvas/index.js";
|
|
4
5
|
export * from "./BaseNode/index.js";
|
|
@@ -18,6 +19,7 @@ export * from "./MiniCanvasNavigator/index.js";
|
|
|
18
19
|
export * from "./NodeContextMenu/index.js";
|
|
19
20
|
export * from "./NodeInspector.js";
|
|
20
21
|
export * from "./NodePropertiesPanel/index.js";
|
|
22
|
+
export * from "./NodePropertyPanel/index.js";
|
|
21
23
|
export * from "./shared/index.js";
|
|
22
24
|
export * from "./StageNode/index.js";
|
|
23
25
|
export * from "./StickyNoteNode/index.js";
|