@blueking/bkflow-canvas-editor 1.0.0-beta.13 → 1.0.0-beta.15
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.cjs.js +15 -15
- package/dist/index.d.ts +3 -2
- package/dist/index.esm.js +2196 -2195
- package/dist/style.css +1 -1
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -1092,7 +1092,7 @@ type __VLS_Props = {
|
|
|
1092
1092
|
additionalPlugins?: CanvasPlugin[];
|
|
1093
1093
|
};
|
|
1094
1094
|
declare var __VLS_8: {};
|
|
1095
|
-
declare var
|
|
1095
|
+
declare var __VLS_22: {
|
|
1096
1096
|
node: _blueking_flow_canvas.FlowNodeModel;
|
|
1097
1097
|
api: _blueking_flow_canvas.CanvasApi;
|
|
1098
1098
|
insertNodeToRight: (node: Omit<_blueking_flow_canvas.FlowNodeModel, "position">) => void;
|
|
@@ -1101,7 +1101,7 @@ declare var __VLS_20: {
|
|
|
1101
1101
|
type __VLS_Slots = {} & {
|
|
1102
1102
|
'node-palette'?: (props: typeof __VLS_8) => any;
|
|
1103
1103
|
} & {
|
|
1104
|
-
'quick-add-panel'?: (props: typeof
|
|
1104
|
+
'quick-add-panel'?: (props: typeof __VLS_22) => any;
|
|
1105
1105
|
};
|
|
1106
1106
|
declare const __VLS_base: vue.DefineComponent<__VLS_Props, {
|
|
1107
1107
|
editor: _blueking_flow_canvas.CanvasEditorContext;
|
|
@@ -1111,6 +1111,7 @@ declare const __VLS_base: vue.DefineComponent<__VLS_Props, {
|
|
|
1111
1111
|
executeCommand: (envelope: CommandEnvelope) => _blueking_flow_canvas.CommandExecutionResult;
|
|
1112
1112
|
undo: () => _blueking_flow_canvas.FlowModel | null;
|
|
1113
1113
|
redo: () => _blueking_flow_canvas.FlowModel | null;
|
|
1114
|
+
resetHoverState: () => void | undefined;
|
|
1114
1115
|
}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {} & {
|
|
1115
1116
|
change: (pipelineTree: PipelineTree) => any;
|
|
1116
1117
|
"ui-event": (event: CanvasUiEvent) => any;
|