@visactor/vrender 1.0.0-alpha.1 → 1.0.0-alpha.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.es.js CHANGED
@@ -16883,7 +16883,7 @@ class Stage extends Group {
16883
16883
  }
16884
16884
  initAnimate(params) {
16885
16885
  var _a;
16886
- this.createTicker && this.createTimeline && (this.ticker = params.ticker || this.createTicker(this), "effect" !== (null === (_a = this.params.optimize) || void 0 === _a ? void 0 : _a.tickRenderMode) && this.ticker.setFPS(30), this.timeline = this.createTimeline(), this.ticker.addTimeline(this.timeline), this.ticker.on("tick", this.afterTickCb));
16886
+ this.createTicker && this.createTimeline && (this.ticker = params.ticker || this.createTicker(this), "performance" === (null === (_a = this.params.optimize) || void 0 === _a ? void 0 : _a.tickRenderMode) && this.ticker.setFPS(30), this.timeline = this.createTimeline(), this.ticker.addTimeline(this.timeline), this.ticker.on("tick", this.afterTickCb));
16887
16887
  }
16888
16888
  startAnimate() {
16889
16889
  this.ticker && this.timeline && (this.ticker.start(), this.timeline.resume());
@@ -30093,10 +30093,12 @@ function commonInterpolateUpdate(key, from, to, ratio, step, target) {
30093
30093
  function noop() {}
30094
30094
  class Step {
30095
30095
  constructor(type, props, duration, easing) {
30096
- this._startTime = 0, this._hasFirstRun = !1, this.type = type, this.props = props, this.duration = duration, this.easing = easing ? "function" == typeof easing ? easing : Easing[easing] : Easing.linear, "wait" === type && (this.onUpdate = noop), this.id = Generator.GenAutoIncrementId();
30096
+ this._startTime = 0, this._hasFirstRun = !1, this._syncAttributeUpdate = () => {
30097
+ this.target.setAttributes(this.target.attribute);
30098
+ }, this.type = type, this.props = props, this.duration = duration, this.easing = easing ? "function" == typeof easing ? easing : Easing[easing] : Easing.linear, "wait" === type && (this.onUpdate = noop), this.id = Generator.GenAutoIncrementId(), this.syncAttributeUpdate = noop;
30097
30099
  }
30098
30100
  bind(target, animate) {
30099
- this.target = target, this.animate = animate, this.onBind();
30101
+ this.target = target, this.animate = animate, this.onBind(), this.syncAttributeUpdate();
30100
30102
  }
30101
30103
  append(step) {
30102
30104
  this.next = step, step.prev = this, step.setStartTime(this.getStartTime() + this.duration, !1);
@@ -30139,7 +30141,9 @@ class Step {
30139
30141
  getStartTime() {
30140
30142
  return this._startTime;
30141
30143
  }
30142
- onBind() {}
30144
+ onBind() {
30145
+ "glyph" === this.target.type && (this.syncAttributeUpdate = this._syncAttributeUpdate);
30146
+ }
30143
30147
  onFirstRun() {}
30144
30148
  onStart() {
30145
30149
  if (!this._hasFirstRun) {
@@ -30179,7 +30183,7 @@ class Step {
30179
30183
  if (!this.animate.validAttr(this.propKeys[index])) return;
30180
30184
  const key = this.propKeys[index];
30181
30185
  func(key, this.fromProps[key], this.props[key], easedRatio, this, this.target);
30182
- }), this.onUpdate(end, easedRatio, out);
30186
+ }), this.onUpdate(end, easedRatio, out), this.syncAttributeUpdate();
30183
30187
  }
30184
30188
  onUpdate(end, ratio, out) {}
30185
30189
  onEnd(cb) {
@@ -30844,7 +30848,7 @@ class AnimateExecutor {
30844
30848
  var _a, _b, _c, _d;
30845
30849
  if (custom && customType) {
30846
30850
  const customParams = this.resolveValue(customParameters, graphic, {}),
30847
- objOptions = isFunction$1(options) ? options.call(null, null !== (_b = customParameters && (null === (_a = customParameters.data) || void 0 === _a ? void 0 : _a[0])) && void 0 !== _b ? _b : null === (_d = null === (_c = graphic.context) || void 0 === _c ? void 0 : _c.data) || void 0 === _d ? void 0 : _d[0], graphic, customParameters) : options;
30851
+ objOptions = isFunction$1(options) ? options.call(null, null !== (_b = customParams && (null === (_a = customParams.data) || void 0 === _a ? void 0 : _a[0])) && void 0 !== _b ? _b : null === (_d = null === (_c = graphic.context) || void 0 === _c ? void 0 : _c.data) || void 0 === _d ? void 0 : _d[0], graphic, customParams) : options;
30848
30852
  customParams.options = objOptions, 1 === customType ? this.createCustomAnimation(animate, custom, from, props, duration, easing, customParams) : 2 === customType && this.createCustomInterpolatorAnimation(animate, custom, props, duration, easing, customParams);
30849
30853
  } else "to" === type ? animate.to(props, duration, easing) : "from" === type && animate.from(props, duration, easing);
30850
30854
  }
@@ -30880,6 +30884,7 @@ class AnimateExecutor {
30880
30884
  delayAfterValue = isFunction$1(delayAfter) ? delayAfter(null === (_d = null === (_c = graphic.context) || void 0 === _c ? void 0 : _c.data) || void 0 === _d ? void 0 : _d[0], graphic, {}) : delayAfter;
30881
30885
  delayValue > 0 && animate.wait(delayValue);
30882
30886
  (Array.isArray(effects) ? effects : [effects]).forEach(effect => {
30887
+ var _a, _b;
30883
30888
  const {
30884
30889
  type = "fromTo",
30885
30890
  channel: channel,
@@ -30890,7 +30895,10 @@ class AnimateExecutor {
30890
30895
  let parsedFromProps = null,
30891
30896
  props = effect.to,
30892
30897
  from = effect.from;
30893
- props || (parsedFromProps || (parsedFromProps = this.createPropsFromChannel(channel, graphic)), props = parsedFromProps.props), from || (parsedFromProps || (parsedFromProps = this.createPropsFromChannel(channel, graphic)), from = parsedFromProps.from), this._handleRunAnimate(animate, effect.custom, effect.customType, from, props, duration, easing, customParameters, options, type, graphic);
30898
+ props || (parsedFromProps || (parsedFromProps = this.createPropsFromChannel(channel, graphic)), props = parsedFromProps.props), from || (parsedFromProps || (parsedFromProps = this.createPropsFromChannel(channel, graphic)), from = parsedFromProps.from);
30899
+ const custom = null !== (_a = effect.custom) && void 0 !== _a ? _a : AnimateExecutor.builtInAnimateMap[type],
30900
+ customType = null !== (_b = effect.customType) && void 0 !== _b ? _b : custom && isFunction$1(custom) ? /^class\s/.test(Function.prototype.toString.call(custom)) ? 1 : 2 : 0;
30901
+ this._handleRunAnimate(animate, custom, customType, from, props, duration, easing, customParameters, options, type, graphic);
30894
30902
  }), delayAfterValue > 0 && animate.wait(delayAfterValue);
30895
30903
  }
30896
30904
  createCustomInterpolatorAnimation(animate, interpolator, props, duration, easing, customParams) {
@@ -30912,9 +30920,9 @@ class AnimateExecutor {
30912
30920
  var _a, _b;
30913
30921
  const value = null === (_b = null === (_a = graphic.context) || void 0 === _a ? void 0 : _a.diffAttrs) || void 0 === _b ? void 0 : _b[key];
30914
30922
  void 0 !== value && (props[key] = value);
30915
- }) : Object.entries(channel).forEach(_ref => {
30916
- let [key, config] = _ref;
30923
+ }) : Object.keys(channel).forEach(key => {
30917
30924
  var _a, _b;
30925
+ const config = channel[key];
30918
30926
  void 0 !== config.to && ("function" == typeof config.to ? props[key] = config.to(null === (_a = graphic.context) || void 0 === _a ? void 0 : _a.data, graphic, {}) : props[key] = config.to), void 0 !== config.from && (from || (from = {}), "function" == typeof config.from ? from[key] = config.from(null === (_b = graphic.context) || void 0 === _b ? void 0 : _b.data, graphic, {}) : from[key] = config.from);
30919
30927
  }), {
30920
30928
  from: from,
@@ -31162,7 +31170,7 @@ class ACustomAnimate extends Step {
31162
31170
  update(end, ratio, out) {
31163
31171
  if (this.onStart(), !this.props || !this.propKeys) return;
31164
31172
  const easedRatio = this.easing(ratio);
31165
- this.onUpdate(end, easedRatio, out);
31173
+ this.onUpdate(end, easedRatio, out), this.syncAttributeUpdate();
31166
31174
  }
31167
31175
  setProps(props) {
31168
31176
  this.props = props, this.propKeys = Object.keys(props), this.animate.reSyncProps();
@@ -31356,7 +31364,7 @@ class ClipGraphicAnimate extends ACustomAnimate {
31356
31364
  super(null, null, duration, easing, params), this.clipFromAttribute = from, this.clipToAttribute = to, this._group = null == params ? void 0 : params.group, this._clipGraphic = null == params ? void 0 : params.clipGraphic;
31357
31365
  }
31358
31366
  onBind() {
31359
- this._group && this._clipGraphic && (this._lastClip = this._group.attribute.clip, this._lastPath = this._group.attribute.path, this._group.setAttributes({
31367
+ super.onBind(), this._group && this._clipGraphic && (this._lastClip = this._group.attribute.clip, this._lastPath = this._group.attribute.path, this._group.setAttributes({
31360
31368
  clip: !0,
31361
31369
  path: [this._clipGraphic]
31362
31370
  }, !1, {
@@ -31514,6 +31522,7 @@ class TagPointsUpdate extends ACustomAnimate {
31514
31522
  return [];
31515
31523
  }
31516
31524
  onBind() {
31525
+ super.onBind();
31517
31526
  const {
31518
31527
  points: points,
31519
31528
  segments: segments
@@ -31595,6 +31604,7 @@ class CommonIn extends ACustomAnimate {
31595
31604
  }
31596
31605
  onBind() {
31597
31606
  var _a;
31607
+ super.onBind();
31598
31608
  const attrs = this.target.getFinalAttribute(),
31599
31609
  fromAttrs = null !== (_a = this.target.attribute) && void 0 !== _a ? _a : {},
31600
31610
  to = {},
@@ -31621,6 +31631,7 @@ class CommonOut extends ACustomAnimate {
31621
31631
  super(from, to, duration, easing, params);
31622
31632
  }
31623
31633
  onBind() {
31634
+ super.onBind();
31624
31635
  const attrs = this.target.attribute,
31625
31636
  to = {},
31626
31637
  from = {};
@@ -31664,7 +31675,9 @@ class RotateBySphereAnimate extends ACustomAnimate {
31664
31675
  let theta = Math.acos((startX - center.x) / r / Math.sin(phi));
31665
31676
  startZ - center.z < 0 && (theta = pi2 - theta), this.theta = theta, this.phi = phi;
31666
31677
  }
31667
- onBind() {}
31678
+ onBind() {
31679
+ super.onBind();
31680
+ }
31668
31681
  onEnd() {}
31669
31682
  onUpdate(end, ratio, out) {
31670
31683
  if (null == this.phi || null == this.theta) return;
@@ -31828,6 +31841,7 @@ class GrowAngleBase extends ACustomAnimate {
31828
31841
  class GrowAngleIn extends GrowAngleBase {
31829
31842
  onBind() {
31830
31843
  var _a, _b;
31844
+ super.onBind();
31831
31845
  const {
31832
31846
  from: from,
31833
31847
  to: to
@@ -31840,6 +31854,7 @@ class GrowAngleIn extends GrowAngleBase {
31840
31854
  }
31841
31855
  class GrowAngleOut extends GrowAngleBase {
31842
31856
  onBind() {
31857
+ super.onBind();
31843
31858
  const {
31844
31859
  from: from,
31845
31860
  to: to
@@ -31978,6 +31993,7 @@ class GrowCenterIn extends ACustomAnimate {
31978
31993
  }
31979
31994
  onBind() {
31980
31995
  var _a, _b;
31996
+ super.onBind();
31981
31997
  const {
31982
31998
  from: from,
31983
31999
  to: to
@@ -32002,6 +32018,7 @@ class GrowCenterOut extends ACustomAnimate {
32002
32018
  super(from, to, duration, easing, params);
32003
32019
  }
32004
32020
  onBind() {
32021
+ super.onBind();
32005
32022
  const {
32006
32023
  from: from,
32007
32024
  to: to
@@ -32083,6 +32100,7 @@ class GrowHeightIn extends ACustomAnimate {
32083
32100
  }
32084
32101
  onBind() {
32085
32102
  var _a, _b;
32103
+ super.onBind();
32086
32104
  const {
32087
32105
  from: from,
32088
32106
  to: to
@@ -32145,6 +32163,7 @@ class GrowHeightOut extends ACustomAnimate {
32145
32163
  super(from, to, duration, easing, params);
32146
32164
  }
32147
32165
  onBind() {
32166
+ super.onBind();
32148
32167
  const {
32149
32168
  from: from,
32150
32169
  to: to
@@ -32197,7 +32216,7 @@ class GworPointsBase extends ACustomAnimate {
32197
32216
  }
32198
32217
  class GrowPointsIn extends GworPointsBase {
32199
32218
  onBind() {
32200
- if (["area", "line", "polygon"].includes(this.target.type)) {
32219
+ if (super.onBind(), ["area", "line", "polygon"].includes(this.target.type)) {
32201
32220
  const {
32202
32221
  from: from,
32203
32222
  to: to
@@ -32210,7 +32229,7 @@ class GrowPointsIn extends GworPointsBase {
32210
32229
  }
32211
32230
  class GrowPointsOut extends GworPointsBase {
32212
32231
  onBind() {
32213
- if (["area", "line"].includes(this.target.type)) {
32232
+ if (super.onBind(), ["area", "line"].includes(this.target.type)) {
32214
32233
  const attrs = this.target.getFinalAttribute(),
32215
32234
  {
32216
32235
  from: from,
@@ -32261,7 +32280,7 @@ const changePointsX = (graphic, options, animationParameters) => graphic.getFina
32261
32280
  };
32262
32281
  class GrowPointsXIn extends GworPointsBase {
32263
32282
  onBind() {
32264
- if (["area", "line", "polygon"].includes(this.target.type)) {
32283
+ if (super.onBind(), ["area", "line", "polygon"].includes(this.target.type)) {
32265
32284
  const {
32266
32285
  from: from,
32267
32286
  to: to
@@ -32274,7 +32293,7 @@ class GrowPointsXIn extends GworPointsBase {
32274
32293
  }
32275
32294
  class GrowPointsXOut extends GworPointsBase {
32276
32295
  onBind() {
32277
- if (["area", "line"].includes(this.target.type)) {
32296
+ if (super.onBind(), ["area", "line"].includes(this.target.type)) {
32278
32297
  const attrs = this.target.getFinalAttribute(),
32279
32298
  {
32280
32299
  from: from,
@@ -32325,7 +32344,7 @@ const changePointsY = (graphic, options, animationParameters) => graphic.getFina
32325
32344
  };
32326
32345
  class GrowPointsYIn extends GworPointsBase {
32327
32346
  onBind() {
32328
- if (["area", "line", "polygon"].includes(this.target.type)) {
32347
+ if (super.onBind(), ["area", "line", "polygon"].includes(this.target.type)) {
32329
32348
  const {
32330
32349
  from: from,
32331
32350
  to: to
@@ -32338,7 +32357,7 @@ class GrowPointsYIn extends GworPointsBase {
32338
32357
  }
32339
32358
  class GrowPointsYOut extends GworPointsBase {
32340
32359
  onBind() {
32341
- if (["area", "line", "polygon"].includes(this.target.type)) {
32360
+ if (super.onBind(), ["area", "line", "polygon"].includes(this.target.type)) {
32342
32361
  const {
32343
32362
  from: from,
32344
32363
  to: to
@@ -32438,6 +32457,7 @@ class GrowPointsBase extends ACustomAnimate {
32438
32457
  class GrowRadiusIn extends GrowPointsBase {
32439
32458
  onBind() {
32440
32459
  var _a, _b;
32460
+ super.onBind();
32441
32461
  const {
32442
32462
  from: from,
32443
32463
  to: to
@@ -32450,6 +32470,7 @@ class GrowRadiusIn extends GrowPointsBase {
32450
32470
  }
32451
32471
  class GrowRadiusOut extends GrowPointsBase {
32452
32472
  onBind() {
32473
+ super.onBind();
32453
32474
  const {
32454
32475
  to: to
32455
32476
  } = (graphic = this.target, options = this.params.options, this.params, !1 !== (null !== (_a = null == options ? void 0 : options.overall) && void 0 !== _a && _a) ? growRadiusOutOverall(graphic, options) : growRadiusOutIndividual(graphic, options));
@@ -32560,6 +32581,7 @@ class GrowWidthIn extends ACustomAnimate {
32560
32581
  }
32561
32582
  onBind() {
32562
32583
  var _a, _b;
32584
+ super.onBind();
32563
32585
  const {
32564
32586
  from: from,
32565
32587
  to: to
@@ -32584,6 +32606,7 @@ class GrowWidthOut extends ACustomAnimate {
32584
32606
  super(from, to, duration, easing, params);
32585
32607
  }
32586
32608
  onBind() {
32609
+ super.onBind();
32587
32610
  const {
32588
32611
  from: from,
32589
32612
  to: to
@@ -32604,6 +32627,7 @@ class GrowWidthOut extends ACustomAnimate {
32604
32627
 
32605
32628
  class LabelItemAppear extends AComponentAnimate {
32606
32629
  onBind() {
32630
+ super.onBind();
32607
32631
  const animator = createComponentAnimator(this.target);
32608
32632
  this._animator = animator;
32609
32633
  const duration = this.duration,
@@ -32742,6 +32766,7 @@ class LabelItemAppear extends AComponentAnimate {
32742
32766
  }
32743
32767
  class LabelItemDisappear extends AComponentAnimate {
32744
32768
  onBind() {
32769
+ super.onBind();
32745
32770
  const animator = createComponentAnimator(this.target);
32746
32771
  this._animator = animator;
32747
32772
  const duration = this.duration,
@@ -32824,6 +32849,7 @@ class LabelItemDisappear extends AComponentAnimate {
32824
32849
 
32825
32850
  class PoptipAppear extends AComponentAnimate {
32826
32851
  onBind() {
32852
+ super.onBind();
32827
32853
  const animator = createComponentAnimator(this.target);
32828
32854
  this._animator = animator;
32829
32855
  const duration = this.duration,
@@ -32906,6 +32932,7 @@ class PoptipAppear extends AComponentAnimate {
32906
32932
  }
32907
32933
  class PoptipDisappear extends AComponentAnimate {
32908
32934
  onBind() {
32935
+ super.onBind();
32909
32936
  const animator = createComponentAnimator(this.target);
32910
32937
  this._animator = animator;
32911
32938
  const duration = this.duration,
@@ -33315,6 +33342,7 @@ class ScaleIn extends ACustomAnimate {
33315
33342
  onBind() {
33316
33343
  var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
33317
33344
  let from, to;
33345
+ super.onBind();
33318
33346
  const attrs = this.target.getFinalAttribute(),
33319
33347
  fromAttrs = null !== (_a = this.target.attribute) && void 0 !== _a ? _a : {};
33320
33348
  switch (null === (_b = this.params) || void 0 === _b ? void 0 : _b.direction) {
@@ -33372,6 +33400,7 @@ class ScaleOut extends ACustomAnimate {
33372
33400
  onBind() {
33373
33401
  var _a, _b, _c, _d, _e;
33374
33402
  let from, to;
33403
+ super.onBind();
33375
33404
  const attrs = this.target.attribute;
33376
33405
  switch (null === (_a = this.params) || void 0 === _a ? void 0 : _a.direction) {
33377
33406
  case "x":
@@ -33421,7 +33450,7 @@ class State extends ACustomAnimate {
33421
33450
  if (!this.animate.validAttr(this.propKeys[index])) return;
33422
33451
  const key = this.propKeys[index];
33423
33452
  func(key, this.fromProps[key], this.props[key], easedRatio, this, this.target);
33424
- }), this.onUpdate(end, easedRatio, out);
33453
+ }), this.onUpdate(end, easedRatio, out), this.syncAttributeUpdate();
33425
33454
  }
33426
33455
  }
33427
33456
 
@@ -33431,6 +33460,7 @@ class SlideIn extends ACustomAnimate {
33431
33460
  }
33432
33461
  onBind() {
33433
33462
  var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;
33463
+ super.onBind();
33434
33464
  const attrs = this.target.getFinalAttribute(),
33435
33465
  direction = (null === (_a = this.params) || void 0 === _a ? void 0 : _a.direction) || "right",
33436
33466
  distance = (null === (_b = this.params) || void 0 === _b ? void 0 : _b.distance) || 50,
@@ -33458,6 +33488,7 @@ class GrowIn extends ACustomAnimate {
33458
33488
  }
33459
33489
  onBind() {
33460
33490
  var _a, _b, _c, _d, _e, _f, _g;
33491
+ super.onBind();
33461
33492
  const attrs = this.target.getFinalAttribute(),
33462
33493
  fromScale = null !== (_b = null === (_a = this.params) || void 0 === _a ? void 0 : _a.fromScale) && void 0 !== _b ? _b : 0,
33463
33494
  direction = (null === (_c = this.params) || void 0 === _c ? void 0 : _c.direction) || "xy",
@@ -33485,6 +33516,7 @@ class SpinIn extends ACustomAnimate {
33485
33516
  }
33486
33517
  onBind() {
33487
33518
  var _a, _b, _c, _d, _e, _f, _g, _h, _j;
33519
+ super.onBind();
33488
33520
  const attrs = this.target.getFinalAttribute(),
33489
33521
  fromAngle = null !== (_b = null === (_a = this.params) || void 0 === _a ? void 0 : _a.fromAngle) && void 0 !== _b ? _b : 2 * Math.PI,
33490
33522
  fromScale = null !== (_d = null === (_c = this.params) || void 0 === _c ? void 0 : _c.fromScale) && void 0 !== _d ? _d : 0,
@@ -33521,6 +33553,7 @@ class MoveScaleIn extends ACustomAnimate {
33521
33553
  }
33522
33554
  onBind() {
33523
33555
  var _a, _b, _c, _d, _e, _f;
33556
+ super.onBind();
33524
33557
  const executor = new AnimateExecutor(this.target);
33525
33558
  executor.execute({
33526
33559
  type: "custom",
@@ -33556,6 +33589,7 @@ class MoveRotateIn extends ACustomAnimate {
33556
33589
  }
33557
33590
  onBind() {
33558
33591
  var _a, _b, _c, _d, _e, _f;
33592
+ super.onBind();
33559
33593
  const executor = new AnimateExecutor(this.target);
33560
33594
  executor.execute({
33561
33595
  type: "custom",
@@ -33751,6 +33785,7 @@ class Update extends ACustomAnimate {
33751
33785
  }
33752
33786
  onBind() {
33753
33787
  var _a, _b;
33788
+ super.onBind();
33754
33789
  let {
33755
33790
  diffAttrs = {}
33756
33791
  } = null !== (_a = this.target.context) && void 0 !== _a ? _a : {};
@@ -33883,6 +33918,7 @@ class MoveBase extends ACustomAnimate {
33883
33918
  }
33884
33919
  class MoveIn extends MoveBase {
33885
33920
  onBind() {
33921
+ super.onBind();
33886
33922
  const {
33887
33923
  from: from,
33888
33924
  to: to
@@ -33894,6 +33930,7 @@ class MoveIn extends MoveBase {
33894
33930
  }
33895
33931
  class MoveOut extends MoveBase {
33896
33932
  onBind() {
33933
+ super.onBind();
33897
33934
  const {
33898
33935
  from: from,
33899
33936
  to: to
@@ -33941,6 +33978,7 @@ class RotateBase extends ACustomAnimate {
33941
33978
  }
33942
33979
  class RotateIn extends RotateBase {
33943
33980
  onBind() {
33981
+ super.onBind();
33944
33982
  const {
33945
33983
  from: from,
33946
33984
  to: to
@@ -33952,6 +33990,7 @@ class RotateIn extends RotateBase {
33952
33990
  }
33953
33991
  class RotateOut extends RotateBase {
33954
33992
  onBind() {
33993
+ super.onBind();
33955
33994
  const {
33956
33995
  from: from,
33957
33996
  to: to
@@ -33960,43 +33999,249 @@ class RotateOut extends RotateBase {
33960
33999
  }
33961
34000
  }
33962
34001
 
34002
+ class MotionPath extends ACustomAnimate {
34003
+ constructor(from, to, duration, easing, params) {
34004
+ var _a;
34005
+ super(from, to, duration, easing, params), params && (this.pathLength = params.path.getLength(), this.path = params.path, this.distance = params.distance, this.totalLength = this.distance * this.pathLength, this.initAngle = null !== (_a = params.initAngle) && void 0 !== _a ? _a : 0, this.changeAngle = !!params.changeAngle, this.cb = params.cb);
34006
+ }
34007
+ onBind() {
34008
+ this.from = {
34009
+ x: 0,
34010
+ y: 0
34011
+ }, this.to = this.path.getAttrAt(this.totalLength).pos, this.props = this.to;
34012
+ }
34013
+ onUpdate(end, ratio, out) {
34014
+ const attrs = {},
34015
+ at = this.totalLength * ratio,
34016
+ {
34017
+ pos: pos,
34018
+ angle: angle
34019
+ } = this.path.getAttrAt(at);
34020
+ attrs.x = pos.x, attrs.y = pos.y, this.changeAngle && (attrs.angle = angle + this.initAngle), this.cb && this.cb(this.from, this.to, ratio, this.target), this.target.setAttributes(attrs);
34021
+ }
34022
+ }
34023
+
33963
34024
  class FromTo extends ACustomAnimate {
33964
34025
  constructor(from, to, duration, easing, params) {
33965
- super(from, to, duration, easing, params), this.from = from, this.to = to;
34026
+ super(from, to, duration, easing, params), this.from = null != from ? from : {};
33966
34027
  }
33967
34028
  onBind() {
34029
+ super.onBind();
34030
+ const finalAttribute = this.target.getFinalAttribute();
34031
+ Object.keys(this.from).forEach(key => {
34032
+ null == this.props[key] && (this.props[key] = finalAttribute[key]);
34033
+ });
34034
+ }
34035
+ onFirstRun() {
33968
34036
  var _a;
33969
- const finalAttribute = this.target.getFinalAttribute(),
33970
- currAttribute = this.target.attribute,
33971
- fromKeys = Object.keys(this.from),
33972
- toKeys = Object.keys(this.to);
33973
- if (fromKeys.forEach(key => {
33974
- var _a;
33975
- null == this.to[key] && (this.to[key] = null !== (_a = finalAttribute[key]) && void 0 !== _a ? _a : 0);
33976
- }), toKeys.forEach(key => {
34037
+ this.from = Object.assign(Object.assign({}, this.getLastProps()), this.from);
34038
+ const startProps = this.animate.getStartProps();
34039
+ if (this.propKeys && this.propKeys.forEach(key => {
33977
34040
  var _a;
33978
- null == this.from[key] && (this.from[key] = null !== (_a = currAttribute[key]) && void 0 !== _a ? _a : 0);
33979
- }), this.propKeys = Object.keys(this.from), "appear" === (null === (_a = this.target.context) || void 0 === _a ? void 0 : _a.animationState)) {
34041
+ this.from[key] = null !== (_a = this.from[key]) && void 0 !== _a ? _a : startProps[key];
34042
+ }), "appear" === (null === (_a = this.target.context) || void 0 === _a ? void 0 : _a.animationState)) {
33980
34043
  const finalAttribute = this.target.getFinalAttribute();
33981
34044
  this.target.setAttributes(finalAttribute);
33982
34045
  }
34046
+ this.target.setAttributes(this.from);
33983
34047
  }
33984
34048
  update(end, ratio, out) {
33985
34049
  if (this.onStart(), !this.props || !this.propKeys) return;
33986
34050
  const easedRatio = this.easing(ratio);
33987
- this.interpolateUpdateFunctions.forEach((func, index) => {
34051
+ this.animate.interpolateUpdateFunction ? this.animate.interpolateUpdateFunction(this.from, this.props, easedRatio, this, this.target) : this.interpolateUpdateFunctions.forEach((func, index) => {
33988
34052
  if (!this.animate.validAttr(this.propKeys[index])) return;
33989
34053
  const key = this.propKeys[index];
33990
- func(key, this.from[key], this.to[key], easedRatio, this, this.target);
33991
- });
34054
+ func(key, this.from[key], this.props[key], easedRatio, this, this.target);
34055
+ }), this.onUpdate(end, easedRatio, out), this.syncAttributeUpdate();
34056
+ }
34057
+ }
34058
+
34059
+ class StreamLight extends ACustomAnimate {
34060
+ constructor(from, to, duration, easing, params) {
34061
+ super(from, to, duration, easing, params);
34062
+ }
34063
+ getEndProps() {
34064
+ return {};
34065
+ }
34066
+ onStart() {
34067
+ this.target && ("rect" === this.target.type ? this.onStartRect() : "line" === this.target.type ? this.onStartLineOrArea("line") : "area" === this.target.type && this.onStartLineOrArea("area"));
34068
+ }
34069
+ onStartLineOrArea(type) {
34070
+ var _a;
34071
+ const root = this.target.attachShadow(),
34072
+ line = application.graphicService.creator[type](Object.assign({}, null === (_a = this.params) || void 0 === _a ? void 0 : _a.attribute));
34073
+ this[type] = line, line.pathProxy = new CustomPath2D(), root.add(line);
34074
+ }
34075
+ onStartRect() {
34076
+ var _a, _b, _c;
34077
+ const root = this.target.attachShadow(),
34078
+ isHorizontal = null === (_b = null === (_a = this.params) || void 0 === _a ? void 0 : _a.isHorizontal) || void 0 === _b || _b,
34079
+ sizeAttr = isHorizontal ? "height" : "width",
34080
+ otherSizeAttr = isHorizontal ? "width" : "height",
34081
+ size = this.target.AABBBounds[sizeAttr](),
34082
+ y = isHorizontal ? 0 : this.target.AABBBounds.y1,
34083
+ rect = application.graphicService.creator.rect(Object.assign(Object.assign({
34084
+ [sizeAttr]: size,
34085
+ fill: "#bcdeff",
34086
+ shadowBlur: 30,
34087
+ shadowColor: "#bcdeff"
34088
+ }, null === (_c = this.params) || void 0 === _c ? void 0 : _c.attribute), {
34089
+ x: 0,
34090
+ y: y,
34091
+ [otherSizeAttr]: 0
34092
+ }));
34093
+ this.rect = rect, root.add(rect);
34094
+ }
34095
+ onBind() {}
34096
+ onEnd() {
34097
+ this.target.detachShadow();
34098
+ }
34099
+ onUpdate(end, ratio, out) {
34100
+ return this.rect ? this.onUpdateRect(end, ratio, out) : this.line || this.area ? this.onUpdateLineOrArea(end, ratio, out) : void 0;
34101
+ }
34102
+ onUpdateRect(end, ratio, out) {
34103
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r;
34104
+ const isHorizontal = null === (_b = null === (_a = this.params) || void 0 === _a ? void 0 : _a.isHorizontal) || void 0 === _b || _b,
34105
+ parentAttr = this.target.attribute;
34106
+ if (isHorizontal) {
34107
+ const parentWidth = null !== (_d = null !== (_c = parentAttr.width) && void 0 !== _c ? _c : Math.abs(parentAttr.x1 - parentAttr.x)) && void 0 !== _d ? _d : 250,
34108
+ streamLength = null !== (_f = null === (_e = this.params) || void 0 === _e ? void 0 : _e.streamLength) && void 0 !== _f ? _f : parentWidth,
34109
+ maxLength = null !== (_j = null === (_h = null === (_g = this.params) || void 0 === _g ? void 0 : _g.attribute) || void 0 === _h ? void 0 : _h.width) && void 0 !== _j ? _j : 60,
34110
+ startX = -maxLength,
34111
+ currentX = startX + (streamLength - startX) * ratio,
34112
+ x = Math.max(currentX, 0),
34113
+ w = Math.min(Math.min(currentX + maxLength, maxLength), streamLength - currentX),
34114
+ width = w + x > parentWidth ? Math.max(parentWidth - x, 0) : w;
34115
+ this.rect.setAttributes({
34116
+ x: x,
34117
+ width: width,
34118
+ dx: Math.min(parentAttr.x1 - parentAttr.x, 0)
34119
+ }, !1, {
34120
+ type: AttributeUpdateType.ANIMATE_PLAY,
34121
+ animationState: {
34122
+ ratio: ratio,
34123
+ end: end
34124
+ }
34125
+ });
34126
+ } else {
34127
+ const parentHeight = null !== (_l = null !== (_k = parentAttr.height) && void 0 !== _k ? _k : Math.abs(parentAttr.y1 - parentAttr.y)) && void 0 !== _l ? _l : 250,
34128
+ streamLength = null !== (_o = null === (_m = this.params) || void 0 === _m ? void 0 : _m.streamLength) && void 0 !== _o ? _o : parentHeight,
34129
+ maxLength = null !== (_r = null === (_q = null === (_p = this.params) || void 0 === _p ? void 0 : _p.attribute) || void 0 === _q ? void 0 : _q.height) && void 0 !== _r ? _r : 60,
34130
+ currentY = parentHeight - (streamLength + maxLength) * ratio;
34131
+ let y = Math.min(currentY, parentHeight);
34132
+ const h = Math.min(parentHeight - currentY, maxLength);
34133
+ let height;
34134
+ y <= 0 ? (height = Math.max(y + h, 0), y = 0) : height = h, this.rect.setAttributes({
34135
+ y: y,
34136
+ height: height,
34137
+ dy: Math.min(parentAttr.y1 - parentAttr.y, 0)
34138
+ }, !1, {
34139
+ type: AttributeUpdateType.ANIMATE_PLAY,
34140
+ animationState: {
34141
+ ratio: ratio,
34142
+ end: end
34143
+ }
34144
+ });
34145
+ }
34146
+ }
34147
+ onUpdateLineOrArea(end, ratio, out) {
34148
+ const target = this.line || this.area;
34149
+ if (!target) return;
34150
+ const customPath = target.pathProxy,
34151
+ targetLine = this.target;
34152
+ targetLine.cache || targetLine.cacheArea ? this._onUpdateLineOrAreaWithCache(customPath, targetLine, end, ratio, out) : this._onUpdateLineWithoutCache(customPath, targetLine, end, ratio, out);
34153
+ const targetAttrs = targetLine.attribute;
34154
+ target.setAttributes(Object.assign({
34155
+ stroke: targetAttrs.stroke
34156
+ }, target.attribute)), target.addUpdateBoundTag();
34157
+ }
34158
+ _onUpdateLineOrAreaWithCache(customPath, g, end, ratio, out) {
34159
+ var _a, _b;
34160
+ if (customPath.clear(), "line" === g.type) {
34161
+ let cache = g.cache;
34162
+ Array.isArray(cache) || (cache = [cache]);
34163
+ const totalLen = cache.reduce((l, c) => l + c.getLength(), 0),
34164
+ curves = [];
34165
+ return cache.forEach(c => {
34166
+ c.curves.forEach(ci => curves.push(ci));
34167
+ }), this._updateCurves(customPath, curves, totalLen, ratio);
34168
+ }
34169
+ if ("area" === g.type && (null === (_b = null === (_a = g.cacheArea) || void 0 === _a ? void 0 : _a.top) || void 0 === _b ? void 0 : _b.curves)) {
34170
+ const cache = g.cacheArea,
34171
+ totalLen = cache.top.curves.reduce((a, b) => a + b.getLength(), 0);
34172
+ return this._updateCurves(customPath, cache.top.curves, totalLen, ratio);
34173
+ }
34174
+ }
34175
+ _updateCurves(customPath, curves, totalLen, ratio) {
34176
+ var _a, _b;
34177
+ const startLen = totalLen * ratio,
34178
+ endLen = Math.min(startLen + (null !== (_b = null === (_a = this.params) || void 0 === _a ? void 0 : _a.streamLength) && void 0 !== _b ? _b : 10), totalLen);
34179
+ let lastLen = 0,
34180
+ start = !1;
34181
+ for (let i = 0; i < curves.length; i++) if (!1 !== curves[i].defined) {
34182
+ const curveItem = curves[i],
34183
+ len = curveItem.getLength(),
34184
+ startPercent = 1 - (lastLen + len - startLen) / len;
34185
+ let curveForStart,
34186
+ endPercent = 1 - (lastLen + len - endLen) / len;
34187
+ if (lastLen < startLen && lastLen + len > startLen) if (start = !0, curveItem.p2 && curveItem.p3) {
34188
+ const [_, curve2] = divideCubic(curveItem, startPercent);
34189
+ customPath.moveTo(curve2.p0.x, curve2.p0.y), curveForStart = curve2;
34190
+ } else {
34191
+ const p = curveItem.getPointAt(startPercent);
34192
+ customPath.moveTo(p.x, p.y);
34193
+ }
34194
+ if (lastLen < endLen && lastLen + len > endLen) {
34195
+ if (curveItem.p2 && curveItem.p3) {
34196
+ curveForStart && (endPercent = (endLen - startLen) / curveForStart.getLength());
34197
+ const [curve1] = divideCubic(curveForStart || curveItem, endPercent);
34198
+ customPath.bezierCurveTo(curve1.p1.x, curve1.p1.y, curve1.p2.x, curve1.p2.y, curve1.p3.x, curve1.p3.y);
34199
+ } else {
34200
+ const p = curveItem.getPointAt(endPercent);
34201
+ customPath.lineTo(p.x, p.y);
34202
+ }
34203
+ break;
34204
+ }
34205
+ if (start) if (curveItem.p2 && curveItem.p3) {
34206
+ const curve = curveForStart || curveItem;
34207
+ customPath.bezierCurveTo(curve.p1.x, curve.p1.y, curve.p2.x, curve.p2.y, curve.p3.x, curve.p3.y);
34208
+ } else customPath.lineTo(curveItem.p1.x, curveItem.p1.y);
34209
+ lastLen += len;
34210
+ }
34211
+ }
34212
+ _onUpdateLineWithoutCache(customPath, line, end, ratio, out) {
34213
+ var _a, _b;
34214
+ const {
34215
+ points: points,
34216
+ curveType: curveType
34217
+ } = line.attribute;
34218
+ if (!points || points.length < 2 || "linear" !== curveType) return;
34219
+ let totalLen = 0;
34220
+ for (let i = 1; i < points.length; i++) totalLen += PointService.distancePP(points[i], points[i - 1]);
34221
+ const startLen = totalLen * ratio,
34222
+ endLen = Math.min(startLen + (null !== (_b = null === (_a = this.params) || void 0 === _a ? void 0 : _a.streamLength) && void 0 !== _b ? _b : 10), totalLen),
34223
+ nextPoints = [];
34224
+ let lastLen = 0;
34225
+ for (let i = 1; i < points.length; i++) {
34226
+ const len = PointService.distancePP(points[i], points[i - 1]);
34227
+ if (lastLen < startLen && lastLen + len > startLen && nextPoints.push(PointService.pointAtPP(points[i - 1], points[i], 1 - (lastLen + len - startLen) / len)), lastLen < endLen && lastLen + len > endLen) {
34228
+ nextPoints.push(PointService.pointAtPP(points[i - 1], points[i], 1 - (lastLen + len - endLen) / len));
34229
+ break;
34230
+ }
34231
+ nextPoints.length && nextPoints.push(points[i]), lastLen += len;
34232
+ }
34233
+ if (nextPoints.length && !(nextPoints.length < 2)) {
34234
+ customPath.clear(), customPath.moveTo(nextPoints[0].x, nextPoints[0].y);
34235
+ for (let i = 1; i < nextPoints.length; i++) customPath.lineTo(nextPoints[i].x, nextPoints[i].y);
34236
+ }
33992
34237
  }
33993
34238
  }
33994
34239
 
33995
34240
  const registerCustomAnimate = () => {
33996
- AnimateExecutor.registerBuiltInAnimate("increaseCount", IncreaseCount), AnimateExecutor.registerBuiltInAnimate("fromTo", FromTo), AnimateExecutor.registerBuiltInAnimate("scaleIn", ScaleIn), AnimateExecutor.registerBuiltInAnimate("scaleOut", ScaleOut), AnimateExecutor.registerBuiltInAnimate("growHeightIn", GrowHeightIn), AnimateExecutor.registerBuiltInAnimate("growHeightOut", GrowHeightOut), AnimateExecutor.registerBuiltInAnimate("growWidthIn", GrowWidthIn), AnimateExecutor.registerBuiltInAnimate("growWidthOut", GrowWidthOut), AnimateExecutor.registerBuiltInAnimate("growCenterIn", GrowCenterIn), AnimateExecutor.registerBuiltInAnimate("growCenterOut", GrowCenterOut), AnimateExecutor.registerBuiltInAnimate("clipIn", ClipIn), AnimateExecutor.registerBuiltInAnimate("clipOut", ClipOut), AnimateExecutor.registerBuiltInAnimate("fadeIn", FadeIn), AnimateExecutor.registerBuiltInAnimate("fadeOut", FadeOut), AnimateExecutor.registerBuiltInAnimate("growPointsIn", GrowPointsIn), AnimateExecutor.registerBuiltInAnimate("growPointsOut", GrowPointsOut), AnimateExecutor.registerBuiltInAnimate("growPointsXIn", GrowPointsXIn), AnimateExecutor.registerBuiltInAnimate("growPointsXOut", GrowPointsXOut), AnimateExecutor.registerBuiltInAnimate("growPointsYIn", GrowPointsYIn), AnimateExecutor.registerBuiltInAnimate("growPointsYOut", GrowPointsYOut), AnimateExecutor.registerBuiltInAnimate("growAngleIn", GrowAngleIn), AnimateExecutor.registerBuiltInAnimate("growAngleOut", GrowAngleOut), AnimateExecutor.registerBuiltInAnimate("growRadiusIn", GrowRadiusIn), AnimateExecutor.registerBuiltInAnimate("growRadiusOut", GrowRadiusOut), AnimateExecutor.registerBuiltInAnimate("moveIn", MoveIn), AnimateExecutor.registerBuiltInAnimate("moveOut", MoveOut), AnimateExecutor.registerBuiltInAnimate("rotateIn", RotateIn), AnimateExecutor.registerBuiltInAnimate("rotateOut", RotateOut), AnimateExecutor.registerBuiltInAnimate("update", Update), AnimateExecutor.registerBuiltInAnimate("state", State), AnimateExecutor.registerBuiltInAnimate("labelItemAppear", LabelItemAppear), AnimateExecutor.registerBuiltInAnimate("labelItemDisappear", LabelItemDisappear), AnimateExecutor.registerBuiltInAnimate("poptipAppear", PoptipAppear), AnimateExecutor.registerBuiltInAnimate("poptipDisappear", PoptipDisappear), AnimateExecutor.registerBuiltInAnimate("inputText", InputText), AnimateExecutor.registerBuiltInAnimate("inputRichText", InputRichText), AnimateExecutor.registerBuiltInAnimate("outputRichText", OutputRichText), AnimateExecutor.registerBuiltInAnimate("slideRichText", SlideRichText), AnimateExecutor.registerBuiltInAnimate("slideOutRichText", SlideOutRichText), AnimateExecutor.registerBuiltInAnimate("slideIn", SlideIn), AnimateExecutor.registerBuiltInAnimate("growIn", GrowIn), AnimateExecutor.registerBuiltInAnimate("spinIn", SpinIn), AnimateExecutor.registerBuiltInAnimate("moveScaleIn", MoveScaleIn), AnimateExecutor.registerBuiltInAnimate("moveRotateIn", MoveRotateIn), AnimateExecutor.registerBuiltInAnimate("slideOut", SlideOut), AnimateExecutor.registerBuiltInAnimate("growOut", GrowOut), AnimateExecutor.registerBuiltInAnimate("spinOut", SpinOut), AnimateExecutor.registerBuiltInAnimate("moveScaleOut", MoveScaleOut), AnimateExecutor.registerBuiltInAnimate("moveRotateOut", MoveRotateOut);
34241
+ AnimateExecutor.registerBuiltInAnimate("increaseCount", IncreaseCount), AnimateExecutor.registerBuiltInAnimate("fromTo", FromTo), AnimateExecutor.registerBuiltInAnimate("scaleIn", ScaleIn), AnimateExecutor.registerBuiltInAnimate("scaleOut", ScaleOut), AnimateExecutor.registerBuiltInAnimate("growHeightIn", GrowHeightIn), AnimateExecutor.registerBuiltInAnimate("growHeightOut", GrowHeightOut), AnimateExecutor.registerBuiltInAnimate("growWidthIn", GrowWidthIn), AnimateExecutor.registerBuiltInAnimate("growWidthOut", GrowWidthOut), AnimateExecutor.registerBuiltInAnimate("growCenterIn", GrowCenterIn), AnimateExecutor.registerBuiltInAnimate("growCenterOut", GrowCenterOut), AnimateExecutor.registerBuiltInAnimate("clipIn", ClipIn), AnimateExecutor.registerBuiltInAnimate("clipOut", ClipOut), AnimateExecutor.registerBuiltInAnimate("fadeIn", FadeIn), AnimateExecutor.registerBuiltInAnimate("fadeOut", FadeOut), AnimateExecutor.registerBuiltInAnimate("growPointsIn", GrowPointsIn), AnimateExecutor.registerBuiltInAnimate("growPointsOut", GrowPointsOut), AnimateExecutor.registerBuiltInAnimate("growPointsXIn", GrowPointsXIn), AnimateExecutor.registerBuiltInAnimate("growPointsXOut", GrowPointsXOut), AnimateExecutor.registerBuiltInAnimate("growPointsYIn", GrowPointsYIn), AnimateExecutor.registerBuiltInAnimate("growPointsYOut", GrowPointsYOut), AnimateExecutor.registerBuiltInAnimate("growAngleIn", GrowAngleIn), AnimateExecutor.registerBuiltInAnimate("growAngleOut", GrowAngleOut), AnimateExecutor.registerBuiltInAnimate("growRadiusIn", GrowRadiusIn), AnimateExecutor.registerBuiltInAnimate("growRadiusOut", GrowRadiusOut), AnimateExecutor.registerBuiltInAnimate("moveIn", MoveIn), AnimateExecutor.registerBuiltInAnimate("moveOut", MoveOut), AnimateExecutor.registerBuiltInAnimate("rotateIn", RotateIn), AnimateExecutor.registerBuiltInAnimate("rotateOut", RotateOut), AnimateExecutor.registerBuiltInAnimate("update", Update), AnimateExecutor.registerBuiltInAnimate("state", State), AnimateExecutor.registerBuiltInAnimate("labelItemAppear", LabelItemAppear), AnimateExecutor.registerBuiltInAnimate("labelItemDisappear", LabelItemDisappear), AnimateExecutor.registerBuiltInAnimate("poptipAppear", PoptipAppear), AnimateExecutor.registerBuiltInAnimate("poptipDisappear", PoptipDisappear), AnimateExecutor.registerBuiltInAnimate("inputText", InputText), AnimateExecutor.registerBuiltInAnimate("inputRichText", InputRichText), AnimateExecutor.registerBuiltInAnimate("outputRichText", OutputRichText), AnimateExecutor.registerBuiltInAnimate("slideRichText", SlideRichText), AnimateExecutor.registerBuiltInAnimate("slideOutRichText", SlideOutRichText), AnimateExecutor.registerBuiltInAnimate("slideIn", SlideIn), AnimateExecutor.registerBuiltInAnimate("growIn", GrowIn), AnimateExecutor.registerBuiltInAnimate("spinIn", SpinIn), AnimateExecutor.registerBuiltInAnimate("moveScaleIn", MoveScaleIn), AnimateExecutor.registerBuiltInAnimate("moveRotateIn", MoveRotateIn), AnimateExecutor.registerBuiltInAnimate("slideOut", SlideOut), AnimateExecutor.registerBuiltInAnimate("growOut", GrowOut), AnimateExecutor.registerBuiltInAnimate("spinOut", SpinOut), AnimateExecutor.registerBuiltInAnimate("moveScaleOut", MoveScaleOut), AnimateExecutor.registerBuiltInAnimate("moveRotateOut", MoveRotateOut), AnimateExecutor.registerBuiltInAnimate("MotionPath", MotionPath), AnimateExecutor.registerBuiltInAnimate("streamLight", StreamLight);
33997
34242
  };
33998
34243
 
33999
- const version = "1.0.0-alpha.1";
34244
+ const version = "1.0.0-alpha.3";
34000
34245
  preLoadAllModule();
34001
34246
  if (isBrowserEnv()) {
34002
34247
  loadBrowserEnv(container);
@@ -34029,4 +34274,4 @@ registerReactAttributePlugin();
34029
34274
  registerDirectionalLight();
34030
34275
  registerOrthoCamera();
34031
34276
 
34032
- export { AComponentAnimate, ACustomAnimate, ARC3D_NUMBER_TYPE, ARC_NUMBER_TYPE, AREA_NUMBER_TYPE, AbstractGraphicRender, Animate, AnimateExecutor, AnimateMode, AnimateStatus, Step as AnimateStep, AnimateStepType, AnimationStateManager, AnimationStateStore, AnimationStates, AnimationTransitionRegistry, Application, Arc, Arc3d, Arc3dRender, ArcRender, ArcRenderContribution, Area, AreaRender, AreaRenderContribution, AttributeUpdateType, AutoEnablePlugins, BaseCanvas, BaseEnvContribution, BaseRender, BaseRenderContributionTime, BaseWindowHandlerContribution, Basis, BeforeRenderConstribution, BoundsContext, BoundsPicker, BrowserEnvContribution, CIRCLE_NUMBER_TYPE, Canvas3DDrawItemInterceptor, Canvas3DPickItemInterceptor, CanvasArc3dPicker, CanvasArcPicker, CanvasAreaPicker, CanvasCirclePicker, CanvasFactory, CanvasGifImagePicker, CanvasGlyphPicker, CanvasGroupPicker, CanvasImagePicker, CanvasLinePicker, CanvasLottiePicker, CanvasPathPicker, CanvasPickerContribution, CanvasPolygonPicker, CanvasPyramid3dPicker, CanvasRect3dPicker, CanvasRectPicker, CanvasRichTextPicker, CanvasSymbolPicker, CanvasTextLayout, CanvasTextPicker, Circle, CircleRender, CircleRenderContribution, ClipAngleAnimate, ClipDirectionAnimate, ClipGraphicAnimate, ClipRadiusAnimate, ColorInterpolate, ColorStore, ColorType, CommonDrawItemInterceptorContribution, CommonRenderContribution, ComponentAnimator, Container, ContainerModule, Context2dFactory, ContributionProvider, CurveContext, CurveTypeEnum, CustomEvent, CustomPath2D, CustomSymbolClass, DEFAULT_TEXT_FONT_FAMILY, 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, DefaultStrokeStyle, DefaultStyle, DefaultSymbolAllocate, DefaultSymbolAttribute, DefaultSymbolClipRangeStrokeRenderContribution, DefaultSymbolRenderContribution, DefaultTextAllocate, DefaultTextAttribute, DefaultTextMeasureContribution, DefaultTextStyle, DefaultTicker, DefaultTimeline, DefaultTransform, DefaultTransformUtil, DefaultWindow, Direction, DirectionalLight, DragNDrop, DrawContribution, DrawItemInterceptor, DynamicLayerHandlerContribution, Edge, EditModule, EmptyContext2d, EnvContribution, EventManager, EventSystem, EventTarget, FORMAT_ALL_TEXT_COMMAND, FORMAT_ELEMENT_COMMAND, FORMAT_TEXT_COMMAND, Factory, FederatedEvent, FederatedMouseEvent, FederatedPointerEvent, FederatedWheelEvent, FlexLayoutPlugin, Fragment, GLYPH_NUMBER_TYPE, GRAPHIC_UPDATE_TAG_KEY, GROUP_NUMBER_TYPE, Generator, Gesture, GifImage, GlobalPickerService, Glyph, GlyphRender, Graphic, GraphicCreator$1 as GraphicCreator, GraphicPicker, GraphicRender, GraphicService, GraphicStateExtension, GraphicUtil, Group, GroupFadeIn, GroupFadeOut, GroupRender, GroupRenderContribution, GroupUpdateAABBBoundsMode, HtmlAttributePlugin, IContainPointMode, IMAGE_NUMBER_TYPE, Image$1 as Image, ImageRender, ImageRenderContribution, IncreaseCount, IncrementalDrawContribution, InputText, InteractiveDrawItemInterceptorContribution, InteractivePickItemInterceptorContribution, InteractiveSubRenderContribution, LINE_NUMBER_TYPE, Layer, LayerService, Line$1 as Line, LineRender, Linear, LinearClosed, Lottie, ManualTicker, Mat4Allocate, MathArcPicker, MathAreaPicker, MathCirclePicker, MathGlyphPicker, MathImagePicker, MathLinePicker, MathPathPicker, MathPickerContribution, MathPolygonPicker, MathRectPicker, MathSymbolPicker, MathTextPicker, MatrixAllocate, MeasureModeEnum, MonotoneX, MonotoneY, NOWORK_ANIMATE_ATTR, Node, OrthoCamera, PATH_NUMBER_TYPE, POLYGON_NUMBER_TYPE, PURE_STYLE_KEY, PYRAMID3D_NUMBER_TYPE, Path, PathRender, PathRenderContribution, PerformanceRAF, PickItemInterceptor, PickServiceInterceptor, PickerService, PluginService, Polygon, PolygonRender, PolygonRenderContribution, Pyramid3d, Pyramid3dRender, REACT_TO_CANOPUS_EVENTS, REACT_TO_CANOPUS_EVENTS_LIST, RECT3D_NUMBER_TYPE, RECT_NUMBER_TYPE, RICHTEXT_NUMBER_TYPE, RafBasedSTO, ReactAttributePlugin, Rect, Rect3DRender, Rect3d, RectRender, RectRenderContribution, ReflectSegContext, RenderSelector, RenderService, ResourceLoader, RichText, RichTextEditPlugin, RichTextRender, RotateBySphereAnimate, STATUS$1 as STATUS, SVG_ATTRIBUTE_MAP, SVG_ATTRIBUTE_MAP_KEYS, SVG_PARSE_ATTRIBUTE_MAP, SVG_PARSE_ATTRIBUTE_MAP_KEYS, SYMBOL_NUMBER_TYPE, SegContext, ShadowPickServiceInterceptorContribution, ShadowRoot, ShadowRootDrawItemInterceptorContribution, ShadowRootPickItemInterceptorContribution, SplitRectAfterRenderContribution, SplitRectBeforeRenderContribution, Stage, StaticLayerHandlerContribution, Step$1 as Step, Symbol$1 as Symbol, SymbolRender, SymbolRenderContribution, TEXT_NUMBER_TYPE, TagPointsUpdate, Text, TextDirection, TextMeasureContribution, TextRender, TextRenderContribution, Theme, TransformUtil, UpdateTag, VArc, VArc3d, VArea, VCircle, VGlobal, VGlyph, VGroup, VImage, VLine, VPath, VPolygon, VPyramid3d, VRect, VRect3d, VRichText, VSymbol, VText, VWindow, ViewTransform3dPlugin, VirtualLayerHandlerContribution, WILDCARD, WindowHandlerContribution, WrapText, XMLParser, _calculateLineHeight, _interpolateColor, _registerArc, addArcToBezierPath$1 as addArcToBezierPath, addAttributeToPrototype, alignBezierCurves, alignSubpath, alternatingWave, application, applyTransformOnBezierCurves, arc3dCanvasPickModule, arc3dModule, arcCanvasPickModule, arcMathPickModule, arcModule, areaCanvasPickModule, areaMathPickModule, areaModule, bezier, bezierCurversToPath, binarySplitPolygon, bindContributionProvider, bindContributionProviderNoSingletonScope, boundStroke, browserEnvModule, builtInSymbolStrMap, builtinSymbols, builtinSymbolsMap, calcLineCache, calculateArcCornerRadius, calculateLineHeight, canvasAllocate, centerToCorner, centroidOfSubpath, circleBounds, circleCanvasPickModule, circleMathPickModule, circleModule, clock, colorEqual, colorStringInterpolationToStr, columnCenterToEdge, columnEdgeToCenter, columnLeftToRight, columnRightToLeft, container, cornerTangents, cornerToCenter, createArc, createArc3d, createArea, createCircle, createColor, createComponentAnimator, createConicalGradient, createGifImage, createGlyph, createGroup, createImage, createImageElement$1 as createImageElement, createLine, createLottie, createMat4, createPath, createPolygon, createPyramid3d, createRect, createRect3d, createRectPath, createRichText, createShadowRoot, createStage, createSymbol, createText, 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, defaultSymbolAllocate, defaultSymbolBackgroundRenderContribution, defaultSymbolClipRangeStrokeRenderContribution, defaultSymbolRenderContribution, defaultSymbolTextureRenderContribution, defaultTextAllocate, diagonalCenterToEdge, diagonalTopLeftToBottomRight, diff, drawArc, drawArcPath$1 as drawArcPath, drawAreaSegments, drawIncrementalAreaSegments, drawIncrementalSegments, drawSegments, enumCommandMap, feishuEnvModule, fillVisible, findBestMorphingRotation, findConfigIndexByCursorIdx, findCursorIdxByConfigIndex, findNextGraphic, flatten_simplify, foreach, foreachAsync, genBasisSegments, genBasisTypeSegments, genLinearClosedSegments, genLinearClosedTypeSegments, genLinearSegments, genLinearTypeSegments, genMonotoneXSegments, genMonotoneXTypeSegments, genMonotoneYSegments, genMonotoneYTypeSegments, genNumberType, genStepSegments, genStepTypeSegments, generatorPathEasingFunc, getAttributeFromDefaultAttrList, getConicGradientAt, getCurrentEnv, getDefaultCharacterConfig, getExtraModelMatrix, getModelMatrix, getRichTextBounds, getScaledStroke, getTextBounds, getTheme, getThemeFromGroup, gifImageCanvasPickModule, gifImageModule, globalTheme, glyphCanvasPickModule, glyphMathPickModule, glyphModule, graphicCreator, graphicService, graphicUtil, harmonyEnvModule, identityMat4, imageCanvasPickModule, imageMathPickModule, imageModule, incrementalAddTo, initAllEnv, initBrowserEnv, initFeishuEnv, initHarmonyEnv, initLynxEnv, initNodeEnv, initTTEnv, initTaroEnv, initWxEnv, inject, injectable, interpolateColor, interpolateGradientConicalColor, interpolateGradientLinearColor, interpolateGradientRadialColor, interpolatePureColorArray, interpolatePureColorArrayToStr, intersect, isBrowserEnv, isNodeEnv, isSvg, isTransformKey, isXML, jsx, layerService, lineCanvasPickModule, lineMathPickModule, lineModule, loadAllEnv, loadAllModule, loadBrowserEnv, loadFeishuEnv, loadHarmonyEnv, loadLynxEnv, loadNodeEnv, loadTTEnv, loadTaroEnv, loadWxEnv, lookAt, lottieCanvasPickModule, lottieModule, lynxEnvModule, mat3Tomat4, mat4Allocate, matrixAllocate, multiInject, multiplyMat4Mat3, multiplyMat4Mat4, named, newThemeObj, nodeEnvModule, ortho, parsePadding, parseStroke, parseSvgPath, particleEffect, pathCanvasPickModule, pathMathPickModule, pathModule, pathToBezierCurves, point$3 as point, pointEqual, pointInterpolation, pointInterpolationHighPerformance, pointsEqual, pointsInterpolation, polygonCanvasPickModule, polygonMathPickModule, polygonModule, preLoadAllModule, pulseWave, pyramid3dCanvasPickModule, pyramid3dModule, quadCalc, quadLength, quadPointAt, rafBasedSto, randomOpacity, rect3dCanvasPickModule, rect3dModule, rectCanvasPickModule, rectFillVisible, rectMathPickModule, rectModule, rectStrokeVisible, recursiveCallBinarySplit, registerAnimate, registerArc, registerArc3d, registerArc3dGraphic, registerArcGraphic, registerArea, registerAreaGraphic, registerCircle, registerCircleGraphic, registerCustomAnimate, registerDirectionalLight, registerFlexLayoutPlugin, registerGlyph, registerGlyphGraphic, registerGroup, registerGroupGraphic, registerHtmlAttributePlugin, registerImage, registerImageGraphic, registerLine, registerLineGraphic, registerOrthoCamera, registerPath, registerPathGraphic, registerPolygon, registerPolygonGraphic, registerPyramid3d, registerPyramid3dGraphic, registerReactAttributePlugin, registerRect, registerRect3d, registerRect3dGraphic, registerRectGraphic, registerRichtext, registerRichtextGraphic, registerShadowRoot, registerShadowRootGraphic, registerSymbol, registerSymbolGraphic, registerText, registerTextGraphic, registerViewTransform3dPlugin, registerWrapText, registerWrapTextGraphic, renderCommandList, rewriteProto, richTextMathPickModule, richtextCanvasPickModule, richtextModule, rippleEffect, rotateX, rotateY, rotateZ, rotationScan, roughModule, rowBottomToTop, rowCenterToEdge, rowEdgeToCenter, rowTopToBottom, runFill, runStroke, scaleMat4, segments, shouldUseMat4, snakeWave, snapLength, spiralEffect, splitArc, splitArea, splitCircle, splitLine, splitPath, splitPolygon, splitRect, splitToGrids, strCommandMap, strokeVisible, symbolCanvasPickModule, symbolMathPickModule, symbolModule, taroEnvModule, textAttributesToStyle, textCanvasPickModule, textDrawOffsetX, textDrawOffsetY, textLayoutOffsetY, textMathPickModule, textModule, transformKeys, transformMat4, transformUtil, transitionRegistry, translate, ttEnvModule, version, verticalLayout, vglobal, waitForAllSubLayers, wrapCanvas, wrapContext, wxEnvModule, xul };
34277
+ export { AComponentAnimate, ACustomAnimate, ARC3D_NUMBER_TYPE, ARC_NUMBER_TYPE, AREA_NUMBER_TYPE, AbstractGraphicRender, Animate, AnimateExecutor, AnimateMode, AnimateStatus, Step as AnimateStep, AnimateStepType, AnimationStateManager, AnimationStateStore, AnimationStates, AnimationTransitionRegistry, Application, Arc, Arc3d, Arc3dRender, ArcRender, ArcRenderContribution, Area, AreaRender, AreaRenderContribution, AttributeUpdateType, AutoEnablePlugins, BaseCanvas, BaseEnvContribution, BaseRender, BaseRenderContributionTime, BaseWindowHandlerContribution, Basis, BeforeRenderConstribution, BoundsContext, BoundsPicker, BrowserEnvContribution, CIRCLE_NUMBER_TYPE, Canvas3DDrawItemInterceptor, Canvas3DPickItemInterceptor, CanvasArc3dPicker, CanvasArcPicker, CanvasAreaPicker, CanvasCirclePicker, CanvasFactory, CanvasGifImagePicker, CanvasGlyphPicker, CanvasGroupPicker, CanvasImagePicker, CanvasLinePicker, CanvasLottiePicker, CanvasPathPicker, CanvasPickerContribution, CanvasPolygonPicker, CanvasPyramid3dPicker, CanvasRect3dPicker, CanvasRectPicker, CanvasRichTextPicker, CanvasSymbolPicker, CanvasTextLayout, CanvasTextPicker, Circle, CircleRender, CircleRenderContribution, ClipAngleAnimate, ClipDirectionAnimate, ClipGraphicAnimate, ClipIn, ClipOut, ClipRadiusAnimate, ColorInterpolate, ColorStore, ColorType, CommonDrawItemInterceptorContribution, CommonRenderContribution, ComponentAnimator, Container, ContainerModule, Context2dFactory, ContributionProvider, CubicBezierCurve, CurveContext, CurveTypeEnum, CustomEvent, CustomPath2D, CustomSymbolClass, DEFAULT_TEXT_FONT_FAMILY, 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, DefaultStrokeStyle, DefaultStyle, DefaultSymbolAllocate, DefaultSymbolAttribute, DefaultSymbolClipRangeStrokeRenderContribution, DefaultSymbolRenderContribution, DefaultTextAllocate, DefaultTextAttribute, DefaultTextMeasureContribution, DefaultTextStyle, DefaultTicker, DefaultTimeline, DefaultTransform, DefaultTransformUtil, DefaultWindow, Direction, DirectionalLight, DragNDrop, DrawContribution, DrawItemInterceptor, DynamicLayerHandlerContribution, Edge, EditModule, EmptyContext2d, 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, Generator, Gesture, GifImage, GlobalPickerService, Glyph, GlyphRender, Graphic, GraphicCreator$1 as GraphicCreator, GraphicPicker, GraphicRender, GraphicService, GraphicStateExtension, GraphicUtil, Group, GroupFadeIn, GroupFadeOut, GroupRender, GroupRenderContribution, GroupUpdateAABBBoundsMode, GrowAngleIn, GrowAngleOut, GrowCenterIn, GrowCenterOut, GrowHeightIn, GrowHeightOut, GrowIn, GrowOut, GrowPointsIn, GrowPointsOut, GrowPointsXIn, GrowPointsXOut, GrowPointsYIn, GrowPointsYOut, GrowRadiusIn, GrowRadiusOut, GrowWidthIn, GrowWidthOut, HtmlAttributePlugin, IContainPointMode, IMAGE_NUMBER_TYPE, Image$1 as Image, ImageRender, ImageRenderContribution, IncreaseCount, IncrementalDrawContribution, InputRichText, InputText, InteractiveDrawItemInterceptorContribution, InteractivePickItemInterceptorContribution, InteractiveSubRenderContribution, LINE_NUMBER_TYPE, LabelItemAppear, LabelItemDisappear, Layer, LayerService, Line$1 as Line, LineRender, Linear, LinearClosed, Lottie, ManualTicker, Mat4Allocate, MathArcPicker, MathAreaPicker, MathCirclePicker, MathGlyphPicker, MathImagePicker, MathLinePicker, MathPathPicker, MathPickerContribution, MathPolygonPicker, MathRectPicker, MathSymbolPicker, MathTextPicker, MatrixAllocate, MeasureModeEnum, MonotoneX, MonotoneY, MotionPath, MoveIn, MoveOut, MoveRotateIn, MoveRotateOut, MoveScaleIn, MoveScaleOut, NOWORK_ANIMATE_ATTR, Node, OrthoCamera, OutputRichText, PATH_NUMBER_TYPE, POLYGON_NUMBER_TYPE, PURE_STYLE_KEY, PYRAMID3D_NUMBER_TYPE, Path, PathRender, PathRenderContribution, PerformanceRAF, PickItemInterceptor, PickServiceInterceptor, PickerService, PluginService, Polygon, PolygonRender, PolygonRenderContribution, PoptipAppear, PoptipDisappear, Pyramid3d, Pyramid3dRender, REACT_TO_CANOPUS_EVENTS, REACT_TO_CANOPUS_EVENTS_LIST, RECT3D_NUMBER_TYPE, RECT_NUMBER_TYPE, RICHTEXT_NUMBER_TYPE, RafBasedSTO, ReactAttributePlugin, Rect, Rect3DRender, Rect3d, RectRender, RectRenderContribution, ReflectSegContext, RenderSelector, RenderService, ResourceLoader, RichText, RichTextEditPlugin, RichTextRender, RotateBySphereAnimate, RotateIn, RotateOut, 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, SegContext, ShadowPickServiceInterceptorContribution, ShadowRoot, ShadowRootDrawItemInterceptorContribution, ShadowRootPickItemInterceptorContribution, SlideIn, SlideOut, SlideOutRichText, SlideRichText, SpinIn, SpinOut, SplitRectAfterRenderContribution, SplitRectBeforeRenderContribution, Stage, State, StaticLayerHandlerContribution, Step$1 as Step, StreamLight, Symbol$1 as Symbol, SymbolRender, SymbolRenderContribution, TEXT_NUMBER_TYPE, TagPointsUpdate, Text, TextDirection, TextMeasureContribution, TextRender, TextRenderContribution, Theme, TransformUtil, Update, UpdateTag, VArc, VArc3d, VArea, VCircle, VGlobal, VGlyph, VGroup, VImage, VLine, VPath, VPolygon, VPyramid3d, VRect, VRect3d, VRichText, VSymbol, VText, VWindow, ViewTransform3dPlugin, VirtualLayerHandlerContribution, WILDCARD, WindowHandlerContribution, WrapText, XMLParser, _calculateLineHeight, _interpolateColor, _registerArc, addArcToBezierPath$1 as addArcToBezierPath, addAttributeToPrototype, alignBezierCurves, alignSubpath, alternatingWave, application, applyTransformOnBezierCurves, arc3dCanvasPickModule, arc3dModule, arcCanvasPickModule, arcMathPickModule, arcModule, areaCanvasPickModule, areaMathPickModule, areaModule, bezier, bezierCurversToPath, binarySplitPolygon, bindContributionProvider, bindContributionProviderNoSingletonScope, boundStroke, browserEnvModule, builtInSymbolStrMap, builtinSymbols, builtinSymbolsMap, calcLineCache, calculateArcCornerRadius, calculateLineHeight, canvasAllocate, centerToCorner, centroidOfSubpath, circleBounds, circleCanvasPickModule, circleMathPickModule, circleModule, clock, colorEqual, colorStringInterpolationToStr, columnCenterToEdge, columnEdgeToCenter, columnLeftToRight, columnRightToLeft, container, cornerTangents, cornerToCenter, createArc, createArc3d, createArea, createCircle, createColor, createComponentAnimator, createConicalGradient, createGifImage, createGlyph, createGroup, createImage, createImageElement$1 as createImageElement, createLine, createLottie, createMat4, createPath, createPolygon, createPyramid3d, createRect, createRect3d, createRectPath, createRichText, createShadowRoot, createStage, createSymbol, createText, 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, defaultSymbolAllocate, defaultSymbolBackgroundRenderContribution, defaultSymbolClipRangeStrokeRenderContribution, defaultSymbolRenderContribution, defaultSymbolTextureRenderContribution, defaultTextAllocate, diagonalCenterToEdge, diagonalTopLeftToBottomRight, diff, divideCubic, divideQuad, drawArc, drawArcPath$1 as drawArcPath, drawAreaSegments, drawIncrementalAreaSegments, drawIncrementalSegments, drawSegments, enumCommandMap, feishuEnvModule, fillVisible, findBestMorphingRotation, findConfigIndexByCursorIdx, findCursorIdxByConfigIndex, findNextGraphic, flatten_simplify, foreach, foreachAsync, genBasisSegments, genBasisTypeSegments, genLinearClosedSegments, genLinearClosedTypeSegments, genLinearSegments, genLinearTypeSegments, genMonotoneXSegments, genMonotoneXTypeSegments, genMonotoneYSegments, genMonotoneYTypeSegments, genNumberType, genStepSegments, genStepTypeSegments, generatorPathEasingFunc, getAttributeFromDefaultAttrList, getConicGradientAt, getCurrentEnv, getDefaultCharacterConfig, getExtraModelMatrix, getModelMatrix, getRichTextBounds, getScaledStroke, getTextBounds, getTheme, getThemeFromGroup, gifImageCanvasPickModule, gifImageModule, globalTheme, glyphCanvasPickModule, glyphMathPickModule, glyphModule, graphicCreator, graphicService, graphicUtil, harmonyEnvModule, identityMat4, imageCanvasPickModule, imageMathPickModule, imageModule, incrementalAddTo, initAllEnv, initBrowserEnv, initFeishuEnv, initHarmonyEnv, initLynxEnv, initNodeEnv, initTTEnv, initTaroEnv, initWxEnv, inject, injectable, interpolateColor, interpolateGradientConicalColor, interpolateGradientLinearColor, interpolateGradientRadialColor, interpolatePureColorArray, interpolatePureColorArrayToStr, intersect, isBrowserEnv, isNodeEnv, isSvg, isTransformKey, isXML, jsx, layerService, lineCanvasPickModule, lineMathPickModule, lineModule, loadAllEnv, loadAllModule, loadBrowserEnv, loadFeishuEnv, loadHarmonyEnv, loadLynxEnv, loadNodeEnv, loadTTEnv, loadTaroEnv, loadWxEnv, lookAt, lottieCanvasPickModule, lottieModule, lynxEnvModule, mat3Tomat4, mat4Allocate, matrixAllocate, multiInject, multiplyMat4Mat3, multiplyMat4Mat4, named, newThemeObj, nodeEnvModule, ortho, parsePadding, parseStroke, parseSvgPath, particleEffect, pathCanvasPickModule, pathMathPickModule, pathModule, pathToBezierCurves, point$3 as point, pointEqual, pointInterpolation, pointInterpolationHighPerformance, pointsEqual, pointsInterpolation, polygonCanvasPickModule, polygonMathPickModule, polygonModule, preLoadAllModule, pulseWave, pyramid3dCanvasPickModule, pyramid3dModule, quadCalc, quadLength, quadPointAt, rafBasedSto, randomOpacity, rect3dCanvasPickModule, rect3dModule, rectCanvasPickModule, rectFillVisible, rectMathPickModule, rectModule, rectStrokeVisible, recursiveCallBinarySplit, registerAnimate, registerArc, registerArc3d, registerArc3dGraphic, registerArcGraphic, registerArea, registerAreaGraphic, registerCircle, registerCircleGraphic, registerCustomAnimate, registerDirectionalLight, registerFlexLayoutPlugin, registerGlyph, registerGlyphGraphic, registerGroup, registerGroupGraphic, registerHtmlAttributePlugin, registerImage, registerImageGraphic, registerLine, registerLineGraphic, registerOrthoCamera, registerPath, registerPathGraphic, registerPolygon, registerPolygonGraphic, registerPyramid3d, registerPyramid3dGraphic, registerReactAttributePlugin, registerRect, registerRect3d, registerRect3dGraphic, registerRectGraphic, registerRichtext, registerRichtextGraphic, registerShadowRoot, registerShadowRootGraphic, registerSymbol, registerSymbolGraphic, registerText, registerTextGraphic, registerViewTransform3dPlugin, registerWrapText, registerWrapTextGraphic, renderCommandList, rewriteProto, richTextMathPickModule, richtextCanvasPickModule, richtextModule, rippleEffect, rotateX, rotateY, rotateZ, rotationScan, roughModule, rowBottomToTop, rowCenterToEdge, rowEdgeToCenter, rowTopToBottom, runFill, runStroke, scaleMat4, segments, shouldUseMat4, snakeWave, snapLength, spiralEffect, splitArc, splitArea, splitCircle, splitLine, splitPath, splitPolygon, splitRect, splitToGrids, strCommandMap, strokeVisible, symbolCanvasPickModule, symbolMathPickModule, symbolModule, taroEnvModule, textAttributesToStyle, textCanvasPickModule, textDrawOffsetX, textDrawOffsetY, textLayoutOffsetY, textMathPickModule, textModule, transformKeys, transformMat4, transformUtil, transitionRegistry, translate, ttEnvModule, version, verticalLayout, vglobal, waitForAllSubLayers, wrapCanvas, wrapContext, wxEnvModule, xul };