@visactor/vrender 1.1.3 → 1.1.4-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/index.d.ts +1 -1
- package/cjs/index.js +1 -1
- package/cjs/index.js.map +1 -1
- package/dist/index.es.js +101 -21
- package/dist/index.js +110 -20
- 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 {
|
|
@@ -13092,7 +13102,6 @@
|
|
|
13092
13102
|
}
|
|
13093
13103
|
};
|
|
13094
13104
|
}
|
|
13095
|
-
const sharedGraphicFactory = new GraphicFactory();
|
|
13096
13105
|
class GraphicCreator {
|
|
13097
13106
|
constructor() {
|
|
13098
13107
|
this.store = new Map();
|
|
@@ -13107,13 +13116,25 @@
|
|
|
13107
13116
|
return this.store.has(name) ? createGraphic$1(name, attributes) : null;
|
|
13108
13117
|
}
|
|
13109
13118
|
}
|
|
13110
|
-
const
|
|
13119
|
+
const GRAPHIC_REGISTRY_SYMBOL = Symbol.for("@visactor/vrender-core/graphic-registry");
|
|
13120
|
+
function createGraphicRegistryState() {
|
|
13121
|
+
return {
|
|
13122
|
+
graphicCreator: new GraphicCreator(),
|
|
13123
|
+
graphicFactory: new GraphicFactory()
|
|
13124
|
+
};
|
|
13125
|
+
}
|
|
13126
|
+
function getGraphicRegistryState() {
|
|
13127
|
+
const scope = globalThis;
|
|
13128
|
+
return scope[GRAPHIC_REGISTRY_SYMBOL] || (scope[GRAPHIC_REGISTRY_SYMBOL] = createGraphicRegistryState()), scope[GRAPHIC_REGISTRY_SYMBOL];
|
|
13129
|
+
}
|
|
13130
|
+
const sharedGraphicRegistry = getGraphicRegistryState();
|
|
13131
|
+
const graphicCreator$1 = sharedGraphicRegistry.graphicCreator;
|
|
13111
13132
|
function registerGraphic(name, creator) {
|
|
13112
13133
|
if (!name) throw new Error("Graphic registration requires a non-empty graphic type");
|
|
13113
|
-
graphicCreator$1.registerStore(name, creator),
|
|
13134
|
+
graphicCreator$1.registerStore(name, creator), sharedGraphicRegistry.graphicFactory.register(name, createGraphicCtor(creator));
|
|
13114
13135
|
}
|
|
13115
13136
|
function createGraphic$1(name, attributes) {
|
|
13116
|
-
return
|
|
13137
|
+
return sharedGraphicRegistry.graphicFactory.create(name, attributes);
|
|
13117
13138
|
}
|
|
13118
13139
|
|
|
13119
13140
|
function getExtraModelMatrix(dx, dy, graphic) {
|
|
@@ -13711,6 +13732,17 @@
|
|
|
13711
13732
|
}
|
|
13712
13733
|
}
|
|
13713
13734
|
|
|
13735
|
+
const FACTORY_STATE_SYMBOL = Symbol.for("@visactor/vrender-core/factory-state");
|
|
13736
|
+
function createFactoryState() {
|
|
13737
|
+
return {
|
|
13738
|
+
pluginClasses: {}
|
|
13739
|
+
};
|
|
13740
|
+
}
|
|
13741
|
+
function getFactoryState() {
|
|
13742
|
+
const scope = globalThis;
|
|
13743
|
+
return scope[FACTORY_STATE_SYMBOL] || (scope[FACTORY_STATE_SYMBOL] = createFactoryState()), scope[FACTORY_STATE_SYMBOL];
|
|
13744
|
+
}
|
|
13745
|
+
|
|
13714
13746
|
class DefaultGlobalPickerService {
|
|
13715
13747
|
constructor() {
|
|
13716
13748
|
this.global = application.global, this.global.hooks.onSetEnv.tap("global-picker-service", (lastEnv, env, global) => {
|
|
@@ -15413,7 +15445,7 @@
|
|
|
15413
15445
|
return Factory._pluginClasses[pluginKey];
|
|
15414
15446
|
}
|
|
15415
15447
|
}
|
|
15416
|
-
Factory._pluginClasses =
|
|
15448
|
+
Factory._pluginClasses = getFactoryState().pluginClasses;
|
|
15417
15449
|
|
|
15418
15450
|
function defaultLayerHandlerFactory(layerMode) {
|
|
15419
15451
|
const handlerFactory = application.layerHandlerFactory;
|
|
@@ -15486,6 +15518,17 @@
|
|
|
15486
15518
|
}
|
|
15487
15519
|
DefaultLayerService.idprefix = "visactor_layer", DefaultLayerService.prefix_count = 0;
|
|
15488
15520
|
|
|
15521
|
+
const CONTRIBUTION_STORE_STATE_SYMBOL = Symbol.for("@visactor/vrender-core/contribution-store-state");
|
|
15522
|
+
function createContributionStoreState() {
|
|
15523
|
+
return {
|
|
15524
|
+
store: new Map()
|
|
15525
|
+
};
|
|
15526
|
+
}
|
|
15527
|
+
function getContributionStoreState() {
|
|
15528
|
+
const scope = globalThis;
|
|
15529
|
+
return scope[CONTRIBUTION_STORE_STATE_SYMBOL] || (scope[CONTRIBUTION_STORE_STATE_SYMBOL] = createContributionStoreState()), scope[CONTRIBUTION_STORE_STATE_SYMBOL];
|
|
15530
|
+
}
|
|
15531
|
+
|
|
15489
15532
|
const ContributionProvider = Symbol("ContributionProvider");
|
|
15490
15533
|
class ContributionProviderCache {
|
|
15491
15534
|
constructor(serviceIdentifier, container) {
|
|
@@ -15528,7 +15571,7 @@
|
|
|
15528
15571
|
});
|
|
15529
15572
|
}
|
|
15530
15573
|
}
|
|
15531
|
-
ContributionStore.store =
|
|
15574
|
+
ContributionStore.store = getContributionStoreState().store;
|
|
15532
15575
|
|
|
15533
15576
|
class ATextMeasure {
|
|
15534
15577
|
constructor() {
|
|
@@ -17542,13 +17585,26 @@
|
|
|
17542
17585
|
return new LegacyBindingContext();
|
|
17543
17586
|
}
|
|
17544
17587
|
|
|
17545
|
-
const
|
|
17588
|
+
const LEGACY_BOOTSTRAP_STATE_SYMBOL = Symbol.for("@visactor/vrender-core/legacy-bootstrap-state");
|
|
17589
|
+
function createLegacyBootstrapState() {
|
|
17590
|
+
return {
|
|
17591
|
+
legacyBindingContext: createLegacyBindingContext(),
|
|
17592
|
+
preloaded: !1
|
|
17593
|
+
};
|
|
17594
|
+
}
|
|
17595
|
+
function getLegacyBootstrapState() {
|
|
17596
|
+
const scope = globalThis;
|
|
17597
|
+
return scope[LEGACY_BOOTSTRAP_STATE_SYMBOL] || (scope[LEGACY_BOOTSTRAP_STATE_SYMBOL] = createLegacyBootstrapState()), scope[LEGACY_BOOTSTRAP_STATE_SYMBOL];
|
|
17598
|
+
}
|
|
17599
|
+
|
|
17600
|
+
const legacyBootstrapState = getLegacyBootstrapState(),
|
|
17601
|
+
legacyBindingContext = legacyBootstrapState.legacyBindingContext;
|
|
17546
17602
|
function getLegacyTarget(resolver) {
|
|
17547
17603
|
let target;
|
|
17548
17604
|
return () => (void 0 === target && (target = resolver()), target);
|
|
17549
17605
|
}
|
|
17550
17606
|
function preLoadAllModule() {
|
|
17551
|
-
|
|
17607
|
+
legacyBootstrapState.preloaded || (legacyBootstrapState.preloaded = !0, bindCoreModules({
|
|
17552
17608
|
bind: legacyBindingContext.bind
|
|
17553
17609
|
}), bindGraphicModules({
|
|
17554
17610
|
bind: legacyBindingContext.bind
|
|
@@ -17561,7 +17617,6 @@
|
|
|
17561
17617
|
bind: legacyBindingContext.bind
|
|
17562
17618
|
}), load$1(legacyBindingContext), load(legacyBindingContext));
|
|
17563
17619
|
}
|
|
17564
|
-
preLoadAllModule.__loaded = !1;
|
|
17565
17620
|
function getLegacyBindingContext() {
|
|
17566
17621
|
return legacyBindingContext;
|
|
17567
17622
|
}
|
|
@@ -19975,18 +20030,32 @@
|
|
|
19975
20030
|
}
|
|
19976
20031
|
}
|
|
19977
20032
|
|
|
19978
|
-
const
|
|
19979
|
-
|
|
19980
|
-
|
|
19981
|
-
|
|
20033
|
+
const RUNTIME_INSTALLER_STATE_SYMBOL = Symbol.for("@visactor/vrender-core/runtime-installer-state");
|
|
20034
|
+
function createRuntimeInstallerState() {
|
|
20035
|
+
return {
|
|
20036
|
+
runtimeInstallerContext: createLegacyBindingContext(),
|
|
20037
|
+
preloaded: !1,
|
|
20038
|
+
runtimeEntryKeys: new WeakMap(),
|
|
20039
|
+
runtimeDrawContributions: new WeakMap(),
|
|
20040
|
+
loadedRuntimeContributionModules: new WeakMap()
|
|
20041
|
+
};
|
|
20042
|
+
}
|
|
20043
|
+
function getRuntimeInstallerState() {
|
|
20044
|
+
const scope = globalThis;
|
|
20045
|
+
return scope[RUNTIME_INSTALLER_STATE_SYMBOL] || (scope[RUNTIME_INSTALLER_STATE_SYMBOL] = createRuntimeInstallerState()), scope[RUNTIME_INSTALLER_STATE_SYMBOL];
|
|
20046
|
+
}
|
|
20047
|
+
|
|
20048
|
+
const runtimeInstallerState = getRuntimeInstallerState(),
|
|
20049
|
+
runtimeInstallerContext = runtimeInstallerState.runtimeInstallerContext,
|
|
20050
|
+
RUNTIME_RENDERER_NAMESPACE = "vrender:runtime-renderer",
|
|
19982
20051
|
RUNTIME_PICKER_NAMESPACE = "vrender:runtime-picker",
|
|
19983
|
-
runtimeEntryKeys =
|
|
19984
|
-
runtimeDrawContributions =
|
|
19985
|
-
loadedRuntimeContributionModules =
|
|
20052
|
+
runtimeEntryKeys = runtimeInstallerState.runtimeEntryKeys,
|
|
20053
|
+
runtimeDrawContributions = runtimeInstallerState.runtimeDrawContributions,
|
|
20054
|
+
loadedRuntimeContributionModules = runtimeInstallerState.loadedRuntimeContributionModules,
|
|
19986
20055
|
DEFAULT_RUNTIME_CONTRIBUTION_TARGETS = ["graphic-renderer"],
|
|
19987
20056
|
noopUnbindRuntimeContributionService = () => {};
|
|
19988
20057
|
function ensureRuntimeInstallerPreloaded() {
|
|
19989
|
-
|
|
20058
|
+
runtimeInstallerState.preloaded || (runtimeInstallerState.preloaded = !0, bindCoreModules({
|
|
19990
20059
|
bind: runtimeInstallerContext.bind
|
|
19991
20060
|
}), bindGraphicModules({
|
|
19992
20061
|
bind: runtimeInstallerContext.bind
|
|
@@ -20031,7 +20100,8 @@
|
|
|
20031
20100
|
ContributionStore.refreshAllContributions();
|
|
20032
20101
|
}
|
|
20033
20102
|
function getRuntimeInstallerGlobal() {
|
|
20034
|
-
|
|
20103
|
+
var _a;
|
|
20104
|
+
return ensureRuntimeInstallerPreloaded(), null !== (_a = runtimeInstallerState.runtimeGlobal) && void 0 !== _a || (runtimeInstallerState.runtimeGlobal = new DefaultGlobal(createContributionProvider$1(EnvContribution, runtimeInstallerContext))), runtimeInstallerState.runtimeGlobal;
|
|
20035
20105
|
}
|
|
20036
20106
|
function configureRuntimeApplicationForApp(app) {
|
|
20037
20107
|
const bindingContext = getRuntimeInstallerBindingContext(),
|
|
@@ -22771,6 +22841,7 @@
|
|
|
22771
22841
|
|
|
22772
22842
|
var VRenderCore = /*#__PURE__*/Object.freeze({
|
|
22773
22843
|
__proto__: null,
|
|
22844
|
+
APPLICATION_STATE_SYMBOL: APPLICATION_STATE_SYMBOL,
|
|
22774
22845
|
ARC3D_NUMBER_TYPE: ARC3D_NUMBER_TYPE,
|
|
22775
22846
|
ARC_NUMBER_TYPE: ARC_NUMBER_TYPE,
|
|
22776
22847
|
AREA_NUMBER_TYPE: AREA_NUMBER_TYPE,
|
|
@@ -22802,6 +22873,7 @@
|
|
|
22802
22873
|
BoundsPicker: BoundsPicker,
|
|
22803
22874
|
BrowserEntry: BrowserEntry,
|
|
22804
22875
|
CIRCLE_NUMBER_TYPE: CIRCLE_NUMBER_TYPE,
|
|
22876
|
+
CONTRIBUTION_STORE_STATE_SYMBOL: CONTRIBUTION_STORE_STATE_SYMBOL,
|
|
22805
22877
|
Canvas3DDrawItemInterceptor: Canvas3DDrawItemInterceptor,
|
|
22806
22878
|
Canvas3DPickItemInterceptor: Canvas3DPickItemInterceptor,
|
|
22807
22879
|
CanvasFactory: CanvasFactory,
|
|
@@ -22914,6 +22986,7 @@
|
|
|
22914
22986
|
EventManager: EventManager,
|
|
22915
22987
|
EventSystem: EventSystem,
|
|
22916
22988
|
EventTarget: EventTarget,
|
|
22989
|
+
FACTORY_STATE_SYMBOL: FACTORY_STATE_SYMBOL,
|
|
22917
22990
|
FORMAT_ALL_TEXT_COMMAND: FORMAT_ALL_TEXT_COMMAND,
|
|
22918
22991
|
FORMAT_ELEMENT_COMMAND: FORMAT_ELEMENT_COMMAND,
|
|
22919
22992
|
FORMAT_TEXT_COMMAND: FORMAT_TEXT_COMMAND,
|
|
@@ -22924,6 +22997,7 @@
|
|
|
22924
22997
|
FederatedWheelEvent: FederatedWheelEvent,
|
|
22925
22998
|
FlexLayoutPlugin: FlexLayoutPlugin,
|
|
22926
22999
|
GLYPH_NUMBER_TYPE: GLYPH_NUMBER_TYPE,
|
|
23000
|
+
GRAPHIC_REGISTRY_SYMBOL: GRAPHIC_REGISTRY_SYMBOL,
|
|
22927
23001
|
GRAPHIC_UPDATE_TAG_KEY: GRAPHIC_UPDATE_TAG_KEY,
|
|
22928
23002
|
GROUP_NUMBER_TYPE: GROUP_NUMBER_TYPE,
|
|
22929
23003
|
Generator: Generator,
|
|
@@ -22992,6 +23066,7 @@
|
|
|
22992
23066
|
RECT3D_NUMBER_TYPE: RECT3D_NUMBER_TYPE,
|
|
22993
23067
|
RECT_NUMBER_TYPE: RECT_NUMBER_TYPE,
|
|
22994
23068
|
RICHTEXT_NUMBER_TYPE: RICHTEXT_NUMBER_TYPE,
|
|
23069
|
+
RUNTIME_INSTALLER_STATE_SYMBOL: RUNTIME_INSTALLER_STATE_SYMBOL,
|
|
22995
23070
|
RafBasedSTO: RafBasedSTO,
|
|
22996
23071
|
ReactAttributePlugin: ReactAttributePlugin,
|
|
22997
23072
|
Rect: Rect,
|
|
@@ -23200,17 +23275,22 @@
|
|
|
23200
23275
|
genStepClosedSegments: genStepClosedSegments,
|
|
23201
23276
|
genStepSegments: genStepSegments,
|
|
23202
23277
|
genStepTypeSegments: genStepTypeSegments,
|
|
23278
|
+
getApplicationState: getApplicationState,
|
|
23203
23279
|
getAttributeFromDefaultAttrList: getAttributeFromDefaultAttrList,
|
|
23204
23280
|
getBackgroundImage: getBackgroundImage,
|
|
23205
23281
|
getConicGradientAt: getConicGradientAt,
|
|
23282
|
+
getContributionStoreState: getContributionStoreState,
|
|
23206
23283
|
getCurrentEnv: getCurrentEnv,
|
|
23207
23284
|
getDefaultCharacterConfig: getDefaultCharacterConfig,
|
|
23208
23285
|
getExtraModelMatrix: getExtraModelMatrix,
|
|
23286
|
+
getFactoryState: getFactoryState,
|
|
23287
|
+
getGraphicRegistryState: getGraphicRegistryState,
|
|
23209
23288
|
getLegacyBindingContext: getLegacyBindingContext,
|
|
23210
23289
|
getModelMatrix: getModelMatrix,
|
|
23211
23290
|
getRichTextBounds: getRichTextBounds,
|
|
23212
23291
|
getRuntimeInstallerBindingContext: getRuntimeInstallerBindingContext,
|
|
23213
23292
|
getRuntimeInstallerGlobal: getRuntimeInstallerGlobal,
|
|
23293
|
+
getRuntimeInstallerState: getRuntimeInstallerState,
|
|
23214
23294
|
getScaledStroke: getScaledStroke,
|
|
23215
23295
|
getTextBounds: getTextBounds,
|
|
23216
23296
|
getTheme: getTheme,
|
|
@@ -55467,10 +55547,11 @@
|
|
|
55467
55547
|
return resolveLegacyApp().createStage(params);
|
|
55468
55548
|
}
|
|
55469
55549
|
|
|
55470
|
-
const version = "1.1.
|
|
55550
|
+
const version = "1.1.4-alpha.0";
|
|
55471
55551
|
|
|
55472
55552
|
exports.AComponentAnimate = AComponentAnimate;
|
|
55473
55553
|
exports.ACustomAnimate = ACustomAnimate;
|
|
55554
|
+
exports.APPLICATION_STATE_SYMBOL = APPLICATION_STATE_SYMBOL;
|
|
55474
55555
|
exports.ARC3D_NUMBER_TYPE = ARC3D_NUMBER_TYPE;
|
|
55475
55556
|
exports.ARC_NUMBER_TYPE = ARC_NUMBER_TYPE;
|
|
55476
55557
|
exports.AREA_NUMBER_TYPE = AREA_NUMBER_TYPE;
|
|
@@ -55512,6 +55593,7 @@
|
|
|
55512
55593
|
exports.BrowserEnvContribution = BrowserEnvContribution;
|
|
55513
55594
|
exports.Brush = Brush;
|
|
55514
55595
|
exports.CIRCLE_NUMBER_TYPE = CIRCLE_NUMBER_TYPE;
|
|
55596
|
+
exports.CONTRIBUTION_STORE_STATE_SYMBOL = CONTRIBUTION_STORE_STATE_SYMBOL;
|
|
55515
55597
|
exports.Canvas3DDrawItemInterceptor = Canvas3DDrawItemInterceptor;
|
|
55516
55598
|
exports.Canvas3DPickItemInterceptor = Canvas3DPickItemInterceptor;
|
|
55517
55599
|
exports.CanvasArc3dPicker = CanvasArc3dPicker;
|
|
@@ -55673,6 +55755,7 @@
|
|
|
55673
55755
|
exports.EventManager = EventManager;
|
|
55674
55756
|
exports.EventSystem = EventSystem;
|
|
55675
55757
|
exports.EventTarget = EventTarget;
|
|
55758
|
+
exports.FACTORY_STATE_SYMBOL = FACTORY_STATE_SYMBOL;
|
|
55676
55759
|
exports.FORMAT_ALL_TEXT_COMMAND = FORMAT_ALL_TEXT_COMMAND;
|
|
55677
55760
|
exports.FORMAT_ELEMENT_COMMAND = FORMAT_ELEMENT_COMMAND;
|
|
55678
55761
|
exports.FORMAT_TEXT_COMMAND = FORMAT_TEXT_COMMAND;
|
|
@@ -55687,6 +55770,7 @@
|
|
|
55687
55770
|
exports.Fragment = Fragment;
|
|
55688
55771
|
exports.FromTo = FromTo;
|
|
55689
55772
|
exports.GLYPH_NUMBER_TYPE = GLYPH_NUMBER_TYPE;
|
|
55773
|
+
exports.GRAPHIC_REGISTRY_SYMBOL = GRAPHIC_REGISTRY_SYMBOL;
|
|
55690
55774
|
exports.GRAPHIC_UPDATE_TAG_KEY = GRAPHIC_UPDATE_TAG_KEY;
|
|
55691
55775
|
exports.GROUP_NUMBER_TYPE = GROUP_NUMBER_TYPE;
|
|
55692
55776
|
exports.GaussianBlur = GaussianBlur;
|
|
@@ -55832,6 +55916,7 @@
|
|
|
55832
55916
|
exports.RECT3D_NUMBER_TYPE = RECT3D_NUMBER_TYPE;
|
|
55833
55917
|
exports.RECT_NUMBER_TYPE = RECT_NUMBER_TYPE;
|
|
55834
55918
|
exports.RICHTEXT_NUMBER_TYPE = RICHTEXT_NUMBER_TYPE;
|
|
55919
|
+
exports.RUNTIME_INSTALLER_STATE_SYMBOL = RUNTIME_INSTALLER_STATE_SYMBOL;
|
|
55835
55920
|
exports.Radio = Radio;
|
|
55836
55921
|
exports.RafBasedSTO = RafBasedSTO;
|
|
55837
55922
|
exports.ReactAttributePlugin = ReactAttributePlugin;
|
|
@@ -56173,6 +56258,7 @@
|
|
|
56173
56258
|
exports.genStepSegments = genStepSegments;
|
|
56174
56259
|
exports.genStepTypeSegments = genStepTypeSegments;
|
|
56175
56260
|
exports.generatorPathEasingFunc = generatorPathEasingFunc;
|
|
56261
|
+
exports.getApplicationState = getApplicationState;
|
|
56176
56262
|
exports.getAttributeFromDefaultAttrList = getAttributeFromDefaultAttrList;
|
|
56177
56263
|
exports.getAxisBreakSymbolAttrs = getAxisBreakSymbolAttrs;
|
|
56178
56264
|
exports.getBackgroundImage = getBackgroundImage;
|
|
@@ -56180,10 +56266,13 @@
|
|
|
56180
56266
|
exports.getCirclePoints = getCirclePoints;
|
|
56181
56267
|
exports.getCircleVerticalVector = getCircleVerticalVector;
|
|
56182
56268
|
exports.getConicGradientAt = getConicGradientAt;
|
|
56269
|
+
exports.getContributionStoreState = getContributionStoreState;
|
|
56183
56270
|
exports.getCurrentEnv = getCurrentEnv;
|
|
56184
56271
|
exports.getDefaultCharacterConfig = getDefaultCharacterConfig;
|
|
56185
56272
|
exports.getElMap = getElMap;
|
|
56186
56273
|
exports.getExtraModelMatrix = getExtraModelMatrix;
|
|
56274
|
+
exports.getFactoryState = getFactoryState;
|
|
56275
|
+
exports.getGraphicRegistryState = getGraphicRegistryState;
|
|
56187
56276
|
exports.getHorizontalPath = getHorizontalPath;
|
|
56188
56277
|
exports.getLegacyBindingContext = getLegacyBindingContext;
|
|
56189
56278
|
exports.getMarksByName = getMarksByName;
|
|
@@ -56194,6 +56283,7 @@
|
|
|
56194
56283
|
exports.getRichTextBounds = getRichTextBounds;
|
|
56195
56284
|
exports.getRuntimeInstallerBindingContext = getRuntimeInstallerBindingContext;
|
|
56196
56285
|
exports.getRuntimeInstallerGlobal = getRuntimeInstallerGlobal;
|
|
56286
|
+
exports.getRuntimeInstallerState = getRuntimeInstallerState;
|
|
56197
56287
|
exports.getScaledStroke = getScaledStroke;
|
|
56198
56288
|
exports.getSharedVRenderApp = getSharedVRenderApp;
|
|
56199
56289
|
exports.getSizeHandlerPath = getSizeHandlerPath;
|