@motiadev/workbench 0.14.0-beta.165-285707 → 0.15.0-beta.165
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/index.d.ts +189 -10
- package/dist/index.html +1 -1
- package/dist/index.js +1065 -7
- package/dist/middleware.d.ts +66 -8
- package/dist/middleware.js +694 -86
- package/dist/motia-plugin/__tests__/generator.test.ts +129 -0
- package/dist/motia-plugin/__tests__/resolver.test.ts +82 -0
- package/dist/motia-plugin/__tests__/validator.test.ts +71 -0
- package/dist/motia-plugin/{generator.js → generator.ts} +37 -35
- package/dist/motia-plugin/hmr.ts +123 -0
- package/dist/motia-plugin/index.ts +183 -0
- package/dist/motia-plugin/{resolver.d.ts → resolver.ts} +38 -5
- package/dist/motia-plugin/types.ts +198 -0
- package/dist/motia-plugin/{utils.d.ts → utils.ts} +17 -4
- package/dist/motia-plugin/validator.ts +197 -0
- package/dist/src/App.tsx +41 -0
- package/dist/src/components/NotFoundPage.tsx +11 -0
- package/dist/src/components/bottom-panel.tsx +39 -0
- package/dist/src/components/flow/base-edge.tsx +61 -0
- package/dist/src/components/flow/flow-loader.tsx +3 -0
- package/dist/src/components/flow/flow-page.tsx +75 -0
- package/dist/src/components/flow/flow-tab-menu-item.tsx +52 -0
- package/dist/src/components/flow/flow-view.tsx +66 -0
- package/dist/src/components/flow/hooks/use-get-flow-state.tsx +171 -0
- package/dist/src/components/flow/hooks/use-save-workflow-config.ts +25 -0
- package/dist/src/components/flow/node-organizer.tsx +103 -0
- package/dist/src/components/flow/nodes/api-flow-node.tsx +6 -0
- package/dist/src/components/flow/nodes/cron-flow-node.tsx +6 -0
- package/dist/src/components/flow/nodes/event-flow-node.tsx +6 -0
- package/dist/src/components/flow/nodes/noop-flow-node.tsx +6 -0
- package/dist/src/components/header/deploy-button.tsx +110 -0
- package/dist/src/components/header/header.tsx +39 -0
- package/dist/src/components/root-motia.tsx +10 -0
- package/dist/src/components/top-panel.tsx +40 -0
- package/dist/src/components/tutorial/engine/tutorial-engine.ts +26 -0
- package/dist/src/components/tutorial/engine/tutorial-types.ts +26 -0
- package/dist/src/components/tutorial/engine/workbench-xpath.ts +53 -0
- package/dist/src/components/tutorial/hooks/tutorial-utils.ts +26 -0
- package/dist/src/components/tutorial/hooks/use-tutorial-engine.ts +213 -0
- package/dist/src/components/tutorial/hooks/use-tutorial.ts +14 -0
- package/dist/src/components/tutorial/tutorial-button.tsx +46 -0
- package/dist/src/components/tutorial/tutorial-step.tsx +82 -0
- package/dist/src/components/tutorial/tutorial.tsx +59 -0
- package/dist/src/components/ui/json-editor.tsx +68 -0
- package/dist/src/components/ui/table.tsx +75 -0
- package/dist/src/components/ui/theme-toggle.tsx +54 -0
- package/dist/src/components/ui/tooltip.tsx +26 -0
- package/dist/src/hooks/use-debounced.ts +22 -0
- package/dist/src/hooks/use-fetch-flows.ts +33 -0
- package/dist/src/hooks/use-mobile.ts +19 -0
- package/dist/src/hooks/use-update-handle-positions.ts +42 -0
- package/dist/src/index.css +5 -5
- package/dist/src/lib/__tests__/utils.test.ts +110 -0
- package/dist/src/lib/motia-analytics.ts +140 -0
- package/dist/src/lib/plugins.tsx +132 -0
- package/dist/src/lib/utils.ts +37 -0
- package/dist/src/main.tsx +30 -0
- package/dist/src/project-view-mode.tsx +32 -0
- package/dist/src/publicComponents/api-node.tsx +26 -0
- package/dist/src/publicComponents/base-node/base-handle.tsx +50 -0
- package/dist/src/publicComponents/base-node/base-node.tsx +114 -0
- package/dist/src/publicComponents/base-node/code-display.tsx +119 -0
- package/dist/src/publicComponents/base-node/emits.tsx +17 -0
- package/dist/src/publicComponents/base-node/feature-card.tsx +32 -0
- package/dist/src/publicComponents/base-node/language-indicator.tsx +131 -0
- package/dist/src/publicComponents/base-node/node-header.tsx +49 -0
- package/dist/src/publicComponents/base-node/node-sidebar.tsx +41 -0
- package/dist/src/publicComponents/base-node/subscribe.tsx +13 -0
- package/dist/src/publicComponents/cron-node.tsx +24 -0
- package/dist/src/publicComponents/event-node.tsx +20 -0
- package/dist/src/publicComponents/node-props.tsx +15 -0
- package/dist/src/publicComponents/noop-node.tsx +19 -0
- package/dist/src/setupTests.ts +1 -0
- package/dist/src/stores/use-app-tabs-store.ts +49 -0
- package/dist/src/stores/use-flow-store.ts +31 -0
- package/dist/src/stores/use-global-store.ts +24 -0
- package/dist/src/stores/use-motia-config-store.ts +36 -0
- package/dist/src/stores/use-tabs-store.ts +34 -0
- package/dist/src/system-view-mode.tsx +28 -0
- package/dist/src/types/endpoint.ts +12 -0
- package/dist/src/types/file.ts +7 -0
- package/dist/src/types/flow.ts +103 -0
- package/eslint.config.cjs +22 -0
- package/jest.config.cjs +68 -0
- package/package.json +53 -51
- package/dist/motia-plugin/__tests__/generator.test.d.ts +0 -1
- package/dist/motia-plugin/__tests__/generator.test.js +0 -97
- package/dist/motia-plugin/__tests__/resolver.test.d.ts +0 -1
- package/dist/motia-plugin/__tests__/resolver.test.js +0 -64
- package/dist/motia-plugin/__tests__/validator.test.d.ts +0 -1
- package/dist/motia-plugin/__tests__/validator.test.js +0 -59
- package/dist/motia-plugin/generator.d.ts +0 -78
- package/dist/motia-plugin/hmr.d.ts +0 -22
- package/dist/motia-plugin/hmr.js +0 -100
- package/dist/motia-plugin/index.d.ts +0 -3
- package/dist/motia-plugin/index.js +0 -153
- package/dist/motia-plugin/resolver.js +0 -92
- package/dist/motia-plugin/types.d.ts +0 -169
- package/dist/motia-plugin/types.js +0 -36
- package/dist/motia-plugin/utils.js +0 -75
- package/dist/motia-plugin/validator.d.ts +0 -19
- package/dist/motia-plugin/validator.js +0 -163
- package/dist/src/App.d.ts +0 -2
- package/dist/src/App.js +0 -35
- package/dist/src/components/NotFoundPage.d.ts +0 -1
- package/dist/src/components/NotFoundPage.js +0 -3
- package/dist/src/components/bottom-panel.d.ts +0 -1
- package/dist/src/components/bottom-panel.js +0 -15
- package/dist/src/components/flow/base-edge.d.ts +0 -3
- package/dist/src/components/flow/base-edge.js +0 -39
- package/dist/src/components/flow/flow-loader.d.ts +0 -1
- package/dist/src/components/flow/flow-loader.js +0 -4
- package/dist/src/components/flow/flow-page.d.ts +0 -1
- package/dist/src/components/flow/flow-page.js +0 -25
- package/dist/src/components/flow/flow-tab-menu-item.d.ts +0 -1
- package/dist/src/components/flow/flow-tab-menu-item.js +0 -18
- package/dist/src/components/flow/flow-view.d.ts +0 -12
- package/dist/src/components/flow/flow-view.js +0 -22
- package/dist/src/components/flow/hooks/use-get-flow-state.d.ts +0 -10
- package/dist/src/components/flow/hooks/use-get-flow-state.js +0 -133
- package/dist/src/components/flow/hooks/use-save-workflow-config.d.ts +0 -2
- package/dist/src/components/flow/hooks/use-save-workflow-config.js +0 -22
- package/dist/src/components/flow/node-organizer.d.ts +0 -10
- package/dist/src/components/flow/node-organizer.js +0 -82
- package/dist/src/components/flow/nodes/api-flow-node.d.ts +0 -2
- package/dist/src/components/flow/nodes/api-flow-node.js +0 -5
- package/dist/src/components/flow/nodes/cron-flow-node.d.ts +0 -2
- package/dist/src/components/flow/nodes/cron-flow-node.js +0 -5
- package/dist/src/components/flow/nodes/event-flow-node.d.ts +0 -2
- package/dist/src/components/flow/nodes/event-flow-node.js +0 -5
- package/dist/src/components/flow/nodes/noop-flow-node.d.ts +0 -2
- package/dist/src/components/flow/nodes/noop-flow-node.js +0 -5
- package/dist/src/components/header/deploy-button.d.ts +0 -1
- package/dist/src/components/header/deploy-button.js +0 -28
- package/dist/src/components/header/header.d.ts +0 -2
- package/dist/src/components/header/header.js +0 -23
- package/dist/src/components/root-motia.d.ts +0 -2
- package/dist/src/components/root-motia.js +0 -7
- package/dist/src/components/top-panel.d.ts +0 -1
- package/dist/src/components/top-panel.js +0 -15
- package/dist/src/components/tutorial/engine/tutorial-engine.d.ts +0 -12
- package/dist/src/components/tutorial/engine/tutorial-engine.js +0 -36
- package/dist/src/components/tutorial/engine/tutorial-types.d.ts +0 -22
- package/dist/src/components/tutorial/engine/tutorial-types.js +0 -1
- package/dist/src/components/tutorial/engine/workbench-xpath.d.ts +0 -45
- package/dist/src/components/tutorial/engine/workbench-xpath.js +0 -45
- package/dist/src/components/tutorial/hooks/tutorial-utils.d.ts +0 -1
- package/dist/src/components/tutorial/hooks/tutorial-utils.js +0 -17
- package/dist/src/components/tutorial/hooks/use-tutorial-engine.d.ts +0 -15
- package/dist/src/components/tutorial/hooks/use-tutorial-engine.js +0 -183
- package/dist/src/components/tutorial/hooks/use-tutorial.d.ts +0 -5
- package/dist/src/components/tutorial/hooks/use-tutorial.js +0 -10
- package/dist/src/components/tutorial/tutorial-button.d.ts +0 -2
- package/dist/src/components/tutorial/tutorial-button.js +0 -21
- package/dist/src/components/tutorial/tutorial-step.d.ts +0 -14
- package/dist/src/components/tutorial/tutorial-step.js +0 -19
- package/dist/src/components/tutorial/tutorial.d.ts +0 -2
- package/dist/src/components/tutorial/tutorial.js +0 -32
- package/dist/src/components/ui/json-editor.d.ts +0 -12
- package/dist/src/components/ui/json-editor.js +0 -35
- package/dist/src/components/ui/table.d.ts +0 -10
- package/dist/src/components/ui/table.js +0 -20
- package/dist/src/components/ui/theme-toggle.d.ts +0 -2
- package/dist/src/components/ui/theme-toggle.js +0 -19
- package/dist/src/components/ui/tooltip.d.ts +0 -6
- package/dist/src/components/ui/tooltip.js +0 -3
- package/dist/src/hooks/use-debounced.d.ts +0 -1
- package/dist/src/hooks/use-debounced.js +0 -18
- package/dist/src/hooks/use-fetch-flows.d.ts +0 -1
- package/dist/src/hooks/use-fetch-flows.js +0 -26
- package/dist/src/hooks/use-mobile.d.ts +0 -1
- package/dist/src/hooks/use-mobile.js +0 -15
- package/dist/src/hooks/use-update-handle-positions.d.ts +0 -10
- package/dist/src/hooks/use-update-handle-positions.js +0 -35
- package/dist/src/lib/__tests__/utils.test.d.ts +0 -1
- package/dist/src/lib/__tests__/utils.test.js +0 -94
- package/dist/src/lib/motia-analytics.d.ts +0 -38
- package/dist/src/lib/motia-analytics.js +0 -132
- package/dist/src/lib/plugins.d.ts +0 -2
- package/dist/src/lib/plugins.js +0 -105
- package/dist/src/lib/utils.d.ts +0 -7
- package/dist/src/lib/utils.js +0 -34
- package/dist/src/main.d.ts +0 -2
- package/dist/src/main.js +0 -17
- package/dist/src/project-view-mode.d.ts +0 -1
- package/dist/src/project-view-mode.js +0 -20
- package/dist/src/publicComponents/api-node.d.ts +0 -5
- package/dist/src/publicComponents/api-node.js +0 -5
- package/dist/src/publicComponents/base-node/base-handle.d.ts +0 -9
- package/dist/src/publicComponents/base-node/base-handle.js +0 -8
- package/dist/src/publicComponents/base-node/base-node.d.ts +0 -15
- package/dist/src/publicComponents/base-node/base-node.js +0 -30
- package/dist/src/publicComponents/base-node/code-display.d.ts +0 -9
- package/dist/src/publicComponents/base-node/code-display.js +0 -64
- package/dist/src/publicComponents/base-node/emits.d.ts +0 -5
- package/dist/src/publicComponents/base-node/emits.js +0 -5
- package/dist/src/publicComponents/base-node/feature-card.d.ts +0 -10
- package/dist/src/publicComponents/base-node/feature-card.js +0 -5
- package/dist/src/publicComponents/base-node/language-indicator.d.ts +0 -10
- package/dist/src/publicComponents/base-node/language-indicator.js +0 -29
- package/dist/src/publicComponents/base-node/node-header.d.ts +0 -13
- package/dist/src/publicComponents/base-node/node-header.js +0 -30
- package/dist/src/publicComponents/base-node/node-sidebar.d.ts +0 -14
- package/dist/src/publicComponents/base-node/node-sidebar.js +0 -9
- package/dist/src/publicComponents/base-node/subscribe.d.ts +0 -4
- package/dist/src/publicComponents/base-node/subscribe.js +0 -4
- package/dist/src/publicComponents/cron-node.d.ts +0 -4
- package/dist/src/publicComponents/cron-node.js +0 -6
- package/dist/src/publicComponents/event-node.d.ts +0 -4
- package/dist/src/publicComponents/event-node.js +0 -5
- package/dist/src/publicComponents/node-props.d.ts +0 -21
- package/dist/src/publicComponents/node-props.js +0 -1
- package/dist/src/publicComponents/noop-node.d.ts +0 -4
- package/dist/src/publicComponents/noop-node.js +0 -5
- package/dist/src/setupTests.d.ts +0 -1
- package/dist/src/setupTests.js +0 -1
- package/dist/src/stores/use-app-tabs-store.d.ts +0 -16
- package/dist/src/stores/use-app-tabs-store.js +0 -31
- package/dist/src/stores/use-flow-store.d.ts +0 -21
- package/dist/src/stores/use-flow-store.js +0 -16
- package/dist/src/stores/use-global-store.d.ts +0 -18
- package/dist/src/stores/use-global-store.js +0 -12
- package/dist/src/stores/use-motia-config-store.d.ts +0 -12
- package/dist/src/stores/use-motia-config-store.js +0 -24
- package/dist/src/stores/use-tabs-store.d.ts +0 -19
- package/dist/src/stores/use-tabs-store.js +0 -22
- package/dist/src/system-view-mode.d.ts +0 -1
- package/dist/src/system-view-mode.js +0 -10
- package/dist/src/types/endpoint.d.ts +0 -14
- package/dist/src/types/endpoint.js +0 -1
- package/dist/src/types/file.d.ts +0 -7
- package/dist/src/types/file.js +0 -1
- package/dist/src/types/flow.d.ts +0 -115
- package/dist/src/types/flow.js +0 -1
- package/dist/tsconfig.app.tsbuildinfo +0 -1
- package/dist/tsconfig.node.tsbuildinfo +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,10 +1,189 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
1
|
+
import { HandleProps, Position } from "@xyflow/react";
|
|
2
|
+
import React$1, { HTMLAttributes, JSX, PropsWithChildren } from "react";
|
|
3
|
+
import { JSONSchema7 } from "json-schema";
|
|
4
|
+
|
|
5
|
+
//#region src/components/tutorial/engine/tutorial-types.d.ts
|
|
6
|
+
type TutorialActionClick = {
|
|
7
|
+
type: "click";
|
|
8
|
+
selector: string;
|
|
9
|
+
optional?: boolean;
|
|
10
|
+
};
|
|
11
|
+
type TutorialActionEditor = {
|
|
12
|
+
type: "fill-editor";
|
|
13
|
+
content: Record<string, any>;
|
|
14
|
+
};
|
|
15
|
+
type TutorialAction = TutorialActionClick | TutorialActionEditor;
|
|
16
|
+
type TutorialImage = {
|
|
17
|
+
height: number;
|
|
18
|
+
src: string;
|
|
19
|
+
};
|
|
20
|
+
type TutorialStep = {
|
|
21
|
+
title: string;
|
|
22
|
+
description: React.FC<void>;
|
|
23
|
+
image?: TutorialImage;
|
|
24
|
+
link?: string;
|
|
25
|
+
elementXpath?: string;
|
|
26
|
+
before?: TutorialAction[];
|
|
27
|
+
};
|
|
28
|
+
//#endregion
|
|
29
|
+
//#region src/components/tutorial/engine/workbench-xpath.d.ts
|
|
30
|
+
declare const workbenchXPath: {
|
|
31
|
+
sidebarContainer: string;
|
|
32
|
+
closePanelButton: string;
|
|
33
|
+
bottomPanel: string;
|
|
34
|
+
flows: {
|
|
35
|
+
dropdownFlow: (flowId: string) => string;
|
|
36
|
+
feature: (featureId: string) => string;
|
|
37
|
+
previewButton: (stepId: string) => string;
|
|
38
|
+
node: (stepId: string) => string;
|
|
39
|
+
};
|
|
40
|
+
endpoints: {
|
|
41
|
+
endpointsList: string;
|
|
42
|
+
endpoint: (method: string, path: string) => string;
|
|
43
|
+
callPanel: string;
|
|
44
|
+
specButton: string;
|
|
45
|
+
bodyTab: string;
|
|
46
|
+
headersTab: string;
|
|
47
|
+
paramsTab: string;
|
|
48
|
+
callTab: string;
|
|
49
|
+
response: string;
|
|
50
|
+
playButton: string;
|
|
51
|
+
};
|
|
52
|
+
tracing: {
|
|
53
|
+
trace: (index: number) => string;
|
|
54
|
+
details: string;
|
|
55
|
+
timeline: (index: number) => string;
|
|
56
|
+
};
|
|
57
|
+
logs: {
|
|
58
|
+
container: string;
|
|
59
|
+
searchContainer: string;
|
|
60
|
+
traceColumn: (index: number) => string;
|
|
61
|
+
row: string;
|
|
62
|
+
};
|
|
63
|
+
states: {
|
|
64
|
+
container: string;
|
|
65
|
+
row: (index: number) => string;
|
|
66
|
+
};
|
|
67
|
+
links: {
|
|
68
|
+
flows: string;
|
|
69
|
+
endpoints: string;
|
|
70
|
+
tracing: string;
|
|
71
|
+
logs: string;
|
|
72
|
+
states: string;
|
|
73
|
+
};
|
|
74
|
+
};
|
|
75
|
+
//#endregion
|
|
76
|
+
//#region src/types/flow.d.ts
|
|
77
|
+
type EventNodeData = {
|
|
78
|
+
type: string;
|
|
79
|
+
name: string;
|
|
80
|
+
description?: string;
|
|
81
|
+
subscribes: string[];
|
|
82
|
+
emits: Array<string | {
|
|
83
|
+
topic: string;
|
|
84
|
+
label?: string;
|
|
85
|
+
}>;
|
|
86
|
+
virtualEmits?: Array<string | {
|
|
87
|
+
topic: string;
|
|
88
|
+
label?: string;
|
|
89
|
+
}>;
|
|
90
|
+
virtualSubscribes?: string[];
|
|
91
|
+
language?: string;
|
|
92
|
+
};
|
|
93
|
+
type NoopNodeData = {
|
|
94
|
+
type: string;
|
|
95
|
+
name: string;
|
|
96
|
+
description?: string;
|
|
97
|
+
virtualEmits: string[];
|
|
98
|
+
subscribes: string[];
|
|
99
|
+
};
|
|
100
|
+
type ApiNodeData = {
|
|
101
|
+
type: string;
|
|
102
|
+
name: string;
|
|
103
|
+
language?: string;
|
|
104
|
+
description?: string;
|
|
105
|
+
emits: Array<string | {
|
|
106
|
+
topic: string;
|
|
107
|
+
label?: string;
|
|
108
|
+
}>;
|
|
109
|
+
subscribes?: string[];
|
|
110
|
+
virtualEmits?: Array<string | {
|
|
111
|
+
topic: string;
|
|
112
|
+
label?: string;
|
|
113
|
+
}>;
|
|
114
|
+
virtualSubscribes?: string[];
|
|
115
|
+
webhookUrl?: string;
|
|
116
|
+
bodySchema?: JSONSchema7;
|
|
117
|
+
};
|
|
118
|
+
type CronNodeData = {
|
|
119
|
+
type: string;
|
|
120
|
+
name: string;
|
|
121
|
+
description?: string;
|
|
122
|
+
emits: Array<string | {
|
|
123
|
+
topic: string;
|
|
124
|
+
label?: string;
|
|
125
|
+
}>;
|
|
126
|
+
virtualEmits?: Array<string | {
|
|
127
|
+
topic: string;
|
|
128
|
+
label?: string;
|
|
129
|
+
}>;
|
|
130
|
+
virtualSubscribes?: string[];
|
|
131
|
+
cronExpression: string;
|
|
132
|
+
language?: string;
|
|
133
|
+
};
|
|
134
|
+
//#endregion
|
|
135
|
+
//#region src/publicComponents/node-props.d.ts
|
|
136
|
+
type BaseNodeProps = {
|
|
137
|
+
id: string;
|
|
138
|
+
nodeConfig?: {
|
|
139
|
+
sourceHandlePosition?: "bottom" | "right";
|
|
140
|
+
targetHandlePosition?: "top" | "left";
|
|
141
|
+
};
|
|
142
|
+
};
|
|
143
|
+
type EventNodeProps = {
|
|
144
|
+
data: BaseNodeProps & EventNodeData;
|
|
145
|
+
};
|
|
146
|
+
type NoopNodeProps = {
|
|
147
|
+
data: BaseNodeProps & NoopNodeData;
|
|
148
|
+
};
|
|
149
|
+
type ApiNodeProps = {
|
|
150
|
+
data: BaseNodeProps & ApiNodeData;
|
|
151
|
+
};
|
|
152
|
+
type CronNodeProps = {
|
|
153
|
+
data: BaseNodeProps & CronNodeData;
|
|
154
|
+
};
|
|
155
|
+
//#endregion
|
|
156
|
+
//#region src/publicComponents/api-node.d.ts
|
|
157
|
+
type Props$2 = PropsWithChildren<ApiNodeProps>;
|
|
158
|
+
declare const ApiNode: ({
|
|
159
|
+
data,
|
|
160
|
+
children
|
|
161
|
+
}: Props$2) => JSX.Element;
|
|
162
|
+
//#endregion
|
|
163
|
+
//#region src/publicComponents/base-node/base-handle.d.ts
|
|
164
|
+
type Props$1 = HandleProps & Omit<HTMLAttributes<HTMLDivElement>, "id"> & {
|
|
165
|
+
isHidden?: boolean;
|
|
166
|
+
onTogglePosition?: () => void;
|
|
167
|
+
};
|
|
168
|
+
declare const BaseHandle: React$1.FC<Props$1>;
|
|
169
|
+
//#endregion
|
|
170
|
+
//#region src/publicComponents/base-node/base-node.d.ts
|
|
171
|
+
type Props = PropsWithChildren<{
|
|
172
|
+
title: string;
|
|
173
|
+
subtitle?: string;
|
|
174
|
+
variant: "event" | "api" | "noop" | "cron";
|
|
175
|
+
language?: string;
|
|
176
|
+
className?: string;
|
|
177
|
+
disableSourceHandle?: boolean;
|
|
178
|
+
disableTargetHandle?: boolean;
|
|
179
|
+
data: BaseNodeProps;
|
|
180
|
+
}>;
|
|
181
|
+
declare const BaseNode: React$1.FC<Props>;
|
|
182
|
+
//#endregion
|
|
183
|
+
//#region src/publicComponents/event-node.d.ts
|
|
184
|
+
declare const EventNode: React$1.FC<PropsWithChildren<EventNodeProps>>;
|
|
185
|
+
//#endregion
|
|
186
|
+
//#region src/publicComponents/noop-node.d.ts
|
|
187
|
+
declare const NoopNode: React$1.FC<PropsWithChildren<NoopNodeProps>>;
|
|
188
|
+
//#endregion
|
|
189
|
+
export { ApiNode, type ApiNodeData, type ApiNodeProps, BaseHandle, BaseNode, type BaseNodeProps, type CronNodeProps, EventNode, type EventNodeData, type EventNodeProps, NoopNode, type NoopNodeProps, Position, type TutorialStep, workbenchXPath };
|