@genfeedai/workflow-ui 0.1.0 → 0.1.1
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.js +12 -13
- package/dist/canvas.mjs +6 -7
- package/dist/{chunk-FT64PCUP.mjs → chunk-3PMLER6D.mjs} +6 -15
- package/dist/{chunk-CSUBLSKZ.mjs → chunk-73V6SUEO.mjs} +27 -36
- package/dist/{chunk-HPQT36RR.js → chunk-DICI5FSP.js} +18 -27
- package/dist/{chunk-EC2ZIWOK.js → chunk-DUZLPHRC.js} +36 -45
- package/dist/{chunk-ADWNF7V3.js → chunk-EMGXUNBL.js} +3 -3
- package/dist/{chunk-VOGL2WCE.mjs → chunk-EYL6J4MW.mjs} +9 -18
- package/dist/{chunk-H6LZKSLY.js → chunk-H3JOHAS5.js} +113 -148
- package/dist/{chunk-E544XUBL.js → chunk-HWY6IBWT.js} +8 -11
- package/dist/{chunk-22PDGHNQ.mjs → chunk-I3GNO2SR.mjs} +2 -2
- package/dist/{chunk-UQQUWGHW.mjs → chunk-IASLG6IA.mjs} +1 -1
- package/dist/chunk-IHF35QZD.js +1095 -0
- package/dist/{chunk-SW7QNEZU.js → chunk-OZNYKFMX.js} +30 -30
- package/dist/{chunk-XV5Z5XYR.mjs → chunk-PFHFGSM5.mjs} +18 -53
- package/dist/{chunk-CETJJ73S.js → chunk-PVWLMJGZ.js} +28 -37
- package/dist/chunk-RIGVIEYB.mjs +1093 -0
- package/dist/{chunk-LAJ34AH2.mjs → chunk-XOC5ETTX.mjs} +4 -7
- package/dist/hooks.js +14 -15
- package/dist/hooks.mjs +4 -5
- package/dist/index.js +41 -42
- package/dist/index.mjs +8 -9
- package/dist/lib.js +0 -1
- package/dist/lib.mjs +0 -1
- package/dist/nodes.js +37 -38
- package/dist/nodes.mjs +4 -5
- package/dist/panels.js +6 -7
- package/dist/panels.mjs +3 -4
- package/dist/provider.js +0 -1
- package/dist/provider.mjs +0 -1
- package/dist/stores.js +7 -8
- package/dist/stores.mjs +2 -3
- package/dist/toolbar.js +9 -10
- package/dist/toolbar.mjs +3 -4
- package/dist/ui.js +0 -1
- package/dist/ui.mjs +0 -1
- package/dist/workflowStore-32ZH5REM.js +11 -0
- package/dist/workflowStore-ZCSVIZQF.mjs +2 -0
- package/package.json +3 -3
- package/dist/chunk-AC6TWLRT.mjs +0 -27
- package/dist/chunk-BJ3R5R32.mjs +0 -2163
- package/dist/chunk-NSDLGLAQ.js +0 -2166
- package/dist/chunk-Z7PWFZG5.js +0 -30
- package/dist/workflowStore-4EGKJLYK.mjs +0 -3
- package/dist/workflowStore-KM32FDL7.js +0 -12
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { useExecutionStore, useUIStore } from './chunk-
|
|
2
|
-
import {
|
|
3
|
-
import { __toESM } from './chunk-AC6TWLRT.mjs';
|
|
1
|
+
import { useExecutionStore, useUIStore } from './chunk-73V6SUEO.mjs';
|
|
2
|
+
import { getNodesByCategory } from '@genfeedai/types';
|
|
4
3
|
import { Bug, Trash2, X, ChevronDown, ChevronRight, Copy, PanelLeftClose, Search, GitBranch, ArrowLeftFromLine, ArrowRightToLine, Download, Eye, CheckCircle, Columns2, LayoutGrid, Subtitles, Pencil, Grid3X3, Maximize, Crop, Film, Scissors, Layers, Wand2, Maximize2, Navigation, AudioLines, Mic, Brain, Video, Sparkles, Puzzle, Volume2, FileVideo, FileText, MessageSquare, Image } from 'lucide-react';
|
|
5
4
|
import { forwardRef, memo, useCallback, useState, useMemo } from 'react';
|
|
6
5
|
import { jsx, jsxs } from 'react/jsx-runtime';
|
|
7
6
|
|
|
8
|
-
// src/panels/NodePalette.tsx
|
|
9
|
-
var import_types = __toESM(require_dist());
|
|
10
7
|
var ICONS = {
|
|
11
8
|
// Input
|
|
12
9
|
Image,
|
|
@@ -105,7 +102,7 @@ function NodeCard({ type, label, description, icon, category }) {
|
|
|
105
102
|
);
|
|
106
103
|
}
|
|
107
104
|
function CategorySection({ category, isExpanded, onToggle }) {
|
|
108
|
-
const nodes =
|
|
105
|
+
const nodes = getNodesByCategory()[category];
|
|
109
106
|
return /* @__PURE__ */ jsxs("div", { className: "border-b border-[var(--border)] last:border-0", children: [
|
|
110
107
|
/* @__PURE__ */ jsxs(
|
|
111
108
|
"button",
|
|
@@ -138,7 +135,7 @@ function NodePalette() {
|
|
|
138
135
|
const [expandedCategories, setExpandedCategories] = useState(
|
|
139
136
|
/* @__PURE__ */ new Set(["input"])
|
|
140
137
|
);
|
|
141
|
-
const nodesByCategory = useMemo(() =>
|
|
138
|
+
const nodesByCategory = useMemo(() => getNodesByCategory(), []);
|
|
142
139
|
const filteredNodes = useMemo(() => {
|
|
143
140
|
if (!searchQuery.trim()) return null;
|
|
144
141
|
const query = searchQuery.toLowerCase();
|
package/dist/hooks.js
CHANGED
|
@@ -1,56 +1,55 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
require('./chunk-FOMOOERN.js');
|
|
4
|
-
var
|
|
5
|
-
var
|
|
4
|
+
var chunkEMGXUNBL_js = require('./chunk-EMGXUNBL.js');
|
|
5
|
+
var chunkDICI5FSP_js = require('./chunk-DICI5FSP.js');
|
|
6
6
|
require('./chunk-5HJFQVUR.js');
|
|
7
7
|
require('./chunk-EMUMKW5C.js');
|
|
8
8
|
require('./chunk-JLWKW3G5.js');
|
|
9
|
-
require('./chunk-
|
|
10
|
-
require('./chunk-
|
|
9
|
+
require('./chunk-DUZLPHRC.js');
|
|
10
|
+
require('./chunk-IHF35QZD.js');
|
|
11
11
|
require('./chunk-RJ262NXS.js');
|
|
12
12
|
require('./chunk-RXNEDWK2.js');
|
|
13
|
-
require('./chunk-Z7PWFZG5.js');
|
|
14
13
|
|
|
15
14
|
|
|
16
15
|
|
|
17
16
|
Object.defineProperty(exports, "useCanvasKeyboardShortcuts", {
|
|
18
17
|
enumerable: true,
|
|
19
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkEMGXUNBL_js.useCanvasKeyboardShortcuts; }
|
|
20
19
|
});
|
|
21
20
|
Object.defineProperty(exports, "useAIGenNode", {
|
|
22
21
|
enumerable: true,
|
|
23
|
-
get: function () { return
|
|
22
|
+
get: function () { return chunkDICI5FSP_js.useAIGenNode; }
|
|
24
23
|
});
|
|
25
24
|
Object.defineProperty(exports, "useAIGenNodeHeader", {
|
|
26
25
|
enumerable: true,
|
|
27
|
-
get: function () { return
|
|
26
|
+
get: function () { return chunkDICI5FSP_js.useAIGenNodeHeader; }
|
|
28
27
|
});
|
|
29
28
|
Object.defineProperty(exports, "useAutoLoadModelSchema", {
|
|
30
29
|
enumerable: true,
|
|
31
|
-
get: function () { return
|
|
30
|
+
get: function () { return chunkDICI5FSP_js.useAutoLoadModelSchema; }
|
|
32
31
|
});
|
|
33
32
|
Object.defineProperty(exports, "useCanGenerate", {
|
|
34
33
|
enumerable: true,
|
|
35
|
-
get: function () { return
|
|
34
|
+
get: function () { return chunkDICI5FSP_js.useCanGenerate; }
|
|
36
35
|
});
|
|
37
36
|
Object.defineProperty(exports, "useMediaUpload", {
|
|
38
37
|
enumerable: true,
|
|
39
|
-
get: function () { return
|
|
38
|
+
get: function () { return chunkDICI5FSP_js.useMediaUpload; }
|
|
40
39
|
});
|
|
41
40
|
Object.defineProperty(exports, "useModelSelection", {
|
|
42
41
|
enumerable: true,
|
|
43
|
-
get: function () { return
|
|
42
|
+
get: function () { return chunkDICI5FSP_js.useModelSelection; }
|
|
44
43
|
});
|
|
45
44
|
Object.defineProperty(exports, "useNodeExecution", {
|
|
46
45
|
enumerable: true,
|
|
47
|
-
get: function () { return
|
|
46
|
+
get: function () { return chunkDICI5FSP_js.useNodeExecution; }
|
|
48
47
|
});
|
|
49
48
|
Object.defineProperty(exports, "usePromptAutocomplete", {
|
|
50
49
|
enumerable: true,
|
|
51
|
-
get: function () { return
|
|
50
|
+
get: function () { return chunkDICI5FSP_js.usePromptAutocomplete; }
|
|
52
51
|
});
|
|
53
52
|
Object.defineProperty(exports, "useRequiredInputs", {
|
|
54
53
|
enumerable: true,
|
|
55
|
-
get: function () { return
|
|
54
|
+
get: function () { return chunkDICI5FSP_js.useRequiredInputs; }
|
|
56
55
|
});
|
package/dist/hooks.mjs
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
import './chunk-L5TF4EHW.mjs';
|
|
2
|
-
export { useCanvasKeyboardShortcuts } from './chunk-
|
|
3
|
-
export { useAIGenNode, useAIGenNodeHeader, useAutoLoadModelSchema, useCanGenerate, useMediaUpload, useModelSelection, useNodeExecution, usePromptAutocomplete, useRequiredInputs } from './chunk-
|
|
2
|
+
export { useCanvasKeyboardShortcuts } from './chunk-IASLG6IA.mjs';
|
|
3
|
+
export { useAIGenNode, useAIGenNodeHeader, useAutoLoadModelSchema, useCanGenerate, useMediaUpload, useModelSelection, useNodeExecution, usePromptAutocomplete, useRequiredInputs } from './chunk-3PMLER6D.mjs';
|
|
4
4
|
import './chunk-7SKSRSS7.mjs';
|
|
5
5
|
import './chunk-EFXQT23N.mjs';
|
|
6
6
|
import './chunk-LDN7IX4Y.mjs';
|
|
7
|
-
import './chunk-
|
|
8
|
-
import './chunk-
|
|
7
|
+
import './chunk-73V6SUEO.mjs';
|
|
8
|
+
import './chunk-RIGVIEYB.mjs';
|
|
9
9
|
import './chunk-FT33LFII.mjs';
|
|
10
10
|
import './chunk-VRN3UWE5.mjs';
|
|
11
|
-
import './chunk-AC6TWLRT.mjs';
|
package/dist/index.js
CHANGED
|
@@ -1,142 +1,141 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
var
|
|
3
|
+
var chunkPVWLMJGZ_js = require('./chunk-PVWLMJGZ.js');
|
|
4
|
+
var chunkH3JOHAS5_js = require('./chunk-H3JOHAS5.js');
|
|
5
5
|
require('./chunk-3SPPKCWR.js');
|
|
6
6
|
require('./chunk-3YFFDHC5.js');
|
|
7
|
-
var
|
|
8
|
-
var
|
|
7
|
+
var chunkHWY6IBWT_js = require('./chunk-HWY6IBWT.js');
|
|
8
|
+
var chunkOZNYKFMX_js = require('./chunk-OZNYKFMX.js');
|
|
9
9
|
require('./chunk-FOMOOERN.js');
|
|
10
|
-
var
|
|
11
|
-
var
|
|
10
|
+
var chunkEMGXUNBL_js = require('./chunk-EMGXUNBL.js');
|
|
11
|
+
var chunkDICI5FSP_js = require('./chunk-DICI5FSP.js');
|
|
12
12
|
require('./chunk-5HJFQVUR.js');
|
|
13
13
|
require('./chunk-EMUMKW5C.js');
|
|
14
14
|
var chunk6DOEUDD5_js = require('./chunk-6DOEUDD5.js');
|
|
15
15
|
require('./chunk-JLWKW3G5.js');
|
|
16
|
-
var
|
|
17
|
-
var
|
|
16
|
+
var chunkDUZLPHRC_js = require('./chunk-DUZLPHRC.js');
|
|
17
|
+
var chunkIHF35QZD_js = require('./chunk-IHF35QZD.js');
|
|
18
18
|
require('./chunk-5LQ4QBR5.js');
|
|
19
19
|
var chunkRJ262NXS_js = require('./chunk-RJ262NXS.js');
|
|
20
20
|
var chunkRXNEDWK2_js = require('./chunk-RXNEDWK2.js');
|
|
21
|
-
require('./chunk-Z7PWFZG5.js');
|
|
22
21
|
|
|
23
22
|
|
|
24
23
|
|
|
25
24
|
Object.defineProperty(exports, "DEFAULT_GROUP_COLORS", {
|
|
26
25
|
enumerable: true,
|
|
27
|
-
get: function () { return
|
|
26
|
+
get: function () { return chunkPVWLMJGZ_js.DEFAULT_GROUP_COLORS; }
|
|
28
27
|
});
|
|
29
28
|
Object.defineProperty(exports, "GROUP_COLORS", {
|
|
30
29
|
enumerable: true,
|
|
31
|
-
get: function () { return
|
|
30
|
+
get: function () { return chunkPVWLMJGZ_js.GROUP_COLORS; }
|
|
32
31
|
});
|
|
33
32
|
Object.defineProperty(exports, "GroupOverlay", {
|
|
34
33
|
enumerable: true,
|
|
35
|
-
get: function () { return
|
|
34
|
+
get: function () { return chunkPVWLMJGZ_js.GroupOverlay; }
|
|
36
35
|
});
|
|
37
36
|
Object.defineProperty(exports, "HelperLines", {
|
|
38
37
|
enumerable: true,
|
|
39
|
-
get: function () { return
|
|
38
|
+
get: function () { return chunkPVWLMJGZ_js.HelperLines; }
|
|
40
39
|
});
|
|
41
40
|
Object.defineProperty(exports, "NodeSearch", {
|
|
42
41
|
enumerable: true,
|
|
43
|
-
get: function () { return
|
|
42
|
+
get: function () { return chunkPVWLMJGZ_js.NodeSearch; }
|
|
44
43
|
});
|
|
45
44
|
Object.defineProperty(exports, "PauseEdge", {
|
|
46
45
|
enumerable: true,
|
|
47
|
-
get: function () { return
|
|
46
|
+
get: function () { return chunkPVWLMJGZ_js.PauseEdge; }
|
|
48
47
|
});
|
|
49
48
|
Object.defineProperty(exports, "ShortcutHelpModal", {
|
|
50
49
|
enumerable: true,
|
|
51
|
-
get: function () { return
|
|
50
|
+
get: function () { return chunkPVWLMJGZ_js.ShortcutHelpModal; }
|
|
52
51
|
});
|
|
53
52
|
Object.defineProperty(exports, "WorkflowCanvas", {
|
|
54
53
|
enumerable: true,
|
|
55
|
-
get: function () { return
|
|
54
|
+
get: function () { return chunkPVWLMJGZ_js.WorkflowCanvas; }
|
|
56
55
|
});
|
|
57
56
|
Object.defineProperty(exports, "BaseNode", {
|
|
58
57
|
enumerable: true,
|
|
59
|
-
get: function () { return
|
|
58
|
+
get: function () { return chunkH3JOHAS5_js.BaseNode; }
|
|
60
59
|
});
|
|
61
60
|
Object.defineProperty(exports, "nodeTypes", {
|
|
62
61
|
enumerable: true,
|
|
63
|
-
get: function () { return
|
|
62
|
+
get: function () { return chunkH3JOHAS5_js.nodeTypes; }
|
|
64
63
|
});
|
|
65
64
|
Object.defineProperty(exports, "DebugPanel", {
|
|
66
65
|
enumerable: true,
|
|
67
|
-
get: function () { return
|
|
66
|
+
get: function () { return chunkHWY6IBWT_js.DebugPanel; }
|
|
68
67
|
});
|
|
69
68
|
Object.defineProperty(exports, "NodePalette", {
|
|
70
69
|
enumerable: true,
|
|
71
|
-
get: function () { return
|
|
70
|
+
get: function () { return chunkHWY6IBWT_js.NodePalette; }
|
|
72
71
|
});
|
|
73
72
|
Object.defineProperty(exports, "PanelContainer", {
|
|
74
73
|
enumerable: true,
|
|
75
|
-
get: function () { return
|
|
74
|
+
get: function () { return chunkHWY6IBWT_js.PanelContainer; }
|
|
76
75
|
});
|
|
77
76
|
Object.defineProperty(exports, "BottomBar", {
|
|
78
77
|
enumerable: true,
|
|
79
|
-
get: function () { return
|
|
78
|
+
get: function () { return chunkOZNYKFMX_js.BottomBar; }
|
|
80
79
|
});
|
|
81
80
|
Object.defineProperty(exports, "OverflowMenu", {
|
|
82
81
|
enumerable: true,
|
|
83
|
-
get: function () { return
|
|
82
|
+
get: function () { return chunkOZNYKFMX_js.OverflowMenu; }
|
|
84
83
|
});
|
|
85
84
|
Object.defineProperty(exports, "SaveAsDialog", {
|
|
86
85
|
enumerable: true,
|
|
87
|
-
get: function () { return
|
|
86
|
+
get: function () { return chunkOZNYKFMX_js.SaveAsDialog; }
|
|
88
87
|
});
|
|
89
88
|
Object.defineProperty(exports, "SaveIndicator", {
|
|
90
89
|
enumerable: true,
|
|
91
|
-
get: function () { return
|
|
90
|
+
get: function () { return chunkOZNYKFMX_js.SaveIndicator; }
|
|
92
91
|
});
|
|
93
92
|
Object.defineProperty(exports, "Toolbar", {
|
|
94
93
|
enumerable: true,
|
|
95
|
-
get: function () { return
|
|
94
|
+
get: function () { return chunkOZNYKFMX_js.Toolbar; }
|
|
96
95
|
});
|
|
97
96
|
Object.defineProperty(exports, "ToolbarDropdown", {
|
|
98
97
|
enumerable: true,
|
|
99
|
-
get: function () { return
|
|
98
|
+
get: function () { return chunkOZNYKFMX_js.ToolbarDropdown; }
|
|
100
99
|
});
|
|
101
100
|
Object.defineProperty(exports, "useCanvasKeyboardShortcuts", {
|
|
102
101
|
enumerable: true,
|
|
103
|
-
get: function () { return
|
|
102
|
+
get: function () { return chunkEMGXUNBL_js.useCanvasKeyboardShortcuts; }
|
|
104
103
|
});
|
|
105
104
|
Object.defineProperty(exports, "useAIGenNode", {
|
|
106
105
|
enumerable: true,
|
|
107
|
-
get: function () { return
|
|
106
|
+
get: function () { return chunkDICI5FSP_js.useAIGenNode; }
|
|
108
107
|
});
|
|
109
108
|
Object.defineProperty(exports, "useAIGenNodeHeader", {
|
|
110
109
|
enumerable: true,
|
|
111
|
-
get: function () { return
|
|
110
|
+
get: function () { return chunkDICI5FSP_js.useAIGenNodeHeader; }
|
|
112
111
|
});
|
|
113
112
|
Object.defineProperty(exports, "useAutoLoadModelSchema", {
|
|
114
113
|
enumerable: true,
|
|
115
|
-
get: function () { return
|
|
114
|
+
get: function () { return chunkDICI5FSP_js.useAutoLoadModelSchema; }
|
|
116
115
|
});
|
|
117
116
|
Object.defineProperty(exports, "useCanGenerate", {
|
|
118
117
|
enumerable: true,
|
|
119
|
-
get: function () { return
|
|
118
|
+
get: function () { return chunkDICI5FSP_js.useCanGenerate; }
|
|
120
119
|
});
|
|
121
120
|
Object.defineProperty(exports, "useMediaUpload", {
|
|
122
121
|
enumerable: true,
|
|
123
|
-
get: function () { return
|
|
122
|
+
get: function () { return chunkDICI5FSP_js.useMediaUpload; }
|
|
124
123
|
});
|
|
125
124
|
Object.defineProperty(exports, "useModelSelection", {
|
|
126
125
|
enumerable: true,
|
|
127
|
-
get: function () { return
|
|
126
|
+
get: function () { return chunkDICI5FSP_js.useModelSelection; }
|
|
128
127
|
});
|
|
129
128
|
Object.defineProperty(exports, "useNodeExecution", {
|
|
130
129
|
enumerable: true,
|
|
131
|
-
get: function () { return
|
|
130
|
+
get: function () { return chunkDICI5FSP_js.useNodeExecution; }
|
|
132
131
|
});
|
|
133
132
|
Object.defineProperty(exports, "usePromptAutocomplete", {
|
|
134
133
|
enumerable: true,
|
|
135
|
-
get: function () { return
|
|
134
|
+
get: function () { return chunkDICI5FSP_js.usePromptAutocomplete; }
|
|
136
135
|
});
|
|
137
136
|
Object.defineProperty(exports, "useRequiredInputs", {
|
|
138
137
|
enumerable: true,
|
|
139
|
-
get: function () { return
|
|
138
|
+
get: function () { return chunkDICI5FSP_js.useRequiredInputs; }
|
|
140
139
|
});
|
|
141
140
|
Object.defineProperty(exports, "useAnnotationStore", {
|
|
142
141
|
enumerable: true,
|
|
@@ -148,19 +147,19 @@ Object.defineProperty(exports, "usePromptEditorStore", {
|
|
|
148
147
|
});
|
|
149
148
|
Object.defineProperty(exports, "useExecutionStore", {
|
|
150
149
|
enumerable: true,
|
|
151
|
-
get: function () { return
|
|
150
|
+
get: function () { return chunkDUZLPHRC_js.useExecutionStore; }
|
|
152
151
|
});
|
|
153
152
|
Object.defineProperty(exports, "useSettingsStore", {
|
|
154
153
|
enumerable: true,
|
|
155
|
-
get: function () { return
|
|
154
|
+
get: function () { return chunkDUZLPHRC_js.useSettingsStore; }
|
|
156
155
|
});
|
|
157
156
|
Object.defineProperty(exports, "useUIStore", {
|
|
158
157
|
enumerable: true,
|
|
159
|
-
get: function () { return
|
|
158
|
+
get: function () { return chunkDUZLPHRC_js.useUIStore; }
|
|
160
159
|
});
|
|
161
160
|
Object.defineProperty(exports, "useWorkflowStore", {
|
|
162
161
|
enumerable: true,
|
|
163
|
-
get: function () { return
|
|
162
|
+
get: function () { return chunkIHF35QZD_js.useWorkflowStore; }
|
|
164
163
|
});
|
|
165
164
|
Object.defineProperty(exports, "WorkflowUIProvider", {
|
|
166
165
|
enumerable: true,
|
package/dist/index.mjs
CHANGED
|
@@ -1,19 +1,18 @@
|
|
|
1
|
-
export { DEFAULT_GROUP_COLORS, GROUP_COLORS, GroupOverlay, HelperLines, NodeSearch, PauseEdge, ShortcutHelpModal, WorkflowCanvas } from './chunk-
|
|
2
|
-
export { BaseNode, nodeTypes } from './chunk-
|
|
1
|
+
export { DEFAULT_GROUP_COLORS, GROUP_COLORS, GroupOverlay, HelperLines, NodeSearch, PauseEdge, ShortcutHelpModal, WorkflowCanvas } from './chunk-EYL6J4MW.mjs';
|
|
2
|
+
export { BaseNode, nodeTypes } from './chunk-PFHFGSM5.mjs';
|
|
3
3
|
import './chunk-ZJD5WMR3.mjs';
|
|
4
4
|
import './chunk-E323WAZG.mjs';
|
|
5
|
-
export { DebugPanel, NodePalette, PanelContainer } from './chunk-
|
|
6
|
-
export { BottomBar, OverflowMenu, SaveAsDialog, SaveIndicator, Toolbar, ToolbarDropdown } from './chunk-
|
|
5
|
+
export { DebugPanel, NodePalette, PanelContainer } from './chunk-XOC5ETTX.mjs';
|
|
6
|
+
export { BottomBar, OverflowMenu, SaveAsDialog, SaveIndicator, Toolbar, ToolbarDropdown } from './chunk-I3GNO2SR.mjs';
|
|
7
7
|
import './chunk-L5TF4EHW.mjs';
|
|
8
|
-
export { useCanvasKeyboardShortcuts } from './chunk-
|
|
9
|
-
export { useAIGenNode, useAIGenNodeHeader, useAutoLoadModelSchema, useCanGenerate, useMediaUpload, useModelSelection, useNodeExecution, usePromptAutocomplete, useRequiredInputs } from './chunk-
|
|
8
|
+
export { useCanvasKeyboardShortcuts } from './chunk-IASLG6IA.mjs';
|
|
9
|
+
export { useAIGenNode, useAIGenNodeHeader, useAutoLoadModelSchema, useCanGenerate, useMediaUpload, useModelSelection, useNodeExecution, usePromptAutocomplete, useRequiredInputs } from './chunk-3PMLER6D.mjs';
|
|
10
10
|
import './chunk-7SKSRSS7.mjs';
|
|
11
11
|
import './chunk-EFXQT23N.mjs';
|
|
12
12
|
export { useAnnotationStore, usePromptEditorStore } from './chunk-CV4M7CNU.mjs';
|
|
13
13
|
import './chunk-LDN7IX4Y.mjs';
|
|
14
|
-
export { useExecutionStore, useSettingsStore, useUIStore } from './chunk-
|
|
15
|
-
export { useWorkflowStore } from './chunk-
|
|
14
|
+
export { useExecutionStore, useSettingsStore, useUIStore } from './chunk-73V6SUEO.mjs';
|
|
15
|
+
export { useWorkflowStore } from './chunk-RIGVIEYB.mjs';
|
|
16
16
|
import './chunk-MLJJBBTB.mjs';
|
|
17
17
|
export { WorkflowUIProvider, useWorkflowUIConfig } from './chunk-FT33LFII.mjs';
|
|
18
18
|
export { configurePromptLibrary, usePromptLibraryStore } from './chunk-VRN3UWE5.mjs';
|
|
19
|
-
import './chunk-AC6TWLRT.mjs';
|
package/dist/lib.js
CHANGED
package/dist/lib.mjs
CHANGED
|
@@ -1,3 +1,2 @@
|
|
|
1
1
|
export { DEFAULT_IMAGE_MODEL, DEFAULT_LIPSYNC_MODEL, DEFAULT_LLM_MODEL, DEFAULT_VIDEO_MODEL, EASING_PRESETS, IMAGE_MODELS, IMAGE_MODEL_ID_MAP, IMAGE_MODEL_MAP, LIPSYNC_MODELS, LIPSYNC_SYNC_MODES, LLM_MODELS, LLM_MODEL_ID_MAP, LLM_MODEL_MAP, VIDEO_MODELS, VIDEO_MODEL_ID_MAP, VIDEO_MODEL_MAP, applySpeedCurve, evaluateBezier, generateHandlesFromSchema, getEasingDisplayName, getImageModelLabel, getLLMModelLabel, getLipSyncModelLabel, getMediaFromNode, getVideoModelLabel, isSchemaHandle, lipSyncModelSupportsImage } from './chunk-E323WAZG.mjs';
|
|
2
2
|
export { CONNECTION_FIELDS, extractEnumValues, getImageDimensions, getSchemaDefaults, getVideoMetadata, supportsImageInput, validateRequiredSchemaFields } from './chunk-EFXQT23N.mjs';
|
|
3
|
-
import './chunk-AC6TWLRT.mjs';
|
package/dist/nodes.js
CHANGED
|
@@ -1,151 +1,150 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkH3JOHAS5_js = require('./chunk-H3JOHAS5.js');
|
|
4
4
|
require('./chunk-3SPPKCWR.js');
|
|
5
5
|
require('./chunk-3YFFDHC5.js');
|
|
6
|
-
require('./chunk-
|
|
6
|
+
require('./chunk-DICI5FSP.js');
|
|
7
7
|
require('./chunk-5HJFQVUR.js');
|
|
8
8
|
require('./chunk-EMUMKW5C.js');
|
|
9
9
|
require('./chunk-6DOEUDD5.js');
|
|
10
10
|
require('./chunk-JLWKW3G5.js');
|
|
11
|
-
require('./chunk-
|
|
12
|
-
require('./chunk-
|
|
11
|
+
require('./chunk-DUZLPHRC.js');
|
|
12
|
+
require('./chunk-IHF35QZD.js');
|
|
13
13
|
require('./chunk-5LQ4QBR5.js');
|
|
14
14
|
require('./chunk-RJ262NXS.js');
|
|
15
15
|
require('./chunk-RXNEDWK2.js');
|
|
16
|
-
require('./chunk-Z7PWFZG5.js');
|
|
17
16
|
|
|
18
17
|
|
|
19
18
|
|
|
20
19
|
Object.defineProperty(exports, "AnimationNode", {
|
|
21
20
|
enumerable: true,
|
|
22
|
-
get: function () { return
|
|
21
|
+
get: function () { return chunkH3JOHAS5_js.AnimationNode; }
|
|
23
22
|
});
|
|
24
23
|
Object.defineProperty(exports, "AnnotationNode", {
|
|
25
24
|
enumerable: true,
|
|
26
|
-
get: function () { return
|
|
25
|
+
get: function () { return chunkH3JOHAS5_js.AnnotationNode; }
|
|
27
26
|
});
|
|
28
27
|
Object.defineProperty(exports, "AudioInputNode", {
|
|
29
28
|
enumerable: true,
|
|
30
|
-
get: function () { return
|
|
29
|
+
get: function () { return chunkH3JOHAS5_js.AudioInputNode; }
|
|
31
30
|
});
|
|
32
31
|
Object.defineProperty(exports, "BaseNode", {
|
|
33
32
|
enumerable: true,
|
|
34
|
-
get: function () { return
|
|
33
|
+
get: function () { return chunkH3JOHAS5_js.BaseNode; }
|
|
35
34
|
});
|
|
36
35
|
Object.defineProperty(exports, "DownloadNode", {
|
|
37
36
|
enumerable: true,
|
|
38
|
-
get: function () { return
|
|
37
|
+
get: function () { return chunkH3JOHAS5_js.DownloadNode; }
|
|
39
38
|
});
|
|
40
39
|
Object.defineProperty(exports, "ImageCompareNode", {
|
|
41
40
|
enumerable: true,
|
|
42
|
-
get: function () { return
|
|
41
|
+
get: function () { return chunkH3JOHAS5_js.ImageCompareNode; }
|
|
43
42
|
});
|
|
44
43
|
Object.defineProperty(exports, "ImageGenNode", {
|
|
45
44
|
enumerable: true,
|
|
46
|
-
get: function () { return
|
|
45
|
+
get: function () { return chunkH3JOHAS5_js.ImageGenNode; }
|
|
47
46
|
});
|
|
48
47
|
Object.defineProperty(exports, "ImageGridSplitNode", {
|
|
49
48
|
enumerable: true,
|
|
50
|
-
get: function () { return
|
|
49
|
+
get: function () { return chunkH3JOHAS5_js.ImageGridSplitNode; }
|
|
51
50
|
});
|
|
52
51
|
Object.defineProperty(exports, "ImageInputNode", {
|
|
53
52
|
enumerable: true,
|
|
54
|
-
get: function () { return
|
|
53
|
+
get: function () { return chunkH3JOHAS5_js.ImageInputNode; }
|
|
55
54
|
});
|
|
56
55
|
Object.defineProperty(exports, "LLMNode", {
|
|
57
56
|
enumerable: true,
|
|
58
|
-
get: function () { return
|
|
57
|
+
get: function () { return chunkH3JOHAS5_js.LLMNode; }
|
|
59
58
|
});
|
|
60
59
|
Object.defineProperty(exports, "LipSyncNode", {
|
|
61
60
|
enumerable: true,
|
|
62
|
-
get: function () { return
|
|
61
|
+
get: function () { return chunkH3JOHAS5_js.LipSyncNode; }
|
|
63
62
|
});
|
|
64
63
|
Object.defineProperty(exports, "MotionControlNode", {
|
|
65
64
|
enumerable: true,
|
|
66
|
-
get: function () { return
|
|
65
|
+
get: function () { return chunkH3JOHAS5_js.MotionControlNode; }
|
|
67
66
|
});
|
|
68
67
|
Object.defineProperty(exports, "OutputGalleryNode", {
|
|
69
68
|
enumerable: true,
|
|
70
|
-
get: function () { return
|
|
69
|
+
get: function () { return chunkH3JOHAS5_js.OutputGalleryNode; }
|
|
71
70
|
});
|
|
72
71
|
Object.defineProperty(exports, "OutputNode", {
|
|
73
72
|
enumerable: true,
|
|
74
|
-
get: function () { return
|
|
73
|
+
get: function () { return chunkH3JOHAS5_js.OutputNode; }
|
|
75
74
|
});
|
|
76
75
|
Object.defineProperty(exports, "PromptConstructorNode", {
|
|
77
76
|
enumerable: true,
|
|
78
|
-
get: function () { return
|
|
77
|
+
get: function () { return chunkH3JOHAS5_js.PromptConstructorNode; }
|
|
79
78
|
});
|
|
80
79
|
Object.defineProperty(exports, "PromptNode", {
|
|
81
80
|
enumerable: true,
|
|
82
|
-
get: function () { return
|
|
81
|
+
get: function () { return chunkH3JOHAS5_js.PromptNode; }
|
|
83
82
|
});
|
|
84
83
|
Object.defineProperty(exports, "ReframeNode", {
|
|
85
84
|
enumerable: true,
|
|
86
|
-
get: function () { return
|
|
85
|
+
get: function () { return chunkH3JOHAS5_js.ReframeNode; }
|
|
87
86
|
});
|
|
88
87
|
Object.defineProperty(exports, "ResizeNode", {
|
|
89
88
|
enumerable: true,
|
|
90
|
-
get: function () { return
|
|
89
|
+
get: function () { return chunkH3JOHAS5_js.ResizeNode; }
|
|
91
90
|
});
|
|
92
91
|
Object.defineProperty(exports, "SubtitleNode", {
|
|
93
92
|
enumerable: true,
|
|
94
|
-
get: function () { return
|
|
93
|
+
get: function () { return chunkH3JOHAS5_js.SubtitleNode; }
|
|
95
94
|
});
|
|
96
95
|
Object.defineProperty(exports, "TextToSpeechNode", {
|
|
97
96
|
enumerable: true,
|
|
98
|
-
get: function () { return
|
|
97
|
+
get: function () { return chunkH3JOHAS5_js.TextToSpeechNode; }
|
|
99
98
|
});
|
|
100
99
|
Object.defineProperty(exports, "TranscribeNode", {
|
|
101
100
|
enumerable: true,
|
|
102
|
-
get: function () { return
|
|
101
|
+
get: function () { return chunkH3JOHAS5_js.TranscribeNode; }
|
|
103
102
|
});
|
|
104
103
|
Object.defineProperty(exports, "UpscaleNode", {
|
|
105
104
|
enumerable: true,
|
|
106
|
-
get: function () { return
|
|
105
|
+
get: function () { return chunkH3JOHAS5_js.UpscaleNode; }
|
|
107
106
|
});
|
|
108
107
|
Object.defineProperty(exports, "VideoFrameExtractNode", {
|
|
109
108
|
enumerable: true,
|
|
110
|
-
get: function () { return
|
|
109
|
+
get: function () { return chunkH3JOHAS5_js.VideoFrameExtractNode; }
|
|
111
110
|
});
|
|
112
111
|
Object.defineProperty(exports, "VideoGenNode", {
|
|
113
112
|
enumerable: true,
|
|
114
|
-
get: function () { return
|
|
113
|
+
get: function () { return chunkH3JOHAS5_js.VideoGenNode; }
|
|
115
114
|
});
|
|
116
115
|
Object.defineProperty(exports, "VideoInputNode", {
|
|
117
116
|
enumerable: true,
|
|
118
|
-
get: function () { return
|
|
117
|
+
get: function () { return chunkH3JOHAS5_js.VideoInputNode; }
|
|
119
118
|
});
|
|
120
119
|
Object.defineProperty(exports, "VideoStitchNode", {
|
|
121
120
|
enumerable: true,
|
|
122
|
-
get: function () { return
|
|
121
|
+
get: function () { return chunkH3JOHAS5_js.VideoStitchNode; }
|
|
123
122
|
});
|
|
124
123
|
Object.defineProperty(exports, "VideoTrimNode", {
|
|
125
124
|
enumerable: true,
|
|
126
|
-
get: function () { return
|
|
125
|
+
get: function () { return chunkH3JOHAS5_js.VideoTrimNode; }
|
|
127
126
|
});
|
|
128
127
|
Object.defineProperty(exports, "VoiceChangeNode", {
|
|
129
128
|
enumerable: true,
|
|
130
|
-
get: function () { return
|
|
129
|
+
get: function () { return chunkH3JOHAS5_js.VoiceChangeNode; }
|
|
131
130
|
});
|
|
132
131
|
Object.defineProperty(exports, "WorkflowInputNode", {
|
|
133
132
|
enumerable: true,
|
|
134
|
-
get: function () { return
|
|
133
|
+
get: function () { return chunkH3JOHAS5_js.WorkflowInputNode; }
|
|
135
134
|
});
|
|
136
135
|
Object.defineProperty(exports, "WorkflowOutputNode", {
|
|
137
136
|
enumerable: true,
|
|
138
|
-
get: function () { return
|
|
137
|
+
get: function () { return chunkH3JOHAS5_js.WorkflowOutputNode; }
|
|
139
138
|
});
|
|
140
139
|
Object.defineProperty(exports, "WorkflowRefNode", {
|
|
141
140
|
enumerable: true,
|
|
142
|
-
get: function () { return
|
|
141
|
+
get: function () { return chunkH3JOHAS5_js.WorkflowRefNode; }
|
|
143
142
|
});
|
|
144
143
|
Object.defineProperty(exports, "nodeTypes", {
|
|
145
144
|
enumerable: true,
|
|
146
|
-
get: function () { return
|
|
145
|
+
get: function () { return chunkH3JOHAS5_js.nodeTypes; }
|
|
147
146
|
});
|
|
148
147
|
Object.defineProperty(exports, "setWorkflowRefApi", {
|
|
149
148
|
enumerable: true,
|
|
150
|
-
get: function () { return
|
|
149
|
+
get: function () { return chunkH3JOHAS5_js.setWorkflowRefApi; }
|
|
151
150
|
});
|
package/dist/nodes.mjs
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
|
-
export { AnimationNode, AnnotationNode, AudioInputNode, BaseNode, DownloadNode, ImageCompareNode, ImageGenNode, ImageGridSplitNode, ImageInputNode, LLMNode, LipSyncNode, MotionControlNode, OutputGalleryNode, OutputNode, PromptConstructorNode, PromptNode, ReframeNode, ResizeNode, SubtitleNode, TextToSpeechNode, TranscribeNode, UpscaleNode, VideoFrameExtractNode, VideoGenNode, VideoInputNode, VideoStitchNode, VideoTrimNode, VoiceChangeNode, WorkflowInputNode, WorkflowOutputNode, WorkflowRefNode, nodeTypes, setWorkflowRefApi } from './chunk-
|
|
1
|
+
export { AnimationNode, AnnotationNode, AudioInputNode, BaseNode, DownloadNode, ImageCompareNode, ImageGenNode, ImageGridSplitNode, ImageInputNode, LLMNode, LipSyncNode, MotionControlNode, OutputGalleryNode, OutputNode, PromptConstructorNode, PromptNode, ReframeNode, ResizeNode, SubtitleNode, TextToSpeechNode, TranscribeNode, UpscaleNode, VideoFrameExtractNode, VideoGenNode, VideoInputNode, VideoStitchNode, VideoTrimNode, VoiceChangeNode, WorkflowInputNode, WorkflowOutputNode, WorkflowRefNode, nodeTypes, setWorkflowRefApi } from './chunk-PFHFGSM5.mjs';
|
|
2
2
|
import './chunk-ZJD5WMR3.mjs';
|
|
3
3
|
import './chunk-E323WAZG.mjs';
|
|
4
|
-
import './chunk-
|
|
4
|
+
import './chunk-3PMLER6D.mjs';
|
|
5
5
|
import './chunk-7SKSRSS7.mjs';
|
|
6
6
|
import './chunk-EFXQT23N.mjs';
|
|
7
7
|
import './chunk-CV4M7CNU.mjs';
|
|
8
8
|
import './chunk-LDN7IX4Y.mjs';
|
|
9
|
-
import './chunk-
|
|
10
|
-
import './chunk-
|
|
9
|
+
import './chunk-73V6SUEO.mjs';
|
|
10
|
+
import './chunk-RIGVIEYB.mjs';
|
|
11
11
|
import './chunk-MLJJBBTB.mjs';
|
|
12
12
|
import './chunk-FT33LFII.mjs';
|
|
13
13
|
import './chunk-VRN3UWE5.mjs';
|
|
14
|
-
import './chunk-AC6TWLRT.mjs';
|
package/dist/panels.js
CHANGED
|
@@ -1,21 +1,20 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('./chunk-
|
|
5
|
-
require('./chunk-
|
|
6
|
-
require('./chunk-Z7PWFZG5.js');
|
|
3
|
+
var chunkHWY6IBWT_js = require('./chunk-HWY6IBWT.js');
|
|
4
|
+
require('./chunk-DUZLPHRC.js');
|
|
5
|
+
require('./chunk-IHF35QZD.js');
|
|
7
6
|
|
|
8
7
|
|
|
9
8
|
|
|
10
9
|
Object.defineProperty(exports, "DebugPanel", {
|
|
11
10
|
enumerable: true,
|
|
12
|
-
get: function () { return
|
|
11
|
+
get: function () { return chunkHWY6IBWT_js.DebugPanel; }
|
|
13
12
|
});
|
|
14
13
|
Object.defineProperty(exports, "NodePalette", {
|
|
15
14
|
enumerable: true,
|
|
16
|
-
get: function () { return
|
|
15
|
+
get: function () { return chunkHWY6IBWT_js.NodePalette; }
|
|
17
16
|
});
|
|
18
17
|
Object.defineProperty(exports, "PanelContainer", {
|
|
19
18
|
enumerable: true,
|
|
20
|
-
get: function () { return
|
|
19
|
+
get: function () { return chunkHWY6IBWT_js.PanelContainer; }
|
|
21
20
|
});
|
package/dist/panels.mjs
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
export { DebugPanel, NodePalette, PanelContainer } from './chunk-
|
|
2
|
-
import './chunk-
|
|
3
|
-
import './chunk-
|
|
4
|
-
import './chunk-AC6TWLRT.mjs';
|
|
1
|
+
export { DebugPanel, NodePalette, PanelContainer } from './chunk-XOC5ETTX.mjs';
|
|
2
|
+
import './chunk-73V6SUEO.mjs';
|
|
3
|
+
import './chunk-RIGVIEYB.mjs';
|
package/dist/provider.js
CHANGED
package/dist/provider.mjs
CHANGED