@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,138 @@
|
|
|
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
|
+
NodePropertyPanel: ()=>NodePropertyPanel
|
|
28
|
+
});
|
|
29
|
+
const jsx_runtime_namespaceObject = require("react/jsx-runtime");
|
|
30
|
+
const apollo_wind_namespaceObject = require("@uipath/apollo-wind");
|
|
31
|
+
const external_lucide_react_namespaceObject = require("lucide-react");
|
|
32
|
+
const external_react_namespaceObject = require("react");
|
|
33
|
+
const SURFACE_REMAP = {
|
|
34
|
+
'--surface-raised': 'var(--surface-overlay)'
|
|
35
|
+
};
|
|
36
|
+
function NodePropertyPanel({ panelTitle, onClose, nodeIcon, nodeLabel, nodeCategory, action, schema, plugins, onSubmit, disabled, resetKey, className, contentInset = '1.5rem' }) {
|
|
37
|
+
const hasNodeHeader = !!(nodeLabel || nodeCategory || nodeIcon || action);
|
|
38
|
+
const formSchema = (0, external_react_namespaceObject.useMemo)(()=>schema && void 0 === schema.actions ? {
|
|
39
|
+
...schema,
|
|
40
|
+
actions: []
|
|
41
|
+
} : schema, [
|
|
42
|
+
schema
|
|
43
|
+
]);
|
|
44
|
+
return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("div", {
|
|
45
|
+
className: (0, apollo_wind_namespaceObject.cn)('flex min-h-0 flex-col bg-surface-raised', className),
|
|
46
|
+
children: [
|
|
47
|
+
panelTitle && /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("div", {
|
|
48
|
+
className: "flex h-10 shrink-0 items-center justify-between border-b border-border-subtle px-2",
|
|
49
|
+
children: [
|
|
50
|
+
/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("div", {
|
|
51
|
+
className: "flex items-center gap-1",
|
|
52
|
+
children: [
|
|
53
|
+
/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("div", {
|
|
54
|
+
className: "grid size-8 place-items-center text-foreground-subtle",
|
|
55
|
+
children: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(external_lucide_react_namespaceObject.GripVertical, {
|
|
56
|
+
size: 14
|
|
57
|
+
})
|
|
58
|
+
}),
|
|
59
|
+
/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("span", {
|
|
60
|
+
className: "text-sm font-semibold text-foreground",
|
|
61
|
+
children: panelTitle
|
|
62
|
+
})
|
|
63
|
+
]
|
|
64
|
+
}),
|
|
65
|
+
onClose && /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("button", {
|
|
66
|
+
type: "button",
|
|
67
|
+
onClick: onClose,
|
|
68
|
+
title: "Close",
|
|
69
|
+
"aria-label": "Close",
|
|
70
|
+
className: "grid size-6 place-items-center rounded text-foreground-muted transition hover:bg-surface-overlay hover:text-foreground",
|
|
71
|
+
children: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(external_lucide_react_namespaceObject.X, {
|
|
72
|
+
size: 14
|
|
73
|
+
})
|
|
74
|
+
})
|
|
75
|
+
]
|
|
76
|
+
}),
|
|
77
|
+
hasNodeHeader && /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("div", {
|
|
78
|
+
className: "flex shrink-0 items-center justify-between gap-4 border-b border-border-subtle px-6 py-4",
|
|
79
|
+
children: [
|
|
80
|
+
/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("div", {
|
|
81
|
+
className: "flex min-w-0 flex-1 items-center gap-3",
|
|
82
|
+
children: [
|
|
83
|
+
nodeIcon && /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("div", {
|
|
84
|
+
className: "grid size-11 shrink-0 place-items-center rounded-xl bg-surface-overlay text-foreground-subtle [&>svg]:size-5",
|
|
85
|
+
children: nodeIcon
|
|
86
|
+
}),
|
|
87
|
+
/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("div", {
|
|
88
|
+
className: "flex min-w-0 flex-1 flex-col justify-center",
|
|
89
|
+
children: [
|
|
90
|
+
nodeLabel && /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("span", {
|
|
91
|
+
className: "block truncate text-lg font-semibold leading-6 tracking-[-0.4px] text-foreground",
|
|
92
|
+
children: nodeLabel
|
|
93
|
+
}),
|
|
94
|
+
nodeCategory && /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("span", {
|
|
95
|
+
className: "block truncate text-sm leading-5 text-foreground-muted",
|
|
96
|
+
children: nodeCategory
|
|
97
|
+
})
|
|
98
|
+
]
|
|
99
|
+
})
|
|
100
|
+
]
|
|
101
|
+
}),
|
|
102
|
+
action && /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("div", {
|
|
103
|
+
className: "flex shrink-0 items-center gap-2",
|
|
104
|
+
children: action
|
|
105
|
+
})
|
|
106
|
+
]
|
|
107
|
+
}),
|
|
108
|
+
formSchema ? /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("div", {
|
|
109
|
+
className: "min-h-0 flex-1 overflow-auto",
|
|
110
|
+
children: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("div", {
|
|
111
|
+
style: {
|
|
112
|
+
...SURFACE_REMAP,
|
|
113
|
+
'--mf-content-inset': contentInset
|
|
114
|
+
},
|
|
115
|
+
className: "[&_label]:text-foreground-muted",
|
|
116
|
+
children: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(apollo_wind_namespaceObject.MetadataForm, {
|
|
117
|
+
schema: formSchema,
|
|
118
|
+
plugins: plugins,
|
|
119
|
+
stepVariant: "tabs",
|
|
120
|
+
onSubmit: onSubmit,
|
|
121
|
+
disabled: disabled,
|
|
122
|
+
className: "flex flex-col gap-4 pb-6 pt-3 [padding-inline:var(--mf-content-inset)]"
|
|
123
|
+
}, resetKey)
|
|
124
|
+
})
|
|
125
|
+
}) : /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("div", {
|
|
126
|
+
className: "px-6 py-4 text-xs text-foreground-subtle",
|
|
127
|
+
children: "No form schema defined for this node."
|
|
128
|
+
})
|
|
129
|
+
]
|
|
130
|
+
});
|
|
131
|
+
}
|
|
132
|
+
exports.NodePropertyPanel = __webpack_exports__.NodePropertyPanel;
|
|
133
|
+
for(var __rspack_i in __webpack_exports__)if (-1 === [
|
|
134
|
+
"NodePropertyPanel"
|
|
135
|
+
].indexOf(__rspack_i)) exports[__rspack_i] = __webpack_exports__[__rspack_i];
|
|
136
|
+
Object.defineProperty(exports, '__esModule', {
|
|
137
|
+
value: true
|
|
138
|
+
});
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { NodePropertyPanelProps } from './NodePropertyPanel.types';
|
|
2
|
+
export declare function NodePropertyPanel({ panelTitle, onClose, nodeIcon, nodeLabel, nodeCategory, action, schema, plugins, onSubmit, disabled, resetKey, className, contentInset, }: NodePropertyPanelProps): import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
//# sourceMappingURL=NodePropertyPanel.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NodePropertyPanel.d.ts","sourceRoot":"","sources":["../../../../src/canvas/components/NodePropertyPanel/NodePropertyPanel.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,2BAA2B,CAAC;AAiCxE,wBAAgB,iBAAiB,CAAC,EAChC,UAAU,EACV,OAAO,EACP,QAAQ,EACR,SAAS,EACT,YAAY,EACZ,MAAM,EACN,MAAM,EACN,OAAO,EACP,QAAQ,EACR,QAAQ,EACR,QAAQ,EACR,SAAS,EACT,YAAuB,GACxB,EAAE,sBAAsB,2CA2FxB"}
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { MetadataForm, cn } from "@uipath/apollo-wind";
|
|
3
|
+
import { GripVertical, X } from "lucide-react";
|
|
4
|
+
import { useMemo } from "react";
|
|
5
|
+
const SURFACE_REMAP = {
|
|
6
|
+
'--surface-raised': 'var(--surface-overlay)'
|
|
7
|
+
};
|
|
8
|
+
function NodePropertyPanel({ panelTitle, onClose, nodeIcon, nodeLabel, nodeCategory, action, schema, plugins, onSubmit, disabled, resetKey, className, contentInset = '1.5rem' }) {
|
|
9
|
+
const hasNodeHeader = !!(nodeLabel || nodeCategory || nodeIcon || action);
|
|
10
|
+
const formSchema = useMemo(()=>schema && void 0 === schema.actions ? {
|
|
11
|
+
...schema,
|
|
12
|
+
actions: []
|
|
13
|
+
} : schema, [
|
|
14
|
+
schema
|
|
15
|
+
]);
|
|
16
|
+
return /*#__PURE__*/ jsxs("div", {
|
|
17
|
+
className: cn('flex min-h-0 flex-col bg-surface-raised', className),
|
|
18
|
+
children: [
|
|
19
|
+
panelTitle && /*#__PURE__*/ jsxs("div", {
|
|
20
|
+
className: "flex h-10 shrink-0 items-center justify-between border-b border-border-subtle px-2",
|
|
21
|
+
children: [
|
|
22
|
+
/*#__PURE__*/ jsxs("div", {
|
|
23
|
+
className: "flex items-center gap-1",
|
|
24
|
+
children: [
|
|
25
|
+
/*#__PURE__*/ jsx("div", {
|
|
26
|
+
className: "grid size-8 place-items-center text-foreground-subtle",
|
|
27
|
+
children: /*#__PURE__*/ jsx(GripVertical, {
|
|
28
|
+
size: 14
|
|
29
|
+
})
|
|
30
|
+
}),
|
|
31
|
+
/*#__PURE__*/ jsx("span", {
|
|
32
|
+
className: "text-sm font-semibold text-foreground",
|
|
33
|
+
children: panelTitle
|
|
34
|
+
})
|
|
35
|
+
]
|
|
36
|
+
}),
|
|
37
|
+
onClose && /*#__PURE__*/ jsx("button", {
|
|
38
|
+
type: "button",
|
|
39
|
+
onClick: onClose,
|
|
40
|
+
title: "Close",
|
|
41
|
+
"aria-label": "Close",
|
|
42
|
+
className: "grid size-6 place-items-center rounded text-foreground-muted transition hover:bg-surface-overlay hover:text-foreground",
|
|
43
|
+
children: /*#__PURE__*/ jsx(X, {
|
|
44
|
+
size: 14
|
|
45
|
+
})
|
|
46
|
+
})
|
|
47
|
+
]
|
|
48
|
+
}),
|
|
49
|
+
hasNodeHeader && /*#__PURE__*/ jsxs("div", {
|
|
50
|
+
className: "flex shrink-0 items-center justify-between gap-4 border-b border-border-subtle px-6 py-4",
|
|
51
|
+
children: [
|
|
52
|
+
/*#__PURE__*/ jsxs("div", {
|
|
53
|
+
className: "flex min-w-0 flex-1 items-center gap-3",
|
|
54
|
+
children: [
|
|
55
|
+
nodeIcon && /*#__PURE__*/ jsx("div", {
|
|
56
|
+
className: "grid size-11 shrink-0 place-items-center rounded-xl bg-surface-overlay text-foreground-subtle [&>svg]:size-5",
|
|
57
|
+
children: nodeIcon
|
|
58
|
+
}),
|
|
59
|
+
/*#__PURE__*/ jsxs("div", {
|
|
60
|
+
className: "flex min-w-0 flex-1 flex-col justify-center",
|
|
61
|
+
children: [
|
|
62
|
+
nodeLabel && /*#__PURE__*/ jsx("span", {
|
|
63
|
+
className: "block truncate text-lg font-semibold leading-6 tracking-[-0.4px] text-foreground",
|
|
64
|
+
children: nodeLabel
|
|
65
|
+
}),
|
|
66
|
+
nodeCategory && /*#__PURE__*/ jsx("span", {
|
|
67
|
+
className: "block truncate text-sm leading-5 text-foreground-muted",
|
|
68
|
+
children: nodeCategory
|
|
69
|
+
})
|
|
70
|
+
]
|
|
71
|
+
})
|
|
72
|
+
]
|
|
73
|
+
}),
|
|
74
|
+
action && /*#__PURE__*/ jsx("div", {
|
|
75
|
+
className: "flex shrink-0 items-center gap-2",
|
|
76
|
+
children: action
|
|
77
|
+
})
|
|
78
|
+
]
|
|
79
|
+
}),
|
|
80
|
+
formSchema ? /*#__PURE__*/ jsx("div", {
|
|
81
|
+
className: "min-h-0 flex-1 overflow-auto",
|
|
82
|
+
children: /*#__PURE__*/ jsx("div", {
|
|
83
|
+
style: {
|
|
84
|
+
...SURFACE_REMAP,
|
|
85
|
+
'--mf-content-inset': contentInset
|
|
86
|
+
},
|
|
87
|
+
className: "[&_label]:text-foreground-muted",
|
|
88
|
+
children: /*#__PURE__*/ jsx(MetadataForm, {
|
|
89
|
+
schema: formSchema,
|
|
90
|
+
plugins: plugins,
|
|
91
|
+
stepVariant: "tabs",
|
|
92
|
+
onSubmit: onSubmit,
|
|
93
|
+
disabled: disabled,
|
|
94
|
+
className: "flex flex-col gap-4 pb-6 pt-3 [padding-inline:var(--mf-content-inset)]"
|
|
95
|
+
}, resetKey)
|
|
96
|
+
})
|
|
97
|
+
}) : /*#__PURE__*/ jsx("div", {
|
|
98
|
+
className: "px-6 py-4 text-xs text-foreground-subtle",
|
|
99
|
+
children: "No form schema defined for this node."
|
|
100
|
+
})
|
|
101
|
+
]
|
|
102
|
+
});
|
|
103
|
+
}
|
|
104
|
+
export { NodePropertyPanel };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __webpack_require__ = {};
|
|
3
|
+
(()=>{
|
|
4
|
+
__webpack_require__.r = (exports1)=>{
|
|
5
|
+
if ("u" > typeof Symbol && Symbol.toStringTag) Object.defineProperty(exports1, Symbol.toStringTag, {
|
|
6
|
+
value: 'Module'
|
|
7
|
+
});
|
|
8
|
+
Object.defineProperty(exports1, '__esModule', {
|
|
9
|
+
value: true
|
|
10
|
+
});
|
|
11
|
+
};
|
|
12
|
+
})();
|
|
13
|
+
var __webpack_exports__ = {};
|
|
14
|
+
__webpack_require__.r(__webpack_exports__);
|
|
15
|
+
for(var __rspack_i in __webpack_exports__)exports[__rspack_i] = __webpack_exports__[__rspack_i];
|
|
16
|
+
Object.defineProperty(exports, '__esModule', {
|
|
17
|
+
value: true
|
|
18
|
+
});
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { FormPlugin, FormSchema } from '@uipath/apollo-wind';
|
|
2
|
+
import type { ReactNode } from 'react';
|
|
3
|
+
export interface NodePropertyPanelProps {
|
|
4
|
+
panelTitle?: string;
|
|
5
|
+
onClose?: () => void;
|
|
6
|
+
nodeIcon?: ReactNode;
|
|
7
|
+
nodeLabel?: string;
|
|
8
|
+
nodeCategory?: string;
|
|
9
|
+
action?: ReactNode;
|
|
10
|
+
schema?: FormSchema;
|
|
11
|
+
plugins?: FormPlugin[];
|
|
12
|
+
onSubmit?: (data: unknown) => void | Promise<void>;
|
|
13
|
+
disabled?: boolean;
|
|
14
|
+
resetKey?: string;
|
|
15
|
+
className?: string;
|
|
16
|
+
contentInset?: string;
|
|
17
|
+
}
|
|
18
|
+
//# sourceMappingURL=NodePropertyPanel.types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NodePropertyPanel.types.d.ts","sourceRoot":"","sources":["../../../../src/canvas/components/NodePropertyPanel/NodePropertyPanel.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAClE,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAEvC,MAAM,WAAW,sBAAsB;IAKrC,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IAErB,QAAQ,CAAC,EAAE,SAAS,CAAC;IAErB,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB,MAAM,CAAC,EAAE,SAAS,CAAC;IAMnB,MAAM,CAAC,EAAE,UAAU,CAAC;IAMpB,OAAO,CAAC,EAAE,UAAU,EAAE,CAAC;IAEvB,QAAQ,CAAC,EAAE,CAAC,IAAI,EAAE,OAAO,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAEnD,QAAQ,CAAC,EAAE,OAAO,CAAC;IAMnB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IAMnB,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB"}
|
|
File without changes
|
|
@@ -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
|
+
NodePropertyPanel: ()=>external_NodePropertyPanel_cjs_namespaceObject.NodePropertyPanel
|
|
28
|
+
});
|
|
29
|
+
const external_NodePropertyPanel_cjs_namespaceObject = require("./NodePropertyPanel.cjs");
|
|
30
|
+
exports.NodePropertyPanel = __webpack_exports__.NodePropertyPanel;
|
|
31
|
+
for(var __rspack_i in __webpack_exports__)if (-1 === [
|
|
32
|
+
"NodePropertyPanel"
|
|
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/NodePropertyPanel/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACxD,YAAY,EAAE,sBAAsB,EAAE,MAAM,2BAA2B,CAAC"}
|