@g1cloud/bpmn-modeler-next 5.0.0-alpha.72 → 5.0.0-alpha.73

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.
@@ -6,6 +6,7 @@ import { default as ElementRegistry } from 'diagram-js/lib/core/ElementRegistry'
6
6
  import { default as Canvas } from 'diagram-js/lib/core/Canvas';
7
7
  import { default as AutoPlace } from 'diagram-js/lib/features/auto-place/AutoPlace';
8
8
  import { default as BpmnReplace } from 'bpmn-js/lib/features/replace/BpmnReplace';
9
+ import { default as SpaceTool } from 'diagram-js/lib/features/space-tool/SpaceTool';
9
10
  import { Shape } from 'bpmn-js/lib/model/Types';
10
11
  import { SymbolicOp } from '../symbolicOp';
11
12
  import { BwlSide } from '../../core/hints';
@@ -19,6 +20,8 @@ export interface ResolverServices {
19
20
  canvas: Canvas;
20
21
  autoPlace: AutoPlace;
21
22
  bpmnReplace: BpmnReplace;
23
+ /** 공간 확보(`createSpace`)의 이동·리사이즈 집합 산출 — 레인 증설이 쓴다(B-97 ⓘ). */
24
+ spaceTool: SpaceTool;
22
25
  }
23
26
  export declare function resolverServicesOf(modeler: BpmnModelerLike): ResolverServices;
24
27
  /**