@visactor/vrender 1.1.0-alpha.7 → 1.1.0-alpha.9

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.7";
2
+ export declare const version = "1.1.0-alpha.9";
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.7", __exportStar(require("@visactor/vrender-core"), exports),
29
+ }), exports.version = "1.1.0-alpha.9", __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.7\";\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.9\";\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
@@ -36886,10 +36886,23 @@ class Update extends ACustomAnimate {
36886
36886
  delete diffAttrs[channel];
36887
36887
  }), this.props = diffAttrs;
36888
36888
  }
36889
+ getStaticCommitAttrs() {
36890
+ var _a;
36891
+ if (!this.props) return null;
36892
+ const target = this.target,
36893
+ contextFinalAttrs = null === (_a = target.context) || void 0 === _a ? void 0 : _a.finalAttrs,
36894
+ finalAttribute = "function" == typeof target.getFinalAttribute ? target.getFinalAttribute() : target.finalAttribute,
36895
+ commitAttrs = {};
36896
+ return Object.keys(this.props).forEach(key => {
36897
+ contextFinalAttrs && Object.prototype.hasOwnProperty.call(contextFinalAttrs, key) ? commitAttrs[key] = contextFinalAttrs[key] : finalAttribute && Object.prototype.hasOwnProperty.call(finalAttribute, key) ? commitAttrs[key] = finalAttribute[key] : this.animate.validAttr(key) && (commitAttrs[key] = this.props[key]);
36898
+ }), Object.keys(commitAttrs).length ? commitAttrs : null;
36899
+ }
36889
36900
  onEnd(cb) {
36890
- cb ? super.onEnd(cb) : (this.props && Object.keys(this.props).length && this.target.setAttributes(this.props, !1, {
36901
+ if (cb) return void super.onEnd(cb);
36902
+ const commitAttrs = this.getStaticCommitAttrs();
36903
+ commitAttrs && this.target.setAttributes(commitAttrs, !1, {
36891
36904
  type: AttributeUpdateType.ANIMATE_END
36892
- }), super.onEnd());
36905
+ }), super.onEnd();
36893
36906
  }
36894
36907
  update(end, ratio, out) {
36895
36908
  if (this.onStart(), !this.props || !this.propKeys) return;
@@ -40858,6 +40871,20 @@ class AnimateComponent extends AbstractComponent {
40858
40871
  }
40859
40872
  }
40860
40873
 
