@blueking/bkflow-canvas-editor 1.0.4 → 1.0.6
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-QLQKeBKC.js → composable-Bj2RyJCM.js} +58 -57
- package/dist/composable-iHkGGq4L.cjs +1 -0
- package/dist/index.cjs.js +38 -38
- package/dist/index.d.ts +3 -2
- package/dist/index.esm.js +21661 -22249
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/composable-CNiwlaFl.cjs +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -715,7 +715,7 @@ interface FlowEditApiConfig extends FlowViewApiConfig {
|
|
|
715
715
|
fetchBkFlowThirdPartyPluginTags: () => Promise<BkflowThirdPartyPluginGroupItem[]>;
|
|
716
716
|
fetchBkFlowThirdPartyPluginMeta: (plugin_code: string) => Promise<BkflowThirdPartyPluginMetaDetail>;
|
|
717
717
|
fetchBkFlowThirdPartyPluginDetail: (plugin_code: string, plugin_version: string) => Promise<BkflowThirdPartyPluginDetail>;
|
|
718
|
-
fetchBkFlowThirdPartyPluginAppDetail: (plugin_code: string) => Promise<BkflowThirdPartyPluginAppDetail>;
|
|
718
|
+
fetchBkFlowThirdPartyPluginAppDetail: (plugin_code: string, plugin_version: string) => Promise<BkflowThirdPartyPluginAppDetail>;
|
|
719
719
|
fetchPluginGroupList: () => Promise<PluginGroupConfig[]>;
|
|
720
720
|
fetchCategoryPlugins: (category: string) => Promise<PluginMetaItem[]>;
|
|
721
721
|
fetchAllPluginGroups: () => Promise<GroupsPluginItem[]>;
|
|
@@ -1305,7 +1305,8 @@ declare function createBkflowSchema(): CanvasSchema;
|
|
|
1305
1305
|
* 若目标是 placeholder 且删后无入边,级联删除该 placeholder
|
|
1306
1306
|
* - edge.reconnect:若源从条件网关迁出,清理旧条件
|
|
1307
1307
|
* - node.remove:主动查找将被级联删除的边,清理对应网关条件;
|
|
1308
|
-
* 若删除的是分支网关,级联删除关联的 placeholder
|
|
1308
|
+
* 若删除的是分支网关,级联删除关联的 placeholder 节点;
|
|
1309
|
+
* 同时清理全局变量中对被删除节点的 source_info 引用,并删除已无引用的变量
|
|
1309
1310
|
*/
|
|
1310
1311
|
declare function createBkflowPlugin(): CanvasPlugin;
|
|
1311
1312
|
|