@visactor/vrender-core 1.1.0-alpha.2 → 1.1.0-alpha.20

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 (140) hide show
  1. package/cjs/canvas/constants.js +2 -1
  2. package/cjs/color-string/index.js +1 -2
  3. package/cjs/common/diff.js +1 -2
  4. package/cjs/common/event-transformer.js +2 -1
  5. package/cjs/common/rect-utils.js +1 -1
  6. package/cjs/common/render-area.js +1 -1
  7. package/cjs/common/render-command-list.js +1 -1
  8. package/cjs/common/render-curve.js +1 -1
  9. package/cjs/common/render-utils.js +1 -1
  10. package/cjs/common/seg-context.js +1 -2
  11. package/cjs/common/simplify.js +1 -1
  12. package/cjs/common/sort.js +1 -1
  13. package/cjs/common/split-path.js +1 -1
  14. package/cjs/common/store.js +1 -1
  15. package/cjs/common/text.js +1 -1
  16. package/cjs/common/utils.js +1 -1
  17. package/cjs/core/camera.js +1 -1
  18. package/cjs/core/constants.js +1 -1
  19. package/cjs/core/core-modules.js +1 -1
  20. package/cjs/core/global-module.js +2 -0
  21. package/cjs/core/global.js +1 -1
  22. package/cjs/core/graphic-utils.js +1 -1
  23. package/cjs/core/index.js +1 -1
  24. package/cjs/core/layer-service.js +2 -1
  25. package/cjs/core/layer.js +1 -1
  26. package/cjs/core/light.js +1 -1
  27. package/cjs/core/stage.d.ts +4 -1
  28. package/cjs/core/stage.js +24 -12
  29. package/cjs/core/stage.js.map +1 -1
  30. package/cjs/core/window.js +1 -1
  31. package/cjs/graphic/graphic-service/graphic-service.d.ts +4 -0
  32. package/cjs/graphic/graphic-service/graphic-service.js +6 -5
  33. package/cjs/graphic/graphic-service/graphic-service.js.map +1 -1
  34. package/cjs/graphic/graphic.d.ts +72 -11
  35. package/cjs/graphic/graphic.js +509 -158
  36. package/cjs/graphic/graphic.js.map +1 -1
  37. package/cjs/graphic/group.d.ts +5 -1
  38. package/cjs/graphic/group.js +37 -18
  39. package/cjs/graphic/group.js.map +1 -1
  40. package/cjs/graphic/rect.d.ts +2 -0
  41. package/cjs/graphic/rect.js +44 -0
  42. package/cjs/graphic/rect.js.map +1 -1
  43. package/cjs/graphic/state/shared-state-refresh.js +4 -3
  44. package/cjs/graphic/state/shared-state-refresh.js.map +1 -1
  45. package/cjs/graphic/state/shared-state-scope.js +1 -1
  46. package/cjs/graphic/state/shared-state-scope.js.map +1 -1
  47. package/cjs/graphic/state/state-engine.js +2 -2
  48. package/cjs/graphic/state/state-engine.js.map +1 -1
  49. package/cjs/graphic/state/state-perf-monitor.d.ts +1 -0
  50. package/cjs/graphic/state/state-perf-monitor.js +9 -2
  51. package/cjs/graphic/state/state-perf-monitor.js.map +1 -1
  52. package/cjs/graphic/state/state-style-resolver.d.ts +0 -9
  53. package/cjs/graphic/state/state-style-resolver.js +0 -23
  54. package/cjs/graphic/state/state-style-resolver.js.map +1 -1
  55. package/cjs/graphic/state/state-transition-orchestrator.d.ts +5 -0
  56. package/cjs/graphic/state/state-transition-orchestrator.js +17 -5
  57. package/cjs/graphic/state/state-transition-orchestrator.js.map +1 -1
  58. package/cjs/interface/animation/animate.d.ts +1 -0
  59. package/cjs/interface/animation/animate.js.map +1 -1
  60. package/cjs/interface/graphic.d.ts +9 -0
  61. package/cjs/interface/graphic.js.map +1 -1
  62. package/cjs/interface/node-tree.js.map +1 -1
  63. package/cjs/plugins/builtin-plugin/dirty-bounds-plugin.d.ts +4 -1
  64. package/cjs/plugins/builtin-plugin/dirty-bounds-plugin.js +20 -10
  65. package/cjs/plugins/builtin-plugin/dirty-bounds-plugin.js.map +1 -1
  66. package/cjs/plugins/builtin-plugin/flex-layout-plugin.js +3 -2
  67. package/cjs/plugins/builtin-plugin/flex-layout-plugin.js.map +1 -1
  68. package/cjs/render/contributions/render/base-render.js +8 -7
  69. package/cjs/render/contributions/render/base-render.js.map +1 -1
  70. package/dist/index.es.js +1134 -279
  71. package/es/canvas/constants.js +2 -1
  72. package/es/color-string/index.js +1 -2
  73. package/es/common/diff.js +1 -2
  74. package/es/common/event-transformer.js +2 -1
  75. package/es/common/rect-utils.js +1 -1
  76. package/es/common/render-area.js +1 -1
  77. package/es/common/render-command-list.js +1 -1
  78. package/es/common/render-curve.js +1 -1
  79. package/es/common/render-utils.js +1 -1
  80. package/es/common/seg-context.js +1 -2
  81. package/es/common/simplify.js +1 -1
  82. package/es/common/sort.js +1 -1
  83. package/es/common/split-path.js +1 -1
  84. package/es/common/store.js +1 -1
  85. package/es/common/text.js +1 -1
  86. package/es/common/utils.js +1 -1
  87. package/es/core/camera.js +1 -1
  88. package/es/core/constants.js +1 -1
  89. package/es/core/core-modules.js +1 -1
  90. package/es/core/global-module.js +2 -0
  91. package/es/core/global.js +1 -1
  92. package/es/core/graphic-utils.js +1 -1
  93. package/es/core/index.js +1 -1
  94. package/es/core/layer-service.js +2 -1
  95. package/es/core/layer.js +1 -1
  96. package/es/core/light.js +1 -1
  97. package/es/core/stage.d.ts +4 -1
  98. package/es/core/stage.js +22 -11
  99. package/es/core/stage.js.map +1 -1
  100. package/es/core/window.js +1 -1
  101. package/es/graphic/graphic-service/graphic-service.d.ts +4 -0
  102. package/es/graphic/graphic-service/graphic-service.js +6 -5
  103. package/es/graphic/graphic-service/graphic-service.js.map +1 -1
  104. package/es/graphic/graphic.d.ts +72 -11
  105. package/es/graphic/graphic.js +504 -151
  106. package/es/graphic/graphic.js.map +1 -1
  107. package/es/graphic/group.d.ts +5 -1
  108. package/es/graphic/group.js +36 -18
  109. package/es/graphic/group.js.map +1 -1
  110. package/es/graphic/rect.d.ts +2 -0
  111. package/es/graphic/rect.js +44 -0
  112. package/es/graphic/rect.js.map +1 -1
  113. package/es/graphic/state/shared-state-refresh.js +5 -4
  114. package/es/graphic/state/shared-state-refresh.js.map +1 -1
  115. package/es/graphic/state/shared-state-scope.js +2 -2
  116. package/es/graphic/state/shared-state-scope.js.map +1 -1
  117. package/es/graphic/state/state-engine.js +3 -3
  118. package/es/graphic/state/state-engine.js.map +1 -1
  119. package/es/graphic/state/state-perf-monitor.d.ts +1 -0
  120. package/es/graphic/state/state-perf-monitor.js +7 -0
  121. package/es/graphic/state/state-perf-monitor.js.map +1 -1
  122. package/es/graphic/state/state-style-resolver.d.ts +0 -9
  123. package/es/graphic/state/state-style-resolver.js +0 -23
  124. package/es/graphic/state/state-style-resolver.js.map +1 -1
  125. package/es/graphic/state/state-transition-orchestrator.d.ts +5 -0
  126. package/es/graphic/state/state-transition-orchestrator.js +17 -5
  127. package/es/graphic/state/state-transition-orchestrator.js.map +1 -1
  128. package/es/interface/animation/animate.d.ts +1 -0
  129. package/es/interface/animation/animate.js.map +1 -1
  130. package/es/interface/graphic.d.ts +9 -0
  131. package/es/interface/graphic.js.map +1 -1
  132. package/es/interface/node-tree.js.map +1 -1
  133. package/es/plugins/builtin-plugin/dirty-bounds-plugin.d.ts +4 -1
  134. package/es/plugins/builtin-plugin/dirty-bounds-plugin.js +20 -10
  135. package/es/plugins/builtin-plugin/dirty-bounds-plugin.js.map +1 -1
  136. package/es/plugins/builtin-plugin/flex-layout-plugin.js +3 -2
  137. package/es/plugins/builtin-plugin/flex-layout-plugin.js.map +1 -1
  138. package/es/render/contributions/render/base-render.js +8 -6
  139. package/es/render/contributions/render/base-render.js.map +1 -1
  140. package/package.json +3 -3
