tsparticles 2.2.3 → 2.3.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/index.js CHANGED
@@ -1,4 +1,5 @@
1
1
  import { loadAbsorbersPlugin } from "tsparticles-plugin-absorbers";
2
+ import { loadDestroyUpdater } from "tsparticles-updater-destroy";
2
3
  import { loadEmittersPlugin } from "tsparticles-plugin-emitters";
3
4
  import { loadExternalTrailInteraction } from "tsparticles-interaction-external-trail";
4
5
  import { loadPolygonMaskPlugin } from "tsparticles-plugin-polygon-mask";
@@ -9,6 +10,7 @@ import { loadTwinkleUpdater } from "tsparticles-updater-twinkle";
9
10
  import { loadWobbleUpdater } from "tsparticles-updater-wobble";
10
11
  export async function loadFull(engine) {
11
12
  await loadSlim(engine);
13
+ await loadDestroyUpdater(engine);
12
14
  await loadRollUpdater(engine);
13
15
  await loadTiltUpdater(engine);
14
16
  await loadTwinkleUpdater(engine);
package/cjs/index.js CHANGED
@@ -2,6 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.loadFull = void 0;
4
4
  const tsparticles_plugin_absorbers_1 = require("tsparticles-plugin-absorbers");
5
+ const tsparticles_updater_destroy_1 = require("tsparticles-updater-destroy");
5
6
  const tsparticles_plugin_emitters_1 = require("tsparticles-plugin-emitters");
6
7
  const tsparticles_interaction_external_trail_1 = require("tsparticles-interaction-external-trail");
7
8
  const tsparticles_plugin_polygon_mask_1 = require("tsparticles-plugin-polygon-mask");
@@ -12,6 +13,7 @@ const tsparticles_updater_twinkle_1 = require("tsparticles-updater-twinkle");
12
13
  const tsparticles_updater_wobble_1 = require("tsparticles-updater-wobble");
13
14
  async function loadFull(engine) {
14
15
  await (0, tsparticles_slim_1.loadSlim)(engine);
16
+ await (0, tsparticles_updater_destroy_1.loadDestroyUpdater)(engine);
15
17
  await (0, tsparticles_updater_roll_1.loadRollUpdater)(engine);
16
18
  await (0, tsparticles_updater_tilt_1.loadTiltUpdater)(engine);
17
19
  await (0, tsparticles_updater_twinkle_1.loadTwinkleUpdater)(engine);
package/esm/index.js CHANGED
@@ -1,4 +1,5 @@
1
1
  import { loadAbsorbersPlugin } from "tsparticles-plugin-absorbers";
2
+ import { loadDestroyUpdater } from "tsparticles-updater-destroy";
2
3
  import { loadEmittersPlugin } from "tsparticles-plugin-emitters";
3
4
  import { loadExternalTrailInteraction } from "tsparticles-interaction-external-trail";
4
5
  import { loadPolygonMaskPlugin } from "tsparticles-plugin-polygon-mask";
@@ -9,6 +10,7 @@ import { loadTwinkleUpdater } from "tsparticles-updater-twinkle";
9
10
  import { loadWobbleUpdater } from "tsparticles-updater-wobble";
10
11
  export async function loadFull(engine) {
11
12
  await loadSlim(engine);
13
+ await loadDestroyUpdater(engine);
12
14
  await loadRollUpdater(engine);
13
15
  await loadTiltUpdater(engine);
14
16
  await loadTwinkleUpdater(engine);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tsparticles",
3
- "version": "2.2.3",
3
+ "version": "2.3.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": {
@@ -76,15 +76,16 @@
76
76
  "unpkg": "tsparticles.min.js",
77
77
  "types": "types/index.d.ts",
78
78
  "dependencies": {
79
- "tsparticles-engine": "^2.2.3",
80
- "tsparticles-interaction-external-trail": "^2.2.3",
81
- "tsparticles-plugin-absorbers": "^2.2.3",
82
- "tsparticles-plugin-emitters": "^2.2.3",
83
- "tsparticles-plugin-polygon-mask": "^2.2.3",
84
- "tsparticles-slim": "^2.2.3",
85
- "tsparticles-updater-roll": "^2.2.3",
86
- "tsparticles-updater-tilt": "^2.2.3",
87
- "tsparticles-updater-twinkle": "^2.2.3",
88
- "tsparticles-updater-wobble": "^2.2.3"
79
+ "tsparticles-engine": "^2.3.1",
80
+ "tsparticles-interaction-external-trail": "^2.3.1",
81
+ "tsparticles-plugin-absorbers": "^2.3.1",
82
+ "tsparticles-plugin-emitters": "^2.3.1",
83
+ "tsparticles-plugin-polygon-mask": "^2.3.1",
84
+ "tsparticles-slim": "^2.3.1",
85
+ "tsparticles-updater-destroy": "^2.3.1",
86
+ "tsparticles-updater-roll": "^2.3.1",
87
+ "tsparticles-updater-tilt": "^2.3.1",
88
+ "tsparticles-updater-twinkle": "^2.3.1",
89
+ "tsparticles-updater-wobble": "^2.3.1"
89
90
  }
90
91
  }