@visactor/vrender 1.1.0-alpha.6 → 1.1.0-alpha.8

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/cjs/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { Direction } from '@visactor/vrender-core';
2
- export declare const version = "1.1.0-alpha.6";
2
+ export declare const version = "1.1.0-alpha.8";
3
3
  export * from '@visactor/vrender-core';
4
4
  export * from '@visactor/vrender-kits';
5
5
  export * from '@visactor/vrender-animate';
package/cjs/index.js CHANGED
@@ -26,7 +26,7 @@ Object.defineProperty(exports, "Direction", {
26
26
  get: function() {
27
27
  return vrender_core_1.Direction;
28
28
  }
29
- }), exports.version = "1.1.0-alpha.6", __exportStar(require("@visactor/vrender-core"), exports),
29
+ }), exports.version = "1.1.0-alpha.8", __exportStar(require("@visactor/vrender-core"), exports),
30
30
  __exportStar(require("@visactor/vrender-kits"), exports), __exportStar(require("@visactor/vrender-animate"), exports),
31
31
  __exportStar(require("@visactor/vrender-components"), exports), __exportStar(require("./entries"), exports);
32
32
 
package/cjs/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,yDAAmD;AAa1C,0FAbA,wBAAS,OAaA;AAXL,QAAA,OAAO,GAAG,eAAe,CAAC;AAEvC,yDAAuC;AACvC,yDAAuC;AACvC,4DAA0C;AAC1C,+DAA6C;AAC7C,4CAA0B;AAC1B,mCAAuC;AAA9B,qGAAA,WAAW,OAAA;AAGpB,6DAAkD;AAAzC,wGAAA,KAAK,OAAA","file":"index.js","sourcesContent":["import { Direction } from '@visactor/vrender-core';\n// 导出版本号\nexport const version = \"1.1.0-alpha.6\";\n\nexport * from '@visactor/vrender-core';\nexport * from '@visactor/vrender-kits';\nexport * from '@visactor/vrender-animate';\nexport * from '@visactor/vrender-components';\nexport * from './entries';\nexport { createStage } from './legacy';\n\n// avoid naming conflicts with 'State' & 'Direction' in '@visactor/vrender-components'\nexport { State } from '@visactor/vrender-animate';\nexport { Direction };\n"]}
1
+ {"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,yDAAmD;AAa1C,0FAbA,wBAAS,OAaA;AAXL,QAAA,OAAO,GAAG,eAAe,CAAC;AAEvC,yDAAuC;AACvC,yDAAuC;AACvC,4DAA0C;AAC1C,+DAA6C;AAC7C,4CAA0B;AAC1B,mCAAuC;AAA9B,qGAAA,WAAW,OAAA;AAGpB,6DAAkD;AAAzC,wGAAA,KAAK,OAAA","file":"index.js","sourcesContent":["import { Direction } from '@visactor/vrender-core';\n// 导出版本号\nexport const version = \"1.1.0-alpha.8\";\n\nexport * from '@visactor/vrender-core';\nexport * from '@visactor/vrender-kits';\nexport * from '@visactor/vrender-animate';\nexport * from '@visactor/vrender-components';\nexport * from './entries';\nexport { createStage } from './legacy';\n\n// avoid naming conflicts with 'State' & 'Direction' in '@visactor/vrender-components'\nexport { State } from '@visactor/vrender-animate';\nexport { Direction };\n"]}
package/dist/index.es.js CHANGED
@@ -8645,11 +8645,23 @@ class StateTransitionOrchestrator {
8645
8645
  if (!hasAnimation) return plan;
8646
8646
  const noWorkAnimateAttr = Object.assign(Object.assign({}, null !== (_a = options.noWorkAnimateAttr) && void 0 !== _a ? _a : {}), normalizeNoAnimateAttrConfig(null === (_b = options.animateConfig) || void 0 === _b ? void 0 : _b.noAnimateAttrs)),
8647
8647
  isClear = !0 === options.isClear,
8648
- getDefaultAttribute = options.getDefaultAttribute;
8648
+ getDefaultAttribute = options.getDefaultAttribute,
8649
+ shouldSkipDefaultAttribute = options.shouldSkipDefaultAttribute,
8650
+ assignTransitionAttr = (key, value) => {
8651
+ if (noWorkAnimateAttr[key]) return plan.jumpAttrs[key] = value, void (plan.noAnimateAttrs[key] = value);
8652
+ if (isClear && void 0 === value) {
8653
+ if (null == shouldSkipDefaultAttribute ? void 0 : shouldSkipDefaultAttribute(key, targetAttrs)) return;
8654
+ plan.animateAttrs[key] = getDefaultAttribute ? getDefaultAttribute(key) : value;
8655
+ } else plan.animateAttrs[key] = value;
8656
+ };
8649
8657
  for (const key in targetAttrs) {
8650
8658
  if (!Object.prototype.hasOwnProperty.call(targetAttrs, key)) continue;
8651
- const value = targetAttrs[key];
8652
- noWorkAnimateAttr[key] ? (plan.jumpAttrs[key] = value, plan.noAnimateAttrs[key] = value) : plan.animateAttrs[key] = isClear && void 0 === value && getDefaultAttribute ? getDefaultAttribute(key) : value;
8659
+ assignTransitionAttr(key, targetAttrs[key]);
8660
+ }
8661
+ const extraAnimateAttrs = options.extraAnimateAttrs;
8662
+ if (extraAnimateAttrs) for (const key in extraAnimateAttrs) {
8663
+ const hasTargetAttr = Object.prototype.hasOwnProperty.call(targetAttrs, key);
8664
+ !Object.prototype.hasOwnProperty.call(extraAnimateAttrs, key) || hasTargetAttr && void 0 !== targetAttrs[key] || assignTransitionAttr(key, extraAnimateAttrs[key]);
8653
8665
  }
8654
8666
  return plan;
8655
8667
  }
@@ -8676,12 +8688,14 @@ class StateTransitionOrchestrator {
8676
8688
  }), plan;
8677
8689
  }
8678
8690
  applyClearTransition(graphic, targetAttrs, hasAnimation, stateNames, options = {}) {
8679
- var _a, _b;
8691
+ var _a, _b, _c, _d;
8680
8692
  const plan = this.analyzeTransition({}, targetAttrs, stateNames, hasAnimation, {
8681
8693
  noWorkAnimateAttr: null === (_a = graphic.getNoWorkAnimateAttr) || void 0 === _a ? void 0 : _a.call(graphic),
8682
8694
  isClear: !0,
8683
8695
  getDefaultAttribute: null === (_b = graphic.getDefaultAttribute) || void 0 === _b ? void 0 : _b.bind(graphic),
8684
- animateConfig: options.animateConfig
8696
+ shouldSkipDefaultAttribute: null !== (_c = options.shouldSkipDefaultAttribute) && void 0 !== _c ? _c : null === (_d = graphic.shouldSkipStateTransitionDefaultAttribute) || void 0 === _d ? void 0 : _d.bind(graphic),
8697
+ animateConfig: options.animateConfig,
8698
+ extraAnimateAttrs: options.extraAnimateAttrs
8685
8699
  });
8686
8700
  return this.applyTransition(graphic, plan, hasAnimation, options);
8687
8701
  }
@@ -9029,13 +9043,22 @@ class Graphic extends Node {
9029
9043
  "deep" === this.stateMergeMode && isPlainObjectValue(previousValue) && isPlainObjectValue(nextValue) ? snapshot[key] = deepMergeAttributeValue(previousValue, nextValue) : snapshot[key] = cloneAttributeValue(nextValue);
9030
9044
  }), snapshot) : snapshot;
9031
9045
  }