@@ -1,3 +1,4 @@
1
1
  export const CanvasFactory = Symbol.for("CanvasFactory");
2
2
 
3
- export const Context2dFactory = Symbol.for("Context2dFactory");
3
+ export const Context2dFactory = Symbol.for("Context2dFactory");
4
+ //# sourceMappingURL=constants.js.map
@@ -2,5 +2,4 @@ export * from "./interpolate";
2
2
 
3
3
  export * from "./store";
4
4
 
5
- export * from "./colorName";
6
- //# sourceMappingURL=index.js.map
5
+ export * from "./colorName";
package/es/common/diff.js CHANGED
@@ -8,5 +8,4 @@ export function diff(oldAttrs, newAttrs, getAttr) {
8
8
  void 0 !== value && (diffObj[key] = value);
9
9
  }
10
10
  return diffObj;
11
- }
12
- //# sourceMappingURL=diff.js.map
11
+ }
@@ -113,4 +113,5 @@ export function mapToCanvasPointForCanvas(nativeEvent) {
113
113
  x: nativeEvent._canvasX || 0,
114
114
  y: nativeEvent._canvasY || 0
115
115
  };
116
- }
116
+ }
117
+ //# sourceMappingURL=event-transformer.js.map
@@ -17,4 +17,4 @@ export const normalizeRectAttributes = attribute => {
17
17
  height: height
18
18
  };
