@tsparticles/preset-fireworks 4.1.1 → 4.1.3

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 CHANGED
@@ -25,7 +25,7 @@
25
25
  ### CDN / Vanilla JS / jQuery
26
26
 
27
27
  ```html
28
- <script src="https://cdn.jsdelivr.net/npm/@tsparticles/preset-fireworks@3/tsparticles.preset.fireworks.bundle.min.js"></script>
28
+ <script src="https://cdn.jsdelivr.net/npm/@tsparticles/preset-fireworks@4/tsparticles.preset.fireworks.bundle.min.js"></script>
29
29
  ```
30
30
 
31
31
  ### Usage
package/browser/bundle.js CHANGED
@@ -1,6 +1,7 @@
1
1
  import { loadFireworksPreset } from "./index.js";
2
+ import { tsParticles } from "@tsparticles/engine";
2
3
  export { loadFireworksPreset } from "./index.js";
3
- export { tsParticles } from "@tsparticles/engine";
4
+ export { tsParticles };
4
5
  const globalObject = globalThis;
5
- globalObject.__tsParticlesInternals = globalObject.__tsParticlesInternals ?? {};
6
6
  globalObject.loadFireworksPreset = loadFireworksPreset;
7
+ globalObject.tsParticles = tsParticles;
package/cjs/bundle.js CHANGED
@@ -1,6 +1,7 @@
1
1
  import { loadFireworksPreset } from "./index.js";
2
+ import { tsParticles } from "@tsparticles/engine";
2
3
  export { loadFireworksPreset } from "./index.js";
3
- export { tsParticles } from "@tsparticles/engine";
4
+ export { tsParticles };
4
5
  const globalObject = globalThis;
5
- globalObject.__tsParticlesInternals = globalObject.__tsParticlesInternals ?? {};
6
6
  globalObject.loadFireworksPreset = loadFireworksPreset;
7
+ globalObject.tsParticles = tsParticles;
package/esm/bundle.js CHANGED
@@ -1,6 +1,7 @@
1
1
  import { loadFireworksPreset } from "./index.js";
2
+ import { tsParticles } from "@tsparticles/engine";
2
3
  export { loadFireworksPreset } from "./index.js";
3
- export { tsParticles } from "@tsparticles/engine";
4
+ export { tsParticles };
4
5
  const globalObject = globalThis;
5
- globalObject.__tsParticlesInternals = globalObject.__tsParticlesInternals ?? {};
6
6
  globalObject.loadFireworksPreset = loadFireworksPreset;
7
+ globalObject.tsParticles = tsParticles;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsparticles/preset-fireworks",
3
- "version": "4.1.1",
3
+ "version": "4.1.3",
4
4
  "description": "tsParticles fireworks preset",
5
5
  "homepage": "https://particles.js.org",
6
6
  "repository": {
@@ -106,16 +106,16 @@
106
106
  "./package.json": "./package.json"
107
107
  },
108
108
  "dependencies": {
109
- "@tsparticles/basic": "4.1.1",
110
- "@tsparticles/effect-trail": "4.1.1",
111
- "@tsparticles/engine": "4.1.1",
112
- "@tsparticles/plugin-emitters": "4.1.1",
113
- "@tsparticles/plugin-emitters-shape-square": "4.1.1",
114
- "@tsparticles/plugin-sounds": "4.1.1",
115
- "@tsparticles/shape-line": "4.1.1",
116
- "@tsparticles/updater-destroy": "4.1.1",
117
- "@tsparticles/updater-life": "4.1.1",
118
- "@tsparticles/updater-rotate": "4.1.1"
109
+ "@tsparticles/basic": "4.1.3",
110
+ "@tsparticles/effect-trail": "4.1.3",
111
+ "@tsparticles/engine": "4.1.3",
112
+ "@tsparticles/plugin-emitters": "4.1.3",
113
+ "@tsparticles/plugin-emitters-shape-square": "4.1.3",
114
+ "@tsparticles/plugin-sounds": "4.1.3",
115
+ "@tsparticles/shape-line": "4.1.3",
116
+ "@tsparticles/updater-destroy": "4.1.3",
117
+ "@tsparticles/updater-life": "4.1.3",
118
+ "@tsparticles/updater-rotate": "4.1.3"
119
119
  },
120
120
  "publishConfig": {
121
121
  "access": "public"