@visactor/vrender 1.1.0-alpha.23 → 1.1.0-alpha.24
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/bootstrap.js +27 -52
- package/cjs/entries/bootstrap.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 +110 -275
- package/dist/index.js +110 -275
- package/dist/index.min.js +1 -1
- package/es/entries/bootstrap.js +75 -17
- package/es/entries/bootstrap.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 +40 -5
package/dist/index.es.js
CHANGED
|
@@ -5196,6 +5196,7 @@ const DefaultArcAttribute = Object.assign(Object.assign({}, DefaultAttribute), {
|
|
|
5196
5196
|
cornerRadius: 0,
|
|
5197
5197
|
padRadius: 0,
|
|
5198
5198
|
padAngle: 0,
|
|
5199
|
+
clipRange: 1,
|
|
5199
5200
|
cap: !1,
|
|
5200
5201
|
forceShowCap: !1
|
|
5201
5202
|
});
|
|
@@ -8803,6 +8804,7 @@ const tempConstantXYKey = ["x", "y"],
|
|
|
8803
8804
|
FULL_STATE_DEFINITION_KEYS = new Set(["name", "patch", "priority", "exclude", "suppress", "resolver", "declaredAffectedKeys"]),
|
|
8804
8805
|
point = new Point(),
|
|
8805
8806
|
EMPTY_STATE_NAMES = [],
|
|
8807
|
+
deprecatedLocalStateFallbackWarningStateNames = new Set(),
|
|
8806
8808
|
BROAD_UPDATE_CATEGORY = UpdateCategory.PAINT | UpdateCategory.SHAPE | UpdateCategory.BOUNDS | UpdateCategory.TRANSFORM | UpdateCategory.LAYOUT;
|
|
8807
8809
|
function isPlainObjectValue(value) {
|
|
8808
8810
|
return "object" == typeof value && null != value && !Array.isArray(value);
|
|
@@ -8977,6 +8979,12 @@ class Graphic extends Node {
|
|
|
8977
8979
|
var _a, _b;
|
|
8978
8980
|
return this.localStateDefinitionsSource !== this.states && (this.localStateDefinitionsSource = this.states, this.localFallbackVersion = (null !== (_a = this.localFallbackVersion) && void 0 !== _a ? _a : 0) + 1), null !== (_b = this.localFallbackVersion) && void 0 !== _b ? _b : 0;
|
|
8979
8981
|
}
|
|
8982
|
+
warnDeprecatedLocalStatesFallback(stateNames) {
|
|
8983
|
+
for (let index = 0; index < stateNames.length; index++) {
|
|
8984
|
+
const stateName = stateNames[index];
|
|
8985
|
+
deprecatedLocalStateFallbackWarningStateNames.has(stateName) || (deprecatedLocalStateFallbackWarningStateNames.add(stateName), console.warn(`[VRender] graphic.states fallback for missing shared state definition "${stateName}" is deprecated. Move the state definition to sharedStateDefinitions or use stateProxy for dynamic per-graphic styles.`));
|
|
8986
|
+
}
|
|
8987
|
+
}
|
|
8980
8988
|
resolveEffectiveCompiledDefinitions() {
|
|
8981
8989
|
this.syncSharedStateScopeBindingFromTree(!1);
|
|
8982
8990
|
const boundScope = this.boundSharedStateScope;
|
|
@@ -9011,6 +9019,7 @@ class Graphic extends Node {
|
|
|
9011
9019
|
stateProxyModeKey: sharedStateProxyModeKey,
|
|
9012
9020
|
stateProxyEligibility: sharedStateProxyEligibility
|
|
9013
9021
|
};
|
|
9022
|
+
this.warnDeprecatedLocalStatesFallback(missingStateNames);
|
|
9014
9023
|
const localStatesVersion = this.getLocalStatesVersion(),
|
|
9015
9024
|
stateProxyModeKey = this.stateProxy ? `missing:${missingStateNames.sort().join("|")}` : "none",
|
|
9016
9025
|
cacheKey = `shared:${boundScope.revision}:fallback:${localStatesVersion}:${stateProxyModeKey}`;
|
|
@@ -9901,8 +9910,7 @@ class Graphic extends Node {
|
|
|
9901
9910
|
invalidateResolver() {
|
|
9902
9911
|
var _a, _b;
|
|
9903
9912
|
if (!this.stateEngine || !(null === (_a = this.currentStates) || void 0 === _a ? void 0 : _a.length) || !this.compiledStateDefinitions) return;
|
|
9904
|
-
this.syncStateResolveContext();
|
|
9905
|
-
this.resolverEpoch = (null !== (_b = this.resolverEpoch) && void 0 !== _b ? _b : 0) + 1, this.stateEngine.invalidateResolverCache();
|
|
9913
|
+
this.syncStateResolveContext(), this.resolverEpoch = (null !== (_b = this.resolverEpoch) && void 0 !== _b ? _b : 0) + 1, this.stateEngine.invalidateResolverCache();
|
|
9906
9914
|
const transition = this.stateEngine.applyStates(this.currentStates),
|
|
9907
9915
|
resolvedStateAttrs = Object.assign({}, this.stateEngine.resolvedPatch);
|
|
9908
9916
|
this.effectiveStates = [...transition.effectiveStates], this.resolvedStatePatch = resolvedStateAttrs, this.sharedStateDirty = !1, this.syncSharedStateActiveRegistrations(), this.stopStateAnimates(), this._restoreAttributeFromStaticTruth({
|
|
@@ -12825,7 +12833,7 @@ function createArea(attributes) {
|
|
|
12825
12833
|
return new Area(attributes);
|
|
12826
12834
|
}
|
|
12827
12835
|
|
|
12828
|
-
const ARC_UPDATE_TAG_KEY = ["innerRadius", "outerRadius", "startAngle", "endAngle", "cornerRadius", "padAngle", "padRadius", "cap", ...GRAPHIC_UPDATE_TAG_KEY];
|
|
12836
|
+
const ARC_UPDATE_TAG_KEY = ["innerRadius", "outerRadius", "startAngle", "endAngle", "cornerRadius", "padAngle", "padRadius", "clipRange", "cap", ...GRAPHIC_UPDATE_TAG_KEY];
|
|
12829
12837
|
class Arc extends Graphic {
|
|
12830
12838
|
constructor(params) {
|
|
12831
12839
|
super(params), this.type = "arc", this.numberType = ARC_NUMBER_TYPE;
|
|
@@ -12869,11 +12877,12 @@ class Arc extends Graphic {
|
|
|
12869
12877
|
endAngle = arcTheme.endAngle
|
|
12870
12878
|
} = this.attribute;
|
|
12871
12879
|
const {
|
|
12872
|
-
cap = arcTheme.cap
|
|
12880
|
+
cap = arcTheme.cap,
|
|
12881
|
+
clipRange = arcTheme.clipRange
|
|
12873
12882
|
} = this.attribute,
|
|
12874
|
-
sign = endAngle - startAngle >= 0 ? 1 : -1
|
|
12875
|
-
|
|
12876
|
-
if (startAngle = clampAngleByRadian(startAngle), endAngle = startAngle + deltaAngle, cap && abs(deltaAngle) < pi2 - epsilon) {
|
|
12883
|
+
sign = endAngle - startAngle >= 0 ? 1 : -1;
|
|
12884
|
+
let deltaAngle = endAngle - startAngle;
|
|
12885
|
+
if (deltaAngle *= Math.max(0, Math.min(clipRange, 1)), startAngle = clampAngleByRadian(startAngle), endAngle = startAngle + deltaAngle, cap && abs(deltaAngle) > epsilon && abs(deltaAngle) < pi2 - epsilon) {
|
|
12877
12886
|
let startCap = 1,
|
|
12878
12887
|
endCap = 1;
|
|
12879
12888
|
cap.length && (startCap = Number(cap[0]), endCap = Number(cap[1]));
|
|
@@ -21190,7 +21199,7 @@ function mapToCanvasPointForCanvas(nativeEvent) {
|
|
|
21190
21199
|
};
|
|
21191
21200
|
}
|
|
21192
21201
|
|
|
21193
|
-
var __rest$
|
|
21202
|
+
var __rest$f = undefined && undefined.__rest || function (s, e) {
|
|
21194
21203
|
var t = {};
|
|
21195
21204
|
for (var p in s) Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0 && (t[p] = s[p]);
|
|
21196
21205
|
if (null != s && "function" == typeof Object.getOwnPropertySymbols) {
|
|
@@ -21288,7 +21297,7 @@ class EditModule {
|
|
|
21288
21297
|
{
|
|
21289
21298
|
textConfig = []
|
|
21290
21299
|
} = _a,
|
|
21291
|
-
rest = __rest$
|
|
21300
|
+
rest = __rest$f(_a, ["textConfig"]);
|
|
21292
21301
|
if ("Backspace" === ev.type && !textConfig.length) return;
|
|
21293
21302
|
let str = ev.data;
|
|
21294
21303
|
this.isComposing || "Backspace" === ev.type || str || (str = "\n"), this.selectionStartCursorIdx > this.cursorIndex && ([this.cursorIndex, this.selectionStartCursorIdx] = [this.selectionStartCursorIdx, this.cursorIndex]);
|
|
@@ -22310,77 +22319,82 @@ function resolveContainerBinding$1(container, serviceIdentifier) {
|
|
|
22310
22319
|
return instance;
|
|
22311
22320
|
}
|
|
22312
22321
|
|
|
22313
|
-
|
|
22322
|
+
function isBindingContextLoaded(loadedContexts, context) {
|
|
22323
|
+
const key = "object" == typeof context && null !== context || "function" == typeof context ? context : loadedContexts;
|
|
22324
|
+
return !!loadedContexts.has(key) || (loadedContexts.add(key), !1);
|
|
22325
|
+
}
|
|
22326
|
+
|
|
22327
|
+
const loadedArcModuleContexts = new WeakSet();
|
|
22314
22328
|
function bindArcRenderModule({
|
|
22315
22329
|
bind: bind
|
|
22316
22330
|
}) {
|
|
22317
|
-
|
|
22331
|
+
isBindingContextLoaded(loadedArcModuleContexts, bind) || (bind(DefaultCanvasArcRender).toSelf().inSingletonScope(), bind(ArcRender).to(DefaultCanvasArcRender).inSingletonScope(), bind(GraphicRender).toService(ArcRender), bind(ArcRenderContribution).toService(DefaultBaseInteractiveRenderContribution), bindContributionProvider(bind, ArcRenderContribution));
|
|
22318
22332
|
}
|
|
22319
22333
|
const arcModule = bindArcRenderModule;
|
|
22320
22334
|
|
|
22321
|
-
|
|
22335
|
+
const loadedRectModuleContexts = new WeakSet();
|
|
22322
22336
|
function bindRectRenderModule({
|
|
22323
22337
|
bind: bind
|
|
22324
22338
|
}) {
|
|
22325
|
-
|
|
22339
|
+
isBindingContextLoaded(loadedRectModuleContexts, bind) || (bind(DefaultCanvasRectRender).toDynamicValue(({
|
|
22326
22340
|
container: container
|
|
22327
22341
|
}) => new DefaultCanvasRectRender(createContributionProvider$1(RectRenderContribution, container))).inSingletonScope(), bind(RectRender).toService(DefaultCanvasRectRender), bind(GraphicRender).toService(RectRender), bind(SplitRectAfterRenderContribution).toSelf(), bind(SplitRectBeforeRenderContribution).toSelf(), bind(RectRenderContribution).toService(SplitRectAfterRenderContribution), bind(RectRenderContribution).toService(SplitRectBeforeRenderContribution), bind(RectRenderContribution).toService(DefaultBaseInteractiveRenderContribution), bindContributionProvider(bind, RectRenderContribution));
|
|
22328
22342
|
}
|
|
22329
22343
|
const rectModule = bindRectRenderModule;
|
|
22330
22344
|
|
|
22331
|
-
|
|
22345
|
+
const loadedLineModuleContexts = new WeakSet();
|
|
22332
22346
|
function bindLineRenderModule({
|
|
22333
22347
|
bind: bind
|
|
22334
22348
|
}) {
|
|
22335
|
-
|
|
22349
|
+
isBindingContextLoaded(loadedLineModuleContexts, bind) || (bind(DefaultCanvasLineRender).toSelf().inSingletonScope(), bind(DefaultIncrementalCanvasLineRender).toSelf().inSingletonScope(), bind(LineRender).to(DefaultCanvasLineRender).inSingletonScope(), bind(GraphicRender).toService(LineRender));
|
|
22336
22350
|
}
|
|
22337
22351
|
const lineModule = bindLineRenderModule;
|
|
22338
22352
|
|
|
22339
|
-
|
|
22353
|
+
const loadedAreaModuleContexts = new WeakSet();
|
|
22340
22354
|
function bindAreaRenderModule({
|
|
22341
22355
|
bind: bind
|
|
22342
22356
|
}) {
|
|
22343
|
-
|
|
22357
|
+
isBindingContextLoaded(loadedAreaModuleContexts, bind) || (bind(DefaultCanvasAreaRender).toSelf().inSingletonScope(), bind(AreaRender).to(DefaultCanvasAreaRender).inSingletonScope(), bind(GraphicRender).toService(AreaRender), bind(AreaRenderContribution).toService(DefaultBaseInteractiveRenderContribution), bindContributionProvider(bind, AreaRenderContribution), bind(DefaultIncrementalCanvasAreaRender).toSelf().inSingletonScope());
|
|
22344
22358
|
}
|
|
22345
22359
|
const areaModule = bindAreaRenderModule;
|
|
22346
22360
|
|
|
22347
|
-
|
|
22361
|
+
const loadedSymbolModuleContexts = new WeakSet();
|
|
22348
22362
|
function bindSymbolRenderModule({
|
|
22349
22363
|
bind: bind
|
|
22350
22364
|
}) {
|
|
22351
|
-
|
|
22365
|
+
isBindingContextLoaded(loadedSymbolModuleContexts, bind) || (bind(DefaultCanvasSymbolRender).toSelf().inSingletonScope(), bind(SymbolRender).to(DefaultCanvasSymbolRender).inSingletonScope(), bind(GraphicRender).toService(SymbolRender), bind(SymbolRenderContribution).toService(DefaultBaseInteractiveRenderContribution), bindContributionProvider(bind, SymbolRenderContribution));
|
|
22352
22366
|
}
|
|
22353
22367
|
const symbolModule = bindSymbolRenderModule;
|
|
22354
22368
|
|
|
22355
|
-
|
|
22369
|
+
const loadedCircleModuleContexts = new WeakSet();
|
|
22356
22370
|
function bindCircleRenderModule({
|
|
22357
22371
|
bind: bind
|
|
22358
22372
|
}) {
|
|
22359
|
-
|
|
22373
|
+
isBindingContextLoaded(loadedCircleModuleContexts, bind) || (bind(DefaultCanvasCircleRender).toSelf().inSingletonScope(), bind(CircleRender).to(DefaultCanvasCircleRender).inSingletonScope(), bind(GraphicRender).toService(CircleRender), bind(CircleRenderContribution).toService(DefaultBaseInteractiveRenderContribution), bindContributionProvider(bind, CircleRenderContribution));
|
|
22360
22374
|
}
|
|
22361
22375
|
const circleModule = bindCircleRenderModule;
|
|
22362
22376
|
|
|
22363
|
-
|
|
22377
|
+
const loadedTextModuleContexts = new WeakSet();
|
|
22364
22378
|
function bindTextRenderModule({
|
|
22365
22379
|
bind: bind
|
|
22366
22380
|
}) {
|
|
22367
|
-
|
|
22381
|
+
isBindingContextLoaded(loadedTextModuleContexts, bind) || (bind(TextRender).to(DefaultCanvasTextRender).inSingletonScope(), bind(GraphicRender).toService(TextRender), bind(TextRenderContribution).toService(DefaultBaseInteractiveRenderContribution), bindContributionProvider(bind, TextRenderContribution));
|
|
22368
22382
|
}
|
|
22369
22383
|
const textModule = bindTextRenderModule;
|
|
22370
22384
|
|
|
22371
|
-
|
|
22385
|
+
const loadedPathModuleContexts = new WeakSet();
|
|
22372
22386
|
function bindPathRenderModule({
|
|
22373
22387
|
bind: bind
|
|
22374
22388
|
}) {
|
|
22375
|
-
|
|
22389
|
+
isBindingContextLoaded(loadedPathModuleContexts, bind) || (bind(DefaultCanvasPathRender).toSelf().inSingletonScope(), bind(PathRender).to(DefaultCanvasPathRender).inSingletonScope(), bind(GraphicRender).toService(PathRender), bind(PathRenderContribution).toService(DefaultBaseInteractiveRenderContribution), bindContributionProvider(bind, PathRenderContribution));
|
|
22376
22390
|
}
|
|
22377
22391
|
const pathModule = bindPathRenderModule;
|
|
22378
22392
|
|
|
22379
|
-
|
|
22393
|
+
const loadedPolygonModuleContexts = new WeakSet();
|
|
22380
22394
|
function bindPolygonRenderModule({
|
|
22381
22395
|
bind: bind
|
|
22382
22396
|
}) {
|
|
22383
|
-
|
|
22397
|
+
isBindingContextLoaded(loadedPolygonModuleContexts, bind) || (bind(PolygonRender).to(DefaultCanvasPolygonRender).inSingletonScope(), bind(GraphicRender).toService(PolygonRender), bind(PolygonRenderContribution).toService(DefaultBaseInteractiveRenderContribution), bindContributionProvider(bind, PolygonRenderContribution));
|
|
22384
22398
|
}
|
|
22385
22399
|
const polygonModule = bindPolygonRenderModule;
|
|
22386
22400
|
|
|
@@ -22421,11 +22435,11 @@ class DefaultCanvasStarRender extends BaseRender {
|
|
|
22421
22435
|
}
|
|
22422
22436
|
}
|
|
22423
22437
|
|
|
22424
|
-
|
|
22438
|
+
const loadedStarModuleContexts = new WeakSet();
|
|
22425
22439
|
function bindStarRenderModule({
|
|
22426
22440
|
bind: bind
|
|
22427
22441
|
}) {
|
|
22428
|
-
|
|
22442
|
+
isBindingContextLoaded(loadedStarModuleContexts, bind) || (bind(DefaultCanvasStarRender).toDynamicValue(({
|
|
22429
22443
|
container: container
|
|
22430
22444
|
}) => new DefaultCanvasStarRender(createContributionProvider$1(StarRenderContribution, container))).inSingletonScope(), bind(StarRender).toService(DefaultCanvasStarRender), bind(GraphicRender).toService(StarRender));
|
|
22431
22445
|
}
|
|
@@ -22458,11 +22472,11 @@ class DefaultCanvasGlyphRender {
|
|
|
22458
22472
|
}
|
|
22459
22473
|
}
|
|
22460
22474
|
|
|
22461
|
-
|
|
22475
|
+
const loadedGlyphModuleContexts = new WeakSet();
|
|
22462
22476
|
function bindGlyphRenderModule({
|
|
22463
22477
|
bind: bind
|
|
22464
22478
|
}) {
|
|
22465
|
-
|
|
22479
|
+
isBindingContextLoaded(loadedGlyphModuleContexts, bind) || (bind(GlyphRender).to(DefaultCanvasGlyphRender).inSingletonScope(), bind(GraphicRender).toService(GlyphRender));
|
|
22466
22480
|
}
|
|
22467
22481
|
const glyphModule = bindGlyphRenderModule;
|
|
22468
22482
|
|
|
@@ -22518,19 +22532,19 @@ class DefaultCanvasRichTextRender extends BaseRender {
|
|
|
22518
22532
|
}
|
|
22519
22533
|
}
|
|
22520
22534
|
|
|
22521
|
-
|
|
22535
|
+
const loadedRichtextModuleContexts = new WeakSet();
|
|
22522
22536
|
function bindRichtextRenderModule({
|
|
22523
22537
|
bind: bind
|
|
22524
22538
|
}) {
|
|
22525
|
-
|
|
22539
|
+
isBindingContextLoaded(loadedRichtextModuleContexts, bind) || (bind(RichTextRender).to(DefaultCanvasRichTextRender).inSingletonScope(), bind(GraphicRender).toService(RichTextRender));
|
|
22526
22540
|
}
|
|
22527
22541
|
const richtextModule = bindRichtextRenderModule;
|
|
22528
22542
|
|
|
22529
|
-
|
|
22543
|
+
const loadedImageModuleContexts = new WeakSet();
|
|
22530
22544
|
function bindImageRenderModule({
|
|
22531
22545
|
bind: bind
|
|
22532
22546
|
}) {
|
|
22533
|
-
|
|
22547
|
+
isBindingContextLoaded(loadedImageModuleContexts, bind) || (bind(ImageRender).to(DefaultCanvasImageRender).inSingletonScope(), bind(GraphicRender).toService(ImageRender), bind(ImageRenderContribution).toService(DefaultBaseInteractiveRenderContribution), bindContributionProvider(bind, ImageRenderContribution));
|
|
22534
22548
|
}
|
|
22535
22549
|
const imageModule = bindImageRenderModule;
|
|
22536
22550
|
|
|
@@ -22657,11 +22671,11 @@ class DefaultCanvasRect3dRender extends Base3dRender {
|
|
|
22657
22671
|
}
|
|
22658
22672
|
}
|
|
22659
22673
|
|
|
22660
|
-
|
|
22674
|
+
const loadedRect3dModuleContexts = new WeakSet();
|
|
22661
22675
|
function bindRect3dRenderModule({
|
|
22662
22676
|
bind: bind
|
|
22663
22677
|
}) {
|
|
22664
|
-
|
|
22678
|
+
isBindingContextLoaded(loadedRect3dModuleContexts, bind) || (bind(Rect3DRender).to(DefaultCanvasRect3dRender).inSingletonScope(), bind(GraphicRender).toService(Rect3DRender));
|
|
22665
22679
|
}
|
|
22666
22680
|
const rect3dModule = bindRect3dRenderModule;
|
|
22667
22681
|
|
|
@@ -22786,11 +22800,11 @@ class DefaultCanvasArc3DRender extends BaseRender {
|
|
|
22786
22800
|
}
|
|
22787
22801
|
}
|
|
22788
22802
|
|
|
22789
|
-
|
|
22803
|
+
const loadedArc3dModuleContexts = new WeakSet();
|
|
22790
22804
|
function bindArc3dRenderModule({
|
|
22791
22805
|
bind: bind
|
|
22792
22806
|
}) {
|
|
22793
|
-
|
|
22807
|
+
isBindingContextLoaded(loadedArc3dModuleContexts, bind) || (bind(Arc3dRender).to(DefaultCanvasArc3DRender).inSingletonScope(), bind(GraphicRender).toService(Arc3dRender));
|
|
22794
22808
|
}
|
|
22795
22809
|
const arc3dModule = bindArc3dRenderModule;
|
|
22796
22810
|
|
|
@@ -22825,11 +22839,11 @@ class DefaultCanvasPyramid3dRender extends Base3dRender {
|
|
|
22825
22839
|
}
|
|
22826
22840
|
}
|
|
22827
22841
|
|
|
22828
|
-
|
|
22842
|
+
const loadedPyramid3dModuleContexts = new WeakSet();
|
|
22829
22843
|
function bindPyramid3dRenderModule({
|
|
22830
22844
|
bind: bind
|
|
22831
22845
|
}) {
|
|
22832
|
-
|
|
22846
|
+
isBindingContextLoaded(loadedPyramid3dModuleContexts, bind) || (bind(Pyramid3dRender).to(DefaultCanvasPyramid3dRender).inSingletonScope(), bind(GraphicRender).toService(Pyramid3dRender));
|
|
22833
22847
|
}
|
|
22834
22848
|
const pyramid3dModule = bindPyramid3dRenderModule;
|
|
22835
22849
|
|
|
@@ -31541,7 +31555,7 @@ VRichText.Text = function (params) {
|
|
|
31541
31555
|
}, params);
|
|
31542
31556
|
};
|
|
31543
31557
|
|
|
31544
|
-
var __rest$
|
|
31558
|
+
var __rest$e = undefined && undefined.__rest || function (s, e) {
|
|
31545
31559
|
var t = {};
|
|
31546
31560
|
for (var p in s) Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0 && (t[p] = s[p]);
|
|
31547
31561
|
if (null != s && "function" == typeof Object.getOwnPropertySymbols) {
|
|
@@ -31565,7 +31579,7 @@ function jsx(type, config, ...children) {
|
|
|
31565
31579
|
animation: animation,
|
|
31566
31580
|
timeline: timeline
|
|
31567
31581
|
} = _a,
|
|
31568
|
-
props = __rest$
|
|
31582
|
+
props = __rest$e(_a, ["key", "name", "id", "attribute", "stateProxy", "animation", "timeline"]);
|
|
31569
31583
|
let c = type;
|
|
31570
31584
|
isString$1(type) && (c = graphicCreator$1[type]);
|
|
31571
31585
|
const childrenList = [];
|
|
@@ -33016,187 +33030,6 @@ function bindLottieRenderContribution(container) {
|
|
|
33016
33030
|
loadLottieModule || (loadLottieModule = !0, container.bind(DefaultCanvasLottieRender).toDynamicValue(() => new DefaultCanvasLottieRender(createContributionProvider(RectRenderContribution, container))).inSingletonScope(), container.bind(GraphicRender).toService(DefaultCanvasLottieRender));
|
|
33017
33031
|
}
|
|
33018
33032
|
|
|
33019
|
-
var VRenderKitsRuntime = /*#__PURE__*/Object.freeze({
|
|
33020
|
-
__proto__: null,
|
|
33021
|
-
BrowserEnvContribution: BrowserEnvContribution,
|
|
33022
|
-
CanvasArc3dPicker: CanvasArc3dPicker,
|
|
33023
|
-
CanvasArcPicker: CanvasArcPicker,
|
|
33024
|
-
CanvasAreaPicker: CanvasAreaPicker,
|
|
33025
|
-
CanvasCirclePicker: CanvasCirclePicker,
|
|
33026
|
-
CanvasGifImagePicker: CanvasGifImagePicker,
|
|
33027
|
-
CanvasGlyphPicker: CanvasGlyphPicker,
|
|
33028
|
-
CanvasGroupPicker: CanvasGroupPicker,
|
|
33029
|
-
CanvasImagePicker: CanvasImagePicker,
|
|
33030
|
-
CanvasLinePicker: CanvasLinePicker,
|
|
33031
|
-
CanvasLottiePicker: CanvasLottiePicker,
|
|
33032
|
-
CanvasPathPicker: CanvasPathPicker,
|
|
33033
|
-
CanvasPickerContribution: CanvasPickerContribution,
|
|
33034
|
-
CanvasPolygonPicker: CanvasPolygonPicker,
|
|
33035
|
-
CanvasPyramid3dPicker: CanvasPyramid3dPicker,
|
|
33036
|
-
CanvasRect3dPicker: CanvasRect3dPicker,
|
|
33037
|
-
CanvasRectPicker: CanvasRectPicker,
|
|
33038
|
-
CanvasRichTextPicker: CanvasRichTextPicker,
|
|
33039
|
-
CanvasStarPicker: CanvasStarPicker,
|
|
33040
|
-
CanvasSymbolPicker: CanvasSymbolPicker,
|
|
33041
|
-
CanvasTextPicker: CanvasTextPicker,
|
|
33042
|
-
DragNDrop: DragNDrop,
|
|
33043
|
-
Fragment: Fragment,
|
|
33044
|
-
Gesture: Gesture,
|
|
33045
|
-
GifImage: GifImage,
|
|
33046
|
-
Lottie: Lottie,
|
|
33047
|
-
MathArcPicker: MathArcPicker,
|
|
33048
|
-
MathAreaPicker: MathAreaPicker,
|
|
33049
|
-
MathCirclePicker: MathCirclePicker,
|
|
33050
|
-
MathGlyphPicker: MathGlyphPicker,
|
|
33051
|
-
MathImagePicker: MathImagePicker,
|
|
33052
|
-
MathLinePicker: MathLinePicker,
|
|
33053
|
-
MathPathPicker: MathPathPicker,
|
|
33054
|
-
MathPickerContribution: MathPickerContribution,
|
|
33055
|
-
MathPolygonPicker: MathPolygonPicker,
|
|
33056
|
-
MathRectPicker: MathRectPicker,
|
|
33057
|
-
MathRichTextPicker: MathRichTextPicker,
|
|
33058
|
-
MathSymbolPicker: MathSymbolPicker,
|
|
33059
|
-
MathTextPicker: MathTextPicker,
|
|
33060
|
-
REACT_TO_CANOPUS_EVENTS: REACT_TO_CANOPUS_EVENTS,
|
|
33061
|
-
REACT_TO_CANOPUS_EVENTS_LIST: REACT_TO_CANOPUS_EVENTS_LIST,
|
|
33062
|
-
VArc: VArc,
|
|
33063
|
-
VArc3d: VArc3d,
|
|
33064
|
-
VArea: VArea,
|
|
33065
|
-
VCircle: VCircle,
|
|
33066
|
-
VGlyph: VGlyph,
|
|
33067
|
-
VGroup: VGroup,
|
|
33068
|
-
VImage: VImage,
|
|
33069
|
-
VLine: VLine,
|
|
33070
|
-
VPath: VPath,
|
|
33071
|
-
VPolygon: VPolygon,
|
|
33072
|
-
VPyramid3d: VPyramid3d,
|
|
33073
|
-
VRect: VRect,
|
|
33074
|
-
VRect3d: VRect3d,
|
|
33075
|
-
VRichText: VRichText,
|
|
33076
|
-
VSymbol: VSymbol,
|
|
33077
|
-
VText: VText,
|
|
33078
|
-
_registerArc: _registerArc,
|
|
33079
|
-
alternatingWave: alternatingWave,
|
|
33080
|
-
bindArc3dCanvasPickerContribution: bindArc3dCanvasPickerContribution,
|
|
33081
|
-
bindArcCanvasPickerContribution: bindArcCanvasPickerContribution,
|
|
33082
|
-
bindArcMathPickerContribution: bindArcMathPickerContribution,
|
|
33083
|
-
bindAreaCanvasPickerContribution: bindAreaCanvasPickerContribution,
|
|
33084
|
-
bindAreaMathPickerContribution: bindAreaMathPickerContribution,
|
|
33085
|
-
bindBrowserEnv: bindBrowserEnv,
|
|
33086
|
-
bindCircleCanvasPickerContribution: bindCircleCanvasPickerContribution,
|
|
33087
|
-
bindCircleMathPickerContribution: bindCircleMathPickerContribution,
|
|
33088
|
-
bindFeishuEnv: bindFeishuEnv,
|
|
33089
|
-
bindGifImageCanvasPickerContribution: bindGifImageCanvasPickerContribution,
|
|
33090
|
-
bindGifImageRenderContribution: bindGifImageRenderContribution,
|
|
33091
|
-
bindGlyphCanvasPickerContribution: bindGlyphCanvasPickerContribution,
|
|
33092
|
-
bindGlyphMathPickerContribution: bindGlyphMathPickerContribution,
|
|
33093
|
-
bindHarmonyEnv: bindHarmonyEnv,
|
|
33094
|
-
bindImageCanvasPickerContribution: bindImageCanvasPickerContribution,
|
|
33095
|
-
bindImageMathPickerContribution: bindImageMathPickerContribution,
|
|
33096
|
-
bindLineCanvasPickerContribution: bindLineCanvasPickerContribution,
|
|
33097
|
-
bindLineMathPickerContribution: bindLineMathPickerContribution,
|
|
33098
|
-
bindLottieCanvasPickerContribution: bindLottieCanvasPickerContribution,
|
|
33099
|
-
bindLottieRenderContribution: bindLottieRenderContribution,
|
|
33100
|
-
bindLynxEnv: bindLynxEnv,
|
|
33101
|
-
bindMathPicker: bindMathPicker,
|
|
33102
|
-
bindNodeEnv: bindNodeEnv,
|
|
33103
|
-
bindPathCanvasPickerContribution: bindPathCanvasPickerContribution,
|
|
33104
|
-
bindPathMathPickerContribution: bindPathMathPickerContribution,
|
|
33105
|
-
bindPolygonCanvasPickerContribution: bindPolygonCanvasPickerContribution,
|
|
33106
|
-
bindPolygonMathPickerContribution: bindPolygonMathPickerContribution,
|
|
33107
|
-
bindPyramid3dCanvasPickerContribution: bindPyramid3dCanvasPickerContribution,
|
|
33108
|
-
bindRect3dCanvasPickerContribution: bindRect3dCanvasPickerContribution,
|
|
33109
|
-
bindRectCanvasPickerContribution: bindRectCanvasPickerContribution,
|
|
33110
|
-
bindRectMathPickerContribution: bindRectMathPickerContribution,
|
|
33111
|
-
bindRichTextMathPickerContribution: bindRichTextMathPickerContribution,
|
|
33112
|
-
bindRichtextCanvasPickerContribution: bindRichtextCanvasPickerContribution,
|
|
33113
|
-
bindSymbolCanvasPickerContribution: bindSymbolCanvasPickerContribution,
|
|
33114
|
-
bindSymbolMathPickerContribution: bindSymbolMathPickerContribution,
|
|
33115
|
-
bindTTEnv: bindTTEnv,
|
|
33116
|
-
bindTaroEnv: bindTaroEnv,
|
|
33117
|
-
bindTextCanvasPickerContribution: bindTextCanvasPickerContribution,
|
|
33118
|
-
bindTextMathPickerContribution: bindTextMathPickerContribution,
|
|
33119
|
-
bindWxEnv: bindWxEnv,
|
|
33120
|
-
centerToCorner: centerToCorner,
|
|
33121
|
-
columnCenterToEdge: columnCenterToEdge,
|
|
33122
|
-
columnEdgeToCenter: columnEdgeToCenter,
|
|
33123
|
-
columnLeftToRight: columnLeftToRight,
|
|
33124
|
-
columnRightToLeft: columnRightToLeft,
|
|
33125
|
-
cornerToCenter: cornerToCenter,
|
|
33126
|
-
createGifImage: createGifImage,
|
|
33127
|
-
createImageElement: createImageElement$1,
|
|
33128
|
-
createLottie: createLottie,
|
|
33129
|
-
decodeReactDom: decodeReactDom,
|
|
33130
|
-
diagonalCenterToEdge: diagonalCenterToEdge,
|
|
33131
|
-
diagonalTopLeftToBottomRight: diagonalTopLeftToBottomRight,
|
|
33132
|
-
initAllEnv: initAllEnv,
|
|
33133
|
-
initBrowserEnv: initBrowserEnv,
|
|
33134
|
-
initFeishuEnv: initFeishuEnv,
|
|
33135
|
-
initHarmonyEnv: initHarmonyEnv,
|
|
33136
|
-
initLynxEnv: initLynxEnv,
|
|
33137
|
-
initNodeEnv: initNodeEnv,
|
|
33138
|
-
initTTEnv: initTTEnv,
|
|
33139
|
-
initTaroEnv: initTaroEnv,
|
|
33140
|
-
initWxEnv: initWxEnv,
|
|
33141
|
-
installBrowserEnvToApp: installBrowserEnvToApp,
|
|
33142
|
-
installBrowserPickersToApp: installBrowserPickersToApp,
|
|
33143
|
-
installDefaultGraphicsToApp: installDefaultGraphicsToApp,
|
|
33144
|
-
installFeishuEnvToApp: installFeishuEnvToApp,
|
|
33145
|
-
installHarmonyEnvToApp: installHarmonyEnvToApp,
|
|
33146
|
-
installLynxEnvToApp: installLynxEnvToApp,
|
|
33147
|
-
installMathPickersToApp: installMathPickersToApp,
|
|
33148
|
-
installNodeEnvToApp: installNodeEnvToApp,
|
|
33149
|
-
installNodePickersToApp: installNodePickersToApp,
|
|
33150
|
-
installTTEnvToApp: installTTEnvToApp,
|
|
33151
|
-
installTaroEnvToApp: installTaroEnvToApp,
|
|
33152
|
-
installWxEnvToApp: installWxEnvToApp,
|
|
33153
|
-
jsx: jsx,
|
|
33154
|
-
loadAllEnv: loadAllEnv,
|
|
33155
|
-
loadAllModule: loadAllModule,
|
|
33156
|
-
loadBrowserEnv: loadBrowserEnv,
|
|
33157
|
-
loadFeishuEnv: loadFeishuEnv,
|
|
33158
|
-
loadHarmonyEnv: loadHarmonyEnv,
|
|
33159
|
-
loadLynxEnv: loadLynxEnv,
|
|
33160
|
-
loadMathPicker: loadMathPicker,
|
|
33161
|
-
loadNodeEnv: loadNodeEnv,
|
|
33162
|
-
loadTTEnv: loadTTEnv,
|
|
33163
|
-
loadTaroEnv: loadTaroEnv,
|
|
33164
|
-
loadWxEnv: loadWxEnv,
|
|
33165
|
-
particleEffect: particleEffect,
|
|
33166
|
-
pulseWave: pulseWave,
|
|
33167
|
-
randomOpacity: randomOpacity,
|
|
33168
|
-
registerArc: registerArc,
|
|
33169
|
-
registerArc3d: registerArc3d,
|
|
33170
|
-
registerArea: registerArea,
|
|
33171
|
-
registerCircle: registerCircle,
|
|
33172
|
-
registerGifGraphic: registerGifGraphic,
|
|
33173
|
-
registerGifImage: registerGifImage,
|
|
33174
|
-
registerGlyph: registerGlyph,
|
|
33175
|
-
registerGroup: registerGroup,
|
|
33176
|
-
registerImage: registerImage,
|
|
33177
|
-
registerLine: registerLine,
|
|
33178
|
-
registerPath: registerPath,
|
|
33179
|
-
registerPolygon: registerPolygon,
|
|
33180
|
-
registerPyramid3d: registerPyramid3d,
|
|
33181
|
-
registerRect: registerRect,
|
|
33182
|
-
registerRect3d: registerRect3d,
|
|
33183
|
-
registerRichtext: registerRichtext,
|
|
33184
|
-
registerShadowRoot: registerShadowRoot,
|
|
33185
|
-
registerStar: registerStar,
|
|
33186
|
-
registerSymbol: registerSymbol,
|
|
33187
|
-
registerText: registerText,
|
|
33188
|
-
registerWrapText: registerWrapText,
|
|
33189
|
-
rippleEffect: rippleEffect,
|
|
33190
|
-
rotationScan: rotationScan,
|
|
33191
|
-
roughModule: roughModule,
|
|
33192
|
-
rowBottomToTop: rowBottomToTop,
|
|
33193
|
-
rowCenterToEdge: rowCenterToEdge,
|
|
33194
|
-
rowEdgeToCenter: rowEdgeToCenter,
|
|
33195
|
-
rowTopToBottom: rowTopToBottom,
|
|
33196
|
-
snakeWave: snakeWave,
|
|
33197
|
-
spiralEffect: spiralEffect
|
|
33198
|
-
});
|
|
33199
|
-
|
|
33200
33033
|
class Easing {
|
|
33201
33034
|
constructor() {}
|
|
33202
33035
|
static linear(t) {
|
|
@@ -37543,36 +37376,40 @@ class ScaleIn extends ACustomAnimate {
|
|
|
37543
37376
|
super(from, to, duration, easing, params);
|
|
37544
37377
|
}
|
|
37545
37378
|
onBind() {
|
|
37546
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o;
|
|
37379
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0;
|
|
37547
37380
|
let from, to;
|
|
37548
37381
|
super.onBind();
|
|
37549
37382
|
const attrs = this.target.getFinalAttribute(),
|
|
37550
|
-
fromAttrs = null !== (_a = this.target.attribute) && void 0 !== _a ? _a : {}
|
|
37551
|
-
|
|
37383
|
+
fromAttrs = null !== (_a = this.target.attribute) && void 0 !== _a ? _a : {},
|
|
37384
|
+
options = null === (_b = this.params) || void 0 === _b ? void 0 : _b.options,
|
|
37385
|
+
direction = null !== (_d = null === (_c = this.params) || void 0 === _c ? void 0 : _c.direction) && void 0 !== _d ? _d : null == options ? void 0 : options.direction,
|
|
37386
|
+
fromScaleX = null !== (_j = null !== (_g = null !== (_f = null === (_e = this.params) || void 0 === _e ? void 0 : _e.fromScaleX) && void 0 !== _f ? _f : null == options ? void 0 : options.fromScaleX) && void 0 !== _g ? _g : null === (_h = this.params) || void 0 === _h ? void 0 : _h.fromScale) && void 0 !== _j ? _j : null == options ? void 0 : options.fromScale,
|
|
37387
|
+
fromScaleY = null !== (_p = null !== (_m = null !== (_l = null === (_k = this.params) || void 0 === _k ? void 0 : _k.fromScaleY) && void 0 !== _l ? _l : null == options ? void 0 : options.fromScaleY) && void 0 !== _m ? _m : null === (_o = this.params) || void 0 === _o ? void 0 : _o.fromScale) && void 0 !== _p ? _p : null == options ? void 0 : options.fromScale;
|
|
37388
|
+
switch (direction) {
|
|
37552
37389
|
case "x":
|
|
37553
37390
|
from = {
|
|
37554
|
-
scaleX: null !== (
|
|
37391
|
+
scaleX: null !== (_q = null != fromScaleX ? fromScaleX : fromAttrs.scaleX) && void 0 !== _q ? _q : 0
|
|
37555
37392
|
}, to = {
|
|
37556
|
-
scaleX: null !== (
|
|
37393
|
+
scaleX: null !== (_r = null == attrs ? void 0 : attrs.scaleX) && void 0 !== _r ? _r : 1
|
|
37557
37394
|
}, this._updateFunction = this.updateX;
|
|
37558
37395
|
break;
|
|
37559
37396
|
case "y":
|
|
37560
37397
|
from = {
|
|
37561
|
-
scaleY: null !== (
|
|
37398
|
+
scaleY: null !== (_s = null != fromScaleY ? fromScaleY : fromAttrs.scaleY) && void 0 !== _s ? _s : 0
|
|
37562
37399
|
}, to = {
|
|
37563
|
-
scaleY: null !== (
|
|
37400
|
+
scaleY: null !== (_t = null == attrs ? void 0 : attrs.scaleY) && void 0 !== _t ? _t : 1
|
|
37564
37401
|
}, this._updateFunction = this.updateY;
|
|
37565
37402
|
break;
|
|
37566
37403
|
default:
|
|
37567
37404
|
from = {
|
|
37568
|
-
scaleX: null !== (
|
|
37569
|
-
scaleY: null !== (
|
|
37405
|
+
scaleX: null !== (_u = null != fromScaleX ? fromScaleX : fromAttrs.scaleX) && void 0 !== _u ? _u : 0,
|
|
37406
|
+
scaleY: null !== (_v = null != fromScaleY ? fromScaleY : fromAttrs.scaleY) && void 0 !== _v ? _v : 0
|
|
37570
37407
|
}, to = {
|
|
37571
|
-
scaleX: null !== (
|
|
37572
|
-
scaleY: null !== (
|
|
37408
|
+
scaleX: null !== (_w = null == attrs ? void 0 : attrs.scaleX) && void 0 !== _w ? _w : 1,
|
|
37409
|
+
scaleY: null !== (_x = null == attrs ? void 0 : attrs.scaleY) && void 0 !== _x ? _x : 1
|
|
37573
37410
|
}, this._updateFunction = this.updateXY;
|
|
37574
37411
|
}
|
|
37575
|
-
null === (
|
|
37412
|
+
null === (_z = (_y = this.target).applyFinalAttributeToAttribute) || void 0 === _z || _z.call(_y), this.props = to, this.from = from, this.to = to, !1 !== (null === (_0 = this.params.controlOptions) || void 0 === _0 ? void 0 : _0.immediatelyApply) && applyAppearStartAttributes(this.target, from);
|
|
37576
37413
|
}
|
|
37577
37414
|
onEnd(cb) {
|
|
37578
37415
|
super.onEnd(cb);
|
|
@@ -40692,7 +40529,7 @@ function loadTagComponent() {
|
|
|
40692
40529
|
registerGroup(), registerRect(), registerSymbol(), registerRichtext(), registerText();
|
|
40693
40530
|
}
|
|
40694
40531
|
|
|
40695
|
-
var __rest$
|
|
40532
|
+
var __rest$d = undefined && undefined.__rest || function (s, e) {
|
|
40696
40533
|
var t = {};
|
|
40697
40534
|
for (var p in s) Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0 && (t[p] = s[p]);
|
|
40698
40535
|
if (null != s && "function" == typeof Object.getOwnPropertySymbols) {
|
|
@@ -40746,7 +40583,7 @@ class Tag extends AbstractComponent {
|
|
|
40746
40583
|
const {
|
|
40747
40584
|
visible: shapeVisible
|
|
40748
40585
|
} = shape,
|
|
40749
|
-
shapeStyle = __rest$
|
|
40586
|
+
shapeStyle = __rest$d(shape, ["visible"]);
|
|
40750
40587
|
if (isBoolean$1(shapeVisible)) {
|
|
40751
40588
|
const size = (null == shapeStyle ? void 0 : shapeStyle.size) || 10,
|
|
40752
40589
|
maxSize = isNumber$2(size) ? size : Math.max(size[0], size[1]);
|
|
@@ -40847,7 +40684,7 @@ class Tag extends AbstractComponent {
|
|
|
40847
40684
|
const {
|
|
40848
40685
|
visible: bgVisible
|
|
40849
40686
|
} = panel,
|
|
40850
|
-
backgroundStyle = __rest$
|
|
40687
|
+
backgroundStyle = __rest$d(panel, ["visible"]);
|
|
40851
40688
|
if (visible && isBoolean$1(bgVisible)) {
|
|
40852
40689
|
const bgRect = this.createOrUpdateChild("tag-panel", Object.assign(Object.assign({}, backgroundStyle), {
|
|
40853
40690
|
visible: bgVisible && !!text,
|
|
@@ -40929,7 +40766,7 @@ function setPoptipTheme(defaultPoptipTheme) {
|
|
|
40929
40766
|
merge(theme.poptip, DEFAULT_THEME, defaultPoptipTheme);
|
|
40930
40767
|
}
|
|
40931
40768
|
|
|
40932
|
-
var __rest$
|
|
40769
|
+
var __rest$c = undefined && undefined.__rest || function (s, e) {
|
|
40933
40770
|
var t = {};
|
|
40934
40771
|
for (var p in s) Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0 && (t[p] = s[p]);
|
|
40935
40772
|
if (null != s && "function" == typeof Object.getOwnPropertySymbols) {
|
|
@@ -41038,7 +40875,7 @@ class PopTip extends AbstractComponent {
|
|
|
41038
40875
|
visible: bgVisible,
|
|
41039
40876
|
square: square
|
|
41040
40877
|
} = panel,
|
|
41041
|
-
backgroundStyle = __rest$
|
|
40878
|
+
backgroundStyle = __rest$c(panel, ["visible", "square"]);
|
|
41042
40879
|
if (square) {
|
|
41043
40880
|
const maxWH = max(popTipWidth, poptipHeight);
|
|
41044
40881
|
popTipWidth = maxWH;
|
|
@@ -43019,7 +42856,7 @@ function loadCircleAxisGridComponent() {
|
|
|
43019
42856
|
registerGroup(), registerPath();
|
|
43020
42857
|
}
|
|
43021
42858
|
|
|
43022
|
-
var __rest$
|
|
42859
|
+
var __rest$b = undefined && undefined.__rest || function (s, e) {
|
|
43023
42860
|
var t = {};
|
|
43024
42861
|
for (var p in s) Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0 && (t[p] = s[p]);
|
|
43025
42862
|
if (null != s && "function" == typeof Object.getOwnPropertySymbols) {
|
|
@@ -43126,7 +42963,7 @@ class LineAxis extends AxisBase {
|
|
|
43126
42963
|
style: style,
|
|
43127
42964
|
state: state
|
|
43128
42965
|
} = _a,
|
|
43129
|
-
restLineAttrs = __rest$
|
|
42966
|
+
restLineAttrs = __rest$b(_a, ["startSymbol", "endSymbol", "style", "state"]),
|
|
43130
42967
|
lineAttrs = Object.assign({
|
|
43131
42968
|
startSymbol: startSymbol,
|
|
43132
42969
|
endSymbol: endSymbol,
|
|
@@ -43167,7 +43004,7 @@ class LineAxis extends AxisBase {
|
|
|
43167
43004
|
state = {},
|
|
43168
43005
|
maxWidth: maxWidth
|
|
43169
43006
|
} = _d,
|
|
43170
|
-
restAttrs = __rest$
|
|
43007
|
+
restAttrs = __rest$b(_d, ["position", "space", "textStyle", "autoRotate", "shape", "background", "state", "maxWidth"]);
|
|
43171
43008
|
let percent = .5;
|
|
43172
43009
|
"start" === position ? percent = 0 : "end" === position && (percent = 1);
|
|
43173
43010
|
const {
|
|
@@ -43269,7 +43106,7 @@ class LineAxis extends AxisBase {
|
|
|
43269
43106
|
text: textContent = "",
|
|
43270
43107
|
maxWidth: maxWidth
|
|
43271
43108
|
} = _c,
|
|
43272
|
-
restAttrs = __rest$
|
|
43109
|
+
restAttrs = __rest$b(_c, ["position", "space", "autoRotate", "textStyle", "background", "formatMethod", "text", "maxWidth"]),
|
|
43273
43110
|
point = this.getTickCoord(0);
|
|
43274
43111
|
"bottom" === orient || "top" === orient ? point.x = position : point.y = position;
|
|
43275
43112
|
let tickLength = 0;
|
|
@@ -43641,7 +43478,7 @@ function circleAutoLimit(labels, config) {
|
|
|
43641
43478
|
});
|
|
43642
43479
|
}
|
|
43643
43480
|
|
|
43644
|
-
var __rest$
|
|
43481
|
+
var __rest$a = undefined && undefined.__rest || function (s, e) {
|
|
43645
43482
|
var t = {};
|
|
43646
43483
|
for (var p in s) Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0 && (t[p] = s[p]);
|
|
43647
43484
|
if (null != s && "function" == typeof Object.getOwnPropertySymbols) {
|
|
@@ -43700,7 +43537,7 @@ class CircleAxis extends AxisBase {
|
|
|
43700
43537
|
background: background,
|
|
43701
43538
|
state = {}
|
|
43702
43539
|
} = _d,
|
|
43703
|
-
restAttrs = __rest$
|
|
43540
|
+
restAttrs = __rest$a(_d, ["space", "textStyle", "shape", "background", "state"]);
|
|
43704
43541
|
let titlePoint = center,
|
|
43705
43542
|
labelHeight = 0;
|
|
43706
43543
|
(null === (_a = this.attribute.label) || void 0 === _a ? void 0 : _a.visible) && !1 === this.attribute.label.inside && (labelHeight = get$1(this.attribute.label, "style.fontSize", 12) + get$1(this.attribute.label, "space", 4));
|
|
@@ -45259,15 +45096,6 @@ function getAlignOffset(align) {
|
|
|
45259
45096
|
return "left" === align ? 0 : "right" === align ? 1 : .5;
|
|
45260
45097
|
}
|
|
45261
45098
|
|
|
45262
|
-
var __rest$a = undefined && undefined.__rest || function (s, e) {
|
|
45263
|
-
var t = {};
|
|
45264
|
-
for (var p in s) Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0 && (t[p] = s[p]);
|
|
45265
|
-
if (null != s && "function" == typeof Object.getOwnPropertySymbols) {
|
|
45266
|
-
var i = 0;
|
|
45267
|
-
for (p = Object.getOwnPropertySymbols(s); i < p.length; i++) e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]) && (t[p[i]] = s[p[i]]);
|
|
45268
|
-
}
|
|
45269
|
-
return t;
|
|
45270
|
-
};
|
|
45271
45099
|
class LabelUpdate extends AComponentAnimate {
|
|
45272
45100
|
onBind() {
|
|
45273
45101
|
const animator = createComponentAnimator(this.target);
|
|
@@ -45283,8 +45111,8 @@ class LabelUpdate extends AComponentAnimate {
|
|
|
45283
45111
|
} = this.params,
|
|
45284
45112
|
diff = {};
|
|
45285
45113
|
for (const key in curText.attribute) prevText.attribute[key] !== curText.attribute[key] && (diff[key] = curText.attribute[key]);
|
|
45286
|
-
const rest =
|
|
45287
|
-
animator.animate(prevText, {
|
|
45114
|
+
const rest = Object.assign({}, diff);
|
|
45115
|
+
delete rest.text, animator.animate(prevText, {
|
|
45288
45116
|
type: "to",
|
|
45289
45117
|
to: rest,
|
|
45290
45118
|
duration: duration,
|
|
@@ -48746,6 +48574,10 @@ class Marker extends AbstractComponent {
|
|
|
48746
48574
|
}
|
|
48747
48575
|
}
|
|
48748
48576
|
|
|
48577
|
+
function getSegmentLineGraphics(segment) {
|
|
48578
|
+
var _a;
|
|
48579
|
+
return segment ? [...(null !== (_a = segment.lines) && void 0 !== _a ? _a : []), segment.line].filter(Boolean) : [];
|
|
48580
|
+
}
|
|
48749
48581
|
function graphicFadeIn(graphic, delay, duration, easing) {
|
|
48750
48582
|
var _a, _b, _c, _d, _e;
|
|
48751
48583
|
if (!graphic) return;
|
|
@@ -48764,7 +48596,7 @@ function graphicFadeIn(graphic, delay, duration, easing) {
|
|
|
48764
48596
|
}, duration, easing);
|
|
48765
48597
|
}
|
|
48766
48598
|
function segmentFadeIn(segment, delay, duration, easing) {
|
|
48767
|
-
segment && (graphicFadeIn(segment.startSymbol, delay, duration, easing), segment.
|
|
48599
|
+
segment && (graphicFadeIn(segment.startSymbol, delay, duration, easing), getSegmentLineGraphics(segment).forEach(line => graphicFadeIn(line, delay, duration, easing)), graphicFadeIn(segment.endSymbol, delay, duration, easing));
|
|
48768
48600
|
}
|
|
48769
48601
|
function tagFadeIn(tag, delay, duration, easing) {
|
|
48770
48602
|
tag && (graphicFadeIn(tag.getTextShape(), delay, duration, easing), graphicFadeIn(tag.getBgRect(), delay, duration, easing));
|
|
@@ -48783,7 +48615,7 @@ function graphicFadeOut(graphic, delay, duration, easing) {
|
|
|
48783
48615
|
}, duration, easing));
|
|
48784
48616
|
}
|
|
48785
48617
|
function segmentFadeOut(segment, delay, duration, easing) {
|
|
48786
|
-
segment && (graphicFadeOut(segment.startSymbol, delay, duration, easing), segment.
|
|
48618
|
+
segment && (graphicFadeOut(segment.startSymbol, delay, duration, easing), getSegmentLineGraphics(segment).forEach(line => graphicFadeOut(line, delay, duration, easing)), graphicFadeOut(segment.endSymbol, delay, duration, easing));
|
|
48787
48619
|
}
|
|
48788
48620
|
function tagFadeOut(tag, delay, duration, easing) {
|
|
48789
48621
|
tag && (graphicFadeOut(tag.getTextShape(), delay, duration, easing), graphicFadeOut(tag.getBgRect(), delay, duration, easing));
|
|
@@ -48794,12 +48626,14 @@ function commonLineClipIn(line, label, duration, delay, easing) {
|
|
|
48794
48626
|
lineDuration = .7 * duration,
|
|
48795
48627
|
endSymbolDuration = .1 * duration,
|
|
48796
48628
|
labelDuration = .1 * duration;
|
|
48797
|
-
graphicFadeIn(line.startSymbol, delay, startSymbolDuration, easing)
|
|
48629
|
+
graphicFadeIn(line.startSymbol, delay, startSymbolDuration, easing);
|
|
48630
|
+
const lines = getSegmentLineGraphics(line);
|
|
48631
|
+
lines.forEach(line => commitUpdateAnimationTarget(line, {
|
|
48798
48632
|
clipRange: 1
|
|
48799
48633
|
}, {
|
|
48800
48634
|
clipRange: 0
|
|
48801
|
-
})),
|
|
48802
|
-
const stepDuration = lineDuration /
|
|
48635
|
+
})), lines.forEach((l, index) => {
|
|
48636
|
+
const stepDuration = lineDuration / lines.length;
|
|
48803
48637
|
l.animate().wait(delay + startSymbolDuration + index * stepDuration).to({
|
|
48804
48638
|
clipRange: 1
|
|
48805
48639
|
}, stepDuration, easing);
|
|
@@ -48856,12 +48690,14 @@ function pointCallIn(itemLine, decorativeLine, item, duration, delay, easing) {
|
|
|
48856
48690
|
decorativeDuration = .05 * duration,
|
|
48857
48691
|
endSymbolDuration = .1 * duration,
|
|
48858
48692
|
labelDuration = .1 * duration;
|
|
48859
|
-
graphicFadeIn(itemLine.startSymbol, delay, startSymbolDuration, easing)
|
|
48693
|
+
graphicFadeIn(itemLine.startSymbol, delay, startSymbolDuration, easing);
|
|
48694
|
+
const lines = getSegmentLineGraphics(itemLine);
|
|
48695
|
+
lines.forEach(line => commitUpdateAnimationTarget(line, {
|
|
48860
48696
|
clipRange: 1
|
|
48861
48697
|
}, {
|
|
48862
48698
|
clipRange: 0
|
|
48863
|
-
})),
|
|
48864
|
-
const stepDuration = lineDuration /
|
|
48699
|
+
})), lines.forEach((l, index) => {
|
|
48700
|
+
const stepDuration = lineDuration / lines.length;
|
|
48865
48701
|
l.animate().wait(delay + startSymbolDuration + index * stepDuration).to({
|
|
48866
48702
|
clipRange: 1
|
|
48867
48703
|
}, stepDuration, easing);
|
|
@@ -55875,14 +55711,13 @@ TableSeriesNumber.defaultAttributes = {
|
|
|
55875
55711
|
const BOOTSTRAP_STATE = Symbol.for('vrender.bootstrap.state');
|
|
55876
55712
|
const installBrowserEnvToAppWithParams = installBrowserEnvToApp;
|
|
55877
55713
|
const installNodeEnvToAppWithParams = installNodeEnvToApp;
|
|
55878
|
-
const runtimeKits = VRenderKitsRuntime;
|
|
55879
55714
|
const miniEnvBootstraps = {
|
|
55880
|
-
taro: { installEnv:
|
|
55881
|
-
feishu: { installEnv:
|
|
55882
|
-
tt: { installEnv:
|
|
55883
|
-
wx: { installEnv:
|
|
55884
|
-
lynx: { installEnv:
|
|
55885
|
-
harmony: { installEnv:
|
|
55715
|
+
taro: { installEnv: installTaroEnvToApp, loadEnv: loadTaroEnv },
|
|
55716
|
+
feishu: { installEnv: installFeishuEnvToApp, loadEnv: loadFeishuEnv },
|
|
55717
|
+
tt: { installEnv: installTTEnvToApp, loadEnv: loadTTEnv },
|
|
55718
|
+
wx: { installEnv: installWxEnvToApp, loadEnv: loadWxEnv },
|
|
55719
|
+
lynx: { installEnv: installLynxEnvToApp, loadEnv: loadLynxEnv },
|
|
55720
|
+
harmony: { installEnv: installHarmonyEnvToApp, loadEnv: loadHarmonyEnv }
|
|
55886
55721
|
};
|
|
55887
55722
|
const pluginRegistrations = [
|
|
55888
55723
|
registerFlexLayoutPlugin,
|
|
@@ -56027,7 +55862,7 @@ function bootstrapVRenderMiniApp(app, env, envParams) {
|
|
|
56027
55862
|
const bootstrap = miniEnvBootstraps[env];
|
|
56028
55863
|
bootstrap.installEnv(app, envParams);
|
|
56029
55864
|
installDefaultGraphicsToApp(app);
|
|
56030
|
-
|
|
55865
|
+
installMathPickersToApp(app);
|
|
56031
55866
|
bootstrap.loadEnv();
|
|
56032
55867
|
legacyGraphicRegistrations.forEach(register => register());
|
|
56033
55868
|
syncLegacyRenderersToApp(app);
|
|
@@ -56258,6 +56093,6 @@ function createStage(params) {
|
|
|
56258
56093
|
return resolveLegacyApp().createStage(params);
|
|
56259
56094
|
}
|
|
56260
56095
|
|
|
56261
|
-
const version = "1.1.0-alpha.
|
|
56096
|
+
const version = "1.1.0-alpha.24";
|
|
56262
56097
|
|
|
56263
56098
|
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$1 as createApp, createArc, createArc3d, createArea, createBrowserApp$1 as 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 };
|