@tsparticles/all 3.0.0-beta.3 → 3.0.0-beta.5
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/README.md +0 -1
- package/browser/index.js +18 -4
- package/cjs/index.js +18 -4
- package/esm/index.js +18 -4
- package/package.json +45 -38
- package/report.html +4 -22
- package/tsparticles.all.bundle.js +3980 -2329
- package/tsparticles.all.bundle.min.js +1 -1
- package/tsparticles.all.bundle.min.js.LICENSE.txt +1 -1
- package/tsparticles.all.js +251 -603
- package/tsparticles.all.min.js +1 -1
- package/tsparticles.all.min.js.LICENSE.txt +1 -1
- package/umd/index.js +19 -5
package/README.md
CHANGED
|
@@ -37,7 +37,6 @@
|
|
|
37
37
|
- [@tsparticles/shape-cards](https://github.com/tsparticles/tsparticles/tree/main/shapes/cards)
|
|
38
38
|
- [@tsparticles/shape-cog](https://github.com/tsparticles/tsparticles/tree/main/shapes/cog)
|
|
39
39
|
- [@tsparticles/shape-heart](https://github.com/tsparticles/tsparticles/tree/main/shapes/heart)
|
|
40
|
-
- [@tsparticles/shape-multiline-text](https://github.com/tsparticles/tsparticles/tree/main/shapes/multiline-text)
|
|
41
40
|
- [@tsparticles/shape-path](https://github.com/tsparticles/tsparticles/tree/main/shapes/path)
|
|
42
41
|
- [@tsparticles/shape-rounded-polygon](https://github.com/tsparticles/tsparticles/tree/main/shapes/polygon)
|
|
43
42
|
- [@tsparticles/shape-rounded-rect](https://github.com/tsparticles/tsparticles/tree/main/shapes/rect)
|
package/browser/index.js
CHANGED
|
@@ -1,19 +1,26 @@
|
|
|
1
|
+
import { initPjs } from "@tsparticles/pjs";
|
|
1
2
|
import { loadArrowShape } from "@tsparticles/shape-arrow";
|
|
2
|
-
import {
|
|
3
|
+
import { loadBubbleEffect } from "@tsparticles/effect-bubble";
|
|
3
4
|
import { loadCanvasMaskPlugin } from "@tsparticles/plugin-canvas-mask";
|
|
4
5
|
import { loadCardsShape } from "@tsparticles/shape-cards";
|
|
5
6
|
import { loadCogShape } from "@tsparticles/shape-cog";
|
|
7
|
+
import { loadCurlNoisePath } from "@tsparticles/path-curl-noise";
|
|
6
8
|
import { loadCurvesPath } from "@tsparticles/path-curves";
|
|
7
9
|
import { loadEasingBackPlugin } from "@tsparticles/plugin-easing-back";
|
|
8
10
|
import { loadEasingCircPlugin } from "@tsparticles/plugin-easing-circ";
|
|
9
11
|
import { loadEasingCubicPlugin } from "@tsparticles/plugin-easing-cubic";
|
|
10
12
|
import { loadEasingExpoPlugin } from "@tsparticles/plugin-easing-expo";
|
|
13
|
+
import { loadEasingLinearPlugin } from "@tsparticles/plugin-easing-linear";
|
|
11
14
|
import { loadEasingQuartPlugin } from "@tsparticles/plugin-easing-quart";
|
|
12
15
|
import { loadEasingQuintPlugin } from "@tsparticles/plugin-easing-quint";
|
|
13
16
|
import { loadEasingSinePlugin } from "@tsparticles/plugin-easing-sine";
|
|
17
|
+
import { loadEmittersShapeCanvas } from "@tsparticles/plugin-emitters-shape-canvas";
|
|
18
|
+
import { loadEmittersShapePath } from "@tsparticles/plugin-emitters-shape-path";
|
|
19
|
+
import { loadEmittersShapePolygon } from "@tsparticles/plugin-emitters-shape-polygon";
|
|
14
20
|
import { loadExportImagePlugin } from "@tsparticles/plugin-export-image";
|
|
15
21
|
import { loadExportJSONPlugin } from "@tsparticles/plugin-export-json";
|
|
16
22
|
import { loadExportVideoPlugin } from "@tsparticles/plugin-export-video";
|
|
23
|
+
import { loadExternalPopInteraction } from "@tsparticles/interaction-external-pop";
|
|
17
24
|
import { loadFull } from "tsparticles";
|
|
18
25
|
import { loadGradientUpdater } from "@tsparticles/updater-gradient";
|
|
19
26
|
import { loadHeartShape } from "@tsparticles/shape-heart";
|
|
@@ -21,7 +28,6 @@ import { loadHsvColorPlugin } from "@tsparticles/plugin-hsv-color";
|
|
|
21
28
|
import { loadInfectionPlugin } from "@tsparticles/plugin-infection";
|
|
22
29
|
import { loadLightInteraction } from "@tsparticles/interaction-light";
|
|
23
30
|
import { loadMotionPlugin } from "@tsparticles/plugin-motion";
|
|
24
|
-
import { loadMultilineTextShape } from "@tsparticles/shape-multiline-text";
|
|
25
31
|
import { loadOrbitUpdater } from "@tsparticles/updater-orbit";
|
|
26
32
|
import { loadParticlesRepulseInteraction } from "@tsparticles/interaction-particles-repulse";
|
|
27
33
|
import { loadPathShape } from "@tsparticles/shape-path";
|
|
@@ -34,16 +40,22 @@ import { loadSVGPath } from "@tsparticles/path-svg";
|
|
|
34
40
|
import { loadSimplexNoisePath } from "@tsparticles/path-simplex-noise";
|
|
35
41
|
import { loadSoundsPlugin } from "@tsparticles/plugin-sounds";
|
|
36
42
|
import { loadSpiralShape } from "@tsparticles/shape-spiral";
|
|
43
|
+
import { loadTrailEffect } from "@tsparticles/effect-trail";
|
|
37
44
|
export async function loadAll(engine, refresh = true) {
|
|
45
|
+
initPjs(engine);
|
|
38
46
|
await loadFull(engine, false);
|
|
39
47
|
await loadHsvColorPlugin();
|
|
40
48
|
await loadEasingBackPlugin();
|
|
41
49
|
await loadEasingCircPlugin();
|
|
42
50
|
await loadEasingCubicPlugin();
|
|
43
51
|
await loadEasingExpoPlugin();
|
|
52
|
+
await loadEasingLinearPlugin();
|
|
44
53
|
await loadEasingQuartPlugin();
|
|
45
54
|
await loadEasingQuintPlugin();
|
|
46
55
|
await loadEasingSinePlugin();
|
|
56
|
+
await loadEmittersShapeCanvas(engine, false);
|
|
57
|
+
await loadEmittersShapePath(engine, false);
|
|
58
|
+
await loadEmittersShapePolygon(engine, false);
|
|
47
59
|
await loadHsvColorPlugin();
|
|
48
60
|
await loadCanvasMaskPlugin(engine, false);
|
|
49
61
|
await loadInfectionPlugin(engine, false);
|
|
@@ -53,24 +65,26 @@ export async function loadAll(engine, refresh = true) {
|
|
|
53
65
|
await loadExportImagePlugin(engine, false);
|
|
54
66
|
await loadExportJSONPlugin(engine, false);
|
|
55
67
|
await loadExportVideoPlugin(engine, false);
|
|
68
|
+
await loadExternalPopInteraction(engine, false);
|
|
56
69
|
await loadLightInteraction(engine, false);
|
|
57
70
|
await loadParticlesRepulseInteraction(engine, false);
|
|
58
71
|
await loadGradientUpdater(engine, false);
|
|
59
72
|
await loadOrbitUpdater(engine, false);
|
|
60
73
|
await loadCurvesPath(engine, false);
|
|
74
|
+
await loadCurlNoisePath(engine, false);
|
|
61
75
|
await loadPerlinNoisePath(engine, false);
|
|
62
76
|
await loadPolygonPath(engine, false);
|
|
63
77
|
await loadSVGPath(engine, false);
|
|
64
78
|
await loadSimplexNoisePath(engine, false);
|
|
79
|
+
await loadBubbleEffect(engine, false);
|
|
65
80
|
await loadArrowShape(engine, false);
|
|
66
|
-
await loadBubbleShape(engine, false);
|
|
67
81
|
await loadCardsShape(engine, false);
|
|
68
82
|
await loadCogShape(engine, false);
|
|
69
83
|
await loadHeartShape(engine, false);
|
|
70
|
-
await loadMultilineTextShape(engine, false);
|
|
71
84
|
await loadPathShape(engine, false);
|
|
72
85
|
await loadRoundedPolygonShape(engine, false);
|
|
73
86
|
await loadRoundedRectShape(engine, false);
|
|
74
87
|
await loadSpiralShape(engine, false);
|
|
88
|
+
await loadTrailEffect(engine, false);
|
|
75
89
|
await engine.refresh(refresh);
|
|
76
90
|
}
|
package/cjs/index.js
CHANGED
|
@@ -1,22 +1,29 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.loadAll = void 0;
|
|
4
|
+
const pjs_1 = require("@tsparticles/pjs");
|
|
4
5
|
const shape_arrow_1 = require("@tsparticles/shape-arrow");
|
|
5
|
-
const
|
|
6
|
+
const effect_bubble_1 = require("@tsparticles/effect-bubble");
|
|
6
7
|
const plugin_canvas_mask_1 = require("@tsparticles/plugin-canvas-mask");
|
|
7
8
|
const shape_cards_1 = require("@tsparticles/shape-cards");
|
|
8
9
|
const shape_cog_1 = require("@tsparticles/shape-cog");
|
|
10
|
+
const path_curl_noise_1 = require("@tsparticles/path-curl-noise");
|
|
9
11
|
const path_curves_1 = require("@tsparticles/path-curves");
|
|
10
12
|
const plugin_easing_back_1 = require("@tsparticles/plugin-easing-back");
|
|
11
13
|
const plugin_easing_circ_1 = require("@tsparticles/plugin-easing-circ");
|
|
12
14
|
const plugin_easing_cubic_1 = require("@tsparticles/plugin-easing-cubic");
|
|
13
15
|
const plugin_easing_expo_1 = require("@tsparticles/plugin-easing-expo");
|
|
16
|
+
const plugin_easing_linear_1 = require("@tsparticles/plugin-easing-linear");
|
|
14
17
|
const plugin_easing_quart_1 = require("@tsparticles/plugin-easing-quart");
|
|
15
18
|
const plugin_easing_quint_1 = require("@tsparticles/plugin-easing-quint");
|
|
16
19
|
const plugin_easing_sine_1 = require("@tsparticles/plugin-easing-sine");
|
|
20
|
+
const plugin_emitters_shape_canvas_1 = require("@tsparticles/plugin-emitters-shape-canvas");
|
|
21
|
+
const plugin_emitters_shape_path_1 = require("@tsparticles/plugin-emitters-shape-path");
|
|
22
|
+
const plugin_emitters_shape_polygon_1 = require("@tsparticles/plugin-emitters-shape-polygon");
|
|
17
23
|
const plugin_export_image_1 = require("@tsparticles/plugin-export-image");
|
|
18
24
|
const plugin_export_json_1 = require("@tsparticles/plugin-export-json");
|
|
19
25
|
const plugin_export_video_1 = require("@tsparticles/plugin-export-video");
|
|
26
|
+
const interaction_external_pop_1 = require("@tsparticles/interaction-external-pop");
|
|
20
27
|
const tsparticles_1 = require("tsparticles");
|
|
21
28
|
const updater_gradient_1 = require("@tsparticles/updater-gradient");
|
|
22
29
|
const shape_heart_1 = require("@tsparticles/shape-heart");
|
|
@@ -24,7 +31,6 @@ const plugin_hsv_color_1 = require("@tsparticles/plugin-hsv-color");
|
|
|
24
31
|
const plugin_infection_1 = require("@tsparticles/plugin-infection");
|
|
25
32
|
const interaction_light_1 = require("@tsparticles/interaction-light");
|
|
26
33
|
const plugin_motion_1 = require("@tsparticles/plugin-motion");
|
|
27
|
-
const shape_multiline_text_1 = require("@tsparticles/shape-multiline-text");
|
|
28
34
|
const updater_orbit_1 = require("@tsparticles/updater-orbit");
|
|
29
35
|
const interaction_particles_repulse_1 = require("@tsparticles/interaction-particles-repulse");
|
|
30
36
|
const shape_path_1 = require("@tsparticles/shape-path");
|
|
@@ -37,16 +43,22 @@ const path_svg_1 = require("@tsparticles/path-svg");
|
|
|
37
43
|
const path_simplex_noise_1 = require("@tsparticles/path-simplex-noise");
|
|
38
44
|
const plugin_sounds_1 = require("@tsparticles/plugin-sounds");
|
|
39
45
|
const shape_spiral_1 = require("@tsparticles/shape-spiral");
|
|
46
|
+
const effect_trail_1 = require("@tsparticles/effect-trail");
|
|
40
47
|
async function loadAll(engine, refresh = true) {
|
|
48
|
+
(0, pjs_1.initPjs)(engine);
|
|
41
49
|
await (0, tsparticles_1.loadFull)(engine, false);
|
|
42
50
|
await (0, plugin_hsv_color_1.loadHsvColorPlugin)();
|
|
43
51
|
await (0, plugin_easing_back_1.loadEasingBackPlugin)();
|
|
44
52
|
await (0, plugin_easing_circ_1.loadEasingCircPlugin)();
|
|
45
53
|
await (0, plugin_easing_cubic_1.loadEasingCubicPlugin)();
|
|
46
54
|
await (0, plugin_easing_expo_1.loadEasingExpoPlugin)();
|
|
55
|
+
await (0, plugin_easing_linear_1.loadEasingLinearPlugin)();
|
|
47
56
|
await (0, plugin_easing_quart_1.loadEasingQuartPlugin)();
|
|
48
57
|
await (0, plugin_easing_quint_1.loadEasingQuintPlugin)();
|
|
49
58
|
await (0, plugin_easing_sine_1.loadEasingSinePlugin)();
|
|
59
|
+
await (0, plugin_emitters_shape_canvas_1.loadEmittersShapeCanvas)(engine, false);
|
|
60
|
+
await (0, plugin_emitters_shape_path_1.loadEmittersShapePath)(engine, false);
|
|
61
|
+
await (0, plugin_emitters_shape_polygon_1.loadEmittersShapePolygon)(engine, false);
|
|
50
62
|
await (0, plugin_hsv_color_1.loadHsvColorPlugin)();
|
|
51
63
|
await (0, plugin_canvas_mask_1.loadCanvasMaskPlugin)(engine, false);
|
|
52
64
|
await (0, plugin_infection_1.loadInfectionPlugin)(engine, false);
|
|
@@ -56,25 +68,27 @@ async function loadAll(engine, refresh = true) {
|
|
|
56
68
|
await (0, plugin_export_image_1.loadExportImagePlugin)(engine, false);
|
|
57
69
|
await (0, plugin_export_json_1.loadExportJSONPlugin)(engine, false);
|
|
58
70
|
await (0, plugin_export_video_1.loadExportVideoPlugin)(engine, false);
|
|
71
|
+
await (0, interaction_external_pop_1.loadExternalPopInteraction)(engine, false);
|
|
59
72
|
await (0, interaction_light_1.loadLightInteraction)(engine, false);
|
|
60
73
|
await (0, interaction_particles_repulse_1.loadParticlesRepulseInteraction)(engine, false);
|
|
61
74
|
await (0, updater_gradient_1.loadGradientUpdater)(engine, false);
|
|
62
75
|
await (0, updater_orbit_1.loadOrbitUpdater)(engine, false);
|
|
63
76
|
await (0, path_curves_1.loadCurvesPath)(engine, false);
|
|
77
|
+
await (0, path_curl_noise_1.loadCurlNoisePath)(engine, false);
|
|
64
78
|
await (0, path_perlin_noise_1.loadPerlinNoisePath)(engine, false);
|
|
65
79
|
await (0, path_polygon_1.loadPolygonPath)(engine, false);
|
|
66
80
|
await (0, path_svg_1.loadSVGPath)(engine, false);
|
|
67
81
|
await (0, path_simplex_noise_1.loadSimplexNoisePath)(engine, false);
|
|
82
|
+
await (0, effect_bubble_1.loadBubbleEffect)(engine, false);
|
|
68
83
|
await (0, shape_arrow_1.loadArrowShape)(engine, false);
|
|
69
|
-
await (0, shape_bubble_1.loadBubbleShape)(engine, false);
|
|
70
84
|
await (0, shape_cards_1.loadCardsShape)(engine, false);
|
|
71
85
|
await (0, shape_cog_1.loadCogShape)(engine, false);
|
|
72
86
|
await (0, shape_heart_1.loadHeartShape)(engine, false);
|
|
73
|
-
await (0, shape_multiline_text_1.loadMultilineTextShape)(engine, false);
|
|
74
87
|
await (0, shape_path_1.loadPathShape)(engine, false);
|
|
75
88
|
await (0, shape_rounded_polygon_1.loadRoundedPolygonShape)(engine, false);
|
|
76
89
|
await (0, shape_rounded_rect_1.loadRoundedRectShape)(engine, false);
|
|
77
90
|
await (0, shape_spiral_1.loadSpiralShape)(engine, false);
|
|
91
|
+
await (0, effect_trail_1.loadTrailEffect)(engine, false);
|
|
78
92
|
await engine.refresh(refresh);
|
|
79
93
|
}
|
|
80
94
|
exports.loadAll = loadAll;
|
package/esm/index.js
CHANGED
|
@@ -1,19 +1,26 @@
|
|
|
1
|
+
import { initPjs } from "@tsparticles/pjs";
|
|
1
2
|
import { loadArrowShape } from "@tsparticles/shape-arrow";
|
|
2
|
-
import {
|
|
3
|
+
import { loadBubbleEffect } from "@tsparticles/effect-bubble";
|
|
3
4
|
import { loadCanvasMaskPlugin } from "@tsparticles/plugin-canvas-mask";
|
|
4
5
|
import { loadCardsShape } from "@tsparticles/shape-cards";
|
|
5
6
|
import { loadCogShape } from "@tsparticles/shape-cog";
|
|
7
|
+
import { loadCurlNoisePath } from "@tsparticles/path-curl-noise";
|
|
6
8
|
import { loadCurvesPath } from "@tsparticles/path-curves";
|
|
7
9
|
import { loadEasingBackPlugin } from "@tsparticles/plugin-easing-back";
|
|
8
10
|
import { loadEasingCircPlugin } from "@tsparticles/plugin-easing-circ";
|
|
9
11
|
import { loadEasingCubicPlugin } from "@tsparticles/plugin-easing-cubic";
|
|
10
12
|
import { loadEasingExpoPlugin } from "@tsparticles/plugin-easing-expo";
|
|
13
|
+
import { loadEasingLinearPlugin } from "@tsparticles/plugin-easing-linear";
|
|
11
14
|
import { loadEasingQuartPlugin } from "@tsparticles/plugin-easing-quart";
|
|
12
15
|
import { loadEasingQuintPlugin } from "@tsparticles/plugin-easing-quint";
|
|
13
16
|
import { loadEasingSinePlugin } from "@tsparticles/plugin-easing-sine";
|
|
17
|
+
import { loadEmittersShapeCanvas } from "@tsparticles/plugin-emitters-shape-canvas";
|
|
18
|
+
import { loadEmittersShapePath } from "@tsparticles/plugin-emitters-shape-path";
|
|
19
|
+
import { loadEmittersShapePolygon } from "@tsparticles/plugin-emitters-shape-polygon";
|
|
14
20
|
import { loadExportImagePlugin } from "@tsparticles/plugin-export-image";
|
|
15
21
|
import { loadExportJSONPlugin } from "@tsparticles/plugin-export-json";
|
|
16
22
|
import { loadExportVideoPlugin } from "@tsparticles/plugin-export-video";
|
|
23
|
+
import { loadExternalPopInteraction } from "@tsparticles/interaction-external-pop";
|
|
17
24
|
import { loadFull } from "tsparticles";
|
|
18
25
|
import { loadGradientUpdater } from "@tsparticles/updater-gradient";
|
|
19
26
|
import { loadHeartShape } from "@tsparticles/shape-heart";
|
|
@@ -21,7 +28,6 @@ import { loadHsvColorPlugin } from "@tsparticles/plugin-hsv-color";
|
|
|
21
28
|
import { loadInfectionPlugin } from "@tsparticles/plugin-infection";
|
|
22
29
|
import { loadLightInteraction } from "@tsparticles/interaction-light";
|
|
23
30
|
import { loadMotionPlugin } from "@tsparticles/plugin-motion";
|
|
24
|
-
import { loadMultilineTextShape } from "@tsparticles/shape-multiline-text";
|
|
25
31
|
import { loadOrbitUpdater } from "@tsparticles/updater-orbit";
|
|
26
32
|
import { loadParticlesRepulseInteraction } from "@tsparticles/interaction-particles-repulse";
|
|
27
33
|
import { loadPathShape } from "@tsparticles/shape-path";
|
|
@@ -34,16 +40,22 @@ import { loadSVGPath } from "@tsparticles/path-svg";
|
|
|
34
40
|
import { loadSimplexNoisePath } from "@tsparticles/path-simplex-noise";
|
|
35
41
|
import { loadSoundsPlugin } from "@tsparticles/plugin-sounds";
|
|
36
42
|
import { loadSpiralShape } from "@tsparticles/shape-spiral";
|
|
43
|
+
import { loadTrailEffect } from "@tsparticles/effect-trail";
|
|
37
44
|
export async function loadAll(engine, refresh = true) {
|
|
45
|
+
initPjs(engine);
|
|
38
46
|
await loadFull(engine, false);
|
|
39
47
|
await loadHsvColorPlugin();
|
|
40
48
|
await loadEasingBackPlugin();
|
|
41
49
|
await loadEasingCircPlugin();
|
|
42
50
|
await loadEasingCubicPlugin();
|
|
43
51
|
await loadEasingExpoPlugin();
|
|
52
|
+
await loadEasingLinearPlugin();
|
|
44
53
|
await loadEasingQuartPlugin();
|
|
45
54
|
await loadEasingQuintPlugin();
|
|
46
55
|
await loadEasingSinePlugin();
|
|
56
|
+
await loadEmittersShapeCanvas(engine, false);
|
|
57
|
+
await loadEmittersShapePath(engine, false);
|
|
58
|
+
await loadEmittersShapePolygon(engine, false);
|
|
47
59
|
await loadHsvColorPlugin();
|
|
48
60
|
await loadCanvasMaskPlugin(engine, false);
|
|
49
61
|
await loadInfectionPlugin(engine, false);
|
|
@@ -53,24 +65,26 @@ export async function loadAll(engine, refresh = true) {
|
|
|
53
65
|
await loadExportImagePlugin(engine, false);
|
|
54
66
|
await loadExportJSONPlugin(engine, false);
|
|
55
67
|
await loadExportVideoPlugin(engine, false);
|
|
68
|
+
await loadExternalPopInteraction(engine, false);
|
|
56
69
|
await loadLightInteraction(engine, false);
|
|
57
70
|
await loadParticlesRepulseInteraction(engine, false);
|
|
58
71
|
await loadGradientUpdater(engine, false);
|
|
59
72
|
await loadOrbitUpdater(engine, false);
|
|
60
73
|
await loadCurvesPath(engine, false);
|
|
74
|
+
await loadCurlNoisePath(engine, false);
|
|
61
75
|
await loadPerlinNoisePath(engine, false);
|
|
62
76
|
await loadPolygonPath(engine, false);
|
|
63
77
|
await loadSVGPath(engine, false);
|
|
64
78
|
await loadSimplexNoisePath(engine, false);
|
|
79
|
+
await loadBubbleEffect(engine, false);
|
|
65
80
|
await loadArrowShape(engine, false);
|
|
66
|
-
await loadBubbleShape(engine, false);
|
|
67
81
|
await loadCardsShape(engine, false);
|
|
68
82
|
await loadCogShape(engine, false);
|
|
69
83
|
await loadHeartShape(engine, false);
|
|
70
|
-
await loadMultilineTextShape(engine, false);
|
|
71
84
|
await loadPathShape(engine, false);
|
|
72
85
|
await loadRoundedPolygonShape(engine, false);
|
|
73
86
|
await loadRoundedRectShape(engine, false);
|
|
74
87
|
await loadSpiralShape(engine, false);
|
|
88
|
+
await loadTrailEffect(engine, false);
|
|
75
89
|
await engine.refresh(refresh);
|
|
76
90
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsparticles/all",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.5",
|
|
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,43 +99,50 @@
|
|
|
99
99
|
"./package.json": "./package.json"
|
|
100
100
|
},
|
|
101
101
|
"dependencies": {
|
|
102
|
-
"@tsparticles/
|
|
103
|
-
"@tsparticles/
|
|
104
|
-
"@tsparticles/
|
|
105
|
-
"@tsparticles/
|
|
106
|
-
"@tsparticles/
|
|
107
|
-
"@tsparticles/
|
|
108
|
-
"@tsparticles/path-
|
|
109
|
-
"@tsparticles/path-
|
|
110
|
-
"@tsparticles/
|
|
111
|
-
"@tsparticles/
|
|
112
|
-
"@tsparticles/
|
|
113
|
-
"@tsparticles/
|
|
114
|
-
"@tsparticles/
|
|
115
|
-
"@tsparticles/plugin-
|
|
116
|
-
"@tsparticles/plugin-easing-
|
|
117
|
-
"@tsparticles/plugin-easing-
|
|
118
|
-
"@tsparticles/plugin-
|
|
119
|
-
"@tsparticles/plugin-
|
|
120
|
-
"@tsparticles/plugin-
|
|
121
|
-
"@tsparticles/plugin-
|
|
122
|
-
"@tsparticles/plugin-
|
|
123
|
-
"@tsparticles/plugin-
|
|
124
|
-
"@tsparticles/plugin-
|
|
125
|
-
"@tsparticles/plugin-
|
|
126
|
-
"@tsparticles/shape-
|
|
127
|
-
"@tsparticles/
|
|
128
|
-
"@tsparticles/
|
|
129
|
-
"@tsparticles/
|
|
130
|
-
"@tsparticles/
|
|
131
|
-
"@tsparticles/
|
|
132
|
-
"@tsparticles/
|
|
133
|
-
"@tsparticles/
|
|
134
|
-
"@tsparticles/
|
|
135
|
-
"@tsparticles/shape-
|
|
136
|
-
"@tsparticles/
|
|
137
|
-
"@tsparticles/
|
|
138
|
-
"tsparticles": "^3.0.0-beta.
|
|
102
|
+
"@tsparticles/effect-bubble": "^3.0.0-beta.5",
|
|
103
|
+
"@tsparticles/effect-trail": "^3.0.0-beta.5",
|
|
104
|
+
"@tsparticles/engine": "^3.0.0-beta.5",
|
|
105
|
+
"@tsparticles/interaction-external-pop": "^3.0.0-beta.5",
|
|
106
|
+
"@tsparticles/interaction-light": "^3.0.0-beta.5",
|
|
107
|
+
"@tsparticles/interaction-particles-repulse": "^3.0.0-beta.5",
|
|
108
|
+
"@tsparticles/path-curl-noise": "^3.0.0-beta.5",
|
|
109
|
+
"@tsparticles/path-curves": "^3.0.0-beta.5",
|
|
110
|
+
"@tsparticles/path-perlin-noise": "^3.0.0-beta.5",
|
|
111
|
+
"@tsparticles/path-polygon": "^3.0.0-beta.5",
|
|
112
|
+
"@tsparticles/path-simplex-noise": "^3.0.0-beta.5",
|
|
113
|
+
"@tsparticles/path-svg": "^3.0.0-beta.5",
|
|
114
|
+
"@tsparticles/pjs": "^3.0.0-beta.5",
|
|
115
|
+
"@tsparticles/plugin-canvas-mask": "^3.0.0-beta.5",
|
|
116
|
+
"@tsparticles/plugin-easing-back": "^3.0.0-beta.5",
|
|
117
|
+
"@tsparticles/plugin-easing-circ": "^3.0.0-beta.5",
|
|
118
|
+
"@tsparticles/plugin-easing-cubic": "^3.0.0-beta.5",
|
|
119
|
+
"@tsparticles/plugin-easing-expo": "^3.0.0-beta.5",
|
|
120
|
+
"@tsparticles/plugin-easing-linear": "^3.0.0-beta.5",
|
|
121
|
+
"@tsparticles/plugin-easing-quart": "^3.0.0-beta.5",
|
|
122
|
+
"@tsparticles/plugin-easing-quint": "^3.0.0-beta.5",
|
|
123
|
+
"@tsparticles/plugin-easing-sine": "^3.0.0-beta.5",
|
|
124
|
+
"@tsparticles/plugin-emitters-shape-canvas": "^3.0.0-beta.5",
|
|
125
|
+
"@tsparticles/plugin-emitters-shape-path": "^3.0.0-beta.5",
|
|
126
|
+
"@tsparticles/plugin-emitters-shape-polygon": "^3.0.0-beta.5",
|
|
127
|
+
"@tsparticles/plugin-export-image": "^3.0.0-beta.5",
|
|
128
|
+
"@tsparticles/plugin-export-json": "^3.0.0-beta.5",
|
|
129
|
+
"@tsparticles/plugin-export-video": "^3.0.0-beta.5",
|
|
130
|
+
"@tsparticles/plugin-hsv-color": "^3.0.0-beta.5",
|
|
131
|
+
"@tsparticles/plugin-infection": "^3.0.0-beta.5",
|
|
132
|
+
"@tsparticles/plugin-motion": "^3.0.0-beta.5",
|
|
133
|
+
"@tsparticles/plugin-polygon-mask": "^3.0.0-beta.5",
|
|
134
|
+
"@tsparticles/plugin-sounds": "^3.0.0-beta.5",
|
|
135
|
+
"@tsparticles/shape-arrow": "^3.0.0-beta.5",
|
|
136
|
+
"@tsparticles/shape-cards": "^3.0.0-beta.5",
|
|
137
|
+
"@tsparticles/shape-cog": "^3.0.0-beta.5",
|
|
138
|
+
"@tsparticles/shape-heart": "^3.0.0-beta.5",
|
|
139
|
+
"@tsparticles/shape-path": "^3.0.0-beta.5",
|
|
140
|
+
"@tsparticles/shape-rounded-polygon": "^3.0.0-beta.5",
|
|
141
|
+
"@tsparticles/shape-rounded-rect": "^3.0.0-beta.5",
|
|
142
|
+
"@tsparticles/shape-spiral": "^3.0.0-beta.5",
|
|
143
|
+
"@tsparticles/updater-gradient": "^3.0.0-beta.5",
|
|
144
|
+
"@tsparticles/updater-orbit": "^3.0.0-beta.5",
|
|
145
|
+
"tsparticles": "^3.0.0-beta.5"
|
|
139
146
|
},
|
|
140
147
|
"publishConfig": {
|
|
141
148
|
"access": "public"
|