@digitalsee-ai/rcs 1.1.9 → 2.0.0-beta3
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/README.md +6 -38
- package/README.npm.md +37 -0
- package/dist/components/digitalsee/JsonRenderer/index.d.ts +1 -1
- package/dist/components/digitalsee/workflow/Canvas/FastOperationButtons.d.ts +5 -2
- package/dist/components/digitalsee/workflow/Canvas/FullscreenLoading.d.ts +10 -2
- package/dist/components/digitalsee/workflow/Canvas/MiniMap.d.ts +1 -1
- package/dist/components/digitalsee/workflow/Canvas/NodePlaceholder.d.ts +12 -0
- package/dist/components/digitalsee/workflow/Canvas/WorkflowCanvasHeader.d.ts +4 -8
- package/dist/components/digitalsee/workflow/Canvas/actionItemToNodeData.d.ts +1 -6
- package/dist/components/digitalsee/workflow/Canvas/constants.d.ts +25 -26
- package/dist/components/digitalsee/workflow/Canvas/hooks/{classicNodeAddConnection.d.ts → nodePackageAddConnection.d.ts} +3 -3
- package/dist/components/digitalsee/workflow/Canvas/hooks/useCanvasApi.d.ts +4 -2
- package/dist/components/digitalsee/workflow/Canvas/hooks/useDataLoading.d.ts +42 -5
- package/dist/components/digitalsee/workflow/Canvas/hooks/useNodeAddCallback.d.ts +2 -3
- package/dist/components/digitalsee/workflow/Canvas/hooks/useSaveFlowAfterNodeAdd.d.ts +4 -7
- package/dist/components/digitalsee/workflow/Canvas/hooks/useWorkflowCanvasState.d.ts +22 -4
- package/dist/components/digitalsee/workflow/Canvas/types.d.ts +19 -21
- package/dist/components/digitalsee/workflow/Edges/BaseEdge.d.ts +2 -0
- package/dist/components/digitalsee/workflow/Edges/EdgeFactory.d.ts +3 -8
- package/dist/components/digitalsee/workflow/Edges/edgeLayout.d.ts +73 -0
- package/dist/components/digitalsee/workflow/Handles/CustomHandle.d.ts +1 -0
- package/dist/components/digitalsee/workflow/Handles/customHandleConnectable.d.ts +19 -0
- package/dist/components/digitalsee/workflow/Nodes/DeclaredNode.d.ts +33 -0
- package/dist/components/digitalsee/workflow/Nodes/DynamicNode.d.ts +24 -0
- package/dist/components/digitalsee/workflow/Nodes/NodeFactory.d.ts +42 -4
- package/dist/components/digitalsee/workflow/Nodes/SuperBaseNode.d.ts +2 -1
- package/dist/components/digitalsee/workflow/Nodes/classicPortLayout.d.ts +51 -0
- package/dist/components/digitalsee/workflow/Nodes/components/NodeStatusBadge.d.ts +11 -0
- package/dist/components/digitalsee/workflow/Nodes/{classicNodePackagePortLayout.d.ts → nodePackagePortLayout.d.ts} +4 -4
- package/dist/components/digitalsee/workflow/Nodes/nodeTypeRegistry.d.ts +131 -0
- package/dist/components/digitalsee/workflow/Nodes/useNodePackagePorts.d.ts +35 -0
- package/dist/components/digitalsee/workflow/NodesConfig/NodePackageConfig/fieldSchemaAdapter.d.ts +14 -0
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/RichTagInput/help.d.ts +5 -1
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/index.d.ts +1 -0
- package/dist/components/digitalsee/workflow/NodesConfig/components/NodeTest.d.ts +2 -0
- package/dist/components/digitalsee/workflow/NodesConfig/components/NodeTest.helpers.d.ts +11 -0
- package/dist/components/digitalsee/workflow/NodesConfig/components/VariableModal/tree-help.d.ts +5 -12
- package/dist/components/digitalsee/workflow/NodesConfig/submitPayload.d.ts +10 -17
- package/dist/components/digitalsee/workflow/Panels/CanvasConfigDebugger.d.ts +1 -1
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/components/CategoryItem.d.ts +1 -1
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/components/CategoryTabs.d.ts +1 -1
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/components/NodeCard.d.ts +1 -1
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/components/NodeItem.d.ts +1 -1
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/components/PanelHeader.d.ts +1 -1
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/hooks/useConnectableNodeSelector.d.ts +2 -5
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/types.d.ts +10 -4
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/utils/connectableDataSource.d.ts +6 -10
- package/dist/components/digitalsee/workflow/Panels/SimpleNodeSelectorPanel/components/NodeListItem.d.ts +1 -1
- package/dist/components/digitalsee/workflow/api/dip.types.d.ts +30 -1
- package/dist/components/digitalsee/workflow/api/index.d.ts +3 -22
- package/dist/components/digitalsee/workflow/builtin/controls/ConfigSubflow/index.d.ts +2 -2
- package/dist/components/digitalsee/workflow/builtin/globalConfig/index.d.ts +5 -1
- package/dist/components/digitalsee/workflow/config/globalConfig.d.ts +1 -5
- package/dist/components/digitalsee/workflow/config/layerConfig.d.ts +14 -0
- package/dist/components/digitalsee/workflow/config/themeConfig.d.ts +19 -23
- package/dist/components/digitalsee/workflow/constants/nodePackageHandles.d.ts +10 -0
- package/dist/components/digitalsee/workflow/context/workflowTriggerContext.d.ts +22 -0
- package/dist/components/digitalsee/workflow/coverage/acceptanceManifest.d.ts +30 -0
- package/dist/components/digitalsee/workflow/coverage/runtimeCoverage.d.ts +34 -0
- package/dist/components/digitalsee/workflow/design-system/AiFlowNodeTestPanel.d.ts +24 -0
- package/dist/components/digitalsee/workflow/design-system/AiFlowVariableTree.d.ts +34 -0
- package/dist/components/digitalsee/workflow/design-system/index.d.ts +3 -0
- package/dist/components/digitalsee/workflow/design-system/tokens.d.ts +103 -0
- package/dist/components/digitalsee/workflow/enums/canvas.d.ts +0 -12
- package/dist/components/digitalsee/workflow/enums/edge.d.ts +4 -2
- package/dist/components/digitalsee/workflow/enums/node.d.ts +5 -6
- package/dist/components/digitalsee/workflow/enums/workflow.d.ts +1 -1
- package/dist/components/digitalsee/workflow/examples/global-config-example.d.ts +1 -1
- package/dist/components/digitalsee/workflow/hooks/state.hooks.d.ts +1 -7
- package/dist/components/digitalsee/workflow/hooks/use-flow-data-operation.d.ts +1 -1
- package/dist/components/digitalsee/workflow/hooks/useCanvasLayout.d.ts +1 -1
- package/dist/components/digitalsee/workflow/hooks/useCanvasMode.d.ts +8 -0
- package/dist/components/digitalsee/workflow/hooks/useHandleConnections.d.ts +9 -1
- package/dist/components/digitalsee/workflow/hooks/useVariables.d.ts +1 -0
- package/dist/components/digitalsee/workflow/hooks/useWorkflow.d.ts +1 -1
- package/dist/components/digitalsee/workflow/index.d.ts +28 -46
- package/dist/components/digitalsee/workflow/migration/umi.d.ts +1 -2
- package/dist/components/digitalsee/workflow/store/workflowSlice.d.ts +5 -2
- package/dist/components/digitalsee/workflow/types/Node.d.ts +2 -0
- package/dist/components/digitalsee/workflow/types/Workflow.d.ts +1 -1
- package/dist/components/digitalsee/workflow/types/engine.d.ts +21 -12
- package/dist/components/digitalsee/workflow/types/flowVersion.d.ts +0 -30
- package/dist/components/digitalsee/workflow/utils/connectionCheck.d.ts +30 -0
- package/dist/components/digitalsee/workflow/utils/layoutUtils.d.ts +2 -2
- package/dist/components/digitalsee/workflow/utils/mcpCanvas.d.ts +0 -40
- package/dist/components/digitalsee/workflow/utils/mode.d.ts +18 -0
- package/dist/components/digitalsee/workflow/utils/nodeAutoConnect.d.ts +24 -0
- package/dist/components/digitalsee/workflow/utils/nodeCommon.d.ts +5 -0
- package/dist/components/digitalsee/workflow/utils/nodeHandleLayout.d.ts +83 -0
- package/dist/components/digitalsee/workflow/utils/nodePackageConnection.d.ts +28 -0
- package/dist/components/digitalsee/workflow/utils/nodePackageGraphValidation.d.ts +29 -0
- package/dist/components/digitalsee/workflow/utils/nodePackageSchemaCache.d.ts +15 -0
- package/dist/components/digitalsee/workflow/utils/onNodeRemoveHook.d.ts +13 -0
- package/dist/components/digitalsee/workflow/utils/triggerNode.d.ts +13 -0
- package/dist/components/digitalsee/workflow/utils/workflowConnectionValidator.d.ts +1 -3
- package/dist/components/digitalsee/workflow/workflow.story-fixtures.d.ts +50 -0
- package/dist/{index-CqZ6Y0AC.mjs → index-Bw7AlWFF.mjs} +23754 -25891
- package/dist/index-D6yj1rMq.mjs +285 -0
- package/dist/locales/en-US/common.d.ts +29 -52
- package/dist/locales/en-US.d.ts +29 -52
- package/dist/locales/zh-CN/common.d.ts +29 -52
- package/dist/locales/zh-CN.d.ts +29 -52
- package/dist/locales/zh-TW/common.d.ts +29 -52
- package/dist/locales/zh-TW.d.ts +29 -52
- package/dist/rcs.css +1 -1
- package/dist/rcs.es.js +65 -62
- package/dist/rcs.umd.js +132 -72
- package/package.json +38 -23
- package/dist/components/digitalsee/workflow/Canvas/FlowVersionManager.d.ts +0 -17
- package/dist/components/digitalsee/workflow/Canvas/NextConfigModalWrapper.d.ts +0 -9
- package/dist/components/digitalsee/workflow/Canvas/NextWorkflowCanvas.d.ts +0 -4
- package/dist/components/digitalsee/workflow/Canvas/NextWorkflowCanvasHeader.d.ts +0 -17
- package/dist/components/digitalsee/workflow/Canvas/hooks/createNodeAddHandlerNext.d.ts +0 -38
- package/dist/components/digitalsee/workflow/NextNodesConfigModal/index.d.ts +0 -13
- package/dist/components/digitalsee/workflow/Nodes/AISubNode.d.ts +0 -9
- package/dist/components/digitalsee/workflow/Nodes/ActionNode.d.ts +0 -13
- package/dist/components/digitalsee/workflow/Nodes/AgentNode.d.ts +0 -10
- package/dist/components/digitalsee/workflow/Nodes/BrowserNode.d.ts +0 -10
- package/dist/components/digitalsee/workflow/Nodes/BuiltinMCPNode.d.ts +0 -9
- package/dist/components/digitalsee/workflow/Nodes/ConditionNode.d.ts +0 -13
- package/dist/components/digitalsee/workflow/Nodes/CustomNode.d.ts +0 -15
- package/dist/components/digitalsee/workflow/Nodes/LoopNode.d.ts +0 -4
- package/dist/components/digitalsee/workflow/Nodes/MCPServerNode.d.ts +0 -9
- package/dist/components/digitalsee/workflow/Nodes/MCPToolNode.d.ts +0 -9
- package/dist/components/digitalsee/workflow/Nodes/NextNodeFactory.d.ts +0 -12
- package/dist/components/digitalsee/workflow/Nodes/NextNodes/NextActionNode.d.ts +0 -9
- package/dist/components/digitalsee/workflow/Nodes/NextNodes/NextBaseNode.d.ts +0 -16
- package/dist/components/digitalsee/workflow/Nodes/NextNodes/NextConditionNode.d.ts +0 -10
- package/dist/components/digitalsee/workflow/Nodes/NextNodes/NextLoopNode.d.ts +0 -10
- package/dist/components/digitalsee/workflow/Nodes/NextNodes/NextSwitchNode.d.ts +0 -10
- package/dist/components/digitalsee/workflow/Nodes/NextNodes/NextTriggerNode.d.ts +0 -9
- package/dist/components/digitalsee/workflow/Nodes/SelfLoopNode.d.ts +0 -4
- package/dist/components/digitalsee/workflow/Nodes/StartNode.d.ts +0 -1
- package/dist/components/digitalsee/workflow/Nodes/SwitchNode.d.ts +0 -13
- package/dist/components/digitalsee/workflow/Nodes/TriggerNode.d.ts +0 -10
- package/dist/components/digitalsee/workflow/Nodes/components/NextNodeDescription.d.ts +0 -16
- package/dist/components/digitalsee/workflow/Nodes/components/NextNodeOperations.d.ts +0 -11
- package/dist/components/digitalsee/workflow/Nodes/useClassicNodePackagePorts.d.ts +0 -27
- package/dist/components/digitalsee/workflow/NodesConfig/NextNodeConfig/CreateCredentialModal.d.ts +0 -13
- package/dist/components/digitalsee/workflow/NodesConfig/NextNodeConfig/CredentialSelect.d.ts +0 -17
- package/dist/components/digitalsee/workflow/NodesConfig/NextNodeConfig/ModifyCredentialModal.d.ts +0 -17
- package/dist/components/digitalsee/workflow/NodesConfig/NextNodeConfig/fieldSchemaAdapter.d.ts +0 -10
- package/dist/components/digitalsee/workflow/NodesConfig/NextNodeConfig/index.d.ts +0 -17
- package/dist/components/digitalsee/workflow/NodesConfig/components/NextNodeSettings.d.ts +0 -6
- package/dist/components/digitalsee/workflow/NodesConfig/components/NextNodeTest.d.ts +0 -6
- package/dist/components/digitalsee/workflow/NodesConfig/components/NextVariableModal/index.d.ts +0 -6
- package/dist/components/digitalsee/workflow/NodesConfig/components/NextVariableModal/variable-tree-next.d.ts +0 -49
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/components/EntryTypeSelector.d.ts +0 -8
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/components/NodeCardList.d.ts +0 -20
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/hooks/useNodeActionState.d.ts +0 -28
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/hooks/useNodeSelectorPresentation.d.ts +0 -25
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/utils/queryParams.d.ts +0 -18
- package/dist/components/digitalsee/workflow/constants/nextHandles.d.ts +0 -1
- package/dist/components/digitalsee/workflow/utils/classicNodePackageConnection.d.ts +0 -28
- package/dist/components/digitalsee/workflow/utils/classicNodePackageGraphValidation.d.ts +0 -29
- package/dist/components/digitalsee/workflow/utils/nextNodeSchemaCache.d.ts +0 -14
- package/dist/components/digitalsee/workflow/utils/queuedNodeConfigOpen.d.ts +0 -12
- package/dist/index-BnE-Ea2s.mjs +0 -312
- package/dist/index-BnE-Ea2s.mjs.map +0 -1
- package/dist/index-CqZ6Y0AC.mjs.map +0 -1
- package/dist/rcs.es.js.map +0 -1
- package/dist/rcs.umd.js.map +0 -1
- /package/dist/components/digitalsee/workflow/NodesConfig/{NextNodeConfig → NodePackageConfig}/WorkflowNodeSchemaFieldProvider.d.ts +0 -0
- /package/dist/components/digitalsee/workflow/NodesConfig/{NextNodeConfig → NodePackageConfig}/fields/WorkflowCodeField.d.ts +0 -0
- /package/dist/components/digitalsee/workflow/NodesConfig/{NextNodeConfig → NodePackageConfig}/fields/WorkflowProxyField.d.ts +0 -0
- /package/dist/components/digitalsee/workflow/NodesConfig/{NextNodeConfig → NodePackageConfig}/proxyField.d.ts +0 -0
- /package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/{next-compatible.d.ts → nodePackage-compatible.d.ts} +0 -0
|
@@ -0,0 +1,285 @@
|
|
|
1
|
+
import { jsx as t, jsxs as v } from "react/jsx-runtime";
|
|
2
|
+
import { D as T, V as L, e as x, i as P, t as l, f as R, d as O } from "./index-Bw7AlWFF.mjs";
|
|
3
|
+
import { useEventEmitter as B, useReactive as W, useSize as A } from "ahooks";
|
|
4
|
+
import { FormattedMessage as I } from "react-intl";
|
|
5
|
+
import { CloseCircleFilled as H, CheckCircleFilled as K } from "@ant-design/icons";
|
|
6
|
+
import { Button as M } from "antd";
|
|
7
|
+
import * as z from "monaco-editor";
|
|
8
|
+
import { useRef as k, useEffect as N } from "react";
|
|
9
|
+
import { createPortal as q } from "react-dom";
|
|
10
|
+
import J from "react-monaco-editor";
|
|
11
|
+
const G = "_modalContainer_8inkd_5", Q = "_editorContainer_8inkd_16", U = "_sider_8inkd_25", X = "_main_8inkd_34", Y = "_header_8inkd_40", Z = "_editor_8inkd_16", w = {
|
|
12
|
+
modalContainer: G,
|
|
13
|
+
editorContainer: Q,
|
|
14
|
+
sider: U,
|
|
15
|
+
main: X,
|
|
16
|
+
header: Y,
|
|
17
|
+
editor: Z
|
|
18
|
+
}, ee = "_ideWrapper_sfar6_1", ne = {
|
|
19
|
+
ideWrapper: ee
|
|
20
|
+
}, te = (e) => {
|
|
21
|
+
const { nodeId: i, onInsert: o, open: c } = e, s = B();
|
|
22
|
+
return s.useSubscription((a) => {
|
|
23
|
+
a.type === "insert" && o(a.expression);
|
|
24
|
+
}), /* @__PURE__ */ t(T.Provider, { value: { event$: s }, children: /* @__PURE__ */ t("div", { className: ne.ideWrapper, children: /* @__PURE__ */ t(L, { nodeId: i, onInsert: o, open: c }) }) });
|
|
25
|
+
}, ie = "_siderContainer_fhkbn_1", oe = {
|
|
26
|
+
siderContainer: ie
|
|
27
|
+
};
|
|
28
|
+
function re(e) {
|
|
29
|
+
return /* @__PURE__ */ v("div", { className: oe.siderContainer, children: [
|
|
30
|
+
/* @__PURE__ */ t("div", { children: /* @__PURE__ */ t(te, { open: e.open, nodeId: e.nodeId, onInsert: e.onInsert }) }),
|
|
31
|
+
/* @__PURE__ */ t("div", { style: { textAlign: "center" } })
|
|
32
|
+
] });
|
|
33
|
+
}
|
|
34
|
+
function se({ language: e = "javascript" }) {
|
|
35
|
+
return /* @__PURE__ */ v("h2", { id: "workflow-online-ide-title", className: "workflow-online-ide-title", children: [
|
|
36
|
+
/* @__PURE__ */ t(I, { id: "link.flow.code_editor" }),
|
|
37
|
+
" (Javascript)"
|
|
38
|
+
] });
|
|
39
|
+
}
|
|
40
|
+
function ae(e) {
|
|
41
|
+
return /* @__PURE__ */ v("div", { className: "workflow-online-ide-toolbar", children: [
|
|
42
|
+
/* @__PURE__ */ t(M, { size: "small", onClick: e.onCancel, icon: /* @__PURE__ */ t(H, {}), children: /* @__PURE__ */ t(I, { id: "app.common.word.cancel" }) }),
|
|
43
|
+
/* @__PURE__ */ t(M, { type: "primary", size: "small", onClick: e.onFinish, icon: /* @__PURE__ */ t(K, {}), children: /* @__PURE__ */ t(I, { id: "app.common.word.finish" }) })
|
|
44
|
+
] });
|
|
45
|
+
}
|
|
46
|
+
const le = [{ trigger: "log", content: "console.log('$1');$2", desc: "输出日志" }, { trigger: "imp", content: "import $1 from '$2';$3" }, { trigger: "loop", content: `for (let $1=0; i< $2.length;i++) {
|
|
47
|
+
|
|
48
|
+
}`, desc: "循环操作" }], de = {
|
|
49
|
+
snippets: le
|
|
50
|
+
}, ce = {
|
|
51
|
+
selectOnLineNumbers: !0,
|
|
52
|
+
automaticLayout: !0,
|
|
53
|
+
padding: {
|
|
54
|
+
top: 10
|
|
55
|
+
}
|
|
56
|
+
};
|
|
57
|
+
function ue(e) {
|
|
58
|
+
if (e.type === "global")
|
|
59
|
+
return [
|
|
60
|
+
`**${l("link.flow.variable_type_global")}**`,
|
|
61
|
+
`${l("link.flow.variable_path")}:\`${e.value}\``,
|
|
62
|
+
`${l("link.flow.variable_name")}:\`${e.path}\``
|
|
63
|
+
].filter(Boolean).join(`
|
|
64
|
+
|
|
65
|
+
`);
|
|
66
|
+
if (e.type === "builtin") {
|
|
67
|
+
const i = R.getBuiltinVariableTips(e.firstPart);
|
|
68
|
+
return [
|
|
69
|
+
`**${l("link.flow.variable_type_builtin")}**`,
|
|
70
|
+
`${l("link.flow.variable_path")}:\`${e.value}\``,
|
|
71
|
+
i
|
|
72
|
+
].filter(Boolean).join(`
|
|
73
|
+
|
|
74
|
+
`);
|
|
75
|
+
}
|
|
76
|
+
return e.type === "node" ? [
|
|
77
|
+
`**${l("link.flow.variable_type_node")}**`,
|
|
78
|
+
`${l("link.flow.variable_path")}:\`${e.value}\``,
|
|
79
|
+
e.path ? `${l("link.flow.variable_field")}:\`${e.path}\`` : ""
|
|
80
|
+
].filter(Boolean).join(`
|
|
81
|
+
|
|
82
|
+
`) : [
|
|
83
|
+
`**${l("link.flow.variable_type_platform")}**`,
|
|
84
|
+
`${l("link.flow.variable_path")}:\`${e.value}\``
|
|
85
|
+
].join(`
|
|
86
|
+
|
|
87
|
+
`);
|
|
88
|
+
}
|
|
89
|
+
const ge = (e) => ({
|
|
90
|
+
code: e.code,
|
|
91
|
+
severity: e.severity,
|
|
92
|
+
message: e.message,
|
|
93
|
+
source: e.source,
|
|
94
|
+
startLineNumber: e.startLineNumber,
|
|
95
|
+
startColumn: e.startColumn,
|
|
96
|
+
endLineNumber: e.endLineNumber,
|
|
97
|
+
endColumn: e.endColumn,
|
|
98
|
+
modelVersionId: e.modelVersionId,
|
|
99
|
+
relatedInformation: e.relatedInformation,
|
|
100
|
+
tags: e.tags
|
|
101
|
+
});
|
|
102
|
+
function V(e, i) {
|
|
103
|
+
const o = x(i.getValue());
|
|
104
|
+
if (!o.length)
|
|
105
|
+
return;
|
|
106
|
+
const c = e.editor.getModelMarkers({ resource: i.uri }), s = /* @__PURE__ */ new Map();
|
|
107
|
+
c.forEach((a) => {
|
|
108
|
+
const d = s.get(a.owner) ?? [];
|
|
109
|
+
d.push(a), s.set(a.owner, d);
|
|
110
|
+
}), s.forEach((a, d) => {
|
|
111
|
+
const u = a.filter(
|
|
112
|
+
(g) => !o.some((b) => O(b, g))
|
|
113
|
+
);
|
|
114
|
+
u.length !== a.length && e.editor.setModelMarkers(i, d, u.map(ge));
|
|
115
|
+
});
|
|
116
|
+
}
|
|
117
|
+
function fe(e, i) {
|
|
118
|
+
const o = [].map((c) => ({
|
|
119
|
+
insertText: c,
|
|
120
|
+
kind: e.languages.CompletionItemKind.Function,
|
|
121
|
+
// 对应提示图标的不同
|
|
122
|
+
label: c
|
|
123
|
+
}));
|
|
124
|
+
return e.languages.registerCompletionItemProvider(i, {
|
|
125
|
+
provideCompletionItems() {
|
|
126
|
+
return {
|
|
127
|
+
suggestions: o
|
|
128
|
+
};
|
|
129
|
+
},
|
|
130
|
+
quickSuggestions: !0,
|
|
131
|
+
// 默认提示关闭
|
|
132
|
+
triggerCharacters: ["{", ".", "=", ":"]
|
|
133
|
+
// 触发提示的字符 可以定义多个
|
|
134
|
+
});
|
|
135
|
+
}
|
|
136
|
+
function pe(e) {
|
|
137
|
+
return e.languages.typescript.javascriptDefaults.setDiagnosticsOptions({
|
|
138
|
+
noSemanticValidation: !0,
|
|
139
|
+
noSyntaxValidation: !1
|
|
140
|
+
}), e.languages.typescript.javascriptDefaults.setCompilerOptions({
|
|
141
|
+
target: e.languages.typescript.ScriptTarget.ES2015,
|
|
142
|
+
allowNonTsExtensions: !0
|
|
143
|
+
}), e.languages.registerCompletionItemProvider("javascript", {
|
|
144
|
+
provideCompletionItems: () => ({
|
|
145
|
+
suggestions: de.snippets.map((o) => ({
|
|
146
|
+
label: o.trigger,
|
|
147
|
+
kind: e.languages.CompletionItemKind.Method,
|
|
148
|
+
detail: o.desc ?? "",
|
|
149
|
+
insertText: o.content,
|
|
150
|
+
insertTextRules: e.languages.CompletionItemInsertTextRule.InsertAsSnippet
|
|
151
|
+
}))
|
|
152
|
+
})
|
|
153
|
+
});
|
|
154
|
+
}
|
|
155
|
+
function Ie(e) {
|
|
156
|
+
const { open: i, nodeId: o, initialValue: c, language: s = "javascript", showVariableSidebar: a = !0 } = e, d = k(null), u = k([]), g = W({
|
|
157
|
+
code: "",
|
|
158
|
+
range: new z.Range(1, 1, 1, 1)
|
|
159
|
+
}), b = (n, r) => {
|
|
160
|
+
n.onDidChangeCursorPosition((f) => {
|
|
161
|
+
const m = f.position, { lineNumber: p = 0, column: C = 0 } = m;
|
|
162
|
+
g.range = new r.Range(p, C, p, C);
|
|
163
|
+
}), d.current = n, n.focus(), g.code = n.getValue();
|
|
164
|
+
const j = r.languages.registerHoverProvider(s, {
|
|
165
|
+
provideHover: (f, m) => new Promise((p) => {
|
|
166
|
+
const h = x(f.getValue()).find(
|
|
167
|
+
(F) => P(F, m.lineNumber, m.column)
|
|
168
|
+
);
|
|
169
|
+
if (!h) {
|
|
170
|
+
p(null);
|
|
171
|
+
return;
|
|
172
|
+
}
|
|
173
|
+
p({
|
|
174
|
+
range: new r.Range(
|
|
175
|
+
h.startLine,
|
|
176
|
+
h.startColumn,
|
|
177
|
+
h.endLine,
|
|
178
|
+
h.endColumn
|
|
179
|
+
),
|
|
180
|
+
contents: [{ value: ue(h) }]
|
|
181
|
+
});
|
|
182
|
+
})
|
|
183
|
+
}), _ = n.getModel();
|
|
184
|
+
if (_) {
|
|
185
|
+
let f = !1;
|
|
186
|
+
const m = r.editor.onDidChangeMarkers((p) => {
|
|
187
|
+
f || !p.some((C) => C.toString() === _.uri.toString()) || (f = !0, window.setTimeout(() => {
|
|
188
|
+
try {
|
|
189
|
+
V(r, _);
|
|
190
|
+
} finally {
|
|
191
|
+
f = !1;
|
|
192
|
+
}
|
|
193
|
+
}, 0));
|
|
194
|
+
});
|
|
195
|
+
V(r, _), n.onDidDispose(() => m.dispose());
|
|
196
|
+
}
|
|
197
|
+
n.onDidDispose(() => j.dispose());
|
|
198
|
+
}, E = (n) => {
|
|
199
|
+
u.current.forEach((r) => {
|
|
200
|
+
r.dispose();
|
|
201
|
+
}), u.current = [fe(n, s)], s === "javascript" && u.current.push(pe(n));
|
|
202
|
+
};
|
|
203
|
+
N(
|
|
204
|
+
() => () => {
|
|
205
|
+
u.current.forEach((n) => {
|
|
206
|
+
n.dispose();
|
|
207
|
+
}), u.current = [];
|
|
208
|
+
},
|
|
209
|
+
[]
|
|
210
|
+
), N(() => {
|
|
211
|
+
if (!i)
|
|
212
|
+
return;
|
|
213
|
+
const n = (r) => {
|
|
214
|
+
r.key === "Escape" && (r.preventDefault(), e.onCancel());
|
|
215
|
+
};
|
|
216
|
+
return window.addEventListener("keydown", n), () => window.removeEventListener("keydown", n);
|
|
217
|
+
}, [i, e.onCancel]);
|
|
218
|
+
const S = (n) => {
|
|
219
|
+
const r = [
|
|
220
|
+
{
|
|
221
|
+
range: g.range,
|
|
222
|
+
text: n,
|
|
223
|
+
forceMoveMarkers: !0
|
|
224
|
+
}
|
|
225
|
+
];
|
|
226
|
+
d.current && g.range && d.current.executeEdits("my-source", r);
|
|
227
|
+
}, $ = () => {
|
|
228
|
+
var n;
|
|
229
|
+
(n = e.onFinish) == null || n.call(e, g.code);
|
|
230
|
+
}, D = k(null), y = A(D);
|
|
231
|
+
return q(
|
|
232
|
+
/* @__PURE__ */ t(
|
|
233
|
+
"div",
|
|
234
|
+
{
|
|
235
|
+
className: w.modalContainer,
|
|
236
|
+
ref: D,
|
|
237
|
+
style: { display: i ? "flex" : "none" },
|
|
238
|
+
role: "dialog",
|
|
239
|
+
"aria-modal": "true",
|
|
240
|
+
"aria-labelledby": "workflow-online-ide-title",
|
|
241
|
+
children: /* @__PURE__ */ v("div", { className: w.editorContainer, id: "javascript-code-editor", children: [
|
|
242
|
+
a ? /* @__PURE__ */ t("div", { className: w.sider, children: /* @__PURE__ */ t(
|
|
243
|
+
re,
|
|
244
|
+
{
|
|
245
|
+
onCancel: e.onCancel,
|
|
246
|
+
onFinish: $,
|
|
247
|
+
editor: d.current,
|
|
248
|
+
nodeId: o,
|
|
249
|
+
open: i,
|
|
250
|
+
onInsert: S
|
|
251
|
+
}
|
|
252
|
+
) }) : null,
|
|
253
|
+
/* @__PURE__ */ v("div", { className: w.main, children: [
|
|
254
|
+
/* @__PURE__ */ v("div", { className: w.header, children: [
|
|
255
|
+
/* @__PURE__ */ t(se, { language: s }),
|
|
256
|
+
/* @__PURE__ */ t(ae, { onCancel: e.onCancel, onFinish: $ })
|
|
257
|
+
] }),
|
|
258
|
+
/* @__PURE__ */ t("div", { className: w.editor, children: /* @__PURE__ */ t(
|
|
259
|
+
J,
|
|
260
|
+
{
|
|
261
|
+
width: "100%",
|
|
262
|
+
height: ((y == null ? void 0 : y.height) ?? 0) - 40,
|
|
263
|
+
language: s,
|
|
264
|
+
theme: "vs-dark",
|
|
265
|
+
value: c,
|
|
266
|
+
options: ce,
|
|
267
|
+
onChange: (n) => {
|
|
268
|
+
g.code = n;
|
|
269
|
+
},
|
|
270
|
+
editorWillMount: E,
|
|
271
|
+
editorDidMount: b
|
|
272
|
+
},
|
|
273
|
+
o
|
|
274
|
+
) })
|
|
275
|
+
] })
|
|
276
|
+
] })
|
|
277
|
+
}
|
|
278
|
+
),
|
|
279
|
+
document.body
|
|
280
|
+
);
|
|
281
|
+
}
|
|
282
|
+
export {
|
|
283
|
+
Ie as default
|
|
284
|
+
};
|
|
285
|
+
//# sourceMappingURL=index-D6yj1rMq.mjs.map
|
|
@@ -1,61 +1,9 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
|
-
'workflow.version.operation_failed': string;
|
|
3
2
|
'workflow.version.save_success': string;
|
|
4
3
|
'workflow.version.save_failed': string;
|
|
5
|
-
'workflow.version.status_loading': string;
|
|
6
|
-
'workflow.version.draft': string;
|
|
7
|
-
'workflow.version.draft_unsaved': string;
|
|
8
|
-
'workflow.version.draft_unsaved_unpublished': string;
|
|
9
|
-
'workflow.version.draft_unpublished': string;
|
|
10
|
-
'workflow.version.draft_changed_offline': string;
|
|
11
|
-
'workflow.version.draft_offline': string;
|
|
12
|
-
'workflow.version.draft_changed': string;
|
|
13
|
-
'workflow.version.online': string;
|
|
14
|
-
'workflow.version.publish_success': string;
|
|
15
|
-
'workflow.version.publish_failed_title': string;
|
|
16
|
-
'workflow.version.force_confirm': string;
|
|
17
|
-
'workflow.version.force_publish': string;
|
|
18
|
-
'workflow.version.force_publish_success': string;
|
|
19
4
|
'workflow.version.offline_confirm_title': string;
|
|
20
5
|
'workflow.version.offline_confirm_content': string;
|
|
21
6
|
'workflow.version.offline_success': string;
|
|
22
|
-
'workflow.version.rollback_confirm': string;
|
|
23
|
-
'workflow.version.rollback_confirm_content': string;
|
|
24
|
-
'workflow.version.rollback_success': string;
|
|
25
|
-
'workflow.version.load_draft_confirm': string;
|
|
26
|
-
'workflow.version.load_draft_confirm_content': string;
|
|
27
|
-
'workflow.version.load_draft_success': string;
|
|
28
|
-
'workflow.version.history': string;
|
|
29
|
-
'workflow.version.offline': string;
|
|
30
|
-
'workflow.version.no_publish_permission': string;
|
|
31
|
-
'workflow.version.publish_enable': string;
|
|
32
|
-
'workflow.version.publish': string;
|
|
33
|
-
'workflow.version.publish_tip': string;
|
|
34
|
-
'workflow.version.retention_tip': string;
|
|
35
|
-
'workflow.version.save_before_publish': string;
|
|
36
|
-
'workflow.version.name': string;
|
|
37
|
-
'workflow.version.naming': string;
|
|
38
|
-
'workflow.version.remark': string;
|
|
39
|
-
'workflow.version.remark_col': string;
|
|
40
|
-
'workflow.version.empty': string;
|
|
41
|
-
'workflow.version.view_detail': string;
|
|
42
|
-
'workflow.version.edit_from_version': string;
|
|
43
|
-
'workflow.version.edit_this_version': string;
|
|
44
|
-
'workflow.version.no_rollback_permission': string;
|
|
45
|
-
'workflow.version.rollback': string;
|
|
46
|
-
'workflow.version.effective': string;
|
|
47
|
-
'workflow.version.no_remark': string;
|
|
48
|
-
'workflow.version.detail': string;
|
|
49
|
-
'workflow.version.version': string;
|
|
50
|
-
'workflow.version.status': string;
|
|
51
|
-
'workflow.version.historical': string;
|
|
52
|
-
'workflow.version.publisher': string;
|
|
53
|
-
'workflow.version.publish_time': string;
|
|
54
|
-
'workflow.version.actions': string;
|
|
55
|
-
'workflow.version.total_count': string;
|
|
56
|
-
'workflow.version.readonly_tip': string;
|
|
57
|
-
'workflow.version.node_count': string;
|
|
58
|
-
'workflow.version.edge_count': string;
|
|
59
7
|
'common.cannot_chinese': string;
|
|
60
8
|
'common.please_enter_username_name_mobile': string;
|
|
61
9
|
'common.new_enterprise': string;
|
|
@@ -600,6 +548,7 @@ declare const _default: {
|
|
|
600
548
|
'app.common.word.not-published': string;
|
|
601
549
|
'app.common.word.already-online': string;
|
|
602
550
|
'app.common.word.going-online': string;
|
|
551
|
+
'app.workflow.version.tag': string;
|
|
603
552
|
'common.warning': string;
|
|
604
553
|
'app.common.word.process-management': string;
|
|
605
554
|
'common.user-review-policy': string;
|
|
@@ -615,5 +564,33 @@ declare const _default: {
|
|
|
615
564
|
'app.common.word.new-window': string;
|
|
616
565
|
'app.common.word.customOpen': string;
|
|
617
566
|
'user.common.operation_title': string;
|
|
567
|
+
'app.workflow.canvas.header.draft_editing_tag': string;
|
|
568
|
+
'app.workflow.canvas.header.unsaved_tag': string;
|
|
569
|
+
'app.workflow.canvas.header.history_versions': string;
|
|
570
|
+
'app.workflow.canvas.header.help_doc_default': string;
|
|
571
|
+
'app.workflow.canvas.header.settings_label': string;
|
|
572
|
+
'app.workflow.canvas.header.template_settings_default': string;
|
|
573
|
+
'app.workflow.canvas.header.save_draft': string;
|
|
574
|
+
'app.workflow.canvas.header.offline_flow': string;
|
|
575
|
+
'app.workflow.canvas.header.more': string;
|
|
576
|
+
'app.workflow.canvas.header.publish_enable': string;
|
|
577
|
+
'app.workflow.canvas.header.workflow_name_placeholder': string;
|
|
578
|
+
'app.workflow.canvas.header.workflow_name_unnamed': string;
|
|
579
|
+
'app.workflow.canvas.header.save_blocked_warning': string;
|
|
580
|
+
'app.workflow.global_config.url_invalid': string;
|
|
581
|
+
'app.workflow.global_config.enable_control': string;
|
|
582
|
+
'app.workflow.global_config.timeout_label': string;
|
|
583
|
+
'app.workflow.global_config.timeout_required': string;
|
|
584
|
+
'app.workflow.global_config.timeout_min': string;
|
|
585
|
+
'app.workflow.global_config.please_input': string;
|
|
586
|
+
'app.workflow.global_config.unit_second': string;
|
|
587
|
+
'app.workflow.global_config.timeout_help': string;
|
|
588
|
+
'app.workflow.global_config.max_node_label': string;
|
|
589
|
+
'app.workflow.global_config.max_node_required': string;
|
|
590
|
+
'app.workflow.global_config.max_node_min': string;
|
|
591
|
+
'app.workflow.global_config.max_node_help': string;
|
|
592
|
+
'app.workflow.global_config.webhook_label': string;
|
|
593
|
+
'app.workflow.global_config.webhook_placeholder': string;
|
|
594
|
+
'app.workflow.global_config.webhook_help': string;
|
|
618
595
|
};
|
|
619
596
|
export default _default;
|
package/dist/locales/en-US.d.ts
CHANGED
|
@@ -209,63 +209,11 @@ declare const _default: {
|
|
|
209
209
|
'components.selectOAuth2ClientField.tokenEndpoint': string;
|
|
210
210
|
'components.selectOAuth2ClientField.tokenDescriptionPrefix': string;
|
|
211
211
|
'components.selectOAuth2ClientField.documentation': string;
|
|
212
|
-
'workflow.version.operation_failed': string;
|
|
213
212
|
'workflow.version.save_success': string;
|
|
214
213
|
'workflow.version.save_failed': string;
|
|
215
|
-
'workflow.version.status_loading': string;
|
|
216
|
-
'workflow.version.draft': string;
|
|
217
|
-
'workflow.version.draft_unsaved': string;
|
|
218
|
-
'workflow.version.draft_unsaved_unpublished': string;
|
|
219
|
-
'workflow.version.draft_unpublished': string;
|
|
220
|
-
'workflow.version.draft_changed_offline': string;
|
|
221
|
-
'workflow.version.draft_offline': string;
|
|
222
|
-
'workflow.version.draft_changed': string;
|
|
223
|
-
'workflow.version.online': string;
|
|
224
|
-
'workflow.version.publish_success': string;
|
|
225
|
-
'workflow.version.publish_failed_title': string;
|
|
226
|
-
'workflow.version.force_confirm': string;
|
|
227
|
-
'workflow.version.force_publish': string;
|
|
228
|
-
'workflow.version.force_publish_success': string;
|
|
229
214
|
'workflow.version.offline_confirm_title': string;
|
|
230
215
|
'workflow.version.offline_confirm_content': string;
|
|
231
216
|
'workflow.version.offline_success': string;
|
|
232
|
-
'workflow.version.rollback_confirm': string;
|
|
233
|
-
'workflow.version.rollback_confirm_content': string;
|
|
234
|
-
'workflow.version.rollback_success': string;
|
|
235
|
-
'workflow.version.load_draft_confirm': string;
|
|
236
|
-
'workflow.version.load_draft_confirm_content': string;
|
|
237
|
-
'workflow.version.load_draft_success': string;
|
|
238
|
-
'workflow.version.history': string;
|
|
239
|
-
'workflow.version.offline': string;
|
|
240
|
-
'workflow.version.no_publish_permission': string;
|
|
241
|
-
'workflow.version.publish_enable': string;
|
|
242
|
-
'workflow.version.publish': string;
|
|
243
|
-
'workflow.version.publish_tip': string;
|
|
244
|
-
'workflow.version.retention_tip': string;
|
|
245
|
-
'workflow.version.save_before_publish': string;
|
|
246
|
-
'workflow.version.name': string;
|
|
247
|
-
'workflow.version.naming': string;
|
|
248
|
-
'workflow.version.remark': string;
|
|
249
|
-
'workflow.version.remark_col': string;
|
|
250
|
-
'workflow.version.empty': string;
|
|
251
|
-
'workflow.version.view_detail': string;
|
|
252
|
-
'workflow.version.edit_from_version': string;
|
|
253
|
-
'workflow.version.edit_this_version': string;
|
|
254
|
-
'workflow.version.no_rollback_permission': string;
|
|
255
|
-
'workflow.version.rollback': string;
|
|
256
|
-
'workflow.version.effective': string;
|
|
257
|
-
'workflow.version.no_remark': string;
|
|
258
|
-
'workflow.version.detail': string;
|
|
259
|
-
'workflow.version.version': string;
|
|
260
|
-
'workflow.version.status': string;
|
|
261
|
-
'workflow.version.historical': string;
|
|
262
|
-
'workflow.version.publisher': string;
|
|
263
|
-
'workflow.version.publish_time': string;
|
|
264
|
-
'workflow.version.actions': string;
|
|
265
|
-
'workflow.version.total_count': string;
|
|
266
|
-
'workflow.version.readonly_tip': string;
|
|
267
|
-
'workflow.version.node_count': string;
|
|
268
|
-
'workflow.version.edge_count': string;
|
|
269
217
|
'common.cannot_chinese': string;
|
|
270
218
|
'common.please_enter_username_name_mobile': string;
|
|
271
219
|
'common.new_enterprise': string;
|
|
@@ -810,6 +758,7 @@ declare const _default: {
|
|
|
810
758
|
'app.common.word.not-published': string;
|
|
811
759
|
'app.common.word.already-online': string;
|
|
812
760
|
'app.common.word.going-online': string;
|
|
761
|
+
'app.workflow.version.tag': string;
|
|
813
762
|
'common.warning': string;
|
|
814
763
|
'app.common.word.process-management': string;
|
|
815
764
|
'common.user-review-policy': string;
|
|
@@ -825,5 +774,33 @@ declare const _default: {
|
|
|
825
774
|
'app.common.word.new-window': string;
|
|
826
775
|
'app.common.word.customOpen': string;
|
|
827
776
|
'user.common.operation_title': string;
|
|
777
|
+
'app.workflow.canvas.header.draft_editing_tag': string;
|
|
778
|
+
'app.workflow.canvas.header.unsaved_tag': string;
|
|
779
|
+
'app.workflow.canvas.header.history_versions': string;
|
|
780
|
+
'app.workflow.canvas.header.help_doc_default': string;
|
|
781
|
+
'app.workflow.canvas.header.settings_label': string;
|
|
782
|
+
'app.workflow.canvas.header.template_settings_default': string;
|
|
783
|
+
'app.workflow.canvas.header.save_draft': string;
|
|
784
|
+
'app.workflow.canvas.header.offline_flow': string;
|
|
785
|
+
'app.workflow.canvas.header.more': string;
|
|
786
|
+
'app.workflow.canvas.header.publish_enable': string;
|
|
787
|
+
'app.workflow.canvas.header.workflow_name_placeholder': string;
|
|
788
|
+
'app.workflow.canvas.header.workflow_name_unnamed': string;
|
|
789
|
+
'app.workflow.canvas.header.save_blocked_warning': string;
|
|
790
|
+
'app.workflow.global_config.url_invalid': string;
|
|
791
|
+
'app.workflow.global_config.enable_control': string;
|
|
792
|
+
'app.workflow.global_config.timeout_label': string;
|
|
793
|
+
'app.workflow.global_config.timeout_required': string;
|
|
794
|
+
'app.workflow.global_config.timeout_min': string;
|
|
795
|
+
'app.workflow.global_config.please_input': string;
|
|
796
|
+
'app.workflow.global_config.unit_second': string;
|
|
797
|
+
'app.workflow.global_config.timeout_help': string;
|
|
798
|
+
'app.workflow.global_config.max_node_label': string;
|
|
799
|
+
'app.workflow.global_config.max_node_required': string;
|
|
800
|
+
'app.workflow.global_config.max_node_min': string;
|
|
801
|
+
'app.workflow.global_config.max_node_help': string;
|
|
802
|
+
'app.workflow.global_config.webhook_label': string;
|
|
803
|
+
'app.workflow.global_config.webhook_placeholder': string;
|
|
804
|
+
'app.workflow.global_config.webhook_help': string;
|
|
828
805
|
};
|
|
829
806
|
export default _default;
|
|
@@ -1,61 +1,9 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
|
-
'workflow.version.operation_failed': string;
|
|
3
2
|
'workflow.version.save_success': string;
|
|
4
3
|
'workflow.version.save_failed': string;
|
|
5
|
-
'workflow.version.status_loading': string;
|
|
6
|
-
'workflow.version.draft': string;
|
|
7
|
-
'workflow.version.draft_unsaved': string;
|
|
8
|
-
'workflow.version.draft_unsaved_unpublished': string;
|
|
9
|
-
'workflow.version.draft_unpublished': string;
|
|
10
|
-
'workflow.version.draft_changed_offline': string;
|
|
11
|
-
'workflow.version.draft_offline': string;
|
|
12
|
-
'workflow.version.draft_changed': string;
|
|
13
|
-
'workflow.version.online': string;
|
|
14
|
-
'workflow.version.publish_success': string;
|
|
15
|
-
'workflow.version.publish_failed_title': string;
|
|
16
|
-
'workflow.version.force_confirm': string;
|
|
17
|
-
'workflow.version.force_publish': string;
|
|
18
|
-
'workflow.version.force_publish_success': string;
|
|
19
4
|
'workflow.version.offline_confirm_title': string;
|
|
20
5
|
'workflow.version.offline_confirm_content': string;
|
|
21
6
|
'workflow.version.offline_success': string;
|
|
22
|
-
'workflow.version.rollback_confirm': string;
|
|
23
|
-
'workflow.version.rollback_confirm_content': string;
|
|
24
|
-
'workflow.version.rollback_success': string;
|
|
25
|
-
'workflow.version.load_draft_confirm': string;
|
|
26
|
-
'workflow.version.load_draft_confirm_content': string;
|
|
27
|
-
'workflow.version.load_draft_success': string;
|
|
28
|
-
'workflow.version.history': string;
|
|
29
|
-
'workflow.version.offline': string;
|
|
30
|
-
'workflow.version.no_publish_permission': string;
|
|
31
|
-
'workflow.version.publish_enable': string;
|
|
32
|
-
'workflow.version.publish': string;
|
|
33
|
-
'workflow.version.publish_tip': string;
|
|
34
|
-
'workflow.version.retention_tip': string;
|
|
35
|
-
'workflow.version.save_before_publish': string;
|
|
36
|
-
'workflow.version.name': string;
|
|
37
|
-
'workflow.version.naming': string;
|
|
38
|
-
'workflow.version.remark': string;
|
|
39
|
-
'workflow.version.remark_col': string;
|
|
40
|
-
'workflow.version.empty': string;
|
|
41
|
-
'workflow.version.view_detail': string;
|
|
42
|
-
'workflow.version.edit_from_version': string;
|
|
43
|
-
'workflow.version.edit_this_version': string;
|
|
44
|
-
'workflow.version.no_rollback_permission': string;
|
|
45
|
-
'workflow.version.rollback': string;
|
|
46
|
-
'workflow.version.effective': string;
|
|
47
|
-
'workflow.version.no_remark': string;
|
|
48
|
-
'workflow.version.detail': string;
|
|
49
|
-
'workflow.version.version': string;
|
|
50
|
-
'workflow.version.status': string;
|
|
51
|
-
'workflow.version.historical': string;
|
|
52
|
-
'workflow.version.publisher': string;
|
|
53
|
-
'workflow.version.publish_time': string;
|
|
54
|
-
'workflow.version.actions': string;
|
|
55
|
-
'workflow.version.total_count': string;
|
|
56
|
-
'workflow.version.readonly_tip': string;
|
|
57
|
-
'workflow.version.node_count': string;
|
|
58
|
-
'workflow.version.edge_count': string;
|
|
59
7
|
'common.cannot_chinese': string;
|
|
60
8
|
'common.please_enter_username_name_mobile': string;
|
|
61
9
|
'common.new_enterprise': string;
|
|
@@ -600,6 +548,7 @@ declare const _default: {
|
|
|
600
548
|
'app.common.word.not-published': string;
|
|
601
549
|
'app.common.word.already-online': string;
|
|
602
550
|
'app.common.word.going-online': string;
|
|
551
|
+
'app.workflow.version.tag': string;
|
|
603
552
|
'common.warning': string;
|
|
604
553
|
'app.common.word.process-management': string;
|
|
605
554
|
'common.user-review-policy': string;
|
|
@@ -615,5 +564,33 @@ declare const _default: {
|
|
|
615
564
|
'app.common.word.new-window': string;
|
|
616
565
|
'app.common.word.customOpen': string;
|
|
617
566
|
'user.common.operation_title': string;
|
|
567
|
+
'app.workflow.canvas.header.draft_editing_tag': string;
|
|
568
|
+
'app.workflow.canvas.header.unsaved_tag': string;
|
|
569
|
+
'app.workflow.canvas.header.history_versions': string;
|
|
570
|
+
'app.workflow.canvas.header.help_doc_default': string;
|
|
571
|
+
'app.workflow.canvas.header.settings_label': string;
|
|
572
|
+
'app.workflow.canvas.header.template_settings_default': string;
|
|
573
|
+
'app.workflow.canvas.header.save_draft': string;
|
|
574
|
+
'app.workflow.canvas.header.offline_flow': string;
|
|
575
|
+
'app.workflow.canvas.header.more': string;
|
|
576
|
+
'app.workflow.canvas.header.publish_enable': string;
|
|
577
|
+
'app.workflow.canvas.header.workflow_name_placeholder': string;
|
|
578
|
+
'app.workflow.canvas.header.workflow_name_unnamed': string;
|
|
579
|
+
'app.workflow.canvas.header.save_blocked_warning': string;
|
|
580
|
+
'app.workflow.global_config.url_invalid': string;
|
|
581
|
+
'app.workflow.global_config.enable_control': string;
|
|
582
|
+
'app.workflow.global_config.timeout_label': string;
|
|
583
|
+
'app.workflow.global_config.timeout_required': string;
|
|
584
|
+
'app.workflow.global_config.timeout_min': string;
|
|
585
|
+
'app.workflow.global_config.please_input': string;
|
|
586
|
+
'app.workflow.global_config.unit_second': string;
|
|
587
|
+
'app.workflow.global_config.timeout_help': string;
|
|
588
|
+
'app.workflow.global_config.max_node_label': string;
|
|
589
|
+
'app.workflow.global_config.max_node_required': string;
|
|
590
|
+
'app.workflow.global_config.max_node_min': string;
|
|
591
|
+
'app.workflow.global_config.max_node_help': string;
|
|
592
|
+
'app.workflow.global_config.webhook_label': string;
|
|
593
|
+
'app.workflow.global_config.webhook_placeholder': string;
|
|
594
|
+
'app.workflow.global_config.webhook_help': string;
|
|
618
595
|
};
|
|
619
596
|
export default _default;
|