@genfeedai/workflow-ui 0.1.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.d.mts +27 -0
- package/dist/canvas.d.ts +27 -0
- package/dist/canvas.js +45 -0
- package/dist/canvas.mjs +16 -0
- package/dist/chunk-22PDGHNQ.mjs +737 -0
- package/dist/chunk-3SPPKCWR.js +458 -0
- package/dist/chunk-3YFFDHC5.js +300 -0
- package/dist/chunk-5HJFQVUR.js +61 -0
- package/dist/chunk-5LQ4QBR5.js +2 -0
- package/dist/chunk-6DOEUDD5.js +254 -0
- package/dist/chunk-7SKSRSS7.mjs +57 -0
- package/dist/chunk-AC6TWLRT.mjs +27 -0
- package/dist/chunk-ADWNF7V3.js +120 -0
- package/dist/chunk-BJ3R5R32.mjs +2163 -0
- package/dist/chunk-CETJJ73S.js +1555 -0
- package/dist/chunk-CSUBLSKZ.mjs +1002 -0
- package/dist/chunk-CV4M7CNU.mjs +251 -0
- package/dist/chunk-E323WAZG.mjs +272 -0
- package/dist/chunk-E544XUBL.js +378 -0
- package/dist/chunk-EC2ZIWOK.js +1007 -0
- package/dist/chunk-EFXQT23N.mjs +99 -0
- package/dist/chunk-EMUMKW5C.js +107 -0
- package/dist/chunk-FOMOOERN.js +2 -0
- package/dist/chunk-FT33LFII.mjs +21 -0
- package/dist/chunk-FT64PCUP.mjs +533 -0
- package/dist/chunk-H6LZKSLY.js +5678 -0
- package/dist/chunk-HPQT36RR.js +543 -0
- package/dist/chunk-JLWKW3G5.js +2 -0
- package/dist/chunk-L5TF4EHW.mjs +1 -0
- package/dist/chunk-LAJ34AH2.mjs +374 -0
- package/dist/chunk-LDN7IX4Y.mjs +1 -0
- package/dist/chunk-MLJJBBTB.mjs +1 -0
- package/dist/chunk-NSDLGLAQ.js +2166 -0
- package/dist/chunk-RJ262NXS.js +24 -0
- package/dist/chunk-RXNEDWK2.js +141 -0
- package/dist/chunk-SW7QNEZU.js +744 -0
- package/dist/chunk-UQQUWGHW.mjs +118 -0
- package/dist/chunk-VOGL2WCE.mjs +1542 -0
- package/dist/chunk-VRN3UWE5.mjs +138 -0
- package/dist/chunk-XV5Z5XYR.mjs +5640 -0
- package/dist/chunk-Z7PWFZG5.js +30 -0
- package/dist/chunk-ZJD5WMR3.mjs +418 -0
- package/dist/hooks.d.mts +255 -0
- package/dist/hooks.d.ts +255 -0
- package/dist/hooks.js +56 -0
- package/dist/hooks.mjs +11 -0
- package/dist/index.d.mts +29 -0
- package/dist/index.d.ts +29 -0
- package/dist/index.js +180 -0
- package/dist/index.mjs +19 -0
- package/dist/lib.d.mts +164 -0
- package/dist/lib.d.ts +164 -0
- package/dist/lib.js +144 -0
- package/dist/lib.mjs +3 -0
- package/dist/nodes.d.mts +128 -0
- package/dist/nodes.d.ts +128 -0
- package/dist/nodes.js +151 -0
- package/dist/nodes.mjs +14 -0
- package/dist/panels.d.mts +22 -0
- package/dist/panels.d.ts +22 -0
- package/dist/panels.js +21 -0
- package/dist/panels.mjs +4 -0
- package/dist/promptLibraryStore-BZnfmEkc.d.ts +464 -0
- package/dist/promptLibraryStore-zqb59nsu.d.mts +464 -0
- package/dist/provider.d.mts +29 -0
- package/dist/provider.d.ts +29 -0
- package/dist/provider.js +17 -0
- package/dist/provider.mjs +4 -0
- package/dist/stores.d.mts +96 -0
- package/dist/stores.d.ts +96 -0
- package/dist/stores.js +113 -0
- package/dist/stores.mjs +43 -0
- package/dist/toolbar.d.mts +73 -0
- package/dist/toolbar.d.ts +73 -0
- package/dist/toolbar.js +34 -0
- package/dist/toolbar.mjs +5 -0
- package/dist/types-ipAnBzAJ.d.mts +46 -0
- package/dist/types-ipAnBzAJ.d.ts +46 -0
- package/dist/ui.d.mts +67 -0
- package/dist/ui.d.ts +67 -0
- package/dist/ui.js +84 -0
- package/dist/ui.mjs +3 -0
- package/dist/workflowStore-4EGKJLYK.mjs +3 -0
- package/dist/workflowStore-KM32FDL7.js +12 -0
- package/package.json +117 -0
- package/src/styles/workflow-ui.css +186 -0
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { NodeTypes, EdgeProps } from '@xyflow/react';
|
|
3
|
+
import * as react from 'react';
|
|
4
|
+
|
|
5
|
+
interface WorkflowCanvasProps {
|
|
6
|
+
/** Override default node types. Pass merged core + cloud nodeTypes here. */
|
|
7
|
+
nodeTypes?: NodeTypes;
|
|
8
|
+
}
|
|
9
|
+
declare function WorkflowCanvas({ nodeTypes: nodeTypesProp }?: WorkflowCanvasProps): react_jsx_runtime.JSX.Element;
|
|
10
|
+
|
|
11
|
+
interface HelperLinesProps {
|
|
12
|
+
draggingNodeId: string | null;
|
|
13
|
+
}
|
|
14
|
+
declare function HelperLinesComponent({ draggingNodeId }: HelperLinesProps): react_jsx_runtime.JSX.Element | null;
|
|
15
|
+
declare const HelperLines: react.MemoExoticComponent<typeof HelperLinesComponent>;
|
|
16
|
+
|
|
17
|
+
declare function GroupOverlayComponent(): react_jsx_runtime.JSX.Element;
|
|
18
|
+
declare const GroupOverlay: react.MemoExoticComponent<typeof GroupOverlayComponent>;
|
|
19
|
+
|
|
20
|
+
declare function NodeSearch(): react_jsx_runtime.JSX.Element | null;
|
|
21
|
+
|
|
22
|
+
declare function ShortcutHelpModal(): react_jsx_runtime.JSX.Element | null;
|
|
23
|
+
|
|
24
|
+
declare function PauseEdgeComponent({ id, sourceX, sourceY, targetX, targetY, sourcePosition, targetPosition, style, markerEnd, data, }: EdgeProps): react_jsx_runtime.JSX.Element;
|
|
25
|
+
declare const PauseEdge: react.MemoExoticComponent<typeof PauseEdgeComponent>;
|
|
26
|
+
|
|
27
|
+
export { GroupOverlay, HelperLines, NodeSearch, PauseEdge, ShortcutHelpModal, WorkflowCanvas };
|
package/dist/canvas.d.ts
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { NodeTypes, EdgeProps } from '@xyflow/react';
|
|
3
|
+
import * as react from 'react';
|
|
4
|
+
|
|
5
|
+
interface WorkflowCanvasProps {
|
|
6
|
+
/** Override default node types. Pass merged core + cloud nodeTypes here. */
|
|
7
|
+
nodeTypes?: NodeTypes;
|
|
8
|
+
}
|
|
9
|
+
declare function WorkflowCanvas({ nodeTypes: nodeTypesProp }?: WorkflowCanvasProps): react_jsx_runtime.JSX.Element;
|
|
10
|
+
|
|
11
|
+
interface HelperLinesProps {
|
|
12
|
+
draggingNodeId: string | null;
|
|
13
|
+
}
|
|
14
|
+
declare function HelperLinesComponent({ draggingNodeId }: HelperLinesProps): react_jsx_runtime.JSX.Element | null;
|
|
15
|
+
declare const HelperLines: react.MemoExoticComponent<typeof HelperLinesComponent>;
|
|
16
|
+
|
|
17
|
+
declare function GroupOverlayComponent(): react_jsx_runtime.JSX.Element;
|
|
18
|
+
declare const GroupOverlay: react.MemoExoticComponent<typeof GroupOverlayComponent>;
|
|
19
|
+
|
|
20
|
+
declare function NodeSearch(): react_jsx_runtime.JSX.Element | null;
|
|
21
|
+
|
|
22
|
+
declare function ShortcutHelpModal(): react_jsx_runtime.JSX.Element | null;
|
|
23
|
+
|
|
24
|
+
declare function PauseEdgeComponent({ id, sourceX, sourceY, targetX, targetY, sourcePosition, targetPosition, style, markerEnd, data, }: EdgeProps): react_jsx_runtime.JSX.Element;
|
|
25
|
+
declare const PauseEdge: react.MemoExoticComponent<typeof PauseEdgeComponent>;
|
|
26
|
+
|
|
27
|
+
export { GroupOverlay, HelperLines, NodeSearch, PauseEdge, ShortcutHelpModal, WorkflowCanvas };
|
package/dist/canvas.js
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var chunkCETJJ73S_js = require('./chunk-CETJJ73S.js');
|
|
4
|
+
require('./chunk-H6LZKSLY.js');
|
|
5
|
+
require('./chunk-3SPPKCWR.js');
|
|
6
|
+
require('./chunk-3YFFDHC5.js');
|
|
7
|
+
require('./chunk-ADWNF7V3.js');
|
|
8
|
+
require('./chunk-HPQT36RR.js');
|
|
9
|
+
require('./chunk-5HJFQVUR.js');
|
|
10
|
+
require('./chunk-EMUMKW5C.js');
|
|
11
|
+
require('./chunk-6DOEUDD5.js');
|
|
12
|
+
require('./chunk-JLWKW3G5.js');
|
|
13
|
+
require('./chunk-EC2ZIWOK.js');
|
|
14
|
+
require('./chunk-NSDLGLAQ.js');
|
|
15
|
+
require('./chunk-5LQ4QBR5.js');
|
|
16
|
+
require('./chunk-RJ262NXS.js');
|
|
17
|
+
require('./chunk-RXNEDWK2.js');
|
|
18
|
+
require('./chunk-Z7PWFZG5.js');
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
Object.defineProperty(exports, "GroupOverlay", {
|
|
23
|
+
enumerable: true,
|
|
24
|
+
get: function () { return chunkCETJJ73S_js.GroupOverlay; }
|
|
25
|
+
});
|
|
26
|
+
Object.defineProperty(exports, "HelperLines", {
|
|
27
|
+
enumerable: true,
|
|
28
|
+
get: function () { return chunkCETJJ73S_js.HelperLines; }
|
|
29
|
+
});
|
|
30
|
+
Object.defineProperty(exports, "NodeSearch", {
|
|
31
|
+
enumerable: true,
|
|
32
|
+
get: function () { return chunkCETJJ73S_js.NodeSearch; }
|
|
33
|
+
});
|
|
34
|
+
Object.defineProperty(exports, "PauseEdge", {
|
|
35
|
+
enumerable: true,
|
|
36
|
+
get: function () { return chunkCETJJ73S_js.PauseEdge; }
|
|
37
|
+
});
|
|
38
|
+
Object.defineProperty(exports, "ShortcutHelpModal", {
|
|
39
|
+
enumerable: true,
|
|
40
|
+
get: function () { return chunkCETJJ73S_js.ShortcutHelpModal; }
|
|
41
|
+
});
|
|
42
|
+
Object.defineProperty(exports, "WorkflowCanvas", {
|
|
43
|
+
enumerable: true,
|
|
44
|
+
get: function () { return chunkCETJJ73S_js.WorkflowCanvas; }
|
|
45
|
+
});
|
package/dist/canvas.mjs
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export { GroupOverlay, HelperLines, NodeSearch, PauseEdge, ShortcutHelpModal, WorkflowCanvas } from './chunk-VOGL2WCE.mjs';
|
|
2
|
+
import './chunk-XV5Z5XYR.mjs';
|
|
3
|
+
import './chunk-ZJD5WMR3.mjs';
|
|
4
|
+
import './chunk-E323WAZG.mjs';
|
|
5
|
+
import './chunk-UQQUWGHW.mjs';
|
|
6
|
+
import './chunk-FT64PCUP.mjs';
|
|
7
|
+
import './chunk-7SKSRSS7.mjs';
|
|
8
|
+
import './chunk-EFXQT23N.mjs';
|
|
9
|
+
import './chunk-CV4M7CNU.mjs';
|
|
10
|
+
import './chunk-LDN7IX4Y.mjs';
|
|
11
|
+
import './chunk-CSUBLSKZ.mjs';
|
|
12
|
+
import './chunk-BJ3R5R32.mjs';
|
|
13
|
+
import './chunk-MLJJBBTB.mjs';
|
|
14
|
+
import './chunk-FT33LFII.mjs';
|
|
15
|
+
import './chunk-VRN3UWE5.mjs';
|
|
16
|
+
import './chunk-AC6TWLRT.mjs';
|