19
19
  };
20
- //# sourceMappingURL=rect-utils.js.map
20
+ //# sourceMappingURL=rect-utils.js.map
@@ -61,4 +61,4 @@ function drawAreaBlock(path, topList, bottomList, params) {
61
61
  }
62
62
  path.closePath();
63
63
  }
64
- //# sourceMappingURL=render-area.js.map
64
+ //# sourceMappingURL=render-area.js.map
@@ -6,4 +6,4 @@ export function renderCommandList(commandList, context, x = 0, y = 0, sx = 1, sy
6
6
  commandFuncs[command[0]](command, context, x, y, sx, sy, z);
7
7
  }
8
8
  }
9
- //# sourceMappingURL=render-command-list.js.map
9
+ //# sourceMappingURL=render-command-list.js.map
@@ -93,4 +93,4 @@ export function drawIncrementalAreaSegments(path, lastSeg, segments, params) {
93
93
  path.closePath();
94
94
  }));
95
95
  }
96
- //# sourceMappingURL=render-curve.js.map
96
+ //# sourceMappingURL=render-curve.js.map
@@ -11,4 +11,4 @@ export function drawSegItem(ctx, curve, endPercent, params) {
11
11
  ctx.lineTo(offsetX + p.x, offsetY + p.y, offsetZ);
12
12
  }
13
13
  }
14
- //# sourceMappingURL=render-utils.js.map
14
+ //# sourceMappingURL=render-utils.js.map
@@ -90,5 +90,4 @@ export class ReflectSegContext extends SegContext {
90
90
  clear() {
91
91
  return super.clear();
92
92
  }
93
- }
94
- //# sourceMappingURL=seg-context.js.map
93
+ }
@@ -30,4 +30,4 @@ export function flatten_simplify(points, tolerance, highestQuality) {
30
30
  if (points.length <= 10) return points;
31
31
  return points = highestQuality ? points : simplifyRadialDist(points, void 0 !== tolerance ? tolerance * tolerance : 1);
32
32
  }
33
- //# sourceMappingURL=simplify.js.map
33
+ //# sourceMappingURL=simplify.js.map
package/es/common/sort.js CHANGED
@@ -94,4 +94,4 @@ export function findNextGraphic(graphic, id, defaultZIndex, reverse = !1) {
94
94
  !1)), reverse);
