@tsparticles/plugin-export-image 4.0.0-alpha.8 → 4.0.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/291.min.js +1 -0
- package/668.min.js +1 -0
- package/browser/ExportImagePlugin.js +1 -3
- package/browser/ExportImagePluginInstance.js +16 -15
- package/browser/index.js +1 -1
- package/cjs/ExportImagePlugin.js +1 -3
- package/cjs/ExportImagePluginInstance.js +16 -15
- package/cjs/index.js +1 -1
- package/dist_browser_ExportImagePluginInstance_js.js +2 -2
- package/dist_browser_ExportImagePlugin_js.js +2 -2
- package/esm/ExportImagePlugin.js +1 -3
- package/esm/ExportImagePluginInstance.js +16 -15
- package/esm/index.js +1 -1
- package/package.json +2 -2
- package/report.html +1 -1
- package/tsparticles.plugin.export.image.js +22 -10
- package/tsparticles.plugin.export.image.min.js +2 -2
- package/types/ExportImagePlugin.d.ts +1 -2
- package/umd/ExportImagePlugin.js +1 -3
- package/umd/ExportImagePluginInstance.js +16 -15
- package/umd/index.js +1 -1
- package/232.min.js +0 -2
- package/232.min.js.LICENSE.txt +0 -1
- package/775.min.js +0 -2
- package/775.min.js.LICENSE.txt +0 -1
- package/tsparticles.plugin.export.image.min.js.LICENSE.txt +0 -1
package/291.min.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";(this.webpackChunk_tsparticles_plugin_export_image=this.webpackChunk_tsparticles_plugin_export_image||[]).push([[291],{291(e,t,i){i.d(t,{ExportImagePlugin:()=>n});class n{id="export-image";async getPlugin(e){let{ExportImagePluginInstance:t}=await i.e(668).then(i.bind(i,668));return new t(e)}loadOptions(){}needsPlugin(){return!0}}}}]);
|
package/668.min.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";(this.webpackChunk_tsparticles_plugin_export_image=this.webpackChunk_tsparticles_plugin_export_image||[]).push([[668],{668(t,e,a){a.d(e,{ExportImagePluginInstance:()=>i});class i{_container;constructor(t){this._container=t}async export(t,e){let a={supported:!1};return"image"===t&&(a.supported=!0,a.blob=await this._exportImage(e)),a}_exportImage=async t=>{let e=this._container.canvas.element;if(e)return new Promise(a=>{e.toBlob(t=>{t?a(t):a(void 0)},t.type??"image/png",t.quality)})}}}}]);
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
export class ExportImagePlugin {
|
|
2
|
-
|
|
3
|
-
this.id = "export-image";
|
|
4
|
-
}
|
|
2
|
+
id = "export-image";
|
|
5
3
|
async getPlugin(container) {
|
|
6
4
|
const { ExportImagePluginInstance } = await import("./ExportImagePluginInstance.js");
|
|
7
5
|
return new ExportImagePluginInstance(container);
|
|
@@ -1,20 +1,6 @@
|
|
|
1
1
|
export class ExportImagePluginInstance {
|
|
2
|
+
_container;
|
|
2
3
|
constructor(container) {
|
|
3
|
-
this._exportImage = async (data) => {
|
|
4
|
-
const element = this._container.canvas.element;
|
|
5
|
-
if (!element) {
|
|
6
|
-
return;
|
|
7
|
-
}
|
|
8
|
-
return new Promise(resolve => {
|
|
9
|
-
element.toBlob(blob => {
|
|
10
|
-
if (!blob) {
|
|
11
|
-
resolve(undefined);
|
|
12
|
-
return;
|
|
13
|
-
}
|
|
14
|
-
resolve(blob);
|
|
15
|
-
}, data.type ?? "image/png", data.quality);
|
|
16
|
-
});
|
|
17
|
-
};
|
|
18
4
|
this._container = container;
|
|
19
5
|
}
|
|
20
6
|
async export(type, data) {
|
|
@@ -29,4 +15,19 @@ export class ExportImagePluginInstance {
|
|
|
29
15
|
}
|
|
30
16
|
return res;
|
|
31
17
|
}
|
|
18
|
+
_exportImage = async (data) => {
|
|
19
|
+
const element = this._container.canvas.element;
|
|
20
|
+
if (!element) {
|
|
21
|
+
return;
|
|
22
|
+
}
|
|
23
|
+
return new Promise(resolve => {
|
|
24
|
+
element.toBlob(blob => {
|
|
25
|
+
if (!blob) {
|
|
26
|
+
resolve(undefined);
|
|
27
|
+
return;
|
|
28
|
+
}
|
|
29
|
+
resolve(blob);
|
|
30
|
+
}, data.type ?? "image/png", data.quality);
|
|
31
|
+
});
|
|
32
|
+
};
|
|
32
33
|
}
|
package/browser/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export async function loadExportImagePlugin(engine) {
|
|
2
|
-
engine.checkVersion("4.0.0-
|
|
2
|
+
engine.checkVersion("4.0.0-beta.0");
|
|
3
3
|
await engine.register(async (e) => {
|
|
4
4
|
const { ExportImagePlugin } = await import("./ExportImagePlugin.js");
|
|
5
5
|
e.addPlugin(new ExportImagePlugin());
|
package/cjs/ExportImagePlugin.js
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
export class ExportImagePlugin {
|
|
2
|
-
|
|
3
|
-
this.id = "export-image";
|
|
4
|
-
}
|
|
2
|
+
id = "export-image";
|
|
5
3
|
async getPlugin(container) {
|
|
6
4
|
const { ExportImagePluginInstance } = await import("./ExportImagePluginInstance.js");
|
|
7
5
|
return new ExportImagePluginInstance(container);
|
|
@@ -1,20 +1,6 @@
|
|
|
1
1
|
export class ExportImagePluginInstance {
|
|
2
|
+
_container;
|
|
2
3
|
constructor(container) {
|
|
3
|
-
this._exportImage = async (data) => {
|
|
4
|
-
const element = this._container.canvas.element;
|
|
5
|
-
if (!element) {
|
|
6
|
-
return;
|
|
7
|
-
}
|
|
8
|
-
return new Promise(resolve => {
|
|
9
|
-
element.toBlob(blob => {
|
|
10
|
-
if (!blob) {
|
|
11
|
-
resolve(undefined);
|
|
12
|
-
return;
|
|
13
|
-
}
|
|
14
|
-
resolve(blob);
|
|
15
|
-
}, data.type ?? "image/png", data.quality);
|
|
16
|
-
});
|
|
17
|
-
};
|
|
18
4
|
this._container = container;
|
|
19
5
|
}
|
|
20
6
|
async export(type, data) {
|
|
@@ -29,4 +15,19 @@ export class ExportImagePluginInstance {
|
|
|
29
15
|
}
|
|
30
16
|
return res;
|
|
31
17
|
}
|
|
18
|
+
_exportImage = async (data) => {
|
|
19
|
+
const element = this._container.canvas.element;
|
|
20
|
+
if (!element) {
|
|
21
|
+
return;
|
|
22
|
+
}
|
|
23
|
+
return new Promise(resolve => {
|
|
24
|
+
element.toBlob(blob => {
|
|
25
|
+
if (!blob) {
|
|
26
|
+
resolve(undefined);
|
|
27
|
+
return;
|
|
28
|
+
}
|
|
29
|
+
resolve(blob);
|
|
30
|
+
}, data.type ?? "image/png", data.quality);
|
|
31
|
+
});
|
|
32
|
+
};
|
|
32
33
|
}
|
package/cjs/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export async function loadExportImagePlugin(engine) {
|
|
2
|
-
engine.checkVersion("4.0.0-
|
|
2
|
+
engine.checkVersion("4.0.0-beta.0");
|
|
3
3
|
await engine.register(async (e) => {
|
|
4
4
|
const { ExportImagePlugin } = await import("./ExportImagePlugin.js");
|
|
5
5
|
e.addPlugin(new ExportImagePlugin());
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Demo / Generator : https://particles.js.org/
|
|
5
5
|
* GitHub : https://www.github.com/matteobruni/tsparticles
|
|
6
6
|
* How to use? : Check the GitHub README
|
|
7
|
-
* v4.0.0-
|
|
7
|
+
* v4.0.0-beta.0
|
|
8
8
|
*/
|
|
9
9
|
"use strict";
|
|
10
10
|
/*
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
\***************************************************/
|
|
24
24
|
(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
25
25
|
|
|
26
|
-
eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ ExportImagePluginInstance: () => (/* binding */ ExportImagePluginInstance)\n/* harmony export */ });\nclass ExportImagePluginInstance {\n
|
|
26
|
+
eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ ExportImagePluginInstance: () => (/* binding */ ExportImagePluginInstance)\n/* harmony export */ });\nclass ExportImagePluginInstance {\n _container;\n constructor(container){\n this._container = container;\n }\n async export(type, data) {\n const res = {\n supported: false\n };\n switch(type){\n case \"image\":\n res.supported = true;\n res.blob = await this._exportImage(data);\n break;\n }\n return res;\n }\n _exportImage = async (data)=>{\n const element = this._container.canvas.element;\n if (!element) {\n return;\n }\n return new Promise((resolve)=>{\n element.toBlob((blob)=>{\n if (!blob) {\n resolve(undefined);\n return;\n }\n resolve(blob);\n }, data.type ?? \"image/png\", data.quality);\n });\n };\n}\n\n\n//# sourceURL=webpack://@tsparticles/plugin-export-image/./dist/browser/ExportImagePluginInstance.js?\n}");
|
|
27
27
|
|
|
28
28
|
/***/ }
|
|
29
29
|
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Demo / Generator : https://particles.js.org/
|
|
5
5
|
* GitHub : https://www.github.com/matteobruni/tsparticles
|
|
6
6
|
* How to use? : Check the GitHub README
|
|
7
|
-
* v4.0.0-
|
|
7
|
+
* v4.0.0-beta.0
|
|
8
8
|
*/
|
|
9
9
|
"use strict";
|
|
10
10
|
/*
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
\*******************************************/
|
|
24
24
|
(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
25
25
|
|
|
26
|
-
eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ ExportImagePlugin: () => (/* binding */ ExportImagePlugin)\n/* harmony export */ });\nclass ExportImagePlugin {\n
|
|
26
|
+
eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ ExportImagePlugin: () => (/* binding */ ExportImagePlugin)\n/* harmony export */ });\nclass ExportImagePlugin {\n id = \"export-image\";\n async getPlugin(container) {\n const { ExportImagePluginInstance } = await __webpack_require__.e(/*! import() */ \"dist_browser_ExportImagePluginInstance_js\").then(__webpack_require__.bind(__webpack_require__, /*! ./ExportImagePluginInstance.js */ \"./dist/browser/ExportImagePluginInstance.js\"));\n return new ExportImagePluginInstance(container);\n }\n loadOptions() {}\n needsPlugin() {\n return true;\n }\n}\n\n\n//# sourceURL=webpack://@tsparticles/plugin-export-image/./dist/browser/ExportImagePlugin.js?\n}");
|
|
27
27
|
|
|
28
28
|
/***/ }
|
|
29
29
|
|
package/esm/ExportImagePlugin.js
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
export class ExportImagePlugin {
|
|
2
|
-
|
|
3
|
-
this.id = "export-image";
|
|
4
|
-
}
|
|
2
|
+
id = "export-image";
|
|
5
3
|
async getPlugin(container) {
|
|
6
4
|
const { ExportImagePluginInstance } = await import("./ExportImagePluginInstance.js");
|
|
7
5
|
return new ExportImagePluginInstance(container);
|
|
@@ -1,20 +1,6 @@
|
|
|
1
1
|
export class ExportImagePluginInstance {
|
|
2
|
+
_container;
|
|
2
3
|
constructor(container) {
|
|
3
|
-
this._exportImage = async (data) => {
|
|
4
|
-
const element = this._container.canvas.element;
|
|
5
|
-
if (!element) {
|
|
6
|
-
return;
|
|
7
|
-
}
|
|
8
|
-
return new Promise(resolve => {
|
|
9
|
-
element.toBlob(blob => {
|
|
10
|
-
if (!blob) {
|
|
11
|
-
resolve(undefined);
|
|
12
|
-
return;
|
|
13
|
-
}
|
|
14
|
-
resolve(blob);
|
|
15
|
-
}, data.type ?? "image/png", data.quality);
|
|
16
|
-
});
|
|
17
|
-
};
|
|
18
4
|
this._container = container;
|
|
19
5
|
}
|
|
20
6
|
async export(type, data) {
|
|
@@ -29,4 +15,19 @@ export class ExportImagePluginInstance {
|
|
|
29
15
|
}
|
|
30
16
|
return res;
|
|
31
17
|
}
|
|
18
|
+
_exportImage = async (data) => {
|
|
19
|
+
const element = this._container.canvas.element;
|
|
20
|
+
if (!element) {
|
|
21
|
+
return;
|
|
22
|
+
}
|
|
23
|
+
return new Promise(resolve => {
|
|
24
|
+
element.toBlob(blob => {
|
|
25
|
+
if (!blob) {
|
|
26
|
+
resolve(undefined);
|
|
27
|
+
return;
|
|
28
|
+
}
|
|
29
|
+
resolve(blob);
|
|
30
|
+
}, data.type ?? "image/png", data.quality);
|
|
31
|
+
});
|
|
32
|
+
};
|
|
32
33
|
}
|
package/esm/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export async function loadExportImagePlugin(engine) {
|
|
2
|
-
engine.checkVersion("4.0.0-
|
|
2
|
+
engine.checkVersion("4.0.0-beta.0");
|
|
3
3
|
await engine.register(async (e) => {
|
|
4
4
|
const { ExportImagePlugin } = await import("./ExportImagePlugin.js");
|
|
5
5
|
e.addPlugin(new ExportImagePlugin());
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsparticles/plugin-export-image",
|
|
3
|
-
"version": "4.0.0-
|
|
3
|
+
"version": "4.0.0-beta.0",
|
|
4
4
|
"description": "tsParticles export image plugin",
|
|
5
5
|
"homepage": "https://particles.js.org",
|
|
6
6
|
"repository": {
|
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
"./package.json": "./package.json"
|
|
101
101
|
},
|
|
102
102
|
"dependencies": {
|
|
103
|
-
"@tsparticles/engine": "4.0.0-
|
|
103
|
+
"@tsparticles/engine": "4.0.0-beta.0"
|
|
104
104
|
},
|
|
105
105
|
"publishConfig": {
|
|
106
106
|
"access": "public"
|
package/report.html
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="UTF-8"/>
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
|
6
|
-
<title>@tsparticles/plugin-export-image [
|
|
6
|
+
<title>@tsparticles/plugin-export-image [19 Mar 2026 at 14:02]</title>
|
|
7
7
|
<link rel="shortcut icon" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAMAAACdt4HsAAABrVBMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+O1foceMD///+J0/qK1Pr7/v8Xdr/9///W8P4UdL7L7P0Scr2r4Pyj3vwad8D5/f/2/f+55f3E6f34+/2H0/ojfMKpzOd0rNgQcb3F3O/j9f7c8v6g3Pz0/P/w+v/q+P7n9v6T1/uQ1vuE0vqLut/y+v+Z2fvt+f+15Pzv9fuc2/vR7v2V2Pvd6/bg9P7I6/285/2y4/yp3/zp8vk8i8kqgMT7/P31+fyv4vxGkcz6/P6/6P3j7vfS5PNnpNUxhcbO7f7F6v3O4vHK3/DA2u631Ouy0eqXweKJud5wqthfoNMMbLvY8f73+v2dxeR8sNtTmdDx9/zX6PSjyeaCtd1YnNGX2PuQveCGt95Nls42h8dLlM3F4vBtAAAAM3RSTlMAAyOx0/sKBvik8opWGBMOAe3l1snDm2E9LSb06eHcu5JpHbarfHZCN9CBb08zzkdNS0kYaptYAAAFV0lEQVRYw92X51/aYBDHHS2O2qqttVbrqNq9m+TJIAYIShBkWwqIiCgoWvfeq7Z2/s29hyQNyUcR7LveGwVyXy6XH8/9rqxglLfUPLxVduUor3h0rfp2TYvpivk37929TkG037hffoX0+peVtZQc1589rigVUdXS/ABSAyEmGIO/1XfvldSK8vs3OqB6u3m0nxmIrvgB0dj7rr7Y9IbuF68hnfFaiHA/sxqm0wciIG43P60qKv9WXWc1RXGh/mFESFABTSBi0sNAKzqet17eCtOb3kZIDwxEEU0oAIJGYxNBDhBND29e0rtXXbcpuPmED9IhEAAQ/AXEaF8EPmnrrKsv0LvWR3fg5sWDNAFZOgAgaKvZDogHNU9MFwnnYROkc56RD5CjAbQX9Ow4g7upCsvYu55aSI/Nj0H1akgKQEUM94dwK65hYRmFU9MIcH/fqJYOZYcnuJSU/waKDgTOEVaVKhwrTRP5XzgSpAITYzom7UvkhFX5VutmxeNnWDjjswTKTyfgluNDGbUpWissXhF3s7mlSml+czWkg3D0l1nNjGNjz3myOQOa1KM/jOS6ebdbAVTCi4gljHSFrviza7tOgRWcS0MOUX9zdNgag5w7rRqA44Lzw0hr1WqES36dFliSJFlh2rXIae3FFcDDgKdxrUIDePr8jGcSClV1u7A9xeN0ModY/pHMxmR1EzRh8TJiwqsHmKW0l4FCEZI+jHio+JdPPE9qwQtTRxku2D8sIeRL2LnxWSllANCQGOIiqVHAz2ye2JR0DcH+HoxDkaADLjgxjKQ+AwCX/g0+DNgdG0ukYCONAe+dbc2IAc6fwt1ARoDSezNHxV2Cmzwv3O6lDMV55edBGwGK9n1+x2F8EDfAGCxug8MhpsMEcTEAWf3rx2vZhe/LAmtIn/6apE6PN0ULKgywD9mmdxbmFl3OvD5AS5fW5zLbv/YHmcsBTjf/afDz3MaZTVCfAP9z6/Bw6ycv8EUBWJIn9zYcoAWWlW9+OzO3vkTy8H+RANLmdrpOuYWdZYEXpo+TlCJrW5EARb7fF+bWdqf3hhyZI1nWJQHgznErZhbjoEsWqi8dQNoE294aldzFurwSABL2XXMf9+H1VQGke9exw5P/AnA5Pv5ngMul7LOvO922iwACu8WkCwLCafvM4CeWPxfA8lNHcWZSoi8EwMAIciKX2Z4SWCMAa3snCZ/G4EA8D6CMLNFsGQhkkz/gQNEBbPCbWsxGUpYVu3z8IyNAknwJkfPMEhLyrdi5RTyUVACkw4GSFRNWJNEW+fgPGwHD8/JxnRuLabN4CGNRkAE23na2+VmEAUmrYymSGjMAYqH84YUIyzgzs3XC7gNgH36Vcc4zKY9o9fgPBXUAiHHwVboBHGLiX6Zcjp1f2wu4tvzZKo0ecPnDtQYDQvJXaBeNzce45Fp28ZQLrEZVuFqgBwOalArKXnW1UzlnSusQKJqKYNuz4tOnI6sZG4zanpemv+7ySU2jbA9h6uhcgpfy6G2PahirDZ6zvq6zDduMVFTKvzw8wgyEdelwY9in3XkEPs3osJuwRQ4qTkfzifndg9Gfc4pdsu82+tTnHZTBa2EAMrqr2t43pguc8tNm7JQVQ2S0ukj2d22dhXYP0/veWtwKrCkNoNimAN5+Xr/oLrxswKbVJjteWrX7eR63o4j9q0GxnaBdWgGA5VStpanIjQmEhV0/nVt5VOFUvix6awJhPcAaTEShgrG+iGyvb5a0Ndb1YGHFPEwoqAinoaykaID1o1pdPNu7XsnCKQ3R+hwWIIhGvORcJUBYXe3Xa3vq/mF/N9V13ugufMkfXn+KHsRD0B8AAAAASUVORK5CYII=" type="image/x-icon" />
|
|
8
8
|
|
|
9
9
|
<script>
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Demo / Generator : https://particles.js.org/
|
|
5
5
|
* GitHub : https://www.github.com/matteobruni/tsparticles
|
|
6
6
|
* How to use? : Check the GitHub README
|
|
7
|
-
* v4.0.0-
|
|
7
|
+
* v4.0.0-beta.0
|
|
8
8
|
*/
|
|
9
9
|
/*
|
|
10
10
|
* ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
|
|
@@ -34,7 +34,7 @@ return /******/ (() => { // webpackBootstrap
|
|
|
34
34
|
\*******************************/
|
|
35
35
|
(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
36
36
|
|
|
37
|
-
eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ loadExportImagePlugin: () => (/* binding */ loadExportImagePlugin)\n/* harmony export */ });\nasync function loadExportImagePlugin(engine) {\n
|
|
37
|
+
eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ loadExportImagePlugin: () => (/* binding */ loadExportImagePlugin)\n/* harmony export */ });\nasync function loadExportImagePlugin(engine) {\n engine.checkVersion(\"4.0.0-beta.0\");\n await engine.register(async (e)=>{\n const { ExportImagePlugin } = await __webpack_require__.e(/*! import() */ \"dist_browser_ExportImagePlugin_js\").then(__webpack_require__.bind(__webpack_require__, /*! ./ExportImagePlugin.js */ \"./dist/browser/ExportImagePlugin.js\"));\n e.addPlugin(new ExportImagePlugin());\n });\n}\n\n\n//# sourceURL=webpack://@tsparticles/plugin-export-image/./dist/browser/index.js?\n}");
|
|
38
38
|
|
|
39
39
|
/***/ }
|
|
40
40
|
|
|
@@ -50,12 +50,6 @@ eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpa
|
|
|
50
50
|
/******/ if (cachedModule !== undefined) {
|
|
51
51
|
/******/ return cachedModule.exports;
|
|
52
52
|
/******/ }
|
|
53
|
-
/******/ // Check if module exists (development only)
|
|
54
|
-
/******/ if (__webpack_modules__[moduleId] === undefined) {
|
|
55
|
-
/******/ var e = new Error("Cannot find module '" + moduleId + "'");
|
|
56
|
-
/******/ e.code = 'MODULE_NOT_FOUND';
|
|
57
|
-
/******/ throw e;
|
|
58
|
-
/******/ }
|
|
59
53
|
/******/ // Create a new module (and put it into the cache)
|
|
60
54
|
/******/ var module = __webpack_module_cache__[moduleId] = {
|
|
61
55
|
/******/ // no module.id needed
|
|
@@ -64,6 +58,12 @@ eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpa
|
|
|
64
58
|
/******/ };
|
|
65
59
|
/******/
|
|
66
60
|
/******/ // Execute the module function
|
|
61
|
+
/******/ if (!(moduleId in __webpack_modules__)) {
|
|
62
|
+
/******/ delete __webpack_module_cache__[moduleId];
|
|
63
|
+
/******/ var e = new Error("Cannot find module '" + moduleId + "'");
|
|
64
|
+
/******/ e.code = 'MODULE_NOT_FOUND';
|
|
65
|
+
/******/ throw e;
|
|
66
|
+
/******/ }
|
|
67
67
|
/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
|
|
68
68
|
/******/
|
|
69
69
|
/******/ // Return the exports of the module
|
|
@@ -108,6 +108,18 @@ eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpa
|
|
|
108
108
|
/******/ };
|
|
109
109
|
/******/ })();
|
|
110
110
|
/******/
|
|
111
|
+
/******/ /* webpack/runtime/global */
|
|
112
|
+
/******/ (() => {
|
|
113
|
+
/******/ __webpack_require__.g = (function() {
|
|
114
|
+
/******/ if (typeof globalThis === 'object') return globalThis;
|
|
115
|
+
/******/ try {
|
|
116
|
+
/******/ return this || new Function('return this')();
|
|
117
|
+
/******/ } catch (e) {
|
|
118
|
+
/******/ if (typeof window === 'object') return window;
|
|
119
|
+
/******/ }
|
|
120
|
+
/******/ })();
|
|
121
|
+
/******/ })();
|
|
122
|
+
/******/
|
|
111
123
|
/******/ /* webpack/runtime/hasOwnProperty shorthand */
|
|
112
124
|
/******/ (() => {
|
|
113
125
|
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
|
|
@@ -172,8 +184,8 @@ eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpa
|
|
|
172
184
|
/******/ /* webpack/runtime/publicPath */
|
|
173
185
|
/******/ (() => {
|
|
174
186
|
/******/ var scriptUrl;
|
|
175
|
-
/******/ if (
|
|
176
|
-
/******/ var document =
|
|
187
|
+
/******/ if (__webpack_require__.g.importScripts) scriptUrl = __webpack_require__.g.location + "";
|
|
188
|
+
/******/ var document = __webpack_require__.g.document;
|
|
177
189
|
/******/ if (!scriptUrl && document) {
|
|
178
190
|
/******/ if (document.currentScript && document.currentScript.tagName.toUpperCase() === 'SCRIPT')
|
|
179
191
|
/******/ scriptUrl = document.currentScript.src;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
!function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{var r=t();for(var o in r)("object"==typeof exports?exports:e)[o]=r[o]}}(this,()=>(()=>{"use strict";var e,t,r,o={},i={};function n(e){var t=i[e];if(void 0!==t)return t.exports;var r=i[e]={exports:{}};return o[e](r,r.exports,n),r.exports}n.m=o,n.d=(e,t)=>{for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.f={},n.e=e=>Promise.all(Object.keys(n.f).reduce((t,r)=>(n.f[r](e,t),t),[])),n.u=e=>""+e+".min.js",n.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||Function("return this")()}catch(e){if("object"==typeof window)return window}}(),n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),a={},n.l=(e,t,r,o)=>{if(a[e])return void a[e].push(t);if(void 0!==r)for(var i,p,s=document.getElementsByTagName("script"),l=0;l<s.length;l++){var c=s[l];if(c.getAttribute("src")==e||c.getAttribute("data-webpack")=="@tsparticles/plugin-export-image:"+r){i=c;break}}i||(p=!0,(i=document.createElement("script")).charset="utf-8",n.nc&&i.setAttribute("nonce",n.nc),i.setAttribute("data-webpack","@tsparticles/plugin-export-image:"+r),i.src=e),a[e]=[t];var u=(t,r)=>{i.onerror=i.onload=null,clearTimeout(d);var o=a[e];if(delete a[e],i.parentNode&&i.parentNode.removeChild(i),o&&o.forEach(e=>e(r)),t)return t(r)},d=setTimeout(u.bind(null,void 0,{type:"timeout",target:i}),12e4);i.onerror=u.bind(null,i.onerror),i.onload=u.bind(null,i.onload),p&&document.head.appendChild(i)},n.r=e=>{"u">typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.g.importScripts&&(p=n.g.location+"");var a,p,s=n.g.document;if(!p&&s&&(s.currentScript&&"SCRIPT"===s.currentScript.tagName.toUpperCase()&&(p=s.currentScript.src),!p)){var l=s.getElementsByTagName("script");if(l.length)for(var c=l.length-1;c>-1&&(!p||!/^http(s?):/.test(p));)p=l[c--].src}if(!p)throw Error("Automatic publicPath is not supported in this browser");n.p=p=p.replace(/^blob:/,"").replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),e={843:0},n.f.j=(t,r)=>{var o=n.o(e,t)?e[t]:void 0;if(0!==o)if(o)r.push(o[2]);else{var i=new Promise((r,i)=>o=e[t]=[r,i]);r.push(o[2]=i);var a=n.p+n.u(t),p=Error();n.l(a,r=>{if(n.o(e,t)&&(0!==(o=e[t])&&(e[t]=void 0),o)){var i=r&&("load"===r.type?"missing":r.type),a=r&&r.target&&r.target.src;p.message="Loading chunk "+t+` failed.
|
|
2
|
+
(`+i+": "+a+")",p.name="ChunkLoadError",p.type=i,p.request=a,o[1](p)}},"chunk-"+t,t)}},t=(t,r)=>{var o,i,[a,p,s]=r,l=0;if(a.some(t=>0!==e[t])){for(o in p)n.o(p,o)&&(n.m[o]=p[o]);s&&s(n)}for(t&&t(r);l<a.length;l++)i=a[l],n.o(e,i)&&e[i]&&e[i][0](),e[i]=0},(r=this.webpackChunk_tsparticles_plugin_export_image=this.webpackChunk_tsparticles_plugin_export_image||[]).forEach(t.bind(null,0)),r.push=t.bind(null,r.push.bind(r));var u={};async function d(e){e.checkVersion("4.0.0-beta.0"),await e.register(async e=>{let{ExportImagePlugin:t}=await n.e(291).then(n.bind(n,291));e.addPlugin(new t)})}return n.r(u),n.d(u,{loadExportImagePlugin:()=>d}),u})());
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import type { Container, IContainerPlugin, IPlugin } from "@tsparticles/engine";
|
|
2
2
|
export declare class ExportImagePlugin implements IPlugin {
|
|
3
|
-
readonly id
|
|
4
|
-
constructor();
|
|
3
|
+
readonly id = "export-image";
|
|
5
4
|
getPlugin(container: Container): Promise<IContainerPlugin>;
|
|
6
5
|
loadOptions(): void;
|
|
7
6
|
needsPlugin(): boolean;
|
package/umd/ExportImagePlugin.js
CHANGED
|
@@ -45,9 +45,7 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
45
45
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
46
46
|
exports.ExportImagePlugin = void 0;
|
|
47
47
|
class ExportImagePlugin {
|
|
48
|
-
|
|
49
|
-
this.id = "export-image";
|
|
50
|
-
}
|
|
48
|
+
id = "export-image";
|
|
51
49
|
async getPlugin(container) {
|
|
52
50
|
const { ExportImagePluginInstance } = await (__syncRequire ? Promise.resolve().then(() => __importStar(require("./ExportImagePluginInstance.js"))) : new Promise((resolve_1, reject_1) => { require(["./ExportImagePluginInstance.js"], resolve_1, reject_1); }).then(__importStar));
|
|
53
51
|
return new ExportImagePluginInstance(container);
|
|
@@ -11,22 +11,8 @@
|
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
12
|
exports.ExportImagePluginInstance = void 0;
|
|
13
13
|
class ExportImagePluginInstance {
|
|
14
|
+
_container;
|
|
14
15
|
constructor(container) {
|
|
15
|
-
this._exportImage = async (data) => {
|
|
16
|
-
const element = this._container.canvas.element;
|
|
17
|
-
if (!element) {
|
|
18
|
-
return;
|
|
19
|
-
}
|
|
20
|
-
return new Promise(resolve => {
|
|
21
|
-
element.toBlob(blob => {
|
|
22
|
-
if (!blob) {
|
|
23
|
-
resolve(undefined);
|
|
24
|
-
return;
|
|
25
|
-
}
|
|
26
|
-
resolve(blob);
|
|
27
|
-
}, data.type ?? "image/png", data.quality);
|
|
28
|
-
});
|
|
29
|
-
};
|
|
30
16
|
this._container = container;
|
|
31
17
|
}
|
|
32
18
|
async export(type, data) {
|
|
@@ -41,6 +27,21 @@
|
|
|
41
27
|
}
|
|
42
28
|
return res;
|
|
43
29
|
}
|
|
30
|
+
_exportImage = async (data) => {
|
|
31
|
+
const element = this._container.canvas.element;
|
|
32
|
+
if (!element) {
|
|
33
|
+
return;
|
|
34
|
+
}
|
|
35
|
+
return new Promise(resolve => {
|
|
36
|
+
element.toBlob(blob => {
|
|
37
|
+
if (!blob) {
|
|
38
|
+
resolve(undefined);
|
|
39
|
+
return;
|
|
40
|
+
}
|
|
41
|
+
resolve(blob);
|
|
42
|
+
}, data.type ?? "image/png", data.quality);
|
|
43
|
+
});
|
|
44
|
+
};
|
|
44
45
|
}
|
|
45
46
|
exports.ExportImagePluginInstance = ExportImagePluginInstance;
|
|
46
47
|
});
|
package/umd/index.js
CHANGED
|
@@ -45,7 +45,7 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
45
45
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
46
46
|
exports.loadExportImagePlugin = loadExportImagePlugin;
|
|
47
47
|
async function loadExportImagePlugin(engine) {
|
|
48
|
-
engine.checkVersion("4.0.0-
|
|
48
|
+
engine.checkVersion("4.0.0-beta.0");
|
|
49
49
|
await engine.register(async (e) => {
|
|
50
50
|
const { ExportImagePlugin } = await (__syncRequire ? Promise.resolve().then(() => __importStar(require("./ExportImagePlugin.js"))) : new Promise((resolve_1, reject_1) => { require(["./ExportImagePlugin.js"], resolve_1, reject_1); }).then(__importStar));
|
|
51
51
|
e.addPlugin(new ExportImagePlugin());
|
package/232.min.js
DELETED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
/*! For license information please see 232.min.js.LICENSE.txt */
|
|
2
|
-
(this.webpackChunk_tsparticles_plugin_export_image=this.webpackChunk_tsparticles_plugin_export_image||[]).push([[232],{232(t,e,i){i.d(e,{ExportImagePluginInstance:()=>s});class s{constructor(t){this._exportImage=async t=>{const e=this._container.canvas.element;if(e)return new Promise((i=>{e.toBlob((t=>{i(t||void 0)}),t.type??"image/png",t.quality)}))},this._container=t}async export(t,e){const i={supported:!1};if("image"===t)i.supported=!0,i.blob=await this._exportImage(e);return i}}}}]);
|
package/232.min.js.LICENSE.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! tsParticles Export Image Plugin v4.0.0-alpha.8 by Matteo Bruni */
|
package/775.min.js
DELETED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
/*! For license information please see 775.min.js.LICENSE.txt */
|
|
2
|
-
(this.webpackChunk_tsparticles_plugin_export_image=this.webpackChunk_tsparticles_plugin_export_image||[]).push([[775],{775(t,e,n){n.d(e,{ExportImagePlugin:()=>i});class i{constructor(){this.id="export-image"}async getPlugin(t){const{ExportImagePluginInstance:e}=await n.e(232).then(n.bind(n,232));return new e(t)}loadOptions(){}needsPlugin(){return!0}}}}]);
|
package/775.min.js.LICENSE.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! tsParticles Export Image Plugin v4.0.0-alpha.8 by Matteo Bruni */
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! tsParticles Export Image Plugin v4.0.0-alpha.8 by Matteo Bruni */
|