9032
- buildStateAnimationTargetAttrs(resolvedStateAttrs, previousResolvedStatePatch) {
9033
- const targetAttrs = cloneAttributeValue(resolvedStateAttrs);
9034
- if (!previousResolvedStatePatch) return targetAttrs;
9035
- const snapshot = this.buildStaticAttributeSnapshot();
9046
+ buildRemovedStateAnimationAttrs(targetStateAttrs, previousResolvedStatePatch) {
9047
+ const extraAttrs = {};
9048
+ if (!previousResolvedStatePatch) return extraAttrs;
9049
+ const snapshot = this.buildStaticAttributeSnapshot(),
9050
+ staticTargetAttrs = snapshot;
9036
9051
  return Object.keys(previousResolvedStatePatch).forEach(key => {
9037
- Object.prototype.hasOwnProperty.call(targetAttrs, key) || (targetAttrs[key] = Object.prototype.hasOwnProperty.call(snapshot, key) ? cloneAttributeValue(snapshot[key]) : this.getDefaultAttribute(key));
9038
- }), targetAttrs;
9052
+ const hasTargetAttr = Object.prototype.hasOwnProperty.call(targetStateAttrs, key);
9053
+ if (hasTargetAttr && void 0 !== targetStateAttrs[key]) return;
9054
+ const assignFallbackAttr = value => {
9055
+ void 0 === value && this.shouldSkipStateTransitionDefaultAttribute(key, staticTargetAttrs) || (extraAttrs[key] = void 0 === value ? value : cloneAttributeValue(value));
9056
+ };
9057
+ if (hasTargetAttr) assignFallbackAttr(this.getStateTransitionDefaultAttribute(key, staticTargetAttrs));else if (Object.prototype.hasOwnProperty.call(snapshot, key)) {
9058
+ const snapshotValue = snapshot[key];
9059
+ assignFallbackAttr(void 0 === snapshotValue ? this.getStateTransitionDefaultAttribute(key, staticTargetAttrs) : snapshotValue);
9060
+ } else assignFallbackAttr(this.getStateTransitionDefaultAttribute(key, staticTargetAttrs));
9061
+ }), extraAttrs;
9039
9062
  }