95
95
  return result;
96
96
  }
97
- //# sourceMappingURL=sort.js.map
97
+ //# sourceMappingURL=sort.js.map
@@ -248,4 +248,4 @@ export const splitPath = (path, count) => {
248
248
  }
249
249
  return res;
250
250
  };
251
- //# sourceMappingURL=split-path.js.map
251
+ //# sourceMappingURL=split-path.js.map
@@ -1,2 +1,2 @@
1
1
  class StageStore {}
2
- //# sourceMappingURL=store.js.map
2
+ //# sourceMappingURL=store.js.map
package/es/common/text.js CHANGED
@@ -24,4 +24,4 @@ export function textAttributesToStyle(attrs) {
24
24
  attrs.underline ? style["text-decoration"] = "underline" : attrs.lineThrough && (style["text-decoration"] = "line-through"),
25
25
  attrs.fill && isString(attrs.fill) && (style.color = attrs.fill), style;
26
26
  }
27
- //# sourceMappingURL=text.js.map
27
+ //# sourceMappingURL=text.js.map
@@ -148,4 +148,4 @@ export const calculateLineHeight = (lineHeight, fontSize) => {
148
148
  const _lh = _calculateLineHeight(lineHeight, fontSize);
149
149
  return isNaN(_lh) ? _lh : Math.max(fontSize, _lh);
150
150
  };
151
- //# sourceMappingURL=utils.js.map
151
+ //# sourceMappingURL=utils.js.map
package/es/core/camera.js CHANGED
@@ -66,4 +66,4 @@ export class OrthoCamera {
66
66
  export const registerOrthoCamera = () => {
67
67
  Factory.registerPlugin("OrthoCamera", OrthoCamera);
68
68
  };
69
- //# sourceMappingURL=camera.js.map
69
+ //# sourceMappingURL=camera.js.map
@@ -9,4 +9,4 @@ export const StaticLayerHandlerContribution = Symbol.for("StaticLayerHandlerCont
9
9
  export const DynamicLayerHandlerContribution = Symbol.for("DynamicLayerHandlerContribution");
10
10
 
11
11
  export const VirtualLayerHandlerContribution = Symbol.for("VirtualLayerHandlerContribution");
12
- //# sourceMappingURL=constants.js.map
12
+ //# sourceMappingURL=constants.js.map
@@ -21,4 +21,4 @@ export function bindCoreModules({bind: bind}) {
21
21
  }
22
22
 
23
23
  export default bindCoreModules;
24
- //# sourceMappingURL=core-modules.js.map
24
+ //# sourceMappingURL=core-modules.js.map
@@ -1 +1,3 @@
1
+
2
+
1
3
  //# sourceMappingURL=global-module.js.map
package/es/core/global.js CHANGED
@@ -222,4 +222,4 @@ export class DefaultGlobal extends EventListenerManager {
222
222
  return this._env || this.setEnv("browser"), this.envContribution.copyToClipBoard(text);
223
223
  }
224
224
  }
225
- //# sourceMappingURL=global.js.map
225
+ //# sourceMappingURL=global.js.map
@@ -162,4 +162,4 @@ export class DefaultTransformUtil {
162
162
  return this;
163
163
  }
164
164
  }
165
- //# sourceMappingURL=graphic-utils.js.map
165
+ //# sourceMappingURL=graphic-utils.js.map
package/es/core/index.js CHANGED
@@ -15,4 +15,4 @@ export * from "./layer-service";
15
15
  export * from "./constants";
16
16
 
17
17
  export * from "../interface/core";
18
- //# sourceMappingURL=index.js.map
18
+ //# sourceMappingURL=index.js.map
@@ -75,4 +75,5 @@ export class DefaultLayerService {
75
75
  }
76
76
  }
77
77
 
78
- DefaultLayerService.idprefix = "visactor_layer", DefaultLayerService.prefix_count = 0;
78
+ DefaultLayerService.idprefix = "visactor_layer", DefaultLayerService.prefix_count = 0;
79
+ //# sourceMappingURL=layer-service.js.map
package/es/core/layer.js CHANGED
@@ -112,4 +112,4 @@ export class Layer extends Group {
112
112
  }, params)), this.afterDrawCbs.forEach((c => c(this)));
