@tsparticles/fireworks 3.6.0 → 3.7.1
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/fireworks.js +14 -13
- package/cjs/fireworks.js +13 -12
- package/esm/fireworks.js +14 -13
- package/package.json +10 -10
- package/report.html +1 -1
- package/tsparticles.fireworks.bundle.js +89 -49
- package/tsparticles.fireworks.bundle.min.js +1 -1
- package/tsparticles.fireworks.bundle.min.js.LICENSE.txt +1 -1
- package/tsparticles.fireworks.js +2 -2
- package/tsparticles.fireworks.min.js +1 -1
- package/tsparticles.fireworks.min.js.LICENSE.txt +1 -1
- package/umd/fireworks.js +13 -12
package/browser/fireworks.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DestroyType, EventType, MoveDirection, OutMode, StartValueType, getRangeMax, getRangeMin, isNumber, isSsr, isString, setRangeValue, tsParticles, } from "@tsparticles/engine";
|
|
1
|
+
import { DestroyType, EventType, MoveDirection, OutMode, StartValueType, assertValidVersion, getRangeMax, getRangeMin, isNumber, isSsr, isString, setRangeValue, tsParticles, } from "@tsparticles/engine";
|
|
2
2
|
import { FireworkOptions } from "./FireworkOptions.js";
|
|
3
3
|
import { loadBasic } from "@tsparticles/basic";
|
|
4
4
|
import { loadDestroyUpdater } from "@tsparticles/updater-destroy";
|
|
@@ -29,7 +29,7 @@ class FireworksInstance {
|
|
|
29
29
|
this._container.stop();
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
|
-
async function initPlugins() {
|
|
32
|
+
async function initPlugins(engine) {
|
|
33
33
|
if (initialized) {
|
|
34
34
|
return;
|
|
35
35
|
}
|
|
@@ -45,14 +45,15 @@ async function initPlugins() {
|
|
|
45
45
|
});
|
|
46
46
|
}
|
|
47
47
|
initializing = true;
|
|
48
|
-
|
|
49
|
-
await
|
|
50
|
-
await
|
|
51
|
-
await
|
|
52
|
-
await
|
|
53
|
-
await
|
|
54
|
-
await
|
|
55
|
-
await
|
|
48
|
+
assertValidVersion(engine, "3.7.1");
|
|
49
|
+
await loadEmittersPlugin(engine, false);
|
|
50
|
+
await loadEmittersShapeSquare(engine, false);
|
|
51
|
+
await loadSoundsPlugin(engine, false);
|
|
52
|
+
await loadRotateUpdater(engine, false);
|
|
53
|
+
await loadDestroyUpdater(engine, false);
|
|
54
|
+
await loadLifeUpdater(engine, false);
|
|
55
|
+
await loadTrailEffect(engine, false);
|
|
56
|
+
await loadBasic(engine, false);
|
|
56
57
|
initializing = false;
|
|
57
58
|
initialized = true;
|
|
58
59
|
}
|
|
@@ -247,7 +248,7 @@ function getOptions(options, canvas) {
|
|
|
247
248
|
};
|
|
248
249
|
}
|
|
249
250
|
async function getFireworksInstance(id, sourceOptions, canvas) {
|
|
250
|
-
await initPlugins();
|
|
251
|
+
await initPlugins(tsParticles);
|
|
251
252
|
const options = new FireworkOptions();
|
|
252
253
|
options.load(sourceOptions);
|
|
253
254
|
const particlesOptions = getOptions(options, canvas), container = await tsParticles.load({ id, element: canvas, options: particlesOptions });
|
|
@@ -274,9 +275,9 @@ fireworks.create = async (canvas, options) => {
|
|
|
274
275
|
return getFireworksInstance(id, options ?? {}, canvas);
|
|
275
276
|
};
|
|
276
277
|
fireworks.init = async () => {
|
|
277
|
-
await initPlugins();
|
|
278
|
+
await initPlugins(tsParticles);
|
|
278
279
|
};
|
|
279
|
-
fireworks.version =
|
|
280
|
+
fireworks.version = "3.7.1";
|
|
280
281
|
if (!isSsr()) {
|
|
281
282
|
window.fireworks = fireworks;
|
|
282
283
|
}
|
package/cjs/fireworks.js
CHANGED
|
@@ -32,7 +32,7 @@ class FireworksInstance {
|
|
|
32
32
|
this._container.stop();
|
|
33
33
|
}
|
|
34
34
|
}
|
|
35
|
-
async function initPlugins() {
|
|
35
|
+
async function initPlugins(engine) {
|
|
36
36
|
if (initialized) {
|
|
37
37
|
return;
|
|
38
38
|
}
|
|
@@ -48,14 +48,15 @@ async function initPlugins() {
|
|
|
48
48
|
});
|
|
49
49
|
}
|
|
50
50
|
initializing = true;
|
|
51
|
-
|
|
52
|
-
await (0,
|
|
53
|
-
await (0,
|
|
54
|
-
await (0,
|
|
55
|
-
await (0,
|
|
56
|
-
await (0,
|
|
57
|
-
await (0,
|
|
58
|
-
await (0,
|
|
51
|
+
(0, engine_1.assertValidVersion)(engine, "3.7.1");
|
|
52
|
+
await (0, plugin_emitters_1.loadEmittersPlugin)(engine, false);
|
|
53
|
+
await (0, plugin_emitters_shape_square_1.loadEmittersShapeSquare)(engine, false);
|
|
54
|
+
await (0, plugin_sounds_1.loadSoundsPlugin)(engine, false);
|
|
55
|
+
await (0, updater_rotate_1.loadRotateUpdater)(engine, false);
|
|
56
|
+
await (0, updater_destroy_1.loadDestroyUpdater)(engine, false);
|
|
57
|
+
await (0, updater_life_1.loadLifeUpdater)(engine, false);
|
|
58
|
+
await (0, effect_trail_1.loadTrailEffect)(engine, false);
|
|
59
|
+
await (0, basic_1.loadBasic)(engine, false);
|
|
59
60
|
initializing = false;
|
|
60
61
|
initialized = true;
|
|
61
62
|
}
|
|
@@ -250,7 +251,7 @@ function getOptions(options, canvas) {
|
|
|
250
251
|
};
|
|
251
252
|
}
|
|
252
253
|
async function getFireworksInstance(id, sourceOptions, canvas) {
|
|
253
|
-
await initPlugins();
|
|
254
|
+
await initPlugins(engine_1.tsParticles);
|
|
254
255
|
const options = new FireworkOptions_js_1.FireworkOptions();
|
|
255
256
|
options.load(sourceOptions);
|
|
256
257
|
const particlesOptions = getOptions(options, canvas), container = await engine_1.tsParticles.load({ id, element: canvas, options: particlesOptions });
|
|
@@ -277,9 +278,9 @@ fireworks.create = async (canvas, options) => {
|
|
|
277
278
|
return getFireworksInstance(id, options ?? {}, canvas);
|
|
278
279
|
};
|
|
279
280
|
fireworks.init = async () => {
|
|
280
|
-
await initPlugins();
|
|
281
|
+
await initPlugins(engine_1.tsParticles);
|
|
281
282
|
};
|
|
282
|
-
fireworks.version =
|
|
283
|
+
fireworks.version = "3.7.1";
|
|
283
284
|
if (!(0, engine_1.isSsr)()) {
|
|
284
285
|
window.fireworks = fireworks;
|
|
285
286
|
}
|
package/esm/fireworks.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DestroyType, EventType, MoveDirection, OutMode, StartValueType, getRangeMax, getRangeMin, isNumber, isSsr, isString, setRangeValue, tsParticles, } from "@tsparticles/engine";
|
|
1
|
+
import { DestroyType, EventType, MoveDirection, OutMode, StartValueType, assertValidVersion, getRangeMax, getRangeMin, isNumber, isSsr, isString, setRangeValue, tsParticles, } from "@tsparticles/engine";
|
|
2
2
|
import { FireworkOptions } from "./FireworkOptions.js";
|
|
3
3
|
import { loadBasic } from "@tsparticles/basic";
|
|
4
4
|
import { loadDestroyUpdater } from "@tsparticles/updater-destroy";
|
|
@@ -29,7 +29,7 @@ class FireworksInstance {
|
|
|
29
29
|
this._container.stop();
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
|
-
async function initPlugins() {
|
|
32
|
+
async function initPlugins(engine) {
|
|
33
33
|
if (initialized) {
|
|
34
34
|
return;
|
|
35
35
|
}
|
|
@@ -45,14 +45,15 @@ async function initPlugins() {
|
|
|
45
45
|
});
|
|
46
46
|
}
|
|
47
47
|
initializing = true;
|
|
48
|
-
|
|
49
|
-
await
|
|
50
|
-
await
|
|
51
|
-
await
|
|
52
|
-
await
|
|
53
|
-
await
|
|
54
|
-
await
|
|
55
|
-
await
|
|
48
|
+
assertValidVersion(engine, "3.7.1");
|
|
49
|
+
await loadEmittersPlugin(engine, false);
|
|
50
|
+
await loadEmittersShapeSquare(engine, false);
|
|
51
|
+
await loadSoundsPlugin(engine, false);
|
|
52
|
+
await loadRotateUpdater(engine, false);
|
|
53
|
+
await loadDestroyUpdater(engine, false);
|
|
54
|
+
await loadLifeUpdater(engine, false);
|
|
55
|
+
await loadTrailEffect(engine, false);
|
|
56
|
+
await loadBasic(engine, false);
|
|
56
57
|
initializing = false;
|
|
57
58
|
initialized = true;
|
|
58
59
|
}
|
|
@@ -247,7 +248,7 @@ function getOptions(options, canvas) {
|
|
|
247
248
|
};
|
|
248
249
|
}
|
|
249
250
|
async function getFireworksInstance(id, sourceOptions, canvas) {
|
|
250
|
-
await initPlugins();
|
|
251
|
+
await initPlugins(tsParticles);
|
|
251
252
|
const options = new FireworkOptions();
|
|
252
253
|
options.load(sourceOptions);
|
|
253
254
|
const particlesOptions = getOptions(options, canvas), container = await tsParticles.load({ id, element: canvas, options: particlesOptions });
|
|
@@ -274,9 +275,9 @@ fireworks.create = async (canvas, options) => {
|
|
|
274
275
|
return getFireworksInstance(id, options ?? {}, canvas);
|
|
275
276
|
};
|
|
276
277
|
fireworks.init = async () => {
|
|
277
|
-
await initPlugins();
|
|
278
|
+
await initPlugins(tsParticles);
|
|
278
279
|
};
|
|
279
|
-
fireworks.version =
|
|
280
|
+
fireworks.version = "3.7.1";
|
|
280
281
|
if (!isSsr()) {
|
|
281
282
|
window.fireworks = fireworks;
|
|
282
283
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsparticles/fireworks",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.7.1",
|
|
4
4
|
"description": "Easily create highly customizable particle animations and use them as animated backgrounds for your website. Ready to use components available also for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.",
|
|
5
5
|
"homepage": "https://particles.js.org",
|
|
6
6
|
"repository": {
|
|
@@ -99,15 +99,15 @@
|
|
|
99
99
|
"./package.json": "./package.json"
|
|
100
100
|
},
|
|
101
101
|
"dependencies": {
|
|
102
|
-
"@tsparticles/basic": "
|
|
103
|
-
"@tsparticles/effect-trail": "
|
|
104
|
-
"@tsparticles/engine": "
|
|
105
|
-
"@tsparticles/plugin-emitters": "
|
|
106
|
-
"@tsparticles/plugin-emitters-shape-square": "
|
|
107
|
-
"@tsparticles/plugin-sounds": "
|
|
108
|
-
"@tsparticles/updater-destroy": "
|
|
109
|
-
"@tsparticles/updater-life": "
|
|
110
|
-
"@tsparticles/updater-rotate": "
|
|
102
|
+
"@tsparticles/basic": "3.7.1",
|
|
103
|
+
"@tsparticles/effect-trail": "3.7.1",
|
|
104
|
+
"@tsparticles/engine": "3.7.1",
|
|
105
|
+
"@tsparticles/plugin-emitters": "3.7.1",
|
|
106
|
+
"@tsparticles/plugin-emitters-shape-square": "3.7.1",
|
|
107
|
+
"@tsparticles/plugin-sounds": "3.7.1",
|
|
108
|
+
"@tsparticles/updater-destroy": "3.7.1",
|
|
109
|
+
"@tsparticles/updater-life": "3.7.1",
|
|
110
|
+
"@tsparticles/updater-rotate": "3.7.1"
|
|
111
111
|
},
|
|
112
112
|
"publishConfig": {
|
|
113
113
|
"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/fireworks [
|
|
6
|
+
<title>@tsparticles/fireworks [24 Nov 2024 at 23:47]</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>
|