@blueking/bkflow-canvas-editor 1.1.0-beta.3 → 1.1.0-beta.4
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 +1 -1
- package/dist/advanced.esm.js +1 -1
- package/dist/{composable-gqC5C2k8.js → composable-CmXOtkXh.js} +42 -41
- package/dist/composable-CtSJfiSD.cjs +1 -0
- package/dist/index.cjs.js +40 -40
- package/dist/index.d.ts +3 -2
- package/dist/index.esm.js +24579 -24891
- package/dist/style.css +1 -1
- package/package.json +3 -5
- package/dist/composable-B_bR5Gic.cjs +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -864,7 +864,7 @@ interface FlowEditApiConfig extends FlowViewApiConfig {
|
|
|
864
864
|
fetchBkFlowThirdPartyPluginTags: () => Promise<BkflowThirdPartyPluginGroupItem[]>;
|
|
865
865
|
fetchBkFlowThirdPartyPluginMeta: (plugin_code: string) => Promise<BkflowThirdPartyPluginMetaDetail>;
|
|
866
866
|
fetchBkFlowThirdPartyPluginDetail: (plugin_code: string, plugin_version: string) => Promise<BkflowThirdPartyPluginDetail>;
|
|
867
|
-
fetchBkFlowThirdPartyPluginAppDetail: (plugin_code: string) => Promise<BkflowThirdPartyPluginAppDetail>;
|
|
867
|
+
fetchBkFlowThirdPartyPluginAppDetail: (plugin_code: string, plugin_version: string) => Promise<BkflowThirdPartyPluginAppDetail>;
|
|
868
868
|
fetchPluginGroupList: () => Promise<PluginGroupConfig[]>;
|
|
869
869
|
fetchCategoryPlugins: (category: string) => Promise<PluginMetaItem[]>;
|
|
870
870
|
fetchAllPluginGroups: () => Promise<GroupsPluginItem[]>;
|
|
@@ -1616,7 +1616,8 @@ declare function exportToPipelineTree(flowModel: FlowModel): PipelineTree;
|
|
|
1616
1616
|
* 若目标是 placeholder 且删后无入边,级联删除该 placeholder
|
|
1617
1617
|
* - edge.reconnect:若源从条件网关迁出,清理旧条件
|
|
1618
1618
|
* - node.remove:主动查找将被级联删除的边,清理对应网关条件;
|
|
1619
|
-
* 若删除的是分支网关,级联删除关联的 placeholder
|
|
1619
|
+
* 若删除的是分支网关,级联删除关联的 placeholder 节点;
|
|
1620
|
+
* 同时清理全局变量中对被删除节点的 source_info 引用,并删除已无引用的变量
|
|
1620
1621
|
*/
|
|
1621
1622
|
declare function createBkflowPlugin(): CanvasPlugin;
|
|
1622
1623
|
|