9040
9063
  syncObjectToSnapshot(target, snapshot) {
9041
9064
  const delta = new Map();
@@ -9458,21 +9481,31 @@ class Graphic extends Node {
9458
9481
  var _a, _b, _c;
9459
9482
  return null !== (_c = null !== (_a = null != animateConfig ? animateConfig : this.stateAnimateConfig) && void 0 !== _a ? _a : null === (_b = this.context) || void 0 === _b ? void 0 : _b.stateAnimateConfig) && void 0 !== _c ? _c : DefaultStateAnimateConfig;
9460
9483
  }
9461
- applyStateAttrs(attrs, stateNames, hasAnimation, isClear, animateConfig) {
9484
+ applyStateAttrs(attrs, stateNames, hasAnimation, isClear, animateConfig, extraAnimateAttrs) {
9462
9485
  const resolvedAnimateConfig = hasAnimation ? this.resolveStateAnimateConfig(animateConfig) : void 0,
9463
9486
  transitionOptions = resolvedAnimateConfig ? {
9464
- animateConfig: resolvedAnimateConfig
9487
+ animateConfig: resolvedAnimateConfig,
9488
+ extraAnimateAttrs: extraAnimateAttrs,
9489
+ shouldSkipDefaultAttribute: this.shouldSkipStateTransitionDefaultAttribute.bind(this)
9465
9490
  } : void 0;
9466
9491
  if (isClear) return void this.getStateTransitionOrchestrator().applyClearTransition(this, attrs, hasAnimation, stateNames, transitionOptions);
9467
9492
  const plan = this.getStateTransitionOrchestrator().analyzeTransition({}, attrs, stateNames, hasAnimation, {
9468
9493
  noWorkAnimateAttr: this.getNoWorkAnimateAttr(),
9469
- animateConfig: resolvedAnimateConfig
9494
+ animateConfig: resolvedAnimateConfig,
9495
+ extraAnimateAttrs: extraAnimateAttrs,
9496
+ shouldSkipDefaultAttribute: this.shouldSkipStateTransitionDefaultAttribute.bind(this)
9470
9497
  });
9471
9498
  this.getStateTransitionOrchestrator().applyTransition(this, plan, hasAnimation, transitionOptions);
9472
9499
  }
9473
9500
  updateNormalAttrs(stateAttrs) {
9474
9501
  this._deprecatedNormalAttrsView = cloneAttributeValue(this.baseAttributes);
9475
9502
  }
9503
+ getStateTransitionDefaultAttribute(key, targetAttrs) {
9504
+ return this.getDefaultAttribute(key);
9505
+ }
9506
+ shouldSkipStateTransitionDefaultAttribute(_key, _targetAttrs) {
9507
+ return !1;
9508
+ }
9476
9509
  stopStateAnimates(type = "end") {
9477
9510
  const stopAnimationState = this.stopAnimationState;
9478
9511
  if ("function" == typeof stopAnimationState) return void stopAnimationState.call(this, "state", type);
@@ -9489,13 +9522,14 @@ class Graphic extends Node {
9489
9522
  clearStates(hasAnimation) {
9490
9523
  var _a, _b, _c;
9491
9524
  const previousStates = this.currentStates ? this.currentStates.slice() : [],
9525
+ previousResolvedStatePatch = this.resolvedStatePatch ? cloneAttributeValue(this.resolvedStatePatch) : void 0,
9492
9526
  transition = this.createStateModel().clearStates();
9493
9527
  if (!transition.changed && 0 === previousStates.length) return this.currentStates = [], this.effectiveStates = [], this.resolvedStatePatch = void 0, this.sharedStateDirty = !1, void this.clearSharedStateActiveRegistrations();
9494
9528
  const resolvedStateAttrs = cloneAttributeValue(null !== (_a = this.baseAttributes) && void 0 !== _a ? _a : {});
9495
9529
  transition.changed && !this.beforeStateUpdate(resolvedStateAttrs, previousStates, transition.states, hasAnimation, !0) || (this.currentStates = transition.states, this.effectiveStates = [], this.resolvedStatePatch = void 0, this.sharedStateDirty = !1, this.clearSharedStateActiveRegistrations(), null === (_b = getStageStatePerfMonitor(this.stage)) || void 0 === _b || _b.incrementCounter("stateCommits"), null === (_c = getStageStatePerfMonitor(this.stage)) || void 0 === _c || _c.recordEvent("state-commit", {
9496
9530
  graphicId: this._uid,
9497
9531
  targetStates: []
9498
- }), hasAnimation ? (this._syncFinalAttributeFromStaticTruth(), this.applyStateAttrs(resolvedStateAttrs, transition.states, hasAnimation, !0)) : (this.stopStateAnimates(), this._restoreAttributeFromStaticTruth({
9532
+ }), hasAnimation ? (this._syncFinalAttributeFromStaticTruth(), this.applyStateAttrs(resolvedStateAttrs, transition.states, hasAnimation, !0, void 0, this.buildRemovedStateAnimationAttrs(resolvedStateAttrs, previousResolvedStatePatch))) : (this.stopStateAnimates(), this._restoreAttributeFromStaticTruth({
9499
9533
  type: AttributeUpdateType.STATE
9500
9534
  }), this._emitCustomEvent("afterStateUpdate", {
9501
9535
  type: AttributeUpdateType.STATE
@@ -9528,7 +9562,7 @@ class Graphic extends Node {
9528
9562
  this.beforeStateUpdate(resolvedStateAttrs, previousStates, transition.states, hasAnimation, !1) && (this.currentStates = transition.states, this.effectiveStates = [...effectiveStates], this.resolvedStatePatch = Object.assign({}, resolvedStateAttrs), this.sharedStateDirty = !1, this.syncSharedStateActiveRegistrations(), null === (_d = getStageStatePerfMonitor(this.stage)) || void 0 === _d || _d.incrementCounter("stateCommits"), null === (_e = getStageStatePerfMonitor(this.stage)) || void 0 === _e || _e.recordEvent("state-commit", {
9529
9563
  graphicId: this._uid,
9530
9564
  targetStates: [...transition.states]
9531
- }), hasAnimation ? (this._syncFinalAttributeFromStaticTruth(), this.applyStateAttrs(this.buildStateAnimationTargetAttrs(resolvedStateAttrs, previousResolvedStatePatch), transition.states, hasAnimation)) : (this.stopStateAnimates(), this._restoreAttributeFromStaticTruth({
9565
+ }), hasAnimation ? (this._syncFinalAttributeFromStaticTruth(), this.applyStateAttrs(resolvedStateAttrs, transition.states, hasAnimation, !1, void 0, this.buildRemovedStateAnimationAttrs(resolvedStateAttrs, previousResolvedStatePatch))) : (this.stopStateAnimates(), this._restoreAttributeFromStaticTruth({
9532
9566
  type: AttributeUpdateType.STATE
9533
9567
  }), this._emitCustomEvent("afterStateUpdate", {
9534
9568
  type: AttributeUpdateType.STATE
@@ -10960,6 +10994,52 @@ class Rect extends Graphic {
10960
10994
  needUpdateTag(key) {
10961
10995
  return super.needUpdateTag(key, RECT_UPDATE_TAG_KEY);
10962
10996
  }
10997
+ shouldSkipStateTransitionDefaultAttribute(key, targetAttrs) {
10998
+ var _a;
10999
+ const attrs = null !== (_a = null != targetAttrs ? targetAttrs : this.baseAttributes) && void 0 !== _a ? _a : this.attribute,
11000
+ hasValue = attrKey => null != attrs[attrKey],
11001
+ isNilValue = attrKey => null == attrs[attrKey];
11002
+ switch (key) {
11003
+ case "width":
11004
+ return isNilValue("width") && hasValue("x") && hasValue("x1");
11005
+ case "height":
11006
+ return isNilValue("height") && hasValue("y") && hasValue("y1");
11007
+ case "x1":
11008
+ return isNilValue("x1") && hasValue("x") && hasValue("width");
11009
+ case "y1":
11010
+ return isNilValue("y1") && hasValue("y") && hasValue("height");
11011
+ default:
11012
+ return !1;
11013
+ }
11014
+ }
11015
+ getStateTransitionDefaultAttribute(key, targetAttrs) {
11016
+ var _a;
11017
+ const attrs = null !== (_a = null != targetAttrs ? targetAttrs : this.baseAttributes) && void 0 !== _a ? _a : this.attribute,
11018
+ getNumber = attrKey => {
11019
+ const value = attrs[attrKey];
11020
+ return "number" == typeof value && Number.isFinite(value) ? value : void 0;
11021
+ },
11022
+ x = getNumber("x"),
11023
+ y = getNumber("y"),
11024
+ x1 = getNumber("x1"),
11025
+ y1 = getNumber("y1"),
11026
+ width = getNumber("width"),
11027
+ height = getNumber("height");
11028
+ switch (key) {
11029
+ case "width":
11030
+ if (null == width && null != x && null != x1) return x1 - x;
11031
+ break;
11032
+ case "height":
11033
+ if (null == height && null != y && null != y1) return y1 - y;
11034
+ break;
11035
+ case "x1":
11036
+ if (null == x1 && null != x && null != width) return x + width;
11037
+ break;
11038
+ case "y1":
11039
+ if (null == y1 && null != y && null != height) return y + height;
11040
+ }
11041
+ return super.getStateTransitionDefaultAttribute(key, targetAttrs);
11042
+ }
10963
11043
  toCustomPath() {
10964
11044
  let path = super.toCustomPath();
10965
11045
  if (path) return path;
@@ -32835,7 +32915,7 @@ class Animate {
32835
32915
  if (nextTime >= this._startTime + this._totalDuration) {
32836
32916
  null === (_a = this._lastStep) || void 0 === _a || _a.onUpdate(!0, 1, {}), null === (_b = this._lastStep) || void 0 === _b || _b.onEnd(), this.onEnd(), this.status = AnimateStatus.END;
32837
32917
  const trackerTarget = this.target;
32838
- return void ("function" == typeof (null == trackerTarget ? void 0 : trackerTarget.restoreStaticAttribute) && trackerTarget.restoreStaticAttribute());
32918
+ return "function" == typeof (null == trackerTarget ? void 0 : trackerTarget.restoreStaticAttribute) && trackerTarget.restoreStaticAttribute(), void (this.__skipRestoreStaticAttributeOnRemove = !0);
32839
32919
  }
32840
32920
  this.status = AnimateStatus.RUNNING, this.currentTime <= this._startTime && this.onStart(), this.currentTime = nextTime;
32841
32921
  let cycleTime = nextTime - this._startTime,
@@ -40778,6 +40858,20 @@ class AnimateComponent extends AbstractComponent {
40778
40858
  }
40779
40859
  }
40780
40860
 
40861
+ function commitUpdateAnimationTarget(graphic, targetAttrs, startAttrs) {
40862
+ var _a, _b, _c, _d;
40863
+ if (!graphic || !targetAttrs) return;
40864
+ const committedTargetAttrs = cloneDeep(targetAttrs),
40865
+ transientStartAttrs = cloneDeep(null != startAttrs ? startAttrs : graphic.attribute);
40866
+ graphic.setAttributes(committedTargetAttrs);
40867
+ const baseAttributes = graphic.baseAttributes;
40868
+ baseAttributes && "object" == typeof baseAttributes && Object.keys(committedTargetAttrs).forEach(key => {
40869
+ baseAttributes[key] = cloneDeep(committedTargetAttrs[key]);
40870
+ }), null === (_b = (_a = graphic).setFinalAttributes) || void 0 === _b || _b.call(_a, committedTargetAttrs), null === (_d = (_c = graphic).setAttributesAndPreventAnimate) || void 0 === _d || _d.call(_c, transientStartAttrs, !1, {
40871
+ type: AttributeUpdateType.ANIMATE_BIND
40872
+ });
40873
+ }
40874
+
40781
40875
  const DefaultAxisAnimation = {
40782
40876
  type: "default",
40783
40877
  duration: 300,
@@ -41103,33 +41197,29 @@ class AxisBase extends AnimateComponent {
41103
41197
  var _a;
41104
41198
  if ("group" !== el.type && el.id) {
41105
41199
  const oldEl = prevInnerView[el.id];
41106
- if (el.setFinalAttributes(el.attribute), oldEl) {
41200
+ if (oldEl) {
41107
41201
  oldEl.release();
41108
- const oldAttrs = oldEl.attribute,
41109
- finalAttrs = el.getFinalAttribute(),
41202
+ const oldAttrs = cloneDeep(oldEl.attribute),
41203
+ finalAttrs = cloneDeep(el.attribute),
41110
41204
  diffAttrs = diff(oldAttrs, finalAttrs);
41111
41205
  let hasDiff = Object.keys(diffAttrs).length > 0;
41112
- if ("opacity" in oldAttrs && finalAttrs.opacity !== oldAttrs.opacity && (diffAttrs.opacity = null !== (_a = finalAttrs.opacity) && void 0 !== _a ? _a : 1, hasDiff = !0), animationConfig.update && hasDiff) {
41113
- this._newElementAttrMap[el.id] = {
41114
- state: "update",
41115
- node: el,
41116
- attrs: el.attribute
41117
- };
41118
- const oldAttrs = oldEl.attribute;
41119
- el.setAttributes(oldAttrs), el.applyAnimationState(["update"], [{
41120
- name: "update",
41121
- animation: Object.assign(Object.assign({
41122
- selfOnly: !0
41123
- }, animationConfig.update), {
41124
- type: "axisUpdate",
41125
- customParameters: {
41126
- config: animationConfig.update,
41127
- diffAttrs: diffAttrs,
41128
- lastScale: lastScale
41129
- }
41130
- })
41131
- }]);
41132
- }
41206
+ "opacity" in oldAttrs && finalAttrs.opacity !== oldAttrs.opacity && (diffAttrs.opacity = null !== (_a = finalAttrs.opacity) && void 0 !== _a ? _a : 1, hasDiff = !0), animationConfig.update && hasDiff && (this._newElementAttrMap[el.id] = {
41207
+ state: "update",
41208
+ node: el,
41209
+ attrs: finalAttrs
41210
+ }, commitUpdateAnimationTarget(el, finalAttrs, oldAttrs), el.applyAnimationState(["update"], [{
41211
+ name: "update",
41212
+ animation: Object.assign(Object.assign({
41213
+ selfOnly: !0
41214
+ }, animationConfig.update), {
41215
+ type: "axisUpdate",
41216
+ customParameters: {
41217
+ config: animationConfig.update,
41218
+ diffAttrs: diffAttrs,
41219
+ lastScale: lastScale
41220
+ }
41221
+ })
41222
+ }]));
41133
41223
  } else animationConfig.enter && (this._newElementAttrMap[el.id] = {
41134
41224
  state: "enter",
41135
41225
  node: el,
@@ -41473,7 +41563,10 @@ class AxisEnter extends AComponentAnimate {
41473
41563
  const point = getTickCoord(lastScale.scale(currData.rawValue)),
41474
41564
  newX = this.target.attribute.x,
41475
41565
  newY = this.target.attribute.y;
41476
- this.target.setAttributes({
41566
+ commitUpdateAnimationTarget(this.target, {
41567
+ x: newX,
41568
+ y: newY
41569
+ }, {
41477
41570
  x: point.x,
41478
41571
  y: point.y
41479
41572
  }), animator.animate(this.target, {
@@ -41501,10 +41594,9 @@ class AxisUpdate extends AComponentAnimate {
41501
41594
  const duration = this.duration,
41502
41595
  easing = this.easing,
41503
41596
  {
41504
- config: config,
41505
41597
  diffAttrs: diffAttrs
41506
41598
  } = this.params;
41507
- animator.animate(this.target, {
41599
+ commitUpdateAnimationTarget(this.target, Object.assign({}, diffAttrs)), animator.animate(this.target, {
41508
41600
  type: "to",
41509
41601
  to: Object.assign({}, diffAttrs),
41510
41602
  duration: duration,
@@ -42389,6 +42481,7 @@ class GroupTransition extends ACustomAnimate {
42389
42481
  super(...arguments), this.mode = AnimateMode.NORMAL;
42390
42482
  }
42391
42483
  onBind() {
42484
+ this._started = !1;
42392
42485
  const currentInnerView = this.target.getInnerView(),
42393
42486
  prevInnerView = this.target.getPrevInnerView();
42394
42487
  prevInnerView && (this._newElementAttrMap = {}, traverseGroup(currentInnerView, el => {
@@ -42406,7 +42499,7 @@ class GroupTransition extends ACustomAnimate {
42406
42499
  fillOpacity: null !== (_b = newProps.fillOpacity) && void 0 !== _b ? _b : 1,
42407
42500
  strokeOpacity: null !== (_c = newProps.strokeOpacity) && void 0 !== _c ? _c : 1
42408
42501
  })
42409
- }, el.setAttributes(oldEl.attribute);
42502
+ }, commitUpdateAnimationTarget(el, this._newElementAttrMap[el.id].attrs, cloneDeep(oldEl.attribute));
42410
42503
  }
42411
42504
  } else {
42412
42505
  const finalOpacityAttrs = {
@@ -42418,7 +42511,7 @@ class GroupTransition extends ACustomAnimate {
42418
42511
  state: "enter",
42419
42512
  node: el,
42420
42513
  attrs: finalOpacityAttrs
42421
- }, el.setAttributes({
42514
+ }, commitUpdateAnimationTarget(el, finalOpacityAttrs, {
42422
42515
  opacity: 0,
42423
42516
  fillOpacity: 0,
42424
42517
  strokeOpacity: 0
@@ -42428,6 +42521,8 @@ class GroupTransition extends ACustomAnimate {
42428
42521
  }));
42429
42522
  }
42430
42523
  onStart() {
42524
+ if (this._started) return;
42525
+ this._started = !0;
42431
42526
  let duration = this.duration,
42432
42527
  easing = this.easing;
42433
42528
  this._newElementAttrMap && Object.keys(this._newElementAttrMap).forEach(id => {
@@ -44524,7 +44619,7 @@ class LabelBase extends AnimateComponent {
44524
44619
  text: curText,
44525
44620
  labelLine: curLabelLine
44526
44621
  } = currentLabel;
44527
- prevText.applyAnimationState(["update"], [{
44622
+ commitUpdateAnimationTarget(prevText, null == curText ? void 0 : curText.attribute), commitUpdateAnimationTarget(prevLabelLine, null == curLabelLine ? void 0 : curLabelLine.attribute), prevText.applyAnimationState(["update"], [{
44528
44623
  name: "update",
44529
44624
  animation: {
44530
44625
  type: "labelUpdate",
@@ -44550,7 +44645,6 @@ class LabelBase extends AnimateComponent {
44550
44645
  }
44551
44646
  _updateLabel(prevLabel, currentLabel) {
44552
44647
  const {
44553
- text: prevText,
44554
44648
  labelLine: prevLabelLine
44555
44649
  } = prevLabel,
44556
44650
  {
@@ -47119,7 +47213,10 @@ function graphicFadeIn(graphic, delay, duration, easing) {
47119
47213
  null === (_a = null == graphic ? void 0 : graphic.animates) || void 0 === _a || _a.forEach(a => a.stop("end"));
47120
47214
  const fillOpacityConfig = null !== (_c = null === (_b = graphic.attribute) || void 0 === _b ? void 0 : _b.fillOpacity) && void 0 !== _c ? _c : 1,
47121
47215
  strokeOpacityConfig = null !== (_e = null === (_d = graphic.attribute) || void 0 === _d ? void 0 : _d.strokeOpacity) && void 0 !== _e ? _e : 1;
47122
- graphic.setAttributes({
47216
+ commitUpdateAnimationTarget(graphic, {
47217
+ fillOpacity: fillOpacityConfig,
47218
+ strokeOpacity: strokeOpacityConfig
47219
+ }, {
47123
47220
  fillOpacity: 0,
47124
47221
  strokeOpacity: 0
47125
47222
  }), graphic.animate().wait(delay).to({
@@ -47135,7 +47232,10 @@ function tagFadeIn(tag, delay, duration, easing) {
47135
47232
  }
47136
47233
  function graphicFadeOut(graphic, delay, duration, easing) {
47137
47234
  var _a, _b, _c, _d;
47138
- graphic && (graphic.setAttributes({
47235
+ graphic && (commitUpdateAnimationTarget(graphic, {
47236
+ fillOpacity: 0,
47237
+ strokeOpacity: 0
47238
+ }, {
47139
47239
  fillOpacity: null !== (_b = null === (_a = graphic.attribute) || void 0 === _a ? void 0 : _a.fillOpacity) && void 0 !== _b ? _b : 1,
47140
47240
  strokeOpacity: null !== (_d = null === (_c = graphic.attribute) || void 0 === _c ? void 0 : _c.strokeOpacity) && void 0 !== _d ? _d : 1
47141
47241
  }), graphic.animate().wait(delay).to({
@@ -47155,7 +47255,11 @@ function commonLineClipIn(line, label, duration, delay, easing) {
47155
47255
  lineDuration = .7 * duration,
47156
47256
  endSymbolDuration = .1 * duration,
47157
47257
  labelDuration = .1 * duration;
47158
- graphicFadeIn(line.startSymbol, delay, startSymbolDuration, easing), line.lines.forEach(line => line.setAttribute("clipRange", 0)), line.lines.forEach((l, index) => {
47258
+ graphicFadeIn(line.startSymbol, delay, startSymbolDuration, easing), line.lines.forEach(line => commitUpdateAnimationTarget(line, {
47259
+ clipRange: 1
47260
+ }, {
47261
+ clipRange: 0
47262
+ })), line.lines.forEach((l, index) => {
47159
47263
  const stepDuration = lineDuration / line.lines.length;
47160
47264
  l.animate().wait(delay + startSymbolDuration + index * stepDuration).to({
47161
47265
  clipRange: 1
@@ -47213,7 +47317,11 @@ function pointCallIn(itemLine, decorativeLine, item, duration, delay, easing) {
47213
47317
  decorativeDuration = .05 * duration,
47214
47318
  endSymbolDuration = .1 * duration,
47215
47319
  labelDuration = .1 * duration;
47216
- graphicFadeIn(itemLine.startSymbol, delay, startSymbolDuration, easing), itemLine.lines.forEach(line => line.setAttribute("clipRange", 0)), itemLine.lines.forEach((l, index) => {
47320
+ graphicFadeIn(itemLine.startSymbol, delay, startSymbolDuration, easing), itemLine.lines.forEach(line => commitUpdateAnimationTarget(line, {
47321
+ clipRange: 1
47322
+ }, {
47323
+ clipRange: 0
47324
+ })), itemLine.lines.forEach((l, index) => {
47217
47325
  const stepDuration = lineDuration / itemLine.lines.length;
47218
47326
  l.animate().wait(delay + startSymbolDuration + index * stepDuration).to({
47219
47327
  clipRange: 1
@@ -49497,12 +49605,18 @@ class DiscreteLegend extends LegendBase {
49497
49605
  let containerSize;
49498
49606
  containerSize = this._itemContext.isHorizontal ? this._itemsContainer.AABBBounds.width() : this._itemsContainer.AABBBounds.height();
49499
49607
  const startOffset = containerSize * start;
49500
- this.updateScrollMask(), animation ? this._itemsContainer.animate().to({
49501
- [channel]: -startOffset
49502
- }, animationDuration, animationEasing) : this._itemsContainer.setAttribute(channel, -startOffset);
49503
- } else animation ? this._itemsContainer.animate().to({
49504
- [channel]: -(newPage - 1) * pageSize
49505
- }, animationDuration, animationEasing) : this._itemsContainer.setAttribute(channel, -(newPage - 1) * pageSize);
49608
+ if (this.updateScrollMask(), animation) {
49609
+ const attrs = {
49610
+ [channel]: -startOffset
49611
+ };
49612
+ commitUpdateAnimationTarget(this._itemsContainer, attrs), this._itemsContainer.animate().to(attrs, animationDuration, animationEasing);
49613
+ } else this._itemsContainer.setAttribute(channel, -startOffset);
49614
+ } else if (animation) {
49615
+ const attrs = {
49616
+ [channel]: -(newPage - 1) * pageSize
49617
+ };
49618
+ commitUpdateAnimationTarget(this._itemsContainer, attrs), this._itemsContainer.animate().to(attrs, animationDuration, animationEasing);
49619
+ } else this._itemsContainer.setAttribute(channel, -(newPage - 1) * pageSize);
49506
49620
  }
49507
49621
  };
49508
49622
  if (this._itemContext.isScrollbar) {
@@ -52526,6 +52640,7 @@ class Timeline extends AbstractComponent {
52526
52640
  setActive(labelGroup, activeLabelStyle), setActive(symbolGroup, activeSymbolStyle);
52527
52641
  }
52528
52642
  appearAnimate(animateConfig) {
52643
+ var _a;
52529
52644
  const {
52530
52645
  duration = 1e3,
52531
52646
  easing = "quadOut"
@@ -52541,26 +52656,39 @@ class Timeline extends AbstractComponent {
52541
52656
  perSymbolNormalDuration = 90 * percent,
52542
52657
  symbolDelay = 100 * percent,
52543
52658
  symbolNormalDelay = 600 * percent;
52544
- if (this._line && (this._line.setAttributes({
52659
+ if (this._line && (commitUpdateAnimationTarget(this._line, {
52660
+ clipRange: 1
52661
+ }, {
52545
52662
  clipRange: 0
52546
52663
  }), this._line.animate().to({
52547
52664
  clipRange: 1
52548
- }, lineDuration, easing)), this._activeLine && (this._activeLine.setAttributes({
52549
- opacity: 0
52550
- }), this._activeLine.animate().wait(500).to({
52551
- opacity: 1
52552
- }, activeLineDuration, easing)), this._symbolGroup) {
52665
+ }, lineDuration, easing)), this._activeLine) {
52666
+ const opacity = null !== (_a = this._activeLine.attribute.opacity) && void 0 !== _a ? _a : 1;
52667
+ commitUpdateAnimationTarget(this._activeLine, {
52668
+ opacity: opacity
52669
+ }, {
52670
+ opacity: 0
52671
+ }), this._activeLine.animate().wait(500).to({
52672
+ opacity: opacity
52673
+ }, activeLineDuration, easing);
52674
+ }
52675
+ if (this._symbolGroup) {
52553
52676
  const size = this._symbolGroup.count - 1,
52554
52677
  delay = percent * (1 === size ? 0 : 400 / (size - 1)),
52555
52678
  delayNormal = percent * (1 === size ? 0 : 240 / (size - 1));
52556
52679
  this._symbolGroup.forEachChildren((symbol, i) => {
52680
+ var _a;
52557
52681
  const originAttrs = {};
52558
52682
  Object.keys(activeSymbolStyle).forEach(k => {
52559
52683
  originAttrs[k] = symbol.attribute[k];
52560
- }), symbol.setAttributes({
52684
+ });
52685
+ const opacity = null !== (_a = symbol.attribute.opacity) && void 0 !== _a ? _a : 1;
52686
+ commitUpdateAnimationTarget(symbol, {
52687
+ opacity: opacity
52688
+ }, {
52561
52689
  opacity: 0
52562
52690
  }), symbol.animate().wait(symbolDelay + delay * i).to({
52563
- opacity: 1
52691
+ opacity: opacity
52564
52692
  }, perSymbolDuration, easing), symbol.animate().wait(symbolNormalDelay + delayNormal * i).to(Object.assign({}, activeSymbolStyle), perSymbolNormalDuration, easing).to(Object.assign({}, originAttrs), perSymbolNormalDuration, easing);
52565
52693
  });
52566
52694
  }
@@ -52569,13 +52697,18 @@ class Timeline extends AbstractComponent {
52569
52697
  delay = percent * (1 === size ? 0 : 400 / (size - 1)),
52570
52698
  delayNormal = percent * (1 === size ? 0 : 240 / (size - 1));
52571
52699
  this._labelGroup.forEachChildren((label, i) => {
52700
+ var _a;
52572
52701
  const originAttrs = {};
52573
52702
  Object.keys(activeLabelStyle).forEach(k => {
52574
52703
  originAttrs[k] = label.attribute[k];
52575
- }), label.setAttributes({
52704
+ });
52705
+ const opacity = null !== (_a = label.attribute.opacity) && void 0 !== _a ? _a : 1;
52706
+ commitUpdateAnimationTarget(label, {
52707
+ opacity: opacity
52708
+ }, {
52576
52709
  opacity: 0
52577
52710
  }), label.animate().wait(symbolDelay + delay * i).to({
52578
- opacity: 1
52711
+ opacity: opacity
52579
52712
  }, perSymbolDuration, easing), label.animate().wait(symbolNormalDelay + delayNormal * i).to(Object.assign({
52580
52713
  dy: 10
52581
52714
  }, activeLabelStyle), perSymbolNormalDuration, easing).to(Object.assign({
@@ -52609,7 +52742,11 @@ class Timeline extends AbstractComponent {
52609
52742
  duration = 1e3,
52610
52743
  easing = "quadOut"
52611
52744
  } = animateConfig;
52612
- this.animate().to({
52745
+ commitUpdateAnimationTarget(this, {
52746
+ clipRange: nextClipRange
52747
+ }, {
52748
+ clipRange: clipRange
52749
+ }), this.animate().to({
52613
52750
  clipRange: nextClipRange
52614
52751
  }, duration, easing);
52615
52752
  } else this.setAttributes({
@@ -54328,6 +54465,6 @@ function createStage(params) {
54328
54465
  return resolveLegacyApp().createStage(params);
54329
54466
  }
54330
54467
 
54331
- const version = "1.1.0-alpha.6";
54468
+ const version = "1.1.0-alpha.8";
54332
54469
 
54333
54470
  export { AComponentAnimate, ACustomAnimate, ARC3D_NUMBER_TYPE, ARC_NUMBER_TYPE, AREA_NUMBER_TYPE, AStageAnimate, AXIS_ELEMENT_NAME, AbstractComponent, AbstractGraphicRender, Animate, AnimateExecutor, AnimateMode, AnimateStatus, Step as AnimateStep, AnimateStepType, AnimationStateManager, AnimationStateStore, AnimationStates, AnimationTransitionRegistry, AppContext, Application, Arc, Arc3d, Arc3dRender, ArcInfo, ArcLabel, ArcRender, ArcRenderContribution, ArcSegment, Area, AreaRender, AreaRenderContribution, AttributeUpdateType, AutoEnablePlugins, AxisStateValue, BaseCanvas, BaseEnvContribution, BasePlayer, BaseRender, BaseRenderContributionTime, BaseWindowHandlerContribution, Basis, BeforeRenderConstribution, BoundsContext, BoundsPicker, BrowserEntry, BrowserEnvContribution, Brush, CIRCLE_NUMBER_TYPE, Canvas3DDrawItemInterceptor, Canvas3DPickItemInterceptor, CanvasArc3dPicker, CanvasArcPicker, CanvasAreaPicker, CanvasCirclePicker, CanvasFactory, CanvasGifImagePicker, CanvasGlyphPicker, CanvasGroupPicker, CanvasImagePicker, CanvasLinePicker, CanvasLottiePicker, CanvasPathPicker, CanvasPickerContribution, CanvasPolygonPicker, CanvasPyramid3dPicker, CanvasRect3dPicker, CanvasRectPicker, CanvasRichTextPicker, CanvasStarPicker, CanvasSymbolPicker, CanvasTextLayout, CanvasTextPicker, CheckBox, Circle, CircleAxis, CircleAxisGrid, CircleCrosshair, CircleRender, CircleRenderContribution, ClipAngleAnimate, ClipDirectionAnimate, ClipGraphicAnimate, ClipIn, ClipOut, ClipRadiusAnimate, ColorContinuousLegend, ColorInterpolate, ColorStore, ColorType, CommonDrawItemInterceptorContribution, CommonRenderContribution, ComponentAnimator, Context2dFactory, ContinuousPlayer, ContributionProvider, ContributionRegistry, ContributionStore, CubicBezierCurve, CurveContext, CurveTypeEnum, CustomEvent, CustomPath2D, CustomSymbolClass, DEFAULT_ITEM_SPACE_COL, DEFAULT_ITEM_SPACE_ROW, DEFAULT_LABEL_SPACE, DEFAULT_PAGER_SPACE, DEFAULT_SHAPE_SIZE, DEFAULT_SHAPE_SPACE, DEFAULT_STATES$1 as DEFAULT_STATES, DEFAULT_TEXT_FONT_FAMILY$1 as DEFAULT_TEXT_FONT_FAMILY, DEFAULT_TITLE_SPACE, DEFAULT_VALUE_SPACE, DataLabel, DataZoom, DataZoomActiveTag, DebugDrawItemInterceptorContribution, DefaultArcAllocate, DefaultArcAttribute, DefaultArcRenderContribution, DefaultAreaAllocate, DefaultAreaAttribute, DefaultAreaTextureRenderContribution, DefaultAttribute, DefaultBaseBackgroundRenderContribution, DefaultBaseClipRenderAfterContribution, DefaultBaseClipRenderBeforeContribution, DefaultBaseInteractiveRenderContribution, DefaultBaseTextureRenderContribution, DefaultCanvasAllocate, DefaultCanvasArcRender, DefaultCanvasAreaRender, DefaultCanvasCircleRender, DefaultCanvasGroupRender, DefaultCanvasImageRender, DefaultCanvasLineRender, DefaultCanvasPathRender, DefaultCanvasPolygonRender, DefaultCanvasRectRender, DefaultCanvasSymbolRender, DefaultCanvasTextRender, DefaultCircleAllocate, DefaultCircleAttribute, DefaultCircleRenderContribution, DefaultConnectAttribute, DefaultDebugAttribute, DefaultFillStyle, DefaultGlobal, DefaultGlobalPickerService, DefaultGlyphAttribute, DefaultGraphicAllocate, DefaultGraphicMemoryManager, DefaultGraphicService, DefaultGraphicUtil, DefaultGroupAttribute, DefaultGroupBackgroundRenderContribution, DefaultImageAttribute, DefaultImageRenderContribution, DefaultLayerService, DefaultLayout, DefaultLineAllocate, DefaultLineAttribute, DefaultMat4Allocate, DefaultMatrixAllocate, DefaultPathAllocate, DefaultPathAttribute, DefaultPickService, DefaultPickStyle, DefaultPolygonAttribute, DefaultRect3dAttribute, DefaultRectAllocate, DefaultRectAttribute, DefaultRectRenderContribution, DefaultRenderService, DefaultRichTextAttribute, DefaultRichTextIconAttribute, DefaultStarAttribute, DefaultStrokeStyle, DefaultStyle, DefaultSymbolAllocate, DefaultSymbolAttribute, DefaultSymbolClipRangeStrokeRenderContribution, DefaultSymbolRenderContribution, DefaultTextAllocate, DefaultTextAttribute, DefaultTextMeasureContribution, DefaultTextStyle, DefaultTicker, DefaultTimeline, DefaultTransform, DefaultTransformUtil, DefaultWindow, Direction, DirectionEnum, DirectionalLight, DiscreteLegend, DiscretePlayer, Dissolve, Distortion, DragNDrop, DrawContribution, DrawItemInterceptor, DynamicLayerHandlerContribution, Easing, Edge, EditModule, EmptyContext2d, EmptyTip, EnvContribution, EventManager, EventSystem, EventTarget, FORMAT_ALL_TEXT_COMMAND, FORMAT_ELEMENT_COMMAND, FORMAT_TEXT_COMMAND, Factory, FadeIn, FadeOut, FederatedEvent, FederatedMouseEvent, FederatedPointerEvent, FederatedWheelEvent, FlexLayoutPlugin, Fragment, FromTo, GLYPH_NUMBER_TYPE, GRAPHIC_UPDATE_TAG_KEY, GROUP_NUMBER_TYPE, GaussianBlur, Generator, Gesture, GifImage, Glitch, GlobalPickerService, Glyph, GlyphRender, GradientParser, Graphic, GraphicCreator$1 as GraphicCreator, GraphicFactory, GraphicPicker, GraphicRender, GraphicService, GraphicStateExtension, GraphicUtil, Grayscale, Group, GroupFadeIn, GroupFadeOut, GroupRender, GroupRenderContribution, GroupTransition, GroupUpdateAABBBoundsMode, GrowAngleIn, GrowAngleOut, GrowCenterIn, GrowCenterOut, GrowHeightIn, GrowHeightOut, GrowIn, GrowOut, GrowPointsIn, GrowPointsOut, GrowPointsXIn, GrowPointsXOut, GrowPointsYIn, GrowPointsYOut, GrowRadiusIn, GrowRadiusOut, GrowWidthIn, GrowWidthOut, HtmlAttributePlugin, IContainPointMode, IDataZoomEvent, IDataZoomInteractiveEvent, IMAGE_NUMBER_TYPE, IMarkAreaLabelPosition, IMarkCommonArcLabelPosition, IMarkLineLabelPosition, IMarkPointItemPosition, IOperateType, Image$1 as Image, ImageRender, ImageRenderContribution, IncreaseCount, IncrementalDrawContribution, Indicator, InputRichText, InputText, InteractiveDrawItemInterceptorContribution, InteractivePickItemInterceptorContribution, InteractiveSubRenderContribution, LEGEND_ELEMENT_NAME, LINE_NUMBER_TYPE, LabelBase, LabelItemAppear, LabelItemDisappear, Layer, LayerFactory, LayerService, LegendEvent, LegendStateValue, Line$1 as Line, LineAxis, LineAxisGrid, LineCrosshair, LineLabel, LineRender, Linear, LinearClosed, LinkPath, Lottie, ManualTicker, MarkArcArea, MarkArcLine, MarkArea, MarkLine, MarkPoint, Mat4Allocate, MathArcPicker, MathAreaPicker, MathCirclePicker, MathGlyphPicker, MathImagePicker, MathLinePicker, MathPathPicker, MathPickerContribution, MathPolygonPicker, MathRectPicker, MathRichTextPicker, MathSymbolPicker, MathTextPicker, MatrixAllocate, MeasureModeEnum, MiniappEntry, MonotoneX, MonotoneY, MorphingPath, MotionPath, MoveIn, MoveOut, MoveRotateIn, MoveRotateOut, MoveScaleIn, MoveScaleOut, MultiToOneMorphingPath, NOWORK_ANIMATE_ATTR, Node, NodeEntry, OrthoCamera, OutputRichText, PATH_NUMBER_TYPE, POLYGON_NUMBER_TYPE, PURE_STYLE_KEY, PYRAMID3D_NUMBER_TYPE, Pager, Particle, Path, PathRender, PathRenderContribution, PerformanceRAF, PickItemInterceptor, PickServiceInterceptor, PickerRegistry, PickerService, Pixelation, PlayerEventEnum, PluginRegistry, PluginService, Polygon, PolygonCrosshair, PolygonRender, PolygonRenderContribution, PolygonSectorCrosshair, PopTip, PoptipAppear, PoptipDisappear, PulseAnimate, Pyramid3d, Pyramid3dRender, REACT_TO_CANOPUS_EVENTS, REACT_TO_CANOPUS_EVENTS_LIST, RECT3D_NUMBER_TYPE, RECT_NUMBER_TYPE, RICHTEXT_NUMBER_TYPE, Radio, RafBasedSTO, ReactAttributePlugin, Rect, Rect3DRender, Rect3d, RectCrosshair, RectLabel, RectRender, RectRenderContribution, ReflectSegContext, RenderSelector, RenderService, RendererRegistry, ResourceLoader, RichText, RichTextEditPlugin, RichTextRender, RotateBySphereAnimate, RotateIn, RotateOut, SLIDER_ELEMENT_NAME, STAR_NUMBER_TYPE, STATUS$1 as STATUS, SVG_ATTRIBUTE_MAP, SVG_ATTRIBUTE_MAP_KEYS, SVG_PARSE_ATTRIBUTE_MAP, SVG_PARSE_ATTRIBUTE_MAP_KEYS, SYMBOL_NUMBER_TYPE, ScaleIn, ScaleOut, ScrollBar, SectorCrosshair, SegContext, Segment, SeriesNumberCellStateValue, SeriesNumberEvent, ShadowPickServiceInterceptorContribution, ShadowRoot, ShadowRootDrawItemInterceptorContribution, ShadowRootPickItemInterceptorContribution, SizeContinuousLegend, SlideIn, SlideOut, SlideOutRichText, SlideRichText, Slider, SpinIn, SpinOut, SplitRectAfterRenderContribution, SplitRectBeforeRenderContribution, Stage, StageFactory, Star, StarRender, StarRenderContribution, State, StateDefinitionCompiler, StateEngine, StaticLayerHandlerContribution, Step$1 as Step, StepClosed, StoryLabelItem, StreamLight, StrokeIn, StrokeOut, Switch, Symbol$1 as Symbol, SymbolLabel, SymbolRender, SymbolRenderContribution, TEXT_NUMBER_TYPE, TableSeriesNumber, Tag, TagPointsUpdate, Text, TextDirection, TextMeasureContribution, TextRender, TextRenderContribution, Theme, Timeline, Title, Tooltip, TopZIndex, TransformUtil, Update, UpdateTag, VArc, VArc3d, VArea, VCircle, VGlobal, VGlyph, VGroup, VImage, VLine, VPath, VPolygon, VPyramid3d, VRect, VRect3d, VRichText, VSymbol, VTag, VText, VWindow, ViewTransform3dPlugin, VirtualLayerHandlerContribution, WILDCARD, WeatherBox, WindowHandlerContribution, WrapText, XMLParser, _calculateLineHeight, _interpolateColor, _registerArc, addArcToBezierPath$1 as addArcToBezierPath, addAttributeToPrototype, alignBezierCurves, alignSubpath, alignTextInLine, alternatingWave, angle, angleLabelOrientAttribute, angleTo, application, applyTransformOnBezierCurves, arc3dModule, arcModule, areaModule, bezier, bezierCurversToPath, binarySplitPolygon, bindArc3dCanvasPickerContribution, bindArc3dRenderModule, bindArcCanvasPickerContribution, bindArcMathPickerContribution, bindArcRenderModule, bindAreaCanvasPickerContribution, bindAreaMathPickerContribution, bindAreaRenderModule, bindBrowserEnv, bindCircleCanvasPickerContribution, bindCircleMathPickerContribution, bindCircleRenderModule, bindContributionProvider, bindContributionProviderNoSingletonScope, bindFeishuEnv, bindGifImageCanvasPickerContribution, bindGifImageRenderContribution, bindGlyphCanvasPickerContribution, bindGlyphMathPickerContribution, bindGlyphRenderModule, bindHarmonyEnv, bindImageCanvasPickerContribution, bindImageMathPickerContribution, bindImageRenderModule, bindLineCanvasPickerContribution, bindLineMathPickerContribution, bindLineRenderModule, bindLottieCanvasPickerContribution, bindLottieRenderContribution, bindLynxEnv, bindMathPicker, bindNodeEnv, bindPathCanvasPickerContribution, bindPathMathPickerContribution, bindPathRenderModule, bindPolygonCanvasPickerContribution, bindPolygonMathPickerContribution, bindPolygonRenderModule, bindPyramid3dCanvasPickerContribution, bindPyramid3dRenderModule, bindRect3dCanvasPickerContribution, bindRect3dRenderModule, bindRectCanvasPickerContribution, bindRectMathPickerContribution, bindRectRenderModule, bindRichTextMathPickerContribution, bindRichtextCanvasPickerContribution, bindRichtextRenderModule, bindStarRenderModule, bindSymbolCanvasPickerContribution, bindSymbolMathPickerContribution, bindSymbolRenderModule, bindTTEnv, bindTaroEnv, bindTextCanvasPickerContribution, bindTextMathPickerContribution, bindTextRenderModule, bindWxEnv, bootstrapLegacyVRenderRuntime, bootstrapVRenderBrowserApp, bootstrapVRenderNodeApp, boundStroke, builtInSymbolStrMap, builtinSymbols, builtinSymbolsMap, calcLineCache, calculateArcCornerRadius, calculateLineHeight, canvasAllocate, cartesianTicks, centerToCorner, centroidOfSubpath, circleBounds, circleModule, clampRadian, clock, colorEqual, colorStringInterpolationToStr, columnCenterToEdge, columnEdgeToCenter, columnLeftToRight, columnRightToLeft, computeOffsetForlimit, configureRuntimeApplicationForApp, container, continuousTicks, contrastAccessibilityChecker, convertDomainToTickData, cornerTangents, cornerToCenter, createBrowserApp$1 as createApp, createArc, createArc3d, createArea, createBrowserApp$1 as createBrowserApp, createBrowserVRenderApp, createCanvasEventTransformer, createCircle, createColor, createComponentAnimator, createConicalGradient, createContributionProvider$1 as createContributionProvider, createEventTransformer, createGifImage, createGlyph, createGraphic$1 as createGraphic, createGroup, createImage, createImageElement$1 as createImageElement, createLine, createLottie, createMat4, createMiniappApp, createNodeApp$1 as createNodeApp, createNodeVRenderApp, createPath, createPolygon, createPyramid3d, createRect, createRect3d, createRectPath, createRichText, createShadowRoot, createStage, createStar, createSymbol, createText, createTextGraphicByType, createWrapText, cubicCalc, cubicLength, cubicPointAt, cubicSubdivide, decodeReactDom, defaultArcAllocate, defaultArcBackgroundRenderContribution, defaultArcRenderContribution, defaultArcTextureRenderContribution, defaultAreaAllocate, defaultBaseBackgroundRenderContribution, defaultBaseClipRenderAfterContribution, defaultBaseClipRenderBeforeContribution, defaultBaseTextureRenderContribution, defaultCircleAllocate, defaultCircleBackgroundRenderContribution, defaultCircleRenderContribution, defaultCircleTextureRenderContribution, defaultGraphicMemoryManager, defaultGroupBackgroundRenderContribution, defaultImageBackgroundRenderContribution, defaultImageRenderContribution, defaultLineAllocate, defaultPathAllocate, defaultRectAllocate, defaultRectBackgroundRenderContribution, defaultRectRenderContribution, defaultRectTextureRenderContribution, defaultStarBackgroundRenderContribution, defaultStarTextureRenderContribution, defaultSymbolAllocate, defaultSymbolBackgroundRenderContribution, defaultSymbolClipRangeStrokeRenderContribution, defaultSymbolRenderContribution, defaultSymbolTextureRenderContribution, defaultTextAllocate, defaultTicker, defaultTimeline, deltaXYToAngle, diagonalCenterToEdge, diagonalTopLeftToBottomRight, diff, divideCubic, drawArc, drawArcPath$1 as drawArcPath, drawAreaSegments, drawBackgroundImage, drawImageWithLayout, drawIncrementalAreaSegments, drawIncrementalSegments, drawSegments, enumCommandMap, fillVisible, findBestMorphingRotation, findConfigIndexByCursorIdx, findCursorIdxByConfigIndex, findNextGraphic, flatten_simplify, foreach, foreachAsync, fuzzyEqualNumber, genBasisSegments, genBasisTypeSegments, genLinearClosedSegments, genLinearClosedTypeSegments, genLinearSegments, genLinearTypeSegments, genMonotoneXSegments, genMonotoneXTypeSegments, genMonotoneYSegments, genMonotoneYTypeSegments, genNumberType, genStepClosedSegments, genStepSegments, genStepTypeSegments, generatorPathEasingFunc, getAttributeFromDefaultAttrList, getAxisBreakSymbolAttrs, getBackgroundImage, getCircleLabelPosition, getCirclePoints, getCircleVerticalVector, getConicGradientAt, getCurrentEnv, getDefaultCharacterConfig, getElMap, getExtraModelMatrix, getHorizontalPath, getLegacyBindingContext, getMarksByName, getModelMatrix, getNoneGroupMarksByName, getPolarAngleLabelPosition, getPolygonPath, getRichTextBounds, getRuntimeInstallerBindingContext, getRuntimeInstallerGlobal, getScaledStroke, getSizeHandlerPath, getTextAlignAttrOfVerticalDir, getTextBounds, getTextType, getTheme, getThemeFromGroup, getVerticalCoord, getVerticalPath, globalTheme, glyphModule, graphicCreator$1 as graphicCreator, graphicService, graphicUtil, hasOverlap, htmlAttributeTransform, identityMat4, imageModule, incrementalAddTo, initAllEnv, initBrowserEnv, initFeishuEnv, initHarmonyEnv, initLynxEnv, initNodeEnv, initTTEnv, initTaroEnv, initTextMeasure, initWxEnv, installBrowserEnvToApp, installBrowserPickersToApp, installDefaultGraphicsToApp, installNodeEnvToApp, installNodePickersToApp, installPoptipToApp, installRuntimeDrawContributionsToApp, installRuntimeGraphicRenderersToApp, installRuntimePickersToApp, installScrollbarToApp, interpolateColor, interpolateGradientConicalColor, interpolateGradientLinearColor, interpolateGradientRadialColor, interpolatePureColorArray, interpolatePureColorArrayToStr, intersect, isBrowserEnv, isInRange, isNoRepeatSizingMode, isNodeEnv, isPostiveXAxis, isRichText, isSvg, isVisible, isXML, jsx, labelSmartInvert, layerService, length, limitShapeInBounds, lineModule, linearDiscreteTicks, loadAllEnv, loadAllModule, loadBrowserEnv, loadFeishuEnv, loadHarmonyEnv, loadLynxEnv, loadMathPicker, loadNodeEnv, loadPoptip, loadScrollbar, loadTTEnv, loadTaroEnv, loadWxEnv, lookAt, mapToCanvasPointForCanvas, mat3Tomat4, mat4Allocate, matrixAllocate, measureTextSize, morphPath, multiToOneMorph, multiplyMat4Mat3, multiplyMat4Mat4, newThemeObj, normalize$1 as normalize, oneToMultiMorph, ortho, parsePadding, parseStroke, parseSvgPath, particleEffect, pathModule, pathToBezierCurves, point$3 as point, pointEqual, pointInterpolation, pointInterpolationHighPerformance, pointsEqual, pointsInterpolation, polarAngleAxisDiscreteTicks, polarTicks, polygonModule, preLoadAllModule, pulseWave, pyramid3dModule, quadCalc, quadLength, quadPointAt, rafBasedSto, randomOpacity, reactAttributeTransform, rect3dModule, rectFillVisible, rectModule, rectStrokeVisible, recursiveCallBinarySplit, refreshRuntimeInstallerContributions, registerAnimate, registerArc, registerArc3d, registerArc3dGraphic, registerArcDataLabel, registerArcGraphic, registerArea, registerAreaGraphic, registerCircle, registerCircleGraphic, registerCustomAnimate, registerDirectionalLight, registerFlexLayoutPlugin, registerGifGraphic, registerGifImage, registerGlobalEventTransformer, registerGlyph, registerGlyphGraphic, registerGraphic, registerGroup, registerGroupGraphic, registerHtmlAttributePlugin, registerImage, registerImageGraphic, registerLine, registerLineDataLabel, registerLineGraphic, registerMarkArcAreaAnimate, registerMarkArcLineAnimate, registerMarkAreaAnimate, registerMarkLineAnimate, registerMarkPointAnimate, registerOrthoCamera, registerPath, registerPathGraphic, registerPolygon, registerPolygonGraphic, registerPyramid3d, registerPyramid3dGraphic, registerReactAttributePlugin, registerRect, registerRect3d, registerRect3dGraphic, registerRectDataLabel, registerRectGraphic, registerRichtext, registerRichtextGraphic, registerShadowRoot, registerShadowRootGraphic, registerStar, registerStarGraphic, registerSymbol, registerSymbolDataLabel, registerSymbolGraphic, registerText, registerTextGraphic, registerViewTransform3dPlugin, registerWindowEventTransformer, registerWrapText, registerWrapTextGraphic, removeRepeatPoint, renderCommandList, resolveBackgroundDrawMode, resolveBackgroundParamsByImageSizing, resolveBackgroundPosition, resolveBackgroundSizing, resolveContainerBinding$1 as resolveContainerBinding, resolveImageMode, resolveImageRepeatMode, resolveRenderableImageSize, rewriteProto, richTextAttributeTransform, richtextModule, rippleEffect, rotateX, rotateY, rotateZ, rotationScan, roughModule, rowBottomToTop, rowCenterToEdge, rowEdgeToCenter, rowTopToBottom, runFill, runStroke, scale, scaleMat4, segments, setPoptipTheme, shouldClipImageByLayout, shouldUseMat4, shouldUseSimpleAttributeFastPath, smartInvertStrategy, snakeWave, snapLength, spiralEffect, splitArc, splitArea, splitCircle, splitLine, splitPath, splitPolygon, splitRect, splitToGrids, starModule, strCommandMap, strokeVisible, symbolModule, tan2AngleToAngle, textAttributesToStyle, textDrawOffsetX, textDrawOffsetY, textIntersect, textLayoutOffsetY, textModule, ticks, transformMat4, transformPointForCanvas, transformUtil, transitionRegistry, translate, traverseGroup, version, verticalLayout, vglobal, waitForAllSubLayers, wrapCanvas, wrapContext, xul };