@tsparticles/all 3.0.3 → 3.1.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/bundle.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { loadAll } from ".";
2
2
  import { tsParticles } from "@tsparticles/engine";
3
- loadAll(tsParticles);
3
+ void loadAll(tsParticles);
4
4
  export { loadAll };
5
5
  export * from "@tsparticles/engine";
package/browser/index.js CHANGED
@@ -32,6 +32,7 @@ import { loadOrbitUpdater } from "@tsparticles/updater-orbit";
32
32
  import { loadParticlesRepulseInteraction } from "@tsparticles/interaction-particles-repulse";
33
33
  import { loadPathShape } from "@tsparticles/shape-path";
34
34
  import { loadPerlinNoisePath } from "@tsparticles/path-perlin-noise";
35
+ import { loadPoissonDiscPlugin } from "@tsparticles/plugin-poisson-disc";
35
36
  import { loadPolygonMaskPlugin } from "@tsparticles/plugin-polygon-mask";
36
37
  import { loadPolygonPath } from "@tsparticles/path-polygon";
37
38
  import { loadRoundedPolygonShape } from "@tsparticles/shape-rounded-polygon";
@@ -41,6 +42,7 @@ import { loadSimplexNoisePath } from "@tsparticles/path-simplex-noise";
41
42
  import { loadSoundsPlugin } from "@tsparticles/plugin-sounds";
42
43
  import { loadSpiralShape } from "@tsparticles/shape-spiral";
43
44
  import { loadTrailEffect } from "@tsparticles/effect-trail";
