@g1cloud/bpmn-modeler-next 5.0.0-alpha.51 → 5.0.0-alpha.53
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/agent/symbolicOp.d.ts +2 -0
- package/dist/bpmn-modeler.js +6614 -6593
- package/dist/bpmn-modeler.umd.cjs +62 -62
- package/package.json +1 -1
|
@@ -56,12 +56,14 @@ export type SymbolicOp =
|
|
|
56
56
|
lanes?: IrLane[];
|
|
57
57
|
}
|
|
58
58
|
/** `lane` = 레인 재배정(이동). `type` = 태스크/이벤트 타입 전환(bpmn-js replace 하강 — 외래 확장 속성 유실 가능성은 불변식 2 가 완충). */
|
|
59
|
+
/** 노드 갱신. `band` = 기존 노드의 행 재지정(B-72 ⓐ 승격) — 기존 컨테이너에서 band 는 **행 identity** 다. */
|
|
59
60
|
| {
|
|
60
61
|
kind: 'node.update';
|
|
61
62
|
id: string;
|
|
62
63
|
name?: string | null;
|
|
63
64
|
lane?: string;
|
|
64
65
|
type?: IrFlowNodeType;
|
|
66
|
+
band?: BwlBand;
|
|
65
67
|
}
|
|
66
68
|
/**
|
|
67
69
|
* `source`/`target` = 끝점 재배선(B-6 승격). 한쪽만 줘도 되고(나머지 보존) 새 끝점은
|