@tsparticles/confetti 3.7.1 → 3.8.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/confetti.js +3 -3
- package/cjs/confetti.js +2 -2
- package/esm/confetti.js +3 -3
- package/package.json +17 -17
- package/report.html +1 -1
- package/tsparticles.confetti.bundle.js +49 -49
- package/tsparticles.confetti.bundle.min.js +1 -1
- package/tsparticles.confetti.bundle.min.js.LICENSE.txt +1 -1
- package/tsparticles.confetti.js +2 -2
- package/tsparticles.confetti.min.js +1 -1
- package/tsparticles.confetti.min.js.LICENSE.txt +1 -1
- package/umd/confetti.js +2 -2
package/browser/confetti.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { 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,7 +35,7 @@ async function initPlugins(engine) {
|
|
|
35
35
|
});
|
|
36
36
|
}
|
|
37
37
|
initializing = true;
|
|
38
|
-
|
|
38
|
+
engine.checkVersion("3.8.1");
|
|
39
39
|
await loadEmittersPlugin(engine, false);
|
|
40
40
|
await loadMotionPlugin(engine, false);
|
|
41
41
|
await loadCardsShape(engine, false);
|
|
@@ -349,7 +349,7 @@ confetti.create = async (canvas, options) => {
|
|
|
349
349
|
confetti.init = async () => {
|
|
350
350
|
await initPlugins(tsParticles);
|
|
351
351
|
};
|
|
352
|
-
confetti.version = "3.
|
|
352
|
+
confetti.version = "3.8.1";
|
|
353
353
|
if (!isSsr()) {
|
|
354
354
|
window.confetti = confetti;
|
|
355
355
|
}
|
package/cjs/confetti.js
CHANGED
|
@@ -38,7 +38,7 @@ async function initPlugins(engine) {
|
|
|
38
38
|
});
|
|
39
39
|
}
|
|
40
40
|
initializing = true;
|
|
41
|
-
|
|
41
|
+
engine.checkVersion("3.8.1");
|
|
42
42
|
await (0, plugin_emitters_1.loadEmittersPlugin)(engine, false);
|
|
43
43
|
await (0, plugin_motion_1.loadMotionPlugin)(engine, false);
|
|
44
44
|
await (0, shape_cards_1.loadCardsShape)(engine, false);
|
|
@@ -352,7 +352,7 @@ confetti.create = async (canvas, options) => {
|
|
|
352
352
|
confetti.init = async () => {
|
|
353
353
|
await initPlugins(engine_1.tsParticles);
|
|
354
354
|
};
|
|
355
|
-
confetti.version = "3.
|
|
355
|
+
confetti.version = "3.8.1";
|
|
356
356
|
if (!(0, engine_1.isSsr)()) {
|
|
357
357
|
window.confetti = confetti;
|
|
358
358
|
}
|
package/esm/confetti.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { 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,7 +35,7 @@ async function initPlugins(engine) {
|
|
|
35
35
|
});
|
|
36
36
|
}
|
|
37
37
|
initializing = true;
|
|
38
|
-
|
|
38
|
+
engine.checkVersion("3.8.1");
|
|
39
39
|
await loadEmittersPlugin(engine, false);
|
|
40
40
|
await loadMotionPlugin(engine, false);
|
|
41
41
|
await loadCardsShape(engine, false);
|
|
@@ -349,7 +349,7 @@ confetti.create = async (canvas, options) => {
|
|
|
349
349
|
confetti.init = async () => {
|
|
350
350
|
await initPlugins(tsParticles);
|
|
351
351
|
};
|
|
352
|
-
confetti.version = "3.
|
|
352
|
+
confetti.version = "3.8.1";
|
|
353
353
|
if (!isSsr()) {
|
|
354
354
|
window.confetti = confetti;
|
|
355
355
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsparticles/confetti",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.8.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,22 +99,22 @@
|
|
|
99
99
|
"./package.json": "./package.json"
|
|
100
100
|
},
|
|
101
101
|
"dependencies": {
|
|
102
|
-
"@tsparticles/basic": "3.
|
|
103
|
-
"@tsparticles/engine": "3.
|
|
104
|
-
"@tsparticles/plugin-emitters": "3.
|
|
105
|
-
"@tsparticles/plugin-motion": "3.
|
|
106
|
-
"@tsparticles/shape-cards": "3.
|
|
107
|
-
"@tsparticles/shape-emoji": "3.
|
|
108
|
-
"@tsparticles/shape-heart": "3.
|
|
109
|
-
"@tsparticles/shape-image": "3.
|
|
110
|
-
"@tsparticles/shape-polygon": "3.
|
|
111
|
-
"@tsparticles/shape-square": "3.
|
|
112
|
-
"@tsparticles/shape-star": "3.
|
|
113
|
-
"@tsparticles/updater-life": "3.
|
|
114
|
-
"@tsparticles/updater-roll": "3.
|
|
115
|
-
"@tsparticles/updater-rotate": "3.
|
|
116
|
-
"@tsparticles/updater-tilt": "3.
|
|
117
|
-
"@tsparticles/updater-wobble": "3.
|
|
102
|
+
"@tsparticles/basic": "3.8.1",
|
|
103
|
+
"@tsparticles/engine": "3.8.1",
|
|
104
|
+
"@tsparticles/plugin-emitters": "3.8.1",
|
|
105
|
+
"@tsparticles/plugin-motion": "3.8.1",
|
|
106
|
+
"@tsparticles/shape-cards": "3.8.1",
|
|
107
|
+
"@tsparticles/shape-emoji": "3.8.1",
|
|
108
|
+
"@tsparticles/shape-heart": "3.8.1",
|
|
109
|
+
"@tsparticles/shape-image": "3.8.1",
|
|
110
|
+
"@tsparticles/shape-polygon": "3.8.1",
|
|
111
|
+
"@tsparticles/shape-square": "3.8.1",
|
|
112
|
+
"@tsparticles/shape-star": "3.8.1",
|
|
113
|
+
"@tsparticles/updater-life": "3.8.1",
|
|
114
|
+
"@tsparticles/updater-roll": "3.8.1",
|
|
115
|
+
"@tsparticles/updater-rotate": "3.8.1",
|
|
116
|
+
"@tsparticles/updater-tilt": "3.8.1",
|
|
117
|
+
"@tsparticles/updater-wobble": "3.8.1"
|
|
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 [31 Jan 2025 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>
|