@tsparticles/all 3.8.1 → 3.9.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/index.js +3 -1
- package/cjs/index.js +3 -1
- package/esm/index.js +3 -1
- package/package.json +52 -51
- package/report.html +1 -1
- package/tsparticles.all.bundle.js +748 -688
- package/tsparticles.all.bundle.min.js +1 -1
- package/tsparticles.all.bundle.min.js.LICENSE.txt +1 -1
- package/tsparticles.all.js +16 -6
- package/tsparticles.all.min.js +1 -1
- package/tsparticles.all.min.js.LICENSE.txt +1 -1
- package/umd/index.js +4 -2
package/browser/index.js
CHANGED
|
@@ -22,6 +22,7 @@ import { loadExportJSONPlugin } from "@tsparticles/plugin-export-json";
|
|
|
22
22
|
import { loadExportVideoPlugin } from "@tsparticles/plugin-export-video";
|
|
23
23
|
import { loadExternalParticleInteraction } from "@tsparticles/interaction-external-particle";
|
|
24
24
|
import { loadExternalPopInteraction } from "@tsparticles/interaction-external-pop";
|
|
25
|
+
import { loadFractalNoisePath } from "@tsparticles/path-fractal-noise";
|
|
25
26
|
import { loadFull } from "tsparticles";
|
|
26
27
|
import { loadGradientUpdater } from "@tsparticles/updater-gradient";
|
|
27
28
|
import { loadHeartShape } from "@tsparticles/shape-heart";
|
|
@@ -48,7 +49,7 @@ import { loadSpiralShape } from "@tsparticles/shape-spiral";
|
|
|
48
49
|
import { loadTrailEffect } from "@tsparticles/effect-trail";
|
|
49
50
|
import { loadZigZagPath } from "@tsparticles/path-zig-zag";
|
|
50
51
|
export async function loadAll(engine, refresh = true) {
|
|
51
|
-
engine.checkVersion("3.
|
|
52
|
+
engine.checkVersion("3.9.0");
|
|
52
53
|
initPjs(engine);
|
|
53
54
|
await loadFull(engine, false);
|
|
54
55
|
await loadHsvColorPlugin(engine, false);
|
|
@@ -81,6 +82,7 @@ export async function loadAll(engine, refresh = true) {
|
|
|
81
82
|
await loadOrbitUpdater(engine, false);
|
|
82
83
|
await loadCurvesPath(engine, false);
|
|
83
84
|
await loadCurlNoisePath(engine, false);
|
|
85
|
+
await loadFractalNoisePath(engine, false);
|
|
84
86
|
await loadPerlinNoisePath(engine, false);
|
|
85
87
|
await loadPoissonDiscPlugin(engine, false);
|
|
86
88
|
await loadPolygonPath(engine, false);
|
package/cjs/index.js
CHANGED
|
@@ -25,6 +25,7 @@ const plugin_export_json_1 = require("@tsparticles/plugin-export-json");
|
|
|
25
25
|
const plugin_export_video_1 = require("@tsparticles/plugin-export-video");
|
|
26
26
|
const interaction_external_particle_1 = require("@tsparticles/interaction-external-particle");
|
|
27
27
|
const interaction_external_pop_1 = require("@tsparticles/interaction-external-pop");
|
|
28
|
+
const path_fractal_noise_1 = require("@tsparticles/path-fractal-noise");
|
|
28
29
|
const tsparticles_1 = require("tsparticles");
|
|
29
30
|
const updater_gradient_1 = require("@tsparticles/updater-gradient");
|
|
30
31
|
const shape_heart_1 = require("@tsparticles/shape-heart");
|
|
@@ -51,7 +52,7 @@ const shape_spiral_1 = require("@tsparticles/shape-spiral");
|
|
|
51
52
|
const effect_trail_1 = require("@tsparticles/effect-trail");
|
|
52
53
|
const path_zig_zag_1 = require("@tsparticles/path-zig-zag");
|
|
53
54
|
async function loadAll(engine, refresh = true) {
|
|
54
|
-
engine.checkVersion("3.
|
|
55
|
+
engine.checkVersion("3.9.0");
|
|
55
56
|
(0, pjs_1.initPjs)(engine);
|
|
56
57
|
await (0, tsparticles_1.loadFull)(engine, false);
|
|
57
58
|
await (0, plugin_hsv_color_1.loadHsvColorPlugin)(engine, false);
|
|
@@ -84,6 +85,7 @@ async function loadAll(engine, refresh = true) {
|
|
|
84
85
|
await (0, updater_orbit_1.loadOrbitUpdater)(engine, false);
|
|
85
86
|
await (0, path_curves_1.loadCurvesPath)(engine, false);
|
|
86
87
|
await (0, path_curl_noise_1.loadCurlNoisePath)(engine, false);
|
|
88
|
+
await (0, path_fractal_noise_1.loadFractalNoisePath)(engine, false);
|
|
87
89
|
await (0, path_perlin_noise_1.loadPerlinNoisePath)(engine, false);
|
|
88
90
|
await (0, plugin_poisson_disc_1.loadPoissonDiscPlugin)(engine, false);
|
|
89
91
|
await (0, path_polygon_1.loadPolygonPath)(engine, false);
|
package/esm/index.js
CHANGED
|
@@ -22,6 +22,7 @@ import { loadExportJSONPlugin } from "@tsparticles/plugin-export-json";
|
|
|
22
22
|
import { loadExportVideoPlugin } from "@tsparticles/plugin-export-video";
|
|
23
23
|
import { loadExternalParticleInteraction } from "@tsparticles/interaction-external-particle";
|
|
24
24
|
import { loadExternalPopInteraction } from "@tsparticles/interaction-external-pop";
|
|
25
|
+
import { loadFractalNoisePath } from "@tsparticles/path-fractal-noise";
|
|
25
26
|
import { loadFull } from "tsparticles";
|
|
26
27
|
import { loadGradientUpdater } from "@tsparticles/updater-gradient";
|
|
27
28
|
import { loadHeartShape } from "@tsparticles/shape-heart";
|
|
@@ -48,7 +49,7 @@ import { loadSpiralShape } from "@tsparticles/shape-spiral";
|
|
|
48
49
|
import { loadTrailEffect } from "@tsparticles/effect-trail";
|
|
49
50
|
import { loadZigZagPath } from "@tsparticles/path-zig-zag";
|
|
50
51
|
export async function loadAll(engine, refresh = true) {
|
|
51
|
-
engine.checkVersion("3.
|
|
52
|
+
engine.checkVersion("3.9.0");
|
|
52
53
|
initPjs(engine);
|
|
53
54
|
await loadFull(engine, false);
|
|
54
55
|
await loadHsvColorPlugin(engine, false);
|
|
@@ -81,6 +82,7 @@ export async function loadAll(engine, refresh = true) {
|
|
|
81
82
|
await loadOrbitUpdater(engine, false);
|
|
82
83
|
await loadCurvesPath(engine, false);
|
|
83
84
|
await loadCurlNoisePath(engine, false);
|
|
85
|
+
await loadFractalNoisePath(engine, false);
|
|
84
86
|
await loadPerlinNoisePath(engine, false);
|
|
85
87
|
await loadPoissonDiscPlugin(engine, false);
|
|
86
88
|
await loadPolygonPath(engine, false);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsparticles/all",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.9.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,56 +99,57 @@
|
|
|
99
99
|
"./package.json": "./package.json"
|
|
100
100
|
},
|
|
101
101
|
"dependencies": {
|
|
102
|
-
"@tsparticles/effect-bubble": "3.
|
|
103
|
-
"@tsparticles/effect-trail": "3.
|
|
104
|
-
"@tsparticles/engine": "3.
|
|
105
|
-
"@tsparticles/interaction-external-particle": "3.
|
|
106
|
-
"@tsparticles/interaction-external-pop": "3.
|
|
107
|
-
"@tsparticles/interaction-light": "3.
|
|
108
|
-
"@tsparticles/interaction-particles-repulse": "3.
|
|
109
|
-
"@tsparticles/path-curl-noise": "3.
|
|
110
|
-
"@tsparticles/path-curves": "3.
|
|
111
|
-
"@tsparticles/path-
|
|
112
|
-
"@tsparticles/path-
|
|
113
|
-
"@tsparticles/path-
|
|
114
|
-
"@tsparticles/path-
|
|
115
|
-
"@tsparticles/path-
|
|
116
|
-
"@tsparticles/
|
|
117
|
-
"@tsparticles/
|
|
118
|
-
"@tsparticles/plugin-
|
|
119
|
-
"@tsparticles/plugin-easing-
|
|
120
|
-
"@tsparticles/plugin-easing-
|
|
121
|
-
"@tsparticles/plugin-easing-
|
|
122
|
-
"@tsparticles/plugin-easing-
|
|
123
|
-
"@tsparticles/plugin-easing-
|
|
124
|
-
"@tsparticles/plugin-easing-
|
|
125
|
-
"@tsparticles/plugin-easing-
|
|
126
|
-
"@tsparticles/plugin-
|
|
127
|
-
"@tsparticles/plugin-emitters-shape-
|
|
128
|
-
"@tsparticles/plugin-emitters-shape-
|
|
129
|
-
"@tsparticles/plugin-
|
|
130
|
-
"@tsparticles/plugin-export-
|
|
131
|
-
"@tsparticles/plugin-export-
|
|
132
|
-
"@tsparticles/plugin-
|
|
133
|
-
"@tsparticles/plugin-
|
|
134
|
-
"@tsparticles/plugin-
|
|
135
|
-
"@tsparticles/plugin-
|
|
136
|
-
"@tsparticles/plugin-
|
|
137
|
-
"@tsparticles/plugin-
|
|
138
|
-
"@tsparticles/plugin-
|
|
139
|
-
"@tsparticles/plugin-
|
|
140
|
-
"@tsparticles/
|
|
141
|
-
"@tsparticles/shape-
|
|
142
|
-
"@tsparticles/shape-
|
|
143
|
-
"@tsparticles/shape-
|
|
144
|
-
"@tsparticles/shape-
|
|
145
|
-
"@tsparticles/shape-
|
|
146
|
-
"@tsparticles/shape-
|
|
147
|
-
"@tsparticles/shape-rounded-
|
|
148
|
-
"@tsparticles/shape-
|
|
149
|
-
"@tsparticles/
|
|
150
|
-
"@tsparticles/updater-
|
|
151
|
-
"tsparticles": "3.
|
|
102
|
+
"@tsparticles/effect-bubble": "3.9.0",
|
|
103
|
+
"@tsparticles/effect-trail": "3.9.0",
|
|
104
|
+
"@tsparticles/engine": "3.9.0",
|
|
105
|
+
"@tsparticles/interaction-external-particle": "3.9.0",
|
|
106
|
+
"@tsparticles/interaction-external-pop": "3.9.0",
|
|
107
|
+
"@tsparticles/interaction-light": "3.9.0",
|
|
108
|
+
"@tsparticles/interaction-particles-repulse": "3.9.0",
|
|
109
|
+
"@tsparticles/path-curl-noise": "3.9.0",
|
|
110
|
+
"@tsparticles/path-curves": "3.9.0",
|
|
111
|
+
"@tsparticles/path-fractal-noise": "3.9.0",
|
|
112
|
+
"@tsparticles/path-perlin-noise": "3.9.0",
|
|
113
|
+
"@tsparticles/path-polygon": "3.9.0",
|
|
114
|
+
"@tsparticles/path-simplex-noise": "3.9.0",
|
|
115
|
+
"@tsparticles/path-svg": "3.9.0",
|
|
116
|
+
"@tsparticles/path-zig-zag": "3.9.0",
|
|
117
|
+
"@tsparticles/pjs": "3.9.0",
|
|
118
|
+
"@tsparticles/plugin-canvas-mask": "3.9.0",
|
|
119
|
+
"@tsparticles/plugin-easing-back": "3.9.0",
|
|
120
|
+
"@tsparticles/plugin-easing-circ": "3.9.0",
|
|
121
|
+
"@tsparticles/plugin-easing-cubic": "3.9.0",
|
|
122
|
+
"@tsparticles/plugin-easing-expo": "3.9.0",
|
|
123
|
+
"@tsparticles/plugin-easing-linear": "3.9.0",
|
|
124
|
+
"@tsparticles/plugin-easing-quart": "3.9.0",
|
|
125
|
+
"@tsparticles/plugin-easing-quint": "3.9.0",
|
|
126
|
+
"@tsparticles/plugin-easing-sine": "3.9.0",
|
|
127
|
+
"@tsparticles/plugin-emitters-shape-canvas": "3.9.0",
|
|
128
|
+
"@tsparticles/plugin-emitters-shape-path": "3.9.0",
|
|
129
|
+
"@tsparticles/plugin-emitters-shape-polygon": "3.9.0",
|
|
130
|
+
"@tsparticles/plugin-export-image": "3.9.0",
|
|
131
|
+
"@tsparticles/plugin-export-json": "3.9.0",
|
|
132
|
+
"@tsparticles/plugin-export-video": "3.9.0",
|
|
133
|
+
"@tsparticles/plugin-hsv-color": "3.9.0",
|
|
134
|
+
"@tsparticles/plugin-infection": "3.9.0",
|
|
135
|
+
"@tsparticles/plugin-motion": "3.9.0",
|
|
136
|
+
"@tsparticles/plugin-named-color": "3.9.0",
|
|
137
|
+
"@tsparticles/plugin-oklch-color": "3.9.0",
|
|
138
|
+
"@tsparticles/plugin-poisson-disc": "3.9.0",
|
|
139
|
+
"@tsparticles/plugin-polygon-mask": "3.9.0",
|
|
140
|
+
"@tsparticles/plugin-sounds": "3.9.0",
|
|
141
|
+
"@tsparticles/shape-arrow": "3.9.0",
|
|
142
|
+
"@tsparticles/shape-cards": "3.9.0",
|
|
143
|
+
"@tsparticles/shape-cog": "3.9.0",
|
|
144
|
+
"@tsparticles/shape-heart": "3.9.0",
|
|
145
|
+
"@tsparticles/shape-infinity": "3.9.0",
|
|
146
|
+
"@tsparticles/shape-path": "3.9.0",
|
|
147
|
+
"@tsparticles/shape-rounded-polygon": "3.9.0",
|
|
148
|
+
"@tsparticles/shape-rounded-rect": "3.9.0",
|
|
149
|
+
"@tsparticles/shape-spiral": "3.9.0",
|
|
150
|
+
"@tsparticles/updater-gradient": "3.9.0",
|
|
151
|
+
"@tsparticles/updater-orbit": "3.9.0",
|
|
152
|
+
"tsparticles": "3.9.0"
|
|
152
153
|
},
|
|
153
154
|
"publishConfig": {
|
|
154
155
|
"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/all [
|
|
6
|
+
<title>@tsparticles/all [1 Aug 2025 at 08:55]</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>
|