@visactor/vrender 1.1.3 → 1.1.4-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cjs/index.d.ts +1 -1
- package/cjs/index.js +1 -1
- package/cjs/index.js.map +1 -1
- package/dist/index.es.js +119 -24
- package/dist/index.js +130 -23
- package/dist/index.min.js +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 +7 -7
package/dist/index.js
CHANGED
|
@@ -70,7 +70,17 @@
|
|
|
70
70
|
Generator.auto_increment_id = 0;
|
|
71
71
|
|
|
72
72
|
class Application {}
|
|
73
|
-
const
|
|
73
|
+
const APPLICATION_STATE_SYMBOL = Symbol.for("@visactor/vrender-core/application-state");
|
|
74
|
+
function createApplicationState() {
|
|
75
|
+
return {
|
|
76
|
+
application: new Application()
|
|
77
|
+
};
|
|
78
|
+
}
|
|
79
|
+
function getApplicationState() {
|
|
80
|
+
const scope = globalThis;
|
|
81
|
+
return scope[APPLICATION_STATE_SYMBOL] || (scope[APPLICATION_STATE_SYMBOL] = createApplicationState()), scope[APPLICATION_STATE_SYMBOL];
|
|
82
|
+
}
|
|
83
|
+
const application = getApplicationState().application;
|
|
74
84
|
|
|
75
85
|
let idx = 0;
|
|
76
86
|
class PerformanceRAF {
|
|
@@ -8416,12 +8426,12 @@
|
|
|
8416
8426
|
cursor: 1,
|
|
8417
8427
|
html: 1
|
|
8418
8428
|
};
|
|
8419
|
-
class
|
|
8429
|
+
class GraphicImpl extends Node {
|
|
8420
8430
|
static mixin(source) {
|
|
8421
8431
|
const keys = Object.keys(source);
|
|
8422
8432
|
for (let i = 0; i < keys.length; ++i) {
|
|
8423
8433
|
const propertyName = keys[i];
|
|
8424
|
-
Object.defineProperty(
|
|
8434
|
+
Object.defineProperty(this.prototype, propertyName, Object.getOwnPropertyDescriptor(source, propertyName));
|
|
8425
8435
|
}
|
|
8426
8436
|
}
|
|
8427
8437
|
get AABBBounds() {
|
|
@@ -9660,13 +9670,26 @@
|
|
|
9660
9670
|
return null;
|
|
9661
9671
|
}
|
|
9662
9672
|
}
|
|
9673
|
+
GraphicImpl.userSymbolMap = {};
|
|
9674
|
+
const GRAPHIC_CLASS_SYMBOL = Symbol.for("@visactor/vrender-core/graphic-class");
|
|
9675
|
+
function createGraphicClassState() {
|
|
9676
|
+
return {
|
|
9677
|
+
Graphic: GraphicImpl
|
|
9678
|
+
};
|
|
9679
|
+
}
|
|
9680
|
+
function getGraphicClassState() {
|
|
9681
|
+
var _a;
|
|
9682
|
+
const globalScope = globalThis;
|
|
9683
|
+
return null !== (_a = globalScope[GRAPHIC_CLASS_SYMBOL]) && void 0 !== _a || (globalScope[GRAPHIC_CLASS_SYMBOL] = createGraphicClassState()), globalScope[GRAPHIC_CLASS_SYMBOL];
|
|
9684
|
+
}
|
|
9685
|
+
const Graphic = getGraphicClassState().Graphic;
|
|
9663
9686
|
function backgroundNotImage(image) {
|
|
9664
9687
|
return "string" == typeof image ? !(image.startsWith("<svg") || isValidUrl$1(image) || image.includes("/") || isBase64$1(image)) : !(!image.fill && !image.stroke) || !("string" != typeof image.gradient || !Array.isArray(image.stops));
|
|
9665
9688
|
}
|
|
9666
9689
|
function isExternalTexture(texture) {
|
|
9667
9690
|
return !!texture && ("string" == typeof texture ? !builtinTextureTypes.has(texture) && (texture.startsWith("<svg") || isValidUrl$1(texture) || texture.includes("/") || isBase64$1(texture)) : isObject$1(texture));
|
|
9668
9691
|
}
|
|
9669
|
-
Graphic.
|
|
9692
|
+
Graphic.mixin(EventTarget);
|
|
9670
9693
|
|
|
9671
9694
|
const defaultThemeObj = {
|
|
9672
9695
|
arc: DefaultArcAttribute,
|
|
@@ -13092,7 +13115,6 @@
|
|
|
13092
13115
|
}
|
|
13093
13116
|
};
|
|
13094
13117
|
}
|
|
13095
|
-
const sharedGraphicFactory = new GraphicFactory();
|
|
13096
13118
|
class GraphicCreator {
|
|
13097
13119
|
constructor() {
|
|
13098
13120
|
this.store = new Map();
|
|
@@ -13107,13 +13129,25 @@
|
|
|
13107
13129
|
return this.store.has(name) ? createGraphic$1(name, attributes) : null;
|
|
13108
13130
|
}
|
|
13109
13131
|
}
|
|
13110
|
-
const
|
|
13132
|
+
const GRAPHIC_REGISTRY_SYMBOL = Symbol.for("@visactor/vrender-core/graphic-registry");
|
|
13133
|
+
function createGraphicRegistryState() {
|
|
13134
|
+
return {
|
|
13135
|
+
graphicCreator: new GraphicCreator(),
|
|
13136
|
+
graphicFactory: new GraphicFactory()
|
|
13137
|
+
};
|
|
13138
|
+
}
|
|
13139
|
+
function getGraphicRegistryState() {
|
|
13140
|
+
const scope = globalThis;
|
|
13141
|
+
return scope[GRAPHIC_REGISTRY_SYMBOL] || (scope[GRAPHIC_REGISTRY_SYMBOL] = createGraphicRegistryState()), scope[GRAPHIC_REGISTRY_SYMBOL];
|
|
13142
|
+
}
|
|
13143
|
+
const sharedGraphicRegistry = getGraphicRegistryState();
|
|
13144
|
+
const graphicCreator$1 = sharedGraphicRegistry.graphicCreator;
|
|
13111
13145
|
function registerGraphic(name, creator) {
|
|
13112
13146
|
if (!name) throw new Error("Graphic registration requires a non-empty graphic type");
|
|
13113
|
-
graphicCreator$1.registerStore(name, creator),
|
|
13147
|
+
graphicCreator$1.registerStore(name, creator), sharedGraphicRegistry.graphicFactory.register(name, createGraphicCtor(creator));
|
|
13114
13148
|
}
|
|
13115
13149
|
function createGraphic$1(name, attributes) {
|
|
13116
|
-
return
|
|
13150
|
+
return sharedGraphicRegistry.graphicFactory.create(name, attributes);
|
|
13117
13151
|
}
|
|
13118
13152
|
|
|
13119
13153
|
function getExtraModelMatrix(dx, dy, graphic) {
|
|
@@ -13711,6 +13745,17 @@
|
|
|
13711
13745
|
}
|
|
13712
13746
|
}
|
|
13713
13747
|
|
|
13748
|
+
const FACTORY_STATE_SYMBOL = Symbol.for("@visactor/vrender-core/factory-state");
|
|
13749
|
+
function createFactoryState() {
|
|
13750
|
+
return {
|
|
13751
|
+
pluginClasses: {}
|
|
13752
|
+
};
|
|
13753
|
+
}
|
|
13754
|
+
function getFactoryState() {
|
|
13755
|
+
const scope = globalThis;
|
|
13756
|
+
return scope[FACTORY_STATE_SYMBOL] || (scope[FACTORY_STATE_SYMBOL] = createFactoryState()), scope[FACTORY_STATE_SYMBOL];
|
|
13757
|
+
}
|
|
13758
|
+
|
|
13714
13759
|
class DefaultGlobalPickerService {
|
|
13715
13760
|
constructor() {
|
|
13716
13761
|
this.global = application.global, this.global.hooks.onSetEnv.tap("global-picker-service", (lastEnv, env, global) => {
|
|
@@ -15413,7 +15458,7 @@
|
|
|
15413
15458
|
return Factory._pluginClasses[pluginKey];
|
|
15414
15459
|
}
|
|
15415
15460
|
}
|
|
15416
|
-
Factory._pluginClasses =
|
|
15461
|
+
Factory._pluginClasses = getFactoryState().pluginClasses;
|
|
15417
15462
|
|
|
15418
15463
|
function defaultLayerHandlerFactory(layerMode) {
|
|
15419
15464
|
const handlerFactory = application.layerHandlerFactory;
|
|
@@ -15486,6 +15531,17 @@
|
|
|
15486
15531
|
}
|
|
15487
15532
|
DefaultLayerService.idprefix = "visactor_layer", DefaultLayerService.prefix_count = 0;
|
|
15488
15533
|
|
|
15534
|
+
const CONTRIBUTION_STORE_STATE_SYMBOL = Symbol.for("@visactor/vrender-core/contribution-store-state");
|
|
15535
|
+
function createContributionStoreState() {
|
|
15536
|
+
return {
|
|
15537
|
+
store: new Map()
|
|
15538
|
+
};
|
|
15539
|
+
}
|
|
15540
|
+
function getContributionStoreState() {
|
|
15541
|
+
const scope = globalThis;
|
|
15542
|
+
return scope[CONTRIBUTION_STORE_STATE_SYMBOL] || (scope[CONTRIBUTION_STORE_STATE_SYMBOL] = createContributionStoreState()), scope[CONTRIBUTION_STORE_STATE_SYMBOL];
|
|
15543
|
+
}
|
|
15544
|
+
|
|
15489
15545
|
const ContributionProvider = Symbol("ContributionProvider");
|
|
15490
15546
|
class ContributionProviderCache {
|
|
15491
15547
|
constructor(serviceIdentifier, container) {
|
|
@@ -15528,7 +15584,7 @@
|
|
|
15528
15584
|
});
|
|
15529
15585
|
}
|
|
15530
15586
|
}
|
|
15531
|
-
ContributionStore.store =
|
|
15587
|
+
ContributionStore.store = getContributionStoreState().store;
|
|
15532
15588
|
|
|
15533
15589
|
class ATextMeasure {
|
|
15534
15590
|
constructor() {
|
|
@@ -17542,13 +17598,26 @@
|
|
|
17542
17598
|
return new LegacyBindingContext();
|
|
17543
17599
|
}
|
|
17544
17600
|
|
|
17545
|
-
const
|
|
17601
|
+
const LEGACY_BOOTSTRAP_STATE_SYMBOL = Symbol.for("@visactor/vrender-core/legacy-bootstrap-state");
|
|
17602
|
+
function createLegacyBootstrapState() {
|
|
17603
|
+
return {
|
|
17604
|
+
legacyBindingContext: createLegacyBindingContext(),
|
|
17605
|
+
preloaded: !1
|
|
17606
|
+
};
|
|
17607
|
+
}
|
|
17608
|
+
function getLegacyBootstrapState() {
|
|
17609
|
+
const scope = globalThis;
|
|
17610
|
+
return scope[LEGACY_BOOTSTRAP_STATE_SYMBOL] || (scope[LEGACY_BOOTSTRAP_STATE_SYMBOL] = createLegacyBootstrapState()), scope[LEGACY_BOOTSTRAP_STATE_SYMBOL];
|
|
17611
|
+
}
|
|
17612
|
+
|
|
17613
|
+
const legacyBootstrapState = getLegacyBootstrapState(),
|
|
17614
|
+
legacyBindingContext = legacyBootstrapState.legacyBindingContext;
|
|
17546
17615
|
function getLegacyTarget(resolver) {
|
|
17547
17616
|
let target;
|
|
17548
17617
|
return () => (void 0 === target && (target = resolver()), target);
|
|
17549
17618
|
}
|
|
17550
17619
|
function preLoadAllModule() {
|
|
17551
|
-
|
|
17620
|
+
legacyBootstrapState.preloaded || (legacyBootstrapState.preloaded = !0, bindCoreModules({
|
|
17552
17621
|
bind: legacyBindingContext.bind
|
|
17553
17622
|
}), bindGraphicModules({
|
|
17554
17623
|
bind: legacyBindingContext.bind
|
|
@@ -17561,7 +17630,6 @@
|
|
|
17561
17630
|
bind: legacyBindingContext.bind
|
|
17562
17631
|
}), load$1(legacyBindingContext), load(legacyBindingContext));
|
|
17563
17632
|
}
|
|
17564
|
-
preLoadAllModule.__loaded = !1;
|
|
17565
17633
|
function getLegacyBindingContext() {
|
|
17566
17634
|
return legacyBindingContext;
|
|
17567
17635
|
}
|
|
@@ -19975,18 +20043,32 @@
|
|
|
19975
20043
|
}
|
|
19976
20044
|
}
|
|
19977
20045
|
|
|
19978
|
-
const
|
|
19979
|
-
|
|
19980
|
-
|
|
19981
|
-
|
|
20046
|
+
const RUNTIME_INSTALLER_STATE_SYMBOL = Symbol.for("@visactor/vrender-core/runtime-installer-state");
|
|
20047
|
+
function createRuntimeInstallerState() {
|
|
20048
|
+
return {
|
|
20049
|
+
runtimeInstallerContext: createLegacyBindingContext(),
|
|
20050
|
+
preloaded: !1,
|
|
20051
|
+
runtimeEntryKeys: new WeakMap(),
|
|
20052
|
+
runtimeDrawContributions: new WeakMap(),
|
|
20053
|
+
loadedRuntimeContributionModules: new WeakMap()
|
|
20054
|
+
};
|
|
20055
|
+
}
|
|
20056
|
+
function getRuntimeInstallerState() {
|
|
20057
|
+
const scope = globalThis;
|
|
20058
|
+
return scope[RUNTIME_INSTALLER_STATE_SYMBOL] || (scope[RUNTIME_INSTALLER_STATE_SYMBOL] = createRuntimeInstallerState()), scope[RUNTIME_INSTALLER_STATE_SYMBOL];
|
|
20059
|
+
}
|
|
20060
|
+
|
|
20061
|
+
const runtimeInstallerState = getRuntimeInstallerState(),
|
|
20062
|
+
runtimeInstallerContext = runtimeInstallerState.runtimeInstallerContext,
|
|
20063
|
+
RUNTIME_RENDERER_NAMESPACE = "vrender:runtime-renderer",
|
|
19982
20064
|
RUNTIME_PICKER_NAMESPACE = "vrender:runtime-picker",
|
|
19983
|
-
runtimeEntryKeys =
|
|
19984
|
-
runtimeDrawContributions =
|
|
19985
|
-
loadedRuntimeContributionModules =
|
|
20065
|
+
runtimeEntryKeys = runtimeInstallerState.runtimeEntryKeys,
|
|
20066
|
+
runtimeDrawContributions = runtimeInstallerState.runtimeDrawContributions,
|
|
20067
|
+
loadedRuntimeContributionModules = runtimeInstallerState.loadedRuntimeContributionModules,
|
|
19986
20068
|
DEFAULT_RUNTIME_CONTRIBUTION_TARGETS = ["graphic-renderer"],
|
|
19987
20069
|
noopUnbindRuntimeContributionService = () => {};
|
|
19988
20070
|
function ensureRuntimeInstallerPreloaded() {
|
|
19989
|
-
|
|
20071
|
+
runtimeInstallerState.preloaded || (runtimeInstallerState.preloaded = !0, bindCoreModules({
|
|
19990
20072
|
bind: runtimeInstallerContext.bind
|
|
19991
20073
|
}), bindGraphicModules({
|
|
19992
20074
|
bind: runtimeInstallerContext.bind
|
|
@@ -20031,7 +20113,8 @@
|
|
|
20031
20113
|
ContributionStore.refreshAllContributions();
|
|
20032
20114
|
}
|
|
20033
20115
|
function getRuntimeInstallerGlobal() {
|
|
20034
|
-
|
|
20116
|
+
var _a;
|
|
20117
|
+
return ensureRuntimeInstallerPreloaded(), null !== (_a = runtimeInstallerState.runtimeGlobal) && void 0 !== _a || (runtimeInstallerState.runtimeGlobal = new DefaultGlobal(createContributionProvider$1(EnvContribution, runtimeInstallerContext))), runtimeInstallerState.runtimeGlobal;
|
|
20035
20118
|
}
|
|
20036
20119
|
function configureRuntimeApplicationForApp(app) {
|
|
20037
20120
|
const bindingContext = getRuntimeInstallerBindingContext(),
|
|
@@ -22771,6 +22854,7 @@
|
|
|
22771
22854
|
|
|
22772
22855
|
var VRenderCore = /*#__PURE__*/Object.freeze({
|
|
22773
22856
|
__proto__: null,
|
|
22857
|
+
APPLICATION_STATE_SYMBOL: APPLICATION_STATE_SYMBOL,
|
|
22774
22858
|
ARC3D_NUMBER_TYPE: ARC3D_NUMBER_TYPE,
|
|
22775
22859
|
ARC_NUMBER_TYPE: ARC_NUMBER_TYPE,
|
|
22776
22860
|
AREA_NUMBER_TYPE: AREA_NUMBER_TYPE,
|
|
@@ -22802,6 +22886,7 @@
|
|
|
22802
22886
|
BoundsPicker: BoundsPicker,
|
|
22803
22887
|
BrowserEntry: BrowserEntry,
|
|
22804
22888
|
CIRCLE_NUMBER_TYPE: CIRCLE_NUMBER_TYPE,
|
|
22889
|
+
CONTRIBUTION_STORE_STATE_SYMBOL: CONTRIBUTION_STORE_STATE_SYMBOL,
|
|
22805
22890
|
Canvas3DDrawItemInterceptor: Canvas3DDrawItemInterceptor,
|
|
22806
22891
|
Canvas3DPickItemInterceptor: Canvas3DPickItemInterceptor,
|
|
22807
22892
|
CanvasFactory: CanvasFactory,
|
|
@@ -22914,6 +22999,7 @@
|
|
|
22914
22999
|
EventManager: EventManager,
|
|
22915
23000
|
EventSystem: EventSystem,
|
|
22916
23001
|
EventTarget: EventTarget,
|
|
23002
|
+
FACTORY_STATE_SYMBOL: FACTORY_STATE_SYMBOL,
|
|
22917
23003
|
FORMAT_ALL_TEXT_COMMAND: FORMAT_ALL_TEXT_COMMAND,
|
|
22918
23004
|
FORMAT_ELEMENT_COMMAND: FORMAT_ELEMENT_COMMAND,
|
|
22919
23005
|
FORMAT_TEXT_COMMAND: FORMAT_TEXT_COMMAND,
|
|
@@ -22924,6 +23010,8 @@
|
|
|
22924
23010
|
FederatedWheelEvent: FederatedWheelEvent,
|
|
22925
23011
|
FlexLayoutPlugin: FlexLayoutPlugin,
|
|
22926
23012
|
GLYPH_NUMBER_TYPE: GLYPH_NUMBER_TYPE,
|
|
23013
|
+
GRAPHIC_CLASS_SYMBOL: GRAPHIC_CLASS_SYMBOL,
|
|
23014
|
+
GRAPHIC_REGISTRY_SYMBOL: GRAPHIC_REGISTRY_SYMBOL,
|
|
22927
23015
|
GRAPHIC_UPDATE_TAG_KEY: GRAPHIC_UPDATE_TAG_KEY,
|
|
22928
23016
|
GROUP_NUMBER_TYPE: GROUP_NUMBER_TYPE,
|
|
22929
23017
|
Generator: Generator,
|
|
@@ -22992,6 +23080,7 @@
|
|
|
22992
23080
|
RECT3D_NUMBER_TYPE: RECT3D_NUMBER_TYPE,
|
|
22993
23081
|
RECT_NUMBER_TYPE: RECT_NUMBER_TYPE,
|
|
22994
23082
|
RICHTEXT_NUMBER_TYPE: RICHTEXT_NUMBER_TYPE,
|
|
23083
|
+
RUNTIME_INSTALLER_STATE_SYMBOL: RUNTIME_INSTALLER_STATE_SYMBOL,
|
|
22995
23084
|
RafBasedSTO: RafBasedSTO,
|
|
22996
23085
|
ReactAttributePlugin: ReactAttributePlugin,
|
|
22997
23086
|
Rect: Rect,
|
|
@@ -23200,17 +23289,23 @@
|
|
|
23200
23289
|
genStepClosedSegments: genStepClosedSegments,
|
|
23201
23290
|
genStepSegments: genStepSegments,
|
|
23202
23291
|
genStepTypeSegments: genStepTypeSegments,
|
|
23292
|
+
getApplicationState: getApplicationState,
|
|
23203
23293
|
getAttributeFromDefaultAttrList: getAttributeFromDefaultAttrList,
|
|
23204
23294
|
getBackgroundImage: getBackgroundImage,
|
|
23205
23295
|
getConicGradientAt: getConicGradientAt,
|
|
23296
|
+
getContributionStoreState: getContributionStoreState,
|
|
23206
23297
|
getCurrentEnv: getCurrentEnv,
|
|
23207
23298
|
getDefaultCharacterConfig: getDefaultCharacterConfig,
|
|
23208
23299
|
getExtraModelMatrix: getExtraModelMatrix,
|
|
23300
|
+
getFactoryState: getFactoryState,
|
|
23301
|
+
getGraphicClassState: getGraphicClassState,
|
|
23302
|
+
getGraphicRegistryState: getGraphicRegistryState,
|
|
23209
23303
|
getLegacyBindingContext: getLegacyBindingContext,
|
|
23210
23304
|
getModelMatrix: getModelMatrix,
|
|
23211
23305
|
getRichTextBounds: getRichTextBounds,
|
|
23212
23306
|
getRuntimeInstallerBindingContext: getRuntimeInstallerBindingContext,
|
|
23213
23307
|
getRuntimeInstallerGlobal: getRuntimeInstallerGlobal,
|
|
23308
|
+
getRuntimeInstallerState: getRuntimeInstallerState,
|
|
23214
23309
|
getScaledStroke: getScaledStroke,
|
|
23215
23310
|
getTextBounds: getTextBounds,
|
|
23216
23311
|
getTheme: getTheme,
|
|
@@ -55467,10 +55562,11 @@
|
|
|
55467
55562
|
return resolveLegacyApp().createStage(params);
|
|
55468
55563
|
}
|
|
55469
55564
|
|
|
55470
|
-
const version = "1.1.
|
|
55565
|
+
const version = "1.1.4-alpha.1";
|
|
55471
55566
|
|
|
55472
55567
|
exports.AComponentAnimate = AComponentAnimate;
|
|
55473
55568
|
exports.ACustomAnimate = ACustomAnimate;
|
|
55569
|
+
exports.APPLICATION_STATE_SYMBOL = APPLICATION_STATE_SYMBOL;
|
|
55474
55570
|
exports.ARC3D_NUMBER_TYPE = ARC3D_NUMBER_TYPE;
|
|
55475
55571
|
exports.ARC_NUMBER_TYPE = ARC_NUMBER_TYPE;
|
|
55476
55572
|
exports.AREA_NUMBER_TYPE = AREA_NUMBER_TYPE;
|
|
@@ -55512,6 +55608,7 @@
|
|
|
55512
55608
|
exports.BrowserEnvContribution = BrowserEnvContribution;
|
|
55513
55609
|
exports.Brush = Brush;
|
|
55514
55610
|
exports.CIRCLE_NUMBER_TYPE = CIRCLE_NUMBER_TYPE;
|
|
55611
|
+
exports.CONTRIBUTION_STORE_STATE_SYMBOL = CONTRIBUTION_STORE_STATE_SYMBOL;
|
|
55515
55612
|
exports.Canvas3DDrawItemInterceptor = Canvas3DDrawItemInterceptor;
|
|
55516
55613
|
exports.Canvas3DPickItemInterceptor = Canvas3DPickItemInterceptor;
|
|
55517
55614
|
exports.CanvasArc3dPicker = CanvasArc3dPicker;
|
|
@@ -55673,6 +55770,7 @@
|
|
|
55673
55770
|
exports.EventManager = EventManager;
|
|
55674
55771
|
exports.EventSystem = EventSystem;
|
|
55675
55772
|
exports.EventTarget = EventTarget;
|
|
55773
|
+
exports.FACTORY_STATE_SYMBOL = FACTORY_STATE_SYMBOL;
|
|
55676
55774
|
exports.FORMAT_ALL_TEXT_COMMAND = FORMAT_ALL_TEXT_COMMAND;
|
|
55677
55775
|
exports.FORMAT_ELEMENT_COMMAND = FORMAT_ELEMENT_COMMAND;
|
|
55678
55776
|
exports.FORMAT_TEXT_COMMAND = FORMAT_TEXT_COMMAND;
|
|
@@ -55687,6 +55785,8 @@
|
|
|
55687
55785
|
exports.Fragment = Fragment;
|
|
55688
55786
|
exports.FromTo = FromTo;
|
|
55689
55787
|
exports.GLYPH_NUMBER_TYPE = GLYPH_NUMBER_TYPE;
|
|
55788
|
+
exports.GRAPHIC_CLASS_SYMBOL = GRAPHIC_CLASS_SYMBOL;
|
|
55789
|
+
exports.GRAPHIC_REGISTRY_SYMBOL = GRAPHIC_REGISTRY_SYMBOL;
|
|
55690
55790
|
exports.GRAPHIC_UPDATE_TAG_KEY = GRAPHIC_UPDATE_TAG_KEY;
|
|
55691
55791
|
exports.GROUP_NUMBER_TYPE = GROUP_NUMBER_TYPE;
|
|
55692
55792
|
exports.GaussianBlur = GaussianBlur;
|
|
@@ -55832,6 +55932,7 @@
|
|
|
55832
55932
|
exports.RECT3D_NUMBER_TYPE = RECT3D_NUMBER_TYPE;
|
|
55833
55933
|
exports.RECT_NUMBER_TYPE = RECT_NUMBER_TYPE;
|
|
55834
55934
|
exports.RICHTEXT_NUMBER_TYPE = RICHTEXT_NUMBER_TYPE;
|
|
55935
|
+
exports.RUNTIME_INSTALLER_STATE_SYMBOL = RUNTIME_INSTALLER_STATE_SYMBOL;
|
|
55835
55936
|
exports.Radio = Radio;
|
|
55836
55937
|
exports.RafBasedSTO = RafBasedSTO;
|
|
55837
55938
|
exports.ReactAttributePlugin = ReactAttributePlugin;
|
|
@@ -56173,6 +56274,7 @@
|
|
|
56173
56274
|
exports.genStepSegments = genStepSegments;
|
|
56174
56275
|
exports.genStepTypeSegments = genStepTypeSegments;
|
|
56175
56276
|
exports.generatorPathEasingFunc = generatorPathEasingFunc;
|
|
56277
|
+
exports.getApplicationState = getApplicationState;
|
|
56176
56278
|
exports.getAttributeFromDefaultAttrList = getAttributeFromDefaultAttrList;
|
|
56177
56279
|
exports.getAxisBreakSymbolAttrs = getAxisBreakSymbolAttrs;
|
|
56178
56280
|
exports.getBackgroundImage = getBackgroundImage;
|
|
@@ -56180,10 +56282,14 @@
|
|
|
56180
56282
|
exports.getCirclePoints = getCirclePoints;
|
|
56181
56283
|
exports.getCircleVerticalVector = getCircleVerticalVector;
|
|
56182
56284
|
exports.getConicGradientAt = getConicGradientAt;
|
|
56285
|
+
exports.getContributionStoreState = getContributionStoreState;
|
|
56183
56286
|
exports.getCurrentEnv = getCurrentEnv;
|
|
56184
56287
|
exports.getDefaultCharacterConfig = getDefaultCharacterConfig;
|
|
56185
56288
|
exports.getElMap = getElMap;
|
|
56186
56289
|
exports.getExtraModelMatrix = getExtraModelMatrix;
|
|
56290
|
+
exports.getFactoryState = getFactoryState;
|
|
56291
|
+
exports.getGraphicClassState = getGraphicClassState;
|
|
56292
|
+
exports.getGraphicRegistryState = getGraphicRegistryState;
|
|
56187
56293
|
exports.getHorizontalPath = getHorizontalPath;
|
|
56188
56294
|
exports.getLegacyBindingContext = getLegacyBindingContext;
|
|
56189
56295
|
exports.getMarksByName = getMarksByName;
|
|
@@ -56194,6 +56300,7 @@
|
|
|
56194
56300
|
exports.getRichTextBounds = getRichTextBounds;
|
|
56195
56301
|
exports.getRuntimeInstallerBindingContext = getRuntimeInstallerBindingContext;
|
|
56196
56302
|
exports.getRuntimeInstallerGlobal = getRuntimeInstallerGlobal;
|
|
56303
|
+
exports.getRuntimeInstallerState = getRuntimeInstallerState;
|
|
56197
56304
|
exports.getScaledStroke = getScaledStroke;
|
|
56198
56305
|
exports.getSharedVRenderApp = getSharedVRenderApp;
|
|
56199
56306
|
exports.getSizeHandlerPath = getSizeHandlerPath;
|