40874
+ function commitUpdateAnimationTarget(graphic, targetAttrs, startAttrs) {
40875
+ var _a, _b, _c, _d;
40876
+ if (!graphic || !targetAttrs) return;
40877
+ const committedTargetAttrs = cloneDeep(targetAttrs),
40878
+ transientStartAttrs = cloneDeep(null != startAttrs ? startAttrs : graphic.attribute);
40879
+ graphic.setAttributes(committedTargetAttrs);
40880
+ const baseAttributes = graphic.baseAttributes;
40881
+ baseAttributes && "object" == typeof baseAttributes && Object.keys(committedTargetAttrs).forEach(key => {
40882
+ baseAttributes[key] = cloneDeep(committedTargetAttrs[key]);
40883
+ }), 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, {
40884
+ type: AttributeUpdateType.ANIMATE_BIND
40885
+ });
40886
+ }
40887
+
40861
40888
  const DefaultAxisAnimation = {
40862
40889
  type: "default",
40863
40890
  duration: 300,
@@ -41183,33 +41210,29 @@ class AxisBase extends AnimateComponent {
41183
41210
  var _a;
41184
41211
  if ("group" !== el.type && el.id) {
41185
41212
  const oldEl = prevInnerView[el.id];
41186
- if (el.setFinalAttributes(el.attribute), oldEl) {
41213
+ if (oldEl) {
41187
41214
  oldEl.release();
41188
- const oldAttrs = oldEl.attribute,
41189
- finalAttrs = el.getFinalAttribute(),
41215
+ const oldAttrs = cloneDeep(oldEl.attribute),
41216
+ finalAttrs = cloneDeep(el.attribute),
41190
41217
  diffAttrs = diff(oldAttrs, finalAttrs);
41191
41218
  let hasDiff = Object.keys(diffAttrs).length > 0;
41192
- if ("opacity" in oldAttrs && finalAttrs.opacity !== oldAttrs.opacity && (diffAttrs.opacity = null !== (_a = finalAttrs.opacity) && void 0 !== _a ? _a : 1, hasDiff = !0), animationConfig.update && hasDiff) {
41193
- this._newElementAttrMap[el.id] = {
41194
- state: "update",
41195
- node: el,
41196
- attrs: el.attribute
41197
- };
41198
- const oldAttrs = oldEl.attribute;
41199
- el.setAttributes(oldAttrs), el.applyAnimationState(["update"], [{
41200
- name: "update",
41201
- animation: Object.assign(Object.assign({
41202
- selfOnly: !0
41203
- }, animationConfig.update), {
41204
- type: "axisUpdate",
41205
- customParameters: {
41206
- config: animationConfig.update,
41207
- diffAttrs: diffAttrs,
41208
- lastScale: lastScale
41209
- }
41210
- })
41211
- }]);
41212
- }
41219
+ "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] = {
41220
+ state: "update",
41221
+ node: el,
41222
+ attrs: finalAttrs
41223
+ }, commitUpdateAnimationTarget(el, finalAttrs, oldAttrs), el.applyAnimationState(["update"], [{
41224
+ name: "update",
41225
+ animation: Object.assign(Object.assign({
41226
+ selfOnly: !0
41227
+ }, animationConfig.update), {
41228
+ type: "axisUpdate",
41229
+ customParameters: {
41230
+ config: animationConfig.update,
41231
+ diffAttrs: diffAttrs,
41232
+ lastScale: lastScale
41233
+ }
41234
+ })
41235
+ }]));
41213
41236
  } else animationConfig.enter && (this._newElementAttrMap[el.id] = {
41214
41237
  state: "enter",
41215
41238
  node: el,
@@ -41553,7 +41576,10 @@ class AxisEnter extends AComponentAnimate {
41553
41576
  const point = getTickCoord(lastScale.scale(currData.rawValue)),
41554
41577
  newX = this.target.attribute.x,
41555
41578
  newY = this.target.attribute.y;
41556
- this.target.setAttributes({
41579
+ commitUpdateAnimationTarget(this.target, {
41580
+ x: newX,
41581
+ y: newY
41582
+ }, {
41557
41583
  x: point.x,
41558
41584
  y: point.y
41559
41585
  }), animator.animate(this.target, {
@@ -41581,10 +41607,9 @@ class AxisUpdate extends AComponentAnimate {
41581
41607
  const duration = this.duration,
41582
41608
  easing = this.easing,
41583
41609
  {
41584
- config: config,
41585
41610
  diffAttrs: diffAttrs
41586
41611
  } = this.params;
41587
- animator.animate(this.target, {
41612
+ commitUpdateAnimationTarget(this.target, Object.assign({}, diffAttrs)), animator.animate(this.target, {
41588
41613
  type: "to",
41589
41614
  to: Object.assign({}, diffAttrs),
41590
41615
  duration: duration,
@@ -42469,6 +42494,7 @@ class GroupTransition extends ACustomAnimate {
42469
42494
  super(...arguments), this.mode = AnimateMode.NORMAL;
42470
42495
  }
42471
42496
  onBind() {
42497
+ this._started = !1;
42472
42498
  const currentInnerView = this.target.getInnerView(),
42473
42499
  prevInnerView = this.target.getPrevInnerView();
42474
42500
  prevInnerView && (this._newElementAttrMap = {}, traverseGroup(currentInnerView, el => {
@@ -42486,7 +42512,7 @@ class GroupTransition extends ACustomAnimate {
42486
42512
  fillOpacity: null !== (_b = newProps.fillOpacity) && void 0 !== _b ? _b : 1,
42487
42513
  strokeOpacity: null !== (_c = newProps.strokeOpacity) && void 0 !== _c ? _c : 1
42488
42514
  })
42489
- }, el.setAttributes(oldEl.attribute);
42515
+ }, commitUpdateAnimationTarget(el, this._newElementAttrMap[el.id].attrs, cloneDeep(oldEl.attribute));
42490
42516
  }
42491
42517
  } else {
42492
42518
  const finalOpacityAttrs = {
@@ -42498,7 +42524,7 @@ class GroupTransition extends ACustomAnimate {
42498
42524
  state: "enter",
42499
42525
  node: el,
42500
42526
  attrs: finalOpacityAttrs
42501
- }, el.setAttributes({
42527
+ }, commitUpdateAnimationTarget(el, finalOpacityAttrs, {
42502
42528
  opacity: 0,
42503
42529
  fillOpacity: 0,
42504
42530
  strokeOpacity: 0
@@ -42508,6 +42534,8 @@ class GroupTransition extends ACustomAnimate {
42508
42534
  }));
42509
42535
  }
42510
42536
  onStart() {
42537
+ if (this._started) return;
42538
+ this._started = !0;
42511
42539
  let duration = this.duration,
42512
42540
  easing = this.easing;
42513
42541
  this._newElementAttrMap && Object.keys(this._newElementAttrMap).forEach(id => {
@@ -44604,7 +44632,7 @@ class LabelBase extends AnimateComponent {
44604
44632
  text: curText,
44605
44633
  labelLine: curLabelLine
44606
44634
  } = currentLabel;
44607
- prevText.applyAnimationState(["update"], [{
44635
+ commitUpdateAnimationTarget(prevText, null == curText ? void 0 : curText.attribute), commitUpdateAnimationTarget(prevLabelLine, null == curLabelLine ? void 0 : curLabelLine.attribute), prevText.applyAnimationState(["update"], [{
44608
44636
  name: "update",
44609
44637
  animation: {
44610
44638
  type: "labelUpdate",
@@ -44630,7 +44658,6 @@ class LabelBase extends AnimateComponent {
44630
44658
  }
44631
44659
  _updateLabel(prevLabel, currentLabel) {
44632
44660
  const {
44633
- text: prevText,
44634
44661
  labelLine: prevLabelLine
44635
44662
  } = prevLabel,
44636
44663
  {
@@ -47199,7 +47226,10 @@ function graphicFadeIn(graphic, delay, duration, easing) {
47199
47226
  null === (_a = null == graphic ? void 0 : graphic.animates) || void 0 === _a || _a.forEach(a => a.stop("end"));
47200
47227
  const fillOpacityConfig = null !== (_c = null === (_b = graphic.attribute) || void 0 === _b ? void 0 : _b.fillOpacity) && void 0 !== _c ? _c : 1,
47201
47228
  strokeOpacityConfig = null !== (_e = null === (_d = graphic.attribute) || void 0 === _d ? void 0 : _d.strokeOpacity) && void 0 !== _e ? _e : 1;
47202
- graphic.setAttributes({
47229
+ commitUpdateAnimationTarget(graphic, {
47230
+ fillOpacity: fillOpacityConfig,
47231
+ strokeOpacity: strokeOpacityConfig
47232
+ }, {
47203
47233
  fillOpacity: 0,
47204
47234
  strokeOpacity: 0
47205
47235
  }), graphic.animate().wait(delay).to({
@@ -47215,7 +47245,10 @@ function tagFadeIn(tag, delay, duration, easing) {
47215
47245
  }
47216
47246
  function graphicFadeOut(graphic, delay, duration, easing) {
47217
47247
  var _a, _b, _c, _d;
47218
- graphic && (graphic.setAttributes({
47248
+ graphic && (commitUpdateAnimationTarget(graphic, {
47249
+ fillOpacity: 0,
47250
+ strokeOpacity: 0
47251
+ }, {
47219
47252
  fillOpacity: null !== (_b = null === (_a = graphic.attribute) || void 0 === _a ? void 0 : _a.fillOpacity) && void 0 !== _b ? _b : 1,
47220
47253
  strokeOpacity: null !== (_d = null === (_c = graphic.attribute) || void 0 === _c ? void 0 : _c.strokeOpacity) && void 0 !== _d ? _d : 1
47221
47254
  }), graphic.animate().wait(delay).to({
@@ -47235,7 +47268,11 @@ function commonLineClipIn(line, label, duration, delay, easing) {
47235
47268
  lineDuration = .7 * duration,
47236
47269
  endSymbolDuration = .1 * duration,
47237
47270
  labelDuration = .1 * duration;
47238
- graphicFadeIn(line.startSymbol, delay, startSymbolDuration, easing), line.lines.forEach(line => line.setAttribute("clipRange", 0)), line.lines.forEach((l, index) => {
47271
+ graphicFadeIn(line.startSymbol, delay, startSymbolDuration, easing), line.lines.forEach(line => commitUpdateAnimationTarget(line, {
47272
+ clipRange: 1
47273
+ }, {
47274
+ clipRange: 0
47275
+ })), line.lines.forEach((l, index) => {
47239
47276
  const stepDuration = lineDuration / line.lines.length;
47240
47277
  l.animate().wait(delay + startSymbolDuration + index * stepDuration).to({
47241
47278
  clipRange: 1
@@ -47293,7 +47330,11 @@ function pointCallIn(itemLine, decorativeLine, item, duration, delay, easing) {
47293
47330
  decorativeDuration = .05 * duration,
47294
47331
  endSymbolDuration = .1 * duration,
47295
47332
  labelDuration = .1 * duration;
47296
- graphicFadeIn(itemLine.startSymbol, delay, startSymbolDuration, easing), itemLine.lines.forEach(line => line.setAttribute("clipRange", 0)), itemLine.lines.forEach((l, index) => {
47333
+ graphicFadeIn(itemLine.startSymbol, delay, startSymbolDuration, easing), itemLine.lines.forEach(line => commitUpdateAnimationTarget(line, {
47334
+ clipRange: 1
47335
+ }, {
47336
+ clipRange: 0
47337
+ })), itemLine.lines.forEach((l, index) => {
47297
47338
  const stepDuration = lineDuration / itemLine.lines.length;
47298
47339
  l.animate().wait(delay + startSymbolDuration + index * stepDuration).to({
47299
47340
  clipRange: 1
@@ -49577,12 +49618,18 @@ class DiscreteLegend extends LegendBase {
49577
49618
  let containerSize;
49578
49619
  containerSize = this._itemContext.isHorizontal ? this._itemsContainer.AABBBounds.width() : this._itemsContainer.AABBBounds.height();
49579
49620
  const startOffset = containerSize * start;
49580
- this.updateScrollMask(), animation ? this._itemsContainer.animate().to({
49581
- [channel]: -startOffset
49582
- }, animationDuration, animationEasing) : this._itemsContainer.setAttribute(channel, -startOffset);
49583
- } else animation ? this._itemsContainer.animate().to({
49584
- [channel]: -(newPage - 1) * pageSize
49585
- }, animationDuration, animationEasing) : this._itemsContainer.setAttribute(channel, -(newPage - 1) * pageSize);
49621
+ if (this.updateScrollMask(), animation) {
49622
+ const attrs = {
49623
+ [channel]: -startOffset
49624
+ };
49625
+ commitUpdateAnimationTarget(this._itemsContainer, attrs), this._itemsContainer.animate().to(attrs, animationDuration, animationEasing);
49626
+ } else this._itemsContainer.setAttribute(channel, -startOffset);
49627
+ } else if (animation) {
49628
+ const attrs = {
49629
+ [channel]: -(newPage - 1) * pageSize
49630
+ };
49631
+ commitUpdateAnimationTarget(this._itemsContainer, attrs), this._itemsContainer.animate().to(attrs, animationDuration, animationEasing);
49632
+ } else this._itemsContainer.setAttribute(channel, -(newPage - 1) * pageSize);
49586
49633
  }
49587
49634
  };
49588
49635
  if (this._itemContext.isScrollbar) {
@@ -52606,6 +52653,7 @@ class Timeline extends AbstractComponent {
52606
52653
  setActive(labelGroup, activeLabelStyle), setActive(symbolGroup, activeSymbolStyle);
52607
52654
  }
52608
52655
  appearAnimate(animateConfig) {
52656
+ var _a;
52609
52657
  const {
52610
52658
  duration = 1e3,
52611
52659
  easing = "quadOut"
@@ -52621,26 +52669,39 @@ class Timeline extends AbstractComponent {
52621
52669
  perSymbolNormalDuration = 90 * percent,
52622
52670
  symbolDelay = 100 * percent,
52623
52671
  symbolNormalDelay = 600 * percent;
52624
- if (this._line && (this._line.setAttributes({
52672
+ if (this._line && (commitUpdateAnimationTarget(this._line, {
52673
+ clipRange: 1
52674
+ }, {
52625
52675
  clipRange: 0
52626
52676
  }), this._line.animate().to({
52627
52677
  clipRange: 1
52628
- }, lineDuration, easing)), this._activeLine && (this._activeLine.setAttributes({
52629
- opacity: 0
52630
- }), this._activeLine.animate().wait(500).to({
52631
- opacity: 1
52632
- }, activeLineDuration, easing)), this._symbolGroup) {
52678
+ }, lineDuration, easing)), this._activeLine) {
52679
+ const opacity = null !== (_a = this._activeLine.attribute.opacity) && void 0 !== _a ? _a : 1;
52680
+ commitUpdateAnimationTarget(this._activeLine, {
52681
+ opacity: opacity
52682
+ }, {
52683
+ opacity: 0
52684
+ }), this._activeLine.animate().wait(500).to({
52685
+ opacity: opacity
52686
+ }, activeLineDuration, easing);
52687
+ }
52688
+ if (this._symbolGroup) {
52633
52689
  const size = this._symbolGroup.count - 1,
52634
52690
  delay = percent * (1 === size ? 0 : 400 / (size - 1)),
52635
52691
  delayNormal = percent * (1 === size ? 0 : 240 / (size - 1));
52636
52692
  this._symbolGroup.forEachChildren((symbol, i) => {
52693
+ var _a;
52637
52694
  const originAttrs = {};
52638
52695
  Object.keys(activeSymbolStyle).forEach(k => {
52639
52696
  originAttrs[k] = symbol.attribute[k];
52640
- }), symbol.setAttributes({
52697
+ });
52698
+ const opacity = null !== (_a = symbol.attribute.opacity) && void 0 !== _a ? _a : 1;
52699
+ commitUpdateAnimationTarget(symbol, {
52700
+ opacity: opacity
52701
+ }, {
52641
52702
  opacity: 0
52642
52703
  }), symbol.animate().wait(symbolDelay + delay * i).to({
52643
- opacity: 1
52704
+ opacity: opacity
52644
52705
  }, perSymbolDuration, easing), symbol.animate().wait(symbolNormalDelay + delayNormal * i).to(Object.assign({}, activeSymbolStyle), perSymbolNormalDuration, easing).to(Object.assign({}, originAttrs), perSymbolNormalDuration, easing);
52645
52706
  });
52646
52707
  }
@@ -52649,13 +52710,18 @@ class Timeline extends AbstractComponent {
52649
52710
  delay = percent * (1 === size ? 0 : 400 / (size - 1)),
52650
52711
  delayNormal = percent * (1 === size ? 0 : 240 / (size - 1));
52651
52712
  this._labelGroup.forEachChildren((label, i) => {
52713
+ var _a;
52652
52714
  const originAttrs = {};
52653
52715
  Object.keys(activeLabelStyle).forEach(k => {
52654
52716
  originAttrs[k] = label.attribute[k];
52655
- }), label.setAttributes({
52717
+ });
52718
+ const opacity = null !== (_a = label.attribute.opacity) && void 0 !== _a ? _a : 1;
52719
+ commitUpdateAnimationTarget(label, {
52720
+ opacity: opacity
52721
+ }, {
52656
52722
  opacity: 0
52657
52723
  }), label.animate().wait(symbolDelay + delay * i).to({
52658
- opacity: 1
52724
+ opacity: opacity
52659
52725
  }, perSymbolDuration, easing), label.animate().wait(symbolNormalDelay + delayNormal * i).to(Object.assign({
52660
52726
  dy: 10
52661
52727
  }, activeLabelStyle), perSymbolNormalDuration, easing).to(Object.assign({
@@ -52689,7 +52755,11 @@ class Timeline extends AbstractComponent {
52689
52755
  duration = 1e3,
52690
52756
  easing = "quadOut"
52691
52757
  } = animateConfig;
52692
- this.animate().to({
52758
+ commitUpdateAnimationTarget(this, {
52759
+ clipRange: nextClipRange
52760
+ }, {
52761
+ clipRange: clipRange
52762
+ }), this.animate().to({
52693
52763
  clipRange: nextClipRange
52694
52764
  }, duration, easing);
52695
52765
  } else this.setAttributes({
@@ -54408,6 +54478,6 @@ function createStage(params) {
54408
54478
  return resolveLegacyApp().createStage(params);
54409
54479
  }
54410
54480
 
54411
- const version = "1.1.0-alpha.7";
54481
+ const version = "1.1.0-alpha.9";
54412
54482
 
54413
54483
  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 };