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