@uipath/apollo-react 4.48.4 → 4.49.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/index.cjs +21 -14
- package/dist/canvas/components/index.d.ts +1 -0
- package/dist/canvas/components/index.d.ts.map +1 -1
- package/dist/canvas/components/index.js +1 -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"}
|
|
@@ -60,6 +60,9 @@ 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
|
+
},
|
|
63
66
|
"./StageNode" (module) {
|
|
64
67
|
module.exports = require("./StageNode/index.cjs");
|
|
65
68
|
},
|
|
@@ -205,33 +208,37 @@ var __webpack_exports__ = {};
|
|
|
205
208
|
var __rspack_reexport = {};
|
|
206
209
|
for(const __rspack_import_key in _NodePropertiesPanel__rspack_import_19)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_NodePropertiesPanel__rspack_import_19[__rspack_import_key];
|
|
207
210
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
208
|
-
var
|
|
211
|
+
var _NodePropertyPanel__rspack_import_20 = __webpack_require__("./NodePropertyPanel");
|
|
212
|
+
var __rspack_reexport = {};
|
|
213
|
+
for(const __rspack_import_key in _NodePropertyPanel__rspack_import_20)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_NodePropertyPanel__rspack_import_20[__rspack_import_key];
|
|
214
|
+
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
215
|
+
var _shared__rspack_import_21 = __webpack_require__("./shared");
|
|
209
216
|
var __rspack_reexport = {};
|
|
210
|
-
for(const __rspack_import_key in
|
|
217
|
+
for(const __rspack_import_key in _shared__rspack_import_21)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_shared__rspack_import_21[__rspack_import_key];
|
|
211
218
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
212
|
-
var
|
|
219
|
+
var _StageNode__rspack_import_22 = __webpack_require__("./StageNode");
|
|
213
220
|
var __rspack_reexport = {};
|
|
214
|
-
for(const __rspack_import_key in
|
|
221
|
+
for(const __rspack_import_key in _StageNode__rspack_import_22)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_StageNode__rspack_import_22[__rspack_import_key];
|
|
215
222
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
216
|
-
var
|
|
223
|
+
var _StickyNoteNode__rspack_import_23 = __webpack_require__("./StickyNoteNode?d2a3");
|
|
217
224
|
var __rspack_reexport = {};
|
|
218
|
-
for(const __rspack_import_key in
|
|
225
|
+
for(const __rspack_import_key in _StickyNoteNode__rspack_import_23)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_StickyNoteNode__rspack_import_23[__rspack_import_key];
|
|
219
226
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
220
|
-
var
|
|
227
|
+
var _TaskIcon__rspack_import_24 = __webpack_require__("./TaskIcon");
|
|
221
228
|
var __rspack_reexport = {};
|
|
222
|
-
for(const __rspack_import_key in
|
|
229
|
+
for(const __rspack_import_key in _TaskIcon__rspack_import_24)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_TaskIcon__rspack_import_24[__rspack_import_key];
|
|
223
230
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
224
|
-
var
|
|
231
|
+
var _Toolbar__rspack_import_25 = __webpack_require__("./Toolbar");
|
|
225
232
|
var __rspack_reexport = {};
|
|
226
|
-
for(const __rspack_import_key in
|
|
233
|
+
for(const __rspack_import_key in _Toolbar__rspack_import_25)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_Toolbar__rspack_import_25[__rspack_import_key];
|
|
227
234
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
228
|
-
var
|
|
235
|
+
var _Toolbox__rspack_import_26 = __webpack_require__("./Toolbox?2740");
|
|
229
236
|
var __rspack_reexport = {};
|
|
230
|
-
for(const __rspack_import_key in
|
|
237
|
+
for(const __rspack_import_key in _Toolbox__rspack_import_26)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_Toolbox__rspack_import_26[__rspack_import_key];
|
|
231
238
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
232
|
-
var
|
|
239
|
+
var _TriggerNode__rspack_import_27 = __webpack_require__("./TriggerNode");
|
|
233
240
|
var __rspack_reexport = {};
|
|
234
|
-
for(const __rspack_import_key in
|
|
241
|
+
for(const __rspack_import_key in _TriggerNode__rspack_import_27)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_TriggerNode__rspack_import_27[__rspack_import_key];
|
|
235
242
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
236
243
|
})();
|
|
237
244
|
for(var __rspack_i in __webpack_exports__)exports[__rspack_i] = __webpack_exports__[__rspack_i];
|
|
@@ -18,6 +18,7 @@ export * from './MiniCanvasNavigator';
|
|
|
18
18
|
export * from './NodeContextMenu';
|
|
19
19
|
export * from './NodeInspector';
|
|
20
20
|
export * from './NodePropertiesPanel';
|
|
21
|
+
export * from './NodePropertyPanel';
|
|
21
22
|
export * from './shared';
|
|
22
23
|
export * from './StageNode';
|
|
23
24
|
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,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"}
|
|
@@ -18,6 +18,7 @@ export * from "./MiniCanvasNavigator/index.js";
|
|
|
18
18
|
export * from "./NodeContextMenu/index.js";
|
|
19
19
|
export * from "./NodeInspector.js";
|
|
20
20
|
export * from "./NodePropertiesPanel/index.js";
|
|
21
|
+
export * from "./NodePropertyPanel/index.js";
|
|
21
22
|
export * from "./shared/index.js";
|
|
22
23
|
export * from "./StageNode/index.js";
|
|
23
24
|
export * from "./StickyNoteNode/index.js";
|