@visactor/vrender 1.1.0 → 1.1.1-alpha.0
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/entries/browser.js +5 -3
- package/cjs/entries/browser.js.map +1 -1
- package/cjs/entries/miniapp.js +5 -3
- package/cjs/entries/miniapp.js.map +1 -1
- package/cjs/entries/node.js +5 -3
- package/cjs/entries/node.js.map +1 -1
- package/cjs/entries/runtime-contribution.d.ts +19 -0
- package/cjs/entries/runtime-contribution.js +78 -0
- package/cjs/entries/runtime-contribution.js.map +1 -0
- package/cjs/entries/shared-browser-lite.js +6 -3
- package/cjs/entries/shared-browser-lite.js.map +1 -1
- package/cjs/entries/shared-browser.js +5 -3
- package/cjs/entries/shared-browser.js.map +1 -1
- package/cjs/entries/shared-registry.d.ts +1 -0
- package/cjs/entries/shared-registry.js +12 -2
- package/cjs/entries/shared-registry.js.map +1 -1
- package/cjs/index.d.ts +1 -1
- package/cjs/index.js +1 -1
- package/cjs/index.js.map +1 -1
- package/dist/index.es.js +209 -84
- package/dist/index.js +209 -83
- package/dist/index.min.js +1 -1
- package/es/entries/browser.js +4 -2
- package/es/entries/browser.js.map +1 -1
- package/es/entries/miniapp.js +4 -2
- package/es/entries/miniapp.js.map +1 -1
- package/es/entries/node.js +4 -2
- package/es/entries/node.js.map +1 -1
- package/es/entries/runtime-contribution.d.ts +19 -0
- package/es/entries/runtime-contribution.js +49 -0
- package/es/entries/runtime-contribution.js.map +1 -0
- package/es/entries/shared-browser-lite.js +5 -2
- package/es/entries/shared-browser-lite.js.map +1 -1
- package/es/entries/shared-browser.js +5 -2
- package/es/entries/shared-browser.js.map +1 -1
- package/es/entries/shared-registry.d.ts +1 -0
- package/es/entries/shared-registry.js +10 -0
- package/es/entries/shared-registry.js.map +1 -1
- package/es/index.d.ts +1 -1
- package/es/index.js +1 -1
- package/es/index.js.map +1 -1
- package/package.json +12 -7
package/dist/index.es.js
CHANGED
|
@@ -8569,9 +8569,10 @@ class Graphic extends Node {
|
|
|
8569
8569
|
} else assignFallbackAttr(this.getStateTransitionDefaultAttribute(key, staticTargetAttrs));
|
|
8570
8570
|
}), extraAttrs;
|
|
8571
8571
|
}
|
|
8572
|
-
syncObjectToSnapshot(target, snapshot) {
|
|
8572
|
+
syncObjectToSnapshot(target, snapshot, excludedKeys) {
|
|
8573
8573
|
const delta = new Map();
|
|
8574
8574
|
return new Set([...Object.keys(target), ...Object.keys(snapshot)]).forEach(key => {
|
|
8575
|
+
if (!0 === (null == excludedKeys ? void 0 : excludedKeys[key])) return;
|
|
8575
8576
|
const hasNext = Object.prototype.hasOwnProperty.call(snapshot, key),
|
|
8576
8577
|
previousValue = target[key];
|
|
8577
8578
|
if (!hasNext) return void (Object.prototype.hasOwnProperty.call(target, key) && (delta.set(key, {
|
|
@@ -8585,17 +8586,17 @@ class Graphic extends Node {
|
|
|
8585
8586
|
}), target[key] = cloneAttributeValue(nextValue));
|
|
8586
8587
|
}), delta;
|
|
8587
8588
|
}
|
|
8588
|
-
_syncAttribute() {
|
|
8589
|
+
_syncAttribute(excludedKeys) {
|
|
8589
8590
|
this.attribute === this.baseAttributes && this.resolvedStatePatch && this.detachAttributeFromBaseAttributes();
|
|
8590
8591
|
const snapshot = this.buildStaticAttributeSnapshot(),
|
|
8591
|
-
delta = this.syncObjectToSnapshot(this.attribute, snapshot);
|
|
8592
|
-
return this.valid = this.isValid(), this.attributeMayContainTransientAttrs =
|
|
8592
|
+
delta = this.syncObjectToSnapshot(this.attribute, snapshot, excludedKeys);
|
|
8593
|
+
return this.valid = this.isValid(), this.attributeMayContainTransientAttrs = !!excludedKeys, delta;
|
|
8593
8594
|
}
|
|
8594
|
-
_syncFinalAttributeFromStaticTruth() {
|
|
8595
|
+
_syncFinalAttributeFromStaticTruth(excludedKeys) {
|
|
8595
8596
|
const target = this.finalAttribute;
|
|
8596
8597
|
if (!target) return;
|
|
8597
8598
|
const snapshot = this.buildStaticAttributeSnapshot();
|
|
8598
|
-
this.syncObjectToSnapshot(target, snapshot);
|
|
8599
|
+
this.syncObjectToSnapshot(target, snapshot, excludedKeys);
|
|
8599
8600
|
}
|
|
8600
8601
|
mergeAttributeDeltaCategory(category, key, prev, next) {
|
|
8601
8602
|
var _a;
|
|
@@ -8652,6 +8653,25 @@ class Graphic extends Node {
|
|
|
8652
8653
|
this.getBaseAttributesStorage()[key] = params[key];
|
|
8653
8654
|
}
|
|
8654
8655
|
}
|
|
8656
|
+
_commitAnimationStaticAttributes(params, context) {
|
|
8657
|
+
if (!params) return;
|
|
8658
|
+
const source = params,
|
|
8659
|
+
baseAttributes = this.getBaseAttributesStorage(),
|
|
8660
|
+
target = this.attribute,
|
|
8661
|
+
delta = new Map();
|
|
8662
|
+
let hasKeys = !1;
|
|
8663
|
+
for (const key in source) {
|
|
8664
|
+
if (!Object.prototype.hasOwnProperty.call(source, key)) continue;
|
|
8665
|
+
hasKeys = !0;
|
|
8666
|
+
const previousValue = target[key],
|
|
8667
|
+
nextValue = source[key];
|
|
8668
|
+
baseAttributes[key] = nextValue, target[key] = nextValue, areAttributeValuesEqual(previousValue, nextValue) || delta.set(key, {
|
|
8669
|
+
prev: previousValue,
|
|
8670
|
+
next: nextValue
|
|
8671
|
+
});
|
|
8672
|
+
}
|
|
8673
|
+
hasKeys && (this.valid = this.isValid(), this.attributeMayContainTransientAttrs = !0, this.submitUpdateByDelta(delta), this.onAttributeUpdate(context));
|
|
8674
|
+
}
|
|
8655
8675
|
applyAnimationTransientAttributes(params, forceUpdateTag = !1, context) {
|
|
8656
8676
|
const source = params;
|
|
8657
8677
|
let target,
|
|
@@ -8674,9 +8694,9 @@ class Graphic extends Node {
|
|
|
8674
8694
|
}
|
|
8675
8695
|
delta.size && (this.attributeMayContainTransientAttrs = !0), this.valid = this.isValid(), this.submitUpdateByDelta(delta, forceUpdateTag), this.onAttributeUpdate(context);
|
|
8676
8696
|
}
|
|
8677
|
-
_restoreAttributeFromStaticTruth(context) {
|
|
8678
|
-
this._syncFinalAttributeFromStaticTruth();
|
|
8679
|
-
const delta = this._syncAttribute();
|
|
8697
|
+
_restoreAttributeFromStaticTruth(context, excludedKeys) {
|
|
8698
|
+
this._syncFinalAttributeFromStaticTruth(excludedKeys);
|
|
8699
|
+
const delta = this._syncAttribute(excludedKeys);
|
|
8680
8700
|
this.submitUpdateByDelta(delta), this.onAttributeUpdate(context);
|
|
8681
8701
|
}
|
|
8682
8702
|
collectStatePatchDeltaKeys(previousPatch, nextPatch) {
|
|
@@ -15487,14 +15507,18 @@ function bindContributionProviderNoSingletonScope(bind, id) {
|
|
|
15487
15507
|
}
|
|
15488
15508
|
class ContributionStore {
|
|
15489
15509
|
static getStore(id) {
|
|
15490
|
-
|
|
15510
|
+
var _a;
|
|
15511
|
+
return null === (_a = this.store.get(id)) || void 0 === _a ? void 0 : _a.values().next().value;
|
|
15491
15512
|
}
|
|
15492
15513
|
static setStore(id, cache) {
|
|
15493
|
-
this.store.
|
|
15514
|
+
let caches = this.store.get(id);
|
|
15515
|
+
caches || (caches = new Set(), this.store.set(id, caches)), caches.add(cache);
|
|
15494
15516
|
}
|
|
15495
15517
|
static refreshAllContributions() {
|
|
15496
|
-
this.store.forEach(
|
|
15497
|
-
|
|
15518
|
+
this.store.forEach(caches => {
|
|
15519
|
+
caches.forEach(cache => {
|
|
15520
|
+
cache.refresh();
|
|
15521
|
+
});
|
|
15498
15522
|
});
|
|
15499
15523
|
}
|
|
15500
15524
|
}
|
|
@@ -16795,6 +16819,9 @@ class DefaultGroupBackgroundRenderContribution extends DefaultBaseBackgroundRend
|
|
|
16795
16819
|
}
|
|
16796
16820
|
const defaultGroupBackgroundRenderContribution = new DefaultGroupBackgroundRenderContribution();
|
|
16797
16821
|
|
|
16822
|
+
function hasDisabledStrokeSide(stroke) {
|
|
16823
|
+
return Array.isArray(stroke) && stroke.some(s => !1 === s || null === s);
|
|
16824
|
+
}
|
|
16798
16825
|
class DefaultRectRenderContribution {
|
|
16799
16826
|
constructor() {
|
|
16800
16827
|
this.time = BaseRenderContributionTime.afterFillStroke, this.useStyle = !0, this.order = 0;
|
|
@@ -16850,7 +16877,7 @@ class SplitRectBeforeRenderContribution {
|
|
|
16850
16877
|
const {
|
|
16851
16878
|
stroke = groupAttribute.stroke
|
|
16852
16879
|
} = group.attribute;
|
|
16853
|
-
|
|
16880
|
+
hasDisabledStrokeSide(stroke) && (doFillOrStroke.doStroke = !1);
|
|
16854
16881
|
}
|
|
16855
16882
|
}
|
|
16856
16883
|
class SplitRectAfterRenderContribution {
|
|
@@ -16871,7 +16898,7 @@ class SplitRectAfterRenderContribution {
|
|
|
16871
16898
|
width: width,
|
|
16872
16899
|
height: height
|
|
16873
16900
|
} = rect.attribute;
|
|
16874
|
-
if (width = (null != width ? width : x1 - originX) || 0, height = (null != height ? height : y1 - originY) || 0,
|
|
16901
|
+
if (width = (null != width ? width : x1 - originX) || 0, height = (null != height ? height : y1 - originY) || 0, hasDisabledStrokeSide(stroke)) {
|
|
16875
16902
|
if (context.setStrokeStyle(rect, rect.attribute, x, y, groupAttribute), !(0 === cornerRadius || isArray$1(cornerRadius) && cornerRadius.every(num => 0 === num))) {
|
|
16876
16903
|
let lastStroke,
|
|
16877
16904
|
lastStrokeI = 0;
|
|
@@ -19670,8 +19697,13 @@ class DefaultIncrementalCanvasLineRender extends DefaultCanvasLineRender {
|
|
|
19670
19697
|
const runtimeInstallerContext = createLegacyBindingContext();
|
|
19671
19698
|
let runtimeGlobal,
|
|
19672
19699
|
runtimeInstallerPreloaded = !1;
|
|
19673
|
-
const
|
|
19674
|
-
|
|
19700
|
+
const RUNTIME_RENDERER_NAMESPACE = "vrender:runtime-renderer",
|
|
19701
|
+
RUNTIME_PICKER_NAMESPACE = "vrender:runtime-picker",
|
|
19702
|
+
runtimeEntryKeys = new WeakMap(),
|
|
19703
|
+
runtimeDrawContributions = new WeakMap(),
|
|
19704
|
+
loadedRuntimeContributionModules = new WeakMap(),
|
|
19705
|
+
DEFAULT_RUNTIME_CONTRIBUTION_TARGETS = ["graphic-renderer"],
|
|
19706
|
+
noopUnbindRuntimeContributionService = () => {};
|
|
19675
19707
|
function ensureRuntimeInstallerPreloaded() {
|
|
19676
19708
|
runtimeInstallerPreloaded || (runtimeInstallerPreloaded = !0, bindCoreModules({
|
|
19677
19709
|
bind: runtimeInstallerContext.bind
|
|
@@ -19732,11 +19764,11 @@ function installRuntimeGraphicRenderersToApp(app) {
|
|
|
19732
19764
|
const bindingContext = getRuntimeInstallerBindingContext();
|
|
19733
19765
|
refreshRuntimeInstallerContributions();
|
|
19734
19766
|
const renderers = bindingContext.getAll(GraphicRender),
|
|
19735
|
-
registeredKeys = getTrackedEntryKeys$1(app.registry.renderer,
|
|
19736
|
-
clearTrackedEntryKeys$1(app.registry.renderer,
|
|
19767
|
+
registeredKeys = getTrackedEntryKeys$1(app.registry.renderer, RUNTIME_RENDERER_NAMESPACE);
|
|
19768
|
+
clearTrackedEntryKeys$1(app.registry.renderer, RUNTIME_RENDERER_NAMESPACE, null === (_a = app.registry.renderer.unregister) || void 0 === _a ? void 0 : _a.bind(app.registry.renderer)), registerRuntimeEntries((key, renderer) => {
|
|
19737
19769
|
var _a;
|
|
19738
19770
|
null === (_a = null == renderer ? void 0 : renderer.reInit) || void 0 === _a || _a.call(renderer), app.registry.renderer.register(key, renderer), registeredKeys.add(key);
|
|
19739
|
-
}, renderers,
|
|
19771
|
+
}, renderers, RUNTIME_RENDERER_NAMESPACE);
|
|
19740
19772
|
}
|
|
19741
19773
|
function installRuntimeDrawContributionsToApp(app) {
|
|
19742
19774
|
var _a;
|
|
@@ -19758,10 +19790,45 @@ function installRuntimePickersToApp(app, serviceIdentifier) {
|
|
|
19758
19790
|
const bindingContext = getRuntimeInstallerBindingContext();
|
|
19759
19791
|
refreshRuntimeInstallerContributions();
|
|
19760
19792
|
const pickers = bindingContext.getAll(serviceIdentifier),
|
|
19761
|
-
registeredKeys = getTrackedEntryKeys$1(app.registry.picker,
|
|
19762
|
-
clearTrackedEntryKeys$1(app.registry.picker,
|
|
19793
|
+
registeredKeys = getTrackedEntryKeys$1(app.registry.picker, RUNTIME_PICKER_NAMESPACE);
|
|
19794
|
+
clearTrackedEntryKeys$1(app.registry.picker, RUNTIME_PICKER_NAMESPACE, null === (_a = app.registry.picker.unregister) || void 0 === _a ? void 0 : _a.bind(app.registry.picker)), registerRuntimeEntries((key, picker) => {
|
|
19763
19795
|
app.registry.picker.register(key, picker), registeredKeys.add(key);
|
|
19764
|
-
}, pickers,
|
|
19796
|
+
}, pickers, RUNTIME_PICKER_NAMESPACE);
|
|
19797
|
+
}
|
|
19798
|
+
function getRuntimeContributionModuleIdentity(module) {
|
|
19799
|
+
return module;
|
|
19800
|
+
}
|
|
19801
|
+
function hasLoadedRuntimeContributionModule(context, module) {
|
|
19802
|
+
var _a, _b;
|
|
19803
|
+
return null !== (_b = null === (_a = loadedRuntimeContributionModules.get(context)) || void 0 === _a ? void 0 : _a.has(getRuntimeContributionModuleIdentity(module))) && void 0 !== _b && _b;
|
|
19804
|
+
}
|
|
19805
|
+
function markRuntimeContributionModuleLoaded(context, module) {
|
|
19806
|
+
let modules = loadedRuntimeContributionModules.get(context);
|
|
19807
|
+
modules || (modules = new WeakSet(), loadedRuntimeContributionModules.set(context, modules)), modules.add(getRuntimeContributionModuleIdentity(module));
|
|
19808
|
+
}
|
|
19809
|
+
function loadRuntimeContributionModuleToContext(context, module) {
|
|
19810
|
+
hasLoadedRuntimeContributionModule(context, module) || ("function" == typeof module ? module(context) : module.registry(context.bind, noopUnbindRuntimeContributionService, context.isBound, context.rebind), markRuntimeContributionModuleLoaded(context, module));
|
|
19811
|
+
}
|
|
19812
|
+
function isRuntimePickerTarget(target) {
|
|
19813
|
+
return "object" == typeof target && null !== target && "picker" in target;
|
|
19814
|
+
}
|
|
19815
|
+
function installRuntimeContributionTargetsToApp(app, targets) {
|
|
19816
|
+
const resolvedTargets = null != targets ? targets : DEFAULT_RUNTIME_CONTRIBUTION_TARGETS;
|
|
19817
|
+
let installGraphicRenderers = !1,
|
|
19818
|
+
installDrawContributions = !1;
|
|
19819
|
+
const pickerTargets = new Set();
|
|
19820
|
+
resolvedTargets.forEach(target => {
|
|
19821
|
+
"graphic-renderer" === target ? installGraphicRenderers = !0 : "draw-contribution" === target ? installDrawContributions = !0 : isRuntimePickerTarget(target) && pickerTargets.add(target.picker);
|
|
19822
|
+
}), installDrawContributions && installRuntimeDrawContributionsToApp(app), installGraphicRenderers && installRuntimeGraphicRenderersToApp(app), pickerTargets.forEach(serviceIdentifier => {
|
|
19823
|
+
installRuntimePickersToApp(app, serviceIdentifier);
|
|
19824
|
+
});
|
|
19825
|
+
}
|
|
19826
|
+
function installRuntimeContributionModule(module, {
|
|
19827
|
+
app: app,
|
|
19828
|
+
legacy = !0,
|
|
19829
|
+
targets: targets
|
|
19830
|
+
} = {}) {
|
|
19831
|
+
loadRuntimeContributionModuleToContext(getRuntimeInstallerBindingContext(), module), legacy && (preLoadAllModule(), loadRuntimeContributionModuleToContext(getLegacyBindingContext(), module)), refreshRuntimeInstallerContributions(), app && installRuntimeContributionTargetsToApp(app, targets);
|
|
19765
19832
|
}
|
|
19766
19833
|
|
|
19767
19834
|
function simplifyRadialDist(points, sqTolerance) {
|
|
@@ -23146,6 +23213,7 @@ var VRenderCore = /*#__PURE__*/Object.freeze({
|
|
|
23146
23213
|
identityMat4: identityMat4,
|
|
23147
23214
|
imageModule: imageModule,
|
|
23148
23215
|
incrementalAddTo: incrementalAddTo,
|
|
23216
|
+
installRuntimeContributionModule: installRuntimeContributionModule,
|
|
23149
23217
|
installRuntimeDrawContributionsToApp: installRuntimeDrawContributionsToApp,
|
|
23150
23218
|
installRuntimeGraphicRenderersToApp: installRuntimeGraphicRenderersToApp,
|
|
23151
23219
|
installRuntimePickersToApp: installRuntimePickersToApp,
|
|
@@ -32863,6 +32931,24 @@ function removeKeysFromRecord(record, keys) {
|
|
|
32863
32931
|
for (const key in record) Object.prototype.hasOwnProperty.call(record, key) && !includesKey(keys, key) && (nextRecord[key] = record[key]);
|
|
32864
32932
|
return nextRecord;
|
|
32865
32933
|
}
|
|
32934
|
+
function collectActiveSiblingAttrKeys(target, currentAnimate) {
|
|
32935
|
+
var _a;
|
|
32936
|
+
const getTrackedAnimates = null == target ? void 0 : target.getTrackedAnimates;
|
|
32937
|
+
if ("function" == typeof getTrackedAnimates) {
|
|
32938
|
+
const trackedAnimates = getTrackedAnimates.call(target);
|
|
32939
|
+
if (trackedAnimates && trackedAnimates.size <= 1) return;
|
|
32940
|
+
}
|
|
32941
|
+
const forEachTrackedAnimate = null == target ? void 0 : target.forEachTrackedAnimate;
|
|
32942
|
+
if ("function" != typeof forEachTrackedAnimate) return;
|
|
32943
|
+
let keys;
|
|
32944
|
+
const currentEndProps = null === (_a = currentAnimate.getEndProps) || void 0 === _a ? void 0 : _a.call(currentAnimate);
|
|
32945
|
+
return forEachTrackedAnimate.call(target, animate => {
|
|
32946
|
+
var _a;
|
|
32947
|
+
if (animate === currentAnimate || animate.status === AnimateStatus.END) return;
|
|
32948
|
+
const endProps = null === (_a = animate.getEndProps) || void 0 === _a ? void 0 : _a.call(animate);
|
|
32949
|
+
if (endProps) for (const key in endProps) !Object.prototype.hasOwnProperty.call(endProps, key) || currentEndProps && Object.prototype.hasOwnProperty.call(currentEndProps, key) || ((null != keys ? keys : keys = Object.create(null))[key] = !0);
|
|
32950
|
+
}), keys;
|
|
32951
|
+
}
|
|
32866
32952
|
class Animate {
|
|
32867
32953
|
constructor(id = Generator.GenAutoIncrementId(), timeline = defaultTimeline, slience) {
|
|
32868
32954
|
this.id = id, this.status = AnimateStatus.INITIAL, this._timeline = timeline, timeline.addAnimate(this), this.slience = slience, this._startTime = 0, this._duration = 0, this._totalDuration = 0, this._loopCount = 0, this._currentLoop = 0, this._bounce = !1, this._firstStep = null, this._lastStep = null, this._startProps = {}, this._endProps = {}, this._preventAttrs = new Set(), this.currentTime = 0, this.interpolateUpdateFunction = null, this.priority = 0;
|
|
@@ -32886,7 +32972,7 @@ class Animate {
|
|
|
32886
32972
|
this.target = target;
|
|
32887
32973
|
const trackerTarget = this.target;
|
|
32888
32974
|
return trackerTarget.detachAttributeFromBaseAttributes(), trackerTarget.trackAnimate(this), this.onRemove(() => {
|
|
32889
|
-
this.stop(), this.__skipRestoreStaticAttributeOnRemove || trackerTarget.restoreStaticAttribute(), trackerTarget.untrackAnimate(this.id);
|
|
32975
|
+
this.stop(), this.__skipRestoreStaticAttributeOnRemove || trackerTarget.restoreStaticAttribute(collectActiveSiblingAttrKeys(trackerTarget, this)), trackerTarget.untrackAnimate(this.id);
|
|
32890
32976
|
}), this.target.onAnimateBind && !this.slience && this.target.onAnimateBind(this), this.target.animationAttribute || (this.target.animationAttribute = {}), this;
|
|
32891
32977
|
}
|
|
32892
32978
|
to(props, duration = 300, easing = "linear") {
|
|
@@ -33023,7 +33109,8 @@ class Animate {
|
|
|
33023
33109
|
if (nextTime < this._startTime) return void (this.currentTime = nextTime);
|
|
33024
33110
|
if (nextTime >= this._startTime + this._totalDuration) {
|
|
33025
33111
|
null === (_a = this._lastStep) || void 0 === _a || _a.onUpdate(!0, 1, {}), null === (_b = this._lastStep) || void 0 === _b || _b.onEnd(), this.onEnd(), this.status = AnimateStatus.END;
|
|
33026
|
-
|
|
33112
|
+
const trackerTarget = this.target;
|
|
33113
|
+
return trackerTarget.restoreStaticAttribute(collectActiveSiblingAttrKeys(trackerTarget, this)), void (this.__skipRestoreStaticAttributeOnRemove = !0);
|
|
33027
33114
|
}
|
|
33028
33115
|
this.status = AnimateStatus.RUNNING, this.currentTime <= this._startTime && this.onStart(), this.currentTime = nextTime;
|
|
33029
33116
|
let cycleTime = nextTime - this._startTime,
|
|
@@ -33360,6 +33447,30 @@ function getCustomType(custom) {
|
|
|
33360
33447
|
return 2;
|
|
33361
33448
|
}
|
|
33362
33449
|
|
|
33450
|
+
function buildAnimationStaticCommitAttrs(target, keys, animate, fallbackAttrs) {
|
|
33451
|
+
var _a;
|
|
33452
|
+
const commitTarget = target,
|
|
33453
|
+
contextFinalAttrs = null === (_a = commitTarget.context) || void 0 === _a ? void 0 : _a.finalAttrs,
|
|
33454
|
+
finalAttribute = commitTarget.getFinalAttribute();
|
|
33455
|
+
let commitAttrs = null;
|
|
33456
|
+
for (let i = 0; i < keys.length; i++) {
|
|
33457
|
+
const key = keys[i];
|
|
33458
|
+
animate && !animate.validAttr(key) || (contextFinalAttrs && Object.prototype.hasOwnProperty.call(contextFinalAttrs, key) ? (null != commitAttrs || (commitAttrs = {}), commitAttrs[key] = contextFinalAttrs[key]) : finalAttribute && Object.prototype.hasOwnProperty.call(finalAttribute, key) ? (null != commitAttrs || (commitAttrs = {}), commitAttrs[key] = finalAttribute[key]) : fallbackAttrs && Object.prototype.hasOwnProperty.call(fallbackAttrs, key) && (null != commitAttrs || (commitAttrs = {}), commitAttrs[key] = fallbackAttrs[key]));
|
|
33459
|
+
}
|
|
33460
|
+
return commitAttrs;
|
|
33461
|
+
}
|
|
33462
|
+
function commitAnimationStaticAttrs(target, keys, animate, fallbackAttrs) {
|
|
33463
|
+
const commitAttrs = buildAnimationStaticCommitAttrs(target, keys, animate, fallbackAttrs);
|
|
33464
|
+
if (!commitAttrs) return !1;
|
|
33465
|
+
target.setFinalAttributes(commitAttrs);
|
|
33466
|
+
const commitStaticAttributes = target._commitAnimationStaticAttributes;
|
|
33467
|
+
return "function" == typeof commitStaticAttributes ? commitStaticAttributes.call(target, commitAttrs, {
|
|
33468
|
+
type: AttributeUpdateType.ANIMATE_END
|
|
33469
|
+
}) : target.setAttributes(commitAttrs, !1, {
|
|
33470
|
+
type: AttributeUpdateType.ANIMATE_END
|
|
33471
|
+
}), !0;
|
|
33472
|
+
}
|
|
33473
|
+
|
|
33363
33474
|
class AnimateExecutor {
|
|
33364
33475
|
static registerBuiltInAnimate(name, animate) {
|
|
33365
33476
|
AnimateExecutor.builtInAnimateMap[name] = animate;
|
|
@@ -33539,7 +33650,7 @@ class AnimateExecutor {
|
|
|
33539
33650
|
props = params.to,
|
|
33540
33651
|
from = params.from;
|
|
33541
33652
|
const commitAttrOutChannel = this.shouldCommitAttrOutChannel(type);
|
|
33542
|
-
props || (parsedFromProps || (parsedFromProps = this.createPropsFromChannel(channel, graphic, commitAttrOutChannel, this.getAttrOutChannelExcludedKeys(graphic))), props = parsedFromProps.props), from || (parsedFromProps || (parsedFromProps = this.createPropsFromChannel(channel, graphic, commitAttrOutChannel, this.getAttrOutChannelExcludedKeys(graphic))), from = parsedFromProps.from), parsedFromProps.attrOutChannel && graphic.setAttributes(parsedFromProps.attrOutChannel), this._handleRunAnimate(animate, custom, customType, from, props, duration, easing, customParameters, controlOptions, options, type, graphic);
|
|
33653
|
+
props || (parsedFromProps || (parsedFromProps = this.createPropsFromChannel(channel, graphic, commitAttrOutChannel, this.getAttrOutChannelExcludedKeys(graphic))), props = parsedFromProps.props), from || (parsedFromProps || (parsedFromProps = this.createPropsFromChannel(channel, graphic, commitAttrOutChannel, this.getAttrOutChannelExcludedKeys(graphic))), from = parsedFromProps.from), parsedFromProps.attrOutChannel && graphic.setAttributes(parsedFromProps.attrOutChannel), this._handleRunAnimate(animate, custom, customType, from, props, duration, easing, customParameters, controlOptions, options, type, graphic), this.commitAnimatedUpdateDiffAttrsOnEnd(animate, graphic, type, props);
|
|
33543
33654
|
let totalDelay = 0;
|
|
33544
33655
|
oneByOneDelay && (totalDelay = oneByOneDelay * (count - index - 1));
|
|
33545
33656
|
const delayAfterValue = isFunction$1(delayAfter) ? delayAfter(null === (_h = null === (_g = graphic.context) || void 0 === _g ? void 0 : _g.data) || void 0 === _h ? void 0 : _h[0], graphic, {}) : delayAfter;
|
|
@@ -33621,6 +33732,25 @@ class AnimateExecutor {
|
|
|
33621
33732
|
shouldCommitAttrOutChannel(type) {
|
|
33622
33733
|
return "update" !== type;
|
|
33623
33734
|
}
|
|
33735
|
+
commitAnimatedUpdateDiffAttrsOnEnd(animate, graphic, type, props) {
|
|
33736
|
+
if ("update" === type || !props || !this.isUpdateDiffContext(graphic)) return;
|
|
33737
|
+
const keys = this.collectAnimatedUpdateDiffAttrKeys(graphic, props);
|
|
33738
|
+
(null == keys ? void 0 : keys.length) && animate.onEnd(() => {
|
|
33739
|
+
commitAnimationStaticAttrs(graphic, keys, animate, props);
|
|
33740
|
+
});
|
|
33741
|
+
}
|
|
33742
|
+
isUpdateDiffContext(graphic) {
|
|
33743
|
+
const context = graphic.context;
|
|
33744
|
+
return "update" === (null == context ? void 0 : context.diffState) || "update" === (null == context ? void 0 : context.animationState);
|
|
33745
|
+
}
|
|
33746
|
+
collectAnimatedUpdateDiffAttrKeys(graphic, props) {
|
|
33747
|
+
var _a;
|
|
33748
|
+
const diffAttrs = null === (_a = graphic.context) || void 0 === _a ? void 0 : _a.diffAttrs;
|
|
33749
|
+
if (!diffAttrs) return null;
|
|
33750
|
+
let keys = null;
|
|
33751
|
+
for (const key in props) Object.prototype.hasOwnProperty.call(props, key) && Object.prototype.hasOwnProperty.call(diffAttrs, key) && void 0 !== diffAttrs[key] && (null != keys || (keys = []), keys.push(key));
|
|
33752
|
+
return keys;
|
|
33753
|
+
}
|
|
33624
33754
|
createCustomAnimation(animate, CustomAnimateConstructor, from, props, duration, easing, customParams) {
|
|
33625
33755
|
const customAnimate = new CustomAnimateConstructor(from, props, duration, easing, customParams);
|
|
33626
33756
|
animate.play(customAnimate);
|
|
@@ -34009,10 +34139,10 @@ class AnimateExtension {
|
|
|
34009
34139
|
type: AttributeUpdateType.ANIMATE_BIND
|
|
34010
34140
|
});
|
|
34011
34141
|
}
|
|
34012
|
-
restoreStaticAttribute() {
|
|
34142
|
+
restoreStaticAttribute(excludedKeys) {
|
|
34013
34143
|
this._restoreAttributeFromStaticTruth({
|
|
34014
34144
|
type: AttributeUpdateType.ANIMATE_END
|
|
34015
|
-
});
|
|
34145
|
+
}, excludedKeys);
|
|
34016
34146
|
}
|
|
34017
34147
|
executeAnimation(config) {
|
|
34018
34148
|
return this.initAnimateExecutor(), this._animateExecutor.execute(config), this;
|
|
@@ -34679,25 +34809,6 @@ class ClipDirectionAnimate extends ClipGraphicAnimate {
|
|
|
34679
34809
|
}
|
|
34680
34810
|
}
|
|
34681
34811
|
|
|
34682
|
-
function buildAnimationStaticCommitAttrs(target, keys, animate, fallbackAttrs) {
|
|
34683
|
-
var _a;
|
|
34684
|
-
const commitTarget = target,
|
|
34685
|
-
contextFinalAttrs = null === (_a = commitTarget.context) || void 0 === _a ? void 0 : _a.finalAttrs,
|
|
34686
|
-
finalAttribute = commitTarget.getFinalAttribute();
|
|
34687
|
-
let commitAttrs = null;
|
|
34688
|
-
for (let i = 0; i < keys.length; i++) {
|
|
34689
|
-
const key = keys[i];
|
|
34690
|
-
animate && !animate.validAttr(key) || (contextFinalAttrs && Object.prototype.hasOwnProperty.call(contextFinalAttrs, key) ? (null != commitAttrs || (commitAttrs = {}), commitAttrs[key] = contextFinalAttrs[key]) : finalAttribute && Object.prototype.hasOwnProperty.call(finalAttribute, key) ? (null != commitAttrs || (commitAttrs = {}), commitAttrs[key] = finalAttribute[key]) : fallbackAttrs && Object.prototype.hasOwnProperty.call(fallbackAttrs, key) && (null != commitAttrs || (commitAttrs = {}), commitAttrs[key] = fallbackAttrs[key]));
|
|
34691
|
-
}
|
|
34692
|
-
return commitAttrs;
|
|
34693
|
-
}
|
|
34694
|
-
function commitAnimationStaticAttrs(target, keys, animate, fallbackAttrs) {
|
|
34695
|
-
const commitAttrs = buildAnimationStaticCommitAttrs(target, keys, animate, fallbackAttrs);
|
|
34696
|
-
return !!commitAttrs && (target.setFinalAttributes(commitAttrs), target.setAttributes(commitAttrs, !1, {
|
|
34697
|
-
type: AttributeUpdateType.ANIMATE_END
|
|
34698
|
-
}), !0);
|
|
34699
|
-
}
|
|
34700
|
-
|
|
34701
34812
|
class TagPointsUpdate extends ACustomAnimate {
|
|
34702
34813
|
constructor(from, to, duration, easing, params) {
|
|
34703
34814
|
var _a, _b;
|
|
@@ -55137,41 +55248,6 @@ typeof SuppressedError === "function" ? SuppressedError : function (error, suppr
|
|
|
55137
55248
|
return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
|
|
55138
55249
|
};
|
|
55139
55250
|
|
|
55140
|
-
function createBrowserVRenderApp(options = {}) {
|
|
55141
|
-
const { envParams } = options, entryOptions = __rest(options, ["envParams"]);
|
|
55142
|
-
return bootstrapVRenderBrowserApp(createBrowserApp(entryOptions), envParams);
|
|
55143
|
-
}
|
|
55144
|
-
|
|
55145
|
-
const { createMiniappApp } = VRenderCore;
|
|
55146
|
-
function createMiniEnvVRenderApp(env, options = {}) {
|
|
55147
|
-
const { envParams } = options, entryOptions = __rest(options, ["envParams"]);
|
|
55148
|
-
return bootstrapVRenderMiniApp(createMiniappApp(entryOptions), env, envParams);
|
|
55149
|
-
}
|
|
55150
|
-
function createTaroVRenderApp(options = {}) {
|
|
55151
|
-
return createMiniEnvVRenderApp('taro', options);
|
|
55152
|
-
}
|
|
55153
|
-
function createFeishuVRenderApp(options = {}) {
|
|
55154
|
-
return createMiniEnvVRenderApp('feishu', options);
|
|
55155
|
-
}
|
|
55156
|
-
function createTTVRenderApp(options = {}) {
|
|
55157
|
-
return createMiniEnvVRenderApp('tt', options);
|
|
55158
|
-
}
|
|
55159
|
-
function createWxVRenderApp(options = {}) {
|
|
55160
|
-
return createMiniEnvVRenderApp('wx', options);
|
|
55161
|
-
}
|
|
55162
|
-
function createLynxVRenderApp(options = {}) {
|
|
55163
|
-
return createMiniEnvVRenderApp('lynx', options);
|
|
55164
|
-
}
|
|
55165
|
-
function createHarmonyVRenderApp(options = {}) {
|
|
55166
|
-
return createMiniEnvVRenderApp('harmony', options);
|
|
55167
|
-
}
|
|
55168
|
-
|
|
55169
|
-
const { createNodeApp } = VRenderCore;
|
|
55170
|
-
function createNodeVRenderApp(options = {}) {
|
|
55171
|
-
const { envParams } = options, entryOptions = __rest(options, ["envParams"]);
|
|
55172
|
-
return bootstrapVRenderNodeApp(createNodeApp(entryOptions), envParams);
|
|
55173
|
-
}
|
|
55174
|
-
|
|
55175
55251
|
const DEFAULT_SHARED_APP_KEY = 'default';
|
|
55176
55252
|
const SHARED_APP_REGISTRY_KEY = Symbol.for('visactor.vrender.sharedAppRegistry');
|
|
55177
55253
|
function getSharedAppRegistry() {
|
|
@@ -55279,6 +55355,55 @@ function releaseSharedApp(env, key = DEFAULT_SHARED_APP_KEY) {
|
|
|
55279
55355
|
}
|
|
55280
55356
|
}
|
|
55281
55357
|
|
|
55358
|
+
const installCoreRuntimeContributionModule = installRuntimeContributionModule;
|
|
55359
|
+
const pendingRuntimeContributionModules = [];
|
|
55360
|
+
function installPendingRuntimeContributionModulesToApp(app) {
|
|
55361
|
+
pendingRuntimeContributionModules.forEach(({ module, options }) => {
|
|
55362
|
+
installCoreRuntimeContributionModule(module, Object.assign(Object.assign({}, options), { app }));
|
|
55363
|
+
});
|
|
55364
|
+
}
|
|
55365
|
+
|
|
55366
|
+
function createBrowserVRenderApp(options = {}) {
|
|
55367
|
+
const { envParams } = options, entryOptions = __rest(options, ["envParams"]);
|
|
55368
|
+
const app = bootstrapVRenderBrowserApp(createBrowserApp(entryOptions), envParams);
|
|
55369
|
+
installPendingRuntimeContributionModulesToApp(app);
|
|
55370
|
+
return app;
|
|
55371
|
+
}
|
|
55372
|
+
|
|
55373
|
+
const { createMiniappApp } = VRenderCore;
|
|
55374
|
+
function createMiniEnvVRenderApp(env, options = {}) {
|
|
55375
|
+
const { envParams } = options, entryOptions = __rest(options, ["envParams"]);
|
|
55376
|
+
const app = bootstrapVRenderMiniApp(createMiniappApp(entryOptions), env, envParams);
|
|
55377
|
+
installPendingRuntimeContributionModulesToApp(app);
|
|
55378
|
+
return app;
|
|
55379
|
+
}
|
|
55380
|
+
function createTaroVRenderApp(options = {}) {
|
|
55381
|
+
return createMiniEnvVRenderApp('taro', options);
|
|
55382
|
+
}
|
|
55383
|
+
function createFeishuVRenderApp(options = {}) {
|
|
55384
|
+
return createMiniEnvVRenderApp('feishu', options);
|
|
55385
|
+
}
|
|
55386
|
+
function createTTVRenderApp(options = {}) {
|
|
55387
|
+
return createMiniEnvVRenderApp('tt', options);
|
|
55388
|
+
}
|
|
55389
|
+
function createWxVRenderApp(options = {}) {
|
|
55390
|
+
return createMiniEnvVRenderApp('wx', options);
|
|
55391
|
+
}
|
|
55392
|
+
function createLynxVRenderApp(options = {}) {
|
|
55393
|
+
return createMiniEnvVRenderApp('lynx', options);
|
|
55394
|
+
}
|
|
55395
|
+
function createHarmonyVRenderApp(options = {}) {
|
|
55396
|
+
return createMiniEnvVRenderApp('harmony', options);
|
|
55397
|
+
}
|
|
55398
|
+
|
|
55399
|
+
const { createNodeApp } = VRenderCore;
|
|
55400
|
+
function createNodeVRenderApp(options = {}) {
|
|
55401
|
+
const { envParams } = options, entryOptions = __rest(options, ["envParams"]);
|
|
55402
|
+
const app = bootstrapVRenderNodeApp(createNodeApp(entryOptions), envParams);
|
|
55403
|
+
installPendingRuntimeContributionModulesToApp(app);
|
|
55404
|
+
return app;
|
|
55405
|
+
}
|
|
55406
|
+
|
|
55282
55407
|
function createAppForSharedEnv(options) {
|
|
55283
55408
|
const { env } = options;
|
|
55284
55409
|
const entryOptions = Object.assign({}, options);
|
|
@@ -55331,6 +55456,6 @@ function createStage(params) {
|
|
|
55331
55456
|
return resolveLegacyApp().createStage(params);
|
|
55332
55457
|
}
|
|
55333
55458
|
|
|
55334
|
-
const version = "1.1.0";
|
|
55459
|
+
const version = "1.1.1-alpha.0";
|
|
55335
55460
|
|
|
55336
|
-
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, acquireSharedVRenderApp, 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, bootstrapVRenderMiniApp, 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 as createApp, createArc, createArc3d, createArea, createBrowserApp, createBrowserVRenderApp, createCanvasEventTransformer, createCircle, createColor, createComponentAnimator, createConicalGradient, createContributionProvider$1 as createContributionProvider, createEventTransformer, createFeishuVRenderApp, createGifImage, createGlyph, createGraphic$1 as createGraphic, createGroup, createHarmonyVRenderApp, createImage, createImageElement$1 as createImageElement, createLine, createLottie, createLynxVRenderApp, createMat4, createMiniappApp$1 as createMiniappApp, createNodeApp$1 as createNodeApp, createNodeVRenderApp, createPath, createPolygon, createPyramid3d, createRect, createRect3d, createRectPath, createRichText, createShadowRoot, createStage, createStar, createSymbol, createTTVRenderApp, createTaroVRenderApp, createText, createTextGraphicByType, createWrapText, createWxVRenderApp, 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, getSharedVRenderApp, 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, installFeishuEnvToApp, installHarmonyEnvToApp, installLynxEnvToApp, installMathPickersToApp, installNodeEnvToApp, installNodePickersToApp, installPoptipToApp, installRuntimeDrawContributionsToApp, installRuntimeGraphicRenderersToApp, installRuntimePickersToApp, installScrollbarToApp, installTTEnvToApp, installTaroEnvToApp, installWxEnvToApp, 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, releaseSharedVRenderApp, 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, 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 };
|
|
55461
|
+
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, acquireSharedVRenderApp, 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, bootstrapVRenderMiniApp, 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 as createApp, createArc, createArc3d, createArea, createBrowserApp, createBrowserVRenderApp, createCanvasEventTransformer, createCircle, createColor, createComponentAnimator, createConicalGradient, createContributionProvider$1 as createContributionProvider, createEventTransformer, createFeishuVRenderApp, createGifImage, createGlyph, createGraphic$1 as createGraphic, createGroup, createHarmonyVRenderApp, createImage, createImageElement$1 as createImageElement, createLine, createLottie, createLynxVRenderApp, createMat4, createMiniappApp$1 as createMiniappApp, createNodeApp$1 as createNodeApp, createNodeVRenderApp, createPath, createPolygon, createPyramid3d, createRect, createRect3d, createRectPath, createRichText, createShadowRoot, createStage, createStar, createSymbol, createTTVRenderApp, createTaroVRenderApp, createText, createTextGraphicByType, createWrapText, createWxVRenderApp, 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, getSharedVRenderApp, 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, installFeishuEnvToApp, installHarmonyEnvToApp, installLynxEnvToApp, installMathPickersToApp, installNodeEnvToApp, installNodePickersToApp, installPoptipToApp, installRuntimeContributionModule, installRuntimeDrawContributionsToApp, installRuntimeGraphicRenderersToApp, installRuntimePickersToApp, installScrollbarToApp, installTTEnvToApp, installTaroEnvToApp, installWxEnvToApp, 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, releaseSharedVRenderApp, 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, 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 };
|