@visactor/vrender 1.1.0-alpha.21 → 1.1.0-alpha.22
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/index.d.ts +1 -0
- package/cjs/entries/index.js +2 -1
- package/cjs/entries/index.js.map +1 -1
- package/cjs/entries/shared.d.ts +30 -0
- package/cjs/entries/shared.js +95 -0
- package/cjs/entries/shared.js.map +1 -0
- 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 +378 -42
- package/dist/index.js +380 -41
- package/dist/index.min.js +1 -1
- package/es/entries/index.d.ts +1 -0
- package/es/entries/index.js +2 -0
- package/es/entries/index.js.map +1 -1
- package/es/entries/shared.d.ts +30 -0
- package/es/entries/shared.js +88 -0
- package/es/entries/shared.js.map +1 -0
- package/es/index.d.ts +1 -1
- package/es/index.js +1 -1
- package/es/index.js.map +1 -1
- package/package.json +5 -5
package/dist/index.es.js
CHANGED
|
@@ -5370,6 +5370,11 @@ class ResourceLoader {
|
|
|
5370
5370
|
data.loadState = (null == res ? void 0 : res.data) ? "success" : "fail", data.data = null == res ? void 0 : res.data, null === (_a = data.waitingMark) || void 0 === _a || _a.map((mark, index) => {
|
|
5371
5371
|
(null == res ? void 0 : res.data) ? (data.loadState = "success", data.data = res.data, mark.imageLoadSuccess(svgStr, res.data)) : (data.loadState = "fail", mark.imageLoadFail(svgStr));
|
|
5372
5372
|
}), data.waitingMark && (data.waitingMark = []);
|
|
5373
|
+
}).catch(() => {
|
|
5374
|
+
var _a;
|
|
5375
|
+
data.loadState = "fail", null === (_a = data.waitingMark) || void 0 === _a || _a.map(mark => {
|
|
5376
|
+
mark.imageLoadFail(svgStr);
|
|
5377
|
+
}), data.waitingMark && (data.waitingMark = []);
|
|
5373
5378
|
})) : (data.loadState = "fail", mark.imageLoadFail(svgStr)));
|
|
5374
5379
|
}
|
|
5375
5380
|
static GetFile(url, type) {
|
|
@@ -16884,6 +16889,7 @@ class CanvasLayerHandlerContribution {
|
|
|
16884
16889
|
if (this.layer = layer, this.window = window, params.main) this.main = !0, this.context = window.getContext(), this.canvas = this.context.getCanvas();else {
|
|
16885
16890
|
let nativeCanvas;
|
|
16886
16891
|
this.main = !1, params.canvasId && (nativeCanvas = this.global.getElementById(params.canvasId)), nativeCanvas || (nativeCanvas = this.global.createCanvas({
|
|
16892
|
+
id: params.canvasId,
|
|
16887
16893
|
width: window.width,
|
|
16888
16894
|
height: window.height
|
|
16889
16895
|
})), nativeCanvas.style && (nativeCanvas.style["pointer-events"] = "none");
|
|
@@ -29001,6 +29007,40 @@ let MiniAppEventManager$3 = class MiniAppEventManager {
|
|
|
29001
29007
|
this.cache = {};
|
|
29002
29008
|
}
|
|
29003
29009
|
};
|
|
29010
|
+
function setMiniAppEventTarget$1(event, key, value) {
|
|
29011
|
+
if (event && value) try {
|
|
29012
|
+
event[key] = value;
|
|
29013
|
+
} catch (_a) {
|
|
29014
|
+
Object.defineProperty(event, key, {
|
|
29015
|
+
configurable: !0,
|
|
29016
|
+
value: value
|
|
29017
|
+
});
|
|
29018
|
+
}
|
|
29019
|
+
}
|
|
29020
|
+
function isValidCoordinate$1(value) {
|
|
29021
|
+
return "number" == typeof value && Number.isFinite(value);
|
|
29022
|
+
}
|
|
29023
|
+
function pickCoordinate$1(...values) {
|
|
29024
|
+
for (let i = 0; i < values.length; i++) if (isValidCoordinate$1(values[i])) return values[i];
|
|
29025
|
+
}
|
|
29026
|
+
function setLynxEventValue(event, key, value) {
|
|
29027
|
+
try {
|
|
29028
|
+
event[key] = value;
|
|
29029
|
+
} catch (_a) {
|
|
29030
|
+
Object.defineProperty(event, key, {
|
|
29031
|
+
configurable: !0,
|
|
29032
|
+
value: value
|
|
29033
|
+
});
|
|
29034
|
+
}
|
|
29035
|
+
}
|
|
29036
|
+
function normalizeLynxTouchEventPoint(event) {
|
|
29037
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s;
|
|
29038
|
+
const touch = null !== (_b = null === (_a = null == event ? void 0 : event.changedTouches) || void 0 === _a ? void 0 : _a[0]) && void 0 !== _b ? _b : null === (_c = null == event ? void 0 : event.touches) || void 0 === _c ? void 0 : _c[0];
|
|
29039
|
+
if (!touch) return;
|
|
29040
|
+
const x = pickCoordinate$1(event.x, event.offsetX, event.clientX, event.pageX, touch.x, touch.offsetX, touch.clientX, touch.pageX),
|
|
29041
|
+
y = pickCoordinate$1(event.y, event.offsetY, event.clientY, event.pageY, touch.y, touch.offsetY, touch.clientY, touch.pageY);
|
|
29042
|
+
null != x && null != y && (!event.touches && event.changedTouches && setLynxEventValue(event, "touches", "touchend" === event.type || "touchcancel" === event.type ? [] : event.changedTouches), setLynxEventValue(event, "x", x), setLynxEventValue(event, "y", y), setLynxEventValue(event, "offsetX", null !== (_d = event.offsetX) && void 0 !== _d ? _d : x), setLynxEventValue(event, "offsetY", null !== (_e = event.offsetY) && void 0 !== _e ? _e : y), setLynxEventValue(event, "clientX", null !== (_f = event.clientX) && void 0 !== _f ? _f : x), setLynxEventValue(event, "clientY", null !== (_g = event.clientY) && void 0 !== _g ? _g : y), setLynxEventValue(event, "pageX", null !== (_h = event.pageX) && void 0 !== _h ? _h : x), setLynxEventValue(event, "pageY", null !== (_j = event.pageY) && void 0 !== _j ? _j : y), touch.x = null !== (_k = touch.x) && void 0 !== _k ? _k : x, touch.y = null !== (_l = touch.y) && void 0 !== _l ? _l : y, touch.offsetX = null !== (_m = touch.offsetX) && void 0 !== _m ? _m : x, touch.offsetY = null !== (_o = touch.offsetY) && void 0 !== _o ? _o : y, touch.clientX = null !== (_p = touch.clientX) && void 0 !== _p ? _p : x, touch.clientY = null !== (_q = touch.clientY) && void 0 !== _q ? _q : y, touch.pageX = null !== (_r = touch.pageX) && void 0 !== _r ? _r : x, touch.pageY = null !== (_s = touch.pageY) && void 0 !== _s ? _s : y);
|
|
29043
|
+
}
|
|
29004
29044
|
class LynxWindowHandlerContribution extends BaseWindowHandlerContribution {
|
|
29005
29045
|
get container() {
|
|
29006
29046
|
return null;
|
|
@@ -29044,7 +29084,12 @@ class LynxWindowHandlerContribution extends BaseWindowHandlerContribution {
|
|
|
29044
29084
|
createWindowByCanvas(params) {
|
|
29045
29085
|
let canvas;
|
|
29046
29086
|
if ("string" == typeof params.canvas) {
|
|
29047
|
-
if (canvas = this.global.getElementById(params.canvas),
|
|
29087
|
+
if (canvas = this.global.getElementById(params.canvas), canvas || (canvas = this.global.createCanvas({
|
|
29088
|
+
id: params.canvas,
|
|
29089
|
+
width: params.width,
|
|
29090
|
+
height: params.height,
|
|
29091
|
+
dpr: params.dpr
|
|
29092
|
+
})), !canvas) throw new Error("canvasId 参数不正确,请确认canvas存在并插入dom");
|
|
29048
29093
|
} else canvas = params.canvas;
|
|
29049
29094
|
let width = params.width,
|
|
29050
29095
|
height = params.height;
|
|
@@ -29084,12 +29129,15 @@ class LynxWindowHandlerContribution extends BaseWindowHandlerContribution {
|
|
|
29084
29129
|
this.eventManager.removeEventListener(type, listener);
|
|
29085
29130
|
}
|
|
29086
29131
|
dispatchEvent(event) {
|
|
29132
|
+
var _a;
|
|
29087
29133
|
const {
|
|
29088
29134
|
type: type
|
|
29089
29135
|
} = event;
|
|
29090
|
-
|
|
29136
|
+
if (!this.eventManager.cache[type]) return !1;
|
|
29137
|
+
const nativeCanvas = null === (_a = this.canvas) || void 0 === _a ? void 0 : _a.nativeCanvas;
|
|
29138
|
+
return setMiniAppEventTarget$1(event, "target", nativeCanvas), setMiniAppEventTarget$1(event, "currentTarget", nativeCanvas), normalizeLynxTouchEventPoint(event), event.preventDefault = () => {}, event.stopPropagation = () => {}, this.eventManager.cache[type].listener && this.eventManager.cache[type].listener.forEach(f => {
|
|
29091
29139
|
f(event);
|
|
29092
|
-
}), !0
|
|
29140
|
+
}), !0;
|
|
29093
29141
|
}
|
|
29094
29142
|
getStyle() {
|
|
29095
29143
|
return {};
|
|
@@ -29121,30 +29169,131 @@ function bindLynxWindowContribution(container) {
|
|
|
29121
29169
|
(null === (_a = container.isBound) || void 0 === _a ? void 0 : _a.call(container, LynxWindowHandlerContribution)) || container.bind(LynxWindowHandlerContribution).toSelf(), (null === (_b = container.getNamed) || void 0 === _b ? void 0 : _b.call(container, WindowHandlerContribution, LynxWindowHandlerContribution.env)) || container.bind(WindowHandlerContribution).toService(LynxWindowHandlerContribution).whenTargetNamed(LynxWindowHandlerContribution.env);
|
|
29122
29170
|
}
|
|
29123
29171
|
|
|
29124
|
-
|
|
29125
|
-
|
|
29126
|
-
|
|
29127
|
-
|
|
29128
|
-
|
|
29129
|
-
|
|
29172
|
+
const LYNX_CANVAS_BRIDGE_ERROR = "Lynx canvas bridge is unavailable. VRender Lynx env requires envParams.canvasFactory or a Lynx runtime that exposes createCanvasNG/createCanvas/createOffscreenCanvas/krypton canvas APIs.",
|
|
29173
|
+
LYNX_CANVAS_SIZE_ERROR = "Lynx canvas size is unavailable. Pass stage width/height when creating a Lynx stage canvas.";
|
|
29174
|
+
function isValidCoordinate(value) {
|
|
29175
|
+
return "number" == typeof value && Number.isFinite(value);
|
|
29176
|
+
}
|
|
29177
|
+
function pickCoordinate(...values) {
|
|
29178
|
+
for (let i = 0; i < values.length; i++) if (isValidCoordinate(values[i])) return values[i];
|
|
29179
|
+
}
|
|
29180
|
+
function getPrimaryTouch(event) {
|
|
29181
|
+
var _a, _b, _c;
|
|
29182
|
+
return null !== (_b = null === (_a = null == event ? void 0 : event.changedTouches) || void 0 === _a ? void 0 : _a[0]) && void 0 !== _b ? _b : null === (_c = null == event ? void 0 : event.touches) || void 0 === _c ? void 0 : _c[0];
|
|
29183
|
+
}
|
|
29184
|
+
function getLynxEventPoint(event) {
|
|
29185
|
+
const touch = getPrimaryTouch(event),
|
|
29186
|
+
x = pickCoordinate(null == event ? void 0 : event.x, null == event ? void 0 : event.offsetX, null == event ? void 0 : event.clientX, null == event ? void 0 : event.pageX, null == touch ? void 0 : touch.x, null == touch ? void 0 : touch.offsetX, null == touch ? void 0 : touch.clientX, null == touch ? void 0 : touch.pageX),
|
|
29187
|
+
y = pickCoordinate(null == event ? void 0 : event.y, null == event ? void 0 : event.offsetY, null == event ? void 0 : event.clientY, null == event ? void 0 : event.pageY, null == touch ? void 0 : touch.y, null == touch ? void 0 : touch.offsetY, null == touch ? void 0 : touch.clientY, null == touch ? void 0 : touch.pageY);
|
|
29188
|
+
return null == x || null == y ? null : {
|
|
29189
|
+
x: x,
|
|
29190
|
+
y: y
|
|
29191
|
+
};
|
|
29192
|
+
}
|
|
29193
|
+
function getGlobalLynxRuntime() {
|
|
29194
|
+
try {
|
|
29195
|
+
return "undefined" != typeof lynx ? lynx : void 0;
|
|
29196
|
+
} catch (err) {
|
|
29197
|
+
return;
|
|
29198
|
+
}
|
|
29199
|
+
}
|
|
29200
|
+
function getGlobalSystemPixelRatio() {
|
|
29201
|
+
try {
|
|
29202
|
+
return "undefined" != typeof SystemInfo ? SystemInfo.pixelRatio : void 0;
|
|
29203
|
+
} catch (err) {
|
|
29204
|
+
return;
|
|
29205
|
+
}
|
|
29206
|
+
}
|
|
29207
|
+
function getLynxRuntime(params) {
|
|
29208
|
+
var _a, _b;
|
|
29209
|
+
return null !== (_b = null !== (_a = null == params ? void 0 : params.lynx) && void 0 !== _a ? _a : null == params ? void 0 : params.runtime) && void 0 !== _b ? _b : getGlobalLynxRuntime();
|
|
29210
|
+
}
|
|
29211
|
+
function getLynxPixelRatio(params, runtime) {
|
|
29212
|
+
var _a, _b, _c, _d, _e;
|
|
29213
|
+
return null !== (_e = null !== (_d = null !== (_a = null == params ? void 0 : params.pixelRatio) && void 0 !== _a ? _a : null === (_c = null === (_b = null == runtime ? void 0 : runtime.getSystemInfoSync) || void 0 === _b ? void 0 : _b.call(runtime)) || void 0 === _c ? void 0 : _c.pixelRatio) && void 0 !== _d ? _d : getGlobalSystemPixelRatio()) && void 0 !== _e ? _e : 1;
|
|
29214
|
+
}
|
|
29215
|
+
function attachLynxCanvasToView(canvas, id) {
|
|
29216
|
+
var _a;
|
|
29217
|
+
return null === (_a = null == canvas ? void 0 : canvas.attachToCanvasView) || void 0 === _a || _a.call(canvas, id), canvas;
|
|
29218
|
+
}
|
|
29219
|
+
function createBoundLynxCanvas(id, runtime) {
|
|
29220
|
+
var _a, _b, _c;
|
|
29221
|
+
if ("function" == typeof (null === (_a = null == runtime ? void 0 : runtime.krypton) || void 0 === _a ? void 0 : _a.createCanvas)) {
|
|
29222
|
+
const canvas = runtime.krypton.createCanvas(id);
|
|
29223
|
+
if (canvas) return canvas;
|
|
29224
|
+
}
|
|
29225
|
+
if ("function" == typeof (null == runtime ? void 0 : runtime.createCanvasNG)) {
|
|
29226
|
+
const canvas = runtime.createCanvasNG(id);
|
|
29227
|
+
if (canvas) return attachLynxCanvasToView(canvas, id);
|
|
29228
|
+
}
|
|
29229
|
+
if ("function" == typeof (null === (_b = null == runtime ? void 0 : runtime.krypton) || void 0 === _b ? void 0 : _b.createCanvasNG)) {
|
|
29230
|
+
const canvas = runtime.krypton.createCanvasNG();
|
|
29231
|
+
if (canvas) return attachLynxCanvasToView(canvas, id);
|
|
29232
|
+
}
|
|
29233
|
+
if ("function" == typeof (null === (_c = null == runtime ? void 0 : runtime.krypton) || void 0 === _c ? void 0 : _c.CanvasElement)) return new runtime.krypton.CanvasElement(id);
|
|
29234
|
+
if ("function" == typeof (null == runtime ? void 0 : runtime.createCanvas)) {
|
|
29235
|
+
const canvas = runtime.createCanvas(id);
|
|
29236
|
+
if (canvas) return canvas;
|
|
29237
|
+
}
|
|
29238
|
+
return null;
|
|
29239
|
+
}
|
|
29240
|
+
function getCanvasSize(domref, width, height) {
|
|
29241
|
+
const resolvedWidth = null != width ? width : null == domref ? void 0 : domref.width,
|
|
29242
|
+
resolvedHeight = null != height ? height : null == domref ? void 0 : domref.height;
|
|
29243
|
+
if (!isValidCoordinate(resolvedWidth) || !isValidCoordinate(resolvedHeight)) throw new Error(LYNX_CANVAS_SIZE_ERROR);
|
|
29244
|
+
return {
|
|
29245
|
+
width: resolvedWidth,
|
|
29246
|
+
height: resolvedHeight
|
|
29247
|
+
};
|
|
29248
|
+
}
|
|
29249
|
+
function wrapLynxNativeCanvas(nativeCanvas, id, width, height, dpr) {
|
|
29250
|
+
nativeCanvas.width = width * dpr, nativeCanvas.height = height * dpr;
|
|
29251
|
+
const ctx = nativeCanvas.getContext("2d");
|
|
29252
|
+
return new CanvasWrapEnableWH(nativeCanvas, ctx, dpr, width, height, id);
|
|
29253
|
+
}
|
|
29254
|
+
function createLynxNativeCanvas(id, width, height, dpr, offscreen, params, runtime) {
|
|
29255
|
+
if (params.canvasFactory) return params.canvasFactory({
|
|
29256
|
+
id: id,
|
|
29257
|
+
width: width,
|
|
29258
|
+
height: height,
|
|
29259
|
+
dpr: dpr,
|
|
29260
|
+
offscreen: offscreen
|
|
29261
|
+
});
|
|
29262
|
+
if (offscreen) {
|
|
29263
|
+
if ("function" == typeof (null == runtime ? void 0 : runtime.createOffscreenCanvas)) return runtime.createOffscreenCanvas();
|
|
29264
|
+
} else {
|
|
29265
|
+
const canvas = createBoundLynxCanvas(id, runtime);
|
|
29266
|
+
if (canvas) return canvas;
|
|
29267
|
+
}
|
|
29268
|
+
throw new Error(LYNX_CANVAS_BRIDGE_ERROR);
|
|
29269
|
+
}
|
|
29270
|
+
function makeUpCanvas$3(params = {}, canvasMap, freeCanvasList) {
|
|
29271
|
+
const runtime = getLynxRuntime(params),
|
|
29272
|
+
{
|
|
29273
|
+
domref: domref,
|
|
29274
|
+
canvasIdLists = [],
|
|
29275
|
+
freeCanvasIdx = 0
|
|
29276
|
+
} = params,
|
|
29277
|
+
offscreen = !!params.offscreen,
|
|
29278
|
+
dpr = getLynxPixelRatio(params, runtime);
|
|
29130
29279
|
if (canvasIdLists.forEach((id, i) => {
|
|
29131
|
-
|
|
29132
|
-
|
|
29133
|
-
const ctx = _canvas.getContext("2d"),
|
|
29134
|
-
canvas = new CanvasWrapEnableWH(_canvas, ctx, dpr, domref.width, domref.height, id);
|
|
29280
|
+
const size = getCanvasSize(domref),
|
|
29281
|
+
canvas = wrapLynxNativeCanvas(createLynxNativeCanvas(id, size.width, size.height, dpr, offscreen, params, runtime), id, size.width, size.height, dpr);
|
|
29135
29282
|
canvasMap.set(id, canvas), i > freeCanvasIdx && freeCanvasList.push(canvas);
|
|
29136
|
-
}), !freeCanvasList.length &&
|
|
29137
|
-
const
|
|
29138
|
-
|
|
29283
|
+
}), !freeCanvasList.length && domref && "function" == typeof (null == runtime ? void 0 : runtime.createOffscreenCanvas)) {
|
|
29284
|
+
const size = getCanvasSize(domref),
|
|
29285
|
+
_canvas = runtime.createOffscreenCanvas();
|
|
29286
|
+
_canvas.width = size.width * dpr, _canvas.height = size.height * dpr;
|
|
29139
29287
|
const ctx = _canvas.getContext("2d"),
|
|
29140
29288
|
id = Math.random().toString(),
|
|
29141
|
-
canvas = new CanvasWrapEnableWH(_canvas, ctx, dpr,
|
|
29289
|
+
canvas = new CanvasWrapEnableWH(_canvas, ctx, dpr, size.width, size.height, id);
|
|
29142
29290
|
canvasMap.set(id, canvas), freeCanvasList.push(canvas);
|
|
29143
29291
|
}
|
|
29144
29292
|
}
|
|
29145
|
-
function createImageElement(src, isSvg = !1) {
|
|
29293
|
+
function createImageElement(src, isSvg = !1, runtime = getGlobalLynxRuntime()) {
|
|
29146
29294
|
if (isSvg) return Promise.reject();
|
|
29147
|
-
|
|
29295
|
+
if ("function" != typeof (null == runtime ? void 0 : runtime.createImage)) return Promise.reject(new Error("Lynx image bridge is unavailable."));
|
|
29296
|
+
const img = runtime.createImage(src);
|
|
29148
29297
|
return new Promise((resolve, reject) => {
|
|
29149
29298
|
img.onload = () => {
|
|
29150
29299
|
resolve(img);
|
|
@@ -29163,8 +29312,8 @@ class LynxEnvContribution extends BaseEnvContribution {
|
|
|
29163
29312
|
}
|
|
29164
29313
|
this.applyStyles = !0;
|
|
29165
29314
|
}
|
|
29166
|
-
configure(service, params) {
|
|
29167
|
-
service.env === this.type && (service.setActiveEnvContribution(this),
|
|
29315
|
+
configure(service, params = {}) {
|
|
29316
|
+
service.env === this.type && (service.setActiveEnvContribution(this), this.lynxEnvParams = params, this.lynxRuntime = getLynxRuntime(params), makeUpCanvas$3(params, this.canvasMap, this.freeCanvasList));
|
|
29168
29317
|
}
|
|
29169
29318
|
getDynamicCanvasCount() {
|
|
29170
29319
|
return this.freeCanvasList.length;
|
|
@@ -29173,7 +29322,7 @@ class LynxEnvContribution extends BaseEnvContribution {
|
|
|
29173
29322
|
return 9999;
|
|
29174
29323
|
}
|
|
29175
29324
|
loadImage(url) {
|
|
29176
|
-
return createImageElement(url, !1).then(img => ({
|
|
29325
|
+
return createImageElement(url, !1, this.lynxRuntime).then(img => ({
|
|
29177
29326
|
data: img,
|
|
29178
29327
|
loadState: "success"
|
|
29179
29328
|
})).catch(() => ({
|
|
@@ -29182,16 +29331,38 @@ class LynxEnvContribution extends BaseEnvContribution {
|
|
|
29182
29331
|
}));
|
|
29183
29332
|
}
|
|
29184
29333
|
loadSvg(url) {
|
|
29185
|
-
return Promise.
|
|
29334
|
+
return Promise.resolve({
|
|
29335
|
+
data: null,
|
|
29336
|
+
loadState: "fail"
|
|
29337
|
+
});
|
|
29186
29338
|
}
|
|
29187
29339
|
createCanvas(params) {
|
|
29340
|
+
var _a, _b, _c, _d;
|
|
29341
|
+
if (null != params.id) {
|
|
29342
|
+
const id = String(params.id),
|
|
29343
|
+
existing = this.canvasMap.get(id);
|
|
29344
|
+
if (existing) return existing;
|
|
29345
|
+
const envParams = null !== (_a = this.lynxEnvParams) && void 0 !== _a ? _a : {},
|
|
29346
|
+
runtime = getLynxRuntime(envParams),
|
|
29347
|
+
dpr = null !== (_b = params.dpr) && void 0 !== _b ? _b : getLynxPixelRatio(envParams, runtime),
|
|
29348
|
+
size = getCanvasSize(envParams.domref, params.width, params.height),
|
|
29349
|
+
canvas = wrapLynxNativeCanvas(createLynxNativeCanvas(id, size.width, size.height, dpr, !1, envParams, runtime), id, size.width, size.height, dpr);
|
|
29350
|
+
return this.canvasMap.set(id, canvas), canvas;
|
|
29351
|
+
}
|
|
29188
29352
|
const result = this.freeCanvasList[this.canvasIdx] || this.freeCanvasList[this.freeCanvasList.length - 1];
|
|
29189
|
-
|
|
29353
|
+
if (this.canvasIdx++, result) return result;
|
|
29354
|
+
const envParams = null !== (_c = this.lynxEnvParams) && void 0 !== _c ? _c : {},
|
|
29355
|
+
runtime = getLynxRuntime(envParams),
|
|
29356
|
+
dpr = null !== (_d = params.dpr) && void 0 !== _d ? _d : getLynxPixelRatio(envParams, runtime),
|
|
29357
|
+
size = getCanvasSize(envParams.domref, params.width, params.height),
|
|
29358
|
+
id = Math.random().toString(),
|
|
29359
|
+
canvas = wrapLynxNativeCanvas(createLynxNativeCanvas(id, size.width, size.height, dpr, !0, envParams, runtime), id, size.width, size.height, dpr);
|
|
29360
|
+
return this.canvasMap.set(id, canvas), this.freeCanvasList.push(canvas), canvas;
|
|
29190
29361
|
}
|
|
29191
29362
|
createOffscreenCanvas(params) {}
|
|
29192
29363
|
releaseCanvas(canvas) {}
|
|
29193
29364
|
getDevicePixelRatio() {
|
|
29194
|
-
return
|
|
29365
|
+
return getLynxPixelRatio(void 0, this.lynxRuntime);
|
|
29195
29366
|
}
|
|
29196
29367
|
getRequestAnimationFrame() {
|
|
29197
29368
|
return function (callback) {
|
|
@@ -29205,7 +29376,7 @@ class LynxEnvContribution extends BaseEnvContribution {
|
|
|
29205
29376
|
}
|
|
29206
29377
|
mapToCanvasPoint(event) {
|
|
29207
29378
|
var _a;
|
|
29208
|
-
return null
|
|
29379
|
+
return null !== (_a = getLynxEventPoint(event)) && void 0 !== _a ? _a : event;
|
|
29209
29380
|
}
|
|
29210
29381
|
addEventListener(type, listener, options) {
|
|
29211
29382
|
return null;
|
|
@@ -29962,6 +30133,16 @@ class MiniAppEventManager {
|
|
|
29962
30133
|
this.cache = {};
|
|
29963
30134
|
}
|
|
29964
30135
|
}
|
|
30136
|
+
function setMiniAppEventTarget(event, key, value) {
|
|
30137
|
+
if (event && value) try {
|
|
30138
|
+
event[key] = value;
|
|
30139
|
+
} catch (_a) {
|
|
30140
|
+
Object.defineProperty(event, key, {
|
|
30141
|
+
configurable: !0,
|
|
30142
|
+
value: value
|
|
30143
|
+
});
|
|
30144
|
+
}
|
|
30145
|
+
}
|
|
29965
30146
|
class WxWindowHandlerContribution extends BaseWindowHandlerContribution {
|
|
29966
30147
|
get container() {
|
|
29967
30148
|
return null;
|
|
@@ -30043,13 +30224,15 @@ class WxWindowHandlerContribution extends BaseWindowHandlerContribution {
|
|
|
30043
30224
|
this.eventManager.removeEventListener(type, listener);
|
|
30044
30225
|
}
|
|
30045
30226
|
dispatchEvent(event) {
|
|
30046
|
-
var _a, _b, _c, _d;
|
|
30227
|
+
var _a, _b, _c, _d, _e;
|
|
30047
30228
|
const {
|
|
30048
30229
|
type: type
|
|
30049
30230
|
} = event;
|
|
30050
|
-
|
|
30231
|
+
if (!this.eventManager.cache[type]) return !1;
|
|
30232
|
+
const nativeCanvas = null === (_a = this.canvas) || void 0 === _a ? void 0 : _a.nativeCanvas;
|
|
30233
|
+
return setMiniAppEventTarget(event, "target", nativeCanvas), setMiniAppEventTarget(event, "currentTarget", nativeCanvas), event.changedTouches && event.changedTouches[0] && (event.offsetX = event.changedTouches[0].x, event.changedTouches[0].offsetX = null !== (_b = event.changedTouches[0].x) && void 0 !== _b ? _b : event.changedTouches[0].pageX, event.changedTouches[0].clientX = null !== (_c = event.changedTouches[0].x) && void 0 !== _c ? _c : event.changedTouches[0].pageX, event.offsetY = event.changedTouches[0].y, event.changedTouches[0].offsetY = null !== (_d = event.changedTouches[0].y) && void 0 !== _d ? _d : event.changedTouches[0].pageY, event.changedTouches[0].clientY = null !== (_e = event.changedTouches[0].y) && void 0 !== _e ? _e : event.changedTouches[0].pageY), event.preventDefault = () => {}, event.stopPropagation = () => {}, this.eventManager.cache[type].listener && this.eventManager.cache[type].listener.forEach(f => {
|
|
30051
30234
|
f(event);
|
|
30052
|
-
}), !0
|
|
30235
|
+
}), !0;
|
|
30053
30236
|
}
|
|
30054
30237
|
getStyle() {
|
|
30055
30238
|
return {};
|
|
@@ -30147,7 +30330,10 @@ class WxEnvContribution extends BaseEnvContribution {
|
|
|
30147
30330
|
});
|
|
30148
30331
|
}
|
|
30149
30332
|
loadSvg(url) {
|
|
30150
|
-
return Promise.
|
|
30333
|
+
return Promise.resolve({
|
|
30334
|
+
data: null,
|
|
30335
|
+
loadState: "fail"
|
|
30336
|
+
});
|
|
30151
30337
|
}
|
|
30152
30338
|
createCanvas(params) {
|
|
30153
30339
|
const result = this.freeCanvasList[this.canvasIdx] || this.freeCanvasList[this.freeCanvasList.length - 1];
|
|
@@ -53160,15 +53346,16 @@ const delayMap = {
|
|
|
53160
53346
|
loadBrushComponent();
|
|
53161
53347
|
class Brush extends AbstractComponent {
|
|
53162
53348
|
constructor(attributes, options) {
|
|
53163
|
-
super((null == options ? void 0 : options.skipDefault) ? attributes : merge({}, Brush.defaultAttributes, attributes)), this.name = "brush", this._activeBrushState = !1, this._activeDrawState = !1, this._cacheDrawPoints = [], this._activeMoveState = !1, this._operatingMaskMoveDx = 0, this._operatingMaskMoveDy = 0, this._operatingMaskMoveRangeX = [-1 / 0, 1 / 0], this._operatingMaskMoveRangeY = [-1 / 0, 1 / 0], this._brushMaskAABBBoundsDict = {}, this._firstUpdate = !0, this._onBrushStart = e => {
|
|
53349
|
+
super((null == options ? void 0 : options.skipDefault) ? attributes : merge({}, Brush.defaultAttributes, attributes)), this.name = "brush", this._activeBrushState = !1, this._activeDrawState = !1, this._cacheDrawPoints = [], this._activeMoveState = !1, this._operatingMaskMoveDx = 0, this._operatingMaskMoveDy = 0, this._operatingMaskMoveRangeX = [-1 / 0, 1 / 0], this._operatingMaskMoveRangeY = [-1 / 0, 1 / 0], this._brushEventStage = null, this._brushMaskAABBBoundsDict = {}, this._firstUpdate = !0, this._onBrushStart = e => {
|
|
53164
53350
|
if (!1 === this.attribute.interactive) return;
|
|
53165
53351
|
if (!1 === this._beforeBrushEvent(e)) return;
|
|
53166
53352
|
const {
|
|
53167
|
-
|
|
53168
|
-
|
|
53169
|
-
|
|
53170
|
-
|
|
53171
|
-
|
|
53353
|
+
updateTrigger = DEFAULT_BRUSH_ATTRIBUTES.updateTrigger,
|
|
53354
|
+
endTrigger = DEFAULT_BRUSH_ATTRIBUTES.endTrigger,
|
|
53355
|
+
brushMoved = !0
|
|
53356
|
+
} = this.attribute,
|
|
53357
|
+
stage = this.stage;
|
|
53358
|
+
stage && (array(updateTrigger).forEach(t => stage.addEventListener(t, this._onBrushingWithDelay)), array(endTrigger).forEach(t => stage.addEventListener(t, this._onBrushEnd)), e.stopPropagation(), this._firstUpdate = !0, this._activeMoveState = brushMoved && this._isPosInBrushMask(e), this._activeDrawState = !this._activeMoveState, this._startPos = this.eventPosToStagePos(e), this._cacheDrawPoints = [this._startPos]);
|
|
53172
53359
|
}, this._onBrushing = e => {
|
|
53173
53360
|
!1 !== this.attribute.interactive && !1 !== this._beforeBrushEvent(e) && (this._outOfInteractiveRange(e) || (e.stopPropagation(), this._firstUpdate ? (this._activeDrawState && this._initDraw(e), this._activeMoveState && this._initMove(e), this._firstUpdate = !1) : (this._activeDrawState && this._drawing(e), this._activeMoveState && this._moving(e))));
|
|
53174
53361
|
}, this._onBrushingWithDelay = 0 === this.attribute.delayTime ? this._onBrushing : delayMap[this.attribute.delayType](this._onBrushing, this.attribute.delayTime), this._onBrushEnd = e => {
|
|
@@ -53179,11 +53366,14 @@ class Brush extends AbstractComponent {
|
|
|
53179
53366
|
}
|
|
53180
53367
|
_bindBrushEvents() {
|
|
53181
53368
|
if (this.releaseBrushEvents(), this.attribute.disableTriggerEvent) return;
|
|
53369
|
+
const stage = this.stage;
|
|
53370
|
+
if (!stage) return;
|
|
53371
|
+
this._brushEventStage = stage;
|
|
53182
53372
|
const {
|
|
53183
53373
|
trigger = DEFAULT_BRUSH_ATTRIBUTES.trigger,
|
|
53184
53374
|
resetTrigger = DEFAULT_BRUSH_ATTRIBUTES.resetTrigger
|
|
53185
53375
|
} = this.attribute;
|
|
53186
|
-
array(trigger).forEach(t =>
|
|
53376
|
+
array(trigger).forEach(t => stage.addEventListener(t, this._onBrushStart)), array(resetTrigger).forEach(t => stage.addEventListener(t, this._onBrushClear));
|
|
53187
53377
|
}
|
|
53188
53378
|
_initDraw(e) {
|
|
53189
53379
|
if (!1 === this.attribute.interactive) return;
|
|
@@ -53284,19 +53474,30 @@ class Brush extends AbstractComponent {
|
|
|
53284
53474
|
const group = this.createOrUpdateChild("brush-container", {}, "group");
|
|
53285
53475
|
this._container = group;
|
|
53286
53476
|
}
|
|
53477
|
+
setStage(stage, layer) {
|
|
53478
|
+
this._brushEventStage && this._brushEventStage !== stage && this.releaseBrushEvents(), super.setStage(stage, layer);
|
|
53479
|
+
}
|
|
53480
|
+
release(all) {
|
|
53481
|
+
this.releaseBrushEvents(), super.release(all);
|
|
53482
|
+
}
|
|
53287
53483
|
releaseBrushEvents() {
|
|
53484
|
+
var _a;
|
|
53485
|
+
const stage = null !== (_a = this._brushEventStage) && void 0 !== _a ? _a : this.stage;
|
|
53486
|
+
if (!stage) return;
|
|
53288
53487
|
const {
|
|
53289
53488
|
trigger = DEFAULT_BRUSH_ATTRIBUTES.trigger,
|
|
53290
53489
|
resetTrigger = DEFAULT_BRUSH_ATTRIBUTES.resetTrigger
|
|
53291
53490
|
} = this.attribute;
|
|
53292
|
-
array(trigger).forEach(t =>
|
|
53491
|
+
array(trigger).forEach(t => stage.removeEventListener(t, this._onBrushStart)), array(resetTrigger).forEach(t => stage.removeEventListener(t, this._onBrushClear)), this._releaseBrushUpdateEvents(stage), this._brushEventStage = null;
|
|
53293
53492
|
}
|
|
53294
|
-
_releaseBrushUpdateEvents() {
|
|
53493
|
+
_releaseBrushUpdateEvents(stage) {
|
|
53494
|
+
var _a;
|
|
53495
|
+
if (void 0 === stage && (stage = null !== (_a = this._brushEventStage) && void 0 !== _a ? _a : this.stage), !stage) return;
|
|
53295
53496
|
const {
|
|
53296
53497
|
updateTrigger = DEFAULT_BRUSH_ATTRIBUTES.updateTrigger,
|
|
53297
53498
|
endTrigger = DEFAULT_BRUSH_ATTRIBUTES.endTrigger
|
|
53298
53499
|
} = this.attribute;
|
|
53299
|
-
array(updateTrigger).forEach(t =>
|
|
53500
|
+
array(updateTrigger).forEach(t => stage.removeEventListener(t, this._onBrushingWithDelay)), array(endTrigger).forEach(t => stage.removeEventListener(t, this._onBrushEnd));
|
|
53300
53501
|
}
|
|
53301
53502
|
_computeMaskPoints() {
|
|
53302
53503
|
const {
|
|
@@ -55757,6 +55958,141 @@ function createNodeVRenderApp(options = {}) {
|
|
|
55757
55958
|
return bootstrapVRenderNodeApp(createNodeApp(entryOptions), envParams);
|
|
55758
55959
|
}
|
|
55759
55960
|
|
|
55961
|
+
const SHARED_APP_REGISTRY_KEY = Symbol.for('visactor.vrender.sharedAppRegistry');
|
|
55962
|
+
const DEFAULT_SHARED_APP_KEY = 'default';
|
|
55963
|
+
function getSharedAppRegistry() {
|
|
55964
|
+
var _a;
|
|
55965
|
+
const target = globalThis;
|
|
55966
|
+
const registry = (_a = target[SHARED_APP_REGISTRY_KEY]) !== null && _a !== void 0 ? _a : new Map();
|
|
55967
|
+
target[SHARED_APP_REGISTRY_KEY] = registry;
|
|
55968
|
+
return registry;
|
|
55969
|
+
}
|
|
55970
|
+
function getSharedAppEnvRegistry(env, create) {
|
|
55971
|
+
const registry = getSharedAppRegistry();
|
|
55972
|
+
const envRegistry = registry.get(env);
|
|
55973
|
+
if (envRegistry || !create) {
|
|
55974
|
+
return envRegistry;
|
|
55975
|
+
}
|
|
55976
|
+
const nextEnvRegistry = new Map();
|
|
55977
|
+
registry.set(env, nextEnvRegistry);
|
|
55978
|
+
return nextEnvRegistry;
|
|
55979
|
+
}
|
|
55980
|
+
function getOrCreateSharedAppEnvRegistry(env) {
|
|
55981
|
+
return getSharedAppEnvRegistry(env, true);
|
|
55982
|
+
}
|
|
55983
|
+
function removeSharedAppRecord(env, key, record) {
|
|
55984
|
+
const registry = getSharedAppRegistry();
|
|
55985
|
+
const envRegistry = registry.get(env);
|
|
55986
|
+
if ((envRegistry === null || envRegistry === void 0 ? void 0 : envRegistry.get(key)) === record) {
|
|
55987
|
+
envRegistry.delete(key);
|
|
55988
|
+
if (!envRegistry.size) {
|
|
55989
|
+
registry.delete(env);
|
|
55990
|
+
}
|
|
55991
|
+
}
|
|
55992
|
+
}
|
|
55993
|
+
function releaseSharedAppRecord(env, key, record) {
|
|
55994
|
+
if (record.released) {
|
|
55995
|
+
return;
|
|
55996
|
+
}
|
|
55997
|
+
record.released = true;
|
|
55998
|
+
record.refCount = 0;
|
|
55999
|
+
removeSharedAppRecord(env, key, record);
|
|
56000
|
+
record.releaseApp();
|
|
56001
|
+
}
|
|
56002
|
+
function createAppForSharedEnv(options) {
|
|
56003
|
+
const { env } = options;
|
|
56004
|
+
const entryOptions = Object.assign({}, options);
|
|
56005
|
+
delete entryOptions.env;
|
|
56006
|
+
delete entryOptions.key;
|
|
56007
|
+
if (env === 'browser') {
|
|
56008
|
+
return createBrowserVRenderApp(entryOptions);
|
|
56009
|
+
}
|
|
56010
|
+
if (env === 'node') {
|
|
56011
|
+
return createNodeVRenderApp(entryOptions);
|
|
56012
|
+
}
|
|
56013
|
+
if (env === 'taro') {
|
|
56014
|
+
return createTaroVRenderApp(entryOptions);
|
|
56015
|
+
}
|
|
56016
|
+
if (env === 'feishu') {
|
|
56017
|
+
return createFeishuVRenderApp(entryOptions);
|
|
56018
|
+
}
|
|
56019
|
+
if (env === 'tt') {
|
|
56020
|
+
return createTTVRenderApp(entryOptions);
|
|
56021
|
+
}
|
|
56022
|
+
if (env === 'wx') {
|
|
56023
|
+
return createWxVRenderApp(entryOptions);
|
|
56024
|
+
}
|
|
56025
|
+
if (env === 'lynx') {
|
|
56026
|
+
return createLynxVRenderApp(entryOptions);
|
|
56027
|
+
}
|
|
56028
|
+
return createHarmonyVRenderApp(entryOptions);
|
|
56029
|
+
}
|
|
56030
|
+
function createSharedAppRecord(env, key, options) {
|
|
56031
|
+
const app = createAppForSharedEnv(options);
|
|
56032
|
+
const originalRelease = app.release.bind(app);
|
|
56033
|
+
const record = {
|
|
56034
|
+
app,
|
|
56035
|
+
refCount: 0,
|
|
56036
|
+
released: false,
|
|
56037
|
+
releaseApp: originalRelease
|
|
56038
|
+
};
|
|
56039
|
+
app.release = () => releaseSharedAppRecord(env, key, record);
|
|
56040
|
+
return record;
|
|
56041
|
+
}
|
|
56042
|
+
function createSharedAppHandle(env, key, record) {
|
|
56043
|
+
let released = false;
|
|
56044
|
+
return {
|
|
56045
|
+
app: record.app,
|
|
56046
|
+
env,
|
|
56047
|
+
key,
|
|
56048
|
+
release() {
|
|
56049
|
+
if (released) {
|
|
56050
|
+
return;
|
|
56051
|
+
}
|
|
56052
|
+
released = true;
|
|
56053
|
+
const envRegistry = getSharedAppEnvRegistry(env, false);
|
|
56054
|
+
if ((envRegistry === null || envRegistry === void 0 ? void 0 : envRegistry.get(key)) !== record || record.released) {
|
|
56055
|
+
return;
|
|
56056
|
+
}
|
|
56057
|
+
record.refCount -= 1;
|
|
56058
|
+
if (record.refCount <= 0) {
|
|
56059
|
+
releaseSharedAppRecord(env, key, record);
|
|
56060
|
+
}
|
|
56061
|
+
}
|
|
56062
|
+
};
|
|
56063
|
+
}
|
|
56064
|
+
function acquireSharedVRenderApp(options) {
|
|
56065
|
+
var _a;
|
|
56066
|
+
const key = (_a = options.key) !== null && _a !== void 0 ? _a : DEFAULT_SHARED_APP_KEY;
|
|
56067
|
+
const envRegistry = getOrCreateSharedAppEnvRegistry(options.env);
|
|
56068
|
+
let record = envRegistry.get(key);
|
|
56069
|
+
if (record === null || record === void 0 ? void 0 : record.app.released) {
|
|
56070
|
+
releaseSharedAppRecord(options.env, key, record);
|
|
56071
|
+
record = undefined;
|
|
56072
|
+
}
|
|
56073
|
+
if (!record) {
|
|
56074
|
+
record = createSharedAppRecord(options.env, key, options);
|
|
56075
|
+
envRegistry.set(key, record);
|
|
56076
|
+
}
|
|
56077
|
+
record.refCount += 1;
|
|
56078
|
+
return createSharedAppHandle(options.env, key, record);
|
|
56079
|
+
}
|
|
56080
|
+
function getSharedVRenderApp(env, key = DEFAULT_SHARED_APP_KEY) {
|
|
56081
|
+
var _a;
|
|
56082
|
+
const record = (_a = getSharedAppEnvRegistry(env, false)) === null || _a === void 0 ? void 0 : _a.get(key);
|
|
56083
|
+
if (!record || record.released || record.app.released) {
|
|
56084
|
+
return null;
|
|
56085
|
+
}
|
|
56086
|
+
return record.app;
|
|
56087
|
+
}
|
|
56088
|
+
function releaseSharedVRenderApp(env, key = DEFAULT_SHARED_APP_KEY) {
|
|
56089
|
+
var _a;
|
|
56090
|
+
const record = (_a = getSharedAppEnvRegistry(env, false)) === null || _a === void 0 ? void 0 : _a.get(key);
|
|
56091
|
+
if (record) {
|
|
56092
|
+
releaseSharedAppRecord(env, key, record);
|
|
56093
|
+
}
|
|
56094
|
+
}
|
|
56095
|
+
|
|
55760
56096
|
let browserApp;
|
|
55761
56097
|
let nodeApp;
|
|
55762
56098
|
function resolveLegacyApp() {
|
|
@@ -55771,6 +56107,6 @@ function createStage(params) {
|
|
|
55771
56107
|
return resolveLegacyApp().createStage(params);
|
|
55772
56108
|
}
|
|
55773
56109
|
|
|
55774
|
-
const version = "1.1.0-alpha.
|
|
56110
|
+
const version = "1.1.0-alpha.22";
|
|
55775
56111
|
|
|
55776
|
-
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, 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, 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, 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 };
|
|
56112
|
+
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 };
|