113
113
  }
114
114
  }
115
- //# sourceMappingURL=layer.js.map
115
+ //# sourceMappingURL=layer.js.map
package/es/core/light.js CHANGED
@@ -23,4 +23,4 @@ export class DirectionalLight {
23
23
  export const registerDirectionalLight = () => {
24
24
  Factory.registerPlugin("DirectionalLight", DirectionalLight);
25
25
  };
26
- //# sourceMappingURL=light.js.map
26
+ //# sourceMappingURL=light.js.map
@@ -4,6 +4,7 @@ import type { Layer } from './layer';
4
4
  import { Group } from '../graphic/group';
5
5
  import { type IStageFactoryDeps } from '../factory';
6
6
  import { type SharedStateScope } from '../graphic/state/shared-state-scope';
7
+ import type { StateDefinitionsInput } from '../graphic/state/state-definition';
7
8
  import { StateBatchScheduler } from '../graphic/state/state-batch-scheduler';
8
9
  import { type IDeferredStateOwnerConfig, type IStatePerfConfig, type IStatePerfSnapshot } from '../graphic/state/state-perf-monitor';
9
10
  type IStageState = 'rendering' | 'normal';
@@ -78,7 +79,7 @@ export declare class Stage extends Group implements IStage {
78
79
  protected timeline: ITimeline;
79
80
  rootSharedStateScope?: SharedStateScope<Record<string, any>>;
80
81
  protected _pendingSharedStateRefreshGraphics?: Set<IGraphic>;
81
- protected _stateBatchScheduler: StateBatchScheduler;
82
+ protected _stateBatchScheduler?: StateBatchScheduler;
82
83
  params: Partial<IStageParams>;
83
84
  protected tickedBeforeRender: boolean;
84
85
  readonly rafId: number;
@@ -155,6 +156,8 @@ export declare class Stage extends Group implements IStage {
155
156
  render(layers?: ILayer[], params?: Partial<IDrawContext>): void;
156
157
  protected combineLayersToWindow(): void;
157
158
  renderNextFrame(layers?: ILayer[], force?: boolean): void;
159
+ ensureRootSharedStateScope(themeStateDefinitions?: StateDefinitionsInput<Record<string, any>>): SharedStateScope<Record<string, any>>;
160
+ protected getStateBatchScheduler(): StateBatchScheduler;
158
161
  scheduleStateBatch(graphics: IGraphic[], targetStates: string[]): void;
159
162
  getStatePerfSnapshot(): IStatePerfSnapshot;
160
163
  resetStatePerfSnapshot(): void;
package/es/core/stage.js CHANGED
@@ -122,7 +122,7 @@ export class Stage extends Group {
122
122
  ticker.addTimeline(this.timeline), this._ticker = ticker, this._ticker.on("tick", this.afterTickCb);
123
123
  }
124
124
  constructor(params = {}, deps = {}) {
125
- var _a, _b, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y;
125
+ var _a, _b, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x;
126
126
  super({}), this.tickedBeforeRender = !0, this._onVisibleChange = visible => {
127
127
  if (!(this._skipRender < 0)) if (visible) {
128
128
  if (this.dirtyBounds) {
@@ -132,7 +132,9 @@ export class Stage extends Group {
132
132
  this._skipRender > 1 && this.renderNextFrame(), this._skipRender = 0;
133
133
  } else this._skipRender = 1;
134
134
  }, this.beforeRender = stage => {
135
- flushStageSharedStateRefresh(this), this._beforeRenderList.forEach((cb => cb(stage)));
135
+ const pendingSharedRefresh = this._pendingSharedStateRefreshGraphics;
136
+ (null == pendingSharedRefresh ? void 0 : pendingSharedRefresh.size) && flushStageSharedStateRefresh(this),
137
+ this._beforeRenderList.forEach((cb => cb(stage)));
136
138
  }, this.afterClearScreen = drawParams => {
137
139
  this._afterClearScreen && this._afterClearScreen(drawParams);
138
140
  }, this.afterClearRect = drawParams => {
@@ -168,13 +170,13 @@ export class Stage extends Group {
168
170
  }), this.state = "normal", this.renderCount = 0, this.tryInitEventSystem(), this._background = null !== (_w = params.background) && void 0 !== _w ? _w : DefaultConfig.BACKGROUND,
169
171
  this.stage = this, this.appendChild(this.layerService.createLayer(this, {
170
172
  main: !0
171
- })), this.nextFrameRenderLayerSet = new Set, this.willNextFrameRender = !1, ensureStageStatePerfMonitor(this),
172
- this._stateBatchScheduler = new StateBatchScheduler(this, ensureStageStatePerfMonitor(this)),
173
- this.rootSharedStateScope = createRootSharedStateScope(this, null === (_x = this.theme) || void 0 === _x ? void 0 : _x.stateDefinitions),
174
- this.theme.onStateDefinitionsChange = () => {
173
+ })), this.nextFrameRenderLayerSet = new Set, this.willNextFrameRender = !1, this.theme.onStateDefinitionsChange = () => {
175
174
  var _a;
176
- this.rootSharedStateScope && (setRootSharedStateScopeThemeDefinitions(this.rootSharedStateScope, null === (_a = this.theme) || void 0 === _a ? void 0 : _a.stateDefinitions),
177
- markScopeActiveDescendantsDirty(this.rootSharedStateScope, this));
175
+ const definitions = null === (_a = this.theme) || void 0 === _a ? void 0 : _a.stateDefinitions;
176
+ if (!definitions || !Object.keys(definitions).length) return void (this.rootSharedStateScope && (setRootSharedStateScopeThemeDefinitions(this.rootSharedStateScope, definitions),
177
+ markScopeActiveDescendantsDirty(this.rootSharedStateScope, this)));
178
+ const rootScope = this.ensureRootSharedStateScope(definitions);
179
+ setRootSharedStateScopeThemeDefinitions(rootScope, definitions), markScopeActiveDescendantsDirty(rootScope, this);
178
180
  }, this.renderStyle = params.renderStyle, params.autoRender && this.enableAutoRender(),
179
181
  params.autoRefresh && this.enableAutoRefresh(), !1 === params.disableDirtyBounds && this.enableDirtyBounds(),
180
182
  params.enableHtmlAttribute && this.enableHtmlAttribute(params.enableHtmlAttribute),
@@ -187,7 +189,7 @@ export class Stage extends Group {
187
189
  tickRenderMode: "effect"
188
190
  }), this.optmize(params.optimize), params.background && isString(this._background) && this._background.includes("/") && this.setAttributes({
189
191
  background: this._background
190
- }), this.initAnimate(params), this.rafId = null !== (_y = params.rafId) && void 0 !== _y ? _y : Math.floor(6 * Math.random());
192
+ }), this.initAnimate(params), this.rafId = null !== (_x = params.rafId) && void 0 !== _x ? _x : Math.floor(6 * Math.random());
191
193
  }
