@visactor/vrender-kits 1.0.0-alpha.7 → 1.0.0-alpha.9
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/canvas/index.js +1 -2
- package/cjs/env/contributions/harmony-contribution.js +1 -1
- package/cjs/env/contributions/lynx-contribution.js +1 -1
- package/cjs/event/extension/drag.js +1 -1
- package/cjs/event/extension/gesture.js +1 -1
- package/cjs/event/extension/index.js +1 -1
- package/cjs/event/extension/interface.js +1 -1
- package/cjs/graphic/constants.js +2 -1
- package/cjs/graphic/gif-image.js +1 -2
- package/cjs/tools/dynamicTexture.js +0 -2
- package/es/canvas/contributions/create-canvas-module.js +1 -1
- package/es/canvas/contributions/modules.js +1 -1
- package/es/canvas/index.js +1 -2
- package/es/env/contributions/harmony-contribution.js +1 -1
- package/es/env/contributions/lynx-contribution.js +1 -1
- package/es/event/extension/drag.js +1 -1
- package/es/event/extension/gesture.js +1 -1
- package/es/event/extension/index.js +1 -1
- package/es/event/extension/interface.js +1 -1
- package/es/graphic/constants.js +2 -1
- package/es/graphic/gif-image.js +1 -2
- package/es/tools/dynamicTexture.js +0 -2
- 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/cjs/canvas/index.js
CHANGED
|
@@ -17,5 +17,4 @@ var __createBinding = this && this.__createBinding || (Object.create ? function(
|
|
|
17
17
|
|
|
18
18
|
Object.defineProperty(exports, "__esModule", {
|
|
19
19
|
value: !0
|
|
20
|
-
}), __exportStar(require("./contributions/modules"), exports);
|
|
21
|
-
//# sourceMappingURL=index.js.map
|
|
20
|
+
}), __exportStar(require("./contributions/modules"), exports);
|
|
@@ -96,4 +96,4 @@ let HarmonyEnvContribution = class extends vrender_core_1.BaseEnvContribution {
|
|
|
96
96
|
|
|
97
97
|
HarmonyEnvContribution = __decorate([ (0, vrender_core_1.injectable)(), __metadata("design:paramtypes", []) ], HarmonyEnvContribution),
|
|
98
98
|
exports.HarmonyEnvContribution = HarmonyEnvContribution;
|
|
99
|
-
//# sourceMappingURL=harmony-contribution.js.map
|
|
99
|
+
//# sourceMappingURL=harmony-contribution.js.map
|
|
@@ -129,4 +129,4 @@ let LynxEnvContribution = class extends vrender_core_1.BaseEnvContribution {
|
|
|
129
129
|
|
|
130
130
|
LynxEnvContribution = __decorate([ (0, vrender_core_1.injectable)(), __metadata("design:paramtypes", []) ], LynxEnvContribution),
|
|
131
131
|
exports.LynxEnvContribution = LynxEnvContribution;
|
|
132
|
-
//# sourceMappingURL=lynx-contribution.js.map
|
|
132
|
+
//# sourceMappingURL=lynx-contribution.js.map
|
package/cjs/graphic/constants.js
CHANGED
|
@@ -6,4 +6,5 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
|
|
7
7
|
const vrender_core_1 = require("@visactor/vrender-core");
|
|
8
8
|
|
|
9
|
-
exports.GIFIMAGE_NUMBER_TYPE = vrender_core_1.Generator.GenAutoIncrementId(), exports.LOTTIE_NUMBER_TYPE = vrender_core_1.Generator.GenAutoIncrementId();
|
|
9
|
+
exports.GIFIMAGE_NUMBER_TYPE = vrender_core_1.Generator.GenAutoIncrementId(), exports.LOTTIE_NUMBER_TYPE = vrender_core_1.Generator.GenAutoIncrementId();
|
|
10
|
+
//# sourceMappingURL=constants.js.map
|
package/cjs/graphic/gif-image.js
CHANGED
|
@@ -60,5 +60,4 @@ function createGifImage(attributes) {
|
|
|
60
60
|
return new GifImage(attributes);
|
|
61
61
|
}
|
|
62
62
|
|
|
63
|
-
exports.GifImage = GifImage, exports.createGifImage = createGifImage;
|
|
64
|
-
//# sourceMappingURL=gif-image.js.map
|
|
63
|
+
exports.GifImage = GifImage, exports.createGifImage = createGifImage;
|
|
@@ -6,4 +6,4 @@ export function createModule(CanvasConstructor, ContextConstructor) {
|
|
|
6
6
|
bind(Context2dFactory).toDynamicValue((() => (params, dpr) => new ContextConstructor(params, dpr))).whenTargetNamed(ContextConstructor.env);
|
|
7
7
|
}));
|
|
8
8
|
}
|
|
9
|
-
//# sourceMappingURL=create-canvas-module.js.map
|
|
9
|
+
//# sourceMappingURL=create-canvas-module.js.map
|
package/es/canvas/index.js
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
export * from "./contributions/modules";
|
|
2
|
-
//# sourceMappingURL=index.js.map
|
|
1
|
+
export * from "./contributions/modules";
|
|
@@ -93,4 +93,4 @@ let HarmonyEnvContribution = class extends BaseEnvContribution {
|
|
|
93
93
|
HarmonyEnvContribution = __decorate([ injectable(), __metadata("design:paramtypes", []) ], HarmonyEnvContribution);
|
|
94
94
|
|
|
95
95
|
export { HarmonyEnvContribution };
|
|
96
|
-
//# sourceMappingURL=harmony-contribution.js.map
|
|
96
|
+
//# sourceMappingURL=harmony-contribution.js.map
|
|
@@ -124,4 +124,4 @@ let LynxEnvContribution = class extends BaseEnvContribution {
|
|
|
124
124
|
LynxEnvContribution = __decorate([ injectable(), __metadata("design:paramtypes", []) ], LynxEnvContribution);
|
|
125
125
|
|
|
126
126
|
export { LynxEnvContribution };
|
|
127
|
-
//# sourceMappingURL=lynx-contribution.js.map
|
|
127
|
+
//# sourceMappingURL=lynx-contribution.js.map
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { };
|
|
2
|
-
//# sourceMappingURL=interface.js.map
|
|
2
|
+
//# sourceMappingURL=interface.js.map
|
package/es/graphic/constants.js
CHANGED
|
@@ -2,4 +2,5 @@ import { Generator } from "@visactor/vrender-core";
|
|
|
2
2
|
|
|
3
3
|
export const GIFIMAGE_NUMBER_TYPE = Generator.GenAutoIncrementId();
|
|
4
4
|
|
|
5
|
-
export const LOTTIE_NUMBER_TYPE = Generator.GenAutoIncrementId();
|
|
5
|
+
export const LOTTIE_NUMBER_TYPE = Generator.GenAutoIncrementId();
|
|
6
|
+
//# sourceMappingURL=constants.js.map
|
package/es/graphic/gif-image.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visactor/vrender-kits",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.9",
|
|
4
4
|
"description": "",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"main": "cjs/index.js",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
],
|
|
14
14
|
"dependencies": {
|
|
15
15
|
"@visactor/vutils": "1.0.1",
|
|
16
|
-
"@visactor/vrender-core": "1.0.0-alpha.
|
|
16
|
+
"@visactor/vrender-core": "1.0.0-alpha.9",
|
|
17
17
|
"@resvg/resvg-js": "2.4.1",
|
|
18
18
|
"roughjs": "4.5.2",
|
|
19
19
|
"gifuct-js": "2.1.2",
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
"vite": "3.2.6",
|
|
34
34
|
"typescript": "4.9.5",
|
|
35
35
|
"cross-env": "^7.0.3",
|
|
36
|
-
"@internal/bundler": "0.0.1",
|
|
37
36
|
"@internal/eslint-config": "0.0.1",
|
|
37
|
+
"@internal/bundler": "0.0.1",
|
|
38
38
|
"@internal/ts-config": "0.0.1"
|
|
39
39
|
},
|
|
40
40
|
"keywords": [
|