@genfeedai/workflow-ui 0.1.1 → 0.1.3
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 +11 -10
- package/dist/canvas.mjs +5 -4
- package/dist/{chunk-DICI5FSP.js → chunk-3TMV3K34.js} +3 -3
- package/dist/chunk-4MZ62VMF.js +37 -0
- package/dist/{chunk-EYL6J4MW.mjs → chunk-7P2JWDC7.mjs} +2 -2
- package/dist/{chunk-3PMLER6D.mjs → chunk-AOTUCJMA.mjs} +1 -1
- package/dist/{chunk-XOC5ETTX.mjs → chunk-AUZR6REQ.mjs} +1 -1
- package/dist/{chunk-DUZLPHRC.js → chunk-AXFOCPPP.js} +1 -1
- package/dist/{chunk-PVWLMJGZ.js → chunk-BMFRA6GK.js} +13 -13
- package/dist/{chunk-PFHFGSM5.mjs → chunk-E3YBVMYZ.mjs} +389 -10
- package/dist/{chunk-H3JOHAS5.js → chunk-ECD5J2BA.js} +450 -71
- package/dist/{chunk-I3GNO2SR.mjs → chunk-HCXI63ME.mjs} +1 -1
- package/dist/{chunk-HWY6IBWT.js → chunk-KDIWRSYV.js} +5 -5
- package/dist/{chunk-OZNYKFMX.js → chunk-SEV2DWKF.js} +18 -18
- package/dist/{chunk-73V6SUEO.mjs → chunk-SQK4JDYY.mjs} +1 -1
- package/dist/chunk-ZJWP5KGZ.mjs +33 -0
- package/dist/hooks.js +12 -11
- package/dist/hooks.mjs +3 -2
- package/dist/index.js +38 -37
- package/dist/index.mjs +7 -6
- package/dist/lib.js +1 -0
- package/dist/lib.mjs +1 -0
- package/dist/nodes.js +37 -36
- package/dist/nodes.mjs +4 -3
- package/dist/panels.js +6 -5
- package/dist/panels.mjs +3 -2
- package/dist/provider.js +1 -0
- package/dist/provider.mjs +1 -0
- package/dist/stores.js +6 -5
- package/dist/stores.mjs +2 -1
- package/dist/toolbar.js +9 -8
- package/dist/toolbar.mjs +3 -2
- package/dist/ui.js +1 -0
- package/dist/ui.mjs +1 -0
- package/dist/{workflowStore-ZCSVIZQF.mjs → workflowStore-7SDJC4UR.mjs} +1 -0
- package/dist/{workflowStore-32ZH5REM.js → workflowStore-LNJQ5RZG.js} +1 -0
- package/package.json +4 -4
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { useSettingsStore, useExecutionStore, useUIStore } from './chunk-
|
|
1
|
+
import { useSettingsStore, useExecutionStore, useUIStore } from './chunk-SQK4JDYY.mjs';
|
|
2
2
|
import { useWorkflowStore } from './chunk-RIGVIEYB.mjs';
|
|
3
3
|
import { X, CloudOff, Loader2, Cloud, Check, ChevronDown, SaveAll, Save, FolderOpen, Bug, LayoutGrid, Undo2, Redo2, Settings, AlertCircle, Minus, Plus, Square, Play, ChevronUp, PlayCircle, RotateCcw, MoreVertical } from 'lucide-react';
|
|
4
4
|
import { useState, useRef, useEffect, useCallback, useMemo } from 'react';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkAXFOCPPP_js = require('./chunk-AXFOCPPP.js');
|
|
4
4
|
var types = require('@genfeedai/types');
|
|
5
5
|
var lucideReact = require('lucide-react');
|
|
6
6
|
var react = require('react');
|
|
@@ -132,7 +132,7 @@ function CategorySection({ category, isExpanded, onToggle }) {
|
|
|
132
132
|
] });
|
|
133
133
|
}
|
|
134
134
|
function NodePalette() {
|
|
135
|
-
const { togglePalette } =
|
|
135
|
+
const { togglePalette } = chunkAXFOCPPP_js.useUIStore();
|
|
136
136
|
const [searchQuery, setSearchQuery] = react.useState("");
|
|
137
137
|
const [expandedCategories, setExpandedCategories] = react.useState(
|
|
138
138
|
/* @__PURE__ */ new Set(["input"])
|
|
@@ -316,9 +316,9 @@ function PayloadCard({ payload }) {
|
|
|
316
316
|
] });
|
|
317
317
|
}
|
|
318
318
|
function DebugPanelComponent() {
|
|
319
|
-
const debugPayloads =
|
|
320
|
-
const clearDebugPayloads =
|
|
321
|
-
const setShowDebugPanel =
|
|
319
|
+
const debugPayloads = chunkAXFOCPPP_js.useExecutionStore((s) => s.debugPayloads);
|
|
320
|
+
const clearDebugPayloads = chunkAXFOCPPP_js.useExecutionStore((s) => s.clearDebugPayloads);
|
|
321
|
+
const setShowDebugPanel = chunkAXFOCPPP_js.useUIStore((s) => s.setShowDebugPanel);
|
|
322
322
|
const handleClose = react.useCallback(() => {
|
|
323
323
|
setShowDebugPanel(false);
|
|
324
324
|
}, [setShowDebugPanel]);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkAXFOCPPP_js = require('./chunk-AXFOCPPP.js');
|
|
4
4
|
var chunkIHF35QZD_js = require('./chunk-IHF35QZD.js');
|
|
5
5
|
var lucideReact = require('lucide-react');
|
|
6
6
|
var react = require('react');
|
|
@@ -106,8 +106,8 @@ function SaveAsDialog({ isOpen, currentName, onSave, onClose }) {
|
|
|
106
106
|
function SaveIndicator() {
|
|
107
107
|
const isDirty = chunkIHF35QZD_js.useWorkflowStore((state) => state.isDirty);
|
|
108
108
|
const isSaving = chunkIHF35QZD_js.useWorkflowStore((state) => state.isSaving);
|
|
109
|
-
const autoSaveEnabled =
|
|
110
|
-
const toggleAutoSave =
|
|
109
|
+
const autoSaveEnabled = chunkAXFOCPPP_js.useSettingsStore((state) => state.autoSaveEnabled);
|
|
110
|
+
const toggleAutoSave = chunkAXFOCPPP_js.useSettingsStore((state) => state.toggleAutoSave);
|
|
111
111
|
if (!autoSaveEnabled) {
|
|
112
112
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
113
113
|
"button",
|
|
@@ -245,10 +245,10 @@ function Toolbar({
|
|
|
245
245
|
const [canUndo, setCanUndo] = react.useState(false);
|
|
246
246
|
const [canRedo, setCanRedo] = react.useState(false);
|
|
247
247
|
const [showSaveAsDialog, setShowSaveAsDialog] = react.useState(false);
|
|
248
|
-
const validationErrors =
|
|
249
|
-
const clearValidationErrors =
|
|
250
|
-
const { openModal } =
|
|
251
|
-
const debugMode =
|
|
248
|
+
const validationErrors = chunkAXFOCPPP_js.useExecutionStore((state) => state.validationErrors);
|
|
249
|
+
const clearValidationErrors = chunkAXFOCPPP_js.useExecutionStore((state) => state.clearValidationErrors);
|
|
250
|
+
const { openModal } = chunkAXFOCPPP_js.useUIStore();
|
|
251
|
+
const debugMode = chunkAXFOCPPP_js.useSettingsStore((s) => s.debugMode);
|
|
252
252
|
const uniqueErrorMessages = react.useMemo(() => {
|
|
253
253
|
if (!validationErrors?.errors.length) return [];
|
|
254
254
|
return [...new Set(validationErrors.errors.map((e) => e.message))];
|
|
@@ -461,13 +461,13 @@ function BottomBar() {
|
|
|
461
461
|
const [dropdownOpen, setDropdownOpen] = react.useState(false);
|
|
462
462
|
const batchCancelledRef = react.useRef(false);
|
|
463
463
|
const dropdownRef = react.useRef(null);
|
|
464
|
-
const isRunning =
|
|
465
|
-
const executeWorkflow =
|
|
466
|
-
const executeSelectedNodes =
|
|
467
|
-
const resumeFromFailed =
|
|
468
|
-
const canResumeFromFailed =
|
|
469
|
-
const stopExecution =
|
|
470
|
-
|
|
464
|
+
const isRunning = chunkAXFOCPPP_js.useExecutionStore((s) => s.isRunning);
|
|
465
|
+
const executeWorkflow = chunkAXFOCPPP_js.useExecutionStore((s) => s.executeWorkflow);
|
|
466
|
+
const executeSelectedNodes = chunkAXFOCPPP_js.useExecutionStore((s) => s.executeSelectedNodes);
|
|
467
|
+
const resumeFromFailed = chunkAXFOCPPP_js.useExecutionStore((s) => s.resumeFromFailed);
|
|
468
|
+
const canResumeFromFailed = chunkAXFOCPPP_js.useExecutionStore((s) => s.canResumeFromFailed);
|
|
469
|
+
const stopExecution = chunkAXFOCPPP_js.useExecutionStore((s) => s.stopExecution);
|
|
470
|
+
chunkAXFOCPPP_js.useExecutionStore((s) => s.lastFailedNodeId);
|
|
471
471
|
const selectedNodeIds = chunkIHF35QZD_js.useWorkflowStore((s) => s.selectedNodeIds);
|
|
472
472
|
const nodes = chunkIHF35QZD_js.useWorkflowStore((s) => s.nodes);
|
|
473
473
|
const validateWorkflow = chunkIHF35QZD_js.useWorkflowStore((s) => s.validateWorkflow);
|
|
@@ -486,11 +486,11 @@ function BottomBar() {
|
|
|
486
486
|
}, []);
|
|
487
487
|
const waitForExecutionEnd = react.useCallback(() => {
|
|
488
488
|
return new Promise((resolve) => {
|
|
489
|
-
if (!
|
|
489
|
+
if (!chunkAXFOCPPP_js.useExecutionStore.getState().isRunning) {
|
|
490
490
|
resolve();
|
|
491
491
|
return;
|
|
492
492
|
}
|
|
493
|
-
const unsubscribe =
|
|
493
|
+
const unsubscribe = chunkAXFOCPPP_js.useExecutionStore.subscribe((state) => {
|
|
494
494
|
if (!state.isRunning) {
|
|
495
495
|
unsubscribe();
|
|
496
496
|
resolve();
|
|
@@ -507,9 +507,9 @@ function BottomBar() {
|
|
|
507
507
|
setCurrentBatchRun(i + 1);
|
|
508
508
|
executeWorkflow();
|
|
509
509
|
await new Promise((r) => setTimeout(r, 50));
|
|
510
|
-
if (!
|
|
510
|
+
if (!chunkAXFOCPPP_js.useExecutionStore.getState().isRunning) break;
|
|
511
511
|
await waitForExecutionEnd();
|
|
512
|
-
if (
|
|
512
|
+
if (chunkAXFOCPPP_js.useExecutionStore.getState().lastFailedNodeId) break;
|
|
513
513
|
const { nodes: currentNodes, updateNodeData } = chunkIHF35QZD_js.useWorkflowStore.getState();
|
|
514
514
|
for (const node of currentNodes) {
|
|
515
515
|
if (node.type !== "imageGen") continue;
|
|
@@ -211,7 +211,7 @@ var useSettingsStore = create((set, get) => {
|
|
|
211
211
|
},
|
|
212
212
|
setEdgeStyle: (style) => {
|
|
213
213
|
setAndPersist(() => ({ edgeStyle: style }));
|
|
214
|
-
import('./workflowStore-
|
|
214
|
+
import('./workflowStore-7SDJC4UR.mjs').then(({ useWorkflowStore: useWorkflowStore2 }) => {
|
|
215
215
|
useWorkflowStore2.getState().setEdgeStyle(style);
|
|
216
216
|
});
|
|
217
217
|
},
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
var __create = Object.create;
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, {
|
|
8
|
+
get: (a, b) => (typeof require !== "undefined" ? require : a)[b]
|
|
9
|
+
}) : x)(function(x) {
|
|
10
|
+
if (typeof require !== "undefined") return require.apply(this, arguments);
|
|
11
|
+
throw Error('Dynamic require of "' + x + '" is not supported');
|
|
12
|
+
});
|
|
13
|
+
var __commonJS = (cb, mod) => function __require2() {
|
|
14
|
+
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
|
15
|
+
};
|
|
16
|
+
var __copyProps = (to, from, except, desc) => {
|
|
17
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
18
|
+
for (let key of __getOwnPropNames(from))
|
|
19
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
20
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
21
|
+
}
|
|
22
|
+
return to;
|
|
23
|
+
};
|
|
24
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
25
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
26
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
27
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
28
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
29
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
30
|
+
mod
|
|
31
|
+
));
|
|
32
|
+
|
|
33
|
+
export { __commonJS, __require, __toESM };
|
package/dist/hooks.js
CHANGED
|
@@ -2,14 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
require('./chunk-FOMOOERN.js');
|
|
4
4
|
var chunkEMGXUNBL_js = require('./chunk-EMGXUNBL.js');
|
|
5
|
-
var
|
|
5
|
+
var chunk3TMV3K34_js = require('./chunk-3TMV3K34.js');
|
|
6
6
|
require('./chunk-5HJFQVUR.js');
|
|
7
7
|
require('./chunk-EMUMKW5C.js');
|
|
8
8
|
require('./chunk-JLWKW3G5.js');
|
|
9
|
-
require('./chunk-
|
|
9
|
+
require('./chunk-AXFOCPPP.js');
|
|
10
10
|
require('./chunk-IHF35QZD.js');
|
|
11
11
|
require('./chunk-RJ262NXS.js');
|
|
12
12
|
require('./chunk-RXNEDWK2.js');
|
|
13
|
+
require('./chunk-4MZ62VMF.js');
|
|
13
14
|
|
|
14
15
|
|
|
15
16
|
|
|
@@ -19,37 +20,37 @@ Object.defineProperty(exports, "useCanvasKeyboardShortcuts", {
|
|
|
19
20
|
});
|
|
20
21
|
Object.defineProperty(exports, "useAIGenNode", {
|
|
21
22
|
enumerable: true,
|
|
22
|
-
get: function () { return
|
|
23
|
+
get: function () { return chunk3TMV3K34_js.useAIGenNode; }
|
|
23
24
|
});
|
|
24
25
|
Object.defineProperty(exports, "useAIGenNodeHeader", {
|
|
25
26
|
enumerable: true,
|
|
26
|
-
get: function () { return
|
|
27
|
+
get: function () { return chunk3TMV3K34_js.useAIGenNodeHeader; }
|
|
27
28
|
});
|
|
28
29
|
Object.defineProperty(exports, "useAutoLoadModelSchema", {
|
|
29
30
|
enumerable: true,
|
|
30
|
-
get: function () { return
|
|
31
|
+
get: function () { return chunk3TMV3K34_js.useAutoLoadModelSchema; }
|
|
31
32
|
});
|
|
32
33
|
Object.defineProperty(exports, "useCanGenerate", {
|
|
33
34
|
enumerable: true,
|
|
34
|
-
get: function () { return
|
|
35
|
+
get: function () { return chunk3TMV3K34_js.useCanGenerate; }
|
|
35
36
|
});
|
|
36
37
|
Object.defineProperty(exports, "useMediaUpload", {
|
|
37
38
|
enumerable: true,
|
|
38
|
-
get: function () { return
|
|
39
|
+
get: function () { return chunk3TMV3K34_js.useMediaUpload; }
|
|
39
40
|
});
|
|
40
41
|
Object.defineProperty(exports, "useModelSelection", {
|
|
41
42
|
enumerable: true,
|
|
42
|
-
get: function () { return
|
|
43
|
+
get: function () { return chunk3TMV3K34_js.useModelSelection; }
|
|
43
44
|
});
|
|
44
45
|
Object.defineProperty(exports, "useNodeExecution", {
|
|
45
46
|
enumerable: true,
|
|
46
|
-
get: function () { return
|
|
47
|
+
get: function () { return chunk3TMV3K34_js.useNodeExecution; }
|
|
47
48
|
});
|
|
48
49
|
Object.defineProperty(exports, "usePromptAutocomplete", {
|
|
49
50
|
enumerable: true,
|
|
50
|
-
get: function () { return
|
|
51
|
+
get: function () { return chunk3TMV3K34_js.usePromptAutocomplete; }
|
|
51
52
|
});
|
|
52
53
|
Object.defineProperty(exports, "useRequiredInputs", {
|
|
53
54
|
enumerable: true,
|
|
54
|
-
get: function () { return
|
|
55
|
+
get: function () { return chunk3TMV3K34_js.useRequiredInputs; }
|
|
55
56
|
});
|
package/dist/hooks.mjs
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import './chunk-L5TF4EHW.mjs';
|
|
2
2
|
export { useCanvasKeyboardShortcuts } from './chunk-IASLG6IA.mjs';
|
|
3
|
-
export { useAIGenNode, useAIGenNodeHeader, useAutoLoadModelSchema, useCanGenerate, useMediaUpload, useModelSelection, useNodeExecution, usePromptAutocomplete, useRequiredInputs } from './chunk-
|
|
3
|
+
export { useAIGenNode, useAIGenNodeHeader, useAutoLoadModelSchema, useCanGenerate, useMediaUpload, useModelSelection, useNodeExecution, usePromptAutocomplete, useRequiredInputs } from './chunk-AOTUCJMA.mjs';
|
|
4
4
|
import './chunk-7SKSRSS7.mjs';
|
|
5
5
|
import './chunk-EFXQT23N.mjs';
|
|
6
6
|
import './chunk-LDN7IX4Y.mjs';
|
|
7
|
-
import './chunk-
|
|
7
|
+
import './chunk-SQK4JDYY.mjs';
|
|
8
8
|
import './chunk-RIGVIEYB.mjs';
|
|
9
9
|
import './chunk-FT33LFII.mjs';
|
|
10
10
|
import './chunk-VRN3UWE5.mjs';
|
|
11
|
+
import './chunk-ZJWP5KGZ.mjs';
|
package/dist/index.js
CHANGED
|
@@ -1,101 +1,102 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
var
|
|
3
|
+
var chunkBMFRA6GK_js = require('./chunk-BMFRA6GK.js');
|
|
4
|
+
var chunkECD5J2BA_js = require('./chunk-ECD5J2BA.js');
|
|
5
5
|
require('./chunk-3SPPKCWR.js');
|
|
6
6
|
require('./chunk-3YFFDHC5.js');
|
|
7
|
-
var
|
|
8
|
-
var
|
|
7
|
+
var chunkKDIWRSYV_js = require('./chunk-KDIWRSYV.js');
|
|
8
|
+
var chunkSEV2DWKF_js = require('./chunk-SEV2DWKF.js');
|
|
9
9
|
require('./chunk-FOMOOERN.js');
|
|
10
10
|
var chunkEMGXUNBL_js = require('./chunk-EMGXUNBL.js');
|
|
11
|
-
var
|
|
11
|
+
var chunk3TMV3K34_js = require('./chunk-3TMV3K34.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
|
|
16
|
+
var chunkAXFOCPPP_js = require('./chunk-AXFOCPPP.js');
|
|
17
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-4MZ62VMF.js');
|
|
21
22
|
|
|
22
23
|
|
|
23
24
|
|
|
24
25
|
Object.defineProperty(exports, "DEFAULT_GROUP_COLORS", {
|
|
25
26
|
enumerable: true,
|
|
26
|
-
get: function () { return
|
|
27
|
+
get: function () { return chunkBMFRA6GK_js.DEFAULT_GROUP_COLORS; }
|
|
27
28
|
});
|
|
28
29
|
Object.defineProperty(exports, "GROUP_COLORS", {
|
|
29
30
|
enumerable: true,
|
|
30
|
-
get: function () { return
|
|
31
|
+
get: function () { return chunkBMFRA6GK_js.GROUP_COLORS; }
|
|
31
32
|
});
|
|
32
33
|
Object.defineProperty(exports, "GroupOverlay", {
|
|
33
34
|
enumerable: true,
|
|
34
|
-
get: function () { return
|
|
35
|
+
get: function () { return chunkBMFRA6GK_js.GroupOverlay; }
|
|
35
36
|
});
|
|
36
37
|
Object.defineProperty(exports, "HelperLines", {
|
|
37
38
|
enumerable: true,
|
|
38
|
-
get: function () { return
|
|
39
|
+
get: function () { return chunkBMFRA6GK_js.HelperLines; }
|
|
39
40
|
});
|
|
40
41
|
Object.defineProperty(exports, "NodeSearch", {
|
|
41
42
|
enumerable: true,
|
|
42
|
-
get: function () { return
|
|
43
|
+
get: function () { return chunkBMFRA6GK_js.NodeSearch; }
|
|
43
44
|
});
|
|
44
45
|
Object.defineProperty(exports, "PauseEdge", {
|
|
45
46
|
enumerable: true,
|
|
46
|
-
get: function () { return
|
|
47
|
+
get: function () { return chunkBMFRA6GK_js.PauseEdge; }
|
|
47
48
|
});
|
|
48
49
|
Object.defineProperty(exports, "ShortcutHelpModal", {
|
|
49
50
|
enumerable: true,
|
|
50
|
-
get: function () { return
|
|
51
|
+
get: function () { return chunkBMFRA6GK_js.ShortcutHelpModal; }
|
|
51
52
|
});
|
|
52
53
|
Object.defineProperty(exports, "WorkflowCanvas", {
|
|
53
54
|
enumerable: true,
|
|
54
|
-
get: function () { return
|
|
55
|
+
get: function () { return chunkBMFRA6GK_js.WorkflowCanvas; }
|
|
55
56
|
});
|
|
56
57
|
Object.defineProperty(exports, "BaseNode", {
|
|
57
58
|
enumerable: true,
|
|
58
|
-
get: function () { return
|
|
59
|
+
get: function () { return chunkECD5J2BA_js.BaseNode; }
|
|
59
60
|
});
|
|
60
61
|
Object.defineProperty(exports, "nodeTypes", {
|
|
61
62
|
enumerable: true,
|
|
62
|
-
get: function () { return
|
|
63
|
+
get: function () { return chunkECD5J2BA_js.nodeTypes; }
|
|
63
64
|
});
|
|
64
65
|
Object.defineProperty(exports, "DebugPanel", {
|
|
65
66
|
enumerable: true,
|
|
66
|
-
get: function () { return
|
|
67
|
+
get: function () { return chunkKDIWRSYV_js.DebugPanel; }
|
|
67
68
|
});
|
|
68
69
|
Object.defineProperty(exports, "NodePalette", {
|
|
69
70
|
enumerable: true,
|
|
70
|
-
get: function () { return
|
|
71
|
+
get: function () { return chunkKDIWRSYV_js.NodePalette; }
|
|
71
72
|
});
|
|
72
73
|
Object.defineProperty(exports, "PanelContainer", {
|
|
73
74
|
enumerable: true,
|
|
74
|
-
get: function () { return
|
|
75
|
+
get: function () { return chunkKDIWRSYV_js.PanelContainer; }
|
|
75
76
|
});
|
|
76
77
|
Object.defineProperty(exports, "BottomBar", {
|
|
77
78
|
enumerable: true,
|
|
78
|
-
get: function () { return
|
|
79
|
+
get: function () { return chunkSEV2DWKF_js.BottomBar; }
|
|
79
80
|
});
|
|
80
81
|
Object.defineProperty(exports, "OverflowMenu", {
|
|
81
82
|
enumerable: true,
|
|
82
|
-
get: function () { return
|
|
83
|
+
get: function () { return chunkSEV2DWKF_js.OverflowMenu; }
|
|
83
84
|
});
|
|
84
85
|
Object.defineProperty(exports, "SaveAsDialog", {
|
|
85
86
|
enumerable: true,
|
|
86
|
-
get: function () { return
|
|
87
|
+
get: function () { return chunkSEV2DWKF_js.SaveAsDialog; }
|
|
87
88
|
});
|
|
88
89
|
Object.defineProperty(exports, "SaveIndicator", {
|
|
89
90
|
enumerable: true,
|
|
90
|
-
get: function () { return
|
|
91
|
+
get: function () { return chunkSEV2DWKF_js.SaveIndicator; }
|
|
91
92
|
});
|
|
92
93
|
Object.defineProperty(exports, "Toolbar", {
|
|
93
94
|
enumerable: true,
|
|
94
|
-
get: function () { return
|
|
95
|
+
get: function () { return chunkSEV2DWKF_js.Toolbar; }
|
|
95
96
|
});
|
|
96
97
|
Object.defineProperty(exports, "ToolbarDropdown", {
|
|
97
98
|
enumerable: true,
|
|
98
|
-
get: function () { return
|
|
99
|
+
get: function () { return chunkSEV2DWKF_js.ToolbarDropdown; }
|
|
99
100
|
});
|
|
100
101
|
Object.defineProperty(exports, "useCanvasKeyboardShortcuts", {
|
|
101
102
|
enumerable: true,
|
|
@@ -103,39 +104,39 @@ Object.defineProperty(exports, "useCanvasKeyboardShortcuts", {
|
|
|
103
104
|
});
|
|
104
105
|
Object.defineProperty(exports, "useAIGenNode", {
|
|
105
106
|
enumerable: true,
|
|
106
|
-
get: function () { return
|
|
107
|
+
get: function () { return chunk3TMV3K34_js.useAIGenNode; }
|
|
107
108
|
});
|
|
108
109
|
Object.defineProperty(exports, "useAIGenNodeHeader", {
|
|
109
110
|
enumerable: true,
|
|
110
|
-
get: function () { return
|
|
111
|
+
get: function () { return chunk3TMV3K34_js.useAIGenNodeHeader; }
|
|
111
112
|
});
|
|
112
113
|
Object.defineProperty(exports, "useAutoLoadModelSchema", {
|
|
113
114
|
enumerable: true,
|
|
114
|
-
get: function () { return
|
|
115
|
+
get: function () { return chunk3TMV3K34_js.useAutoLoadModelSchema; }
|
|
115
116
|
});
|
|
116
117
|
Object.defineProperty(exports, "useCanGenerate", {
|
|
117
118
|
enumerable: true,
|
|
118
|
-
get: function () { return
|
|
119
|
+
get: function () { return chunk3TMV3K34_js.useCanGenerate; }
|
|
119
120
|
});
|
|
120
121
|
Object.defineProperty(exports, "useMediaUpload", {
|
|
121
122
|
enumerable: true,
|
|
122
|
-
get: function () { return
|
|
123
|
+
get: function () { return chunk3TMV3K34_js.useMediaUpload; }
|
|
123
124
|
});
|
|
124
125
|
Object.defineProperty(exports, "useModelSelection", {
|
|
125
126
|
enumerable: true,
|
|
126
|
-
get: function () { return
|
|
127
|
+
get: function () { return chunk3TMV3K34_js.useModelSelection; }
|
|
127
128
|
});
|
|
128
129
|
Object.defineProperty(exports, "useNodeExecution", {
|
|
129
130
|
enumerable: true,
|
|
130
|
-
get: function () { return
|
|
131
|
+
get: function () { return chunk3TMV3K34_js.useNodeExecution; }
|
|
131
132
|
});
|
|
132
133
|
Object.defineProperty(exports, "usePromptAutocomplete", {
|
|
133
134
|
enumerable: true,
|
|
134
|
-
get: function () { return
|
|
135
|
+
get: function () { return chunk3TMV3K34_js.usePromptAutocomplete; }
|
|
135
136
|
});
|
|
136
137
|
Object.defineProperty(exports, "useRequiredInputs", {
|
|
137
138
|
enumerable: true,
|
|
138
|
-
get: function () { return
|
|
139
|
+
get: function () { return chunk3TMV3K34_js.useRequiredInputs; }
|
|
139
140
|
});
|
|
140
141
|
Object.defineProperty(exports, "useAnnotationStore", {
|
|
141
142
|
enumerable: true,
|
|
@@ -147,15 +148,15 @@ Object.defineProperty(exports, "usePromptEditorStore", {
|
|
|
147
148
|
});
|
|
148
149
|
Object.defineProperty(exports, "useExecutionStore", {
|
|
149
150
|
enumerable: true,
|
|
150
|
-
get: function () { return
|
|
151
|
+
get: function () { return chunkAXFOCPPP_js.useExecutionStore; }
|
|
151
152
|
});
|
|
152
153
|
Object.defineProperty(exports, "useSettingsStore", {
|
|
153
154
|
enumerable: true,
|
|
154
|
-
get: function () { return
|
|
155
|
+
get: function () { return chunkAXFOCPPP_js.useSettingsStore; }
|
|
155
156
|
});
|
|
156
157
|
Object.defineProperty(exports, "useUIStore", {
|
|
157
158
|
enumerable: true,
|
|
158
|
-
get: function () { return
|
|
159
|
+
get: function () { return chunkAXFOCPPP_js.useUIStore; }
|
|
159
160
|
});
|
|
160
161
|
Object.defineProperty(exports, "useWorkflowStore", {
|
|
161
162
|
enumerable: true,
|
package/dist/index.mjs
CHANGED
|
@@ -1,18 +1,19 @@
|
|
|
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-7P2JWDC7.mjs';
|
|
2
|
+
export { BaseNode, nodeTypes } from './chunk-E3YBVMYZ.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-AUZR6REQ.mjs';
|
|
6
|
+
export { BottomBar, OverflowMenu, SaveAsDialog, SaveIndicator, Toolbar, ToolbarDropdown } from './chunk-HCXI63ME.mjs';
|
|
7
7
|
import './chunk-L5TF4EHW.mjs';
|
|
8
8
|
export { useCanvasKeyboardShortcuts } from './chunk-IASLG6IA.mjs';
|
|
9
|
-
export { useAIGenNode, useAIGenNodeHeader, useAutoLoadModelSchema, useCanGenerate, useMediaUpload, useModelSelection, useNodeExecution, usePromptAutocomplete, useRequiredInputs } from './chunk-
|
|
9
|
+
export { useAIGenNode, useAIGenNodeHeader, useAutoLoadModelSchema, useCanGenerate, useMediaUpload, useModelSelection, useNodeExecution, usePromptAutocomplete, useRequiredInputs } from './chunk-AOTUCJMA.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-
|
|
14
|
+
export { useExecutionStore, useSettingsStore, useUIStore } from './chunk-SQK4JDYY.mjs';
|
|
15
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-ZJWP5KGZ.mjs';
|
package/dist/lib.js
CHANGED
package/dist/lib.mjs
CHANGED
|
@@ -1,2 +1,3 @@
|
|
|
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-ZJWP5KGZ.mjs';
|