@tsparticles/plugin-export-json 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/396.min.js +1 -0
- package/947.min.js +1 -0
- package/browser/ExportJSONPlugin.js +1 -3
- package/browser/ExportJSONPluginInstance.js +10 -9
- package/browser/index.js +1 -1
- package/cjs/ExportJSONPlugin.js +1 -3
- package/cjs/ExportJSONPluginInstance.js +10 -9
- package/cjs/index.js +1 -1
- package/dist_browser_ExportJSONPluginInstance_js.js +2 -2
- package/dist_browser_ExportJSONPlugin_js.js +2 -2
- package/esm/ExportJSONPlugin.js +1 -3
- package/esm/ExportJSONPluginInstance.js +10 -9
- package/esm/index.js +1 -1
- package/package.json +2 -2
- package/report.html +1 -1
- package/tsparticles.plugin.export.json.js +22 -10
- package/tsparticles.plugin.export.json.min.js +2 -2
- package/types/ExportJSONPlugin.d.ts +1 -2
- package/umd/ExportJSONPlugin.js +1 -3
- package/umd/ExportJSONPluginInstance.js +10 -9
- package/umd/index.js +1 -1
- package/160.min.js +0 -2
- package/160.min.js.LICENSE.txt +0 -1
- package/823.min.js +0 -2
- package/823.min.js.LICENSE.txt +0 -1
- package/tsparticles.plugin.export.json.min.js.LICENSE.txt +0 -1
package/396.min.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";(this.webpackChunk_tsparticles_plugin_export_json=this.webpackChunk_tsparticles_plugin_export_json||[]).push([[396],{396(t,n,e){e.d(n,{ExportJSONPlugin:()=>s});class s{id="export-json";async getPlugin(t){let{ExportJSONPluginInstance:n}=await e.e(947).then(e.bind(e,947));return new n(t)}loadOptions(){}needsPlugin(){return!0}}}}]);
|
package/947.min.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";(this.webpackChunk_tsparticles_plugin_export_json=this.webpackChunk_tsparticles_plugin_export_json||[]).push([[947],{947(t,s,n){n.d(s,{ExportJSONPluginInstance:()=>e});class e{_container;constructor(t){this._container=t}async export(t){let s={supported:!1};return"json"===t&&(s.supported=!0,s.blob=await this._exportJSON()),s}_exportJSON=async()=>Promise.resolve(new Blob([JSON.stringify(this._container.actualOptions,(t,s)=>{if(!t.startsWith("_"))return s},2)],{type:"application/json"}))}}}]);
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
export class ExportJSONPlugin {
|
|
2
|
-
|
|
3
|
-
this.id = "export-json";
|
|
4
|
-
}
|
|
2
|
+
id = "export-json";
|
|
5
3
|
async getPlugin(container) {
|
|
6
4
|
const { ExportJSONPluginInstance } = await import("./ExportJSONPluginInstance.js");
|
|
7
5
|
return new ExportJSONPluginInstance(container);
|
|
@@ -1,15 +1,7 @@
|
|
|
1
1
|
const indent = 2;
|
|
2
2
|
export class ExportJSONPluginInstance {
|
|
3
|
+
_container;
|
|
3
4
|
constructor(container) {
|
|
4
|
-
this._exportJSON = async () => {
|
|
5
|
-
const json = JSON.stringify(this._container.actualOptions, (key, value) => {
|
|
6
|
-
if (key.startsWith("_")) {
|
|
7
|
-
return;
|
|
8
|
-
}
|
|
9
|
-
return value;
|
|
10
|
-
}, indent);
|
|
11
|
-
return Promise.resolve(new Blob([json], { type: "application/json" }));
|
|
12
|
-
};
|
|
13
5
|
this._container = container;
|
|
14
6
|
}
|
|
15
7
|
async export(type) {
|
|
@@ -24,4 +16,13 @@ export class ExportJSONPluginInstance {
|
|
|
24
16
|
}
|
|
25
17
|
return res;
|
|
26
18
|
}
|
|
19
|
+
_exportJSON = async () => {
|
|
20
|
+
const json = JSON.stringify(this._container.actualOptions, (key, value) => {
|
|
21
|
+
if (key.startsWith("_")) {
|
|
22
|
+
return;
|
|
23
|
+
}
|
|
24
|
+
return value;
|
|
25
|
+
}, indent);
|
|
26
|
+
return Promise.resolve(new Blob([json], { type: "application/json" }));
|
|
27
|
+
};
|
|
27
28
|
}
|
package/browser/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export async function loadExportJSONPlugin(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 { ExportJSONPlugin } = await import("./ExportJSONPlugin.js");
|
|
5
5
|
e.addPlugin(new ExportJSONPlugin());
|
package/cjs/ExportJSONPlugin.js
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
export class ExportJSONPlugin {
|
|
2
|
-
|
|
3
|
-
this.id = "export-json";
|
|
4
|
-
}
|
|
2
|
+
id = "export-json";
|
|
5
3
|
async getPlugin(container) {
|
|
6
4
|
const { ExportJSONPluginInstance } = await import("./ExportJSONPluginInstance.js");
|
|
7
5
|
return new ExportJSONPluginInstance(container);
|
|
@@ -1,15 +1,7 @@
|
|
|
1
1
|
const indent = 2;
|
|
2
2
|
export class ExportJSONPluginInstance {
|
|
3
|
+
_container;
|
|
3
4
|
constructor(container) {
|
|
4
|
-
this._exportJSON = async () => {
|
|
5
|
-
const json = JSON.stringify(this._container.actualOptions, (key, value) => {
|
|
6
|
-
if (key.startsWith("_")) {
|
|
7
|
-
return;
|
|
8
|
-
}
|
|
9
|
-
return value;
|
|
10
|
-
}, indent);
|
|
11
|
-
return Promise.resolve(new Blob([json], { type: "application/json" }));
|
|
12
|
-
};
|
|
13
5
|
this._container = container;
|
|
14
6
|
}
|
|
15
7
|
async export(type) {
|
|
@@ -24,4 +16,13 @@ export class ExportJSONPluginInstance {
|
|
|
24
16
|
}
|
|
25
17
|
return res;
|
|
26
18
|
}
|
|
19
|
+
_exportJSON = async () => {
|
|
20
|
+
const json = JSON.stringify(this._container.actualOptions, (key, value) => {
|
|
21
|
+
if (key.startsWith("_")) {
|
|
22
|
+
return;
|
|
23
|
+
}
|
|
24
|
+
return value;
|
|
25
|
+
}, indent);
|
|
26
|
+
return Promise.resolve(new Blob([json], { type: "application/json" }));
|
|
27
|
+
};
|
|
27
28
|
}
|
package/cjs/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export async function loadExportJSONPlugin(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 { ExportJSONPlugin } = await import("./ExportJSONPlugin.js");
|
|
5
5
|
e.addPlugin(new ExportJSONPlugin());
|
|
@@ -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 */ ExportJSONPluginInstance: () => (/* binding */ ExportJSONPluginInstance)\n/* harmony export */ });\nconst indent = 2;\nclass ExportJSONPluginInstance {\n
|
|
26
|
+
eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ ExportJSONPluginInstance: () => (/* binding */ ExportJSONPluginInstance)\n/* harmony export */ });\nconst indent = 2;\nclass ExportJSONPluginInstance {\n _container;\n constructor(container){\n this._container = container;\n }\n async export(type) {\n const res = {\n supported: false\n };\n switch(type){\n case \"json\":\n res.supported = true;\n res.blob = await this._exportJSON();\n break;\n }\n return res;\n }\n _exportJSON = async ()=>{\n const json = JSON.stringify(this._container.actualOptions, (key, value)=>{\n if (key.startsWith(\"_\")) {\n return;\n }\n return value;\n }, indent);\n return Promise.resolve(new Blob([\n json\n ], {\n type: \"application/json\"\n }));\n };\n}\n\n\n//# sourceURL=webpack://@tsparticles/plugin-export-json/./dist/browser/ExportJSONPluginInstance.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 */ ExportJSONPlugin: () => (/* binding */ ExportJSONPlugin)\n/* harmony export */ });\nclass ExportJSONPlugin {\n
|
|
26
|
+
eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ ExportJSONPlugin: () => (/* binding */ ExportJSONPlugin)\n/* harmony export */ });\nclass ExportJSONPlugin {\n id = \"export-json\";\n async getPlugin(container) {\n const { ExportJSONPluginInstance } = await __webpack_require__.e(/*! import() */ \"dist_browser_ExportJSONPluginInstance_js\").then(__webpack_require__.bind(__webpack_require__, /*! ./ExportJSONPluginInstance.js */ \"./dist/browser/ExportJSONPluginInstance.js\"));\n return new ExportJSONPluginInstance(container);\n }\n loadOptions() {}\n needsPlugin() {\n return true;\n }\n}\n\n\n//# sourceURL=webpack://@tsparticles/plugin-export-json/./dist/browser/ExportJSONPlugin.js?\n}");
|
|
27
27
|
|
|
28
28
|
/***/ }
|
|
29
29
|
|
package/esm/ExportJSONPlugin.js
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
export class ExportJSONPlugin {
|
|
2
|
-
|
|
3
|
-
this.id = "export-json";
|
|
4
|
-
}
|
|
2
|
+
id = "export-json";
|
|
5
3
|
async getPlugin(container) {
|
|
6
4
|
const { ExportJSONPluginInstance } = await import("./ExportJSONPluginInstance.js");
|
|
7
5
|
return new ExportJSONPluginInstance(container);
|
|
@@ -1,15 +1,7 @@
|
|
|
1
1
|
const indent = 2;
|
|
2
2
|
export class ExportJSONPluginInstance {
|
|
3
|
+
_container;
|
|
3
4
|
constructor(container) {
|
|
4
|
-
this._exportJSON = async () => {
|
|
5
|
-
const json = JSON.stringify(this._container.actualOptions, (key, value) => {
|
|
6
|
-
if (key.startsWith("_")) {
|
|
7
|
-
return;
|
|
8
|
-
}
|
|
9
|
-
return value;
|
|
10
|
-
}, indent);
|
|
11
|
-
return Promise.resolve(new Blob([json], { type: "application/json" }));
|
|
12
|
-
};
|
|
13
5
|
this._container = container;
|
|
14
6
|
}
|
|
15
7
|
async export(type) {
|
|
@@ -24,4 +16,13 @@ export class ExportJSONPluginInstance {
|
|
|
24
16
|
}
|
|
25
17
|
return res;
|
|
26
18
|
}
|
|
19
|
+
_exportJSON = async () => {
|
|
20
|
+
const json = JSON.stringify(this._container.actualOptions, (key, value) => {
|
|
21
|
+
if (key.startsWith("_")) {
|
|
22
|
+
return;
|
|
23
|
+
}
|
|
24
|
+
return value;
|
|
25
|
+
}, indent);
|
|
26
|
+
return Promise.resolve(new Blob([json], { type: "application/json" }));
|
|
27
|
+
};
|
|
27
28
|
}
|
package/esm/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export async function loadExportJSONPlugin(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 { ExportJSONPlugin } = await import("./ExportJSONPlugin.js");
|
|
5
5
|
e.addPlugin(new ExportJSONPlugin());
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsparticles/plugin-export-json",
|
|
3
|
-
"version": "4.0.0-
|
|
3
|
+
"version": "4.0.0-beta.0",
|
|
4
4
|
"description": "tsParticles export json 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-json [
|
|
6
|
+
<title>@tsparticles/plugin-export-json [19 Mar 2026 at 14:01]</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 */ loadExportJSONPlugin: () => (/* binding */ loadExportJSONPlugin)\n/* harmony export */ });\nasync function loadExportJSONPlugin(engine) {\n
|
|
37
|
+
eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ loadExportJSONPlugin: () => (/* binding */ loadExportJSONPlugin)\n/* harmony export */ });\nasync function loadExportJSONPlugin(engine) {\n engine.checkVersion(\"4.0.0-beta.0\");\n await engine.register(async (e)=>{\n const { ExportJSONPlugin } = await __webpack_require__.e(/*! import() */ \"dist_browser_ExportJSONPlugin_js\").then(__webpack_require__.bind(__webpack_require__, /*! ./ExportJSONPlugin.js */ \"./dist/browser/ExportJSONPlugin.js\"));\n e.addPlugin(new ExportJSONPlugin());\n });\n}\n\n\n//# sourceURL=webpack://@tsparticles/plugin-export-json/./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={},n={};function i(e){var t=n[e];if(void 0!==t)return t.exports;var r=n[e]={exports:{}};return o[e](r,r.exports,i),r.exports}i.m=o,i.d=(e,t)=>{for(var r in t)i.o(t,r)&&!i.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},i.f={},i.e=e=>Promise.all(Object.keys(i.f).reduce((t,r)=>(i.f[r](e,t),t),[])),i.u=e=>""+e+".min.js",i.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||Function("return this")()}catch(e){if("object"==typeof window)return window}}(),i.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),a={},i.l=(e,t,r,o)=>{if(a[e])return void a[e].push(t);if(void 0!==r)for(var n,s,p=document.getElementsByTagName("script"),l=0;l<p.length;l++){var c=p[l];if(c.getAttribute("src")==e||c.getAttribute("data-webpack")=="@tsparticles/plugin-export-json:"+r){n=c;break}}n||(s=!0,(n=document.createElement("script")).charset="utf-8",i.nc&&n.setAttribute("nonce",i.nc),n.setAttribute("data-webpack","@tsparticles/plugin-export-json:"+r),n.src=e),a[e]=[t];var u=(t,r)=>{n.onerror=n.onload=null,clearTimeout(d);var o=a[e];if(delete a[e],n.parentNode&&n.parentNode.removeChild(n),o&&o.forEach(e=>e(r)),t)return t(r)},d=setTimeout(u.bind(null,void 0,{type:"timeout",target:n}),12e4);n.onerror=u.bind(null,n.onerror),n.onload=u.bind(null,n.onload),s&&document.head.appendChild(n)},i.r=e=>{"u">typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.g.importScripts&&(s=i.g.location+"");var a,s,p=i.g.document;if(!s&&p&&(p.currentScript&&"SCRIPT"===p.currentScript.tagName.toUpperCase()&&(s=p.currentScript.src),!s)){var l=p.getElementsByTagName("script");if(l.length)for(var c=l.length-1;c>-1&&(!s||!/^http(s?):/.test(s));)s=l[c--].src}if(!s)throw Error("Automatic publicPath is not supported in this browser");i.p=s=s.replace(/^blob:/,"").replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),e={682:0},i.f.j=(t,r)=>{var o=i.o(e,t)?e[t]:void 0;if(0!==o)if(o)r.push(o[2]);else{var n=new Promise((r,n)=>o=e[t]=[r,n]);r.push(o[2]=n);var a=i.p+i.u(t),s=Error();i.l(a,r=>{if(i.o(e,t)&&(0!==(o=e[t])&&(e[t]=void 0),o)){var n=r&&("load"===r.type?"missing":r.type),a=r&&r.target&&r.target.src;s.message="Loading chunk "+t+` failed.
|
|
2
|
+
(`+n+": "+a+")",s.name="ChunkLoadError",s.type=n,s.request=a,o[1](s)}},"chunk-"+t,t)}},t=(t,r)=>{var o,n,[a,s,p]=r,l=0;if(a.some(t=>0!==e[t])){for(o in s)i.o(s,o)&&(i.m[o]=s[o]);p&&p(i)}for(t&&t(r);l<a.length;l++)n=a[l],i.o(e,n)&&e[n]&&e[n][0](),e[n]=0},(r=this.webpackChunk_tsparticles_plugin_export_json=this.webpackChunk_tsparticles_plugin_export_json||[]).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{ExportJSONPlugin:t}=await i.e(396).then(i.bind(i,396));e.addPlugin(new t)})}return i.r(u),i.d(u,{loadExportJSONPlugin:()=>d}),u})());
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import type { Container, IContainerPlugin, IPlugin } from "@tsparticles/engine";
|
|
2
2
|
export declare class ExportJSONPlugin implements IPlugin {
|
|
3
|
-
readonly id
|
|
4
|
-
constructor();
|
|
3
|
+
readonly id = "export-json";
|
|
5
4
|
getPlugin(container: Container): Promise<IContainerPlugin>;
|
|
6
5
|
loadOptions(): void;
|
|
7
6
|
needsPlugin(): boolean;
|
package/umd/ExportJSONPlugin.js
CHANGED
|
@@ -45,9 +45,7 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
45
45
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
46
46
|
exports.ExportJSONPlugin = void 0;
|
|
47
47
|
class ExportJSONPlugin {
|
|
48
|
-
|
|
49
|
-
this.id = "export-json";
|
|
50
|
-
}
|
|
48
|
+
id = "export-json";
|
|
51
49
|
async getPlugin(container) {
|
|
52
50
|
const { ExportJSONPluginInstance } = await (__syncRequire ? Promise.resolve().then(() => __importStar(require("./ExportJSONPluginInstance.js"))) : new Promise((resolve_1, reject_1) => { require(["./ExportJSONPluginInstance.js"], resolve_1, reject_1); }).then(__importStar));
|
|
53
51
|
return new ExportJSONPluginInstance(container);
|
|
@@ -12,16 +12,8 @@
|
|
|
12
12
|
exports.ExportJSONPluginInstance = void 0;
|
|
13
13
|
const indent = 2;
|
|
14
14
|
class ExportJSONPluginInstance {
|
|
15
|
+
_container;
|
|
15
16
|
constructor(container) {
|
|
16
|
-
this._exportJSON = async () => {
|
|
17
|
-
const json = JSON.stringify(this._container.actualOptions, (key, value) => {
|
|
18
|
-
if (key.startsWith("_")) {
|
|
19
|
-
return;
|
|
20
|
-
}
|
|
21
|
-
return value;
|
|
22
|
-
}, indent);
|
|
23
|
-
return Promise.resolve(new Blob([json], { type: "application/json" }));
|
|
24
|
-
};
|
|
25
17
|
this._container = container;
|
|
26
18
|
}
|
|
27
19
|
async export(type) {
|
|
@@ -36,6 +28,15 @@
|
|
|
36
28
|
}
|
|
37
29
|
return res;
|
|
38
30
|
}
|
|
31
|
+
_exportJSON = async () => {
|
|
32
|
+
const json = JSON.stringify(this._container.actualOptions, (key, value) => {
|
|
33
|
+
if (key.startsWith("_")) {
|
|
34
|
+
return;
|
|
35
|
+
}
|
|
36
|
+
return value;
|
|
37
|
+
}, indent);
|
|
38
|
+
return Promise.resolve(new Blob([json], { type: "application/json" }));
|
|
39
|
+
};
|
|
39
40
|
}
|
|
40
41
|
exports.ExportJSONPluginInstance = ExportJSONPluginInstance;
|
|
41
42
|
});
|
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.loadExportJSONPlugin = loadExportJSONPlugin;
|
|
47
47
|
async function loadExportJSONPlugin(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 { ExportJSONPlugin } = await (__syncRequire ? Promise.resolve().then(() => __importStar(require("./ExportJSONPlugin.js"))) : new Promise((resolve_1, reject_1) => { require(["./ExportJSONPlugin.js"], resolve_1, reject_1); }).then(__importStar));
|
|
51
51
|
e.addPlugin(new ExportJSONPlugin());
|
package/160.min.js
DELETED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
/*! For license information please see 160.min.js.LICENSE.txt */
|
|
2
|
-
(this.webpackChunk_tsparticles_plugin_export_json=this.webpackChunk_tsparticles_plugin_export_json||[]).push([[160],{160(n,t,s){s.d(t,{ExportJSONPlugin:()=>e});class e{constructor(){this.id="export-json"}async getPlugin(n){const{ExportJSONPluginInstance:t}=await s.e(823).then(s.bind(s,823));return new t(n)}loadOptions(){}needsPlugin(){return!0}}}}]);
|
package/160.min.js.LICENSE.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! tsParticles Export JSON Plugin v4.0.0-alpha.8 by Matteo Bruni */
|
package/823.min.js
DELETED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
/*! For license information please see 823.min.js.LICENSE.txt */
|
|
2
|
-
(this.webpackChunk_tsparticles_plugin_export_json=this.webpackChunk_tsparticles_plugin_export_json||[]).push([[823],{823(t,s,n){n.d(s,{ExportJSONPluginInstance:()=>o});class o{constructor(t){this._exportJSON=async()=>{const t=JSON.stringify(this._container.actualOptions,((t,s)=>{if(!t.startsWith("_"))return s}),2);return Promise.resolve(new Blob([t],{type:"application/json"}))},this._container=t}async export(t){const s={supported:!1};if("json"===t)s.supported=!0,s.blob=await this._exportJSON();return s}}}}]);
|
package/823.min.js.LICENSE.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! tsParticles Export JSON Plugin v4.0.0-alpha.8 by Matteo Bruni */
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! tsParticles Export JSON Plugin v4.0.0-alpha.8 by Matteo Bruni */
|