@tsparticles/pjs 4.1.3 → 4.2.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
@@ -3,7 +3,7 @@ import { initParticlesJS } from "./VincentGarreau/particles.js";
3
3
  import { loadFull } from "tsparticles";
4
4
  import { loadResponsivePlugin } from "@tsparticles/plugin-responsive";
5
5
  const initPjs = async (engine) => {
6
- engine.checkVersion("4.1.3");
6
+ engine.checkVersion("4.2.1");
7
7
  await engine.pluginManager.register(async (e) => {
8
8
  await Promise.all([loadFull(e), loadResponsivePlugin(e)]);
9
9
  });
@@ -1,7 +1,7 @@
1
1
  import { MBParticles } from "./marcbruederlin/Particles.js";
2
2
  import { initParticlesJS } from "./VincentGarreau/particles.js";
3
3
  const initPjs = async (engine) => {
4
- engine.checkVersion("4.1.3");
4
+ engine.checkVersion("4.2.1");
5
5
  await engine.pluginManager.register(async (e) => {
6
6
  const [{ loadFull }, { loadResponsivePlugin },] = await Promise.all([
7
7
  import("tsparticles"),
package/cjs/index.js CHANGED
@@ -3,7 +3,7 @@ import { initParticlesJS } from "./VincentGarreau/particles.js";
3
3
  import { loadFull } from "tsparticles";
4
4
  import { loadResponsivePlugin } from "@tsparticles/plugin-responsive";
5
5
  const initPjs = async (engine) => {
6
- engine.checkVersion("4.1.3");
6
+ engine.checkVersion("4.2.1");
7
7
  await engine.pluginManager.register(async (e) => {
8
8
  await Promise.all([loadFull(e), loadResponsivePlugin(e)]);
9
9
  });
package/cjs/index.lazy.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import { MBParticles } from "./marcbruederlin/Particles.js";
2
2
  import { initParticlesJS } from "./VincentGarreau/particles.js";
3
3
  const initPjs = async (engine) => {
4
- engine.checkVersion("4.1.3");
4
+ engine.checkVersion("4.2.1");
5
5
  await engine.pluginManager.register(async (e) => {
6
6
  const [{ loadFull }, { loadResponsivePlugin },] = await Promise.all([
7
7
  import("tsparticles"),
package/esm/index.js CHANGED
@@ -3,7 +3,7 @@ import { initParticlesJS } from "./VincentGarreau/particles.js";
3
3
  import { loadFull } from "tsparticles";
4
4
  import { loadResponsivePlugin } from "@tsparticles/plugin-responsive";
5
5
  const initPjs = async (engine) => {
6
- engine.checkVersion("4.1.3");
6
+ engine.checkVersion("4.2.1");
7
7
  await engine.pluginManager.register(async (e) => {
8
8
  await Promise.all([loadFull(e), loadResponsivePlugin(e)]);
9
9
  });
package/esm/index.lazy.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import { MBParticles } from "./marcbruederlin/Particles.js";
2
2
  import { initParticlesJS } from "./VincentGarreau/particles.js";
3
3
  const initPjs = async (engine) => {
4
- engine.checkVersion("4.1.3");
4
+ engine.checkVersion("4.2.1");
5
5
  await engine.pluginManager.register(async (e) => {
6
6
  const [{ loadFull }, { loadResponsivePlugin },] = await Promise.all([
7
7
  import("tsparticles"),
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tsparticles/pjs",
3
- "version": "4.1.3",
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.",
3
+ "version": "4.2.1",
4
+ "description": "tsParticles particles.js compatibility layer drop-in replacement for particles.js with full API compatibility and enhanced features. Ready to use components available 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": {
7
7
  "type": "git",
@@ -98,9 +98,9 @@
98
98
  "./package.json": "./package.json"
99
99
  },
100
100
  "dependencies": {
101
- "@tsparticles/engine": "4.1.3",
102
- "@tsparticles/plugin-responsive": "4.1.3",
103
- "tsparticles": "4.1.3"
101
+ "@tsparticles/engine": "4.2.1",
102
+ "@tsparticles/plugin-responsive": "4.2.1",
103
+ "tsparticles": "4.2.1"
104
104
  },
105
105
  "publishConfig": {
106
106
  "access": "public"