@visactor/vrender-kits 1.1.4-alpha.0 → 1.1.4
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/canvas/contributions/create-canvas-module.js +1 -1
- package/cjs/canvas/contributions/modules.js +1 -1
- package/cjs/env/contributions/canvas-wrap.js +1 -1
- package/cjs/env/contributions/feishu-contribution.js +1 -1
- package/dist/index.es.js +16 -3
- package/es/canvas/contributions/create-canvas-module.js +1 -1
- package/es/canvas/contributions/modules.js +1 -1
- package/es/env/contributions/canvas-wrap.js +1 -1
- package/es/env/contributions/feishu-contribution.js +1 -1
- package/package.json +3 -3
|
@@ -45,4 +45,4 @@ exports.loadAllCavnvas = loadAllCavnvas, exports.loadBrowserCanvas = loadBrowser
|
|
|
45
45
|
exports.loadFeishuCanvas = loadFeishuCanvas, exports.loadLynxCanvas = loadLynxCanvas,
|
|
46
46
|
exports.loadNodeCanvas = loadNodeCanvas, exports.loadTaroCanvas = loadTaroCanvas,
|
|
47
47
|
exports.loadTTCanvas = loadTTCanvas, exports.loadWxCanvas = loadWxCanvas;
|
|
48
|
-
//# sourceMappingURL=modules.js.map
|
|
48
|
+
//# sourceMappingURL=modules.js.map
|
package/dist/index.es.js
CHANGED
|
@@ -8573,12 +8573,12 @@ const NOWORK_ANIMATE_ATTR = {
|
|
|
8573
8573
|
cursor: 1,
|
|
8574
8574
|
html: 1
|
|
8575
8575
|
};
|
|
8576
|
-
class
|
|
8576
|
+
class GraphicImpl extends Node {
|
|
8577
8577
|
static mixin(source) {
|
|
8578
8578
|
const keys = Object.keys(source);
|
|
8579
8579
|
for (let i = 0; i < keys.length; ++i) {
|
|
8580
8580
|
const propertyName = keys[i];
|
|
8581
|
-
Object.defineProperty(
|
|
8581
|
+
Object.defineProperty(this.prototype, propertyName, Object.getOwnPropertyDescriptor(source, propertyName));
|
|
8582
8582
|
}
|
|
8583
8583
|
}
|
|
8584
8584
|
get AABBBounds() {
|
|
@@ -9817,13 +9817,26 @@ class Graphic extends Node {
|
|
|
9817
9817
|
return null;
|
|
9818
9818
|
}
|
|
9819
9819
|
}
|
|
9820
|
+
GraphicImpl.userSymbolMap = {};
|
|
9821
|
+
const GRAPHIC_CLASS_SYMBOL = Symbol.for("@visactor/vrender-core/graphic-class");
|
|
9822
|
+
function createGraphicClassState() {
|
|
9823
|
+
return {
|
|
9824
|
+
Graphic: GraphicImpl
|
|
9825
|
+
};
|
|
9826
|
+
}
|
|
9827
|
+
function getGraphicClassState() {
|
|
9828
|
+
var _a;
|
|
9829
|
+
const globalScope = globalThis;
|
|
9830
|
+
return null !== (_a = globalScope[GRAPHIC_CLASS_SYMBOL]) && void 0 !== _a || (globalScope[GRAPHIC_CLASS_SYMBOL] = createGraphicClassState()), globalScope[GRAPHIC_CLASS_SYMBOL];
|
|
9831
|
+
}
|
|
9832
|
+
const Graphic = getGraphicClassState().Graphic;
|
|
9820
9833
|
function backgroundNotImage(image) {
|
|
9821
9834
|
return "string" == typeof image ? !(image.startsWith("<svg") || isValidUrl(image) || image.includes("/") || isBase64(image)) : !(!image.fill && !image.stroke) || !("string" != typeof image.gradient || !Array.isArray(image.stops));
|
|
9822
9835
|
}
|
|
9823
9836
|
function isExternalTexture(texture) {
|
|
9824
9837
|
return !!texture && ("string" == typeof texture ? !builtinTextureTypes.has(texture) && (texture.startsWith("<svg") || isValidUrl(texture) || texture.includes("/") || isBase64(texture)) : isObject(texture));
|
|
9825
9838
|
}
|
|
9826
|
-
Graphic.
|
|
9839
|
+
Graphic.mixin(EventTarget);
|
|
9827
9840
|
|
|
9828
9841
|
const defaultThemeObj = {
|
|
9829
9842
|
arc: DefaultArcAttribute,
|
|
@@ -8,4 +8,4 @@ export function createModule(CanvasConstructor, ContextConstructor) {
|
|
|
8
8
|
hasContextFactory || bindingContainer.bind(Context2dFactory).toDynamicValue((() => (params, dpr) => new ContextConstructor(params, dpr))).whenTargetNamed(ContextConstructor.env);
|
|
9
9
|
};
|
|
10
10
|
}
|
|
11
|
-
//# sourceMappingURL=create-canvas-module.js.map
|
|
11
|
+
//# sourceMappingURL=create-canvas-module.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visactor/vrender-kits",
|
|
3
|
-
"version": "1.1.4
|
|
3
|
+
"version": "1.1.4",
|
|
4
4
|
"description": "",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"main": "cjs/index-node.js",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
],
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"@visactor/vutils": "~1.0.12",
|
|
47
|
-
"@visactor/vrender-core": "1.1.4
|
|
47
|
+
"@visactor/vrender-core": "1.1.4",
|
|
48
48
|
"@resvg/resvg-js": "2.4.1",
|
|
49
49
|
"roughjs": "4.6.6",
|
|
50
50
|
"gifuct-js": "2.1.2",
|
|
@@ -69,8 +69,8 @@
|
|
|
69
69
|
"vite": "3.2.6",
|
|
70
70
|
"typescript": "4.9.5",
|
|
71
71
|
"cross-env": "^7.0.3",
|
|
72
|
-
"@internal/eslint-config": "0.0.1",
|
|
73
72
|
"@internal/ts-config": "0.0.1",
|
|
73
|
+
"@internal/eslint-config": "0.0.1",
|
|
74
74
|
"@internal/bundler": "0.0.1"
|
|
75
75
|
},
|
|
76
76
|
"keywords": [
|