192
194
  initAnimate(params) {
193
195
  var _a;
@@ -432,8 +434,17 @@ export class Stage extends Group {
432
434
  this._doRenderInThisFrame(), this.willNextFrameRender = !1;
433
435
  })));
434
436
  }
437
+ ensureRootSharedStateScope(themeStateDefinitions) {
438
+ return this.rootSharedStateScope ? (this.rootSharedStateScope.ownerStage = this,
439
+ this.rootSharedStateScope) : (this.rootSharedStateScope = createRootSharedStateScope(this, themeStateDefinitions),
440
+ this.rootSharedStateScope);
441
+ }
442
+ getStateBatchScheduler() {
443
+ return this._stateBatchScheduler || (this._stateBatchScheduler = new StateBatchScheduler(this, ensureStageStatePerfMonitor(this))),
444
+ this._stateBatchScheduler;
445
+ }
435
446
  scheduleStateBatch(graphics, targetStates) {
436
- this._stateBatchScheduler.schedule(graphics, targetStates);
447
+ this.getStateBatchScheduler().schedule(graphics, targetStates);
437
448
  }
438
449
  getStatePerfSnapshot() {
439
450
  return ensureStageStatePerfMonitor(this).getSnapshot();
@@ -605,4 +616,4 @@ export class Stage extends Group {
605
616
  this.renderService.reInit(), this.pickerService.reInit();
606
617
  }
607
618
  }
608
- //# sourceMappingURL=stage.js.map
619
+ //# sourceMappingURL=stage.js.map