45
+ import { loadZigZagPath } from "@tsparticles/path-zig-zag";
44
46
  export async function loadAll(engine, refresh = true) {
45
47
  initPjs(engine);
46
48
  await loadFull(engine, false);
@@ -73,8 +75,10 @@ export async function loadAll(engine, refresh = true) {
73
75
  await loadCurvesPath(engine, false);
74
76
  await loadCurlNoisePath(engine, false);
75
77
  await loadPerlinNoisePath(engine, false);
78
+ await loadPoissonDiscPlugin(engine, false);
76
79
  await loadPolygonPath(engine, false);
77
80
  await loadSVGPath(engine, false);
81
+ await loadZigZagPath(engine, false);
78
82
  await loadSimplexNoisePath(engine, false);
79
83
  await loadBubbleEffect(engine, false);
80
84
  await loadArrowShape(engine, false);
package/cjs/bundle.js CHANGED
@@ -18,5 +18,5 @@ exports.loadAll = void 0;
18
18
  const _1 = require(".");
19
19
  Object.defineProperty(exports, "loadAll", { enumerable: true, get: function () { return _1.loadAll; } });
20
20
  const engine_1 = require("@tsparticles/engine");
21
- (0, _1.loadAll)(engine_1.tsParticles);
21
+ void (0, _1.loadAll)(engine_1.tsParticles);
22
22
  __exportStar(require("@tsparticles/engine"), exports);
package/cjs/index.js CHANGED
@@ -35,6 +35,7 @@ const updater_orbit_1 = require("@tsparticles/updater-orbit");
35
35
  const interaction_particles_repulse_1 = require("@tsparticles/interaction-particles-repulse");
36
36
  const shape_path_1 = require("@tsparticles/shape-path");
37
37
  const path_perlin_noise_1 = require("@tsparticles/path-perlin-noise");
38
+ const plugin_poisson_disc_1 = require("@tsparticles/plugin-poisson-disc");
38
39
  const plugin_polygon_mask_1 = require("@tsparticles/plugin-polygon-mask");
39
40
  const path_polygon_1 = require("@tsparticles/path-polygon");
40
41
  const shape_rounded_polygon_1 = require("@tsparticles/shape-rounded-polygon");
@@ -44,6 +45,7 @@ const path_simplex_noise_1 = require("@tsparticles/path-simplex-noise");
44
45
  const plugin_sounds_1 = require("@tsparticles/plugin-sounds");
45
46
  const shape_spiral_1 = require("@tsparticles/shape-spiral");
46
47
  const effect_trail_1 = require("@tsparticles/effect-trail");
48
+ const path_zig_zag_1 = require("@tsparticles/path-zig-zag");
47
49
  async function loadAll(engine, refresh = true) {
48
50
  (0, pjs_1.initPjs)(engine);
49
51
  await (0, tsparticles_1.loadFull)(engine, false);
@@ -76,8 +78,10 @@ async function loadAll(engine, refresh = true) {
76
78
  await (0, path_curves_1.loadCurvesPath)(engine, false);
77
79
  await (0, path_curl_noise_1.loadCurlNoisePath)(engine, false);
78
80
  await (0, path_perlin_noise_1.loadPerlinNoisePath)(engine, false);
81
+ await (0, plugin_poisson_disc_1.loadPoissonDiscPlugin)(engine, false);
79
82
  await (0, path_polygon_1.loadPolygonPath)(engine, false);
80
83
  await (0, path_svg_1.loadSVGPath)(engine, false);
84
+ await (0, path_zig_zag_1.loadZigZagPath)(engine, false);
81
85
  await (0, path_simplex_noise_1.loadSimplexNoisePath)(engine, false);
82
86
  await (0, effect_bubble_1.loadBubbleEffect)(engine, false);
83
87
  await (0, shape_arrow_1.loadArrowShape)(engine, false);
package/esm/bundle.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { loadAll } from ".";
2
2
  import { tsParticles } from "@tsparticles/engine";
3
- loadAll(tsParticles);
3
+ void loadAll(tsParticles);
4
4
  export { loadAll };
5
5
  export * from "@tsparticles/engine";
package/esm/index.js CHANGED
@@ -32,6 +32,7 @@ import { loadOrbitUpdater } from "@tsparticles/updater-orbit";
32
32
  import { loadParticlesRepulseInteraction } from "@tsparticles/interaction-particles-repulse";
33
33
  import { loadPathShape } from "@tsparticles/shape-path";
34
34
  import { loadPerlinNoisePath } from "@tsparticles/path-perlin-noise";
35
+ import { loadPoissonDiscPlugin } from "@tsparticles/plugin-poisson-disc";
35
36
  import { loadPolygonMaskPlugin } from "@tsparticles/plugin-polygon-mask";
36
37
  import { loadPolygonPath } from "@tsparticles/path-polygon";
37
38
  import { loadRoundedPolygonShape } from "@tsparticles/shape-rounded-polygon";
@@ -41,6 +42,7 @@ import { loadSimplexNoisePath } from "@tsparticles/path-simplex-noise";
41
42
  import { loadSoundsPlugin } from "@tsparticles/plugin-sounds";
42
43
  import { loadSpiralShape } from "@tsparticles/shape-spiral";
43
44
  import { loadTrailEffect } from "@tsparticles/effect-trail";
45
+ import { loadZigZagPath } from "@tsparticles/path-zig-zag";
44
46
  export async function loadAll(engine, refresh = true) {
45
47
  initPjs(engine);
46
48
  await loadFull(engine, false);
@@ -73,8 +75,10 @@ export async function loadAll(engine, refresh = true) {
73
75
  await loadCurvesPath(engine, false);
74
76
  await loadCurlNoisePath(engine, false);
75
77
  await loadPerlinNoisePath(engine, false);
78
+ await loadPoissonDiscPlugin(engine, false);
76
79
  await loadPolygonPath(engine, false);
77
80
  await loadSVGPath(engine, false);
81
+ await loadZigZagPath(engine, false);
78
82
  await loadSimplexNoisePath(engine, false);
79
83
  await loadBubbleEffect(engine, false);
80
84
  await loadArrowShape(engine, false);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsparticles/all",
3
- "version": "3.0.3",
3
+ "version": "3.1.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,50 +99,52 @@
99
99
  "./package.json": "./package.json"
100
100
  },
101
101
  "dependencies": {
102
- "@tsparticles/effect-bubble": "^3.0.3",
103
- "@tsparticles/effect-trail": "^3.0.3",
104
- "@tsparticles/engine": "^3.0.3",
105
- "@tsparticles/interaction-external-pop": "^3.0.3",
106
- "@tsparticles/interaction-light": "^3.0.3",
107
- "@tsparticles/interaction-particles-repulse": "^3.0.3",
108
- "@tsparticles/path-curl-noise": "^3.0.3",
109
- "@tsparticles/path-curves": "^3.0.3",
110
- "@tsparticles/path-perlin-noise": "^3.0.3",
111
- "@tsparticles/path-polygon": "^3.0.3",
112
- "@tsparticles/path-simplex-noise": "^3.0.3",
113
- "@tsparticles/path-svg": "^3.0.3",
114
- "@tsparticles/pjs": "^3.0.3",
115
- "@tsparticles/plugin-canvas-mask": "^3.0.3",
116
- "@tsparticles/plugin-easing-back": "^3.0.3",
117
- "@tsparticles/plugin-easing-circ": "^3.0.3",
118
- "@tsparticles/plugin-easing-cubic": "^3.0.3",
119
- "@tsparticles/plugin-easing-expo": "^3.0.3",
120
- "@tsparticles/plugin-easing-linear": "^3.0.3",
121
- "@tsparticles/plugin-easing-quart": "^3.0.3",
122
- "@tsparticles/plugin-easing-quint": "^3.0.3",
123
- "@tsparticles/plugin-easing-sine": "^3.0.3",
124
- "@tsparticles/plugin-emitters-shape-canvas": "^3.0.3",
125
- "@tsparticles/plugin-emitters-shape-path": "^3.0.3",
126
- "@tsparticles/plugin-emitters-shape-polygon": "^3.0.3",
127
- "@tsparticles/plugin-export-image": "^3.0.3",
128
- "@tsparticles/plugin-export-json": "^3.0.3",
129
- "@tsparticles/plugin-export-video": "^3.0.3",
130
- "@tsparticles/plugin-hsv-color": "^3.0.3",
131
- "@tsparticles/plugin-infection": "^3.0.3",
132
- "@tsparticles/plugin-motion": "^3.0.3",
133
- "@tsparticles/plugin-polygon-mask": "^3.0.3",
134
- "@tsparticles/plugin-sounds": "^3.0.3",
135
- "@tsparticles/shape-arrow": "^3.0.3",
136
- "@tsparticles/shape-cards": "^3.0.3",
137
- "@tsparticles/shape-cog": "^3.0.3",
138
- "@tsparticles/shape-heart": "^3.0.3",
139
- "@tsparticles/shape-path": "^3.0.3",
140
- "@tsparticles/shape-rounded-polygon": "^3.0.3",
141
- "@tsparticles/shape-rounded-rect": "^3.0.3",
142
- "@tsparticles/shape-spiral": "^3.0.3",
143
- "@tsparticles/updater-gradient": "^3.0.3",
144
- "@tsparticles/updater-orbit": "^3.0.3",
145
- "tsparticles": "^3.0.3"
102
+ "@tsparticles/effect-bubble": "^3.1.0",
103
+ "@tsparticles/effect-trail": "^3.1.0",
104
+ "@tsparticles/engine": "^3.1.0",
105
+ "@tsparticles/interaction-external-pop": "^3.1.0",
106
+ "@tsparticles/interaction-light": "^3.1.0",
107
+ "@tsparticles/interaction-particles-repulse": "^3.1.0",
108
+ "@tsparticles/path-curl-noise": "^3.1.0",
109
+ "@tsparticles/path-curves": "^3.1.0",
110
+ "@tsparticles/path-perlin-noise": "^3.1.0",
111
+ "@tsparticles/path-polygon": "^3.1.0",
112
+ "@tsparticles/path-simplex-noise": "^3.1.0",
113
+ "@tsparticles/path-svg": "^3.1.0",
114
+ "@tsparticles/path-zig-zag": "^3.1.0",
115
+ "@tsparticles/pjs": "^3.1.0",
116
+ "@tsparticles/plugin-canvas-mask": "^3.1.0",
117
+ "@tsparticles/plugin-easing-back": "^3.1.0",
118
+ "@tsparticles/plugin-easing-circ": "^3.1.0",
119
+ "@tsparticles/plugin-easing-cubic": "^3.1.0",
120
+ "@tsparticles/plugin-easing-expo": "^3.1.0",
121
+ "@tsparticles/plugin-easing-linear": "^3.1.0",
122
+ "@tsparticles/plugin-easing-quart": "^3.1.0",
123
+ "@tsparticles/plugin-easing-quint": "^3.1.0",
124
+ "@tsparticles/plugin-easing-sine": "^3.1.0",
125
+ "@tsparticles/plugin-emitters-shape-canvas": "^3.1.0",
126
+ "@tsparticles/plugin-emitters-shape-path": "^3.1.0",
127
+ "@tsparticles/plugin-emitters-shape-polygon": "^3.1.0",
128
+ "@tsparticles/plugin-export-image": "^3.1.0",
129
+ "@tsparticles/plugin-export-json": "^3.1.0",
130
+ "@tsparticles/plugin-export-video": "^3.1.0",
131
+ "@tsparticles/plugin-hsv-color": "^3.1.0",
132
+ "@tsparticles/plugin-infection": "^3.1.0",
133
+ "@tsparticles/plugin-motion": "^3.1.0",
134
+ "@tsparticles/plugin-poisson-disc": "^3.1.0",
135
+ "@tsparticles/plugin-polygon-mask": "^3.1.0",
136
+ "@tsparticles/plugin-sounds": "^3.1.0",
137
+ "@tsparticles/shape-arrow": "^3.1.0",
138
+ "@tsparticles/shape-cards": "^3.1.0",
139
+ "@tsparticles/shape-cog": "^3.1.0",
140
+ "@tsparticles/shape-heart": "^3.1.0",
141
+ "@tsparticles/shape-path": "^3.1.0",
142
+ "@tsparticles/shape-rounded-polygon": "^3.1.0",
143
+ "@tsparticles/shape-rounded-rect": "^3.1.0",
144
+ "@tsparticles/shape-spiral": "^3.1.0",
145
+ "@tsparticles/updater-gradient": "^3.1.0",
146
+ "@tsparticles/updater-orbit": "^3.1.0",
147
+ "tsparticles": "^3.1.0"
146
148
  },
147
149
  "publishConfig": {
148
150
  "access": "public"