@logicflow/extension 0.7.10 → 0.7.13-alpha.1

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.
Files changed (45) hide show
  1. package/CHANGELOG.md +41 -0
  2. package/cjs/components/dnd-panel/index.js +5 -0
  3. package/cjs/index.js +1 -0
  4. package/cjs/materials/node-selection/index.js +272 -0
  5. package/es/bpmn/events/StartEvent.d.ts +8 -11
  6. package/es/components/dnd-panel/index.d.ts +1 -0
  7. package/es/components/dnd-panel/index.js +5 -0
  8. package/es/index.d.ts +1 -0
  9. package/es/index.js +1 -0
  10. package/es/materials/group/GroupNode.d.ts +5 -5
  11. package/es/materials/node-selection/index.d.ts +33 -0
  12. package/es/materials/node-selection/index.js +269 -0
  13. package/lib/AutoLayout.js +1 -1
  14. package/lib/BpmnAdapter.js +1 -1
  15. package/lib/BpmnElement.js +1 -1
  16. package/lib/ContextMenu.js +1 -1
  17. package/lib/Control.js +1 -1
  18. package/lib/CurvedEdge.js +1 -1
  19. package/lib/DndPanel.js +1 -1
  20. package/lib/FlowPath.js +1 -1
  21. package/lib/Group.js +1 -1
  22. package/lib/InsertNodeInPolyline.js +1 -1
  23. package/lib/Menu.js +1 -1
  24. package/lib/MiniMap.js +1 -1
  25. package/lib/NodeResize.js +1 -1
  26. package/lib/NodeSelection.js +10 -0
  27. package/lib/RectLabelNode.js +1 -1
  28. package/lib/SelectionSelect.js +1 -1
  29. package/lib/Snapshot.js +1 -1
  30. package/lib/TurboAdapter.js +1 -1
  31. package/package.json +3 -3
  32. package/types/bpmn/events/StartEvent.d.ts +8 -11
  33. package/types/components/dnd-panel/index.d.ts +1 -0
  34. package/types/index.d.ts +1 -0
  35. package/types/materials/group/GroupNode.d.ts +5 -5
  36. package/types/materials/node-selection/index.d.ts +33 -0
  37. package/types/mindmap/fakerRoot.d.ts +0 -13
  38. package/types/mindmap/index.d.ts +0 -40
  39. package/types/mindmap/markContent.d.ts +0 -17
  40. package/types/mindmap/markContentOption.d.ts +0 -17
  41. package/types/mindmap/markEntity.d.ts +0 -17
  42. package/types/mindmap/markRoot.d.ts +0 -17
  43. package/types/mindmap/mindNode.d.ts +0 -16
  44. package/types/mindmap/rootNode.d.ts +0 -17
  45. package/types/mindmap/theme.d.ts +0 -10
@@ -1,17 +0,0 @@
1
- import { RectNode, RectNodeModel } from '@logicflow/core';
2
- declare class MarkEntityModel extends RectNodeModel {
3
- static extendKey: string;
4
- constructor(data: any, graphModel: any);
5
- setAttributes(): void;
6
- }
7
- declare class MarkEntityView extends RectNode {
8
- static extendKey: string;
9
- getLabelShape(): import("preact").VNode<any>;
10
- getShape(): import("preact").VNode<any>;
11
- }
12
- declare const MarkEntity: {
13
- type: string;
14
- view: typeof MarkEntityView;
15
- model: typeof MarkEntityModel;
16
- };
17
- export default MarkEntity;
@@ -1,17 +0,0 @@
1
- import { RectNode, RectNodeModel } from '@logicflow/core';
2
- declare class MarkRootModel extends RectNodeModel {
3
- static extendKey: string;
4
- constructor(data: any, graphModel: any);
5
- setAttributes(): void;
6
- }
7
- declare class MarkRootView extends RectNode {
8
- static extendKey: string;
9
- getLabelShape(): import("preact").VNode<any>;
10
- getShape(): import("preact").VNode<any>;
11
- }
12
- declare const MarkRoot: {
13
- type: string;
14
- view: typeof MarkRootView;
15
- model: typeof MarkRootModel;
16
- };
17
- export default MarkRoot;
@@ -1,16 +0,0 @@
1
- import { RectNode, RectNodeModel } from '@logicflow/core';
2
- declare class MindNodeModel extends RectNodeModel {
3
- static extendKey: string;
4
- setAttributes(): void;
5
- }
6
- declare class MindNodeView extends RectNode {
7
- static extendKey: string;
8
- getLabelShape(): import("preact").VNode<any>;
9
- getShape(): import("preact").VNode<any>;
10
- }
11
- declare const UserTask: {
12
- type: string;
13
- view: typeof MindNodeView;
14
- model: typeof MindNodeModel;
15
- };
16
- export default UserTask;
@@ -1,17 +0,0 @@
1
- import { RectNode, RectNodeModel } from '@logicflow/core';
2
- declare class RootNodeModel extends RectNodeModel {
3
- static extendKey: string;
4
- constructor(data: any, graphModel: any);
5
- setAttributes(): void;
6
- }
7
- declare class RootNodeView extends RectNode {
8
- static extendKey: string;
9
- getLabelShape(): import("preact").VNode<any>;
10
- getShape(): import("preact").VNode<any>;
11
- }
12
- declare const RootNode: {
13
- type: string;
14
- view: typeof RootNodeView;
15
- model: typeof RootNodeModel;
16
- };
17
- export default RootNode;
@@ -1,10 +0,0 @@
1
- export declare const theme: {
2
- rect: {
3
- stroke: string;
4
- };
5
- bezier: {
6
- offset: number;
7
- strokeWidth: number;
8
- stroke: string;
9
- };
10
- };