@tsparticles/preset-confetti 4.1.0 → 4.1.2

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
@@ -26,7 +26,7 @@ center on a transparent background.
26
26
  ### CDN / Vanilla JS / jQuery
27
27
 
28
28
  ```html
29
- <script src="https://cdn.jsdelivr.net/npm/@tsparticles/preset-confetti@3/tsparticles.preset.confetti.bundle.min.js"></script>
29
+ <script src="https://cdn.jsdelivr.net/npm/@tsparticles/preset-confetti@4/tsparticles.preset.confetti.bundle.min.js"></script>
30
30
  ```
31
31
 
32
32
  ### Usage
package/browser/bundle.js CHANGED
@@ -1,6 +1,7 @@
1
1
  import { loadConfettiPreset } from "./index.js";
2
+ import { tsParticles } from "@tsparticles/engine";
2
3
  export { loadConfettiPreset } 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.loadConfettiPreset = loadConfettiPreset;
7
+ globalObject.tsParticles = tsParticles;
package/cjs/bundle.js CHANGED
@@ -1,6 +1,7 @@
1
1
  import { loadConfettiPreset } from "./index.js";
2
+ import { tsParticles } from "@tsparticles/engine";
2
3
  export { loadConfettiPreset } 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.loadConfettiPreset = loadConfettiPreset;
7
+ globalObject.tsParticles = tsParticles;
package/esm/bundle.js CHANGED
@@ -1,6 +1,7 @@
1
1
  import { loadConfettiPreset } from "./index.js";
2
+ import { tsParticles } from "@tsparticles/engine";
2
3
  export { loadConfettiPreset } 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.loadConfettiPreset = loadConfettiPreset;
7
+ globalObject.tsParticles = tsParticles;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsparticles/preset-confetti",
3
- "version": "4.1.0",
3
+ "version": "4.1.2",
4
4
  "description": "tsParticles confetti preset",
5
5
  "homepage": "https://particles.js.org",
6
6
  "repository": {
@@ -99,17 +99,17 @@
99
99
  "./package.json": "./package.json"
100
100
  },
101
101
  "dependencies": {
102
- "@tsparticles/basic": "4.1.0",
103
- "@tsparticles/engine": "4.1.0",
104
- "@tsparticles/palette-confetti": "4.1.0",
105
- "@tsparticles/plugin-emitters": "4.1.0",
106
- "@tsparticles/plugin-motion": "4.1.0",
107
- "@tsparticles/shape-square": "4.1.0",
108
- "@tsparticles/updater-life": "4.1.0",
109
- "@tsparticles/updater-roll": "4.1.0",
110
- "@tsparticles/updater-rotate": "4.1.0",
111
- "@tsparticles/updater-tilt": "4.1.0",
112
- "@tsparticles/updater-wobble": "4.1.0"
102
+ "@tsparticles/basic": "4.1.2",
103
+ "@tsparticles/engine": "4.1.2",
104
+ "@tsparticles/palette-confetti": "4.1.2",
105
+ "@tsparticles/plugin-emitters": "4.1.2",
106
+ "@tsparticles/plugin-motion": "4.1.2",
107
+ "@tsparticles/shape-square": "4.1.2",
108
+ "@tsparticles/updater-life": "4.1.2",
109
+ "@tsparticles/updater-roll": "4.1.2",
110
+ "@tsparticles/updater-rotate": "4.1.2",
111
+ "@tsparticles/updater-tilt": "4.1.2",
112
+ "@tsparticles/updater-wobble": "4.1.2"
113
113
  },
114
114
  "publishConfig": {
115
115
  "access": "public"