@flowgram.ai/free-layout-core 0.1.0-alpha.14 → 0.1.0-alpha.16
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/esm/index.js +95 -22
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.mts +48 -184
- package/dist/index.d.ts +48 -184
- package/dist/index.js +97 -24
- package/dist/index.js.map +1 -1
- package/dist/typings/index.d.mts +4 -5
- package/dist/typings/index.d.ts +4 -5
- package/dist/typings/workflow-drag.d.mts +1 -2
- package/dist/typings/workflow-drag.d.ts +1 -2
- package/dist/typings/workflow-json.d.mts +3 -4
- package/dist/typings/workflow-json.d.ts +3 -4
- package/dist/typings/workflow-line.d.mts +3 -4
- package/dist/typings/workflow-line.d.ts +3 -4
- package/dist/typings/workflow-node.d.mts +2 -3
- package/dist/typings/workflow-node.d.ts +2 -3
- package/dist/typings/workflow-registry.d.mts +3 -4
- package/dist/typings/workflow-registry.d.ts +3 -4
- package/dist/typings/workflow-sub-canvas.d.mts +6 -1
- package/dist/typings/workflow-sub-canvas.d.ts +6 -1
- package/dist/{workflow-line-entity-Dn8glLaW.d.mts → workflow-node-entity-DtPEYn6-.d.mts} +380 -213
- package/dist/{workflow-line-entity-BmPrinpL.d.ts → workflow-node-entity-GyY_PHY6.d.ts} +380 -213
- package/package.json +12 -12
- package/dist/workflow-sub-canvas-IQzlYvPD.d.mts +0 -25
- package/dist/workflow-sub-canvas-IQzlYvPD.d.ts +0 -25
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { FlowNodeEntity } from '@flowgram.ai/document';
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
5
|
-
* SPDX-License-Identifier: MIT
|
|
6
|
-
*/
|
|
7
|
-
|
|
8
|
-
type WorkflowNodeEntity = FlowNodeEntity;
|
|
9
|
-
declare const WorkflowNodeEntity: typeof FlowNodeEntity;
|
|
10
|
-
|
|
11
|
-
/**
|
|
12
|
-
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
13
|
-
* SPDX-License-Identifier: MIT
|
|
14
|
-
*/
|
|
15
|
-
|
|
16
|
-
/**
|
|
17
|
-
* 子画布配置
|
|
18
|
-
*/
|
|
19
|
-
type WorkflowSubCanvas = {
|
|
20
|
-
isCanvas: boolean;
|
|
21
|
-
parentNode: WorkflowNodeEntity;
|
|
22
|
-
canvasNode: WorkflowNodeEntity;
|
|
23
|
-
};
|
|
24
|
-
|
|
25
|
-
export { WorkflowNodeEntity as W, type WorkflowSubCanvas as a };
|