@tsparticles/all 3.6.0-beta.0 → 3.6.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 +2 -1
- package/cjs/index.js +2 -1
- package/esm/index.js +2 -1
- package/package.json +50 -49
- package/report.html +1 -1
- package/tsparticles.all.bundle.js +194 -154
- 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 +3 -2
package/browser/index.js
CHANGED
|
@@ -30,6 +30,7 @@ import { loadInfectionPlugin } from "@tsparticles/plugin-infection";
|
|
|
30
30
|
import { loadInfinityShape } from "@tsparticles/shape-infinity";
|
|
31
31
|
import { loadLightInteraction } from "@tsparticles/interaction-light";
|
|
32
32
|
import { loadMotionPlugin } from "@tsparticles/plugin-motion";
|
|
33
|
+
import { loadOklchColorPlugin } from "@tsparticles/plugin-oklch-color";
|
|
33
34
|
import { loadOrbitUpdater } from "@tsparticles/updater-orbit";
|
|
34
35
|
import { loadParticlesRepulseInteraction } from "@tsparticles/interaction-particles-repulse";
|
|
35
36
|
import { loadPathShape } from "@tsparticles/shape-path";
|
|
@@ -49,6 +50,7 @@ export async function loadAll(engine, refresh = true) {
|
|
|
49
50
|
initPjs(engine);
|
|
50
51
|
await loadFull(engine, false);
|
|
51
52
|
await loadHsvColorPlugin();
|
|
53
|
+
await loadOklchColorPlugin();
|
|
52
54
|
await loadEasingBackPlugin();
|
|
53
55
|
await loadEasingCircPlugin();
|
|
54
56
|
await loadEasingCubicPlugin();
|
|
@@ -60,7 +62,6 @@ export async function loadAll(engine, refresh = true) {
|
|
|
60
62
|
await loadEmittersShapeCanvas(engine, false);
|
|
61
63
|
await loadEmittersShapePath(engine, false);
|
|
62
64
|
await loadEmittersShapePolygon(engine, false);
|
|
63
|
-
await loadHsvColorPlugin();
|
|
64
65
|
await loadCanvasMaskPlugin(engine, false);
|
|
65
66
|
await loadInfectionPlugin(engine, false);
|
|
66
67
|
await loadMotionPlugin(engine, false);
|
package/cjs/index.js
CHANGED
|
@@ -33,6 +33,7 @@ const plugin_infection_1 = require("@tsparticles/plugin-infection");
|
|
|
33
33
|
const shape_infinity_1 = require("@tsparticles/shape-infinity");
|
|
34
34
|
const interaction_light_1 = require("@tsparticles/interaction-light");
|
|
35
35
|
const plugin_motion_1 = require("@tsparticles/plugin-motion");
|
|
36
|
+
const plugin_oklch_color_1 = require("@tsparticles/plugin-oklch-color");
|
|
36
37
|
const updater_orbit_1 = require("@tsparticles/updater-orbit");
|
|
37
38
|
const interaction_particles_repulse_1 = require("@tsparticles/interaction-particles-repulse");
|
|
38
39
|
const shape_path_1 = require("@tsparticles/shape-path");
|
|
@@ -52,6 +53,7 @@ async function loadAll(engine, refresh = true) {
|
|
|
52
53
|
(0, pjs_1.initPjs)(engine);
|
|
53
54
|
await (0, tsparticles_1.loadFull)(engine, false);
|
|
54
55
|
await (0, plugin_hsv_color_1.loadHsvColorPlugin)();
|
|
56
|
+
await (0, plugin_oklch_color_1.loadOklchColorPlugin)();
|
|
55
57
|
await (0, plugin_easing_back_1.loadEasingBackPlugin)();
|
|
56
58
|
await (0, plugin_easing_circ_1.loadEasingCircPlugin)();
|
|
57
59
|
await (0, plugin_easing_cubic_1.loadEasingCubicPlugin)();
|
|
@@ -63,7 +65,6 @@ async function loadAll(engine, refresh = true) {
|
|
|
63
65
|
await (0, plugin_emitters_shape_canvas_1.loadEmittersShapeCanvas)(engine, false);
|
|
64
66
|
await (0, plugin_emitters_shape_path_1.loadEmittersShapePath)(engine, false);
|
|
65
67
|
await (0, plugin_emitters_shape_polygon_1.loadEmittersShapePolygon)(engine, false);
|
|
66
|
-
await (0, plugin_hsv_color_1.loadHsvColorPlugin)();
|
|
67
68
|
await (0, plugin_canvas_mask_1.loadCanvasMaskPlugin)(engine, false);
|
|
68
69
|
await (0, plugin_infection_1.loadInfectionPlugin)(engine, false);
|
|
69
70
|
await (0, plugin_motion_1.loadMotionPlugin)(engine, false);
|
package/esm/index.js
CHANGED
|
@@ -30,6 +30,7 @@ import { loadInfectionPlugin } from "@tsparticles/plugin-infection";
|
|
|
30
30
|
import { loadInfinityShape } from "@tsparticles/shape-infinity";
|
|
31
31
|
import { loadLightInteraction } from "@tsparticles/interaction-light";
|
|
32
32
|
import { loadMotionPlugin } from "@tsparticles/plugin-motion";
|
|
33
|
+
import { loadOklchColorPlugin } from "@tsparticles/plugin-oklch-color";
|
|
33
34
|
import { loadOrbitUpdater } from "@tsparticles/updater-orbit";
|
|
34
35
|
import { loadParticlesRepulseInteraction } from "@tsparticles/interaction-particles-repulse";
|
|
35
36
|
import { loadPathShape } from "@tsparticles/shape-path";
|
|
@@ -49,6 +50,7 @@ export async function loadAll(engine, refresh = true) {
|
|
|
49
50
|
initPjs(engine);
|
|
50
51
|
await loadFull(engine, false);
|
|
51
52
|
await loadHsvColorPlugin();
|
|
53
|
+
await loadOklchColorPlugin();
|
|
52
54
|
await loadEasingBackPlugin();
|
|
53
55
|
await loadEasingCircPlugin();
|
|
54
56
|
await loadEasingCubicPlugin();
|
|
@@ -60,7 +62,6 @@ export async function loadAll(engine, refresh = true) {
|
|
|
60
62
|
await loadEmittersShapeCanvas(engine, false);
|
|
61
63
|
await loadEmittersShapePath(engine, false);
|
|
62
64
|
await loadEmittersShapePolygon(engine, false);
|
|
63
|
-
await loadHsvColorPlugin();
|
|
64
65
|
await loadCanvasMaskPlugin(engine, false);
|
|
65
66
|
await loadInfectionPlugin(engine, false);
|
|
66
67
|
await loadMotionPlugin(engine, false);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsparticles/all",
|
|
3
|
-
"version": "3.6.0
|
|
3
|
+
"version": "3.6.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,54 +99,55 @@
|
|
|
99
99
|
"./package.json": "./package.json"
|
|
100
100
|
},
|
|
101
101
|
"dependencies": {
|
|
102
|
-
"@tsparticles/effect-bubble": "^3.6.0
|
|
103
|
-
"@tsparticles/effect-trail": "^3.6.0
|
|
104
|
-
"@tsparticles/engine": "^3.6.0
|
|
105
|
-
"@tsparticles/interaction-external-particle": "^3.6.0
|
|
106
|
-
"@tsparticles/interaction-external-pop": "^3.6.0
|
|
107
|
-
"@tsparticles/interaction-light": "^3.6.0
|
|
108
|
-
"@tsparticles/interaction-particles-repulse": "^3.6.0
|
|
109
|
-
"@tsparticles/path-curl-noise": "^3.6.0
|
|
110
|
-
"@tsparticles/path-curves": "^3.6.0
|
|
111
|
-
"@tsparticles/path-perlin-noise": "^3.6.0
|
|
112
|
-
"@tsparticles/path-polygon": "^3.6.0
|
|
113
|
-
"@tsparticles/path-simplex-noise": "^3.6.0
|
|
114
|
-
"@tsparticles/path-svg": "^3.6.0
|
|
115
|
-
"@tsparticles/path-zig-zag": "^3.6.0
|
|
116
|
-
"@tsparticles/pjs": "^3.6.0
|
|
117
|
-
"@tsparticles/plugin-canvas-mask": "^3.6.0
|
|
118
|
-
"@tsparticles/plugin-easing-back": "^3.6.0
|
|
119
|
-
"@tsparticles/plugin-easing-circ": "^3.6.0
|
|
120
|
-
"@tsparticles/plugin-easing-cubic": "^3.6.0
|
|
121
|
-
"@tsparticles/plugin-easing-expo": "^3.6.0
|
|
122
|
-
"@tsparticles/plugin-easing-linear": "^3.6.0
|
|
123
|
-
"@tsparticles/plugin-easing-quart": "^3.6.0
|
|
124
|
-
"@tsparticles/plugin-easing-quint": "^3.6.0
|
|
125
|
-
"@tsparticles/plugin-easing-sine": "^3.6.0
|
|
126
|
-
"@tsparticles/plugin-emitters-shape-canvas": "^3.6.0
|
|
127
|
-
"@tsparticles/plugin-emitters-shape-path": "^3.6.0
|
|
128
|
-
"@tsparticles/plugin-emitters-shape-polygon": "^3.6.0
|
|
129
|
-
"@tsparticles/plugin-export-image": "^3.6.0
|
|
130
|
-
"@tsparticles/plugin-export-json": "^3.6.0
|
|
131
|
-
"@tsparticles/plugin-export-video": "^3.6.0
|
|
132
|
-
"@tsparticles/plugin-hsv-color": "^3.6.0
|
|
133
|
-
"@tsparticles/plugin-infection": "^3.6.0
|
|
134
|
-
"@tsparticles/plugin-motion": "^3.6.0
|
|
135
|
-
"@tsparticles/plugin-
|
|
136
|
-
"@tsparticles/plugin-
|
|
137
|
-
"@tsparticles/plugin-
|
|
138
|
-
"@tsparticles/
|
|
139
|
-
"@tsparticles/shape-
|
|
140
|
-
"@tsparticles/shape-
|
|
141
|
-
"@tsparticles/shape-
|
|
142
|
-
"@tsparticles/shape-
|
|
143
|
-
"@tsparticles/shape-
|
|
144
|
-
"@tsparticles/shape-
|
|
145
|
-
"@tsparticles/shape-rounded-
|
|
146
|
-
"@tsparticles/shape-
|
|
147
|
-
"@tsparticles/
|
|
148
|
-
"@tsparticles/updater-
|
|
149
|
-
"tsparticles": "^3.6.0
|
|
102
|
+
"@tsparticles/effect-bubble": "^3.6.0",
|
|
103
|
+
"@tsparticles/effect-trail": "^3.6.0",
|
|
104
|
+
"@tsparticles/engine": "^3.6.0",
|
|
105
|
+
"@tsparticles/interaction-external-particle": "^3.6.0",
|
|
106
|
+
"@tsparticles/interaction-external-pop": "^3.6.0",
|
|
107
|
+
"@tsparticles/interaction-light": "^3.6.0",
|
|
108
|
+
"@tsparticles/interaction-particles-repulse": "^3.6.0",
|
|
109
|
+
"@tsparticles/path-curl-noise": "^3.6.0",
|
|
110
|
+
"@tsparticles/path-curves": "^3.6.0",
|
|
111
|
+
"@tsparticles/path-perlin-noise": "^3.6.0",
|
|
112
|
+
"@tsparticles/path-polygon": "^3.6.0",
|
|
113
|
+
"@tsparticles/path-simplex-noise": "^3.6.0",
|
|
114
|
+
"@tsparticles/path-svg": "^3.6.0",
|
|
115
|
+
"@tsparticles/path-zig-zag": "^3.6.0",
|
|
116
|
+
"@tsparticles/pjs": "^3.6.0",
|
|
117
|
+
"@tsparticles/plugin-canvas-mask": "^3.6.0",
|
|
118
|
+
"@tsparticles/plugin-easing-back": "^3.6.0",
|
|
119
|
+
"@tsparticles/plugin-easing-circ": "^3.6.0",
|
|
120
|
+
"@tsparticles/plugin-easing-cubic": "^3.6.0",
|
|
121
|
+
"@tsparticles/plugin-easing-expo": "^3.6.0",
|
|
122
|
+
"@tsparticles/plugin-easing-linear": "^3.6.0",
|
|
123
|
+
"@tsparticles/plugin-easing-quart": "^3.6.0",
|
|
124
|
+
"@tsparticles/plugin-easing-quint": "^3.6.0",
|
|
125
|
+
"@tsparticles/plugin-easing-sine": "^3.6.0",
|
|
126
|
+
"@tsparticles/plugin-emitters-shape-canvas": "^3.6.0",
|
|
127
|
+
"@tsparticles/plugin-emitters-shape-path": "^3.6.0",
|
|
128
|
+
"@tsparticles/plugin-emitters-shape-polygon": "^3.6.0",
|
|
129
|
+
"@tsparticles/plugin-export-image": "^3.6.0",
|
|
130
|
+
"@tsparticles/plugin-export-json": "^3.6.0",
|
|
131
|
+
"@tsparticles/plugin-export-video": "^3.6.0",
|
|
132
|
+
"@tsparticles/plugin-hsv-color": "^3.6.0",
|
|
133
|
+
"@tsparticles/plugin-infection": "^3.6.0",
|
|
134
|
+
"@tsparticles/plugin-motion": "^3.6.0",
|
|
135
|
+
"@tsparticles/plugin-oklch-color": "^3.6.0",
|
|
136
|
+
"@tsparticles/plugin-poisson-disc": "^3.6.0",
|
|
137
|
+
"@tsparticles/plugin-polygon-mask": "^3.6.0",
|
|
138
|
+
"@tsparticles/plugin-sounds": "^3.6.0",
|
|
139
|
+
"@tsparticles/shape-arrow": "^3.6.0",
|
|
140
|
+
"@tsparticles/shape-cards": "^3.6.0",
|
|
141
|
+
"@tsparticles/shape-cog": "^3.6.0",
|
|
142
|
+
"@tsparticles/shape-heart": "^3.6.0",
|
|
143
|
+
"@tsparticles/shape-infinity": "^3.6.0",
|
|
144
|
+
"@tsparticles/shape-path": "^3.6.0",
|
|
145
|
+
"@tsparticles/shape-rounded-polygon": "^3.6.0",
|
|
146
|
+
"@tsparticles/shape-rounded-rect": "^3.6.0",
|
|
147
|
+
"@tsparticles/shape-spiral": "^3.6.0",
|
|
148
|
+
"@tsparticles/updater-gradient": "^3.6.0",
|
|
149
|
+
"@tsparticles/updater-orbit": "^3.6.0",
|
|
150
|
+
"tsparticles": "^3.6.0"
|
|
150
151
|
},
|
|
151
152
|
"publishConfig": {
|
|
152
153
|
"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 [19 Nov 2024 at 00:03]</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>
|