@tsparticles/plugin-export-image 3.3.0 → 3.5.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/browser/ExportImageInstance.js +2 -2
- package/browser/ExportImagePlugin.js +3 -3
- package/browser/index.js +1 -1
- package/cjs/ExportImageInstance.js +2 -2
- package/cjs/ExportImagePlugin.js +3 -3
- package/cjs/index.js +3 -4
- package/esm/ExportImageInstance.js +2 -2
- package/esm/ExportImagePlugin.js +3 -3
- package/esm/index.js +1 -1
- package/package.json +2 -2
- package/report.html +1 -1
- package/tsparticles.plugin.export.image.js +22 -200
- package/tsparticles.plugin.export.image.min.js +1 -1
- package/tsparticles.plugin.export.image.min.js.LICENSE.txt +1 -1
- package/types/ExportImagePlugin.d.ts +1 -1
- package/umd/ExportImageInstance.js +2 -2
- package/umd/ExportImagePlugin.js +4 -28
- package/umd/index.js +4 -29
- package/500.min.js +0 -2
- package/500.min.js.LICENSE.txt +0 -1
- package/924.min.js +0 -2
- package/924.min.js.LICENSE.txt +0 -1
- package/dist_browser_ExportImageInstance_js.js +0 -30
- package/dist_browser_ExportImagePlugin_js.js +0 -30
|
@@ -1,11 +1,11 @@
|
|
|
1
|
+
import { ExportImageInstance } from "./ExportImageInstance.js";
|
|
1
2
|
export class ExportImagePlugin {
|
|
2
3
|
constructor(engine) {
|
|
3
4
|
this.id = "export-image";
|
|
4
5
|
this._engine = engine;
|
|
5
6
|
}
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
return new ExportImageInstance(container, this._engine);
|
|
7
|
+
getPlugin(container) {
|
|
8
|
+
return Promise.resolve(new ExportImageInstance(container, this._engine));
|
|
9
9
|
}
|
|
10
10
|
loadOptions() {
|
|
11
11
|
}
|
package/browser/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
+
import { ExportImagePlugin } from "./ExportImagePlugin.js";
|
|
1
2
|
export async function loadExportImagePlugin(engine, refresh = true) {
|
|
2
|
-
const { ExportImagePlugin } = await import("./ExportImagePlugin.js");
|
|
3
3
|
await engine.addPlugin(new ExportImagePlugin(engine), refresh);
|
|
4
4
|
}
|
package/cjs/ExportImagePlugin.js
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.ExportImagePlugin = void 0;
|
|
4
|
+
const ExportImageInstance_js_1 = require("./ExportImageInstance.js");
|
|
4
5
|
class ExportImagePlugin {
|
|
5
6
|
constructor(engine) {
|
|
6
7
|
this.id = "export-image";
|
|
7
8
|
this._engine = engine;
|
|
8
9
|
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
return new ExportImageInstance(container, this._engine);
|
|
10
|
+
getPlugin(container) {
|
|
11
|
+
return Promise.resolve(new ExportImageInstance_js_1.ExportImageInstance(container, this._engine));
|
|
12
12
|
}
|
|
13
13
|
loadOptions() {
|
|
14
14
|
}
|
package/cjs/index.js
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.loadExportImagePlugin =
|
|
3
|
+
exports.loadExportImagePlugin = loadExportImagePlugin;
|
|
4
|
+
const ExportImagePlugin_js_1 = require("./ExportImagePlugin.js");
|
|
4
5
|
async function loadExportImagePlugin(engine, refresh = true) {
|
|
5
|
-
|
|
6
|
-
await engine.addPlugin(new ExportImagePlugin(engine), refresh);
|
|
6
|
+
await engine.addPlugin(new ExportImagePlugin_js_1.ExportImagePlugin(engine), refresh);
|
|
7
7
|
}
|
|
8
|
-
exports.loadExportImagePlugin = loadExportImagePlugin;
|
package/esm/ExportImagePlugin.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
+
import { ExportImageInstance } from "./ExportImageInstance.js";
|
|
1
2
|
export class ExportImagePlugin {
|
|
2
3
|
constructor(engine) {
|
|
3
4
|
this.id = "export-image";
|
|
4
5
|
this._engine = engine;
|
|
5
6
|
}
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
return new ExportImageInstance(container, this._engine);
|
|
7
|
+
getPlugin(container) {
|
|
8
|
+
return Promise.resolve(new ExportImageInstance(container, this._engine));
|
|
9
9
|
}
|
|
10
10
|
loadOptions() {
|
|
11
11
|
}
|
package/esm/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
+
import { ExportImagePlugin } from "./ExportImagePlugin.js";
|
|
1
2
|
export async function loadExportImagePlugin(engine, refresh = true) {
|
|
2
|
-
const { ExportImagePlugin } = await import("./ExportImagePlugin.js");
|
|
3
3
|
await engine.addPlugin(new ExportImagePlugin(engine), refresh);
|
|
4
4
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsparticles/plugin-export-image",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.5.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": "^3.
|
|
103
|
+
"@tsparticles/engine": "^3.5.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 [1 Jul 2024 at 09:20]</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
|
-
* v3.
|
|
7
|
+
* v3.5.0
|
|
8
8
|
*/
|
|
9
9
|
/*
|
|
10
10
|
* ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
|
|
@@ -28,13 +28,33 @@ return /******/ (() => { // webpackBootstrap
|
|
|
28
28
|
/******/ "use strict";
|
|
29
29
|
/******/ var __webpack_modules__ = ({
|
|
30
30
|
|
|
31
|
+
/***/ "./dist/browser/ExportImageInstance.js":
|
|
32
|
+
/*!*********************************************!*\
|
|
33
|
+
!*** ./dist/browser/ExportImageInstance.js ***!
|
|
34
|
+
\*********************************************/
|
|
35
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
36
|
+
|
|
37
|
+
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ ExportImageInstance: () => (/* binding */ ExportImageInstance)\n/* harmony export */ });\nclass ExportImageInstance {\n constructor(container, engine) {\n this._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 this._container = container;\n this._engine = engine;\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}\n\n//# sourceURL=webpack://@tsparticles/plugin-export-image/./dist/browser/ExportImageInstance.js?");
|
|
38
|
+
|
|
39
|
+
/***/ }),
|
|
40
|
+
|
|
41
|
+
/***/ "./dist/browser/ExportImagePlugin.js":
|
|
42
|
+
/*!*******************************************!*\
|
|
43
|
+
!*** ./dist/browser/ExportImagePlugin.js ***!
|
|
44
|
+
\*******************************************/
|
|
45
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
46
|
+
|
|
47
|
+
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ ExportImagePlugin: () => (/* binding */ ExportImagePlugin)\n/* harmony export */ });\n/* harmony import */ var _ExportImageInstance_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./ExportImageInstance.js */ \"./dist/browser/ExportImageInstance.js\");\n\nclass ExportImagePlugin {\n constructor(engine) {\n this.id = \"export-image\";\n this._engine = engine;\n }\n getPlugin(container) {\n return Promise.resolve(new _ExportImageInstance_js__WEBPACK_IMPORTED_MODULE_0__.ExportImageInstance(container, this._engine));\n }\n loadOptions() {}\n needsPlugin() {\n return true;\n }\n}\n\n//# sourceURL=webpack://@tsparticles/plugin-export-image/./dist/browser/ExportImagePlugin.js?");
|
|
48
|
+
|
|
49
|
+
/***/ }),
|
|
50
|
+
|
|
31
51
|
/***/ "./dist/browser/index.js":
|
|
32
52
|
/*!*******************************!*\
|
|
33
53
|
!*** ./dist/browser/index.js ***!
|
|
34
54
|
\*******************************/
|
|
35
55
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
36
56
|
|
|
37
|
-
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ loadExportImagePlugin: () => (/* binding */ loadExportImagePlugin)\n/* harmony export */ });\
|
|
57
|
+
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ loadExportImagePlugin: () => (/* binding */ loadExportImagePlugin)\n/* harmony export */ });\n/* harmony import */ var _ExportImagePlugin_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./ExportImagePlugin.js */ \"./dist/browser/ExportImagePlugin.js\");\n\nasync function loadExportImagePlugin(engine, refresh = true) {\n await engine.addPlugin(new _ExportImagePlugin_js__WEBPACK_IMPORTED_MODULE_0__.ExportImagePlugin(engine), refresh);\n}\n\n//# sourceURL=webpack://@tsparticles/plugin-export-image/./dist/browser/index.js?");
|
|
38
58
|
|
|
39
59
|
/***/ })
|
|
40
60
|
|
|
@@ -64,9 +84,6 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpac
|
|
|
64
84
|
/******/ return module.exports;
|
|
65
85
|
/******/ }
|
|
66
86
|
/******/
|
|
67
|
-
/******/ // expose the modules object (__webpack_modules__)
|
|
68
|
-
/******/ __webpack_require__.m = __webpack_modules__;
|
|
69
|
-
/******/
|
|
70
87
|
/************************************************************************/
|
|
71
88
|
/******/ /* webpack/runtime/define property getters */
|
|
72
89
|
/******/ (() => {
|
|
@@ -80,91 +97,11 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpac
|
|
|
80
97
|
/******/ };
|
|
81
98
|
/******/ })();
|
|
82
99
|
/******/
|
|
83
|
-
/******/ /* webpack/runtime/ensure chunk */
|
|
84
|
-
/******/ (() => {
|
|
85
|
-
/******/ __webpack_require__.f = {};
|
|
86
|
-
/******/ // This file contains only the entry chunk.
|
|
87
|
-
/******/ // The chunk loading function for additional chunks
|
|
88
|
-
/******/ __webpack_require__.e = (chunkId) => {
|
|
89
|
-
/******/ return Promise.all(Object.keys(__webpack_require__.f).reduce((promises, key) => {
|
|
90
|
-
/******/ __webpack_require__.f[key](chunkId, promises);
|
|
91
|
-
/******/ return promises;
|
|
92
|
-
/******/ }, []));
|
|
93
|
-
/******/ };
|
|
94
|
-
/******/ })();
|
|
95
|
-
/******/
|
|
96
|
-
/******/ /* webpack/runtime/get javascript chunk filename */
|
|
97
|
-
/******/ (() => {
|
|
98
|
-
/******/ // This function allow to reference async chunks
|
|
99
|
-
/******/ __webpack_require__.u = (chunkId) => {
|
|
100
|
-
/******/ // return url for filenames based on template
|
|
101
|
-
/******/ return "" + chunkId + ".js";
|
|
102
|
-
/******/ };
|
|
103
|
-
/******/ })();
|
|
104
|
-
/******/
|
|
105
|
-
/******/ /* webpack/runtime/global */
|
|
106
|
-
/******/ (() => {
|
|
107
|
-
/******/ __webpack_require__.g = (function() {
|
|
108
|
-
/******/ if (typeof globalThis === 'object') return globalThis;
|
|
109
|
-
/******/ try {
|
|
110
|
-
/******/ return this || new Function('return this')();
|
|
111
|
-
/******/ } catch (e) {
|
|
112
|
-
/******/ if (typeof window === 'object') return window;
|
|
113
|
-
/******/ }
|
|
114
|
-
/******/ })();
|
|
115
|
-
/******/ })();
|
|
116
|
-
/******/
|
|
117
100
|
/******/ /* webpack/runtime/hasOwnProperty shorthand */
|
|
118
101
|
/******/ (() => {
|
|
119
102
|
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
|
|
120
103
|
/******/ })();
|
|
121
104
|
/******/
|
|
122
|
-
/******/ /* webpack/runtime/load script */
|
|
123
|
-
/******/ (() => {
|
|
124
|
-
/******/ var inProgress = {};
|
|
125
|
-
/******/ var dataWebpackPrefix = "@tsparticles/plugin-export-image:";
|
|
126
|
-
/******/ // loadScript function to load a script via script tag
|
|
127
|
-
/******/ __webpack_require__.l = (url, done, key, chunkId) => {
|
|
128
|
-
/******/ if(inProgress[url]) { inProgress[url].push(done); return; }
|
|
129
|
-
/******/ var script, needAttach;
|
|
130
|
-
/******/ if(key !== undefined) {
|
|
131
|
-
/******/ var scripts = document.getElementsByTagName("script");
|
|
132
|
-
/******/ for(var i = 0; i < scripts.length; i++) {
|
|
133
|
-
/******/ var s = scripts[i];
|
|
134
|
-
/******/ if(s.getAttribute("src") == url || s.getAttribute("data-webpack") == dataWebpackPrefix + key) { script = s; break; }
|
|
135
|
-
/******/ }
|
|
136
|
-
/******/ }
|
|
137
|
-
/******/ if(!script) {
|
|
138
|
-
/******/ needAttach = true;
|
|
139
|
-
/******/ script = document.createElement('script');
|
|
140
|
-
/******/
|
|
141
|
-
/******/ script.charset = 'utf-8';
|
|
142
|
-
/******/ script.timeout = 120;
|
|
143
|
-
/******/ if (__webpack_require__.nc) {
|
|
144
|
-
/******/ script.setAttribute("nonce", __webpack_require__.nc);
|
|
145
|
-
/******/ }
|
|
146
|
-
/******/ script.setAttribute("data-webpack", dataWebpackPrefix + key);
|
|
147
|
-
/******/
|
|
148
|
-
/******/ script.src = url;
|
|
149
|
-
/******/ }
|
|
150
|
-
/******/ inProgress[url] = [done];
|
|
151
|
-
/******/ var onScriptComplete = (prev, event) => {
|
|
152
|
-
/******/ // avoid mem leaks in IE.
|
|
153
|
-
/******/ script.onerror = script.onload = null;
|
|
154
|
-
/******/ clearTimeout(timeout);
|
|
155
|
-
/******/ var doneFns = inProgress[url];
|
|
156
|
-
/******/ delete inProgress[url];
|
|
157
|
-
/******/ script.parentNode && script.parentNode.removeChild(script);
|
|
158
|
-
/******/ doneFns && doneFns.forEach((fn) => (fn(event)));
|
|
159
|
-
/******/ if(prev) return prev(event);
|
|
160
|
-
/******/ }
|
|
161
|
-
/******/ var timeout = setTimeout(onScriptComplete.bind(null, undefined, { type: 'timeout', target: script }), 120000);
|
|
162
|
-
/******/ script.onerror = onScriptComplete.bind(null, script.onerror);
|
|
163
|
-
/******/ script.onload = onScriptComplete.bind(null, script.onload);
|
|
164
|
-
/******/ needAttach && document.head.appendChild(script);
|
|
165
|
-
/******/ };
|
|
166
|
-
/******/ })();
|
|
167
|
-
/******/
|
|
168
105
|
/******/ /* webpack/runtime/make namespace object */
|
|
169
106
|
/******/ (() => {
|
|
170
107
|
/******/ // define __esModule on exports
|
|
@@ -176,121 +113,6 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpac
|
|
|
176
113
|
/******/ };
|
|
177
114
|
/******/ })();
|
|
178
115
|
/******/
|
|
179
|
-
/******/ /* webpack/runtime/publicPath */
|
|
180
|
-
/******/ (() => {
|
|
181
|
-
/******/ var scriptUrl;
|
|
182
|
-
/******/ if (__webpack_require__.g.importScripts) scriptUrl = __webpack_require__.g.location + "";
|
|
183
|
-
/******/ var document = __webpack_require__.g.document;
|
|
184
|
-
/******/ if (!scriptUrl && document) {
|
|
185
|
-
/******/ if (document.currentScript)
|
|
186
|
-
/******/ scriptUrl = document.currentScript.src;
|
|
187
|
-
/******/ if (!scriptUrl) {
|
|
188
|
-
/******/ var scripts = document.getElementsByTagName("script");
|
|
189
|
-
/******/ if(scripts.length) {
|
|
190
|
-
/******/ var i = scripts.length - 1;
|
|
191
|
-
/******/ while (i > -1 && (!scriptUrl || !/^http(s?):/.test(scriptUrl))) scriptUrl = scripts[i--].src;
|
|
192
|
-
/******/ }
|
|
193
|
-
/******/ }
|
|
194
|
-
/******/ }
|
|
195
|
-
/******/ // When supporting browsers where an automatic publicPath is not supported you must specify an output.publicPath manually via configuration
|
|
196
|
-
/******/ // or pass an empty string ("") and set the __webpack_public_path__ variable from your code to use your own logic.
|
|
197
|
-
/******/ if (!scriptUrl) throw new Error("Automatic publicPath is not supported in this browser");
|
|
198
|
-
/******/ scriptUrl = scriptUrl.replace(/#.*$/, "").replace(/\?.*$/, "").replace(/\/[^\/]+$/, "/");
|
|
199
|
-
/******/ __webpack_require__.p = scriptUrl;
|
|
200
|
-
/******/ })();
|
|
201
|
-
/******/
|
|
202
|
-
/******/ /* webpack/runtime/jsonp chunk loading */
|
|
203
|
-
/******/ (() => {
|
|
204
|
-
/******/ // no baseURI
|
|
205
|
-
/******/
|
|
206
|
-
/******/ // object to store loaded and loading chunks
|
|
207
|
-
/******/ // undefined = chunk not loaded, null = chunk preloaded/prefetched
|
|
208
|
-
/******/ // [resolve, reject, Promise] = chunk loading, 0 = chunk loaded
|
|
209
|
-
/******/ var installedChunks = {
|
|
210
|
-
/******/ "tsparticles.plugin.export.image": 0
|
|
211
|
-
/******/ };
|
|
212
|
-
/******/
|
|
213
|
-
/******/ __webpack_require__.f.j = (chunkId, promises) => {
|
|
214
|
-
/******/ // JSONP chunk loading for javascript
|
|
215
|
-
/******/ var installedChunkData = __webpack_require__.o(installedChunks, chunkId) ? installedChunks[chunkId] : undefined;
|
|
216
|
-
/******/ if(installedChunkData !== 0) { // 0 means "already installed".
|
|
217
|
-
/******/
|
|
218
|
-
/******/ // a Promise means "currently loading".
|
|
219
|
-
/******/ if(installedChunkData) {
|
|
220
|
-
/******/ promises.push(installedChunkData[2]);
|
|
221
|
-
/******/ } else {
|
|
222
|
-
/******/ if(true) { // all chunks have JS
|
|
223
|
-
/******/ // setup Promise in chunk cache
|
|
224
|
-
/******/ var promise = new Promise((resolve, reject) => (installedChunkData = installedChunks[chunkId] = [resolve, reject]));
|
|
225
|
-
/******/ promises.push(installedChunkData[2] = promise);
|
|
226
|
-
/******/
|
|
227
|
-
/******/ // start chunk loading
|
|
228
|
-
/******/ var url = __webpack_require__.p + __webpack_require__.u(chunkId);
|
|
229
|
-
/******/ // create error before stack unwound to get useful stacktrace later
|
|
230
|
-
/******/ var error = new Error();
|
|
231
|
-
/******/ var loadingEnded = (event) => {
|
|
232
|
-
/******/ if(__webpack_require__.o(installedChunks, chunkId)) {
|
|
233
|
-
/******/ installedChunkData = installedChunks[chunkId];
|
|
234
|
-
/******/ if(installedChunkData !== 0) installedChunks[chunkId] = undefined;
|
|
235
|
-
/******/ if(installedChunkData) {
|
|
236
|
-
/******/ var errorType = event && (event.type === 'load' ? 'missing' : event.type);
|
|
237
|
-
/******/ var realSrc = event && event.target && event.target.src;
|
|
238
|
-
/******/ error.message = 'Loading chunk ' + chunkId + ' failed.\n(' + errorType + ': ' + realSrc + ')';
|
|
239
|
-
/******/ error.name = 'ChunkLoadError';
|
|
240
|
-
/******/ error.type = errorType;
|
|
241
|
-
/******/ error.request = realSrc;
|
|
242
|
-
/******/ installedChunkData[1](error);
|
|
243
|
-
/******/ }
|
|
244
|
-
/******/ }
|
|
245
|
-
/******/ };
|
|
246
|
-
/******/ __webpack_require__.l(url, loadingEnded, "chunk-" + chunkId, chunkId);
|
|
247
|
-
/******/ }
|
|
248
|
-
/******/ }
|
|
249
|
-
/******/ }
|
|
250
|
-
/******/ };
|
|
251
|
-
/******/
|
|
252
|
-
/******/ // no prefetching
|
|
253
|
-
/******/
|
|
254
|
-
/******/ // no preloaded
|
|
255
|
-
/******/
|
|
256
|
-
/******/ // no HMR
|
|
257
|
-
/******/
|
|
258
|
-
/******/ // no HMR manifest
|
|
259
|
-
/******/
|
|
260
|
-
/******/ // no on chunks loaded
|
|
261
|
-
/******/
|
|
262
|
-
/******/ // install a JSONP callback for chunk loading
|
|
263
|
-
/******/ var webpackJsonpCallback = (parentChunkLoadingFunction, data) => {
|
|
264
|
-
/******/ var chunkIds = data[0];
|
|
265
|
-
/******/ var moreModules = data[1];
|
|
266
|
-
/******/ var runtime = data[2];
|
|
267
|
-
/******/ // add "moreModules" to the modules object,
|
|
268
|
-
/******/ // then flag all "chunkIds" as loaded and fire callback
|
|
269
|
-
/******/ var moduleId, chunkId, i = 0;
|
|
270
|
-
/******/ if(chunkIds.some((id) => (installedChunks[id] !== 0))) {
|
|
271
|
-
/******/ for(moduleId in moreModules) {
|
|
272
|
-
/******/ if(__webpack_require__.o(moreModules, moduleId)) {
|
|
273
|
-
/******/ __webpack_require__.m[moduleId] = moreModules[moduleId];
|
|
274
|
-
/******/ }
|
|
275
|
-
/******/ }
|
|
276
|
-
/******/ if(runtime) var result = runtime(__webpack_require__);
|
|
277
|
-
/******/ }
|
|
278
|
-
/******/ if(parentChunkLoadingFunction) parentChunkLoadingFunction(data);
|
|
279
|
-
/******/ for(;i < chunkIds.length; i++) {
|
|
280
|
-
/******/ chunkId = chunkIds[i];
|
|
281
|
-
/******/ if(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) {
|
|
282
|
-
/******/ installedChunks[chunkId][0]();
|
|
283
|
-
/******/ }
|
|
284
|
-
/******/ installedChunks[chunkId] = 0;
|
|
285
|
-
/******/ }
|
|
286
|
-
/******/
|
|
287
|
-
/******/ }
|
|
288
|
-
/******/
|
|
289
|
-
/******/ var chunkLoadingGlobal = this["webpackChunk_tsparticles_plugin_export_image"] = this["webpackChunk_tsparticles_plugin_export_image"] || [];
|
|
290
|
-
/******/ chunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0));
|
|
291
|
-
/******/ chunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal));
|
|
292
|
-
/******/ })();
|
|
293
|
-
/******/
|
|
294
116
|
/************************************************************************/
|
|
295
117
|
/******/
|
|
296
118
|
/******/ // startup
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/*! For license information please see tsparticles.plugin.export.image.min.js.LICENSE.txt */
|
|
2
|
-
!function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{var
|
|
2
|
+
!function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{var o=t();for(var n in o)("object"==typeof exports?exports:e)[n]=o[n]}}(this,(()=>(()=>{var e={d:(t,o)=>{for(var n in o)e.o(o,n)&&!e.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:o[n]})},o:(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r:e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},t={};e.r(t),e.d(t,{loadExportImagePlugin:()=>r});class o{constructor(e,t){this._exportImage=async e=>{const t=this._container.canvas.element;if(t)return new Promise((o=>{t.toBlob((e=>{o(e||void 0)}),e.type??"image/png",e.quality)}))},this._container=e,this._engine=t}async export(e,t){const o={supported:!1};if("image"===e)o.supported=!0,o.blob=await this._exportImage(t);return o}}class n{constructor(e){this.id="export-image",this._engine=e}getPlugin(e){return Promise.resolve(new o(e,this._engine))}loadOptions(){}needsPlugin(){return!0}}async function r(e,t=!0){await e.addPlugin(new n(e),t)}return t})()));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! tsParticles Export Image Plugin v3.
|
|
1
|
+
/*! tsParticles Export Image Plugin v3.5.0 by Matteo Bruni */
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Container, Engine, IPlugin } from "@tsparticles/engine";
|
|
2
|
-
import
|
|
2
|
+
import { ExportImageInstance } from "./ExportImageInstance.js";
|
|
3
3
|
export declare class ExportImagePlugin implements IPlugin {
|
|
4
4
|
readonly id: string;
|
|
5
5
|
private readonly _engine;
|
package/umd/ExportImagePlugin.js
CHANGED
|
@@ -1,47 +1,23 @@
|
|
|
1
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
2
|
-
if (k2 === undefined) k2 = k;
|
|
3
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
4
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
5
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
6
|
-
}
|
|
7
|
-
Object.defineProperty(o, k2, desc);
|
|
8
|
-
}) : (function(o, m, k, k2) {
|
|
9
|
-
if (k2 === undefined) k2 = k;
|
|
10
|
-
o[k2] = m[k];
|
|
11
|
-
}));
|
|
12
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
13
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
14
|
-
}) : function(o, v) {
|
|
15
|
-
o["default"] = v;
|
|
16
|
-
});
|
|
17
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
|
18
|
-
if (mod && mod.__esModule) return mod;
|
|
19
|
-
var result = {};
|
|
20
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
21
|
-
__setModuleDefault(result, mod);
|
|
22
|
-
return result;
|
|
23
|
-
};
|
|
24
1
|
(function (factory) {
|
|
25
2
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
26
3
|
var v = factory(require, exports);
|
|
27
4
|
if (v !== undefined) module.exports = v;
|
|
28
5
|
}
|
|
29
6
|
else if (typeof define === "function" && define.amd) {
|
|
30
|
-
define(["require", "exports"], factory);
|
|
7
|
+
define(["require", "exports", "./ExportImageInstance.js"], factory);
|
|
31
8
|
}
|
|
32
9
|
})(function (require, exports) {
|
|
33
10
|
"use strict";
|
|
34
|
-
var __syncRequire = typeof module === "object" && typeof module.exports === "object";
|
|
35
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
12
|
exports.ExportImagePlugin = void 0;
|
|
13
|
+
const ExportImageInstance_js_1 = require("./ExportImageInstance.js");
|
|
37
14
|
class ExportImagePlugin {
|
|
38
15
|
constructor(engine) {
|
|
39
16
|
this.id = "export-image";
|
|
40
17
|
this._engine = engine;
|
|
41
18
|
}
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
return new ExportImageInstance(container, this._engine);
|
|
19
|
+
getPlugin(container) {
|
|
20
|
+
return Promise.resolve(new ExportImageInstance_js_1.ExportImageInstance(container, this._engine));
|
|
45
21
|
}
|
|
46
22
|
loadOptions() {
|
|
47
23
|
}
|
package/umd/index.js
CHANGED
|
@@ -1,42 +1,17 @@
|
|
|
1
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
2
|
-
if (k2 === undefined) k2 = k;
|
|
3
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
4
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
5
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
6
|
-
}
|
|
7
|
-
Object.defineProperty(o, k2, desc);
|
|
8
|
-
}) : (function(o, m, k, k2) {
|
|
9
|
-
if (k2 === undefined) k2 = k;
|
|
10
|
-
o[k2] = m[k];
|
|
11
|
-
}));
|
|
12
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
13
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
14
|
-
}) : function(o, v) {
|
|
15
|
-
o["default"] = v;
|
|
16
|
-
});
|
|
17
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
|
18
|
-
if (mod && mod.__esModule) return mod;
|
|
19
|
-
var result = {};
|
|
20
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
21
|
-
__setModuleDefault(result, mod);
|
|
22
|
-
return result;
|
|
23
|
-
};
|
|
24
1
|
(function (factory) {
|
|
25
2
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
26
3
|
var v = factory(require, exports);
|
|
27
4
|
if (v !== undefined) module.exports = v;
|
|
28
5
|
}
|
|
29
6
|
else if (typeof define === "function" && define.amd) {
|
|
30
|
-
define(["require", "exports"], factory);
|
|
7
|
+
define(["require", "exports", "./ExportImagePlugin.js"], factory);
|
|
31
8
|
}
|
|
32
9
|
})(function (require, exports) {
|
|
33
10
|
"use strict";
|
|
34
|
-
var __syncRequire = typeof module === "object" && typeof module.exports === "object";
|
|
35
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
-
exports.loadExportImagePlugin =
|
|
12
|
+
exports.loadExportImagePlugin = loadExportImagePlugin;
|
|
13
|
+
const ExportImagePlugin_js_1 = require("./ExportImagePlugin.js");
|
|
37
14
|
async function loadExportImagePlugin(engine, refresh = true) {
|
|
38
|
-
|
|
39
|
-
await engine.addPlugin(new ExportImagePlugin(engine), refresh);
|
|
15
|
+
await engine.addPlugin(new ExportImagePlugin_js_1.ExportImagePlugin(engine), refresh);
|
|
40
16
|
}
|
|
41
|
-
exports.loadExportImagePlugin = loadExportImagePlugin;
|
|
42
17
|
});
|
package/500.min.js
DELETED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
/*! For license information please see 500.min.js.LICENSE.txt */
|
|
2
|
-
(this.webpackChunk_tsparticles_plugin_export_image=this.webpackChunk_tsparticles_plugin_export_image||[]).push([[500],{500:(e,t,n)=>{n.d(t,{ExportImagePlugin:()=>i});class i{constructor(e){this.id="export-image",this._engine=e}async getPlugin(e){const{ExportImageInstance:t}=await n.e(924).then(n.bind(n,924));return new t(e,this._engine)}loadOptions(){}needsPlugin(){return!0}}}}]);
|
package/500.min.js.LICENSE.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! tsParticles Export Image Plugin v3.3.0 by Matteo Bruni */
|
package/924.min.js
DELETED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
/*! For license information please see 924.min.js.LICENSE.txt */
|
|
2
|
-
(this.webpackChunk_tsparticles_plugin_export_image=this.webpackChunk_tsparticles_plugin_export_image||[]).push([[924],{924:(t,e,i)=>{i.d(e,{ExportImageInstance:()=>s});class s{constructor(t,e){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,this._engine=e}async export(t,e){const i={supported:!1};if("image"===t)i.supported=!0,i.blob=await this._exportImage(e);return i}}}}]);
|
package/924.min.js.LICENSE.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! tsParticles Export Image Plugin v3.3.0 by Matteo Bruni */
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
/*!
|
|
2
|
-
* Author : Matteo Bruni
|
|
3
|
-
* MIT license: https://opensource.org/licenses/MIT
|
|
4
|
-
* Demo / Generator : https://particles.js.org/
|
|
5
|
-
* GitHub : https://www.github.com/matteobruni/tsparticles
|
|
6
|
-
* How to use? : Check the GitHub README
|
|
7
|
-
* v3.3.0
|
|
8
|
-
*/
|
|
9
|
-
"use strict";
|
|
10
|
-
/*
|
|
11
|
-
* ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
|
|
12
|
-
* This devtool is neither made for production nor for readable output files.
|
|
13
|
-
* It uses "eval()" calls to create a separate source file in the browser devtools.
|
|
14
|
-
* If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
|
|
15
|
-
* or disable the default devtool with "devtool: false".
|
|
16
|
-
* If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
|
|
17
|
-
*/
|
|
18
|
-
(this["webpackChunk_tsparticles_plugin_export_image"] = this["webpackChunk_tsparticles_plugin_export_image"] || []).push([["dist_browser_ExportImageInstance_js"],{
|
|
19
|
-
|
|
20
|
-
/***/ "./dist/browser/ExportImageInstance.js":
|
|
21
|
-
/*!*********************************************!*\
|
|
22
|
-
!*** ./dist/browser/ExportImageInstance.js ***!
|
|
23
|
-
\*********************************************/
|
|
24
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
25
|
-
|
|
26
|
-
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ ExportImageInstance: () => (/* binding */ ExportImageInstance)\n/* harmony export */ });\nclass ExportImageInstance {\n constructor(container, engine) {\n this._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 this._container = container;\n this._engine = engine;\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}\n\n//# sourceURL=webpack://@tsparticles/plugin-export-image/./dist/browser/ExportImageInstance.js?");
|
|
27
|
-
|
|
28
|
-
/***/ })
|
|
29
|
-
|
|
30
|
-
}]);
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
/*!
|
|
2
|
-
* Author : Matteo Bruni
|
|
3
|
-
* MIT license: https://opensource.org/licenses/MIT
|
|
4
|
-
* Demo / Generator : https://particles.js.org/
|
|
5
|
-
* GitHub : https://www.github.com/matteobruni/tsparticles
|
|
6
|
-
* How to use? : Check the GitHub README
|
|
7
|
-
* v3.3.0
|
|
8
|
-
*/
|
|
9
|
-
"use strict";
|
|
10
|
-
/*
|
|
11
|
-
* ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
|
|
12
|
-
* This devtool is neither made for production nor for readable output files.
|
|
13
|
-
* It uses "eval()" calls to create a separate source file in the browser devtools.
|
|
14
|
-
* If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
|
|
15
|
-
* or disable the default devtool with "devtool: false".
|
|
16
|
-
* If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
|
|
17
|
-
*/
|
|
18
|
-
(this["webpackChunk_tsparticles_plugin_export_image"] = this["webpackChunk_tsparticles_plugin_export_image"] || []).push([["dist_browser_ExportImagePlugin_js"],{
|
|
19
|
-
|
|
20
|
-
/***/ "./dist/browser/ExportImagePlugin.js":
|
|
21
|
-
/*!*******************************************!*\
|
|
22
|
-
!*** ./dist/browser/ExportImagePlugin.js ***!
|
|
23
|
-
\*******************************************/
|
|
24
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
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 constructor(engine) {\n this.id = \"export-image\";\n this._engine = engine;\n }\n async getPlugin(container) {\n const {\n ExportImageInstance\n } = await __webpack_require__.e(/*! import() */ \"dist_browser_ExportImageInstance_js\").then(__webpack_require__.bind(__webpack_require__, /*! ./ExportImageInstance.js */ \"./dist/browser/ExportImageInstance.js\"));\n return new ExportImageInstance(container, this._engine);\n }\n loadOptions() {}\n needsPlugin() {\n return true;\n }\n}\n\n//# sourceURL=webpack://@tsparticles/plugin-export-image/./dist/browser/ExportImagePlugin.js?");
|
|
27
|
-
|
|
28
|
-
/***/ })
|
|
29
|
-
|
|
30
|
-
}]);
|