@blueking/bkflow-canvas-editor 1.1.0-beta.6 → 1.1.0-beta.8
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/advanced.cjs.js +1 -1
- package/dist/advanced.d.ts +2 -2
- package/dist/advanced.esm.js +1 -1
- package/dist/{composable-DQzX4bmX.js → composable-Cf47ka9M.js} +211 -211
- package/dist/{composable-D55LNZ1F.cjs → composable-YlUVct40.cjs} +1 -1
- package/dist/{index-B5_qMx5s.js → index-BL3fS0Jt.js} +17 -17
- package/dist/{index-BoQLjwKV.cjs → index-CC5gBhZo.cjs} +31 -31
- package/dist/{index-ThM6_GOM.cjs → index-Cr1IApLI.cjs} +1 -1
- package/dist/index-D2oS_A8g.cjs +1 -0
- package/dist/{index-C5lTl48-.js → index-DhEdmFv2.js} +9615 -9314
- package/dist/{index-BGM3lPM3.js → index-Z3twZd2j.js} +57 -56
- package/dist/{index-DeTmR5DD.js → index-aTwexVNR.js} +1 -1
- package/dist/index-j1ZMdQyf.cjs +1 -0
- package/dist/index.cjs.js +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.esm.js +2 -2
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/index-BtPXZin3.cjs +0 -1
- package/dist/index-DimL9dOc.cjs +0 -1
package/dist/advanced.cjs.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./composable-
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./composable-YlUVct40.cjs");exports.PLUGIN_GROUP_ICON_MAP=e.PLUGIN_GROUP_ICON_MAP;exports.useFlowApi=e.useFlowApi;
|
package/dist/advanced.d.ts
CHANGED
|
@@ -601,7 +601,7 @@ interface CustomVariableType {
|
|
|
601
601
|
}
|
|
602
602
|
|
|
603
603
|
type DebugContextStatus = 'idle' | 'running' | 'terminating';
|
|
604
|
-
type DebugNodeStatus = 'not_run' | 'running' | 'finished' | 'failed' | 'suspended' | 'skipped';
|
|
604
|
+
type DebugNodeStatus = 'not_run' | 'running' | 'waiting' | 'paused' | 'finished' | 'failed' | 'suspended' | 'skipped';
|
|
605
605
|
type DebugExecutionMode = 'real' | 'mock';
|
|
606
606
|
interface DebugMissingVar {
|
|
607
607
|
key: string;
|
|
@@ -609,7 +609,7 @@ interface DebugMissingVar {
|
|
|
609
609
|
}
|
|
610
610
|
type DebugRunMode = DebugExecutionMode | 'mixed';
|
|
611
611
|
type DebugRunType = 'global' | 'step';
|
|
612
|
-
type DebugRunStatus = 'running' | 'terminating' | 'finished' | 'failed' | 'revoked';
|
|
612
|
+
type DebugRunStatus = 'not_run' | 'running' | 'waiting' | 'paused' | 'terminating' | 'finished' | 'failed' | 'revoked';
|
|
613
613
|
/** 运行级 / 节点级错误详情(last_error_detail、nodes[].error_detail)。 */
|
|
614
614
|
interface DebugErrorFailure {
|
|
615
615
|
message: string;
|
package/dist/advanced.esm.js
CHANGED