@tsparticles/all 3.0.0-beta.4 → 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/browser/index.js CHANGED
@@ -1,3 +1,4 @@
1
+ import { initPjs } from "@tsparticles/pjs";
1
2
  import { loadArrowShape } from "@tsparticles/shape-arrow";
2
3
  import { loadBubbleEffect } from "@tsparticles/effect-bubble";
3
4
  import { loadCanvasMaskPlugin } from "@tsparticles/plugin-canvas-mask";
@@ -41,6 +42,7 @@ import { loadSoundsPlugin } from "@tsparticles/plugin-sounds";
41
42
  import { loadSpiralShape } from "@tsparticles/shape-spiral";
42
43
  import { loadTrailEffect } from "@tsparticles/effect-trail";
43
44
  export async function loadAll(engine, refresh = true) {
45
+ initPjs(engine);
44
46
  await loadFull(engine, false);
45
47
  await loadHsvColorPlugin();
46
48
  await loadEasingBackPlugin();
package/cjs/index.js CHANGED
@@ -1,6 +1,7 @@
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
6
  const effect_bubble_1 = require("@tsparticles/effect-bubble");
6
7
  const plugin_canvas_mask_1 = require("@tsparticles/plugin-canvas-mask");
@@ -44,6 +45,7 @@ const plugin_sounds_1 = require("@tsparticles/plugin-sounds");
44
45
  const shape_spiral_1 = require("@tsparticles/shape-spiral");
45
46
  const effect_trail_1 = require("@tsparticles/effect-trail");
46
47
  async function loadAll(engine, refresh = true) {
48
+ (0, pjs_1.initPjs)(engine);
47
49
  await (0, tsparticles_1.loadFull)(engine, false);
48
50
  await (0, plugin_hsv_color_1.loadHsvColorPlugin)();
49
51
  await (0, plugin_easing_back_1.loadEasingBackPlugin)();
package/esm/index.js CHANGED
@@ -1,3 +1,4 @@
1
+ import { initPjs } from "@tsparticles/pjs";
1
2
  import { loadArrowShape } from "@tsparticles/shape-arrow";
2
3
  import { loadBubbleEffect } from "@tsparticles/effect-bubble";
3
4
  import { loadCanvasMaskPlugin } from "@tsparticles/plugin-canvas-mask";
@@ -41,6 +42,7 @@ import { loadSoundsPlugin } from "@tsparticles/plugin-sounds";
41
42
  import { loadSpiralShape } from "@tsparticles/shape-spiral";
42
43
  import { loadTrailEffect } from "@tsparticles/effect-trail";
43
44
  export async function loadAll(engine, refresh = true) {
45
+ initPjs(engine);
44
46
  await loadFull(engine, false);
45
47
  await loadHsvColorPlugin();
46
48
  await loadEasingBackPlugin();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsparticles/all",
3
- "version": "3.0.0-beta.4",
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,49 +99,50 @@
99
99
  "./package.json": "./package.json"
100
100
  },
101
101
  "dependencies": {
102
- "@tsparticles/effect-bubble": "^3.0.0-beta.4",
103
- "@tsparticles/effect-trail": "^3.0.0-beta.4",
104
- "@tsparticles/engine": "^3.0.0-beta.4",
105
- "@tsparticles/interaction-external-pop": "^3.0.0-beta.4",
106
- "@tsparticles/interaction-light": "^3.0.0-beta.4",
107
- "@tsparticles/interaction-particles-repulse": "^3.0.0-beta.4",
108
- "@tsparticles/path-curl-noise": "^3.0.0-beta.4",
109
- "@tsparticles/path-curves": "^3.0.0-beta.4",
110
- "@tsparticles/path-perlin-noise": "^3.0.0-beta.4",
111
- "@tsparticles/path-polygon": "^3.0.0-beta.4",
112
- "@tsparticles/path-simplex-noise": "^3.0.0-beta.4",
113
- "@tsparticles/path-svg": "^3.0.0-beta.4",
114
- "@tsparticles/plugin-canvas-mask": "^3.0.0-beta.4",
115
- "@tsparticles/plugin-easing-back": "^3.0.0-beta.4",
116
- "@tsparticles/plugin-easing-circ": "^3.0.0-beta.4",
117
- "@tsparticles/plugin-easing-cubic": "^3.0.0-beta.4",
118
- "@tsparticles/plugin-easing-expo": "^3.0.0-beta.4",
119
- "@tsparticles/plugin-easing-linear": "^3.0.0-beta.4",
120
- "@tsparticles/plugin-easing-quart": "^3.0.0-beta.4",
121
- "@tsparticles/plugin-easing-quint": "^3.0.0-beta.4",
122
- "@tsparticles/plugin-easing-sine": "^3.0.0-beta.4",
123
- "@tsparticles/plugin-emitters-shape-canvas": "^3.0.0-beta.4",
124
- "@tsparticles/plugin-emitters-shape-path": "^3.0.0-beta.4",
125
- "@tsparticles/plugin-emitters-shape-polygon": "^3.0.0-beta.4",
126
- "@tsparticles/plugin-export-image": "^3.0.0-beta.4",
127
- "@tsparticles/plugin-export-json": "^3.0.0-beta.4",
128
- "@tsparticles/plugin-export-video": "^3.0.0-beta.4",
129
- "@tsparticles/plugin-hsv-color": "^3.0.0-beta.4",
130
- "@tsparticles/plugin-infection": "^3.0.0-beta.4",
131
- "@tsparticles/plugin-motion": "^3.0.0-beta.4",
132
- "@tsparticles/plugin-polygon-mask": "^3.0.0-beta.4",
133
- "@tsparticles/plugin-sounds": "^3.0.0-beta.4",
134
- "@tsparticles/shape-arrow": "^3.0.0-beta.4",
135
- "@tsparticles/shape-cards": "^3.0.0-beta.4",
136
- "@tsparticles/shape-cog": "^3.0.0-beta.4",
137
- "@tsparticles/shape-heart": "^3.0.0-beta.4",
138
- "@tsparticles/shape-path": "^3.0.0-beta.4",
139
- "@tsparticles/shape-rounded-polygon": "^3.0.0-beta.4",
140
- "@tsparticles/shape-rounded-rect": "^3.0.0-beta.4",
141
- "@tsparticles/shape-spiral": "^3.0.0-beta.4",
142
- "@tsparticles/updater-gradient": "^3.0.0-beta.4",
143
- "@tsparticles/updater-orbit": "^3.0.0-beta.4",
144
- "tsparticles": "^3.0.0-beta.4"
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"
145
146
  },
146
147
  "publishConfig": {
147
148
  "access": "public"