@tsparticles/confetti 3.6.0-beta.1 → 3.7.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/ConfettiOptions.js +2 -2
- package/browser/confetti.js +3 -2
- package/cjs/ConfettiOptions.js +1 -1
- package/cjs/confetti.js +2 -1
- package/esm/ConfettiOptions.js +2 -2
- package/esm/confetti.js +3 -2
- package/package.json +17 -17
- package/report.html +1 -1
- package/tsparticles.confetti.bundle.js +170 -130
- package/tsparticles.confetti.bundle.min.js +1 -1
- package/tsparticles.confetti.bundle.min.js.LICENSE.txt +1 -1
- package/tsparticles.confetti.js +3 -3
- package/tsparticles.confetti.min.js +1 -1
- package/tsparticles.confetti.min.js.LICENSE.txt +1 -1
- package/umd/ConfettiOptions.js +1 -1
- package/umd/confetti.js +2 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { deepExtend, isArray, percentDenominator, } from "@tsparticles/engine";
|
|
1
|
+
import { deepExtend, isArray, isNull, percentDenominator, } from "@tsparticles/engine";
|
|
2
2
|
export class ConfettiOptions {
|
|
3
3
|
constructor() {
|
|
4
4
|
this.angle = 90;
|
|
@@ -38,7 +38,7 @@ export class ConfettiOptions {
|
|
|
38
38
|
this.count = value;
|
|
39
39
|
}
|
|
40
40
|
load(data) {
|
|
41
|
-
if (
|
|
41
|
+
if (isNull(data)) {
|
|
42
42
|
return;
|
|
43
43
|
}
|
|
44
44
|
if (data.angle !== undefined) {
|
package/browser/confetti.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { isSsr, isString, millisecondsToSeconds, tsParticles, } from "@tsparticles/engine";
|
|
1
|
+
import { assertValidVersion, isSsr, isString, millisecondsToSeconds, tsParticles, } from "@tsparticles/engine";
|
|
2
2
|
import { loadEmittersPlugin } from "@tsparticles/plugin-emitters";
|
|
3
3
|
import { ConfettiOptions } from "./ConfettiOptions.js";
|
|
4
4
|
import { loadBasic } from "@tsparticles/basic";
|
|
@@ -35,6 +35,7 @@ async function initPlugins(engine) {
|
|
|
35
35
|
});
|
|
36
36
|
}
|
|
37
37
|
initializing = true;
|
|
38
|
+
assertValidVersion(engine, "3.7.0");
|
|
38
39
|
await loadEmittersPlugin(engine, false);
|
|
39
40
|
await loadMotionPlugin(engine, false);
|
|
40
41
|
await loadCardsShape(engine, false);
|
|
@@ -348,7 +349,7 @@ confetti.create = async (canvas, options) => {
|
|
|
348
349
|
confetti.init = async () => {
|
|
349
350
|
await initPlugins(tsParticles);
|
|
350
351
|
};
|
|
351
|
-
confetti.version =
|
|
352
|
+
confetti.version = "3.7.0";
|
|
352
353
|
if (!isSsr()) {
|
|
353
354
|
window.confetti = confetti;
|
|
354
355
|
}
|
package/cjs/ConfettiOptions.js
CHANGED
package/cjs/confetti.js
CHANGED
|
@@ -38,6 +38,7 @@ async function initPlugins(engine) {
|
|
|
38
38
|
});
|
|
39
39
|
}
|
|
40
40
|
initializing = true;
|
|
41
|
+
(0, engine_1.assertValidVersion)(engine, "3.7.0");
|
|
41
42
|
await (0, plugin_emitters_1.loadEmittersPlugin)(engine, false);
|
|
42
43
|
await (0, plugin_motion_1.loadMotionPlugin)(engine, false);
|
|
43
44
|
await (0, shape_cards_1.loadCardsShape)(engine, false);
|
|
@@ -351,7 +352,7 @@ confetti.create = async (canvas, options) => {
|
|
|
351
352
|
confetti.init = async () => {
|
|
352
353
|
await initPlugins(engine_1.tsParticles);
|
|
353
354
|
};
|
|
354
|
-
confetti.version =
|
|
355
|
+
confetti.version = "3.7.0";
|
|
355
356
|
if (!(0, engine_1.isSsr)()) {
|
|
356
357
|
window.confetti = confetti;
|
|
357
358
|
}
|
package/esm/ConfettiOptions.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { deepExtend, isArray, percentDenominator, } from "@tsparticles/engine";
|
|
1
|
+
import { deepExtend, isArray, isNull, percentDenominator, } from "@tsparticles/engine";
|
|
2
2
|
export class ConfettiOptions {
|
|
3
3
|
constructor() {
|
|
4
4
|
this.angle = 90;
|
|
@@ -38,7 +38,7 @@ export class ConfettiOptions {
|
|
|
38
38
|
this.count = value;
|
|
39
39
|
}
|
|
40
40
|
load(data) {
|
|
41
|
-
if (
|
|
41
|
+
if (isNull(data)) {
|
|
42
42
|
return;
|
|
43
43
|
}
|
|
44
44
|
if (data.angle !== undefined) {
|
package/esm/confetti.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { isSsr, isString, millisecondsToSeconds, tsParticles, } from "@tsparticles/engine";
|
|
1
|
+
import { assertValidVersion, isSsr, isString, millisecondsToSeconds, tsParticles, } from "@tsparticles/engine";
|
|
2
2
|
import { loadEmittersPlugin } from "@tsparticles/plugin-emitters";
|
|
3
3
|
import { ConfettiOptions } from "./ConfettiOptions.js";
|
|
4
4
|
import { loadBasic } from "@tsparticles/basic";
|
|
@@ -35,6 +35,7 @@ async function initPlugins(engine) {
|
|
|
35
35
|
});
|
|
36
36
|
}
|
|
37
37
|
initializing = true;
|
|
38
|
+
assertValidVersion(engine, "3.7.0");
|
|
38
39
|
await loadEmittersPlugin(engine, false);
|
|
39
40
|
await loadMotionPlugin(engine, false);
|
|
40
41
|
await loadCardsShape(engine, false);
|
|
@@ -348,7 +349,7 @@ confetti.create = async (canvas, options) => {
|
|
|
348
349
|
confetti.init = async () => {
|
|
349
350
|
await initPlugins(tsParticles);
|
|
350
351
|
};
|
|
351
|
-
confetti.version =
|
|
352
|
+
confetti.version = "3.7.0";
|
|
352
353
|
if (!isSsr()) {
|
|
353
354
|
window.confetti = confetti;
|
|
354
355
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsparticles/confetti",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.7.0",
|
|
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,22 +99,22 @@
|
|
|
99
99
|
"./package.json": "./package.json"
|
|
100
100
|
},
|
|
101
101
|
"dependencies": {
|
|
102
|
-
"@tsparticles/basic": "
|
|
103
|
-
"@tsparticles/engine": "
|
|
104
|
-
"@tsparticles/plugin-emitters": "
|
|
105
|
-
"@tsparticles/plugin-motion": "
|
|
106
|
-
"@tsparticles/shape-cards": "
|
|
107
|
-
"@tsparticles/shape-emoji": "
|
|
108
|
-
"@tsparticles/shape-heart": "
|
|
109
|
-
"@tsparticles/shape-image": "
|
|
110
|
-
"@tsparticles/shape-polygon": "
|
|
111
|
-
"@tsparticles/shape-square": "
|
|
112
|
-
"@tsparticles/shape-star": "
|
|
113
|
-
"@tsparticles/updater-life": "
|
|
114
|
-
"@tsparticles/updater-roll": "
|
|
115
|
-
"@tsparticles/updater-rotate": "
|
|
116
|
-
"@tsparticles/updater-tilt": "
|
|
117
|
-
"@tsparticles/updater-wobble": "
|
|
102
|
+
"@tsparticles/basic": "3.7.0",
|
|
103
|
+
"@tsparticles/engine": "3.7.0",
|
|
104
|
+
"@tsparticles/plugin-emitters": "3.7.0",
|
|
105
|
+
"@tsparticles/plugin-motion": "3.7.0",
|
|
106
|
+
"@tsparticles/shape-cards": "3.7.0",
|
|
107
|
+
"@tsparticles/shape-emoji": "3.7.0",
|
|
108
|
+
"@tsparticles/shape-heart": "3.7.0",
|
|
109
|
+
"@tsparticles/shape-image": "3.7.0",
|
|
110
|
+
"@tsparticles/shape-polygon": "3.7.0",
|
|
111
|
+
"@tsparticles/shape-square": "3.7.0",
|
|
112
|
+
"@tsparticles/shape-star": "3.7.0",
|
|
113
|
+
"@tsparticles/updater-life": "3.7.0",
|
|
114
|
+
"@tsparticles/updater-roll": "3.7.0",
|
|
115
|
+
"@tsparticles/updater-rotate": "3.7.0",
|
|
116
|
+
"@tsparticles/updater-tilt": "3.7.0",
|
|
117
|
+
"@tsparticles/updater-wobble": "3.7.0"
|
|
118
118
|
},
|
|
119
119
|
"publishConfig": {
|
|
120
120
|
"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/confetti [
|
|
6
|
+
<title>@tsparticles/confetti [24 Nov 2024 at 19:30]</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>
|