@visactor/vrender 1.1.0-alpha.26 → 1.1.0-alpha.28
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 +226 -216
- package/dist/index.js +226 -216
- 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/cjs/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Direction } from '@visactor/vrender-core';
|
|
2
|
-
export declare const version = "1.1.0-alpha.
|
|
2
|
+
export declare const version = "1.1.0-alpha.28";
|
|
3
3
|
export * from '@visactor/vrender-core';
|
|
4
4
|
export * from '@visactor/vrender-kits';
|
|
5
5
|
export * from '@visactor/vrender-animate';
|
package/cjs/index.js
CHANGED
|
@@ -26,7 +26,7 @@ Object.defineProperty(exports, "Direction", {
|
|
|
26
26
|
get: function() {
|
|
27
27
|
return vrender_core_1.Direction;
|
|
28
28
|
}
|
|
29
|
-
}), exports.version = "1.1.0-alpha.
|
|
29
|
+
}), exports.version = "1.1.0-alpha.28", __exportStar(require("@visactor/vrender-core"), exports),
|
|
30
30
|
__exportStar(require("@visactor/vrender-kits"), exports), __exportStar(require("@visactor/vrender-animate"), exports),
|
|
31
31
|
__exportStar(require("@visactor/vrender-components"), exports), __exportStar(require("./entries"), exports);
|
|
32
32
|
|
package/cjs/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,yDAAmD;AAa1C,0FAbA,wBAAS,OAaA;AAXL,QAAA,OAAO,GAAG,gBAAgB,CAAC;AAExC,yDAAuC;AACvC,yDAAuC;AACvC,4DAA0C;AAC1C,+DAA6C;AAC7C,4CAA0B;AAC1B,mCAAuC;AAA9B,qGAAA,WAAW,OAAA;AAGpB,6DAAkD;AAAzC,wGAAA,KAAK,OAAA","file":"index.js","sourcesContent":["import { Direction } from '@visactor/vrender-core';\n// 导出版本号\nexport const version = \"1.1.0-alpha.
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,yDAAmD;AAa1C,0FAbA,wBAAS,OAaA;AAXL,QAAA,OAAO,GAAG,gBAAgB,CAAC;AAExC,yDAAuC;AACvC,yDAAuC;AACvC,4DAA0C;AAC1C,+DAA6C;AAC7C,4CAA0B;AAC1B,mCAAuC;AAA9B,qGAAA,WAAW,OAAA;AAGpB,6DAAkD;AAAzC,wGAAA,KAAK,OAAA","file":"index.js","sourcesContent":["import { Direction } from '@visactor/vrender-core';\n// 导出版本号\nexport const version = \"1.1.0-alpha.28\";\n\nexport * from '@visactor/vrender-core';\nexport * from '@visactor/vrender-kits';\nexport * from '@visactor/vrender-animate';\nexport * from '@visactor/vrender-components';\nexport * from './entries';\nexport { createStage } from './legacy';\n\n// avoid naming conflicts with 'State' & 'Direction' in '@visactor/vrender-components'\nexport { State } from '@visactor/vrender-animate';\nexport { Direction };\n"]}
|
package/dist/index.es.js
CHANGED
|
@@ -6094,6 +6094,179 @@ const builtInSymbolStrMap = {
|
|
|
6094
6094
|
roundLine: "M 1.2392 -0.258 L -1.3432 -0.258 C -1.4784 -0.258 -1.588 -0.1436 -1.588 -0.002 c 0 0.1416 0.1096 0.256 0.2448 0.256 l 2.5824 0 c 0.1352 0 0.2448 -0.1144 0.2448 -0.256 C 1.484 -0.1436 1.3744 -0.258 1.2392 -0.258 z"
|
|
6095
6095
|
};
|
|
6096
6096
|
|
|
6097
|
+
function getAllMatches(string, regex) {
|
|
6098
|
+
const matches = [];
|
|
6099
|
+
let match = regex.exec(string);
|
|
6100
|
+
for (; match;) {
|
|
6101
|
+
const allmatches = [];
|
|
6102
|
+
allmatches.startIndex = regex.lastIndex - match[0].length;
|
|
6103
|
+
const len = match.length;
|
|
6104
|
+
for (let index = 0; index < len; index++) allmatches.push(match[index]);
|
|
6105
|
+
matches.push(allmatches), match = regex.exec(string);
|
|
6106
|
+
}
|
|
6107
|
+
return matches;
|
|
6108
|
+
}
|
|
6109
|
+
|
|
6110
|
+
class XmlNode {
|
|
6111
|
+
constructor(tagname) {
|
|
6112
|
+
this.tagname = tagname, this.child = [], this[":@"] = {};
|
|
6113
|
+
}
|
|
6114
|
+
add(key, val) {
|
|
6115
|
+
"__proto__" === key && (key = "#__proto__"), this.child.push({
|
|
6116
|
+
[key]: val
|
|
6117
|
+
});
|
|
6118
|
+
}
|
|
6119
|
+
addChild(node) {
|
|
6120
|
+
"__proto__" === node.tagname && (node.tagname = "#__proto__"), node[":@"] && Object.keys(node[":@"]).length > 0 ? this.child.push({
|
|
6121
|
+
[node.tagname]: node.child,
|
|
6122
|
+
":@": node[":@"]
|
|
6123
|
+
}) : this.child.push({
|
|
6124
|
+
[node.tagname]: node.child
|
|
6125
|
+
});
|
|
6126
|
+
}
|
|
6127
|
+
}
|
|
6128
|
+
function findClosingIndex(xmlData, str, i, errMsg) {
|
|
6129
|
+
const closingIndex = xmlData.indexOf(str, i);
|
|
6130
|
+
if (-1 === closingIndex) throw new Error(errMsg);
|
|
6131
|
+
return closingIndex + str.length - 1;
|
|
6132
|
+
}
|
|
6133
|
+
function tagExpWithClosingIndex(xmlData, i, closingChar = ">") {
|
|
6134
|
+
let attrBoundary,
|
|
6135
|
+
tagExp = "";
|
|
6136
|
+
for (let index = i; index < xmlData.length; index++) {
|
|
6137
|
+
let ch = xmlData[index];
|
|
6138
|
+
if (attrBoundary) ch === attrBoundary && (attrBoundary = "");else if ('"' === ch || "'" === ch) attrBoundary = ch;else if (ch === closingChar[0]) {
|
|
6139
|
+
if (!closingChar[1]) return {
|
|
6140
|
+
data: tagExp,
|
|
6141
|
+
index: index
|
|
6142
|
+
};
|
|
6143
|
+
if (xmlData[index + 1] === closingChar[1]) return {
|
|
6144
|
+
data: tagExp,
|
|
6145
|
+
index: index
|
|
6146
|
+
};
|
|
6147
|
+
} else "\t" === ch && (ch = " ");
|
|
6148
|
+
tagExp += ch;
|
|
6149
|
+
}
|
|
6150
|
+
}
|
|
6151
|
+
function readTagExp(xmlData, i, removeNSPrefix, closingChar = ">") {
|
|
6152
|
+
const result = tagExpWithClosingIndex(xmlData, i + 1, closingChar);
|
|
6153
|
+
if (!result) return;
|
|
6154
|
+
let tagExp = result.data;
|
|
6155
|
+
const closeIndex = result.index,
|
|
6156
|
+
separatorIndex = tagExp.search(/\s/);
|
|
6157
|
+
let tagName = tagExp,
|
|
6158
|
+
attrExpPresent = !0;
|
|
6159
|
+
-1 !== separatorIndex && (tagName = tagExp.substr(0, separatorIndex).replace(/\s\s*$/, ""), tagExp = tagExp.substr(separatorIndex + 1));
|
|
6160
|
+
const rawTagName = tagName;
|
|
6161
|
+
if (removeNSPrefix) {
|
|
6162
|
+
const colonIndex = tagName.indexOf(":");
|
|
6163
|
+
-1 !== colonIndex && (tagName = tagName.substr(colonIndex + 1), attrExpPresent = tagName !== result.data.substr(colonIndex + 1));
|
|
6164
|
+
}
|
|
6165
|
+
return {
|
|
6166
|
+
tagName: tagName,
|
|
6167
|
+
tagExp: tagExp,
|
|
6168
|
+
closeIndex: closeIndex,
|
|
6169
|
+
attrExpPresent: attrExpPresent,
|
|
6170
|
+
rawTagName: rawTagName
|
|
6171
|
+
};
|
|
6172
|
+
}
|
|
6173
|
+
const attrsRegx = new RegExp("([^\\s=]+)\\s*(=\\s*(['\"])([\\s\\S]*?)\\3)?", "gm");
|
|
6174
|
+
class OrderedObjParser {
|
|
6175
|
+
constructor(options) {
|
|
6176
|
+
this.currentNode = null, this.options = options, this.tagsNodeStack = [], this.docTypeEntities = {};
|
|
6177
|
+
}
|
|
6178
|
+
addChild(currentNode, childNode, jPath) {
|
|
6179
|
+
const result = childNode.tagname;
|
|
6180
|
+
"string" == typeof result ? (childNode.tagname = result, currentNode.addChild(childNode)) : currentNode.addChild(childNode);
|
|
6181
|
+
}
|
|
6182
|
+
buildAttributesMap(attrStr, jPath, tagName) {
|
|
6183
|
+
const attrs = {};
|
|
6184
|
+
if (!attrStr) return;
|
|
6185
|
+
const matches = getAllMatches(attrStr, attrsRegx),
|
|
6186
|
+
len = matches.length;
|
|
6187
|
+
for (let i = 0; i < len; i++) {
|
|
6188
|
+
const attrName = matches[i][1],
|
|
6189
|
+
oldVal = matches[i][4],
|
|
6190
|
+
aName = attrName;
|
|
6191
|
+
attrName && (attrs[aName] = void 0 === oldVal || (isNaN(oldVal) ? oldVal : Number(oldVal)));
|
|
6192
|
+
}
|
|
6193
|
+
return attrs;
|
|
6194
|
+
}
|
|
6195
|
+
parseXml(xmlData) {
|
|
6196
|
+
xmlData = xmlData.replace(/\r\n?/g, "\n");
|
|
6197
|
+
const xmlObj = new XmlNode("!xml");
|
|
6198
|
+
let currentNode = xmlObj,
|
|
6199
|
+
textData = "",
|
|
6200
|
+
jPath = "";
|
|
6201
|
+
for (let i = 0; i < xmlData.length; i++) {
|
|
6202
|
+
if ("<" === xmlData[i]) {
|
|
6203
|
+
if ("/" === xmlData[i + 1]) {
|
|
6204
|
+
const closeIndex = findClosingIndex(xmlData, ">", i, "Closing Tag is not closed."),
|
|
6205
|
+
propIndex = jPath.lastIndexOf(".");
|
|
6206
|
+
jPath = jPath.substring(0, propIndex), currentNode = this.tagsNodeStack.pop(), currentNode && currentNode.child && textData && currentNode.child[currentNode.child.length - 1][":@"] && (currentNode.child[currentNode.child.length - 1][":@"].text = textData), textData = "", i = closeIndex;
|
|
6207
|
+
} else if ("?" === xmlData[i + 1]) {
|
|
6208
|
+
i = readTagExp(xmlData, i, !1, "?>").closeIndex + 1;
|
|
6209
|
+
} else if ("!--" === xmlData.substr(i + 1, 3)) {
|
|
6210
|
+
i = findClosingIndex(xmlData, "--\x3e", i + 4, "Comment is not closed.");
|
|
6211
|
+
} else {
|
|
6212
|
+
const result = readTagExp(xmlData, i, !1);
|
|
6213
|
+
let tagName = result.tagName,
|
|
6214
|
+
tagExp = result.tagExp;
|
|
6215
|
+
const attrExpPresent = result.attrExpPresent,
|
|
6216
|
+
closeIndex = result.closeIndex;
|
|
6217
|
+
if (tagName !== xmlObj.tagname && (jPath += jPath ? "." + tagName : tagName), tagExp.length > 0 && tagExp.lastIndexOf("/") === tagExp.length - 1) {
|
|
6218
|
+
"/" === tagName[tagName.length - 1] ? (tagName = tagName.substr(0, tagName.length - 1), jPath = jPath.substr(0, jPath.length - 1), tagExp = tagName) : tagExp = tagExp.substr(0, tagExp.length - 1);
|
|
6219
|
+
const childNode = new XmlNode(tagName);
|
|
6220
|
+
tagName !== tagExp && attrExpPresent && (childNode[":@"] = this.buildAttributesMap(tagExp, jPath, tagName)), this.addChild(currentNode, childNode, jPath), jPath = jPath.substr(0, jPath.lastIndexOf("."));
|
|
6221
|
+
} else {
|
|
6222
|
+
const childNode = new XmlNode(tagName);
|
|
6223
|
+
this.tagsNodeStack.push(currentNode), tagName !== tagExp && attrExpPresent && (childNode[":@"] = this.buildAttributesMap(tagExp, jPath, tagName)), this.addChild(currentNode, childNode, jPath), currentNode = childNode;
|
|
6224
|
+
}
|
|
6225
|
+
textData = "", i = closeIndex;
|
|
6226
|
+
}
|
|
6227
|
+
} else textData += xmlData[i];
|
|
6228
|
+
}
|
|
6229
|
+
return xmlObj.child;
|
|
6230
|
+
}
|
|
6231
|
+
}
|
|
6232
|
+
|
|
6233
|
+
function prettify(node, options) {
|
|
6234
|
+
return compress(node);
|
|
6235
|
+
}
|
|
6236
|
+
function compress(arr, jPath) {
|
|
6237
|
+
const compressedObj = {};
|
|
6238
|
+
for (let i = 0; i < arr.length; i++) {
|
|
6239
|
+
const tagObj = arr[i],
|
|
6240
|
+
property = propName(tagObj);
|
|
6241
|
+
if (void 0 !== property && tagObj[property]) {
|
|
6242
|
+
const val = compress(tagObj[property]);
|
|
6243
|
+
isLeafTag(val);
|
|
6244
|
+
tagObj[":@"] && assignAttributes(val, tagObj[":@"]), void 0 !== compressedObj[property] && compressedObj.hasOwnProperty(property) ? (Array.isArray(compressedObj[property]) || (compressedObj[property] = [compressedObj[property]]), compressedObj[property].push(val)) : compressedObj[property] = val;
|
|
6245
|
+
}
|
|
6246
|
+
}
|
|
6247
|
+
return compressedObj;
|
|
6248
|
+
}
|
|
6249
|
+
function propName(obj) {
|
|
6250
|
+
const keys = Object.keys(obj);
|
|
6251
|
+
for (let i = 0; i < keys.length; i++) {
|
|
6252
|
+
const key = keys[i];
|
|
6253
|
+
if (":@" !== key) return key;
|
|
6254
|
+
}
|
|
6255
|
+
}
|
|
6256
|
+
function assignAttributes(obj, attrMap, jpath) {
|
|
6257
|
+
if (attrMap) {
|
|
6258
|
+
const keys = Object.keys(attrMap),
|
|
6259
|
+
len = keys.length;
|
|
6260
|
+
for (let i = 0; i < len; i++) {
|
|
6261
|
+
const atrrName = keys[i];
|
|
6262
|
+
obj[atrrName] = attrMap[atrrName];
|
|
6263
|
+
}
|
|
6264
|
+
}
|
|
6265
|
+
}
|
|
6266
|
+
function isLeafTag(obj) {
|
|
6267
|
+
return 0 === Object.keys(obj).length;
|
|
6268
|
+
}
|
|
6269
|
+
|
|
6097
6270
|
function isSvg(str) {
|
|
6098
6271
|
return str.startsWith("<svg") || str.startsWith("<?xml");
|
|
6099
6272
|
}
|
|
@@ -6101,6 +6274,21 @@ function isXML(str) {
|
|
|
6101
6274
|
return str.startsWith("<");
|
|
6102
6275
|
}
|
|
6103
6276
|
|
|
6277
|
+
class XMLParser {
|
|
6278
|
+
constructor(options) {
|
|
6279
|
+
this.options = Object.assign({}, XMLParser.defaultOptions, options);
|
|
6280
|
+
}
|
|
6281
|
+
valid(xml) {
|
|
6282
|
+
return xml.startsWith("<");
|
|
6283
|
+
}
|
|
6284
|
+
parse(xmlData) {
|
|
6285
|
+
if (!this.valid) return !1;
|
|
6286
|
+
const orderedResult = new OrderedObjParser(this.options).parseXml(xmlData);
|
|
6287
|
+
return prettify(orderedResult, this.options);
|
|
6288
|
+
}
|
|
6289
|
+
}
|
|
6290
|
+
XMLParser.defaultOptions = {};
|
|
6291
|
+
|
|
6104
6292
|
var __awaiter$5 = undefined && undefined.__awaiter || function (thisArg, _arguments, P, generator) {
|
|
6105
6293
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
6106
6294
|
function fulfilled(value) {
|
|
@@ -6195,10 +6383,7 @@ function xul(str) {
|
|
|
6195
6383
|
config = [];
|
|
6196
6384
|
if (!xmlStr) return config;
|
|
6197
6385
|
if (!0 === isXML(xmlStr)) {
|
|
6198
|
-
const
|
|
6199
|
-
XMLParser: XMLParser
|
|
6200
|
-
} = require("../common/xml/parser"),
|
|
6201
|
-
data = new XMLParser().parse(xmlStr);
|
|
6386
|
+
const data = new XMLParser().parse(xmlStr);
|
|
6202
6387
|
data.tc && Object.keys(data.tc).forEach(k => {
|
|
6203
6388
|
"text" === k ? config.push(parseRTTextXML(data.tc[k])) : config.push(parseRTImageXML(data.tc[k]));
|
|
6204
6389
|
});
|
|
@@ -8637,10 +8822,7 @@ class Graphic extends Node {
|
|
|
8637
8822
|
if (path = Graphic.userSymbolMap[symbolType], path) return path;
|
|
8638
8823
|
const _symbolType = builtInSymbolStrMap[symbolType];
|
|
8639
8824
|
if (!0 === isSvg(symbolType = _symbolType || symbolType)) {
|
|
8640
|
-
const
|
|
8641
|
-
XMLParser: XMLParser
|
|
8642
|
-
} = require("../common/xml/parser"),
|
|
8643
|
-
parser = new XMLParser(),
|
|
8825
|
+
const parser = new XMLParser(),
|
|
8644
8826
|
{
|
|
8645
8827
|
svg: svg
|
|
8646
8828
|
} = parser.parse(symbolType);
|
|
@@ -21289,194 +21471,6 @@ class DefaultGraphicMemoryManager {
|
|
|
21289
21471
|
}
|
|
21290
21472
|
const defaultGraphicMemoryManager = new DefaultGraphicMemoryManager();
|
|
21291
21473
|
|
|
21292
|
-
function getAllMatches(string, regex) {
|
|
21293
|
-
const matches = [];
|
|
21294
|
-
let match = regex.exec(string);
|
|
21295
|
-
for (; match;) {
|
|
21296
|
-
const allmatches = [];
|
|
21297
|
-
allmatches.startIndex = regex.lastIndex - match[0].length;
|
|
21298
|
-
const len = match.length;
|
|
21299
|
-
for (let index = 0; index < len; index++) allmatches.push(match[index]);
|
|
21300
|
-
matches.push(allmatches), match = regex.exec(string);
|
|
21301
|
-
}
|
|
21302
|
-
return matches;
|
|
21303
|
-
}
|
|
21304
|
-
|
|
21305
|
-
class XmlNode {
|
|
21306
|
-
constructor(tagname) {
|
|
21307
|
-
this.tagname = tagname, this.child = [], this[":@"] = {};
|
|
21308
|
-
}
|
|
21309
|
-
add(key, val) {
|
|
21310
|
-
"__proto__" === key && (key = "#__proto__"), this.child.push({
|
|
21311
|
-
[key]: val
|
|
21312
|
-
});
|
|
21313
|
-
}
|
|
21314
|
-
addChild(node) {
|
|
21315
|
-
"__proto__" === node.tagname && (node.tagname = "#__proto__"), node[":@"] && Object.keys(node[":@"]).length > 0 ? this.child.push({
|
|
21316
|
-
[node.tagname]: node.child,
|
|
21317
|
-
":@": node[":@"]
|
|
21318
|
-
}) : this.child.push({
|
|
21319
|
-
[node.tagname]: node.child
|
|
21320
|
-
});
|
|
21321
|
-
}
|
|
21322
|
-
}
|
|
21323
|
-
function findClosingIndex(xmlData, str, i, errMsg) {
|
|
21324
|
-
const closingIndex = xmlData.indexOf(str, i);
|
|
21325
|
-
if (-1 === closingIndex) throw new Error(errMsg);
|
|
21326
|
-
return closingIndex + str.length - 1;
|
|
21327
|
-
}
|
|
21328
|
-
function tagExpWithClosingIndex(xmlData, i, closingChar = ">") {
|
|
21329
|
-
let attrBoundary,
|
|
21330
|
-
tagExp = "";
|
|
21331
|
-
for (let index = i; index < xmlData.length; index++) {
|
|
21332
|
-
let ch = xmlData[index];
|
|
21333
|
-
if (attrBoundary) ch === attrBoundary && (attrBoundary = "");else if ('"' === ch || "'" === ch) attrBoundary = ch;else if (ch === closingChar[0]) {
|
|
21334
|
-
if (!closingChar[1]) return {
|
|
21335
|
-
data: tagExp,
|
|
21336
|
-
index: index
|
|
21337
|
-
};
|
|
21338
|
-
if (xmlData[index + 1] === closingChar[1]) return {
|
|
21339
|
-
data: tagExp,
|
|
21340
|
-
index: index
|
|
21341
|
-
};
|
|
21342
|
-
} else "\t" === ch && (ch = " ");
|
|
21343
|
-
tagExp += ch;
|
|
21344
|
-
}
|
|
21345
|
-
}
|
|
21346
|
-
function readTagExp(xmlData, i, removeNSPrefix, closingChar = ">") {
|
|
21347
|
-
const result = tagExpWithClosingIndex(xmlData, i + 1, closingChar);
|
|
21348
|
-
if (!result) return;
|
|
21349
|
-
let tagExp = result.data;
|
|
21350
|
-
const closeIndex = result.index,
|
|
21351
|
-
separatorIndex = tagExp.search(/\s/);
|
|
21352
|
-
let tagName = tagExp,
|
|
21353
|
-
attrExpPresent = !0;
|
|
21354
|
-
-1 !== separatorIndex && (tagName = tagExp.substr(0, separatorIndex).replace(/\s\s*$/, ""), tagExp = tagExp.substr(separatorIndex + 1));
|
|
21355
|
-
const rawTagName = tagName;
|
|
21356
|
-
if (removeNSPrefix) {
|
|
21357
|
-
const colonIndex = tagName.indexOf(":");
|
|
21358
|
-
-1 !== colonIndex && (tagName = tagName.substr(colonIndex + 1), attrExpPresent = tagName !== result.data.substr(colonIndex + 1));
|
|
21359
|
-
}
|
|
21360
|
-
return {
|
|
21361
|
-
tagName: tagName,
|
|
21362
|
-
tagExp: tagExp,
|
|
21363
|
-
closeIndex: closeIndex,
|
|
21364
|
-
attrExpPresent: attrExpPresent,
|
|
21365
|
-
rawTagName: rawTagName
|
|
21366
|
-
};
|
|
21367
|
-
}
|
|
21368
|
-
const attrsRegx = new RegExp("([^\\s=]+)\\s*(=\\s*(['\"])([\\s\\S]*?)\\3)?", "gm");
|
|
21369
|
-
class OrderedObjParser {
|
|
21370
|
-
constructor(options) {
|
|
21371
|
-
this.currentNode = null, this.options = options, this.tagsNodeStack = [], this.docTypeEntities = {};
|
|
21372
|
-
}
|
|
21373
|
-
addChild(currentNode, childNode, jPath) {
|
|
21374
|
-
const result = childNode.tagname;
|
|
21375
|
-
"string" == typeof result ? (childNode.tagname = result, currentNode.addChild(childNode)) : currentNode.addChild(childNode);
|
|
21376
|
-
}
|
|
21377
|
-
buildAttributesMap(attrStr, jPath, tagName) {
|
|
21378
|
-
const attrs = {};
|
|
21379
|
-
if (!attrStr) return;
|
|
21380
|
-
const matches = getAllMatches(attrStr, attrsRegx),
|
|
21381
|
-
len = matches.length;
|
|
21382
|
-
for (let i = 0; i < len; i++) {
|
|
21383
|
-
const attrName = matches[i][1],
|
|
21384
|
-
oldVal = matches[i][4],
|
|
21385
|
-
aName = attrName;
|
|
21386
|
-
attrName && (attrs[aName] = void 0 === oldVal || (isNaN(oldVal) ? oldVal : Number(oldVal)));
|
|
21387
|
-
}
|
|
21388
|
-
return attrs;
|
|
21389
|
-
}
|
|
21390
|
-
parseXml(xmlData) {
|
|
21391
|
-
xmlData = xmlData.replace(/\r\n?/g, "\n");
|
|
21392
|
-
const xmlObj = new XmlNode("!xml");
|
|
21393
|
-
let currentNode = xmlObj,
|
|
21394
|
-
textData = "",
|
|
21395
|
-
jPath = "";
|
|
21396
|
-
for (let i = 0; i < xmlData.length; i++) {
|
|
21397
|
-
if ("<" === xmlData[i]) {
|
|
21398
|
-
if ("/" === xmlData[i + 1]) {
|
|
21399
|
-
const closeIndex = findClosingIndex(xmlData, ">", i, "Closing Tag is not closed."),
|
|
21400
|
-
propIndex = jPath.lastIndexOf(".");
|
|
21401
|
-
jPath = jPath.substring(0, propIndex), currentNode = this.tagsNodeStack.pop(), currentNode && currentNode.child && textData && currentNode.child[currentNode.child.length - 1][":@"] && (currentNode.child[currentNode.child.length - 1][":@"].text = textData), textData = "", i = closeIndex;
|
|
21402
|
-
} else if ("?" === xmlData[i + 1]) {
|
|
21403
|
-
i = readTagExp(xmlData, i, !1, "?>").closeIndex + 1;
|
|
21404
|
-
} else if ("!--" === xmlData.substr(i + 1, 3)) {
|
|
21405
|
-
i = findClosingIndex(xmlData, "--\x3e", i + 4, "Comment is not closed.");
|
|
21406
|
-
} else {
|
|
21407
|
-
const result = readTagExp(xmlData, i, !1);
|
|
21408
|
-
let tagName = result.tagName,
|
|
21409
|
-
tagExp = result.tagExp;
|
|
21410
|
-
const attrExpPresent = result.attrExpPresent,
|
|
21411
|
-
closeIndex = result.closeIndex;
|
|
21412
|
-
if (tagName !== xmlObj.tagname && (jPath += jPath ? "." + tagName : tagName), tagExp.length > 0 && tagExp.lastIndexOf("/") === tagExp.length - 1) {
|
|
21413
|
-
"/" === tagName[tagName.length - 1] ? (tagName = tagName.substr(0, tagName.length - 1), jPath = jPath.substr(0, jPath.length - 1), tagExp = tagName) : tagExp = tagExp.substr(0, tagExp.length - 1);
|
|
21414
|
-
const childNode = new XmlNode(tagName);
|
|
21415
|
-
tagName !== tagExp && attrExpPresent && (childNode[":@"] = this.buildAttributesMap(tagExp, jPath, tagName)), this.addChild(currentNode, childNode, jPath), jPath = jPath.substr(0, jPath.lastIndexOf("."));
|
|
21416
|
-
} else {
|
|
21417
|
-
const childNode = new XmlNode(tagName);
|
|
21418
|
-
this.tagsNodeStack.push(currentNode), tagName !== tagExp && attrExpPresent && (childNode[":@"] = this.buildAttributesMap(tagExp, jPath, tagName)), this.addChild(currentNode, childNode, jPath), currentNode = childNode;
|
|
21419
|
-
}
|
|
21420
|
-
textData = "", i = closeIndex;
|
|
21421
|
-
}
|
|
21422
|
-
} else textData += xmlData[i];
|
|
21423
|
-
}
|
|
21424
|
-
return xmlObj.child;
|
|
21425
|
-
}
|
|
21426
|
-
}
|
|
21427
|
-
|
|
21428
|
-
function prettify(node, options) {
|
|
21429
|
-
return compress(node);
|
|
21430
|
-
}
|
|
21431
|
-
function compress(arr, jPath) {
|
|
21432
|
-
const compressedObj = {};
|
|
21433
|
-
for (let i = 0; i < arr.length; i++) {
|
|
21434
|
-
const tagObj = arr[i],
|
|
21435
|
-
property = propName(tagObj);
|
|
21436
|
-
if (void 0 !== property && tagObj[property]) {
|
|
21437
|
-
const val = compress(tagObj[property]);
|
|
21438
|
-
isLeafTag(val);
|
|
21439
|
-
tagObj[":@"] && assignAttributes(val, tagObj[":@"]), void 0 !== compressedObj[property] && compressedObj.hasOwnProperty(property) ? (Array.isArray(compressedObj[property]) || (compressedObj[property] = [compressedObj[property]]), compressedObj[property].push(val)) : compressedObj[property] = val;
|
|
21440
|
-
}
|
|
21441
|
-
}
|
|
21442
|
-
return compressedObj;
|
|
21443
|
-
}
|
|
21444
|
-
function propName(obj) {
|
|
21445
|
-
const keys = Object.keys(obj);
|
|
21446
|
-
for (let i = 0; i < keys.length; i++) {
|
|
21447
|
-
const key = keys[i];
|
|
21448
|
-
if (":@" !== key) return key;
|
|
21449
|
-
}
|
|
21450
|
-
}
|
|
21451
|
-
function assignAttributes(obj, attrMap, jpath) {
|
|
21452
|
-
if (attrMap) {
|
|
21453
|
-
const keys = Object.keys(attrMap),
|
|
21454
|
-
len = keys.length;
|
|
21455
|
-
for (let i = 0; i < len; i++) {
|
|
21456
|
-
const atrrName = keys[i];
|
|
21457
|
-
obj[atrrName] = attrMap[atrrName];
|
|
21458
|
-
}
|
|
21459
|
-
}
|
|
21460
|
-
}
|
|
21461
|
-
function isLeafTag(obj) {
|
|
21462
|
-
return 0 === Object.keys(obj).length;
|
|
21463
|
-
}
|
|
21464
|
-
|
|
21465
|
-
class XMLParser {
|
|
21466
|
-
constructor(options) {
|
|
21467
|
-
this.options = Object.assign({}, XMLParser.defaultOptions, options);
|
|
21468
|
-
}
|
|
21469
|
-
valid(xml) {
|
|
21470
|
-
return xml.startsWith("<");
|
|
21471
|
-
}
|
|
21472
|
-
parse(xmlData) {
|
|
21473
|
-
if (!this.valid) return !1;
|
|
21474
|
-
const orderedResult = new OrderedObjParser(this.options).parseXml(xmlData);
|
|
21475
|
-
return prettify(orderedResult, this.options);
|
|
21476
|
-
}
|
|
21477
|
-
}
|
|
21478
|
-
XMLParser.defaultOptions = {};
|
|
21479
|
-
|
|
21480
21474
|
function describeServiceIdentifier(serviceIdentifier) {
|
|
21481
21475
|
return "string" == typeof serviceIdentifier ? serviceIdentifier : "symbol" == typeof serviceIdentifier ? serviceIdentifier.toString() : "function" == typeof serviceIdentifier && serviceIdentifier.name ? serviceIdentifier.name : "unknown service identifier";
|
|
21482
21476
|
}
|
|
@@ -21495,7 +21489,9 @@ const loadedArcModuleContexts = new WeakSet();
|
|
|
21495
21489
|
function bindArcRenderModule({
|
|
21496
21490
|
bind: bind
|
|
21497
21491
|
}) {
|
|
21498
|
-
isBindingContextLoaded(loadedArcModuleContexts, bind) || (bind(DefaultCanvasArcRender).
|
|
21492
|
+
isBindingContextLoaded(loadedArcModuleContexts, bind) || (bind(DefaultCanvasArcRender).toDynamicValue(({
|
|
21493
|
+
container: container
|
|
21494
|
+
}) => new DefaultCanvasArcRender(createContributionProvider$1(ArcRenderContribution, container))).inSingletonScope(), bind(ArcRender).toService(DefaultCanvasArcRender), bind(GraphicRender).toService(ArcRender), bind(ArcRenderContribution).toService(DefaultBaseInteractiveRenderContribution), bindContributionProvider(bind, ArcRenderContribution));
|
|
21499
21495
|
}
|
|
21500
21496
|
const arcModule = bindArcRenderModule;
|
|
21501
21497
|
|
|
@@ -21513,7 +21509,7 @@ const loadedLineModuleContexts = new WeakSet();
|
|
|
21513
21509
|
function bindLineRenderModule({
|
|
21514
21510
|
bind: bind
|
|
21515
21511
|
}) {
|
|
21516
|
-
isBindingContextLoaded(loadedLineModuleContexts, bind) || (bind(DefaultCanvasLineRender).
|
|
21512
|
+
isBindingContextLoaded(loadedLineModuleContexts, bind) || (bind(DefaultCanvasLineRender).toDynamicValue(() => new DefaultCanvasLineRender()).inSingletonScope(), bind(LineRender).toService(DefaultCanvasLineRender), bind(GraphicRender).toService(LineRender));
|
|
21517
21513
|
}
|
|
21518
21514
|
const lineModule = bindLineRenderModule;
|
|
21519
21515
|
|
|
@@ -21521,7 +21517,9 @@ const loadedAreaModuleContexts = new WeakSet();
|
|
|
21521
21517
|
function bindAreaRenderModule({
|
|
21522
21518
|
bind: bind
|
|
21523
21519
|
}) {
|
|
21524
|
-
isBindingContextLoaded(loadedAreaModuleContexts, bind) || (bind(DefaultCanvasAreaRender).
|
|
21520
|
+
isBindingContextLoaded(loadedAreaModuleContexts, bind) || (bind(DefaultCanvasAreaRender).toDynamicValue(({
|
|
21521
|
+
container: container
|
|
21522
|
+
}) => new DefaultCanvasAreaRender(createContributionProvider$1(AreaRenderContribution, container))).inSingletonScope(), bind(AreaRender).toService(DefaultCanvasAreaRender), bind(GraphicRender).toService(AreaRender), bind(AreaRenderContribution).toService(DefaultBaseInteractiveRenderContribution), bindContributionProvider(bind, AreaRenderContribution));
|
|
21525
21523
|
}
|
|
21526
21524
|
const areaModule = bindAreaRenderModule;
|
|
21527
21525
|
|
|
@@ -21529,7 +21527,9 @@ const loadedSymbolModuleContexts = new WeakSet();
|
|
|
21529
21527
|
function bindSymbolRenderModule({
|
|
21530
21528
|
bind: bind
|
|
21531
21529
|
}) {
|
|
21532
|
-
isBindingContextLoaded(loadedSymbolModuleContexts, bind) || (bind(DefaultCanvasSymbolRender).
|
|
21530
|
+
isBindingContextLoaded(loadedSymbolModuleContexts, bind) || (bind(DefaultCanvasSymbolRender).toDynamicValue(({
|
|
21531
|
+
container: container
|
|
21532
|
+
}) => new DefaultCanvasSymbolRender(createContributionProvider$1(SymbolRenderContribution, container))).inSingletonScope(), bind(SymbolRender).toService(DefaultCanvasSymbolRender), bind(GraphicRender).toService(SymbolRender), bind(SymbolRenderContribution).toService(DefaultBaseInteractiveRenderContribution), bindContributionProvider(bind, SymbolRenderContribution));
|
|
21533
21533
|
}
|
|
21534
21534
|
const symbolModule = bindSymbolRenderModule;
|
|
21535
21535
|
|
|
@@ -21537,7 +21537,9 @@ const loadedCircleModuleContexts = new WeakSet();
|
|
|
21537
21537
|
function bindCircleRenderModule({
|
|
21538
21538
|
bind: bind
|
|
21539
21539
|
}) {
|
|
21540
|
-
isBindingContextLoaded(loadedCircleModuleContexts, bind) || (bind(DefaultCanvasCircleRender).
|
|
21540
|
+
isBindingContextLoaded(loadedCircleModuleContexts, bind) || (bind(DefaultCanvasCircleRender).toDynamicValue(({
|
|
21541
|
+
container: container
|
|
21542
|
+
}) => new DefaultCanvasCircleRender(createContributionProvider$1(CircleRenderContribution, container))).inSingletonScope(), bind(CircleRender).toService(DefaultCanvasCircleRender), bind(GraphicRender).toService(CircleRender), bind(CircleRenderContribution).toService(DefaultBaseInteractiveRenderContribution), bindContributionProvider(bind, CircleRenderContribution));
|
|
21541
21543
|
}
|
|
21542
21544
|
const circleModule = bindCircleRenderModule;
|
|
21543
21545
|
|
|
@@ -21545,7 +21547,9 @@ const loadedTextModuleContexts = new WeakSet();
|
|
|
21545
21547
|
function bindTextRenderModule({
|
|
21546
21548
|
bind: bind
|
|
21547
21549
|
}) {
|
|
21548
|
-
isBindingContextLoaded(loadedTextModuleContexts, bind) || (bind(TextRender).
|
|
21550
|
+
isBindingContextLoaded(loadedTextModuleContexts, bind) || (bind(TextRender).toDynamicValue(({
|
|
21551
|
+
container: container
|
|
21552
|
+
}) => new DefaultCanvasTextRender(createContributionProvider$1(TextRenderContribution, container))).inSingletonScope(), bind(GraphicRender).toService(TextRender), bind(TextRenderContribution).toService(DefaultBaseInteractiveRenderContribution), bindContributionProvider(bind, TextRenderContribution));
|
|
21549
21553
|
}
|
|
21550
21554
|
const textModule = bindTextRenderModule;
|
|
21551
21555
|
|
|
@@ -21553,7 +21557,9 @@ const loadedPathModuleContexts = new WeakSet();
|
|
|
21553
21557
|
function bindPathRenderModule({
|
|
21554
21558
|
bind: bind
|
|
21555
21559
|
}) {
|
|
21556
|
-
isBindingContextLoaded(loadedPathModuleContexts, bind) || (bind(DefaultCanvasPathRender).
|
|
21560
|
+
isBindingContextLoaded(loadedPathModuleContexts, bind) || (bind(DefaultCanvasPathRender).toDynamicValue(({
|
|
21561
|
+
container: container
|
|
21562
|
+
}) => new DefaultCanvasPathRender(createContributionProvider$1(PathRenderContribution, container))).inSingletonScope(), bind(PathRender).toService(DefaultCanvasPathRender), bind(GraphicRender).toService(PathRender), bind(PathRenderContribution).toService(DefaultBaseInteractiveRenderContribution), bindContributionProvider(bind, PathRenderContribution));
|
|
21557
21563
|
}
|
|
21558
21564
|
const pathModule = bindPathRenderModule;
|
|
21559
21565
|
|
|
@@ -21561,13 +21567,15 @@ const loadedPolygonModuleContexts = new WeakSet();
|
|
|
21561
21567
|
function bindPolygonRenderModule({
|
|
21562
21568
|
bind: bind
|
|
21563
21569
|
}) {
|
|
21564
|
-
isBindingContextLoaded(loadedPolygonModuleContexts, bind) || (bind(PolygonRender).
|
|
21570
|
+
isBindingContextLoaded(loadedPolygonModuleContexts, bind) || (bind(PolygonRender).toDynamicValue(({
|
|
21571
|
+
container: container
|
|
21572
|
+
}) => new DefaultCanvasPolygonRender(createContributionProvider$1(PolygonRenderContribution, container))).inSingletonScope(), bind(GraphicRender).toService(PolygonRender), bind(PolygonRenderContribution).toService(DefaultBaseInteractiveRenderContribution), bindContributionProvider(bind, PolygonRenderContribution));
|
|
21565
21573
|
}
|
|
21566
21574
|
const polygonModule = bindPolygonRenderModule;
|
|
21567
21575
|
|
|
21568
21576
|
class DefaultCanvasStarRender extends BaseRender {
|
|
21569
|
-
constructor(
|
|
21570
|
-
super(), this.
|
|
21577
|
+
constructor(graphicRenderContributions) {
|
|
21578
|
+
super(), this.graphicRenderContributions = graphicRenderContributions, this.numberType = STAR_NUMBER_TYPE, this.builtinContributions = [defaultStarBackgroundRenderContribution, defaultStarTextureRenderContribution], this.init(graphicRenderContributions);
|
|
21571
21579
|
}
|
|
21572
21580
|
drawShape(star, context, x, y, drawContext, params, fillCb, strokeCb) {
|
|
21573
21581
|
const starAttribute = getTheme(star, null == params ? void 0 : params.theme).star,
|
|
@@ -21608,7 +21616,7 @@ function bindStarRenderModule({
|
|
|
21608
21616
|
}) {
|
|
21609
21617
|
isBindingContextLoaded(loadedStarModuleContexts, bind) || (bind(DefaultCanvasStarRender).toDynamicValue(({
|
|
21610
21618
|
container: container
|
|
21611
|
-
}) => new DefaultCanvasStarRender(createContributionProvider$1(StarRenderContribution, container))).inSingletonScope(), bind(StarRender).toService(DefaultCanvasStarRender), bind(GraphicRender).toService(StarRender));
|
|
21619
|
+
}) => new DefaultCanvasStarRender(createContributionProvider$1(StarRenderContribution, container))).inSingletonScope(), bind(StarRender).toService(DefaultCanvasStarRender), bind(GraphicRender).toService(StarRender), bindContributionProvider(bind, StarRenderContribution));
|
|
21612
21620
|
}
|
|
21613
21621
|
const starModule = bindStarRenderModule;
|
|
21614
21622
|
|
|
@@ -21643,7 +21651,7 @@ const loadedGlyphModuleContexts = new WeakSet();
|
|
|
21643
21651
|
function bindGlyphRenderModule({
|
|
21644
21652
|
bind: bind
|
|
21645
21653
|
}) {
|
|
21646
|
-
isBindingContextLoaded(loadedGlyphModuleContexts, bind) || (bind(
|
|
21654
|
+
isBindingContextLoaded(loadedGlyphModuleContexts, bind) || (bind(DefaultCanvasGlyphRender).toDynamicValue(() => new DefaultCanvasGlyphRender()).inSingletonScope(), bind(GlyphRender).toService(DefaultCanvasGlyphRender), bind(GraphicRender).toService(GlyphRender));
|
|
21647
21655
|
}
|
|
21648
21656
|
const glyphModule = bindGlyphRenderModule;
|
|
21649
21657
|
|
|
@@ -21703,7 +21711,7 @@ const loadedRichtextModuleContexts = new WeakSet();
|
|
|
21703
21711
|
function bindRichtextRenderModule({
|
|
21704
21712
|
bind: bind
|
|
21705
21713
|
}) {
|
|
21706
|
-
isBindingContextLoaded(loadedRichtextModuleContexts, bind) || (bind(
|
|
21714
|
+
isBindingContextLoaded(loadedRichtextModuleContexts, bind) || (bind(DefaultCanvasRichTextRender).toDynamicValue(() => new DefaultCanvasRichTextRender()).inSingletonScope(), bind(RichTextRender).toService(DefaultCanvasRichTextRender), bind(GraphicRender).toService(RichTextRender));
|
|
21707
21715
|
}
|
|
21708
21716
|
const richtextModule = bindRichtextRenderModule;
|
|
21709
21717
|
|
|
@@ -21711,7 +21719,9 @@ const loadedImageModuleContexts = new WeakSet();
|
|
|
21711
21719
|
function bindImageRenderModule({
|
|
21712
21720
|
bind: bind
|
|
21713
21721
|
}) {
|
|
21714
|
-
isBindingContextLoaded(loadedImageModuleContexts, bind) || (bind(ImageRender).
|
|
21722
|
+
isBindingContextLoaded(loadedImageModuleContexts, bind) || (bind(ImageRender).toDynamicValue(({
|
|
21723
|
+
container: container
|
|
21724
|
+
}) => new DefaultCanvasImageRender(createContributionProvider$1(ImageRenderContribution, container))).inSingletonScope(), bind(GraphicRender).toService(ImageRender), bind(ImageRenderContribution).toService(DefaultBaseInteractiveRenderContribution), bindContributionProvider(bind, ImageRenderContribution));
|
|
21715
21725
|
}
|
|
21716
21726
|
const imageModule = bindImageRenderModule;
|
|
21717
21727
|
|
|
@@ -21842,7 +21852,7 @@ const loadedRect3dModuleContexts = new WeakSet();
|
|
|
21842
21852
|
function bindRect3dRenderModule({
|
|
21843
21853
|
bind: bind
|
|
21844
21854
|
}) {
|
|
21845
|
-
isBindingContextLoaded(loadedRect3dModuleContexts, bind) || (bind(
|
|
21855
|
+
isBindingContextLoaded(loadedRect3dModuleContexts, bind) || (bind(DefaultCanvasRect3dRender).toDynamicValue(() => new DefaultCanvasRect3dRender()).inSingletonScope(), bind(Rect3DRender).toService(DefaultCanvasRect3dRender), bind(GraphicRender).toService(Rect3DRender));
|
|
21846
21856
|
}
|
|
21847
21857
|
const rect3dModule = bindRect3dRenderModule;
|
|
21848
21858
|
|
|
@@ -21971,7 +21981,7 @@ const loadedArc3dModuleContexts = new WeakSet();
|
|
|
21971
21981
|
function bindArc3dRenderModule({
|
|
21972
21982
|
bind: bind
|
|
21973
21983
|
}) {
|
|
21974
|
-
isBindingContextLoaded(loadedArc3dModuleContexts, bind) || (bind(
|
|
21984
|
+
isBindingContextLoaded(loadedArc3dModuleContexts, bind) || (bind(DefaultCanvasArc3DRender).toDynamicValue(() => new DefaultCanvasArc3DRender()).inSingletonScope(), bind(Arc3dRender).toService(DefaultCanvasArc3DRender), bind(GraphicRender).toService(Arc3dRender));
|
|
21975
21985
|
}
|
|
21976
21986
|
const arc3dModule = bindArc3dRenderModule;
|
|
21977
21987
|
|
|
@@ -22010,7 +22020,7 @@ const loadedPyramid3dModuleContexts = new WeakSet();
|
|
|
22010
22020
|
function bindPyramid3dRenderModule({
|
|
22011
22021
|
bind: bind
|
|
22012
22022
|
}) {
|
|
22013
|
-
isBindingContextLoaded(loadedPyramid3dModuleContexts, bind) || (bind(
|
|
22023
|
+
isBindingContextLoaded(loadedPyramid3dModuleContexts, bind) || (bind(DefaultCanvasPyramid3dRender).toDynamicValue(() => new DefaultCanvasPyramid3dRender()).inSingletonScope(), bind(Pyramid3dRender).toService(DefaultCanvasPyramid3dRender), bind(GraphicRender).toService(Pyramid3dRender));
|
|
22014
22024
|
}
|
|
22015
22025
|
const pyramid3dModule = bindPyramid3dRenderModule;
|
|
22016
22026
|
|
|
@@ -27017,8 +27027,8 @@ function bindTextCanvasPickerContribution(container) {
|
|
|
27017
27027
|
loadTextPick$1 || (loadTextPick$1 = !0, container.bind(CanvasTextPicker).toDynamicValue(() => new DefaultCanvasTextPicker(resolveContainerBinding(container, TextRender))).inSingletonScope(), container.bind(CanvasPickerContribution).toService(CanvasTextPicker));
|
|
27018
27028
|
}
|
|
27019
27029
|
|
|
27020
|
-
const GIFIMAGE_NUMBER_TYPE =
|
|
27021
|
-
const LOTTIE_NUMBER_TYPE =
|
|
27030
|
+
const GIFIMAGE_NUMBER_TYPE = genNumberType();
|
|
27031
|
+
const LOTTIE_NUMBER_TYPE = genNumberType();
|
|
27022
27032
|
|
|
27023
27033
|
class DefaultCanvasGifImagePicker {
|
|
27024
27034
|
constructor() {
|
|
@@ -55259,6 +55269,6 @@ function createStage(params) {
|
|
|
55259
55269
|
return resolveLegacyApp().createStage(params);
|
|
55260
55270
|
}
|
|
55261
55271
|
|
|
55262
|
-
const version = "1.1.0-alpha.
|
|
55272
|
+
const version = "1.1.0-alpha.28";
|
|
55263
55273
|
|
|
55264
55274
|
export { AComponentAnimate, ACustomAnimate, ARC3D_NUMBER_TYPE, ARC_NUMBER_TYPE, AREA_NUMBER_TYPE, AStageAnimate, AXIS_ELEMENT_NAME, AbstractComponent, AbstractGraphicRender, Animate, AnimateExecutor, AnimateMode, AnimateStatus, Step as AnimateStep, AnimateStepType, AnimationStateManager, AnimationStateStore, AnimationStates, AnimationTransitionRegistry, AppContext, Application, Arc, Arc3d, Arc3dRender, ArcInfo, ArcLabel, ArcRender, ArcRenderContribution, ArcSegment, Area, AreaRender, AreaRenderContribution, AttributeUpdateType, AutoEnablePlugins, AxisStateValue, BaseCanvas, BaseEnvContribution, BasePlayer, BaseRender, BaseRenderContributionTime, BaseWindowHandlerContribution, Basis, BeforeRenderConstribution, BoundsContext, BoundsPicker, BrowserEntry, BrowserEnvContribution, Brush, CIRCLE_NUMBER_TYPE, Canvas3DDrawItemInterceptor, Canvas3DPickItemInterceptor, CanvasArc3dPicker, CanvasArcPicker, CanvasAreaPicker, CanvasCirclePicker, CanvasFactory, CanvasGifImagePicker, CanvasGlyphPicker, CanvasGroupPicker, CanvasImagePicker, CanvasLinePicker, CanvasLottiePicker, CanvasPathPicker, CanvasPickerContribution, CanvasPolygonPicker, CanvasPyramid3dPicker, CanvasRect3dPicker, CanvasRectPicker, CanvasRichTextPicker, CanvasStarPicker, CanvasSymbolPicker, CanvasTextLayout, CanvasTextPicker, CheckBox, Circle, CircleAxis, CircleAxisGrid, CircleCrosshair, CircleRender, CircleRenderContribution, ClipAngleAnimate, ClipDirectionAnimate, ClipGraphicAnimate, ClipIn, ClipOut, ClipRadiusAnimate, ColorContinuousLegend, ColorInterpolate, ColorStore, ColorType, CommonDrawItemInterceptorContribution, CommonRenderContribution, ComponentAnimator, Context2dFactory, ContinuousPlayer, ContributionProvider, ContributionRegistry, ContributionStore, CubicBezierCurve, CurveContext, CurveTypeEnum, CustomEvent, CustomPath2D, CustomSymbolClass, DEFAULT_ITEM_SPACE_COL, DEFAULT_ITEM_SPACE_ROW, DEFAULT_LABEL_SPACE, DEFAULT_PAGER_SPACE, DEFAULT_SHAPE_SIZE, DEFAULT_SHAPE_SPACE, DEFAULT_STATES$1 as DEFAULT_STATES, DEFAULT_TEXT_FONT_FAMILY$1 as DEFAULT_TEXT_FONT_FAMILY, DEFAULT_TITLE_SPACE, DEFAULT_VALUE_SPACE, DataLabel, DataZoom, DataZoomActiveTag, DebugDrawItemInterceptorContribution, DefaultArcAllocate, DefaultArcAttribute, DefaultArcRenderContribution, DefaultAreaAllocate, DefaultAreaAttribute, DefaultAreaTextureRenderContribution, DefaultAttribute, DefaultBaseBackgroundRenderContribution, DefaultBaseClipRenderAfterContribution, DefaultBaseClipRenderBeforeContribution, DefaultBaseInteractiveRenderContribution, DefaultBaseTextureRenderContribution, DefaultCanvasAllocate, DefaultCanvasArcRender, DefaultCanvasAreaRender, DefaultCanvasCircleRender, DefaultCanvasGroupRender, DefaultCanvasImageRender, DefaultCanvasLineRender, DefaultCanvasPathRender, DefaultCanvasPolygonRender, DefaultCanvasRectRender, DefaultCanvasSymbolRender, DefaultCanvasTextRender, DefaultCircleAllocate, DefaultCircleAttribute, DefaultCircleRenderContribution, DefaultConnectAttribute, DefaultDebugAttribute, DefaultFillStyle, DefaultGlobal, DefaultGlobalPickerService, DefaultGlyphAttribute, DefaultGraphicAllocate, DefaultGraphicMemoryManager, DefaultGraphicService, DefaultGraphicUtil, DefaultGroupAttribute, DefaultGroupBackgroundRenderContribution, DefaultImageAttribute, DefaultImageRenderContribution, DefaultLayerService, DefaultLayout, DefaultLineAllocate, DefaultLineAttribute, DefaultMat4Allocate, DefaultMatrixAllocate, DefaultPathAllocate, DefaultPathAttribute, DefaultPickService, DefaultPickStyle, DefaultPolygonAttribute, DefaultRect3dAttribute, DefaultRectAllocate, DefaultRectAttribute, DefaultRectRenderContribution, DefaultRenderService, DefaultRichTextAttribute, DefaultRichTextIconAttribute, DefaultStarAttribute, DefaultStrokeStyle, DefaultStyle, DefaultSymbolAllocate, DefaultSymbolAttribute, DefaultSymbolClipRangeStrokeRenderContribution, DefaultSymbolRenderContribution, DefaultTextAllocate, DefaultTextAttribute, DefaultTextMeasureContribution, DefaultTextStyle, DefaultTicker, DefaultTimeline, DefaultTransform, DefaultTransformUtil, DefaultWindow, Direction, DirectionEnum, DirectionalLight, DiscreteLegend, DiscretePlayer, Dissolve, Distortion, DragNDrop, DrawContribution, DrawItemInterceptor, DynamicLayerHandlerContribution, Easing, Edge, EditModule, EmptyContext2d, EmptyTip, EnvContribution, EventManager, EventSystem, EventTarget, FORMAT_ALL_TEXT_COMMAND, FORMAT_ELEMENT_COMMAND, FORMAT_TEXT_COMMAND, Factory, FadeIn, FadeOut, FederatedEvent, FederatedMouseEvent, FederatedPointerEvent, FederatedWheelEvent, FlexLayoutPlugin, Fragment, FromTo, GLYPH_NUMBER_TYPE, GRAPHIC_UPDATE_TAG_KEY, GROUP_NUMBER_TYPE, GaussianBlur, Generator, Gesture, GifImage, Glitch, GlobalPickerService, Glyph, GlyphRender, GradientParser, Graphic, GraphicCreator$1 as GraphicCreator, GraphicFactory, GraphicPicker, GraphicRender, GraphicService, GraphicStateExtension, GraphicUtil, Grayscale, Group, GroupFadeIn, GroupFadeOut, GroupRender, GroupRenderContribution, GroupTransition, GroupUpdateAABBBoundsMode, GrowAngleIn, GrowAngleOut, GrowCenterIn, GrowCenterOut, GrowHeightIn, GrowHeightOut, GrowIn, GrowOut, GrowPointsIn, GrowPointsOut, GrowPointsXIn, GrowPointsXOut, GrowPointsYIn, GrowPointsYOut, GrowRadiusIn, GrowRadiusOut, GrowWidthIn, GrowWidthOut, HtmlAttributePlugin, IContainPointMode, IDataZoomEvent, IDataZoomInteractiveEvent, IMAGE_NUMBER_TYPE, IMarkAreaLabelPosition, IMarkCommonArcLabelPosition, IMarkLineLabelPosition, IMarkPointItemPosition, IOperateType, Image$1 as Image, ImageRender, ImageRenderContribution, IncreaseCount, IncrementalDrawContribution, Indicator, InputRichText, InputText, InteractiveDrawItemInterceptorContribution, InteractivePickItemInterceptorContribution, InteractiveSubRenderContribution, LEGEND_ELEMENT_NAME, LINE_NUMBER_TYPE, LabelBase, LabelItemAppear, LabelItemDisappear, Layer, LayerFactory, LayerService, LegendEvent, LegendStateValue, Line$1 as Line, LineAxis, LineAxisGrid, LineCrosshair, LineLabel, LineRender, Linear, LinearClosed, LinkPath, Lottie, ManualTicker, MarkArcArea, MarkArcLine, MarkArea, MarkLine, MarkPoint, Mat4Allocate, MathArcPicker, MathAreaPicker, MathCirclePicker, MathGlyphPicker, MathImagePicker, MathLinePicker, MathPathPicker, MathPickerContribution, MathPolygonPicker, MathRectPicker, MathRichTextPicker, MathSymbolPicker, MathTextPicker, MatrixAllocate, MeasureModeEnum, MiniappEntry, MonotoneX, MonotoneY, MorphingPath, MotionPath, MoveIn, MoveOut, MoveRotateIn, MoveRotateOut, MoveScaleIn, MoveScaleOut, MultiToOneMorphingPath, NOWORK_ANIMATE_ATTR, Node, NodeEntry, OrthoCamera, OutputRichText, PATH_NUMBER_TYPE, POLYGON_NUMBER_TYPE, PURE_STYLE_KEY, PYRAMID3D_NUMBER_TYPE, Pager, Particle, Path, PathRender, PathRenderContribution, PerformanceRAF, PickItemInterceptor, PickServiceInterceptor, PickerRegistry, PickerService, Pixelation, PlayerEventEnum, PluginRegistry, PluginService, Polygon, PolygonCrosshair, PolygonRender, PolygonRenderContribution, PolygonSectorCrosshair, PopTip, PoptipAppear, PoptipDisappear, PulseAnimate, Pyramid3d, Pyramid3dRender, REACT_TO_CANOPUS_EVENTS, REACT_TO_CANOPUS_EVENTS_LIST, RECT3D_NUMBER_TYPE, RECT_NUMBER_TYPE, RICHTEXT_NUMBER_TYPE, Radio, RafBasedSTO, ReactAttributePlugin, Rect, Rect3DRender, Rect3d, RectCrosshair, RectLabel, RectRender, RectRenderContribution, ReflectSegContext, RenderSelector, RenderService, RendererRegistry, ResourceLoader, RichText, RichTextEditPlugin, RichTextRender, RotateBySphereAnimate, RotateIn, RotateOut, SLIDER_ELEMENT_NAME, STAR_NUMBER_TYPE, STATUS$1 as STATUS, SVG_ATTRIBUTE_MAP, SVG_ATTRIBUTE_MAP_KEYS, SVG_PARSE_ATTRIBUTE_MAP, SVG_PARSE_ATTRIBUTE_MAP_KEYS, SYMBOL_NUMBER_TYPE, ScaleIn, ScaleOut, ScrollBar, SectorCrosshair, SegContext, Segment, SeriesNumberCellStateValue, SeriesNumberEvent, ShadowPickServiceInterceptorContribution, ShadowRoot, ShadowRootDrawItemInterceptorContribution, ShadowRootPickItemInterceptorContribution, SizeContinuousLegend, SlideIn, SlideOut, SlideOutRichText, SlideRichText, Slider, SpinIn, SpinOut, SplitRectAfterRenderContribution, SplitRectBeforeRenderContribution, Stage, StageFactory, Star, StarRender, StarRenderContribution, State, StateDefinitionCompiler, StateEngine, StaticLayerHandlerContribution, Step$1 as Step, StepClosed, StoryLabelItem, StreamLight, StrokeIn, StrokeOut, Switch, Symbol$1 as Symbol, SymbolLabel, SymbolRender, SymbolRenderContribution, TEXT_NUMBER_TYPE, TableSeriesNumber, Tag, TagPointsUpdate, Text, TextDirection, TextMeasureContribution, TextRender, TextRenderContribution, Theme, Timeline, Title, Tooltip, TopZIndex, TransformUtil, Update, UpdateTag, VArc, VArc3d, VArea, VCircle, VGlobal, VGlyph, VGroup, VImage, VLine, VPath, VPolygon, VPyramid3d, VRect, VRect3d, VRichText, VSymbol, VTag, VText, VWindow, ViewTransform3dPlugin, VirtualLayerHandlerContribution, WILDCARD, WeatherBox, WindowHandlerContribution, WrapText, XMLParser, _calculateLineHeight, _interpolateColor, _registerArc, acquireSharedVRenderApp, addArcToBezierPath$1 as addArcToBezierPath, addAttributeToPrototype, alignBezierCurves, alignSubpath, alignTextInLine, alternatingWave, angle, angleLabelOrientAttribute, angleTo, application, applyTransformOnBezierCurves, arc3dModule, arcModule, areaModule, bezier, bezierCurversToPath, binarySplitPolygon, bindArc3dCanvasPickerContribution, bindArc3dRenderModule, bindArcCanvasPickerContribution, bindArcMathPickerContribution, bindArcRenderModule, bindAreaCanvasPickerContribution, bindAreaMathPickerContribution, bindAreaRenderModule, bindBrowserEnv, bindCircleCanvasPickerContribution, bindCircleMathPickerContribution, bindCircleRenderModule, bindContributionProvider, bindContributionProviderNoSingletonScope, bindFeishuEnv, bindGifImageCanvasPickerContribution, bindGifImageRenderContribution, bindGlyphCanvasPickerContribution, bindGlyphMathPickerContribution, bindGlyphRenderModule, bindHarmonyEnv, bindImageCanvasPickerContribution, bindImageMathPickerContribution, bindImageRenderModule, bindLineCanvasPickerContribution, bindLineMathPickerContribution, bindLineRenderModule, bindLottieCanvasPickerContribution, bindLottieRenderContribution, bindLynxEnv, bindMathPicker, bindNodeEnv, bindPathCanvasPickerContribution, bindPathMathPickerContribution, bindPathRenderModule, bindPolygonCanvasPickerContribution, bindPolygonMathPickerContribution, bindPolygonRenderModule, bindPyramid3dCanvasPickerContribution, bindPyramid3dRenderModule, bindRect3dCanvasPickerContribution, bindRect3dRenderModule, bindRectCanvasPickerContribution, bindRectMathPickerContribution, bindRectRenderModule, bindRichTextMathPickerContribution, bindRichtextCanvasPickerContribution, bindRichtextRenderModule, bindStarRenderModule, bindSymbolCanvasPickerContribution, bindSymbolMathPickerContribution, bindSymbolRenderModule, bindTTEnv, bindTaroEnv, bindTextCanvasPickerContribution, bindTextMathPickerContribution, bindTextRenderModule, bindWxEnv, bootstrapLegacyVRenderRuntime, bootstrapVRenderBrowserApp, bootstrapVRenderMiniApp, bootstrapVRenderNodeApp, boundStroke, builtInSymbolStrMap, builtinSymbols, builtinSymbolsMap, calcLineCache, calculateArcCornerRadius, calculateLineHeight, canvasAllocate, cartesianTicks, centerToCorner, centroidOfSubpath, circleBounds, circleModule, clampRadian, clock, colorEqual, colorStringInterpolationToStr, columnCenterToEdge, columnEdgeToCenter, columnLeftToRight, columnRightToLeft, computeOffsetForlimit, configureRuntimeApplicationForApp, container, continuousTicks, contrastAccessibilityChecker, convertDomainToTickData, cornerTangents, cornerToCenter, createBrowserApp as createApp, createArc, createArc3d, createArea, createBrowserApp, createBrowserVRenderApp, createCanvasEventTransformer, createCircle, createColor, createComponentAnimator, createConicalGradient, createContributionProvider$1 as createContributionProvider, createEventTransformer, createFeishuVRenderApp, createGifImage, createGlyph, createGraphic$1 as createGraphic, createGroup, createHarmonyVRenderApp, createImage, createImageElement$1 as createImageElement, createLine, createLottie, createLynxVRenderApp, createMat4, createMiniappApp$1 as createMiniappApp, createNodeApp$1 as createNodeApp, createNodeVRenderApp, createPath, createPolygon, createPyramid3d, createRect, createRect3d, createRectPath, createRichText, createShadowRoot, createStage, createStar, createSymbol, createTTVRenderApp, createTaroVRenderApp, createText, createTextGraphicByType, createWrapText, createWxVRenderApp, cubicCalc, cubicLength, cubicPointAt, cubicSubdivide, decodeReactDom, defaultArcAllocate, defaultArcBackgroundRenderContribution, defaultArcRenderContribution, defaultArcTextureRenderContribution, defaultAreaAllocate, defaultBaseBackgroundRenderContribution, defaultBaseClipRenderAfterContribution, defaultBaseClipRenderBeforeContribution, defaultBaseTextureRenderContribution, defaultCircleAllocate, defaultCircleBackgroundRenderContribution, defaultCircleRenderContribution, defaultCircleTextureRenderContribution, defaultGraphicMemoryManager, defaultGroupBackgroundRenderContribution, defaultImageBackgroundRenderContribution, defaultImageRenderContribution, defaultLineAllocate, defaultPathAllocate, defaultRectAllocate, defaultRectBackgroundRenderContribution, defaultRectRenderContribution, defaultRectTextureRenderContribution, defaultStarBackgroundRenderContribution, defaultStarTextureRenderContribution, defaultSymbolAllocate, defaultSymbolBackgroundRenderContribution, defaultSymbolClipRangeStrokeRenderContribution, defaultSymbolRenderContribution, defaultSymbolTextureRenderContribution, defaultTextAllocate, defaultTicker, defaultTimeline, deltaXYToAngle, diagonalCenterToEdge, diagonalTopLeftToBottomRight, diff, divideCubic, drawArc, drawArcPath$1 as drawArcPath, drawAreaSegments, drawBackgroundImage, drawImageWithLayout, drawIncrementalAreaSegments, drawIncrementalSegments, drawSegments, enumCommandMap, fillVisible, findBestMorphingRotation, findConfigIndexByCursorIdx, findCursorIdxByConfigIndex, findNextGraphic, flatten_simplify, foreach, foreachAsync, fuzzyEqualNumber, genBasisSegments, genBasisTypeSegments, genLinearClosedSegments, genLinearClosedTypeSegments, genLinearSegments, genLinearTypeSegments, genMonotoneXSegments, genMonotoneXTypeSegments, genMonotoneYSegments, genMonotoneYTypeSegments, genNumberType, genStepClosedSegments, genStepSegments, genStepTypeSegments, generatorPathEasingFunc, getAttributeFromDefaultAttrList, getAxisBreakSymbolAttrs, getBackgroundImage, getCircleLabelPosition, getCirclePoints, getCircleVerticalVector, getConicGradientAt, getCurrentEnv, getDefaultCharacterConfig, getElMap, getExtraModelMatrix, getHorizontalPath, getLegacyBindingContext, getMarksByName, getModelMatrix, getNoneGroupMarksByName, getPolarAngleLabelPosition, getPolygonPath, getRichTextBounds, getRuntimeInstallerBindingContext, getRuntimeInstallerGlobal, getScaledStroke, getSharedVRenderApp, getSizeHandlerPath, getTextAlignAttrOfVerticalDir, getTextBounds, getTextType, getTheme, getThemeFromGroup, getVerticalCoord, getVerticalPath, globalTheme, glyphModule, graphicCreator$1 as graphicCreator, graphicService, graphicUtil, hasOverlap, htmlAttributeTransform, identityMat4, imageModule, incrementalAddTo, initAllEnv, initBrowserEnv, initFeishuEnv, initHarmonyEnv, initLynxEnv, initNodeEnv, initTTEnv, initTaroEnv, initTextMeasure, initWxEnv, installBrowserEnvToApp, installBrowserPickersToApp, installDefaultGraphicsToApp, installFeishuEnvToApp, installHarmonyEnvToApp, installLynxEnvToApp, installMathPickersToApp, installNodeEnvToApp, installNodePickersToApp, installPoptipToApp, installRuntimeDrawContributionsToApp, installRuntimeGraphicRenderersToApp, installRuntimePickersToApp, installScrollbarToApp, installTTEnvToApp, installTaroEnvToApp, installWxEnvToApp, interpolateColor, interpolateGradientConicalColor, interpolateGradientLinearColor, interpolateGradientRadialColor, interpolatePureColorArray, interpolatePureColorArrayToStr, intersect, isBrowserEnv, isInRange, isNoRepeatSizingMode, isNodeEnv, isPostiveXAxis, isRichText, isSvg, isVisible, isXML, jsx, labelSmartInvert, layerService, length, limitShapeInBounds, lineModule, linearDiscreteTicks, loadAllEnv, loadAllModule, loadBrowserEnv, loadFeishuEnv, loadHarmonyEnv, loadLynxEnv, loadMathPicker, loadNodeEnv, loadPoptip, loadScrollbar, loadTTEnv, loadTaroEnv, loadWxEnv, lookAt, mapToCanvasPointForCanvas, mat3Tomat4, mat4Allocate, matrixAllocate, measureTextSize, morphPath, multiToOneMorph, multiplyMat4Mat3, multiplyMat4Mat4, newThemeObj, normalize$1 as normalize, oneToMultiMorph, ortho, parsePadding, parseStroke, parseSvgPath, particleEffect, pathModule, pathToBezierCurves, point$3 as point, pointEqual, pointInterpolation, pointInterpolationHighPerformance, pointsEqual, pointsInterpolation, polarAngleAxisDiscreteTicks, polarTicks, polygonModule, preLoadAllModule, pulseWave, pyramid3dModule, quadCalc, quadLength, quadPointAt, rafBasedSto, randomOpacity, reactAttributeTransform, rect3dModule, rectFillVisible, rectModule, rectStrokeVisible, recursiveCallBinarySplit, refreshRuntimeInstallerContributions, registerAnimate, registerArc, registerArc3d, registerArc3dGraphic, registerArcDataLabel, registerArcGraphic, registerArea, registerAreaGraphic, registerCircle, registerCircleGraphic, registerCustomAnimate, registerDirectionalLight, registerFlexLayoutPlugin, registerGifGraphic, registerGifImage, registerGlobalEventTransformer, registerGlyph, registerGlyphGraphic, registerGraphic, registerGroup, registerGroupGraphic, registerHtmlAttributePlugin, registerImage, registerImageGraphic, registerLine, registerLineDataLabel, registerLineGraphic, registerMarkArcAreaAnimate, registerMarkArcLineAnimate, registerMarkAreaAnimate, registerMarkLineAnimate, registerMarkPointAnimate, registerOrthoCamera, registerPath, registerPathGraphic, registerPolygon, registerPolygonGraphic, registerPyramid3d, registerPyramid3dGraphic, registerReactAttributePlugin, registerRect, registerRect3d, registerRect3dGraphic, registerRectDataLabel, registerRectGraphic, registerRichtext, registerRichtextGraphic, registerShadowRoot, registerShadowRootGraphic, registerStar, registerStarGraphic, registerSymbol, registerSymbolDataLabel, registerSymbolGraphic, registerText, registerTextGraphic, registerViewTransform3dPlugin, registerWindowEventTransformer, registerWrapText, registerWrapTextGraphic, releaseSharedVRenderApp, removeRepeatPoint, renderCommandList, resolveBackgroundDrawMode, resolveBackgroundParamsByImageSizing, resolveBackgroundPosition, resolveBackgroundSizing, resolveContainerBinding$1 as resolveContainerBinding, resolveImageMode, resolveImageRepeatMode, resolveRenderableImageSize, rewriteProto, richTextAttributeTransform, richtextModule, rippleEffect, rotateX, rotateY, rotateZ, rotationScan, roughModule, rowBottomToTop, rowCenterToEdge, rowEdgeToCenter, rowTopToBottom, runFill, runStroke, scale, scaleMat4, segments, setPoptipTheme, shouldClipImageByLayout, shouldUseMat4, smartInvertStrategy, snakeWave, snapLength, spiralEffect, splitArc, splitArea, splitCircle, splitLine, splitPath, splitPolygon, splitRect, splitToGrids, starModule, strCommandMap, strokeVisible, symbolModule, tan2AngleToAngle, textAttributesToStyle, textDrawOffsetX, textDrawOffsetY, textIntersect, textLayoutOffsetY, textModule, ticks, transformMat4, transformPointForCanvas, transformUtil, transitionRegistry, translate, traverseGroup, version, verticalLayout, vglobal, waitForAllSubLayers, wrapCanvas, wrapContext, xul };
|