From 16465b9e621b30978d41b5df2bbf156093f910fd Mon Sep 17 00:00:00 2001 From: Matteo Bruni <176620+matteobruni@users.noreply.github.com> Date: Tue, 19 May 2026 02:04:02 +0200 Subject: [PATCH 1/3] build: fixed install script on engine, fixes #5776 --- engine/rollup.config.js | 4 ++-- engine/scripts/install.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/engine/rollup.config.js b/engine/rollup.config.js index 4d47b5a0fe0..0dd4de4e2af 100644 --- a/engine/rollup.config.js +++ b/engine/rollup.config.js @@ -1,12 +1,12 @@ import { loadParticlesEngine } from "@tsparticles/rollup-plugin"; import { fileURLToPath } from "node:url"; -import fs from "fs-extra"; +import { readFile } from "node:fs/promises"; import path from "node:path"; const __filename = fileURLToPath(import.meta.url), __dirname = path.dirname(__filename), rootPkgPath = path.join(__dirname, "package.json"), - pkg = await fs.readJson(rootPkgPath), + pkg = JSON.parse(await readFile(rootPkgPath, "utf8")), version = pkg.version; export default loadParticlesEngine({ diff --git a/engine/scripts/install.js b/engine/scripts/install.js index 1a124099d63..d1ce0ae55e6 100644 --- a/engine/scripts/install.js +++ b/engine/scripts/install.js @@ -1,5 +1,5 @@ import path from "node:path"; -import fs from "fs-extra"; +import { readFile } from "node:fs/promises"; const ERR_INCOMPATIBLE = "incompatible-package-found", ERR_DEPRECATED = "deprecated-package-found", @@ -325,7 +325,7 @@ async function checkErrors() { console.log(initialMessage); const rootPkgPath = path.join(process.env.INIT_CWD, "package.json"), - pkgSettings = await fs.readJson(rootPkgPath); + pkgSettings = JSON.parse(await readFile(rootPkgPath, "utf8")); if (!pkgSettings) { return; From 07f09c9d909437c0ec78da3e64196b98377933f9 Mon Sep 17 00:00:00 2001 From: Matteo Bruni <176620+matteobruni@users.noreply.github.com> Date: Tue, 19 May 2026 02:22:41 +0200 Subject: [PATCH 2/3] build: updated changelog in svelte --- wrappers/svelte/CHANGELOG.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/wrappers/svelte/CHANGELOG.md b/wrappers/svelte/CHANGELOG.md index 348aba4fd6f..9bc0427005c 100644 --- a/wrappers/svelte/CHANGELOG.md +++ b/wrappers/svelte/CHANGELOG.md @@ -7,10 +7,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline **Note:** Version bump only for package @tsparticles/svelte - - - - ## [4.0.2](https://github.com/tsparticles/tsparticles/compare/v4.0.1...v4.0.2) (2026-05-16) ### Bug Fixes From ccaa764e22df90102d33c977aa91e3f552ce12dd Mon Sep 17 00:00:00 2001 From: Matteo Bruni <176620+matteobruni@users.noreply.github.com> Date: Tue, 19 May 2026 02:36:00 +0200 Subject: [PATCH 3/3] chore(release): published new version --- CHANGELOG.md | 4 + bundles/all/CHANGELOG.md | 4 + bundles/all/package.dist.json | 156 +++++++++--------- bundles/all/package.json | 2 +- bundles/basic/CHANGELOG.md | 4 + bundles/basic/package.dist.json | 24 +-- bundles/basic/package.json | 2 +- bundles/confetti/CHANGELOG.md | 4 + bundles/confetti/package.dist.json | 34 ++-- bundles/confetti/package.json | 2 +- bundles/fireworks/CHANGELOG.md | 4 + bundles/fireworks/package.dist.json | 24 +-- bundles/fireworks/package.json | 2 +- bundles/full/CHANGELOG.md | 4 + bundles/full/package.dist.json | 30 ++-- bundles/full/package.json | 2 +- bundles/particles/CHANGELOG.md | 4 + bundles/particles/package.dist.json | 12 +- bundles/particles/package.json | 2 +- bundles/pjs/CHANGELOG.md | 4 + bundles/pjs/package.dist.json | 8 +- bundles/pjs/package.json | 2 +- bundles/slim/CHANGELOG.md | 4 + bundles/slim/package.dist.json | 58 +++---- bundles/slim/package.json | 2 +- cli/commands/build-bundle-rollup/CHANGELOG.md | 4 + cli/commands/build-bundle-rollup/package.json | 2 +- .../build-bundle-webpack/CHANGELOG.md | 4 + .../build-bundle-webpack/package.json | 2 +- cli/commands/build-circular-deps/CHANGELOG.md | 4 + cli/commands/build-circular-deps/package.json | 2 +- cli/commands/build-clear/CHANGELOG.md | 4 + cli/commands/build-clear/package.json | 2 +- cli/commands/build-distfiles/CHANGELOG.md | 4 + cli/commands/build-distfiles/package.json | 2 +- cli/commands/build-diststats/CHANGELOG.md | 4 + cli/commands/build-diststats/package.json | 2 +- cli/commands/build-eslint/CHANGELOG.md | 4 + cli/commands/build-eslint/package.json | 2 +- cli/commands/build-prettier/CHANGELOG.md | 4 + cli/commands/build-prettier/package.json | 2 +- cli/commands/build-tsc/CHANGELOG.md | 4 + cli/commands/build-tsc/package.json | 2 +- cli/commands/build/CHANGELOG.md | 4 + cli/commands/build/package.json | 2 +- cli/commands/create-bundle/CHANGELOG.md | 4 + cli/commands/create-bundle/package.json | 2 +- cli/commands/create-effect/CHANGELOG.md | 4 + cli/commands/create-effect/package.json | 2 +- cli/commands/create-interaction/CHANGELOG.md | 4 + cli/commands/create-interaction/package.json | 2 +- cli/commands/create-palette/CHANGELOG.md | 4 + cli/commands/create-palette/package.json | 2 +- cli/commands/create-path/CHANGELOG.md | 4 + cli/commands/create-path/package.json | 2 +- cli/commands/create-plugin/CHANGELOG.md | 4 + cli/commands/create-plugin/package.json | 2 +- cli/commands/create-preset/CHANGELOG.md | 4 + cli/commands/create-preset/package.json | 2 +- cli/commands/create-shape/CHANGELOG.md | 4 + cli/commands/create-shape/package.json | 2 +- cli/commands/create-updater/CHANGELOG.md | 4 + cli/commands/create-updater/package.json | 2 +- cli/commands/create-utils/CHANGELOG.md | 4 + cli/commands/create-utils/package.json | 2 +- cli/commands/create/CHANGELOG.md | 4 + cli/commands/create/package.json | 2 +- cli/packages/cli-build/CHANGELOG.md | 4 + cli/packages/cli-build/package.json | 2 +- cli/packages/cli-create/CHANGELOG.md | 4 + cli/packages/cli-create/package.json | 2 +- cli/packages/nx-plugin/CHANGELOG.md | 4 + cli/packages/nx-plugin/package.json | 2 +- cli/utils/browserslist-config/CHANGELOG.md | 4 + cli/utils/browserslist-config/package.json | 2 +- cli/utils/depcruise-config/CHANGELOG.md | 4 + cli/utils/depcruise-config/package.json | 2 +- cli/utils/eslint-config/CHANGELOG.md | 4 + cli/utils/eslint-config/package.json | 2 +- cli/utils/prettier-config/CHANGELOG.md | 4 + cli/utils/prettier-config/package.json | 2 +- cli/utils/rollup-plugin/CHANGELOG.md | 4 + cli/utils/rollup-plugin/package.json | 2 +- cli/utils/tsconfig/CHANGELOG.md | 4 + cli/utils/tsconfig/package.json | 2 +- cli/utils/webpack-config/CHANGELOG.md | 4 + cli/utils/webpack-config/package.json | 2 +- demo/angular/CHANGELOG.md | 4 + demo/angular/package.json | 2 +- demo/astro/CHANGELOG.md | 4 + demo/astro/package.json | 2 +- demo/electron/CHANGELOG.md | 4 + demo/electron/package.json | 2 +- demo/ember/CHANGELOG.md | 4 + demo/ember/package.json | 2 +- demo/inferno/CHANGELOG.md | 4 + demo/inferno/package.json | 2 +- demo/ionic/CHANGELOG.md | 4 + demo/ionic/package.json | 2 +- demo/jquery/CHANGELOG.md | 4 + demo/jquery/package.json | 2 +- demo/lit/CHANGELOG.md | 4 + demo/lit/package.json | 2 +- demo/nextjs-legacy/CHANGELOG.md | 4 + demo/nextjs-legacy/package.json | 2 +- demo/nextjs/CHANGELOG.md | 4 + demo/nextjs/package.json | 2 +- demo/nuxt2/CHANGELOG.md | 4 + demo/nuxt2/package.json | 2 +- demo/nuxt3/CHANGELOG.md | 4 + demo/nuxt3/package.json | 2 +- demo/nuxt4/CHANGELOG.md | 4 + demo/nuxt4/package.json | 2 +- demo/preact/CHANGELOG.md | 4 + demo/preact/package.json | 2 +- demo/qwik/CHANGELOG.md | 4 + demo/qwik/package.json | 2 +- demo/react/CHANGELOG.md | 4 + demo/react/package.json | 2 +- demo/riot/CHANGELOG.md | 4 + demo/riot/package.json | 2 +- demo/solid/CHANGELOG.md | 4 + demo/solid/package.json | 2 +- demo/svelte-kit/CHANGELOG.md | 8 + demo/svelte-kit/package.json | 2 +- demo/svelte/CHANGELOG.md | 4 + demo/svelte/package.json | 2 +- demo/vanilla/CHANGELOG.md | 4 + demo/vanilla/package.json | 2 +- demo/vanilla_new/CHANGELOG.md | 4 + demo/vanilla_new/package.json | 2 +- demo/vite/CHANGELOG.md | 4 + demo/vite/package.json | 2 +- demo/vue2/CHANGELOG.md | 4 + demo/vue2/package.json | 2 +- demo/vue3/CHANGELOG.md | 4 + demo/vue3/package.json | 2 +- demo/webcomponents/CHANGELOG.md | 4 + demo/webcomponents/package.json | 2 +- effects/bubble/CHANGELOG.md | 4 + effects/bubble/package.dist.json | 4 +- effects/bubble/package.json | 2 +- effects/filter/CHANGELOG.md | 4 + effects/filter/package.dist.json | 4 +- effects/filter/package.json | 2 +- effects/particles/CHANGELOG.md | 4 + effects/particles/package.dist.json | 4 +- effects/particles/package.json | 2 +- effects/shadow/CHANGELOG.md | 4 + effects/shadow/package.dist.json | 4 +- effects/shadow/package.json | 2 +- effects/trail/CHANGELOG.md | 4 + effects/trail/package.dist.json | 4 +- effects/trail/package.json | 2 +- engine/CHANGELOG.md | 4 + engine/package.dist.json | 2 +- engine/package.json | 2 +- interactions/external/attract/CHANGELOG.md | 4 + .../external/attract/package.dist.json | 6 +- interactions/external/attract/package.json | 2 +- interactions/external/bounce/CHANGELOG.md | 4 + .../external/bounce/package.dist.json | 6 +- interactions/external/bounce/package.json | 2 +- interactions/external/bubble/CHANGELOG.md | 4 + .../external/bubble/package.dist.json | 6 +- interactions/external/bubble/package.json | 2 +- interactions/external/cannon/CHANGELOG.md | 4 + .../external/cannon/package.dist.json | 6 +- interactions/external/cannon/package.json | 2 +- interactions/external/connect/CHANGELOG.md | 4 + .../external/connect/package.dist.json | 8 +- interactions/external/connect/package.json | 2 +- interactions/external/destroy/CHANGELOG.md | 4 + .../external/destroy/package.dist.json | 6 +- interactions/external/destroy/package.json | 2 +- interactions/external/drag/CHANGELOG.md | 4 + interactions/external/drag/package.dist.json | 6 +- interactions/external/drag/package.json | 2 +- interactions/external/grab/CHANGELOG.md | 4 + interactions/external/grab/package.dist.json | 8 +- interactions/external/grab/package.json | 2 +- interactions/external/parallax/CHANGELOG.md | 4 + .../external/parallax/package.dist.json | 6 +- interactions/external/parallax/package.json | 2 +- interactions/external/particle/CHANGELOG.md | 4 + .../external/particle/package.dist.json | 6 +- interactions/external/particle/package.json | 2 +- interactions/external/pause/CHANGELOG.md | 4 + interactions/external/pause/package.dist.json | 6 +- interactions/external/pause/package.json | 2 +- interactions/external/pop/CHANGELOG.md | 4 + interactions/external/pop/package.dist.json | 6 +- interactions/external/pop/package.json | 2 +- interactions/external/push/CHANGELOG.md | 4 + interactions/external/push/package.dist.json | 6 +- interactions/external/push/package.json | 2 +- interactions/external/remove/CHANGELOG.md | 4 + .../external/remove/package.dist.json | 6 +- interactions/external/remove/package.json | 2 +- interactions/external/repulse/CHANGELOG.md | 4 + .../external/repulse/package.dist.json | 6 +- interactions/external/repulse/package.json | 2 +- interactions/external/slow/CHANGELOG.md | 4 + interactions/external/slow/package.dist.json | 6 +- interactions/external/slow/package.json | 2 +- interactions/external/trail/CHANGELOG.md | 4 + interactions/external/trail/package.dist.json | 6 +- interactions/external/trail/package.json | 2 +- interactions/light/CHANGELOG.md | 4 + interactions/light/package.dist.json | 6 +- interactions/light/package.json | 2 +- interactions/particles/attract/CHANGELOG.md | 4 + .../particles/attract/package.dist.json | 6 +- interactions/particles/attract/package.json | 2 +- .../particles/collisions/CHANGELOG.md | 4 + .../particles/collisions/package.dist.json | 6 +- .../particles/collisions/package.json | 2 +- interactions/particles/links/CHANGELOG.md | 4 + .../particles/links/package.dist.json | 8 +- interactions/particles/links/package.json | 2 +- interactions/particles/repulse/CHANGELOG.md | 4 + .../particles/repulse/package.dist.json | 6 +- interactions/particles/repulse/package.json | 2 +- lerna.json | 2 +- .../atmosphere/coloredSmokeAmber/CHANGELOG.md | 4 + .../coloredSmokeAmber/package.dist.json | 4 +- .../atmosphere/coloredSmokeAmber/package.json | 2 +- .../atmosphere/coloredSmokeBlue/CHANGELOG.md | 4 + .../coloredSmokeBlue/package.dist.json | 4 +- .../atmosphere/coloredSmokeBlue/package.json | 2 +- .../atmosphere/coloredSmokeGreen/CHANGELOG.md | 4 + .../coloredSmokeGreen/package.dist.json | 4 +- .../atmosphere/coloredSmokeGreen/package.json | 2 +- .../coloredSmokeMagenta/CHANGELOG.md | 4 + .../coloredSmokeMagenta/package.dist.json | 4 +- .../coloredSmokeMagenta/package.json | 2 +- .../coloredSmokeOrange/CHANGELOG.md | 4 + .../coloredSmokeOrange/package.dist.json | 4 +- .../coloredSmokeOrange/package.json | 2 +- .../coloredSmokePurple/CHANGELOG.md | 4 + .../coloredSmokePurple/package.dist.json | 4 +- .../coloredSmokePurple/package.json | 2 +- .../coloredSmokeRainbow/CHANGELOG.md | 4 + .../coloredSmokeRainbow/package.dist.json | 4 +- .../coloredSmokeRainbow/package.json | 2 +- .../atmosphere/coloredSmokeRed/CHANGELOG.md | 4 + .../coloredSmokeRed/package.dist.json | 4 +- .../atmosphere/coloredSmokeRed/package.json | 2 +- .../atmosphere/coloredSmokeTeal/CHANGELOG.md | 4 + .../coloredSmokeTeal/package.dist.json | 4 +- .../atmosphere/coloredSmokeTeal/package.json | 2 +- palettes/atmosphere/dustHaze/CHANGELOG.md | 4 + .../atmosphere/dustHaze/package.dist.json | 4 +- palettes/atmosphere/dustHaze/package.json | 2 +- palettes/atmosphere/fogMorning/CHANGELOG.md | 4 + .../atmosphere/fogMorning/package.dist.json | 4 +- palettes/atmosphere/fogMorning/package.json | 2 +- palettes/atmosphere/volcanicAsh/CHANGELOG.md | 4 + .../atmosphere/volcanicAsh/package.dist.json | 4 +- palettes/atmosphere/volcanicAsh/package.json | 2 +- palettes/atmospheric/heatDuality/CHANGELOG.md | 4 + .../atmospheric/heatDuality/package.dist.json | 4 +- palettes/atmospheric/heatDuality/package.json | 2 +- palettes/atmospheric/heatHaze/CHANGELOG.md | 4 + .../atmospheric/heatHaze/package.dist.json | 4 +- palettes/atmospheric/heatHaze/package.json | 2 +- palettes/atmospheric/lightning/CHANGELOG.md | 4 + .../atmospheric/lightning/package.dist.json | 4 +- palettes/atmospheric/lightning/package.json | 2 +- palettes/atmospheric/shockwave/CHANGELOG.md | 4 + .../atmospheric/shockwave/package.dist.json | 4 +- palettes/atmospheric/shockwave/package.json | 2 +- palettes/atmospheric/smokeCold/CHANGELOG.md | 4 + .../atmospheric/smokeCold/package.dist.json | 4 +- palettes/atmospheric/smokeCold/package.json | 2 +- palettes/atmospheric/smokeWarm/CHANGELOG.md | 4 + .../atmospheric/smokeWarm/package.dist.json | 4 +- palettes/atmospheric/smokeWarm/package.json | 2 +- palettes/atmospheric/sunriseGold/CHANGELOG.md | 4 + .../atmospheric/sunriseGold/package.dist.json | 4 +- palettes/atmospheric/sunriseGold/package.json | 2 +- .../atmospheric/sunsetBinary/CHANGELOG.md | 4 + .../sunsetBinary/package.dist.json | 4 +- .../atmospheric/sunsetBinary/package.json | 2 +- palettes/atmospheric/thermalMap/CHANGELOG.md | 4 + .../atmospheric/thermalMap/package.dist.json | 4 +- palettes/atmospheric/thermalMap/package.json | 2 +- .../atmospheric/thunderstorm/CHANGELOG.md | 4 + .../thunderstorm/package.dist.json | 4 +- .../atmospheric/thunderstorm/package.json | 2 +- palettes/confetti/default/CHANGELOG.md | 4 + palettes/confetti/default/package.dist.json | 4 +- palettes/confetti/default/package.json | 2 +- palettes/confetti/gold/CHANGELOG.md | 4 + palettes/confetti/gold/package.dist.json | 4 +- palettes/confetti/gold/package.json | 2 +- palettes/confetti/monochromeBlue/CHANGELOG.md | 4 + .../confetti/monochromeBlue/package.dist.json | 4 +- palettes/confetti/monochromeBlue/package.json | 2 +- .../confetti/monochromeGreen/CHANGELOG.md | 4 + .../monochromeGreen/package.dist.json | 4 +- .../confetti/monochromeGreen/package.json | 2 +- palettes/confetti/monochromePink/CHANGELOG.md | 4 + .../confetti/monochromePink/package.dist.json | 4 +- palettes/confetti/monochromePink/package.json | 2 +- .../confetti/monochromePurple/CHANGELOG.md | 4 + .../monochromePurple/package.dist.json | 4 +- .../confetti/monochromePurple/package.json | 2 +- palettes/confetti/monochromeRed/CHANGELOG.md | 4 + .../confetti/monochromeRed/package.dist.json | 4 +- palettes/confetti/monochromeRed/package.json | 2 +- palettes/confetti/neon/CHANGELOG.md | 4 + palettes/confetti/neon/package.dist.json | 4 +- palettes/confetti/neon/package.json | 2 +- palettes/confetti/pastel/CHANGELOG.md | 4 + palettes/confetti/pastel/package.dist.json | 4 +- palettes/confetti/pastel/package.json | 2 +- palettes/confetti/patriotic/CHANGELOG.md | 4 + palettes/confetti/patriotic/package.dist.json | 4 +- palettes/confetti/patriotic/package.json | 2 +- palettes/confetti/rainbow/CHANGELOG.md | 4 + palettes/confetti/rainbow/package.dist.json | 4 +- palettes/confetti/rainbow/package.json | 2 +- palettes/confetti/winter/CHANGELOG.md | 4 + palettes/confetti/winter/package.dist.json | 4 +- palettes/confetti/winter/package.json | 2 +- palettes/earth/caustics/CHANGELOG.md | 4 + palettes/earth/caustics/package.dist.json | 4 +- palettes/earth/caustics/package.json | 2 +- palettes/earth/desertSand/CHANGELOG.md | 4 + palettes/earth/desertSand/package.dist.json | 4 +- palettes/earth/desertSand/package.json | 2 +- palettes/earth/mudAndDirt/CHANGELOG.md | 4 + palettes/earth/mudAndDirt/package.dist.json | 4 +- palettes/earth/mudAndDirt/package.json | 2 +- palettes/earth/oilSlick/CHANGELOG.md | 4 + palettes/earth/oilSlick/package.dist.json | 4 +- palettes/earth/oilSlick/package.json | 2 +- palettes/earth/rockAndGravel/CHANGELOG.md | 4 + .../earth/rockAndGravel/package.dist.json | 4 +- palettes/earth/rockAndGravel/package.json | 2 +- palettes/earth/rustAndCorrosion/CHANGELOG.md | 4 + .../earth/rustAndCorrosion/package.dist.json | 4 +- palettes/earth/rustAndCorrosion/package.json | 2 +- palettes/earth/skinAndOrganic/CHANGELOG.md | 4 + .../earth/skinAndOrganic/package.dist.json | 4 +- palettes/earth/skinAndOrganic/package.json | 2 +- palettes/fantasy/bioluminescence/CHANGELOG.md | 4 + .../fantasy/bioluminescence/package.dist.json | 4 +- palettes/fantasy/bioluminescence/package.json | 2 +- palettes/fantasy/bloodAndGore/CHANGELOG.md | 4 + .../fantasy/bloodAndGore/package.dist.json | 4 +- palettes/fantasy/bloodAndGore/package.json | 2 +- palettes/fantasy/fairyDust/CHANGELOG.md | 4 + palettes/fantasy/fairyDust/package.dist.json | 4 +- palettes/fantasy/fairyDust/package.json | 2 +- palettes/fantasy/holyLight/CHANGELOG.md | 4 + palettes/fantasy/holyLight/package.dist.json | 4 +- palettes/fantasy/holyLight/package.json | 2 +- palettes/fantasy/iceMagic/CHANGELOG.md | 4 + palettes/fantasy/iceMagic/package.dist.json | 4 +- palettes/fantasy/iceMagic/package.json | 2 +- palettes/fantasy/iceTriad/CHANGELOG.md | 4 + palettes/fantasy/iceTriad/package.dist.json | 4 +- palettes/fantasy/iceTriad/package.json | 2 +- palettes/fantasy/iris/CHANGELOG.md | 4 + palettes/fantasy/iris/package.dist.json | 4 +- palettes/fantasy/iris/package.json | 2 +- palettes/fantasy/jellyfishGlow/CHANGELOG.md | 4 + .../fantasy/jellyfishGlow/package.dist.json | 4 +- palettes/fantasy/jellyfishGlow/package.json | 2 +- palettes/fantasy/mermaid/CHANGELOG.md | 4 + palettes/fantasy/mermaid/package.dist.json | 4 +- palettes/fantasy/mermaid/package.json | 2 +- palettes/fantasy/poisonAndVenom/CHANGELOG.md | 4 + .../fantasy/poisonAndVenom/package.dist.json | 4 +- palettes/fantasy/poisonAndVenom/package.json | 2 +- palettes/fantasy/unicorn/CHANGELOG.md | 4 + palettes/fantasy/unicorn/package.dist.json | 4 +- palettes/fantasy/unicorn/package.json | 2 +- palettes/fire/candlelight/CHANGELOG.md | 4 + palettes/fire/candlelight/package.dist.json | 4 +- palettes/fire/candlelight/package.json | 2 +- palettes/fire/default/CHANGELOG.md | 4 + palettes/fire/default/package.dist.json | 4 +- palettes/fire/default/package.json | 2 +- palettes/fire/embersAndAsh/CHANGELOG.md | 4 + palettes/fire/embersAndAsh/package.dist.json | 4 +- palettes/fire/embersAndAsh/package.json | 2 +- palettes/fire/fullFireGradient/CHANGELOG.md | 4 + .../fire/fullFireGradient/package.dist.json | 4 +- palettes/fire/fullFireGradient/package.json | 2 +- palettes/fire/lavaLamp/CHANGELOG.md | 4 + palettes/fire/lavaLamp/package.dist.json | 4 +- palettes/fire/lavaLamp/package.json | 2 +- palettes/fire/metalSparks/CHANGELOG.md | 4 + palettes/fire/metalSparks/package.dist.json | 4 +- palettes/fire/metalSparks/package.json | 2 +- palettes/fire/moltenMetal/CHANGELOG.md | 4 + palettes/fire/moltenMetal/package.dist.json | 4 +- palettes/fire/moltenMetal/package.json | 2 +- palettes/fire/seed/CHANGELOG.md | 4 + palettes/fire/seed/package.dist.json | 4 +- palettes/fire/seed/package.json | 2 +- palettes/fireworks/blue/CHANGELOG.md | 4 + palettes/fireworks/blue/package.dist.json | 4 +- palettes/fireworks/blue/package.json | 2 +- palettes/fireworks/blueStroke/CHANGELOG.md | 4 + .../fireworks/blueStroke/package.dist.json | 4 +- palettes/fireworks/blueStroke/package.json | 2 +- palettes/fireworks/copper/CHANGELOG.md | 4 + palettes/fireworks/copper/package.dist.json | 4 +- palettes/fireworks/copper/package.json | 2 +- palettes/fireworks/copperStroke/CHANGELOG.md | 4 + .../fireworks/copperStroke/package.dist.json | 4 +- palettes/fireworks/copperStroke/package.json | 2 +- palettes/fireworks/gold/CHANGELOG.md | 4 + palettes/fireworks/gold/package.dist.json | 4 +- palettes/fireworks/gold/package.json | 2 +- palettes/fireworks/goldStroke/CHANGELOG.md | 4 + .../fireworks/goldStroke/package.dist.json | 4 +- palettes/fireworks/goldStroke/package.json | 2 +- palettes/fireworks/green/CHANGELOG.md | 4 + palettes/fireworks/green/package.dist.json | 4 +- palettes/fireworks/green/package.json | 2 +- palettes/fireworks/greenStroke/CHANGELOG.md | 4 + .../fireworks/greenStroke/package.dist.json | 4 +- palettes/fireworks/greenStroke/package.json | 2 +- palettes/fireworks/ice/CHANGELOG.md | 4 + palettes/fireworks/ice/package.dist.json | 4 +- palettes/fireworks/ice/package.json | 2 +- palettes/fireworks/iceStroke/CHANGELOG.md | 4 + .../fireworks/iceStroke/package.dist.json | 4 +- palettes/fireworks/iceStroke/package.json | 2 +- palettes/fireworks/multicolor/CHANGELOG.md | 4 + .../fireworks/multicolor/package.dist.json | 4 +- palettes/fireworks/multicolor/package.json | 2 +- .../fireworks/multicolorStroke/CHANGELOG.md | 4 + .../multicolorStroke/package.dist.json | 4 +- .../fireworks/multicolorStroke/package.json | 2 +- palettes/fireworks/neon/CHANGELOG.md | 4 + palettes/fireworks/neon/package.dist.json | 4 +- palettes/fireworks/neon/package.json | 2 +- palettes/fireworks/neonStroke/CHANGELOG.md | 4 + .../fireworks/neonStroke/package.dist.json | 4 +- palettes/fireworks/neonStroke/package.json | 2 +- palettes/fireworks/pastel/CHANGELOG.md | 4 + palettes/fireworks/pastel/package.dist.json | 4 +- palettes/fireworks/pastel/package.json | 2 +- palettes/fireworks/pastelStroke/CHANGELOG.md | 4 + .../fireworks/pastelStroke/package.dist.json | 4 +- palettes/fireworks/pastelStroke/package.json | 2 +- palettes/fireworks/purple/CHANGELOG.md | 4 + palettes/fireworks/purple/package.dist.json | 4 +- palettes/fireworks/purple/package.json | 2 +- palettes/fireworks/purpleStroke/CHANGELOG.md | 4 + .../fireworks/purpleStroke/package.dist.json | 4 +- palettes/fireworks/purpleStroke/package.json | 2 +- palettes/fireworks/rainbow/CHANGELOG.md | 4 + palettes/fireworks/rainbow/package.dist.json | 4 +- palettes/fireworks/rainbow/package.json | 2 +- palettes/fireworks/rainbowStroke/CHANGELOG.md | 4 + .../fireworks/rainbowStroke/package.dist.json | 4 +- palettes/fireworks/rainbowStroke/package.json | 2 +- palettes/fireworks/red/CHANGELOG.md | 4 + palettes/fireworks/red/package.dist.json | 4 +- palettes/fireworks/red/package.json | 2 +- palettes/fireworks/redStroke/CHANGELOG.md | 4 + .../fireworks/redStroke/package.dist.json | 4 +- palettes/fireworks/redStroke/package.json | 2 +- palettes/fireworks/silver/CHANGELOG.md | 4 + palettes/fireworks/silver/package.dist.json | 4 +- palettes/fireworks/silver/package.json | 2 +- palettes/fireworks/silverStroke/CHANGELOG.md | 4 + .../fireworks/silverStroke/package.dist.json | 4 +- palettes/fireworks/silverStroke/package.json | 2 +- palettes/food/apple-green/CHANGELOG.md | 4 + palettes/food/apple-green/package.dist.json | 4 +- palettes/food/apple-green/package.json | 2 +- palettes/food/apple-red/CHANGELOG.md | 4 + palettes/food/apple-red/package.dist.json | 4 +- palettes/food/apple-red/package.json | 2 +- palettes/food/apple/CHANGELOG.md | 4 + palettes/food/apple/package.dist.json | 4 +- palettes/food/apple/package.json | 2 +- palettes/food/avocado/CHANGELOG.md | 4 + palettes/food/avocado/package.dist.json | 4 +- palettes/food/avocado/package.json | 2 +- palettes/food/bell-peppers/CHANGELOG.md | 4 + palettes/food/bell-peppers/package.dist.json | 4 +- palettes/food/bell-peppers/package.json | 2 +- palettes/food/berries/CHANGELOG.md | 4 + palettes/food/berries/package.dist.json | 4 +- palettes/food/berries/package.json | 2 +- palettes/food/cherry/CHANGELOG.md | 4 + palettes/food/cherry/package.dist.json | 4 +- palettes/food/cherry/package.json | 2 +- palettes/food/citrus-twist/CHANGELOG.md | 4 + palettes/food/citrus-twist/package.dist.json | 4 +- palettes/food/citrus-twist/package.json | 2 +- palettes/food/gingerbread-house/CHANGELOG.md | 4 + .../food/gingerbread-house/package.dist.json | 4 +- palettes/food/gingerbread-house/package.json | 2 +- palettes/food/grapes/CHANGELOG.md | 4 + palettes/food/grapes/package.dist.json | 4 +- palettes/food/grapes/package.json | 2 +- palettes/food/macaron/CHANGELOG.md | 4 + palettes/food/macaron/package.dist.json | 4 +- palettes/food/macaron/package.json | 2 +- palettes/food/melon/CHANGELOG.md | 4 + palettes/food/melon/package.dist.json | 4 +- palettes/food/melon/package.json | 2 +- palettes/food/pineapple/CHANGELOG.md | 4 + palettes/food/pineapple/package.dist.json | 4 +- palettes/food/pineapple/package.json | 2 +- palettes/food/pizza/CHANGELOG.md | 4 + palettes/food/pizza/package.dist.json | 4 +- palettes/food/pizza/package.json | 2 +- palettes/food/sakura/CHANGELOG.md | 4 + palettes/food/sakura/package.dist.json | 4 +- palettes/food/sakura/package.json | 2 +- palettes/food/salad/CHANGELOG.md | 4 + palettes/food/salad/package.dist.json | 4 +- palettes/food/salad/package.json | 2 +- palettes/food/spice-rack/CHANGELOG.md | 4 + palettes/food/spice-rack/package.dist.json | 4 +- palettes/food/spice-rack/package.json | 2 +- palettes/food/steak/CHANGELOG.md | 4 + palettes/food/steak/package.dist.json | 4 +- palettes/food/steak/package.json | 2 +- palettes/food/sushi/CHANGELOG.md | 4 + palettes/food/sushi/package.dist.json | 4 +- palettes/food/sushi/package.json | 2 +- palettes/food/tropical-fruits/CHANGELOG.md | 4 + .../food/tropical-fruits/package.dist.json | 4 +- palettes/food/tropical-fruits/package.json | 2 +- palettes/food/watermelon/CHANGELOG.md | 4 + palettes/food/watermelon/package.dist.json | 4 +- palettes/food/watermelon/package.json | 2 +- palettes/gaming/minecraft/CHANGELOG.md | 4 + palettes/gaming/minecraft/package.dist.json | 4 +- palettes/gaming/minecraft/package.json | 2 +- palettes/gaming/pacman/CHANGELOG.md | 4 + palettes/gaming/pacman/package.dist.json | 4 +- palettes/gaming/pacman/package.json | 2 +- palettes/gaming/superMarioBros/CHANGELOG.md | 4 + .../gaming/superMarioBros/package.dist.json | 4 +- palettes/gaming/superMarioBros/package.json | 2 +- palettes/gaming/tetris/CHANGELOG.md | 4 + palettes/gaming/tetris/package.dist.json | 4 +- palettes/gaming/tetris/package.json | 2 +- palettes/impact/bulletHit/CHANGELOG.md | 4 + palettes/impact/bulletHit/package.dist.json | 4 +- palettes/impact/bulletHit/package.json | 2 +- palettes/impact/explosionDebris/CHANGELOG.md | 4 + .../impact/explosionDebris/package.dist.json | 4 +- palettes/impact/explosionDebris/package.json | 2 +- palettes/impact/glassBurst/CHANGELOG.md | 4 + palettes/impact/glassBurst/package.dist.json | 4 +- palettes/impact/glassBurst/package.json | 2 +- palettes/impact/meteorImpact/CHANGELOG.md | 4 + .../impact/meteorImpact/package.dist.json | 4 +- palettes/impact/meteorImpact/package.json | 2 +- palettes/impact/nuclearGlow/CHANGELOG.md | 4 + palettes/impact/nuclearGlow/package.dist.json | 4 +- palettes/impact/nuclearGlow/package.json | 2 +- palettes/impact/shockwaveBlast/CHANGELOG.md | 4 + .../impact/shockwaveBlast/package.dist.json | 4 +- palettes/impact/shockwaveBlast/package.json | 2 +- palettes/impact/splatterDark/CHANGELOG.md | 4 + .../impact/splatterDark/package.dist.json | 4 +- palettes/impact/splatterDark/package.json | 2 +- palettes/monochromatic/blues/CHANGELOG.md | 4 + .../monochromatic/blues/package.dist.json | 4 +- palettes/monochromatic/blues/package.json | 2 +- palettes/monochromatic/brown/CHANGELOG.md | 4 + .../monochromatic/brown/package.dist.json | 4 +- palettes/monochromatic/brown/package.json | 2 +- palettes/monochromatic/cyan/CHANGELOG.md | 4 + palettes/monochromatic/cyan/package.dist.json | 4 +- palettes/monochromatic/cyan/package.json | 2 +- palettes/monochromatic/gold/CHANGELOG.md | 4 + palettes/monochromatic/gold/package.dist.json | 4 +- palettes/monochromatic/gold/package.json | 2 +- palettes/monochromatic/greens/CHANGELOG.md | 4 + .../monochromatic/greens/package.dist.json | 4 +- palettes/monochromatic/greens/package.json | 2 +- palettes/monochromatic/noir/CHANGELOG.md | 4 + palettes/monochromatic/noir/package.dist.json | 4 +- palettes/monochromatic/noir/package.json | 2 +- palettes/monochromatic/oranges/CHANGELOG.md | 4 + .../monochromatic/oranges/package.dist.json | 4 +- palettes/monochromatic/oranges/package.json | 2 +- palettes/monochromatic/pinks/CHANGELOG.md | 4 + .../monochromatic/pinks/package.dist.json | 4 +- palettes/monochromatic/pinks/package.json | 2 +- palettes/monochromatic/purples/CHANGELOG.md | 4 + .../monochromatic/purples/package.dist.json | 4 +- palettes/monochromatic/purples/package.json | 2 +- palettes/monochromatic/reds/CHANGELOG.md | 4 + palettes/monochromatic/reds/package.dist.json | 4 +- palettes/monochromatic/reds/package.json | 2 +- palettes/monochromatic/silver/CHANGELOG.md | 4 + .../monochromatic/silver/package.dist.json | 4 +- palettes/monochromatic/silver/package.json | 2 +- palettes/monochromatic/teal/CHANGELOG.md | 4 + palettes/monochromatic/teal/package.dist.json | 4 +- palettes/monochromatic/teal/package.json | 2 +- palettes/monochromatic/white/CHANGELOG.md | 4 + .../monochromatic/white/package.dist.json | 4 +- palettes/monochromatic/white/package.json | 2 +- palettes/monochromatic/yellows/CHANGELOG.md | 4 + .../monochromatic/yellows/package.dist.json | 4 +- palettes/monochromatic/yellows/package.json | 2 +- palettes/nature/autumnLeaves/CHANGELOG.md | 4 + .../nature/autumnLeaves/package.dist.json | 4 +- palettes/nature/autumnLeaves/package.json | 2 +- palettes/nature/cherryBlossom/CHANGELOG.md | 4 + .../nature/cherryBlossom/package.dist.json | 4 +- palettes/nature/cherryBlossom/package.json | 2 +- palettes/nature/dandelionSeeds/CHANGELOG.md | 4 + .../nature/dandelionSeeds/package.dist.json | 4 +- palettes/nature/dandelionSeeds/package.json | 2 +- palettes/nature/earthyNature/CHANGELOG.md | 4 + .../nature/earthyNature/package.dist.json | 4 +- palettes/nature/earthyNature/package.json | 2 +- palettes/nature/fireflies/CHANGELOG.md | 4 + palettes/nature/fireflies/package.dist.json | 4 +- palettes/nature/fireflies/package.json | 2 +- palettes/nature/forestCanopy/CHANGELOG.md | 4 + .../nature/forestCanopy/package.dist.json | 4 +- palettes/nature/forestCanopy/package.json | 2 +- palettes/nature/pollenAndSpores/CHANGELOG.md | 4 + .../nature/pollenAndSpores/package.dist.json | 4 +- palettes/nature/pollenAndSpores/package.json | 2 +- palettes/nature/snowfall/CHANGELOG.md | 4 + palettes/nature/snowfall/package.dist.json | 4 +- palettes/nature/snowfall/package.json | 2 +- palettes/nature/springBloom/CHANGELOG.md | 4 + palettes/nature/springBloom/package.dist.json | 4 +- palettes/nature/springBloom/package.json | 2 +- palettes/optics/bokehCold/CHANGELOG.md | 4 + palettes/optics/bokehCold/package.dist.json | 4 +- palettes/optics/bokehCold/package.json | 2 +- palettes/optics/bokehGold/CHANGELOG.md | 4 + palettes/optics/bokehGold/package.dist.json | 4 +- palettes/optics/bokehGold/package.json | 2 +- palettes/optics/bokehPastel/CHANGELOG.md | 4 + palettes/optics/bokehPastel/package.dist.json | 4 +- palettes/optics/bokehPastel/package.json | 2 +- .../optics/holographicShimmer/CHANGELOG.md | 4 + .../holographicShimmer/package.dist.json | 4 +- .../optics/holographicShimmer/package.json | 2 +- palettes/optics/laserScatter/CHANGELOG.md | 4 + .../optics/laserScatter/package.dist.json | 4 +- palettes/optics/laserScatter/package.json | 2 +- palettes/optics/lensFlareDust/CHANGELOG.md | 4 + .../optics/lensFlareDust/package.dist.json | 4 +- palettes/optics/lensFlareDust/package.json | 2 +- palettes/optics/prismSpectrum/CHANGELOG.md | 4 + .../optics/prismSpectrum/package.dist.json | 4 +- palettes/optics/prismSpectrum/package.json | 2 +- palettes/pastel/cool/CHANGELOG.md | 4 + palettes/pastel/cool/package.dist.json | 4 +- palettes/pastel/cool/package.json | 2 +- palettes/pastel/dream/CHANGELOG.md | 4 + palettes/pastel/dream/package.dist.json | 4 +- palettes/pastel/dream/package.json | 2 +- palettes/pastel/mint/CHANGELOG.md | 4 + palettes/pastel/mint/package.dist.json | 4 +- palettes/pastel/mint/package.json | 2 +- palettes/pastel/sunset/CHANGELOG.md | 4 + palettes/pastel/sunset/package.dist.json | 4 +- palettes/pastel/sunset/package.json | 2 +- palettes/pastel/warm/CHANGELOG.md | 4 + palettes/pastel/warm/package.dist.json | 4 +- palettes/pastel/warm/package.json | 2 +- palettes/space/auroraBorealis/CHANGELOG.md | 4 + .../space/auroraBorealis/package.dist.json | 4 +- palettes/space/auroraBorealis/package.json | 2 +- palettes/space/cosmicRadiation/CHANGELOG.md | 4 + .../space/cosmicRadiation/package.dist.json | 4 +- palettes/space/cosmicRadiation/package.json | 2 +- palettes/space/darkMatter/CHANGELOG.md | 4 + palettes/space/darkMatter/package.dist.json | 4 +- palettes/space/darkMatter/package.json | 2 +- palettes/space/galaxyDust/CHANGELOG.md | 4 + palettes/space/galaxyDust/package.dist.json | 4 +- palettes/space/galaxyDust/package.json | 2 +- palettes/space/nebula/CHANGELOG.md | 4 + palettes/space/nebula/package.dist.json | 4 +- palettes/space/nebula/package.json | 2 +- palettes/space/portal/CHANGELOG.md | 4 + palettes/space/portal/package.dist.json | 4 +- palettes/space/portal/package.json | 2 +- palettes/space/pulsar/CHANGELOG.md | 4 + palettes/space/pulsar/package.dist.json | 4 +- palettes/space/pulsar/package.json | 2 +- palettes/space/solarWind/CHANGELOG.md | 4 + palettes/space/solarWind/package.dist.json | 4 +- palettes/space/solarWind/package.json | 2 +- palettes/space/supernova/CHANGELOG.md | 4 + palettes/space/supernova/package.dist.json | 4 +- palettes/space/supernova/package.json | 2 +- palettes/spectrum/acidPair/CHANGELOG.md | 4 + palettes/spectrum/acidPair/package.dist.json | 4 +- palettes/spectrum/acidPair/package.json | 2 +- palettes/spectrum/cmySecondaries/CHANGELOG.md | 4 + .../spectrum/cmySecondaries/package.dist.json | 4 +- palettes/spectrum/cmySecondaries/package.json | 2 +- .../spectrum/dualityBlueYellow/CHANGELOG.md | 4 + .../dualityBlueYellow/package.dist.json | 4 +- .../spectrum/dualityBlueYellow/package.json | 2 +- .../spectrum/dualityGreenMagenta/CHANGELOG.md | 4 + .../dualityGreenMagenta/package.dist.json | 4 +- .../spectrum/dualityGreenMagenta/package.json | 2 +- palettes/spectrum/dualityRedCyan/CHANGELOG.md | 4 + .../spectrum/dualityRedCyan/package.dist.json | 4 +- palettes/spectrum/dualityRedCyan/package.json | 2 +- palettes/spectrum/fullSpectrum/CHANGELOG.md | 4 + .../spectrum/fullSpectrum/package.dist.json | 4 +- palettes/spectrum/fullSpectrum/package.json | 2 +- .../spectrum/okabeItoAccessible/CHANGELOG.md | 4 + .../okabeItoAccessible/package.dist.json | 4 +- .../spectrum/okabeItoAccessible/package.json | 2 +- palettes/spectrum/prismScatter/CHANGELOG.md | 4 + .../spectrum/prismScatter/package.dist.json | 4 +- palettes/spectrum/prismScatter/package.json | 2 +- palettes/spectrum/rainbow/CHANGELOG.md | 4 + palettes/spectrum/rainbow/package.dist.json | 4 +- palettes/spectrum/rainbow/package.json | 2 +- palettes/spectrum/rgbPrimaries/CHANGELOG.md | 4 + .../spectrum/rgbPrimaries/package.dist.json | 4 +- palettes/spectrum/rgbPrimaries/package.json | 2 +- palettes/tech/crtPhosphor/CHANGELOG.md | 4 + palettes/tech/crtPhosphor/package.dist.json | 4 +- palettes/tech/crtPhosphor/package.json | 2 +- palettes/tech/glitch/CHANGELOG.md | 4 + palettes/tech/glitch/package.dist.json | 4 +- palettes/tech/glitch/package.json | 2 +- palettes/tech/hologram/CHANGELOG.md | 4 + palettes/tech/hologram/package.dist.json | 4 +- palettes/tech/hologram/package.json | 2 +- palettes/tech/lofiWarm/CHANGELOG.md | 4 + palettes/tech/lofiWarm/package.dist.json | 4 +- palettes/tech/lofiWarm/package.json | 2 +- palettes/tech/matrixRain/CHANGELOG.md | 4 + palettes/tech/matrixRain/package.dist.json | 4 +- palettes/tech/matrixRain/package.json | 2 +- palettes/tech/neonCity/CHANGELOG.md | 4 + palettes/tech/neonCity/package.dist.json | 4 +- palettes/tech/neonCity/package.json | 2 +- palettes/tech/networkNodes/CHANGELOG.md | 4 + palettes/tech/networkNodes/package.dist.json | 4 +- palettes/tech/networkNodes/package.json | 2 +- palettes/tech/plasmaArc/CHANGELOG.md | 4 + palettes/tech/plasmaArc/package.dist.json | 4 +- palettes/tech/plasmaArc/package.json | 2 +- palettes/tech/vaporwave/CHANGELOG.md | 4 + palettes/tech/vaporwave/package.dist.json | 4 +- palettes/tech/vaporwave/package.json | 2 +- palettes/vibrant/default/CHANGELOG.md | 4 + palettes/vibrant/default/package.dist.json | 4 +- palettes/vibrant/default/package.json | 2 +- palettes/vibrant/electric/CHANGELOG.md | 4 + palettes/vibrant/electric/package.dist.json | 4 +- palettes/vibrant/electric/package.json | 2 +- palettes/vibrant/neon/CHANGELOG.md | 4 + palettes/vibrant/neon/package.dist.json | 4 +- palettes/vibrant/neon/package.json | 2 +- palettes/vibrant/retro/CHANGELOG.md | 4 + palettes/vibrant/retro/package.dist.json | 4 +- palettes/vibrant/retro/package.json | 2 +- palettes/vibrant/tropical/CHANGELOG.md | 4 + palettes/vibrant/tropical/package.dist.json | 4 +- palettes/vibrant/tropical/package.json | 2 +- palettes/water/deepOcean/CHANGELOG.md | 4 + palettes/water/deepOcean/package.dist.json | 4 +- palettes/water/deepOcean/package.json | 2 +- palettes/water/default/CHANGELOG.md | 4 + palettes/water/default/package.dist.json | 4 +- palettes/water/default/package.json | 2 +- palettes/water/foamAndBubbles/CHANGELOG.md | 4 + .../water/foamAndBubbles/package.dist.json | 4 +- palettes/water/foamAndBubbles/package.json | 2 +- palettes/water/fogCoastal/CHANGELOG.md | 4 + palettes/water/fogCoastal/package.dist.json | 4 +- palettes/water/fogCoastal/package.json | 2 +- palettes/water/inkInWater/CHANGELOG.md | 4 + palettes/water/inkInWater/package.dist.json | 4 +- palettes/water/inkInWater/package.json | 2 +- palettes/water/lagoon/CHANGELOG.md | 4 + palettes/water/lagoon/package.dist.json | 4 +- palettes/water/lagoon/package.json | 2 +- palettes/water/rain/CHANGELOG.md | 4 + palettes/water/rain/package.dist.json | 4 +- palettes/water/rain/package.json | 2 +- palettes/water/risingBubbles/CHANGELOG.md | 4 + .../water/risingBubbles/package.dist.json | 4 +- palettes/water/risingBubbles/package.json | 2 +- palettes/water/splash/CHANGELOG.md | 4 + palettes/water/splash/package.dist.json | 4 +- palettes/water/splash/package.json | 2 +- paths/branches/CHANGELOG.md | 4 + paths/branches/package.dist.json | 6 +- paths/branches/package.json | 2 +- paths/brownian/CHANGELOG.md | 4 + paths/brownian/package.dist.json | 6 +- paths/brownian/package.json | 2 +- paths/curlNoise/CHANGELOG.md | 4 + paths/curlNoise/package.dist.json | 8 +- paths/curlNoise/package.json | 2 +- paths/curves/CHANGELOG.md | 4 + paths/curves/package.dist.json | 6 +- paths/curves/package.json | 2 +- paths/fractalNoise/CHANGELOG.md | 4 + paths/fractalNoise/package.dist.json | 10 +- paths/fractalNoise/package.json | 2 +- paths/grid/CHANGELOG.md | 4 + paths/grid/package.dist.json | 6 +- paths/grid/package.json | 2 +- paths/levy/CHANGELOG.md | 4 + paths/levy/package.dist.json | 6 +- paths/levy/package.json | 2 +- paths/perlinNoise/CHANGELOG.md | 4 + paths/perlinNoise/package.dist.json | 10 +- paths/perlinNoise/package.json | 2 +- paths/polygon/CHANGELOG.md | 4 + paths/polygon/package.dist.json | 6 +- paths/polygon/package.json | 2 +- paths/random/CHANGELOG.md | 4 + paths/random/package.dist.json | 6 +- paths/random/package.json | 2 +- paths/simplexNoise/CHANGELOG.md | 4 + paths/simplexNoise/package.dist.json | 10 +- paths/simplexNoise/package.json | 2 +- paths/spiral/CHANGELOG.md | 4 + paths/spiral/package.dist.json | 6 +- paths/spiral/package.json | 2 +- paths/svg/CHANGELOG.md | 4 + paths/svg/package.dist.json | 6 +- paths/svg/package.json | 2 +- paths/zigzag/CHANGELOG.md | 4 + paths/zigzag/package.dist.json | 6 +- paths/zigzag/package.json | 2 +- plugins/absorbers/CHANGELOG.md | 4 + plugins/absorbers/package.dist.json | 6 +- plugins/absorbers/package.json | 2 +- plugins/backgroundMask/CHANGELOG.md | 4 + plugins/backgroundMask/package.dist.json | 4 +- plugins/backgroundMask/package.json | 2 +- plugins/blend/CHANGELOG.md | 4 + plugins/blend/package.dist.json | 4 +- plugins/blend/package.json | 2 +- plugins/canvasMask/CHANGELOG.md | 4 + plugins/canvasMask/package.dist.json | 6 +- plugins/canvasMask/package.json | 2 +- plugins/colors/hex/CHANGELOG.md | 4 + plugins/colors/hex/package.dist.json | 4 +- plugins/colors/hex/package.json | 2 +- plugins/colors/hsl/CHANGELOG.md | 4 + plugins/colors/hsl/package.dist.json | 4 +- plugins/colors/hsl/package.json | 2 +- plugins/colors/hsv/CHANGELOG.md | 4 + plugins/colors/hsv/package.dist.json | 4 +- plugins/colors/hsv/package.json | 2 +- plugins/colors/hwb/CHANGELOG.md | 4 + plugins/colors/hwb/package.dist.json | 4 +- plugins/colors/hwb/package.json | 2 +- plugins/colors/lab/CHANGELOG.md | 4 + plugins/colors/lab/package.dist.json | 4 +- plugins/colors/lab/package.json | 2 +- plugins/colors/lch/CHANGELOG.md | 4 + plugins/colors/lch/package.dist.json | 4 +- plugins/colors/lch/package.json | 2 +- plugins/colors/named/CHANGELOG.md | 4 + plugins/colors/named/package.dist.json | 4 +- plugins/colors/named/package.json | 2 +- plugins/colors/oklab/CHANGELOG.md | 4 + plugins/colors/oklab/package.dist.json | 4 +- plugins/colors/oklab/package.json | 2 +- plugins/colors/oklch/CHANGELOG.md | 4 + plugins/colors/oklch/package.dist.json | 4 +- plugins/colors/oklch/package.json | 2 +- plugins/colors/rgb/CHANGELOG.md | 4 + plugins/colors/rgb/package.dist.json | 4 +- plugins/colors/rgb/package.json | 2 +- plugins/easings/back/CHANGELOG.md | 4 + plugins/easings/back/package.dist.json | 4 +- plugins/easings/back/package.json | 2 +- plugins/easings/bounce/CHANGELOG.md | 4 + plugins/easings/bounce/package.dist.json | 4 +- plugins/easings/bounce/package.json | 2 +- plugins/easings/circ/CHANGELOG.md | 4 + plugins/easings/circ/package.dist.json | 4 +- plugins/easings/circ/package.json | 2 +- plugins/easings/cubic/CHANGELOG.md | 4 + plugins/easings/cubic/package.dist.json | 4 +- plugins/easings/cubic/package.json | 2 +- plugins/easings/elastic/CHANGELOG.md | 4 + plugins/easings/elastic/package.dist.json | 4 +- plugins/easings/elastic/package.json | 2 +- plugins/easings/expo/CHANGELOG.md | 4 + plugins/easings/expo/package.dist.json | 4 +- plugins/easings/expo/package.json | 2 +- plugins/easings/gaussian/CHANGELOG.md | 4 + plugins/easings/gaussian/package.dist.json | 4 +- plugins/easings/gaussian/package.json | 2 +- plugins/easings/linear/CHANGELOG.md | 4 + plugins/easings/linear/package.dist.json | 4 +- plugins/easings/linear/package.json | 2 +- plugins/easings/quad/CHANGELOG.md | 4 + plugins/easings/quad/package.dist.json | 4 +- plugins/easings/quad/package.json | 2 +- plugins/easings/quart/CHANGELOG.md | 4 + plugins/easings/quart/package.dist.json | 4 +- plugins/easings/quart/package.json | 2 +- plugins/easings/quint/CHANGELOG.md | 4 + plugins/easings/quint/package.dist.json | 4 +- plugins/easings/quint/package.json | 2 +- plugins/easings/sigmoid/CHANGELOG.md | 4 + plugins/easings/sigmoid/package.dist.json | 4 +- plugins/easings/sigmoid/package.json | 2 +- plugins/easings/sine/CHANGELOG.md | 4 + plugins/easings/sine/package.dist.json | 4 +- plugins/easings/sine/package.json | 2 +- plugins/easings/smoothstep/CHANGELOG.md | 4 + plugins/easings/smoothstep/package.dist.json | 4 +- plugins/easings/smoothstep/package.json | 2 +- plugins/emitters/CHANGELOG.md | 4 + plugins/emitters/package.dist.json | 6 +- plugins/emitters/package.json | 2 +- plugins/emittersShapes/canvas/CHANGELOG.md | 4 + .../emittersShapes/canvas/package.dist.json | 8 +- plugins/emittersShapes/canvas/package.json | 2 +- plugins/emittersShapes/circle/CHANGELOG.md | 4 + .../emittersShapes/circle/package.dist.json | 6 +- plugins/emittersShapes/circle/package.json | 2 +- plugins/emittersShapes/path/CHANGELOG.md | 4 + plugins/emittersShapes/path/package.dist.json | 6 +- plugins/emittersShapes/path/package.json | 2 +- plugins/emittersShapes/polygon/CHANGELOG.md | 4 + .../emittersShapes/polygon/package.dist.json | 6 +- plugins/emittersShapes/polygon/package.json | 2 +- plugins/emittersShapes/square/CHANGELOG.md | 4 + .../emittersShapes/square/package.dist.json | 6 +- plugins/emittersShapes/square/package.json | 2 +- plugins/exports/image/CHANGELOG.md | 4 + plugins/exports/image/package.dist.json | 4 +- plugins/exports/image/package.json | 2 +- plugins/exports/json/CHANGELOG.md | 4 + plugins/exports/json/package.dist.json | 4 +- plugins/exports/json/package.json | 2 +- plugins/exports/video/CHANGELOG.md | 4 + plugins/exports/video/package.dist.json | 4 +- plugins/exports/video/package.json | 2 +- plugins/infection/CHANGELOG.md | 4 + plugins/infection/package.dist.json | 6 +- plugins/infection/package.json | 2 +- plugins/interactivity/CHANGELOG.md | 4 + plugins/interactivity/package.dist.json | 4 +- plugins/interactivity/package.json | 2 +- plugins/manualParticles/CHANGELOG.md | 4 + plugins/manualParticles/package.dist.json | 4 +- plugins/manualParticles/package.json | 2 +- plugins/motion/CHANGELOG.md | 4 + plugins/motion/package.dist.json | 4 +- plugins/motion/package.json | 2 +- plugins/move/CHANGELOG.md | 4 + plugins/move/package.dist.json | 4 +- plugins/move/package.json | 2 +- plugins/poisson/CHANGELOG.md | 4 + plugins/poisson/package.dist.json | 4 +- plugins/poisson/package.json | 2 +- plugins/polygonMask/CHANGELOG.md | 4 + plugins/polygonMask/package.dist.json | 4 +- plugins/polygonMask/package.json | 2 +- plugins/responsive/CHANGELOG.md | 4 + plugins/responsive/package.dist.json | 4 +- plugins/responsive/package.json | 2 +- plugins/sounds/CHANGELOG.md | 4 + plugins/sounds/package.dist.json | 4 +- plugins/sounds/package.json | 2 +- plugins/themes/CHANGELOG.md | 4 + plugins/themes/package.dist.json | 4 +- plugins/themes/package.json | 2 +- plugins/trail/CHANGELOG.md | 4 + plugins/trail/package.dist.json | 4 +- plugins/trail/package.json | 2 +- plugins/zoom/CHANGELOG.md | 4 + plugins/zoom/package.dist.json | 4 +- plugins/zoom/package.json | 2 +- presets/ambient/CHANGELOG.md | 4 + presets/ambient/package.dist.json | 6 +- presets/ambient/package.json | 2 +- presets/bigCircles/CHANGELOG.md | 4 + presets/bigCircles/package.dist.json | 6 +- presets/bigCircles/package.json | 2 +- presets/bubbles/CHANGELOG.md | 4 + presets/bubbles/package.dist.json | 8 +- presets/bubbles/package.json | 2 +- presets/confetti/CHANGELOG.md | 4 + presets/confetti/package.dist.json | 24 +-- presets/confetti/package.json | 2 +- presets/confettiCannon/CHANGELOG.md | 4 + presets/confettiCannon/package.dist.json | 26 +-- presets/confettiCannon/package.json | 2 +- presets/confettiExplosions/CHANGELOG.md | 4 + presets/confettiExplosions/package.dist.json | 22 +-- presets/confettiExplosions/package.json | 2 +- presets/confettiFalling/CHANGELOG.md | 4 + presets/confettiFalling/package.dist.json | 20 +-- presets/confettiFalling/package.json | 2 +- presets/confettiParade/CHANGELOG.md | 4 + presets/confettiParade/package.dist.json | 24 +-- presets/confettiParade/package.json | 2 +- presets/fire/CHANGELOG.md | 4 + presets/fire/package.dist.json | 10 +- presets/fire/package.json | 2 +- presets/firefly/CHANGELOG.md | 4 + presets/firefly/package.dist.json | 12 +- presets/firefly/package.json | 2 +- presets/fireworks/CHANGELOG.md | 4 + presets/fireworks/package.dist.json | 22 +-- presets/fireworks/package.json | 2 +- presets/fountain/CHANGELOG.md | 4 + presets/fountain/package.dist.json | 12 +- presets/fountain/package.json | 2 +- presets/hyperspace/CHANGELOG.md | 4 + presets/hyperspace/package.dist.json | 14 +- presets/hyperspace/package.json | 2 +- presets/links/CHANGELOG.md | 4 + presets/links/package.dist.json | 10 +- presets/links/package.json | 2 +- presets/matrix/CHANGELOG.md | 4 + presets/matrix/package.dist.json | 14 +- presets/matrix/package.json | 2 +- presets/seaAnemone/CHANGELOG.md | 4 + presets/seaAnemone/package.dist.json | 14 +- presets/seaAnemone/package.json | 2 +- presets/snow/CHANGELOG.md | 4 + presets/snow/package.dist.json | 10 +- presets/snow/package.json | 2 +- presets/squares/CHANGELOG.md | 4 + presets/squares/package.dist.json | 16 +- presets/squares/package.json | 2 +- presets/stars/CHANGELOG.md | 4 + presets/stars/package.dist.json | 6 +- presets/stars/package.json | 2 +- presets/triangles/CHANGELOG.md | 4 + presets/triangles/package.dist.json | 10 +- presets/triangles/package.json | 2 +- shapes/arrow/CHANGELOG.md | 4 + shapes/arrow/package.dist.json | 4 +- shapes/arrow/package.json | 2 +- shapes/cards/CHANGELOG.md | 4 + shapes/cards/package.dist.json | 6 +- shapes/cards/package.json | 2 +- shapes/circle/CHANGELOG.md | 4 + shapes/circle/package.dist.json | 4 +- shapes/circle/package.json | 2 +- shapes/cog/CHANGELOG.md | 4 + shapes/cog/package.dist.json | 4 +- shapes/cog/package.json | 2 +- shapes/emoji/CHANGELOG.md | 4 + shapes/emoji/package.dist.json | 6 +- shapes/emoji/package.json | 2 +- shapes/heart/CHANGELOG.md | 4 + shapes/heart/package.dist.json | 4 +- shapes/heart/package.json | 2 +- shapes/image/CHANGELOG.md | 4 + shapes/image/package.dist.json | 4 +- shapes/image/package.json | 2 +- shapes/infinity/CHANGELOG.md | 4 + shapes/infinity/package.dist.json | 4 +- shapes/infinity/package.json | 2 +- shapes/line/CHANGELOG.md | 4 + shapes/line/package.dist.json | 4 +- shapes/line/package.json | 2 +- shapes/matrix/CHANGELOG.md | 4 + shapes/matrix/package.dist.json | 4 +- shapes/matrix/package.json | 2 +- shapes/path/CHANGELOG.md | 4 + shapes/path/package.dist.json | 6 +- shapes/path/package.json | 2 +- shapes/polygon/CHANGELOG.md | 4 + shapes/polygon/package.dist.json | 4 +- shapes/polygon/package.json | 2 +- shapes/rounded-polygon/CHANGELOG.md | 4 + shapes/rounded-polygon/package.dist.json | 4 +- shapes/rounded-polygon/package.json | 2 +- shapes/rounded-rect/CHANGELOG.md | 4 + shapes/rounded-rect/package.dist.json | 4 +- shapes/rounded-rect/package.json | 2 +- shapes/spiral/CHANGELOG.md | 4 + shapes/spiral/package.dist.json | 4 +- shapes/spiral/package.json | 2 +- shapes/square/CHANGELOG.md | 4 + shapes/square/package.dist.json | 4 +- shapes/square/package.json | 2 +- shapes/squircle/CHANGELOG.md | 4 + shapes/squircle/package.dist.json | 4 +- shapes/squircle/package.json | 2 +- shapes/star/CHANGELOG.md | 4 + shapes/star/package.dist.json | 4 +- shapes/star/package.json | 2 +- shapes/text/CHANGELOG.md | 4 + shapes/text/package.dist.json | 6 +- shapes/text/package.json | 2 +- templates/react-ts/CHANGELOG.md | 4 + templates/react-ts/package.json | 2 +- templates/react-ts/template.json | 6 +- templates/react/CHANGELOG.md | 4 + templates/react/package.json | 2 +- templates/react/template.json | 6 +- updaters/destroy/CHANGELOG.md | 4 + updaters/destroy/package.dist.json | 4 +- updaters/destroy/package.json | 2 +- updaters/gradient/CHANGELOG.md | 4 + updaters/gradient/package.dist.json | 4 +- updaters/gradient/package.json | 2 +- updaters/life/CHANGELOG.md | 4 + updaters/life/package.dist.json | 4 +- updaters/life/package.json | 2 +- updaters/opacity/CHANGELOG.md | 4 + updaters/opacity/package.dist.json | 4 +- updaters/opacity/package.json | 2 +- updaters/orbit/CHANGELOG.md | 4 + updaters/orbit/package.dist.json | 4 +- updaters/orbit/package.json | 2 +- updaters/outModes/CHANGELOG.md | 4 + updaters/outModes/package.dist.json | 4 +- updaters/outModes/package.json | 2 +- updaters/paint/CHANGELOG.md | 4 + updaters/paint/package.dist.json | 4 +- updaters/paint/package.json | 2 +- updaters/roll/CHANGELOG.md | 4 + updaters/roll/package.dist.json | 4 +- updaters/roll/package.json | 2 +- updaters/rotate/CHANGELOG.md | 4 + updaters/rotate/package.dist.json | 4 +- updaters/rotate/package.json | 2 +- updaters/size/CHANGELOG.md | 4 + updaters/size/package.dist.json | 4 +- updaters/size/package.json | 2 +- updaters/tilt/CHANGELOG.md | 4 + updaters/tilt/package.dist.json | 4 +- updaters/tilt/package.json | 2 +- updaters/twinkle/CHANGELOG.md | 4 + updaters/twinkle/package.dist.json | 4 +- updaters/twinkle/package.json | 2 +- updaters/wobble/CHANGELOG.md | 4 + updaters/wobble/package.dist.json | 4 +- updaters/wobble/package.json | 2 +- utils/canvasUtils/CHANGELOG.md | 4 + utils/canvasUtils/package.dist.json | 4 +- utils/canvasUtils/package.json | 2 +- utils/configs/CHANGELOG.md | 4 + utils/configs/package.dist.json | 4 +- utils/configs/package.json | 2 +- utils/fractalNoise/CHANGELOG.md | 4 + utils/fractalNoise/package.dist.json | 4 +- utils/fractalNoise/package.json | 2 +- utils/noiseField/CHANGELOG.md | 4 + utils/noiseField/package.dist.json | 6 +- utils/noiseField/package.json | 2 +- utils/pathUtils/CHANGELOG.md | 4 + utils/pathUtils/package.dist.json | 4 +- utils/pathUtils/package.json | 2 +- utils/perlinNoise/CHANGELOG.md | 4 + utils/perlinNoise/package.dist.json | 2 +- utils/perlinNoise/package.json | 2 +- utils/simplexNoise/CHANGELOG.md | 4 + utils/simplexNoise/package.dist.json | 2 +- utils/simplexNoise/package.json | 2 +- utils/smoothValueNoise/CHANGELOG.md | 4 + utils/smoothValueNoise/package.dist.json | 2 +- utils/smoothValueNoise/package.json | 2 +- utils/tests/CHANGELOG.md | 4 + utils/tests/package.json | 2 +- websites/confetti/CHANGELOG.md | 4 + websites/confetti/package.json | 2 +- websites/website/CHANGELOG.md | 4 + websites/website/package.json | 2 +- wrappers/angular-confetti/CHANGELOG.md | 4 + wrappers/angular-confetti/package.json | 2 +- .../projects/ng-confetti/package.json | 6 +- wrappers/angular-fireworks/CHANGELOG.md | 4 + wrappers/angular-fireworks/package.json | 2 +- .../projects/ng-fireworks/package.json | 4 +- wrappers/angular/CHANGELOG.md | 4 + wrappers/angular/package.json | 2 +- .../projects/ng-particles/package.json | 4 +- wrappers/astro/CHANGELOG.md | 4 + wrappers/astro/package.json | 2 +- wrappers/ember/CHANGELOG.md | 4 + wrappers/ember/package.json | 2 +- wrappers/inferno/CHANGELOG.md | 4 + wrappers/inferno/package.json | 2 +- wrappers/jquery/CHANGELOG.md | 4 + wrappers/jquery/package.json | 2 +- wrappers/lit/CHANGELOG.md | 4 + wrappers/lit/package.json | 2 +- wrappers/nextjs/CHANGELOG.md | 4 + wrappers/nextjs/package.json | 2 +- wrappers/nuxt2/CHANGELOG.md | 4 + wrappers/nuxt2/package.json | 2 +- wrappers/nuxt3/CHANGELOG.md | 4 + wrappers/nuxt3/package.json | 2 +- wrappers/nuxt4/CHANGELOG.md | 4 + wrappers/nuxt4/package.json | 2 +- wrappers/preact/CHANGELOG.md | 4 + wrappers/preact/package.json | 2 +- wrappers/qwik/CHANGELOG.md | 4 + wrappers/qwik/package.json | 2 +- wrappers/react/CHANGELOG.md | 4 + wrappers/react/package.json | 2 +- wrappers/riot/CHANGELOG.md | 4 + wrappers/riot/package.json | 2 +- wrappers/solid/CHANGELOG.md | 4 + wrappers/solid/package.json | 2 +- wrappers/svelte/CHANGELOG.md | 8 + wrappers/svelte/package.json | 2 +- wrappers/vue2/CHANGELOG.md | 4 + wrappers/vue2/package.json | 2 +- wrappers/vue3/CHANGELOG.md | 4 + wrappers/vue3/package.json | 2 +- wrappers/webcomponents/CHANGELOG.md | 4 + wrappers/webcomponents/package.json | 2 +- wrappers/wordpress/CHANGELOG.md | 4 + wrappers/wordpress/package.json | 2 +- wrappers/wordpress/readme.txt | 2 +- wrappers/wordpress/src/block.json | 2 +- wrappers/wordpress/wordpress-particles.php | 2 +- 1234 files changed, 3230 insertions(+), 1474 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8075bfa4c24..44a6019db0c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/workspace + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) ### Bug Fixes diff --git a/bundles/all/CHANGELOG.md b/bundles/all/CHANGELOG.md index c4130ccb8d5..110e0bd4bab 100644 --- a/bundles/all/CHANGELOG.md +++ b/bundles/all/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/all + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) ### Bug Fixes diff --git a/bundles/all/package.dist.json b/bundles/all/package.dist.json index 2569c934e34..252529962ae 100644 --- a/bundles/all/package.dist.json +++ b/bundles/all/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/all", - "version": "4.0.3", + "version": "4.0.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.", "homepage": "https://particles.js.org", "repository": { @@ -105,83 +105,83 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/effect-bubble": "4.0.3", - "@tsparticles/effect-filter": "4.0.3", - "@tsparticles/effect-particles": "4.0.3", - "@tsparticles/effect-shadow": "4.0.3", - "@tsparticles/effect-trail": "4.0.3", - "@tsparticles/engine": "4.0.3", - "@tsparticles/interaction-external-cannon": "4.0.3", - "@tsparticles/interaction-external-particle": "4.0.3", - "@tsparticles/interaction-external-pop": "4.0.3", - "@tsparticles/interaction-light": "4.0.3", - "@tsparticles/interaction-particles-repulse": "4.0.3", - "@tsparticles/path-branches": "4.0.3", - "@tsparticles/path-brownian": "4.0.3", - "@tsparticles/path-curl-noise": "4.0.3", - "@tsparticles/path-curves": "4.0.3", - "@tsparticles/path-fractal-noise": "4.0.3", - "@tsparticles/path-grid": "4.0.3", - "@tsparticles/path-levy": "4.0.3", - "@tsparticles/path-perlin-noise": "4.0.3", - "@tsparticles/path-polygon": "4.0.3", - "@tsparticles/path-random": "4.0.3", - "@tsparticles/path-simplex-noise": "4.0.3", - "@tsparticles/path-spiral": "4.0.3", - "@tsparticles/path-svg": "4.0.3", - "@tsparticles/path-zig-zag": "4.0.3", - "@tsparticles/plugin-background-mask": "4.0.3", - "@tsparticles/plugin-canvas-mask": "4.0.3", - "@tsparticles/plugin-easing-back": "4.0.3", - "@tsparticles/plugin-easing-bounce": "4.0.3", - "@tsparticles/plugin-easing-circ": "4.0.3", - "@tsparticles/plugin-easing-cubic": "4.0.3", - "@tsparticles/plugin-easing-elastic": "4.0.3", - "@tsparticles/plugin-easing-expo": "4.0.3", - "@tsparticles/plugin-easing-gaussian": "4.0.3", - "@tsparticles/plugin-easing-linear": "4.0.3", - "@tsparticles/plugin-easing-quart": "4.0.3", - "@tsparticles/plugin-easing-quint": "4.0.3", - "@tsparticles/plugin-easing-sigmoid": "4.0.3", - "@tsparticles/plugin-easing-sine": "4.0.3", - "@tsparticles/plugin-easing-smoothstep": "4.0.3", - "@tsparticles/plugin-emitters-shape-canvas": "4.0.3", - "@tsparticles/plugin-emitters-shape-path": "4.0.3", - "@tsparticles/plugin-emitters-shape-polygon": "4.0.3", - "@tsparticles/plugin-export-image": "4.0.3", - "@tsparticles/plugin-export-json": "4.0.3", - "@tsparticles/plugin-export-video": "4.0.3", - "@tsparticles/plugin-hsv-color": "4.0.3", - "@tsparticles/plugin-hwb-color": "4.0.3", - "@tsparticles/plugin-infection": "4.0.3", - "@tsparticles/plugin-lab-color": "4.0.3", - "@tsparticles/plugin-lch-color": "4.0.3", - "@tsparticles/plugin-manual-particles": "4.0.3", - "@tsparticles/plugin-motion": "4.0.3", - "@tsparticles/plugin-named-color": "4.0.3", - "@tsparticles/plugin-oklab-color": "4.0.3", - "@tsparticles/plugin-oklch-color": "4.0.3", - "@tsparticles/plugin-poisson-disc": "4.0.3", - "@tsparticles/plugin-polygon-mask": "4.0.3", - "@tsparticles/plugin-responsive": "4.0.3", - "@tsparticles/plugin-sounds": "4.0.3", - "@tsparticles/plugin-themes": "4.0.3", - "@tsparticles/plugin-trail": "4.0.3", - "@tsparticles/plugin-zoom": "4.0.3", - "@tsparticles/shape-arrow": "4.0.3", - "@tsparticles/shape-cards": "4.0.3", - "@tsparticles/shape-cog": "4.0.3", - "@tsparticles/shape-heart": "4.0.3", - "@tsparticles/shape-infinity": "4.0.3", - "@tsparticles/shape-matrix": "4.0.3", - "@tsparticles/shape-path": "4.0.3", - "@tsparticles/shape-rounded-polygon": "4.0.3", - "@tsparticles/shape-rounded-rect": "4.0.3", - "@tsparticles/shape-spiral": "4.0.3", - "@tsparticles/shape-squircle": "4.0.3", - "@tsparticles/updater-gradient": "4.0.3", - "@tsparticles/updater-orbit": "4.0.3", - "tsparticles": "4.0.3" + "@tsparticles/effect-bubble": "4.0.4", + "@tsparticles/effect-filter": "4.0.4", + "@tsparticles/effect-particles": "4.0.4", + "@tsparticles/effect-shadow": "4.0.4", + "@tsparticles/effect-trail": "4.0.4", + "@tsparticles/engine": "4.0.4", + "@tsparticles/interaction-external-cannon": "4.0.4", + "@tsparticles/interaction-external-particle": "4.0.4", + "@tsparticles/interaction-external-pop": "4.0.4", + "@tsparticles/interaction-light": "4.0.4", + "@tsparticles/interaction-particles-repulse": "4.0.4", + "@tsparticles/path-branches": "4.0.4", + "@tsparticles/path-brownian": "4.0.4", + "@tsparticles/path-curl-noise": "4.0.4", + "@tsparticles/path-curves": "4.0.4", + "@tsparticles/path-fractal-noise": "4.0.4", + "@tsparticles/path-grid": "4.0.4", + "@tsparticles/path-levy": "4.0.4", + "@tsparticles/path-perlin-noise": "4.0.4", + "@tsparticles/path-polygon": "4.0.4", + "@tsparticles/path-random": "4.0.4", + "@tsparticles/path-simplex-noise": "4.0.4", + "@tsparticles/path-spiral": "4.0.4", + "@tsparticles/path-svg": "4.0.4", + "@tsparticles/path-zig-zag": "4.0.4", + "@tsparticles/plugin-background-mask": "4.0.4", + "@tsparticles/plugin-canvas-mask": "4.0.4", + "@tsparticles/plugin-easing-back": "4.0.4", + "@tsparticles/plugin-easing-bounce": "4.0.4", + "@tsparticles/plugin-easing-circ": "4.0.4", + "@tsparticles/plugin-easing-cubic": "4.0.4", + "@tsparticles/plugin-easing-elastic": "4.0.4", + "@tsparticles/plugin-easing-expo": "4.0.4", + "@tsparticles/plugin-easing-gaussian": "4.0.4", + "@tsparticles/plugin-easing-linear": "4.0.4", + "@tsparticles/plugin-easing-quart": "4.0.4", + "@tsparticles/plugin-easing-quint": "4.0.4", + "@tsparticles/plugin-easing-sigmoid": "4.0.4", + "@tsparticles/plugin-easing-sine": "4.0.4", + "@tsparticles/plugin-easing-smoothstep": "4.0.4", + "@tsparticles/plugin-emitters-shape-canvas": "4.0.4", + "@tsparticles/plugin-emitters-shape-path": "4.0.4", + "@tsparticles/plugin-emitters-shape-polygon": "4.0.4", + "@tsparticles/plugin-export-image": "4.0.4", + "@tsparticles/plugin-export-json": "4.0.4", + "@tsparticles/plugin-export-video": "4.0.4", + "@tsparticles/plugin-hsv-color": "4.0.4", + "@tsparticles/plugin-hwb-color": "4.0.4", + "@tsparticles/plugin-infection": "4.0.4", + "@tsparticles/plugin-lab-color": "4.0.4", + "@tsparticles/plugin-lch-color": "4.0.4", + "@tsparticles/plugin-manual-particles": "4.0.4", + "@tsparticles/plugin-motion": "4.0.4", + "@tsparticles/plugin-named-color": "4.0.4", + "@tsparticles/plugin-oklab-color": "4.0.4", + "@tsparticles/plugin-oklch-color": "4.0.4", + "@tsparticles/plugin-poisson-disc": "4.0.4", + "@tsparticles/plugin-polygon-mask": "4.0.4", + "@tsparticles/plugin-responsive": "4.0.4", + "@tsparticles/plugin-sounds": "4.0.4", + "@tsparticles/plugin-themes": "4.0.4", + "@tsparticles/plugin-trail": "4.0.4", + "@tsparticles/plugin-zoom": "4.0.4", + "@tsparticles/shape-arrow": "4.0.4", + "@tsparticles/shape-cards": "4.0.4", + "@tsparticles/shape-cog": "4.0.4", + "@tsparticles/shape-heart": "4.0.4", + "@tsparticles/shape-infinity": "4.0.4", + "@tsparticles/shape-matrix": "4.0.4", + "@tsparticles/shape-path": "4.0.4", + "@tsparticles/shape-rounded-polygon": "4.0.4", + "@tsparticles/shape-rounded-rect": "4.0.4", + "@tsparticles/shape-spiral": "4.0.4", + "@tsparticles/shape-squircle": "4.0.4", + "@tsparticles/updater-gradient": "4.0.4", + "@tsparticles/updater-orbit": "4.0.4", + "tsparticles": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/bundles/all/package.json b/bundles/all/package.json index d584e8ceb15..988c1c19c4f 100644 --- a/bundles/all/package.json +++ b/bundles/all/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/all", - "version": "4.0.3", + "version": "4.0.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.", "homepage": "https://particles.js.org", "scripts": { diff --git a/bundles/basic/CHANGELOG.md b/bundles/basic/CHANGELOG.md index a25279496b6..607f092a671 100644 --- a/bundles/basic/CHANGELOG.md +++ b/bundles/basic/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/basic + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) ### Bug Fixes diff --git a/bundles/basic/package.dist.json b/bundles/basic/package.dist.json index 823228fe067..b73cb9e4729 100644 --- a/bundles/basic/package.dist.json +++ b/bundles/basic/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/basic", - "version": "4.0.3", + "version": "4.0.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.", "homepage": "https://particles.js.org", "repository": { @@ -105,17 +105,17 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-blend": "4.0.3", - "@tsparticles/plugin-hex-color": "4.0.3", - "@tsparticles/plugin-hsl-color": "4.0.3", - "@tsparticles/plugin-move": "4.0.3", - "@tsparticles/plugin-rgb-color": "4.0.3", - "@tsparticles/shape-circle": "4.0.3", - "@tsparticles/updater-opacity": "4.0.3", - "@tsparticles/updater-out-modes": "4.0.3", - "@tsparticles/updater-paint": "4.0.3", - "@tsparticles/updater-size": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-blend": "4.0.4", + "@tsparticles/plugin-hex-color": "4.0.4", + "@tsparticles/plugin-hsl-color": "4.0.4", + "@tsparticles/plugin-move": "4.0.4", + "@tsparticles/plugin-rgb-color": "4.0.4", + "@tsparticles/shape-circle": "4.0.4", + "@tsparticles/updater-opacity": "4.0.4", + "@tsparticles/updater-out-modes": "4.0.4", + "@tsparticles/updater-paint": "4.0.4", + "@tsparticles/updater-size": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/bundles/basic/package.json b/bundles/basic/package.json index 4c53fdb80df..3da988885d5 100644 --- a/bundles/basic/package.json +++ b/bundles/basic/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/basic", - "version": "4.0.3", + "version": "4.0.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.", "homepage": "https://particles.js.org", "scripts": { diff --git a/bundles/confetti/CHANGELOG.md b/bundles/confetti/CHANGELOG.md index cf6e6b4b6c6..c9c8d6c889f 100644 --- a/bundles/confetti/CHANGELOG.md +++ b/bundles/confetti/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/confetti + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/confetti diff --git a/bundles/confetti/package.dist.json b/bundles/confetti/package.dist.json index 845e902553c..6eef0c96126 100644 --- a/bundles/confetti/package.dist.json +++ b/bundles/confetti/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/confetti", - "version": "4.0.3", + "version": "4.0.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.", "homepage": "https://particles.js.org", "repository": { @@ -105,22 +105,22 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.0.3", - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-emitters": "4.0.3", - "@tsparticles/plugin-motion": "4.0.3", - "@tsparticles/shape-cards": "4.0.3", - "@tsparticles/shape-emoji": "4.0.3", - "@tsparticles/shape-heart": "4.0.3", - "@tsparticles/shape-image": "4.0.3", - "@tsparticles/shape-polygon": "4.0.3", - "@tsparticles/shape-square": "4.0.3", - "@tsparticles/shape-star": "4.0.3", - "@tsparticles/updater-life": "4.0.3", - "@tsparticles/updater-roll": "4.0.3", - "@tsparticles/updater-rotate": "4.0.3", - "@tsparticles/updater-tilt": "4.0.3", - "@tsparticles/updater-wobble": "4.0.3" + "@tsparticles/basic": "4.0.4", + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-emitters": "4.0.4", + "@tsparticles/plugin-motion": "4.0.4", + "@tsparticles/shape-cards": "4.0.4", + "@tsparticles/shape-emoji": "4.0.4", + "@tsparticles/shape-heart": "4.0.4", + "@tsparticles/shape-image": "4.0.4", + "@tsparticles/shape-polygon": "4.0.4", + "@tsparticles/shape-square": "4.0.4", + "@tsparticles/shape-star": "4.0.4", + "@tsparticles/updater-life": "4.0.4", + "@tsparticles/updater-roll": "4.0.4", + "@tsparticles/updater-rotate": "4.0.4", + "@tsparticles/updater-tilt": "4.0.4", + "@tsparticles/updater-wobble": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/bundles/confetti/package.json b/bundles/confetti/package.json index d2d9564ea13..13cc3aa10b2 100644 --- a/bundles/confetti/package.json +++ b/bundles/confetti/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/confetti", - "version": "4.0.3", + "version": "4.0.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.", "homepage": "https://particles.js.org", "scripts": { diff --git a/bundles/fireworks/CHANGELOG.md b/bundles/fireworks/CHANGELOG.md index bb2c255cdfc..8833bf21084 100644 --- a/bundles/fireworks/CHANGELOG.md +++ b/bundles/fireworks/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/fireworks + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/fireworks diff --git a/bundles/fireworks/package.dist.json b/bundles/fireworks/package.dist.json index 9357eba5df7..bf433c16cb2 100644 --- a/bundles/fireworks/package.dist.json +++ b/bundles/fireworks/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/fireworks", - "version": "4.0.3", + "version": "4.0.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.", "homepage": "https://particles.js.org", "repository": { @@ -105,17 +105,17 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.0.3", - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-blend": "4.0.3", - "@tsparticles/plugin-emitters": "4.0.3", - "@tsparticles/plugin-emitters-shape-square": "4.0.3", - "@tsparticles/plugin-sounds": "4.0.3", - "@tsparticles/shape-line": "4.0.3", - "@tsparticles/updater-destroy": "4.0.3", - "@tsparticles/updater-life": "4.0.3", - "@tsparticles/updater-paint": "4.0.3", - "@tsparticles/updater-rotate": "4.0.3" + "@tsparticles/basic": "4.0.4", + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-blend": "4.0.4", + "@tsparticles/plugin-emitters": "4.0.4", + "@tsparticles/plugin-emitters-shape-square": "4.0.4", + "@tsparticles/plugin-sounds": "4.0.4", + "@tsparticles/shape-line": "4.0.4", + "@tsparticles/updater-destroy": "4.0.4", + "@tsparticles/updater-life": "4.0.4", + "@tsparticles/updater-paint": "4.0.4", + "@tsparticles/updater-rotate": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/bundles/fireworks/package.json b/bundles/fireworks/package.json index 0bb7977b5ea..39b5316ba21 100644 --- a/bundles/fireworks/package.json +++ b/bundles/fireworks/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/fireworks", - "version": "4.0.3", + "version": "4.0.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.", "homepage": "https://particles.js.org", "scripts": { diff --git a/bundles/full/CHANGELOG.md b/bundles/full/CHANGELOG.md index 4cab45f894a..f5b19923e74 100644 --- a/bundles/full/CHANGELOG.md +++ b/bundles/full/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package tsparticles + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package tsparticles diff --git a/bundles/full/package.dist.json b/bundles/full/package.dist.json index aa806651ad6..5c6ac63c32f 100644 --- a/bundles/full/package.dist.json +++ b/bundles/full/package.dist.json @@ -1,6 +1,6 @@ { "name": "tsparticles", - "version": "4.0.3", + "version": "4.0.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.", "homepage": "https://particles.js.org", "repository": { @@ -105,20 +105,20 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/interaction-external-drag": "4.0.3", - "@tsparticles/interaction-external-trail": "4.0.3", - "@tsparticles/plugin-absorbers": "4.0.3", - "@tsparticles/plugin-emitters": "4.0.3", - "@tsparticles/plugin-emitters-shape-circle": "4.0.3", - "@tsparticles/plugin-emitters-shape-square": "4.0.3", - "@tsparticles/shape-text": "4.0.3", - "@tsparticles/slim": "4.0.3", - "@tsparticles/updater-destroy": "4.0.3", - "@tsparticles/updater-roll": "4.0.3", - "@tsparticles/updater-tilt": "4.0.3", - "@tsparticles/updater-twinkle": "4.0.3", - "@tsparticles/updater-wobble": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/interaction-external-drag": "4.0.4", + "@tsparticles/interaction-external-trail": "4.0.4", + "@tsparticles/plugin-absorbers": "4.0.4", + "@tsparticles/plugin-emitters": "4.0.4", + "@tsparticles/plugin-emitters-shape-circle": "4.0.4", + "@tsparticles/plugin-emitters-shape-square": "4.0.4", + "@tsparticles/shape-text": "4.0.4", + "@tsparticles/slim": "4.0.4", + "@tsparticles/updater-destroy": "4.0.4", + "@tsparticles/updater-roll": "4.0.4", + "@tsparticles/updater-tilt": "4.0.4", + "@tsparticles/updater-twinkle": "4.0.4", + "@tsparticles/updater-wobble": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/bundles/full/package.json b/bundles/full/package.json index ca204e07d76..3fc2de1a5e7 100644 --- a/bundles/full/package.json +++ b/bundles/full/package.json @@ -1,6 +1,6 @@ { "name": "tsparticles", - "version": "4.0.3", + "version": "4.0.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.", "homepage": "https://particles.js.org", "scripts": { diff --git a/bundles/particles/CHANGELOG.md b/bundles/particles/CHANGELOG.md index 63a3ec23d1a..eedc1c5413d 100644 --- a/bundles/particles/CHANGELOG.md +++ b/bundles/particles/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/particles + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/particles diff --git a/bundles/particles/package.dist.json b/bundles/particles/package.dist.json index e256097e388..0dae3842463 100644 --- a/bundles/particles/package.dist.json +++ b/bundles/particles/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/particles", - "version": "4.0.3", + "version": "4.0.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.", "homepage": "https://particles.js.org", "repository": { @@ -40,11 +40,11 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.0.3", - "@tsparticles/engine": "4.0.3", - "@tsparticles/interaction-particles-collisions": "4.0.3", - "@tsparticles/interaction-particles-links": "4.0.3", - "@tsparticles/plugin-interactivity": "4.0.3" + "@tsparticles/basic": "4.0.4", + "@tsparticles/engine": "4.0.4", + "@tsparticles/interaction-particles-collisions": "4.0.4", + "@tsparticles/interaction-particles-links": "4.0.4", + "@tsparticles/plugin-interactivity": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/bundles/particles/package.json b/bundles/particles/package.json index 0599889f1a1..7e3450d5fbf 100644 --- a/bundles/particles/package.json +++ b/bundles/particles/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/particles", - "version": "4.0.3", + "version": "4.0.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.", "homepage": "https://particles.js.org", "scripts": { diff --git a/bundles/pjs/CHANGELOG.md b/bundles/pjs/CHANGELOG.md index ad47697e92f..9fa72d30044 100644 --- a/bundles/pjs/CHANGELOG.md +++ b/bundles/pjs/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/pjs + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/pjs diff --git a/bundles/pjs/package.dist.json b/bundles/pjs/package.dist.json index c4a73cef9cc..ab0b7aebb14 100644 --- a/bundles/pjs/package.dist.json +++ b/bundles/pjs/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/pjs", - "version": "4.0.3", + "version": "4.0.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.", "homepage": "https://particles.js.org", "repository": { @@ -98,9 +98,9 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-responsive": "4.0.3", - "tsparticles": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-responsive": "4.0.4", + "tsparticles": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/bundles/pjs/package.json b/bundles/pjs/package.json index b9aeb2dd0e8..a67a60f0693 100644 --- a/bundles/pjs/package.json +++ b/bundles/pjs/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/pjs", - "version": "4.0.3", + "version": "4.0.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.", "homepage": "https://particles.js.org", "scripts": { diff --git a/bundles/slim/CHANGELOG.md b/bundles/slim/CHANGELOG.md index fe087c92cd9..61dc7802a89 100644 --- a/bundles/slim/CHANGELOG.md +++ b/bundles/slim/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/slim + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/slim diff --git a/bundles/slim/package.dist.json b/bundles/slim/package.dist.json index 20e557cc5c5..85c5721b0c3 100644 --- a/bundles/slim/package.dist.json +++ b/bundles/slim/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/slim", - "version": "4.0.3", + "version": "4.0.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.", "homepage": "https://particles.js.org", "repository": { @@ -105,34 +105,34 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.0.3", - "@tsparticles/engine": "4.0.3", - "@tsparticles/interaction-external-attract": "4.0.3", - "@tsparticles/interaction-external-bounce": "4.0.3", - "@tsparticles/interaction-external-bubble": "4.0.3", - "@tsparticles/interaction-external-connect": "4.0.3", - "@tsparticles/interaction-external-destroy": "4.0.3", - "@tsparticles/interaction-external-grab": "4.0.3", - "@tsparticles/interaction-external-parallax": "4.0.3", - "@tsparticles/interaction-external-pause": "4.0.3", - "@tsparticles/interaction-external-push": "4.0.3", - "@tsparticles/interaction-external-remove": "4.0.3", - "@tsparticles/interaction-external-repulse": "4.0.3", - "@tsparticles/interaction-external-slow": "4.0.3", - "@tsparticles/interaction-particles-attract": "4.0.3", - "@tsparticles/interaction-particles-collisions": "4.0.3", - "@tsparticles/interaction-particles-links": "4.0.3", - "@tsparticles/plugin-easing-quad": "4.0.3", - "@tsparticles/plugin-interactivity": "4.0.3", - "@tsparticles/shape-emoji": "4.0.3", - "@tsparticles/shape-image": "4.0.3", - "@tsparticles/shape-line": "4.0.3", - "@tsparticles/shape-polygon": "4.0.3", - "@tsparticles/shape-square": "4.0.3", - "@tsparticles/shape-star": "4.0.3", - "@tsparticles/updater-life": "4.0.3", - "@tsparticles/updater-paint": "4.0.3", - "@tsparticles/updater-rotate": "4.0.3" + "@tsparticles/basic": "4.0.4", + "@tsparticles/engine": "4.0.4", + "@tsparticles/interaction-external-attract": "4.0.4", + "@tsparticles/interaction-external-bounce": "4.0.4", + "@tsparticles/interaction-external-bubble": "4.0.4", + "@tsparticles/interaction-external-connect": "4.0.4", + "@tsparticles/interaction-external-destroy": "4.0.4", + "@tsparticles/interaction-external-grab": "4.0.4", + "@tsparticles/interaction-external-parallax": "4.0.4", + "@tsparticles/interaction-external-pause": "4.0.4", + "@tsparticles/interaction-external-push": "4.0.4", + "@tsparticles/interaction-external-remove": "4.0.4", + "@tsparticles/interaction-external-repulse": "4.0.4", + "@tsparticles/interaction-external-slow": "4.0.4", + "@tsparticles/interaction-particles-attract": "4.0.4", + "@tsparticles/interaction-particles-collisions": "4.0.4", + "@tsparticles/interaction-particles-links": "4.0.4", + "@tsparticles/plugin-easing-quad": "4.0.4", + "@tsparticles/plugin-interactivity": "4.0.4", + "@tsparticles/shape-emoji": "4.0.4", + "@tsparticles/shape-image": "4.0.4", + "@tsparticles/shape-line": "4.0.4", + "@tsparticles/shape-polygon": "4.0.4", + "@tsparticles/shape-square": "4.0.4", + "@tsparticles/shape-star": "4.0.4", + "@tsparticles/updater-life": "4.0.4", + "@tsparticles/updater-paint": "4.0.4", + "@tsparticles/updater-rotate": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/bundles/slim/package.json b/bundles/slim/package.json index 155d07baf09..94cfdcace8e 100644 --- a/bundles/slim/package.json +++ b/bundles/slim/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/slim", - "version": "4.0.3", + "version": "4.0.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.", "homepage": "https://particles.js.org", "scripts": { diff --git a/cli/commands/build-bundle-rollup/CHANGELOG.md b/cli/commands/build-bundle-rollup/CHANGELOG.md index 3c80bf60825..420f07b6ccf 100644 --- a/cli/commands/build-bundle-rollup/CHANGELOG.md +++ b/cli/commands/build-bundle-rollup/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/cli-command-build-bundle-rollup + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/cli-command-build-bundle-rollup diff --git a/cli/commands/build-bundle-rollup/package.json b/cli/commands/build-bundle-rollup/package.json index 1b9ea2337b9..10fca796d2c 100644 --- a/cli/commands/build-bundle-rollup/package.json +++ b/cli/commands/build-bundle-rollup/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-command-build-bundle-rollup", - "version": "4.0.3", + "version": "4.0.4", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/build-bundle-webpack/CHANGELOG.md b/cli/commands/build-bundle-webpack/CHANGELOG.md index 604970071d4..19d4eba9596 100644 --- a/cli/commands/build-bundle-webpack/CHANGELOG.md +++ b/cli/commands/build-bundle-webpack/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/cli-command-build-bundle-webpack + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/cli-command-build-bundle-webpack diff --git a/cli/commands/build-bundle-webpack/package.json b/cli/commands/build-bundle-webpack/package.json index a7047a54b22..f10af3cb5d3 100644 --- a/cli/commands/build-bundle-webpack/package.json +++ b/cli/commands/build-bundle-webpack/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-command-build-bundle-webpack", - "version": "4.0.3", + "version": "4.0.4", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/build-circular-deps/CHANGELOG.md b/cli/commands/build-circular-deps/CHANGELOG.md index 964766a27e7..d73f5de1bd3 100644 --- a/cli/commands/build-circular-deps/CHANGELOG.md +++ b/cli/commands/build-circular-deps/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/cli-command-build-circular-deps + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/cli-command-build-circular-deps diff --git a/cli/commands/build-circular-deps/package.json b/cli/commands/build-circular-deps/package.json index dc2edfed469..3138a0544d2 100644 --- a/cli/commands/build-circular-deps/package.json +++ b/cli/commands/build-circular-deps/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-command-build-circular-deps", - "version": "4.0.3", + "version": "4.0.4", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/build-clear/CHANGELOG.md b/cli/commands/build-clear/CHANGELOG.md index 81dabdcca64..3e84df5319c 100644 --- a/cli/commands/build-clear/CHANGELOG.md +++ b/cli/commands/build-clear/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/cli-command-build-clear + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/cli-command-build-clear diff --git a/cli/commands/build-clear/package.json b/cli/commands/build-clear/package.json index c182c00b21e..17a2f69791f 100644 --- a/cli/commands/build-clear/package.json +++ b/cli/commands/build-clear/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-command-build-clear", - "version": "4.0.3", + "version": "4.0.4", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/build-distfiles/CHANGELOG.md b/cli/commands/build-distfiles/CHANGELOG.md index a752f459c41..6ab734d224d 100644 --- a/cli/commands/build-distfiles/CHANGELOG.md +++ b/cli/commands/build-distfiles/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/cli-command-build-distfiles + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/cli-command-build-distfiles diff --git a/cli/commands/build-distfiles/package.json b/cli/commands/build-distfiles/package.json index 1f05276e346..88b2e69025c 100644 --- a/cli/commands/build-distfiles/package.json +++ b/cli/commands/build-distfiles/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-command-build-distfiles", - "version": "4.0.3", + "version": "4.0.4", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/build-diststats/CHANGELOG.md b/cli/commands/build-diststats/CHANGELOG.md index 5437be3952c..23dfeaaaf45 100644 --- a/cli/commands/build-diststats/CHANGELOG.md +++ b/cli/commands/build-diststats/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/cli-command-build-diststats + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/cli-command-build-diststats diff --git a/cli/commands/build-diststats/package.json b/cli/commands/build-diststats/package.json index ab22002247f..102ddaf1d5e 100644 --- a/cli/commands/build-diststats/package.json +++ b/cli/commands/build-diststats/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-command-build-diststats", - "version": "4.0.3", + "version": "4.0.4", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/build-eslint/CHANGELOG.md b/cli/commands/build-eslint/CHANGELOG.md index 9d893bfd36c..9d8cf6f90b2 100644 --- a/cli/commands/build-eslint/CHANGELOG.md +++ b/cli/commands/build-eslint/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/cli-command-build-eslint + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/cli-command-build-eslint diff --git a/cli/commands/build-eslint/package.json b/cli/commands/build-eslint/package.json index 3c3ee2cf7dd..e5251cb8f8c 100644 --- a/cli/commands/build-eslint/package.json +++ b/cli/commands/build-eslint/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-command-build-eslint", - "version": "4.0.3", + "version": "4.0.4", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/build-prettier/CHANGELOG.md b/cli/commands/build-prettier/CHANGELOG.md index f4ca8df7541..1dac2f96036 100644 --- a/cli/commands/build-prettier/CHANGELOG.md +++ b/cli/commands/build-prettier/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/cli-command-build-prettier + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/cli-command-build-prettier diff --git a/cli/commands/build-prettier/package.json b/cli/commands/build-prettier/package.json index 21b77438a8e..4d974acd8cb 100644 --- a/cli/commands/build-prettier/package.json +++ b/cli/commands/build-prettier/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-command-build-prettier", - "version": "4.0.3", + "version": "4.0.4", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/build-tsc/CHANGELOG.md b/cli/commands/build-tsc/CHANGELOG.md index d2e2b33b933..92b3774b9b3 100644 --- a/cli/commands/build-tsc/CHANGELOG.md +++ b/cli/commands/build-tsc/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/cli-command-build-tsc + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/cli-command-build-tsc diff --git a/cli/commands/build-tsc/package.json b/cli/commands/build-tsc/package.json index e29633ea0c7..c0dfc039677 100644 --- a/cli/commands/build-tsc/package.json +++ b/cli/commands/build-tsc/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-command-build-tsc", - "version": "4.0.3", + "version": "4.0.4", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/build/CHANGELOG.md b/cli/commands/build/CHANGELOG.md index fbb2125f613..87e216cceaa 100644 --- a/cli/commands/build/CHANGELOG.md +++ b/cli/commands/build/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/cli-command-build + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/cli-command-build diff --git a/cli/commands/build/package.json b/cli/commands/build/package.json index c09c84ca7f6..2f2947575c5 100644 --- a/cli/commands/build/package.json +++ b/cli/commands/build/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-command-build", - "version": "4.0.3", + "version": "4.0.4", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/create-bundle/CHANGELOG.md b/cli/commands/create-bundle/CHANGELOG.md index bf7d7776fc4..302854a424e 100644 --- a/cli/commands/create-bundle/CHANGELOG.md +++ b/cli/commands/create-bundle/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/cli-command-create-bundle + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/cli-command-create-bundle diff --git a/cli/commands/create-bundle/package.json b/cli/commands/create-bundle/package.json index a6d0acd3380..691f6210487 100644 --- a/cli/commands/create-bundle/package.json +++ b/cli/commands/create-bundle/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-command-create-bundle", - "version": "4.0.3", + "version": "4.0.4", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/create-effect/CHANGELOG.md b/cli/commands/create-effect/CHANGELOG.md index df22a52fc83..41c2cc49cb8 100644 --- a/cli/commands/create-effect/CHANGELOG.md +++ b/cli/commands/create-effect/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/cli-command-create-effect + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/cli-command-create-effect diff --git a/cli/commands/create-effect/package.json b/cli/commands/create-effect/package.json index c5e0a4e0344..ad517e69466 100644 --- a/cli/commands/create-effect/package.json +++ b/cli/commands/create-effect/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-command-create-effect", - "version": "4.0.3", + "version": "4.0.4", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/create-interaction/CHANGELOG.md b/cli/commands/create-interaction/CHANGELOG.md index fa375ccdfcf..d145a8f1c90 100644 --- a/cli/commands/create-interaction/CHANGELOG.md +++ b/cli/commands/create-interaction/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/cli-command-create-interaction + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/cli-command-create-interaction diff --git a/cli/commands/create-interaction/package.json b/cli/commands/create-interaction/package.json index cf4a2f9dcd9..3a74ddc4313 100644 --- a/cli/commands/create-interaction/package.json +++ b/cli/commands/create-interaction/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-command-create-interaction", - "version": "4.0.3", + "version": "4.0.4", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/create-palette/CHANGELOG.md b/cli/commands/create-palette/CHANGELOG.md index e96939d23c7..d08bb8fc850 100644 --- a/cli/commands/create-palette/CHANGELOG.md +++ b/cli/commands/create-palette/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/cli-command-create-palette + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/cli-command-create-palette diff --git a/cli/commands/create-palette/package.json b/cli/commands/create-palette/package.json index c09d4be8205..cd8cdd920af 100644 --- a/cli/commands/create-palette/package.json +++ b/cli/commands/create-palette/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-command-create-palette", - "version": "4.0.3", + "version": "4.0.4", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/create-path/CHANGELOG.md b/cli/commands/create-path/CHANGELOG.md index 89b826a2102..60e299f1fe5 100644 --- a/cli/commands/create-path/CHANGELOG.md +++ b/cli/commands/create-path/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/cli-command-create-path + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/cli-command-create-path diff --git a/cli/commands/create-path/package.json b/cli/commands/create-path/package.json index 1ff97947c63..2ff088e5d7c 100644 --- a/cli/commands/create-path/package.json +++ b/cli/commands/create-path/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-command-create-path", - "version": "4.0.3", + "version": "4.0.4", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/create-plugin/CHANGELOG.md b/cli/commands/create-plugin/CHANGELOG.md index aae90644c51..8e1cb8f5f33 100644 --- a/cli/commands/create-plugin/CHANGELOG.md +++ b/cli/commands/create-plugin/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/cli-command-create-plugin + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/cli-command-create-plugin diff --git a/cli/commands/create-plugin/package.json b/cli/commands/create-plugin/package.json index 23b2237b085..1d8ded095ac 100644 --- a/cli/commands/create-plugin/package.json +++ b/cli/commands/create-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-command-create-plugin", - "version": "4.0.3", + "version": "4.0.4", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/create-preset/CHANGELOG.md b/cli/commands/create-preset/CHANGELOG.md index f87fdbffff0..ca0fc1b8489 100644 --- a/cli/commands/create-preset/CHANGELOG.md +++ b/cli/commands/create-preset/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/cli-command-create-preset + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/cli-command-create-preset diff --git a/cli/commands/create-preset/package.json b/cli/commands/create-preset/package.json index 527ae65de8c..f0cb2f598f3 100644 --- a/cli/commands/create-preset/package.json +++ b/cli/commands/create-preset/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-command-create-preset", - "version": "4.0.3", + "version": "4.0.4", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/create-shape/CHANGELOG.md b/cli/commands/create-shape/CHANGELOG.md index c56364baeac..6e4d2177750 100644 --- a/cli/commands/create-shape/CHANGELOG.md +++ b/cli/commands/create-shape/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/cli-command-create-shape + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/cli-command-create-shape diff --git a/cli/commands/create-shape/package.json b/cli/commands/create-shape/package.json index 8d9ff07b00e..401bfa1cd54 100644 --- a/cli/commands/create-shape/package.json +++ b/cli/commands/create-shape/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-command-create-shape", - "version": "4.0.3", + "version": "4.0.4", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/create-updater/CHANGELOG.md b/cli/commands/create-updater/CHANGELOG.md index e9dc5c207b7..41e0f273aab 100644 --- a/cli/commands/create-updater/CHANGELOG.md +++ b/cli/commands/create-updater/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/cli-command-create-updater + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/cli-command-create-updater diff --git a/cli/commands/create-updater/package.json b/cli/commands/create-updater/package.json index 88f69b37fac..49d22b2adc8 100644 --- a/cli/commands/create-updater/package.json +++ b/cli/commands/create-updater/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-command-create-updater", - "version": "4.0.3", + "version": "4.0.4", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/create-utils/CHANGELOG.md b/cli/commands/create-utils/CHANGELOG.md index 931aa552f28..38000214ac8 100644 --- a/cli/commands/create-utils/CHANGELOG.md +++ b/cli/commands/create-utils/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/cli-create-utils + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/cli-create-utils diff --git a/cli/commands/create-utils/package.json b/cli/commands/create-utils/package.json index 89937d60152..b70d12a959e 100644 --- a/cli/commands/create-utils/package.json +++ b/cli/commands/create-utils/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-create-utils", - "version": "4.0.3", + "version": "4.0.4", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/create/CHANGELOG.md b/cli/commands/create/CHANGELOG.md index 7da2d2f15dd..f696512c7a4 100644 --- a/cli/commands/create/CHANGELOG.md +++ b/cli/commands/create/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/cli-command-create + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/cli-command-create diff --git a/cli/commands/create/package.json b/cli/commands/create/package.json index b09ed35586f..7adf08ab1a6 100644 --- a/cli/commands/create/package.json +++ b/cli/commands/create/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-command-create", - "version": "4.0.3", + "version": "4.0.4", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/packages/cli-build/CHANGELOG.md b/cli/packages/cli-build/CHANGELOG.md index f44d3575247..3b79e742e5a 100644 --- a/cli/packages/cli-build/CHANGELOG.md +++ b/cli/packages/cli-build/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/cli-build + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/cli-build diff --git a/cli/packages/cli-build/package.json b/cli/packages/cli-build/package.json index 31f193ac334..aaf639ac6d9 100644 --- a/cli/packages/cli-build/package.json +++ b/cli/packages/cli-build/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-build", - "version": "4.0.3", + "version": "4.0.4", "license": "MIT", "type": "module", "bin": { diff --git a/cli/packages/cli-create/CHANGELOG.md b/cli/packages/cli-create/CHANGELOG.md index d70affa4f8d..0b017f9a320 100644 --- a/cli/packages/cli-create/CHANGELOG.md +++ b/cli/packages/cli-create/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/cli-create + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/cli-create diff --git a/cli/packages/cli-create/package.json b/cli/packages/cli-create/package.json index 28d29bc0e28..d44cd9442ae 100644 --- a/cli/packages/cli-create/package.json +++ b/cli/packages/cli-create/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-create", - "version": "4.0.3", + "version": "4.0.4", "license": "MIT", "type": "module", "bin": { diff --git a/cli/packages/nx-plugin/CHANGELOG.md b/cli/packages/nx-plugin/CHANGELOG.md index a2973e81448..06beef0bd7a 100644 --- a/cli/packages/nx-plugin/CHANGELOG.md +++ b/cli/packages/nx-plugin/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/cli-nx-plugin + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/cli-nx-plugin diff --git a/cli/packages/nx-plugin/package.json b/cli/packages/nx-plugin/package.json index ef84472b3eb..5ee1b0b9638 100644 --- a/cli/packages/nx-plugin/package.json +++ b/cli/packages/nx-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-nx-plugin", - "version": "4.0.3", + "version": "4.0.4", "license": "MIT", "type": "module", "repository": { diff --git a/cli/utils/browserslist-config/CHANGELOG.md b/cli/utils/browserslist-config/CHANGELOG.md index 27b55edeff1..d680f502718 100644 --- a/cli/utils/browserslist-config/CHANGELOG.md +++ b/cli/utils/browserslist-config/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/browserslist-config + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/browserslist-config diff --git a/cli/utils/browserslist-config/package.json b/cli/utils/browserslist-config/package.json index 8c8b290c805..138bd2b9b8c 100644 --- a/cli/utils/browserslist-config/package.json +++ b/cli/utils/browserslist-config/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/browserslist-config", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles default Browserslist configuration", "main": "dist/index.js", "license": "MIT", diff --git a/cli/utils/depcruise-config/CHANGELOG.md b/cli/utils/depcruise-config/CHANGELOG.md index 5c8597eaafe..99f56c3e840 100644 --- a/cli/utils/depcruise-config/CHANGELOG.md +++ b/cli/utils/depcruise-config/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/depcruise-config + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/depcruise-config diff --git a/cli/utils/depcruise-config/package.json b/cli/utils/depcruise-config/package.json index f359958123d..bdf64260c67 100644 --- a/cli/utils/depcruise-config/package.json +++ b/cli/utils/depcruise-config/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/depcruise-config", - "version": "4.0.3", + "version": "4.0.4", "private": false, "type": "module", "publishConfig": { diff --git a/cli/utils/eslint-config/CHANGELOG.md b/cli/utils/eslint-config/CHANGELOG.md index 843d8a989bb..623a34bc3bb 100644 --- a/cli/utils/eslint-config/CHANGELOG.md +++ b/cli/utils/eslint-config/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/eslint-config + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/eslint-config diff --git a/cli/utils/eslint-config/package.json b/cli/utils/eslint-config/package.json index 306ac83a941..7c72c935a8d 100644 --- a/cli/utils/eslint-config/package.json +++ b/cli/utils/eslint-config/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/eslint-config", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles default ESLint Configuration (ESLint 10 + Flat Config)", "type": "module", "main": "dist/eslint.config.js", diff --git a/cli/utils/prettier-config/CHANGELOG.md b/cli/utils/prettier-config/CHANGELOG.md index e6f9aebf2d9..8e189329f5f 100644 --- a/cli/utils/prettier-config/CHANGELOG.md +++ b/cli/utils/prettier-config/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/prettier-config + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/prettier-config diff --git a/cli/utils/prettier-config/package.json b/cli/utils/prettier-config/package.json index 039437fb379..ddf728499e0 100644 --- a/cli/utils/prettier-config/package.json +++ b/cli/utils/prettier-config/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/prettier-config", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles default Prettier Configuration", "main": "dist/index.cjs", "exports": { diff --git a/cli/utils/rollup-plugin/CHANGELOG.md b/cli/utils/rollup-plugin/CHANGELOG.md index 8a855c97829..cd10c187323 100644 --- a/cli/utils/rollup-plugin/CHANGELOG.md +++ b/cli/utils/rollup-plugin/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/rollup-plugin + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/rollup-plugin diff --git a/cli/utils/rollup-plugin/package.json b/cli/utils/rollup-plugin/package.json index 2e82741298e..cf428e64ecd 100644 --- a/cli/utils/rollup-plugin/package.json +++ b/cli/utils/rollup-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/rollup-plugin", - "version": "4.0.3", + "version": "4.0.4", "description": "Rollup build utilities for tsParticles", "private": false, "type": "module", diff --git a/cli/utils/tsconfig/CHANGELOG.md b/cli/utils/tsconfig/CHANGELOG.md index 0b597870864..580758820b5 100644 --- a/cli/utils/tsconfig/CHANGELOG.md +++ b/cli/utils/tsconfig/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/tsconfig + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/tsconfig diff --git a/cli/utils/tsconfig/package.json b/cli/utils/tsconfig/package.json index 5b2e48f02e2..4236cc10182 100644 --- a/cli/utils/tsconfig/package.json +++ b/cli/utils/tsconfig/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/tsconfig", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles default TypeScript Compiler Configuration", "license": "MIT", "repository": { diff --git a/cli/utils/webpack-config/CHANGELOG.md b/cli/utils/webpack-config/CHANGELOG.md index 4dbac19390f..6c4d2880cb8 100644 --- a/cli/utils/webpack-config/CHANGELOG.md +++ b/cli/utils/webpack-config/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/webpack-plugin + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/webpack-plugin diff --git a/cli/utils/webpack-config/package.json b/cli/utils/webpack-config/package.json index 5a0d290ca38..97f96beb710 100644 --- a/cli/utils/webpack-config/package.json +++ b/cli/utils/webpack-config/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/webpack-plugin", - "version": "4.0.3", + "version": "4.0.4", "type": "module", "main": "dist/webpack-tsparticles.js", "types": "dist/webpack-tsparticles.d.ts", diff --git a/demo/angular/CHANGELOG.md b/demo/angular/CHANGELOG.md index 4aaa022a6e1..39fe3a763d5 100644 --- a/demo/angular/CHANGELOG.md +++ b/demo/angular/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/angular-demo + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/angular-demo diff --git a/demo/angular/package.json b/demo/angular/package.json index ca9003523dd..97a65b33cfb 100644 --- a/demo/angular/package.json +++ b/demo/angular/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/angular-demo", - "version": "4.0.3", + "version": "4.0.4", "repository": { "type": "git", "url": "git+https://github.com/tsparticles/tsparticles.git", diff --git a/demo/astro/CHANGELOG.md b/demo/astro/CHANGELOG.md index 124e20b1efe..2a49398198c 100644 --- a/demo/astro/CHANGELOG.md +++ b/demo/astro/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/astro-demo + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/astro-demo diff --git a/demo/astro/package.json b/demo/astro/package.json index 918c6a7c26c..7c720d91459 100644 --- a/demo/astro/package.json +++ b/demo/astro/package.json @@ -1,7 +1,7 @@ { "name": "@tsparticles/astro-demo", "type": "module", - "version": "4.0.3", + "version": "4.0.4", "private": true, "repository": { "type": "git", diff --git a/demo/electron/CHANGELOG.md b/demo/electron/CHANGELOG.md index 0dc0c647155..9525dda8d52 100644 --- a/demo/electron/CHANGELOG.md +++ b/demo/electron/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/electron-demo + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) ### Bug Fixes diff --git a/demo/electron/package.json b/demo/electron/package.json index c6af36ed72e..e39323eb6e5 100644 --- a/demo/electron/package.json +++ b/demo/electron/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/electron-demo", - "version": "4.0.3", + "version": "4.0.4", "description": "", "main": "app/index.cjs", "private": true, diff --git a/demo/ember/CHANGELOG.md b/demo/ember/CHANGELOG.md index 6def7c18140..c37ae9c016e 100644 --- a/demo/ember/CHANGELOG.md +++ b/demo/ember/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/ember-demo + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/ember-demo diff --git a/demo/ember/package.json b/demo/ember/package.json index 937cb7410fe..f21506c01cb 100644 --- a/demo/ember/package.json +++ b/demo/ember/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/ember-demo", - "version": "4.0.3", + "version": "4.0.4", "private": true, "description": "Ember demo for @tsparticles/ember", "repository": { diff --git a/demo/inferno/CHANGELOG.md b/demo/inferno/CHANGELOG.md index cd4df3eee63..8b1193505dc 100644 --- a/demo/inferno/CHANGELOG.md +++ b/demo/inferno/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/inferno-demo + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/inferno-demo diff --git a/demo/inferno/package.json b/demo/inferno/package.json index 48cbbdb1ace..d5d9cdb2fb0 100644 --- a/demo/inferno/package.json +++ b/demo/inferno/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/inferno-demo", - "version": "4.0.3", + "version": "4.0.4", "private": true, "description": "> TODO: description", "main": "index.js", diff --git a/demo/ionic/CHANGELOG.md b/demo/ionic/CHANGELOG.md index f1c34c8f335..512128b594f 100644 --- a/demo/ionic/CHANGELOG.md +++ b/demo/ionic/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/ionic-demo + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) ### Bug Fixes diff --git a/demo/ionic/package.json b/demo/ionic/package.json index 7283b59733b..777be268488 100644 --- a/demo/ionic/package.json +++ b/demo/ionic/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/ionic-demo", - "version": "4.0.3", + "version": "4.0.4", "author": "Matteo Bruni ", "homepage": "https://particles.js.org", "repository": { diff --git a/demo/jquery/CHANGELOG.md b/demo/jquery/CHANGELOG.md index ac00e2ce24e..bab799f3a7c 100644 --- a/demo/jquery/CHANGELOG.md +++ b/demo/jquery/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/jquery-demo + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/jquery-demo diff --git a/demo/jquery/package.json b/demo/jquery/package.json index 22f2e596f7c..d5e1ad37472 100644 --- a/demo/jquery/package.json +++ b/demo/jquery/package.json @@ -1,7 +1,7 @@ { "name": "@tsparticles/jquery-demo", "private": true, - "version": "4.0.3", + "version": "4.0.4", "description": "> TODO: description", "author": "Matteo Bruni ", "homepage": "https://particles.js.org", diff --git a/demo/lit/CHANGELOG.md b/demo/lit/CHANGELOG.md index 2ff92accf37..dd8760ae452 100644 --- a/demo/lit/CHANGELOG.md +++ b/demo/lit/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/lit-demo + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/lit-demo diff --git a/demo/lit/package.json b/demo/lit/package.json index 5ae061c4aa1..617f5bad6a6 100644 --- a/demo/lit/package.json +++ b/demo/lit/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/lit-demo", - "version": "4.0.3", + "version": "4.0.4", "private": true, "description": "A simple web component", "type": "module", diff --git a/demo/nextjs-legacy/CHANGELOG.md b/demo/nextjs-legacy/CHANGELOG.md index 4ce163ea887..decfa698c1c 100644 --- a/demo/nextjs-legacy/CHANGELOG.md +++ b/demo/nextjs-legacy/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/nextjs-legacy-demo + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/nextjs-legacy-demo diff --git a/demo/nextjs-legacy/package.json b/demo/nextjs-legacy/package.json index 62e322b6c9a..9651fc9cb2d 100644 --- a/demo/nextjs-legacy/package.json +++ b/demo/nextjs-legacy/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/nextjs-legacy-demo", - "version": "4.0.3", + "version": "4.0.4", "private": true, "repository": { "type": "git", diff --git a/demo/nextjs/CHANGELOG.md b/demo/nextjs/CHANGELOG.md index ada14b2a9ba..389b28d3ef2 100644 --- a/demo/nextjs/CHANGELOG.md +++ b/demo/nextjs/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/nextjs-demo + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/nextjs-demo diff --git a/demo/nextjs/package.json b/demo/nextjs/package.json index cdab498b923..203acd05914 100644 --- a/demo/nextjs/package.json +++ b/demo/nextjs/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/nextjs-demo", - "version": "4.0.3", + "version": "4.0.4", "private": true, "repository": { "type": "git", diff --git a/demo/nuxt2/CHANGELOG.md b/demo/nuxt2/CHANGELOG.md index fa8c557b9a1..133ad55faa8 100644 --- a/demo/nuxt2/CHANGELOG.md +++ b/demo/nuxt2/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/nuxt2-demo + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/nuxt2-demo diff --git a/demo/nuxt2/package.json b/demo/nuxt2/package.json index 38241e21852..985df10d8b8 100644 --- a/demo/nuxt2/package.json +++ b/demo/nuxt2/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/nuxt2-demo", - "version": "4.0.3", + "version": "4.0.4", "private": true, "repository": { "type": "git", diff --git a/demo/nuxt3/CHANGELOG.md b/demo/nuxt3/CHANGELOG.md index bbd122919cb..3f7f0ee23be 100644 --- a/demo/nuxt3/CHANGELOG.md +++ b/demo/nuxt3/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/nuxt3-demo + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) ### Bug Fixes diff --git a/demo/nuxt3/package.json b/demo/nuxt3/package.json index ca9f92d0773..8ffe73997e7 100644 --- a/demo/nuxt3/package.json +++ b/demo/nuxt3/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/nuxt3-demo", - "version": "4.0.3", + "version": "4.0.4", "private": true, "type": "module", "repository": { diff --git a/demo/nuxt4/CHANGELOG.md b/demo/nuxt4/CHANGELOG.md index d75cef5ffcf..2adcdc94cb5 100644 --- a/demo/nuxt4/CHANGELOG.md +++ b/demo/nuxt4/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/nuxt4-demo + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) ### Bug Fixes diff --git a/demo/nuxt4/package.json b/demo/nuxt4/package.json index 4fc059ece5c..6c3c547b55c 100644 --- a/demo/nuxt4/package.json +++ b/demo/nuxt4/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/nuxt4-demo", - "version": "4.0.3", + "version": "4.0.4", "private": true, "type": "module", "repository": { diff --git a/demo/preact/CHANGELOG.md b/demo/preact/CHANGELOG.md index 1dc6276a7a8..758093df6e3 100644 --- a/demo/preact/CHANGELOG.md +++ b/demo/preact/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/preact-demo + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/preact-demo diff --git a/demo/preact/package.json b/demo/preact/package.json index ee9c5fab0e1..9194a95c26a 100644 --- a/demo/preact/package.json +++ b/demo/preact/package.json @@ -1,7 +1,7 @@ { "name": "@tsparticles/preact-demo", "private": true, - "version": "4.0.3", + "version": "4.0.4", "type": "module", "description": "> TODO: description", "author": "Matteo Bruni ", diff --git a/demo/qwik/CHANGELOG.md b/demo/qwik/CHANGELOG.md index 561e1544a55..be62d5ab28e 100644 --- a/demo/qwik/CHANGELOG.md +++ b/demo/qwik/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/qwik-demo + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/qwik-demo diff --git a/demo/qwik/package.json b/demo/qwik/package.json index 5262f5ce631..4a753fc2f49 100644 --- a/demo/qwik/package.json +++ b/demo/qwik/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/qwik-demo", - "version": "4.0.3", + "version": "4.0.4", "private": true, "type": "module", "repository": { diff --git a/demo/react/CHANGELOG.md b/demo/react/CHANGELOG.md index a66b1f9fa10..3492e9928df 100644 --- a/demo/react/CHANGELOG.md +++ b/demo/react/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/react-demo + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/react-demo diff --git a/demo/react/package.json b/demo/react/package.json index 054dcb55cec..940c8bb05e1 100644 --- a/demo/react/package.json +++ b/demo/react/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/react-demo", - "version": "4.0.3", + "version": "4.0.4", "private": true, "type": "module", "repository": { diff --git a/demo/riot/CHANGELOG.md b/demo/riot/CHANGELOG.md index 3b74b743302..ea31ea021ea 100644 --- a/demo/riot/CHANGELOG.md +++ b/demo/riot/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/riot-demo + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/riot-demo diff --git a/demo/riot/package.json b/demo/riot/package.json index 857833d14b6..4cda5cb05c9 100644 --- a/demo/riot/package.json +++ b/demo/riot/package.json @@ -1,7 +1,7 @@ { "name": "@tsparticles/riot-demo", "private": true, - "version": "4.0.3", + "version": "4.0.4", "description": "", "main": "index.js", "repository": { diff --git a/demo/solid/CHANGELOG.md b/demo/solid/CHANGELOG.md index 680ecfaf579..6334f5698d9 100644 --- a/demo/solid/CHANGELOG.md +++ b/demo/solid/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/solid-demo + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) ### Bug Fixes diff --git a/demo/solid/package.json b/demo/solid/package.json index aa7998a3cd1..33e046608df 100644 --- a/demo/solid/package.json +++ b/demo/solid/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/solid-demo", - "version": "4.0.3", + "version": "4.0.4", "private": true, "description": "", "repository": { diff --git a/demo/svelte-kit/CHANGELOG.md b/demo/svelte-kit/CHANGELOG.md index 6f53ea4a93e..5bc1e8df90e 100644 --- a/demo/svelte-kit/CHANGELOG.md +++ b/demo/svelte-kit/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/svelte-kit-demo + + + + + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/svelte-kit-demo diff --git a/demo/svelte-kit/package.json b/demo/svelte-kit/package.json index 5ef9e660d9a..a659767f694 100644 --- a/demo/svelte-kit/package.json +++ b/demo/svelte-kit/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/svelte-kit-demo", - "version": "4.0.3", + "version": "4.0.4", "private": true, "repository": { "type": "git", diff --git a/demo/svelte/CHANGELOG.md b/demo/svelte/CHANGELOG.md index f40347e8444..5e3b584ab2a 100644 --- a/demo/svelte/CHANGELOG.md +++ b/demo/svelte/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/svelte-demo + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/svelte-demo diff --git a/demo/svelte/package.json b/demo/svelte/package.json index 336f00df7a8..5ea4afa04c6 100644 --- a/demo/svelte/package.json +++ b/demo/svelte/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/svelte-demo", - "version": "4.0.3", + "version": "4.0.4", "private": true, "repository": { "type": "git", diff --git a/demo/vanilla/CHANGELOG.md b/demo/vanilla/CHANGELOG.md index c8c6d66ee91..45a68c20dc9 100644 --- a/demo/vanilla/CHANGELOG.md +++ b/demo/vanilla/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/vanilla-demo + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) ### Bug Fixes diff --git a/demo/vanilla/package.json b/demo/vanilla/package.json index c3801105076..1e210606def 100644 --- a/demo/vanilla/package.json +++ b/demo/vanilla/package.json @@ -1,7 +1,7 @@ { "name": "@tsparticles/vanilla-demo", "private": true, - "version": "4.0.3", + "version": "4.0.4", "description": "> TODO: description", "author": "Matteo Bruni ", "homepage": "https://particles.js.org", diff --git a/demo/vanilla_new/CHANGELOG.md b/demo/vanilla_new/CHANGELOG.md index c296f82dfad..3dd1f8a5de0 100644 --- a/demo/vanilla_new/CHANGELOG.md +++ b/demo/vanilla_new/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/vanilla-new-demo + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) ### Bug Fixes diff --git a/demo/vanilla_new/package.json b/demo/vanilla_new/package.json index 62cc4282149..711f765b6b4 100644 --- a/demo/vanilla_new/package.json +++ b/demo/vanilla_new/package.json @@ -1,7 +1,7 @@ { "name": "@tsparticles/vanilla-new-demo", "private": true, - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles Demo Website", "main": "index.html", "scripts": { diff --git a/demo/vite/CHANGELOG.md b/demo/vite/CHANGELOG.md index f0fdfbb599d..92deb51c20b 100644 --- a/demo/vite/CHANGELOG.md +++ b/demo/vite/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/vite-demo + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/vite-demo diff --git a/demo/vite/package.json b/demo/vite/package.json index da6df669caf..31c19b89f02 100644 --- a/demo/vite/package.json +++ b/demo/vite/package.json @@ -1,7 +1,7 @@ { "name": "@tsparticles/vite-demo", "private": true, - "version": "4.0.3", + "version": "4.0.4", "type": "module", "repository": { "type": "git", diff --git a/demo/vue2/CHANGELOG.md b/demo/vue2/CHANGELOG.md index 253c522166f..07c827b83bd 100644 --- a/demo/vue2/CHANGELOG.md +++ b/demo/vue2/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/vue2-demo + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/vue2-demo diff --git a/demo/vue2/package.json b/demo/vue2/package.json index 9be815b6d83..f04acb0a969 100644 --- a/demo/vue2/package.json +++ b/demo/vue2/package.json @@ -1,7 +1,7 @@ { "name": "@tsparticles/vue2-demo", "private": true, - "version": "4.0.3", + "version": "4.0.4", "description": "VueJS Demo", "author": "Matteo Bruni ", "homepage": "https://particles.js.org", diff --git a/demo/vue3/CHANGELOG.md b/demo/vue3/CHANGELOG.md index df963e12073..9279f492472 100644 --- a/demo/vue3/CHANGELOG.md +++ b/demo/vue3/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/vue3-demo + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/vue3-demo diff --git a/demo/vue3/package.json b/demo/vue3/package.json index dbeca0a5f0f..ec048b92070 100644 --- a/demo/vue3/package.json +++ b/demo/vue3/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/vue3-demo", - "version": "4.0.3", + "version": "4.0.4", "private": true, "type": "module", "repository": { diff --git a/demo/webcomponents/CHANGELOG.md b/demo/webcomponents/CHANGELOG.md index 4a9baaad97a..2b9928716cb 100644 --- a/demo/webcomponents/CHANGELOG.md +++ b/demo/webcomponents/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/webcomponents-demo + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/webcomponents-demo diff --git a/demo/webcomponents/package.json b/demo/webcomponents/package.json index eb7de395a44..1616df6f057 100644 --- a/demo/webcomponents/package.json +++ b/demo/webcomponents/package.json @@ -1,7 +1,7 @@ { "name": "@tsparticles/webcomponents-demo", "private": true, - "version": "4.0.3", + "version": "4.0.4", "description": "> TODO: description", "author": "Matteo Bruni ", "homepage": "https://particles.js.org", diff --git a/effects/bubble/CHANGELOG.md b/effects/bubble/CHANGELOG.md index 2b9d1ad3862..374a55ce02f 100644 --- a/effects/bubble/CHANGELOG.md +++ b/effects/bubble/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/effect-bubble + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/effect-bubble diff --git a/effects/bubble/package.dist.json b/effects/bubble/package.dist.json index 7bf3dadd293..7d1af9a4a0d 100644 --- a/effects/bubble/package.dist.json +++ b/effects/bubble/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/effect-bubble", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles bubble effect", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/effects/bubble/package.json b/effects/bubble/package.json index 7466c2dff5c..12008f8ecb1 100644 --- a/effects/bubble/package.json +++ b/effects/bubble/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/effect-bubble", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles bubble effect", "homepage": "https://particles.js.org", "scripts": { diff --git a/effects/filter/CHANGELOG.md b/effects/filter/CHANGELOG.md index ec9b29447d6..3b9432ffcdd 100644 --- a/effects/filter/CHANGELOG.md +++ b/effects/filter/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/effect-filter + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/effect-filter diff --git a/effects/filter/package.dist.json b/effects/filter/package.dist.json index c82fd9134eb..22bd4a52594 100644 --- a/effects/filter/package.dist.json +++ b/effects/filter/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/effect-filter", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles filter effect", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/effects/filter/package.json b/effects/filter/package.json index b80a1aab8a6..c2cda0e5feb 100644 --- a/effects/filter/package.json +++ b/effects/filter/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/effect-filter", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles filter effect", "homepage": "https://particles.js.org", "scripts": { diff --git a/effects/particles/CHANGELOG.md b/effects/particles/CHANGELOG.md index 078816cbc56..926c5e207ac 100644 --- a/effects/particles/CHANGELOG.md +++ b/effects/particles/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/effect-particles + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/effect-particles diff --git a/effects/particles/package.dist.json b/effects/particles/package.dist.json index fbaee972b15..ec329f55700 100644 --- a/effects/particles/package.dist.json +++ b/effects/particles/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/effect-particles", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles particles effect", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/effects/particles/package.json b/effects/particles/package.json index bc1c6a4e239..08eee5b1a5d 100644 --- a/effects/particles/package.json +++ b/effects/particles/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/effect-particles", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles particles effect", "homepage": "https://particles.js.org", "scripts": { diff --git a/effects/shadow/CHANGELOG.md b/effects/shadow/CHANGELOG.md index 3e85cfb27a9..0a1ae7dc7ed 100644 --- a/effects/shadow/CHANGELOG.md +++ b/effects/shadow/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/effect-shadow + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/effect-shadow diff --git a/effects/shadow/package.dist.json b/effects/shadow/package.dist.json index 3e5415e708c..17fc5f75855 100644 --- a/effects/shadow/package.dist.json +++ b/effects/shadow/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/effect-shadow", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles shadow effect", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/effects/shadow/package.json b/effects/shadow/package.json index 419462368a6..0e68475e493 100644 --- a/effects/shadow/package.json +++ b/effects/shadow/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/effect-shadow", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles shadow effect", "homepage": "https://particles.js.org", "scripts": { diff --git a/effects/trail/CHANGELOG.md b/effects/trail/CHANGELOG.md index b775fb5f946..df22afe3ac9 100644 --- a/effects/trail/CHANGELOG.md +++ b/effects/trail/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/effect-trail + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/effect-trail diff --git a/effects/trail/package.dist.json b/effects/trail/package.dist.json index 665591ac383..3d4be81f76e 100644 --- a/effects/trail/package.dist.json +++ b/effects/trail/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/effect-trail", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles trail effect", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/effects/trail/package.json b/effects/trail/package.json index 8afd9afc587..e6bc7c3e1e1 100644 --- a/effects/trail/package.json +++ b/effects/trail/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/effect-trail", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles trail effect", "homepage": "https://particles.js.org", "scripts": { diff --git a/engine/CHANGELOG.md b/engine/CHANGELOG.md index 79bc606829b..acf406e3184 100644 --- a/engine/CHANGELOG.md +++ b/engine/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/engine + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/engine diff --git a/engine/package.dist.json b/engine/package.dist.json index 1ed2036d005..ecbd05396be 100644 --- a/engine/package.dist.json +++ b/engine/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/engine", - "version": "4.0.3", + "version": "4.0.4", "description": "Easily create highly customizable particle, confetti and fireworks 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.", "homepage": "https://particles.js.org", "scripts": { diff --git a/engine/package.json b/engine/package.json index 815ee8d5430..e2f5b3b2f25 100644 --- a/engine/package.json +++ b/engine/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/engine", - "version": "4.0.3", + "version": "4.0.4", "description": "Easily create highly customizable particle, confetti and fireworks 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.", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/attract/CHANGELOG.md b/interactions/external/attract/CHANGELOG.md index 97ec92e300b..b72281faa08 100644 --- a/interactions/external/attract/CHANGELOG.md +++ b/interactions/external/attract/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/interaction-external-attract + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/interaction-external-attract diff --git a/interactions/external/attract/package.dist.json b/interactions/external/attract/package.dist.json index 9040d7e6697..0ed5ead6234 100644 --- a/interactions/external/attract/package.dist.json +++ b/interactions/external/attract/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-attract", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles attract external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-interactivity": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-interactivity": "4.0.4" } } diff --git a/interactions/external/attract/package.json b/interactions/external/attract/package.json index 3c1a66c79d8..bffd4c72ad6 100644 --- a/interactions/external/attract/package.json +++ b/interactions/external/attract/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-attract", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles attract external interaction", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/bounce/CHANGELOG.md b/interactions/external/bounce/CHANGELOG.md index 9ef1545f14f..914e2ffd4e7 100644 --- a/interactions/external/bounce/CHANGELOG.md +++ b/interactions/external/bounce/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/interaction-external-bounce + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/interaction-external-bounce diff --git a/interactions/external/bounce/package.dist.json b/interactions/external/bounce/package.dist.json index 38e4123a486..855fa0afbea 100644 --- a/interactions/external/bounce/package.dist.json +++ b/interactions/external/bounce/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-bounce", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles bounce external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-interactivity": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-interactivity": "4.0.4" } } diff --git a/interactions/external/bounce/package.json b/interactions/external/bounce/package.json index 2049fde5c9a..a8fa20c74ac 100644 --- a/interactions/external/bounce/package.json +++ b/interactions/external/bounce/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-bounce", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles bounce external interaction", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/bubble/CHANGELOG.md b/interactions/external/bubble/CHANGELOG.md index 8e6f719f726..89fcc0fe6bd 100644 --- a/interactions/external/bubble/CHANGELOG.md +++ b/interactions/external/bubble/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/interaction-external-bubble + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/interaction-external-bubble diff --git a/interactions/external/bubble/package.dist.json b/interactions/external/bubble/package.dist.json index 476245a339c..fced12a02ec 100644 --- a/interactions/external/bubble/package.dist.json +++ b/interactions/external/bubble/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-bubble", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles bubble external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-interactivity": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-interactivity": "4.0.4" } } diff --git a/interactions/external/bubble/package.json b/interactions/external/bubble/package.json index 4cc4e43a3d3..033abc32fc1 100644 --- a/interactions/external/bubble/package.json +++ b/interactions/external/bubble/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-bubble", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles bubble external interaction", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/cannon/CHANGELOG.md b/interactions/external/cannon/CHANGELOG.md index 6e7510b9a2a..18dd736d2dc 100644 --- a/interactions/external/cannon/CHANGELOG.md +++ b/interactions/external/cannon/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/interaction-external-cannon + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/interaction-external-cannon diff --git a/interactions/external/cannon/package.dist.json b/interactions/external/cannon/package.dist.json index 2bae386431b..3c2aa74598a 100644 --- a/interactions/external/cannon/package.dist.json +++ b/interactions/external/cannon/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-cannon", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles cannon external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-interactivity": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-interactivity": "4.0.4" } } diff --git a/interactions/external/cannon/package.json b/interactions/external/cannon/package.json index e51cd9225ad..327f196c8a7 100644 --- a/interactions/external/cannon/package.json +++ b/interactions/external/cannon/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-cannon", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles cannon external interaction", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/connect/CHANGELOG.md b/interactions/external/connect/CHANGELOG.md index 68691f9c6e5..f15786c4ba9 100644 --- a/interactions/external/connect/CHANGELOG.md +++ b/interactions/external/connect/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/interaction-external-connect + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/interaction-external-connect diff --git a/interactions/external/connect/package.dist.json b/interactions/external/connect/package.dist.json index c2c5a3209b0..d4bb044df2e 100644 --- a/interactions/external/connect/package.dist.json +++ b/interactions/external/connect/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-connect", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles connect external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,10 +97,10 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-interactivity": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-interactivity": "4.0.4" }, "dependencies": { - "@tsparticles/canvas-utils": "4.0.3" + "@tsparticles/canvas-utils": "4.0.4" } } diff --git a/interactions/external/connect/package.json b/interactions/external/connect/package.json index 379a63f4b04..7ec15b40124 100644 --- a/interactions/external/connect/package.json +++ b/interactions/external/connect/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-connect", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles connect external interaction", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/destroy/CHANGELOG.md b/interactions/external/destroy/CHANGELOG.md index 664fbbf5a75..c96126e7a00 100644 --- a/interactions/external/destroy/CHANGELOG.md +++ b/interactions/external/destroy/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/interaction-external-destroy + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/interaction-external-destroy diff --git a/interactions/external/destroy/package.dist.json b/interactions/external/destroy/package.dist.json index 7107658b208..5f096bd3adf 100644 --- a/interactions/external/destroy/package.dist.json +++ b/interactions/external/destroy/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-destroy", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles destroy external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-interactivity": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-interactivity": "4.0.4" } } diff --git a/interactions/external/destroy/package.json b/interactions/external/destroy/package.json index 31bf97e7a84..3789d73a889 100644 --- a/interactions/external/destroy/package.json +++ b/interactions/external/destroy/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-destroy", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles destroy external interaction", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/drag/CHANGELOG.md b/interactions/external/drag/CHANGELOG.md index 2cae6c5394f..d9a765119e7 100644 --- a/interactions/external/drag/CHANGELOG.md +++ b/interactions/external/drag/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/interaction-external-drag + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/interaction-external-drag diff --git a/interactions/external/drag/package.dist.json b/interactions/external/drag/package.dist.json index aa5cb25a1ca..b759316c213 100644 --- a/interactions/external/drag/package.dist.json +++ b/interactions/external/drag/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-drag", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles drag external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-interactivity": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-interactivity": "4.0.4" } } diff --git a/interactions/external/drag/package.json b/interactions/external/drag/package.json index c88a02973d0..4e0129b42ed 100644 --- a/interactions/external/drag/package.json +++ b/interactions/external/drag/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-drag", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles drag external interaction", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/grab/CHANGELOG.md b/interactions/external/grab/CHANGELOG.md index 68fb21f0e47..70345ee93d3 100644 --- a/interactions/external/grab/CHANGELOG.md +++ b/interactions/external/grab/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/interaction-external-grab + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/interaction-external-grab diff --git a/interactions/external/grab/package.dist.json b/interactions/external/grab/package.dist.json index e1e872ffd64..59207ee6881 100644 --- a/interactions/external/grab/package.dist.json +++ b/interactions/external/grab/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-grab", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles grab external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,10 +97,10 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-interactivity": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-interactivity": "4.0.4" }, "dependencies": { - "@tsparticles/canvas-utils": "4.0.3" + "@tsparticles/canvas-utils": "4.0.4" } } diff --git a/interactions/external/grab/package.json b/interactions/external/grab/package.json index 53fa2f94636..38e130ccde2 100644 --- a/interactions/external/grab/package.json +++ b/interactions/external/grab/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-grab", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles grab external interaction", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/parallax/CHANGELOG.md b/interactions/external/parallax/CHANGELOG.md index 532dad4236d..2ae7417b194 100644 --- a/interactions/external/parallax/CHANGELOG.md +++ b/interactions/external/parallax/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/interaction-external-parallax + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/interaction-external-parallax diff --git a/interactions/external/parallax/package.dist.json b/interactions/external/parallax/package.dist.json index 89c9b155409..6d16d121817 100644 --- a/interactions/external/parallax/package.dist.json +++ b/interactions/external/parallax/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-parallax", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles parallax external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-interactivity": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-interactivity": "4.0.4" } } diff --git a/interactions/external/parallax/package.json b/interactions/external/parallax/package.json index edfbb07f2bd..974ff14b8ec 100644 --- a/interactions/external/parallax/package.json +++ b/interactions/external/parallax/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-parallax", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles parallax external interaction", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/particle/CHANGELOG.md b/interactions/external/particle/CHANGELOG.md index 486ea2af051..2f5eabdaf02 100644 --- a/interactions/external/particle/CHANGELOG.md +++ b/interactions/external/particle/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/interaction-external-particle + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/interaction-external-particle diff --git a/interactions/external/particle/package.dist.json b/interactions/external/particle/package.dist.json index e591e9036a2..39c19163de9 100644 --- a/interactions/external/particle/package.dist.json +++ b/interactions/external/particle/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-particle", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles particle external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-interactivity": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-interactivity": "4.0.4" } } diff --git a/interactions/external/particle/package.json b/interactions/external/particle/package.json index 9c975a66f91..00940c6acff 100644 --- a/interactions/external/particle/package.json +++ b/interactions/external/particle/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-particle", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles particle external interaction", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/pause/CHANGELOG.md b/interactions/external/pause/CHANGELOG.md index ef11431ff3e..fb5847c2203 100644 --- a/interactions/external/pause/CHANGELOG.md +++ b/interactions/external/pause/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/interaction-external-pause + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/interaction-external-pause diff --git a/interactions/external/pause/package.dist.json b/interactions/external/pause/package.dist.json index 48b3c7f3686..fb76c037f4b 100644 --- a/interactions/external/pause/package.dist.json +++ b/interactions/external/pause/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-pause", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles pause external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-interactivity": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-interactivity": "4.0.4" } } diff --git a/interactions/external/pause/package.json b/interactions/external/pause/package.json index 67b2556ed71..9792adcfd48 100644 --- a/interactions/external/pause/package.json +++ b/interactions/external/pause/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-pause", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles pause external interaction", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/pop/CHANGELOG.md b/interactions/external/pop/CHANGELOG.md index 7039cbf659a..4845f1c0816 100644 --- a/interactions/external/pop/CHANGELOG.md +++ b/interactions/external/pop/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/interaction-external-pop + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/interaction-external-pop diff --git a/interactions/external/pop/package.dist.json b/interactions/external/pop/package.dist.json index f7ae69e62f5..33832ddbf07 100644 --- a/interactions/external/pop/package.dist.json +++ b/interactions/external/pop/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-pop", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles pop external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-interactivity": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-interactivity": "4.0.4" } } diff --git a/interactions/external/pop/package.json b/interactions/external/pop/package.json index e2416d6b1bb..b13be869343 100644 --- a/interactions/external/pop/package.json +++ b/interactions/external/pop/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-pop", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles pop external interaction", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/push/CHANGELOG.md b/interactions/external/push/CHANGELOG.md index 6f42d007549..6b1ec7f48bc 100644 --- a/interactions/external/push/CHANGELOG.md +++ b/interactions/external/push/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/interaction-external-push + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/interaction-external-push diff --git a/interactions/external/push/package.dist.json b/interactions/external/push/package.dist.json index 8bfd90217f1..df55597d752 100644 --- a/interactions/external/push/package.dist.json +++ b/interactions/external/push/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-push", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles push external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-interactivity": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-interactivity": "4.0.4" } } diff --git a/interactions/external/push/package.json b/interactions/external/push/package.json index 2e2ed520f78..7c39309d0fa 100644 --- a/interactions/external/push/package.json +++ b/interactions/external/push/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-push", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles push external interaction", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/remove/CHANGELOG.md b/interactions/external/remove/CHANGELOG.md index be22d94ba55..2812e931ebf 100644 --- a/interactions/external/remove/CHANGELOG.md +++ b/interactions/external/remove/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/interaction-external-remove + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/interaction-external-remove diff --git a/interactions/external/remove/package.dist.json b/interactions/external/remove/package.dist.json index ff88230b37c..865e3840ee2 100644 --- a/interactions/external/remove/package.dist.json +++ b/interactions/external/remove/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-remove", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles remove external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-interactivity": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-interactivity": "4.0.4" } } diff --git a/interactions/external/remove/package.json b/interactions/external/remove/package.json index cc64828c472..4e3c6827e18 100644 --- a/interactions/external/remove/package.json +++ b/interactions/external/remove/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-remove", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles remove external interaction", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/repulse/CHANGELOG.md b/interactions/external/repulse/CHANGELOG.md index 90c2e76c752..1075ea4239c 100644 --- a/interactions/external/repulse/CHANGELOG.md +++ b/interactions/external/repulse/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/interaction-external-repulse + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/interaction-external-repulse diff --git a/interactions/external/repulse/package.dist.json b/interactions/external/repulse/package.dist.json index 6177bde6f4c..df1f539a56d 100644 --- a/interactions/external/repulse/package.dist.json +++ b/interactions/external/repulse/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-repulse", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles repulse external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-interactivity": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-interactivity": "4.0.4" } } diff --git a/interactions/external/repulse/package.json b/interactions/external/repulse/package.json index 9e486cfda0f..4d7bcc0f50b 100644 --- a/interactions/external/repulse/package.json +++ b/interactions/external/repulse/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-repulse", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles repulse external interaction", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/slow/CHANGELOG.md b/interactions/external/slow/CHANGELOG.md index 270264ceb24..46c6747e539 100644 --- a/interactions/external/slow/CHANGELOG.md +++ b/interactions/external/slow/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/interaction-external-slow + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/interaction-external-slow diff --git a/interactions/external/slow/package.dist.json b/interactions/external/slow/package.dist.json index 4c0a323ad79..4d969117b5e 100644 --- a/interactions/external/slow/package.dist.json +++ b/interactions/external/slow/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-slow", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles slow external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-interactivity": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-interactivity": "4.0.4" } } diff --git a/interactions/external/slow/package.json b/interactions/external/slow/package.json index 38b3fd62246..58bf93c989b 100644 --- a/interactions/external/slow/package.json +++ b/interactions/external/slow/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-slow", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles slow external interaction", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/trail/CHANGELOG.md b/interactions/external/trail/CHANGELOG.md index 11a6d5433b7..448dcf0205a 100644 --- a/interactions/external/trail/CHANGELOG.md +++ b/interactions/external/trail/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/interaction-external-trail + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/interaction-external-trail diff --git a/interactions/external/trail/package.dist.json b/interactions/external/trail/package.dist.json index 0bc11192793..e64f4761923 100644 --- a/interactions/external/trail/package.dist.json +++ b/interactions/external/trail/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-trail", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles trail external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-interactivity": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-interactivity": "4.0.4" } } diff --git a/interactions/external/trail/package.json b/interactions/external/trail/package.json index bba431f00a8..dc78216e831 100644 --- a/interactions/external/trail/package.json +++ b/interactions/external/trail/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-trail", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles trail external interaction", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/light/CHANGELOG.md b/interactions/light/CHANGELOG.md index 8638afd1088..569f4a3ce04 100644 --- a/interactions/light/CHANGELOG.md +++ b/interactions/light/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/interaction-light + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/interaction-light diff --git a/interactions/light/package.dist.json b/interactions/light/package.dist.json index 6023af37bb3..8e24b4a3d36 100644 --- a/interactions/light/package.dist.json +++ b/interactions/light/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-light", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles Light interaction", "homepage": "https://particles.js.org", "repository": { @@ -107,8 +107,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-interactivity": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-interactivity": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/interactions/light/package.json b/interactions/light/package.json index 8b766e213d9..33c6d60486e 100644 --- a/interactions/light/package.json +++ b/interactions/light/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-light", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles Light interaction", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/particles/attract/CHANGELOG.md b/interactions/particles/attract/CHANGELOG.md index 914dd224e30..cc87f5a805c 100644 --- a/interactions/particles/attract/CHANGELOG.md +++ b/interactions/particles/attract/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/interaction-particles-attract + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/interaction-particles-attract diff --git a/interactions/particles/attract/package.dist.json b/interactions/particles/attract/package.dist.json index abe82c58ddd..ff6e5b28ba2 100644 --- a/interactions/particles/attract/package.dist.json +++ b/interactions/particles/attract/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-particles-attract", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles attract particles interaction", "homepage": "https://particles.js.org", "repository": { @@ -93,8 +93,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-interactivity": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-interactivity": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/interactions/particles/attract/package.json b/interactions/particles/attract/package.json index 4ea0c441861..24336256c8e 100644 --- a/interactions/particles/attract/package.json +++ b/interactions/particles/attract/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-particles-attract", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles attract particles interaction", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/particles/collisions/CHANGELOG.md b/interactions/particles/collisions/CHANGELOG.md index 05e15dd22d4..d776ecb9dd1 100644 --- a/interactions/particles/collisions/CHANGELOG.md +++ b/interactions/particles/collisions/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/interaction-particles-collisions + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/interaction-particles-collisions diff --git a/interactions/particles/collisions/package.dist.json b/interactions/particles/collisions/package.dist.json index 35a40a56aee..079694c9935 100644 --- a/interactions/particles/collisions/package.dist.json +++ b/interactions/particles/collisions/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-particles-collisions", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles collisions particles interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-interactivity": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-interactivity": "4.0.4" } } diff --git a/interactions/particles/collisions/package.json b/interactions/particles/collisions/package.json index fce41264f61..9e511f16135 100644 --- a/interactions/particles/collisions/package.json +++ b/interactions/particles/collisions/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-particles-collisions", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles collisions particles interaction", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/particles/links/CHANGELOG.md b/interactions/particles/links/CHANGELOG.md index 86b497d84a4..837d3e72e51 100644 --- a/interactions/particles/links/CHANGELOG.md +++ b/interactions/particles/links/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/interaction-particles-links + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/interaction-particles-links diff --git a/interactions/particles/links/package.dist.json b/interactions/particles/links/package.dist.json index 0626676a068..aa67f0a3188 100644 --- a/interactions/particles/links/package.dist.json +++ b/interactions/particles/links/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-particles-links", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles links particles interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,10 +97,10 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-interactivity": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-interactivity": "4.0.4" }, "dependencies": { - "@tsparticles/canvas-utils": "4.0.3" + "@tsparticles/canvas-utils": "4.0.4" } } diff --git a/interactions/particles/links/package.json b/interactions/particles/links/package.json index b651f9ee527..8ae3127be69 100644 --- a/interactions/particles/links/package.json +++ b/interactions/particles/links/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-particles-links", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles links particles interaction", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/particles/repulse/CHANGELOG.md b/interactions/particles/repulse/CHANGELOG.md index fb0335fe58a..caa9e408e82 100644 --- a/interactions/particles/repulse/CHANGELOG.md +++ b/interactions/particles/repulse/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/interaction-particles-repulse + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/interaction-particles-repulse diff --git a/interactions/particles/repulse/package.dist.json b/interactions/particles/repulse/package.dist.json index 7b82af97bd7..8b301c5823a 100644 --- a/interactions/particles/repulse/package.dist.json +++ b/interactions/particles/repulse/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-particles-repulse", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles repulse particles interaction", "homepage": "https://particles.js.org", "repository": { @@ -107,8 +107,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-interactivity": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-interactivity": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/interactions/particles/repulse/package.json b/interactions/particles/repulse/package.json index 5d297ffc03e..865b26fa80d 100644 --- a/interactions/particles/repulse/package.json +++ b/interactions/particles/repulse/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-particles-repulse", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles repulse particles interaction", "homepage": "https://particles.js.org", "scripts": { diff --git a/lerna.json b/lerna.json index 6720f9b05ca..bfde71b0980 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "4.0.3", + "version": "4.0.4", "npmClient": "pnpm", "conventionalCommits": true, "command": { diff --git a/palettes/atmosphere/coloredSmokeAmber/CHANGELOG.md b/palettes/atmosphere/coloredSmokeAmber/CHANGELOG.md index 5b9b06be96f..9bee5dba688 100644 --- a/palettes/atmosphere/coloredSmokeAmber/CHANGELOG.md +++ b/palettes/atmosphere/coloredSmokeAmber/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-colored-smoke-amber + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-colored-smoke-amber diff --git a/palettes/atmosphere/coloredSmokeAmber/package.dist.json b/palettes/atmosphere/coloredSmokeAmber/package.dist.json index 492a31d8515..3c3cc4f616f 100644 --- a/palettes/atmosphere/coloredSmokeAmber/package.dist.json +++ b/palettes/atmosphere/coloredSmokeAmber/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-amber", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles colored smoke amber palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmosphere/coloredSmokeAmber/package.json b/palettes/atmosphere/coloredSmokeAmber/package.json index df81f59136c..27547d577dd 100644 --- a/palettes/atmosphere/coloredSmokeAmber/package.json +++ b/palettes/atmosphere/coloredSmokeAmber/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-amber", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles colored smoke amber palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmosphere/coloredSmokeBlue/CHANGELOG.md b/palettes/atmosphere/coloredSmokeBlue/CHANGELOG.md index adb6b37e7a7..ed49c393842 100644 --- a/palettes/atmosphere/coloredSmokeBlue/CHANGELOG.md +++ b/palettes/atmosphere/coloredSmokeBlue/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-colored-smoke-blue + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-colored-smoke-blue diff --git a/palettes/atmosphere/coloredSmokeBlue/package.dist.json b/palettes/atmosphere/coloredSmokeBlue/package.dist.json index 7e0601c0f19..e9506b04b2c 100644 --- a/palettes/atmosphere/coloredSmokeBlue/package.dist.json +++ b/palettes/atmosphere/coloredSmokeBlue/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-blue", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles colored smoke blue palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmosphere/coloredSmokeBlue/package.json b/palettes/atmosphere/coloredSmokeBlue/package.json index 5934c5174cb..6355ce9612e 100644 --- a/palettes/atmosphere/coloredSmokeBlue/package.json +++ b/palettes/atmosphere/coloredSmokeBlue/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-blue", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles colored smoke blue palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmosphere/coloredSmokeGreen/CHANGELOG.md b/palettes/atmosphere/coloredSmokeGreen/CHANGELOG.md index 7ca25a2d3c4..40441fde886 100644 --- a/palettes/atmosphere/coloredSmokeGreen/CHANGELOG.md +++ b/palettes/atmosphere/coloredSmokeGreen/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-colored-smoke-green + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-colored-smoke-green diff --git a/palettes/atmosphere/coloredSmokeGreen/package.dist.json b/palettes/atmosphere/coloredSmokeGreen/package.dist.json index f2ff93f50b7..fcf98d1cd96 100644 --- a/palettes/atmosphere/coloredSmokeGreen/package.dist.json +++ b/palettes/atmosphere/coloredSmokeGreen/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-green", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles colored smoke green palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmosphere/coloredSmokeGreen/package.json b/palettes/atmosphere/coloredSmokeGreen/package.json index 826787945d1..d081cb79611 100644 --- a/palettes/atmosphere/coloredSmokeGreen/package.json +++ b/palettes/atmosphere/coloredSmokeGreen/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-green", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles colored smoke green palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmosphere/coloredSmokeMagenta/CHANGELOG.md b/palettes/atmosphere/coloredSmokeMagenta/CHANGELOG.md index 6955e685fce..978ba766020 100644 --- a/palettes/atmosphere/coloredSmokeMagenta/CHANGELOG.md +++ b/palettes/atmosphere/coloredSmokeMagenta/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-colored-smoke-magenta + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-colored-smoke-magenta diff --git a/palettes/atmosphere/coloredSmokeMagenta/package.dist.json b/palettes/atmosphere/coloredSmokeMagenta/package.dist.json index 818d64c2ceb..ef332411fec 100644 --- a/palettes/atmosphere/coloredSmokeMagenta/package.dist.json +++ b/palettes/atmosphere/coloredSmokeMagenta/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-magenta", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles colored smoke - magenta palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmosphere/coloredSmokeMagenta/package.json b/palettes/atmosphere/coloredSmokeMagenta/package.json index aa5535ddc3c..7420cd812ab 100644 --- a/palettes/atmosphere/coloredSmokeMagenta/package.json +++ b/palettes/atmosphere/coloredSmokeMagenta/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-magenta", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles colored smoke - magenta palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmosphere/coloredSmokeOrange/CHANGELOG.md b/palettes/atmosphere/coloredSmokeOrange/CHANGELOG.md index 64149c54bb7..47b0dc7bdfe 100644 --- a/palettes/atmosphere/coloredSmokeOrange/CHANGELOG.md +++ b/palettes/atmosphere/coloredSmokeOrange/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-colored-smoke-orange + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-colored-smoke-orange diff --git a/palettes/atmosphere/coloredSmokeOrange/package.dist.json b/palettes/atmosphere/coloredSmokeOrange/package.dist.json index 5b9325b57e5..f9b8eb67cff 100644 --- a/palettes/atmosphere/coloredSmokeOrange/package.dist.json +++ b/palettes/atmosphere/coloredSmokeOrange/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-orange", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles colored smoke orange palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmosphere/coloredSmokeOrange/package.json b/palettes/atmosphere/coloredSmokeOrange/package.json index 5f6780b45c0..c9527a12dc0 100644 --- a/palettes/atmosphere/coloredSmokeOrange/package.json +++ b/palettes/atmosphere/coloredSmokeOrange/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-orange", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles colored smoke orange palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmosphere/coloredSmokePurple/CHANGELOG.md b/palettes/atmosphere/coloredSmokePurple/CHANGELOG.md index 86e096f71c7..c391c501245 100644 --- a/palettes/atmosphere/coloredSmokePurple/CHANGELOG.md +++ b/palettes/atmosphere/coloredSmokePurple/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-colored-smoke-purple + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-colored-smoke-purple diff --git a/palettes/atmosphere/coloredSmokePurple/package.dist.json b/palettes/atmosphere/coloredSmokePurple/package.dist.json index 9b8a4c652b5..fb91005fc97 100644 --- a/palettes/atmosphere/coloredSmokePurple/package.dist.json +++ b/palettes/atmosphere/coloredSmokePurple/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-purple", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles colored smoke purple palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmosphere/coloredSmokePurple/package.json b/palettes/atmosphere/coloredSmokePurple/package.json index f9f19e3a2f7..cd29e655706 100644 --- a/palettes/atmosphere/coloredSmokePurple/package.json +++ b/palettes/atmosphere/coloredSmokePurple/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-purple", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles colored smoke purple palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmosphere/coloredSmokeRainbow/CHANGELOG.md b/palettes/atmosphere/coloredSmokeRainbow/CHANGELOG.md index bd3ce17c7b2..e1302c2f9f1 100644 --- a/palettes/atmosphere/coloredSmokeRainbow/CHANGELOG.md +++ b/palettes/atmosphere/coloredSmokeRainbow/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-colored-smoke-rainbow + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-colored-smoke-rainbow diff --git a/palettes/atmosphere/coloredSmokeRainbow/package.dist.json b/palettes/atmosphere/coloredSmokeRainbow/package.dist.json index dd9244c9c84..51b0301c97d 100644 --- a/palettes/atmosphere/coloredSmokeRainbow/package.dist.json +++ b/palettes/atmosphere/coloredSmokeRainbow/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-rainbow", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles colored smoke rainbow palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmosphere/coloredSmokeRainbow/package.json b/palettes/atmosphere/coloredSmokeRainbow/package.json index ac4caf48949..3bf87423a4e 100644 --- a/palettes/atmosphere/coloredSmokeRainbow/package.json +++ b/palettes/atmosphere/coloredSmokeRainbow/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-rainbow", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles colored smoke rainbow palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmosphere/coloredSmokeRed/CHANGELOG.md b/palettes/atmosphere/coloredSmokeRed/CHANGELOG.md index 680c6fda993..766f7b37be8 100644 --- a/palettes/atmosphere/coloredSmokeRed/CHANGELOG.md +++ b/palettes/atmosphere/coloredSmokeRed/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-colored-smoke-red + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-colored-smoke-red diff --git a/palettes/atmosphere/coloredSmokeRed/package.dist.json b/palettes/atmosphere/coloredSmokeRed/package.dist.json index 940aba47ac7..4d4f79f7e8f 100644 --- a/palettes/atmosphere/coloredSmokeRed/package.dist.json +++ b/palettes/atmosphere/coloredSmokeRed/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-red", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles colored smoke red palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmosphere/coloredSmokeRed/package.json b/palettes/atmosphere/coloredSmokeRed/package.json index 5a6c4379e17..f06aa2ad0d9 100644 --- a/palettes/atmosphere/coloredSmokeRed/package.json +++ b/palettes/atmosphere/coloredSmokeRed/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-red", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles colored smoke red palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmosphere/coloredSmokeTeal/CHANGELOG.md b/palettes/atmosphere/coloredSmokeTeal/CHANGELOG.md index f28ca3b1fe5..87548e159e2 100644 --- a/palettes/atmosphere/coloredSmokeTeal/CHANGELOG.md +++ b/palettes/atmosphere/coloredSmokeTeal/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-colored-smoke-teal + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-colored-smoke-teal diff --git a/palettes/atmosphere/coloredSmokeTeal/package.dist.json b/palettes/atmosphere/coloredSmokeTeal/package.dist.json index d8bea840a24..c91fef0d2c7 100644 --- a/palettes/atmosphere/coloredSmokeTeal/package.dist.json +++ b/palettes/atmosphere/coloredSmokeTeal/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-teal", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles colored smoke - teal palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmosphere/coloredSmokeTeal/package.json b/palettes/atmosphere/coloredSmokeTeal/package.json index abc53e38cec..552bd39ba9f 100644 --- a/palettes/atmosphere/coloredSmokeTeal/package.json +++ b/palettes/atmosphere/coloredSmokeTeal/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-teal", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles colored smoke - teal palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmosphere/dustHaze/CHANGELOG.md b/palettes/atmosphere/dustHaze/CHANGELOG.md index 4e53f42f667..c1c58828b1d 100644 --- a/palettes/atmosphere/dustHaze/CHANGELOG.md +++ b/palettes/atmosphere/dustHaze/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-dust-haze + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-dust-haze diff --git a/palettes/atmosphere/dustHaze/package.dist.json b/palettes/atmosphere/dustHaze/package.dist.json index 555728f2581..f6b01f49173 100644 --- a/palettes/atmosphere/dustHaze/package.dist.json +++ b/palettes/atmosphere/dustHaze/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-dust-haze", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles dust haze atmosphere palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmosphere/dustHaze/package.json b/palettes/atmosphere/dustHaze/package.json index 6ee6a2f8005..89bb5272390 100644 --- a/palettes/atmosphere/dustHaze/package.json +++ b/palettes/atmosphere/dustHaze/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-dust-haze", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles dust haze atmosphere palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmosphere/fogMorning/CHANGELOG.md b/palettes/atmosphere/fogMorning/CHANGELOG.md index 63e1622ef6c..8bea98db903 100644 --- a/palettes/atmosphere/fogMorning/CHANGELOG.md +++ b/palettes/atmosphere/fogMorning/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-fog-morning + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-fog-morning diff --git a/palettes/atmosphere/fogMorning/package.dist.json b/palettes/atmosphere/fogMorning/package.dist.json index b4e47a4e1fa..22d4d0a3474 100644 --- a/palettes/atmosphere/fogMorning/package.dist.json +++ b/palettes/atmosphere/fogMorning/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fog-morning", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles morning fog atmosphere palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmosphere/fogMorning/package.json b/palettes/atmosphere/fogMorning/package.json index 0e45f506b3e..eb6bf39a2ee 100644 --- a/palettes/atmosphere/fogMorning/package.json +++ b/palettes/atmosphere/fogMorning/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fog-morning", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles morning fog atmosphere palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmosphere/volcanicAsh/CHANGELOG.md b/palettes/atmosphere/volcanicAsh/CHANGELOG.md index d5b91fc3cc9..3a3bec8b28e 100644 --- a/palettes/atmosphere/volcanicAsh/CHANGELOG.md +++ b/palettes/atmosphere/volcanicAsh/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-volcanic-ash + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-volcanic-ash diff --git a/palettes/atmosphere/volcanicAsh/package.dist.json b/palettes/atmosphere/volcanicAsh/package.dist.json index a2872641c4d..11f21ce7539 100644 --- a/palettes/atmosphere/volcanicAsh/package.dist.json +++ b/palettes/atmosphere/volcanicAsh/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-volcanic-ash", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles volcanic ash atmosphere palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmosphere/volcanicAsh/package.json b/palettes/atmosphere/volcanicAsh/package.json index e88bb3af7d0..1536a16f2d2 100644 --- a/palettes/atmosphere/volcanicAsh/package.json +++ b/palettes/atmosphere/volcanicAsh/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-volcanic-ash", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles volcanic ash atmosphere palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmospheric/heatDuality/CHANGELOG.md b/palettes/atmospheric/heatDuality/CHANGELOG.md index b8b3a2d2d1a..a8e1542c2b2 100644 --- a/palettes/atmospheric/heatDuality/CHANGELOG.md +++ b/palettes/atmospheric/heatDuality/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-heat-duality + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-heat-duality diff --git a/palettes/atmospheric/heatDuality/package.dist.json b/palettes/atmospheric/heatDuality/package.dist.json index 7cc10618fd9..72518d66eeb 100644 --- a/palettes/atmospheric/heatDuality/package.dist.json +++ b/palettes/atmospheric/heatDuality/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-heat-duality", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles heat duality palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmospheric/heatDuality/package.json b/palettes/atmospheric/heatDuality/package.json index a2c93fcdadf..02e5c5328e0 100644 --- a/palettes/atmospheric/heatDuality/package.json +++ b/palettes/atmospheric/heatDuality/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-heat-duality", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles heat duality palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmospheric/heatHaze/CHANGELOG.md b/palettes/atmospheric/heatHaze/CHANGELOG.md index a93c91f5828..6e4e7cf8425 100644 --- a/palettes/atmospheric/heatHaze/CHANGELOG.md +++ b/palettes/atmospheric/heatHaze/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-heat-haze + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-heat-haze diff --git a/palettes/atmospheric/heatHaze/package.dist.json b/palettes/atmospheric/heatHaze/package.dist.json index 3ca5520b143..6b6675b42f2 100644 --- a/palettes/atmospheric/heatHaze/package.dist.json +++ b/palettes/atmospheric/heatHaze/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-heat-haze", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles heat haze palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmospheric/heatHaze/package.json b/palettes/atmospheric/heatHaze/package.json index 4f465ff5ffd..32535dc4b3e 100644 --- a/palettes/atmospheric/heatHaze/package.json +++ b/palettes/atmospheric/heatHaze/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-heat-haze", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles heat haze palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmospheric/lightning/CHANGELOG.md b/palettes/atmospheric/lightning/CHANGELOG.md index 7dd324d5615..e4377803196 100644 --- a/palettes/atmospheric/lightning/CHANGELOG.md +++ b/palettes/atmospheric/lightning/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-lightning + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-lightning diff --git a/palettes/atmospheric/lightning/package.dist.json b/palettes/atmospheric/lightning/package.dist.json index f587800e84f..0c54bb513d1 100644 --- a/palettes/atmospheric/lightning/package.dist.json +++ b/palettes/atmospheric/lightning/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-lightning", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles lightning palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmospheric/lightning/package.json b/palettes/atmospheric/lightning/package.json index ddac63591f5..96f73ce6ba1 100644 --- a/palettes/atmospheric/lightning/package.json +++ b/palettes/atmospheric/lightning/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-lightning", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles lightning palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmospheric/shockwave/CHANGELOG.md b/palettes/atmospheric/shockwave/CHANGELOG.md index 220671838aa..bddbe0a3331 100644 --- a/palettes/atmospheric/shockwave/CHANGELOG.md +++ b/palettes/atmospheric/shockwave/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-shockwave + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-shockwave diff --git a/palettes/atmospheric/shockwave/package.dist.json b/palettes/atmospheric/shockwave/package.dist.json index 4be4f631d6a..4d681629cd4 100644 --- a/palettes/atmospheric/shockwave/package.dist.json +++ b/palettes/atmospheric/shockwave/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-shockwave", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles shockwave palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmospheric/shockwave/package.json b/palettes/atmospheric/shockwave/package.json index aebcff67154..726426588b8 100644 --- a/palettes/atmospheric/shockwave/package.json +++ b/palettes/atmospheric/shockwave/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-shockwave", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles shockwave palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmospheric/smokeCold/CHANGELOG.md b/palettes/atmospheric/smokeCold/CHANGELOG.md index 5ec388f55aa..4eca1afbbab 100644 --- a/palettes/atmospheric/smokeCold/CHANGELOG.md +++ b/palettes/atmospheric/smokeCold/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-smoke-cold + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-smoke-cold diff --git a/palettes/atmospheric/smokeCold/package.dist.json b/palettes/atmospheric/smokeCold/package.dist.json index 87e63e09b53..0031006fef7 100644 --- a/palettes/atmospheric/smokeCold/package.dist.json +++ b/palettes/atmospheric/smokeCold/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-smoke-cold", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles smoke - cold palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmospheric/smokeCold/package.json b/palettes/atmospheric/smokeCold/package.json index 55c573ab12b..e7eb3e785e3 100644 --- a/palettes/atmospheric/smokeCold/package.json +++ b/palettes/atmospheric/smokeCold/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-smoke-cold", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles smoke - cold palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmospheric/smokeWarm/CHANGELOG.md b/palettes/atmospheric/smokeWarm/CHANGELOG.md index 10236e4b577..eda37dbb457 100644 --- a/palettes/atmospheric/smokeWarm/CHANGELOG.md +++ b/palettes/atmospheric/smokeWarm/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-smoke-warm + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-smoke-warm diff --git a/palettes/atmospheric/smokeWarm/package.dist.json b/palettes/atmospheric/smokeWarm/package.dist.json index 5d2a6650143..14e71e89e10 100644 --- a/palettes/atmospheric/smokeWarm/package.dist.json +++ b/palettes/atmospheric/smokeWarm/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-smoke-warm", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles smoke - warm palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmospheric/smokeWarm/package.json b/palettes/atmospheric/smokeWarm/package.json index 874deaa65f8..e2b71f94611 100644 --- a/palettes/atmospheric/smokeWarm/package.json +++ b/palettes/atmospheric/smokeWarm/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-smoke-warm", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles smoke - warm palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmospheric/sunriseGold/CHANGELOG.md b/palettes/atmospheric/sunriseGold/CHANGELOG.md index 7bdffa4933a..7a273fb63f7 100644 --- a/palettes/atmospheric/sunriseGold/CHANGELOG.md +++ b/palettes/atmospheric/sunriseGold/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-sunrise-gold + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-sunrise-gold diff --git a/palettes/atmospheric/sunriseGold/package.dist.json b/palettes/atmospheric/sunriseGold/package.dist.json index cf146957cbf..b1e78b246b4 100644 --- a/palettes/atmospheric/sunriseGold/package.dist.json +++ b/palettes/atmospheric/sunriseGold/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-sunrise-gold", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles sunrise gold palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmospheric/sunriseGold/package.json b/palettes/atmospheric/sunriseGold/package.json index 602a492c7e9..860e1babf2a 100644 --- a/palettes/atmospheric/sunriseGold/package.json +++ b/palettes/atmospheric/sunriseGold/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-sunrise-gold", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles sunrise gold palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmospheric/sunsetBinary/CHANGELOG.md b/palettes/atmospheric/sunsetBinary/CHANGELOG.md index 3844d2376c1..5ec73f0158b 100644 --- a/palettes/atmospheric/sunsetBinary/CHANGELOG.md +++ b/palettes/atmospheric/sunsetBinary/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-sunset-binary + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-sunset-binary diff --git a/palettes/atmospheric/sunsetBinary/package.dist.json b/palettes/atmospheric/sunsetBinary/package.dist.json index 25c35cf38ef..31eb79813a3 100644 --- a/palettes/atmospheric/sunsetBinary/package.dist.json +++ b/palettes/atmospheric/sunsetBinary/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-sunset-binary", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles sunset binary palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmospheric/sunsetBinary/package.json b/palettes/atmospheric/sunsetBinary/package.json index c8c51d21628..1450c9163a5 100644 --- a/palettes/atmospheric/sunsetBinary/package.json +++ b/palettes/atmospheric/sunsetBinary/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-sunset-binary", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles sunset binary palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmospheric/thermalMap/CHANGELOG.md b/palettes/atmospheric/thermalMap/CHANGELOG.md index 0c8140ffc63..3c090d59ef4 100644 --- a/palettes/atmospheric/thermalMap/CHANGELOG.md +++ b/palettes/atmospheric/thermalMap/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-thermal-map + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-thermal-map diff --git a/palettes/atmospheric/thermalMap/package.dist.json b/palettes/atmospheric/thermalMap/package.dist.json index 87dbcceb15c..c4f6246ec96 100644 --- a/palettes/atmospheric/thermalMap/package.dist.json +++ b/palettes/atmospheric/thermalMap/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-thermal-map", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles thermal map - cold to hot palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmospheric/thermalMap/package.json b/palettes/atmospheric/thermalMap/package.json index 31f790fe51a..bce59ae9dcb 100644 --- a/palettes/atmospheric/thermalMap/package.json +++ b/palettes/atmospheric/thermalMap/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-thermal-map", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles thermal map - cold to hot palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmospheric/thunderstorm/CHANGELOG.md b/palettes/atmospheric/thunderstorm/CHANGELOG.md index fd57174616b..4836f3271ff 100644 --- a/palettes/atmospheric/thunderstorm/CHANGELOG.md +++ b/palettes/atmospheric/thunderstorm/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-thunderstorm + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-thunderstorm diff --git a/palettes/atmospheric/thunderstorm/package.dist.json b/palettes/atmospheric/thunderstorm/package.dist.json index 97a43723235..49e19a978b6 100644 --- a/palettes/atmospheric/thunderstorm/package.dist.json +++ b/palettes/atmospheric/thunderstorm/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-thunderstorm", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles thunderstorm palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmospheric/thunderstorm/package.json b/palettes/atmospheric/thunderstorm/package.json index 6fc260f788c..1438be5a206 100644 --- a/palettes/atmospheric/thunderstorm/package.json +++ b/palettes/atmospheric/thunderstorm/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-thunderstorm", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles thunderstorm palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/confetti/default/CHANGELOG.md b/palettes/confetti/default/CHANGELOG.md index c0f8ce1128c..63776c4ef15 100644 --- a/palettes/confetti/default/CHANGELOG.md +++ b/palettes/confetti/default/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-confetti + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-confetti diff --git a/palettes/confetti/default/package.dist.json b/palettes/confetti/default/package.dist.json index cbe1f18f5f9..9b9407d55d0 100644 --- a/palettes/confetti/default/package.dist.json +++ b/palettes/confetti/default/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles confetti palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/confetti/default/package.json b/palettes/confetti/default/package.json index 2b1bd9709f6..cc98a74bf79 100644 --- a/palettes/confetti/default/package.json +++ b/palettes/confetti/default/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles confetti palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/confetti/gold/CHANGELOG.md b/palettes/confetti/gold/CHANGELOG.md index d8ac3038f24..f0d4f35db5d 100644 --- a/palettes/confetti/gold/CHANGELOG.md +++ b/palettes/confetti/gold/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-confetti-gold + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-confetti-gold diff --git a/palettes/confetti/gold/package.dist.json b/palettes/confetti/gold/package.dist.json index 9f6a172dad4..db6e28e248a 100644 --- a/palettes/confetti/gold/package.dist.json +++ b/palettes/confetti/gold/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-gold", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles confetti gold palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/confetti/gold/package.json b/palettes/confetti/gold/package.json index 9d4fa9257f4..6e3accdb629 100644 --- a/palettes/confetti/gold/package.json +++ b/palettes/confetti/gold/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-gold", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles confetti gold palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/confetti/monochromeBlue/CHANGELOG.md b/palettes/confetti/monochromeBlue/CHANGELOG.md index 07d639f023c..ea50a07dcca 100644 --- a/palettes/confetti/monochromeBlue/CHANGELOG.md +++ b/palettes/confetti/monochromeBlue/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-confetti-monochrome-blue + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-confetti-monochrome-blue diff --git a/palettes/confetti/monochromeBlue/package.dist.json b/palettes/confetti/monochromeBlue/package.dist.json index 915bb1c5d64..bc4777a49e2 100644 --- a/palettes/confetti/monochromeBlue/package.dist.json +++ b/palettes/confetti/monochromeBlue/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-monochrome-blue", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles confetti monochrome blue palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/confetti/monochromeBlue/package.json b/palettes/confetti/monochromeBlue/package.json index 3e3c9ff2b75..354f88c27a0 100644 --- a/palettes/confetti/monochromeBlue/package.json +++ b/palettes/confetti/monochromeBlue/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-monochrome-blue", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles confetti monochrome blue palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/confetti/monochromeGreen/CHANGELOG.md b/palettes/confetti/monochromeGreen/CHANGELOG.md index 3e18aa60c49..633f0e35216 100644 --- a/palettes/confetti/monochromeGreen/CHANGELOG.md +++ b/palettes/confetti/monochromeGreen/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-confetti-monochrome-green + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-confetti-monochrome-green diff --git a/palettes/confetti/monochromeGreen/package.dist.json b/palettes/confetti/monochromeGreen/package.dist.json index 4e4d4714e60..76d01077ec2 100644 --- a/palettes/confetti/monochromeGreen/package.dist.json +++ b/palettes/confetti/monochromeGreen/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-monochrome-green", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles confetti monochrome green palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/confetti/monochromeGreen/package.json b/palettes/confetti/monochromeGreen/package.json index 2ddbefd47d1..9788ccf3e1e 100644 --- a/palettes/confetti/monochromeGreen/package.json +++ b/palettes/confetti/monochromeGreen/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-monochrome-green", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles confetti monochrome green palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/confetti/monochromePink/CHANGELOG.md b/palettes/confetti/monochromePink/CHANGELOG.md index 2d5cd185341..989acae3ffa 100644 --- a/palettes/confetti/monochromePink/CHANGELOG.md +++ b/palettes/confetti/monochromePink/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-confetti-monochrome-pink + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-confetti-monochrome-pink diff --git a/palettes/confetti/monochromePink/package.dist.json b/palettes/confetti/monochromePink/package.dist.json index 189215de7a5..7ecfffc48dc 100644 --- a/palettes/confetti/monochromePink/package.dist.json +++ b/palettes/confetti/monochromePink/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-monochrome-pink", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles confetti monochrome pink palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/confetti/monochromePink/package.json b/palettes/confetti/monochromePink/package.json index fea1a7fa693..ea5d1a86b26 100644 --- a/palettes/confetti/monochromePink/package.json +++ b/palettes/confetti/monochromePink/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-monochrome-pink", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles confetti monochrome pink palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/confetti/monochromePurple/CHANGELOG.md b/palettes/confetti/monochromePurple/CHANGELOG.md index f591d2839fd..54ca839139e 100644 --- a/palettes/confetti/monochromePurple/CHANGELOG.md +++ b/palettes/confetti/monochromePurple/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-confetti-monochrome-purple + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-confetti-monochrome-purple diff --git a/palettes/confetti/monochromePurple/package.dist.json b/palettes/confetti/monochromePurple/package.dist.json index 415c3e0096c..0b540278f78 100644 --- a/palettes/confetti/monochromePurple/package.dist.json +++ b/palettes/confetti/monochromePurple/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-monochrome-purple", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles confetti monochrome purple palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/confetti/monochromePurple/package.json b/palettes/confetti/monochromePurple/package.json index f2c663af7e9..77a04717f8f 100644 --- a/palettes/confetti/monochromePurple/package.json +++ b/palettes/confetti/monochromePurple/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-monochrome-purple", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles confetti monochrome purple palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/confetti/monochromeRed/CHANGELOG.md b/palettes/confetti/monochromeRed/CHANGELOG.md index 799290effa2..c0f3bdd6c05 100644 --- a/palettes/confetti/monochromeRed/CHANGELOG.md +++ b/palettes/confetti/monochromeRed/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-confetti-monochrome-red + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-confetti-monochrome-red diff --git a/palettes/confetti/monochromeRed/package.dist.json b/palettes/confetti/monochromeRed/package.dist.json index 95e61bae42e..f6ff868f6b5 100644 --- a/palettes/confetti/monochromeRed/package.dist.json +++ b/palettes/confetti/monochromeRed/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-monochrome-red", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles confetti monochrome red palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/confetti/monochromeRed/package.json b/palettes/confetti/monochromeRed/package.json index f010d1e4d1d..87fe921910c 100644 --- a/palettes/confetti/monochromeRed/package.json +++ b/palettes/confetti/monochromeRed/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-monochrome-red", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles confetti monochrome red palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/confetti/neon/CHANGELOG.md b/palettes/confetti/neon/CHANGELOG.md index 406e05a6850..5539d3a0eed 100644 --- a/palettes/confetti/neon/CHANGELOG.md +++ b/palettes/confetti/neon/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-confetti-neon + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-confetti-neon diff --git a/palettes/confetti/neon/package.dist.json b/palettes/confetti/neon/package.dist.json index 80e66c69b66..224081374d3 100644 --- a/palettes/confetti/neon/package.dist.json +++ b/palettes/confetti/neon/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-neon", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles confetti neon palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/confetti/neon/package.json b/palettes/confetti/neon/package.json index 736de3379eb..97c77e922b1 100644 --- a/palettes/confetti/neon/package.json +++ b/palettes/confetti/neon/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-neon", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles confetti neon palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/confetti/pastel/CHANGELOG.md b/palettes/confetti/pastel/CHANGELOG.md index f08cc489f8f..0279f148aec 100644 --- a/palettes/confetti/pastel/CHANGELOG.md +++ b/palettes/confetti/pastel/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-confetti-pastel + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-confetti-pastel diff --git a/palettes/confetti/pastel/package.dist.json b/palettes/confetti/pastel/package.dist.json index ec7a4f41083..e68aca2fde6 100644 --- a/palettes/confetti/pastel/package.dist.json +++ b/palettes/confetti/pastel/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-pastel", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles confetti pastel palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/confetti/pastel/package.json b/palettes/confetti/pastel/package.json index d25721da73d..ac544538170 100644 --- a/palettes/confetti/pastel/package.json +++ b/palettes/confetti/pastel/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-pastel", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles confetti pastel palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/confetti/patriotic/CHANGELOG.md b/palettes/confetti/patriotic/CHANGELOG.md index 6e782a91bef..40263a2d6bd 100644 --- a/palettes/confetti/patriotic/CHANGELOG.md +++ b/palettes/confetti/patriotic/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-confetti-patriotic + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-confetti-patriotic diff --git a/palettes/confetti/patriotic/package.dist.json b/palettes/confetti/patriotic/package.dist.json index 428fe3ec38a..aed0260aeed 100644 --- a/palettes/confetti/patriotic/package.dist.json +++ b/palettes/confetti/patriotic/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-patriotic", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles confetti patriotic palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/confetti/patriotic/package.json b/palettes/confetti/patriotic/package.json index 571850204cd..20e5eb2163d 100644 --- a/palettes/confetti/patriotic/package.json +++ b/palettes/confetti/patriotic/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-patriotic", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles confetti patriotic palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/confetti/rainbow/CHANGELOG.md b/palettes/confetti/rainbow/CHANGELOG.md index f03982cbcbd..e4d92ae42cd 100644 --- a/palettes/confetti/rainbow/CHANGELOG.md +++ b/palettes/confetti/rainbow/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-confetti-rainbow + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-confetti-rainbow diff --git a/palettes/confetti/rainbow/package.dist.json b/palettes/confetti/rainbow/package.dist.json index 2d43f14139a..cd3a59420d4 100644 --- a/palettes/confetti/rainbow/package.dist.json +++ b/palettes/confetti/rainbow/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-rainbow", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles confetti rainbow palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/confetti/rainbow/package.json b/palettes/confetti/rainbow/package.json index bebc91ba5c1..d79fb958e66 100644 --- a/palettes/confetti/rainbow/package.json +++ b/palettes/confetti/rainbow/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-rainbow", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles confetti rainbow palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/confetti/winter/CHANGELOG.md b/palettes/confetti/winter/CHANGELOG.md index 61602955935..bcb0c5e60ec 100644 --- a/palettes/confetti/winter/CHANGELOG.md +++ b/palettes/confetti/winter/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-confetti-winter + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-confetti-winter diff --git a/palettes/confetti/winter/package.dist.json b/palettes/confetti/winter/package.dist.json index 46505a92d36..28011c4e610 100644 --- a/palettes/confetti/winter/package.dist.json +++ b/palettes/confetti/winter/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-winter", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles confetti winter palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/confetti/winter/package.json b/palettes/confetti/winter/package.json index 02c4763424f..5fdd6b71eea 100644 --- a/palettes/confetti/winter/package.json +++ b/palettes/confetti/winter/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-winter", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles confetti winter palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/earth/caustics/CHANGELOG.md b/palettes/earth/caustics/CHANGELOG.md index de03eab096e..3b65ed80b0b 100644 --- a/palettes/earth/caustics/CHANGELOG.md +++ b/palettes/earth/caustics/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-caustics + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-caustics diff --git a/palettes/earth/caustics/package.dist.json b/palettes/earth/caustics/package.dist.json index 9446bb42802..b743a54fbdf 100644 --- a/palettes/earth/caustics/package.dist.json +++ b/palettes/earth/caustics/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-caustics", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles caustics palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/earth/caustics/package.json b/palettes/earth/caustics/package.json index a3b5108d73b..cdb51e4842c 100644 --- a/palettes/earth/caustics/package.json +++ b/palettes/earth/caustics/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-caustics", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles caustics palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/earth/desertSand/CHANGELOG.md b/palettes/earth/desertSand/CHANGELOG.md index 4f133e45369..84a62825a94 100644 --- a/palettes/earth/desertSand/CHANGELOG.md +++ b/palettes/earth/desertSand/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-desert-sand + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-desert-sand diff --git a/palettes/earth/desertSand/package.dist.json b/palettes/earth/desertSand/package.dist.json index 44f4624b778..dc24568b5f7 100644 --- a/palettes/earth/desertSand/package.dist.json +++ b/palettes/earth/desertSand/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-desert-sand", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles desert sand palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/earth/desertSand/package.json b/palettes/earth/desertSand/package.json index 8e15c5013c8..8fbf60eb130 100644 --- a/palettes/earth/desertSand/package.json +++ b/palettes/earth/desertSand/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-desert-sand", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles desert sand palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/earth/mudAndDirt/CHANGELOG.md b/palettes/earth/mudAndDirt/CHANGELOG.md index 1e9a4dfd1ea..ed2c4bfbe30 100644 --- a/palettes/earth/mudAndDirt/CHANGELOG.md +++ b/palettes/earth/mudAndDirt/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-mud-and-dirt + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-mud-and-dirt diff --git a/palettes/earth/mudAndDirt/package.dist.json b/palettes/earth/mudAndDirt/package.dist.json index 205e2fd6226..b456f6fe445 100644 --- a/palettes/earth/mudAndDirt/package.dist.json +++ b/palettes/earth/mudAndDirt/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-mud-and-dirt", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles mud & dirt palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/earth/mudAndDirt/package.json b/palettes/earth/mudAndDirt/package.json index 9c8d5a4db52..865f8210de8 100644 --- a/palettes/earth/mudAndDirt/package.json +++ b/palettes/earth/mudAndDirt/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-mud-and-dirt", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles mud & dirt palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/earth/oilSlick/CHANGELOG.md b/palettes/earth/oilSlick/CHANGELOG.md index 262e1e4262d..6cc724587a3 100644 --- a/palettes/earth/oilSlick/CHANGELOG.md +++ b/palettes/earth/oilSlick/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-oil-slick + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-oil-slick diff --git a/palettes/earth/oilSlick/package.dist.json b/palettes/earth/oilSlick/package.dist.json index 485f8e26b17..501910e5144 100644 --- a/palettes/earth/oilSlick/package.dist.json +++ b/palettes/earth/oilSlick/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-oil-slick", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles oil slick palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/earth/oilSlick/package.json b/palettes/earth/oilSlick/package.json index 7a54b61e263..be3f66a419e 100644 --- a/palettes/earth/oilSlick/package.json +++ b/palettes/earth/oilSlick/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-oil-slick", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles oil slick palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/earth/rockAndGravel/CHANGELOG.md b/palettes/earth/rockAndGravel/CHANGELOG.md index 6dcc064bffd..17b9ee10aee 100644 --- a/palettes/earth/rockAndGravel/CHANGELOG.md +++ b/palettes/earth/rockAndGravel/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-rock-and-gravel + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-rock-and-gravel diff --git a/palettes/earth/rockAndGravel/package.dist.json b/palettes/earth/rockAndGravel/package.dist.json index 72378f93344..54b49664de4 100644 --- a/palettes/earth/rockAndGravel/package.dist.json +++ b/palettes/earth/rockAndGravel/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-rock-and-gravel", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles rock & gravel palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/earth/rockAndGravel/package.json b/palettes/earth/rockAndGravel/package.json index ca78798d090..8291ee30012 100644 --- a/palettes/earth/rockAndGravel/package.json +++ b/palettes/earth/rockAndGravel/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-rock-and-gravel", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles rock & gravel palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/earth/rustAndCorrosion/CHANGELOG.md b/palettes/earth/rustAndCorrosion/CHANGELOG.md index 5585e28a424..35163d68db7 100644 --- a/palettes/earth/rustAndCorrosion/CHANGELOG.md +++ b/palettes/earth/rustAndCorrosion/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-rust-and-corrosion + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-rust-and-corrosion diff --git a/palettes/earth/rustAndCorrosion/package.dist.json b/palettes/earth/rustAndCorrosion/package.dist.json index 7866196faf8..79942a93865 100644 --- a/palettes/earth/rustAndCorrosion/package.dist.json +++ b/palettes/earth/rustAndCorrosion/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-rust-and-corrosion", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles rust & corrosion palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/earth/rustAndCorrosion/package.json b/palettes/earth/rustAndCorrosion/package.json index f8ffe6a512a..fb6c3eb6ee2 100644 --- a/palettes/earth/rustAndCorrosion/package.json +++ b/palettes/earth/rustAndCorrosion/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-rust-and-corrosion", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles rust & corrosion palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/earth/skinAndOrganic/CHANGELOG.md b/palettes/earth/skinAndOrganic/CHANGELOG.md index 7086b428438..c5145d4494a 100644 --- a/palettes/earth/skinAndOrganic/CHANGELOG.md +++ b/palettes/earth/skinAndOrganic/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-skin-and-organic + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-skin-and-organic diff --git a/palettes/earth/skinAndOrganic/package.dist.json b/palettes/earth/skinAndOrganic/package.dist.json index f8b7c8d7dcc..64d9cf20650 100644 --- a/palettes/earth/skinAndOrganic/package.dist.json +++ b/palettes/earth/skinAndOrganic/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-skin-and-organic", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles skin & organic palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/earth/skinAndOrganic/package.json b/palettes/earth/skinAndOrganic/package.json index df2464b4b0a..b92a57b1c89 100644 --- a/palettes/earth/skinAndOrganic/package.json +++ b/palettes/earth/skinAndOrganic/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-skin-and-organic", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles skin & organic palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fantasy/bioluminescence/CHANGELOG.md b/palettes/fantasy/bioluminescence/CHANGELOG.md index f2d07e88c4d..b6768a75354 100644 --- a/palettes/fantasy/bioluminescence/CHANGELOG.md +++ b/palettes/fantasy/bioluminescence/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-bioluminescence + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-bioluminescence diff --git a/palettes/fantasy/bioluminescence/package.dist.json b/palettes/fantasy/bioluminescence/package.dist.json index 6b474fcc8d2..68518e1da99 100644 --- a/palettes/fantasy/bioluminescence/package.dist.json +++ b/palettes/fantasy/bioluminescence/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-bioluminescence", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles bioluminescence palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fantasy/bioluminescence/package.json b/palettes/fantasy/bioluminescence/package.json index 7e15c115c0f..7332fe6ddcc 100644 --- a/palettes/fantasy/bioluminescence/package.json +++ b/palettes/fantasy/bioluminescence/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-bioluminescence", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles bioluminescence palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fantasy/bloodAndGore/CHANGELOG.md b/palettes/fantasy/bloodAndGore/CHANGELOG.md index 232584ee48a..74572e1ba6d 100644 --- a/palettes/fantasy/bloodAndGore/CHANGELOG.md +++ b/palettes/fantasy/bloodAndGore/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-blood-and-gore + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-blood-and-gore diff --git a/palettes/fantasy/bloodAndGore/package.dist.json b/palettes/fantasy/bloodAndGore/package.dist.json index de34699dc07..a124d41fe26 100644 --- a/palettes/fantasy/bloodAndGore/package.dist.json +++ b/palettes/fantasy/bloodAndGore/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-blood-and-gore", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles blood & gore palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fantasy/bloodAndGore/package.json b/palettes/fantasy/bloodAndGore/package.json index 7a00a09c023..5de06ead4b9 100644 --- a/palettes/fantasy/bloodAndGore/package.json +++ b/palettes/fantasy/bloodAndGore/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-blood-and-gore", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles blood & gore palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fantasy/fairyDust/CHANGELOG.md b/palettes/fantasy/fairyDust/CHANGELOG.md index 695e4569747..ab2256ffa45 100644 --- a/palettes/fantasy/fairyDust/CHANGELOG.md +++ b/palettes/fantasy/fairyDust/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-fairy-dust + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-fairy-dust diff --git a/palettes/fantasy/fairyDust/package.dist.json b/palettes/fantasy/fairyDust/package.dist.json index 4d293e57ada..3ce6244b111 100644 --- a/palettes/fantasy/fairyDust/package.dist.json +++ b/palettes/fantasy/fairyDust/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fairy-dust", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fairy dust palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fantasy/fairyDust/package.json b/palettes/fantasy/fairyDust/package.json index 84ada2518f7..484242ac5ec 100644 --- a/palettes/fantasy/fairyDust/package.json +++ b/palettes/fantasy/fairyDust/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fairy-dust", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fairy dust palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fantasy/holyLight/CHANGELOG.md b/palettes/fantasy/holyLight/CHANGELOG.md index 1a44624157c..9fff1e5475b 100644 --- a/palettes/fantasy/holyLight/CHANGELOG.md +++ b/palettes/fantasy/holyLight/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-holy-light + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-holy-light diff --git a/palettes/fantasy/holyLight/package.dist.json b/palettes/fantasy/holyLight/package.dist.json index 7271a7cff30..0d7f14cbe76 100644 --- a/palettes/fantasy/holyLight/package.dist.json +++ b/palettes/fantasy/holyLight/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-holy-light", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles holy light palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fantasy/holyLight/package.json b/palettes/fantasy/holyLight/package.json index 9dc9b617752..edc54a2b3c3 100644 --- a/palettes/fantasy/holyLight/package.json +++ b/palettes/fantasy/holyLight/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-holy-light", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles holy light palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fantasy/iceMagic/CHANGELOG.md b/palettes/fantasy/iceMagic/CHANGELOG.md index e350dcfdb98..8bbe2eb7dec 100644 --- a/palettes/fantasy/iceMagic/CHANGELOG.md +++ b/palettes/fantasy/iceMagic/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-ice-magic + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-ice-magic diff --git a/palettes/fantasy/iceMagic/package.dist.json b/palettes/fantasy/iceMagic/package.dist.json index 9923bc3136a..c2853f4459c 100644 --- a/palettes/fantasy/iceMagic/package.dist.json +++ b/palettes/fantasy/iceMagic/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-ice-magic", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles ice magic palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fantasy/iceMagic/package.json b/palettes/fantasy/iceMagic/package.json index 3a7b0cfe667..cb910485c83 100644 --- a/palettes/fantasy/iceMagic/package.json +++ b/palettes/fantasy/iceMagic/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-ice-magic", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles ice magic palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fantasy/iceTriad/CHANGELOG.md b/palettes/fantasy/iceTriad/CHANGELOG.md index 4072ee4ad91..d9afe5d1030 100644 --- a/palettes/fantasy/iceTriad/CHANGELOG.md +++ b/palettes/fantasy/iceTriad/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-ice-triad + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-ice-triad diff --git a/palettes/fantasy/iceTriad/package.dist.json b/palettes/fantasy/iceTriad/package.dist.json index 319e693f38c..7432bfe5537 100644 --- a/palettes/fantasy/iceTriad/package.dist.json +++ b/palettes/fantasy/iceTriad/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-ice-triad", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles ice triad palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fantasy/iceTriad/package.json b/palettes/fantasy/iceTriad/package.json index 9c78d033c6e..9484450bee1 100644 --- a/palettes/fantasy/iceTriad/package.json +++ b/palettes/fantasy/iceTriad/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-ice-triad", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles ice triad palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fantasy/iris/CHANGELOG.md b/palettes/fantasy/iris/CHANGELOG.md index 892cbbc79bc..aa107242a12 100644 --- a/palettes/fantasy/iris/CHANGELOG.md +++ b/palettes/fantasy/iris/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-iris + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-iris diff --git a/palettes/fantasy/iris/package.dist.json b/palettes/fantasy/iris/package.dist.json index 9dce839aa74..23ca65bc1df 100644 --- a/palettes/fantasy/iris/package.dist.json +++ b/palettes/fantasy/iris/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-iris", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles iris palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fantasy/iris/package.json b/palettes/fantasy/iris/package.json index bc037c37682..33779389f63 100644 --- a/palettes/fantasy/iris/package.json +++ b/palettes/fantasy/iris/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-iris", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles iris palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fantasy/jellyfishGlow/CHANGELOG.md b/palettes/fantasy/jellyfishGlow/CHANGELOG.md index 231af256ba1..111496010e7 100644 --- a/palettes/fantasy/jellyfishGlow/CHANGELOG.md +++ b/palettes/fantasy/jellyfishGlow/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-jellyfish-glow + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-jellyfish-glow diff --git a/palettes/fantasy/jellyfishGlow/package.dist.json b/palettes/fantasy/jellyfishGlow/package.dist.json index a9c3574fddb..1dd24ebc437 100644 --- a/palettes/fantasy/jellyfishGlow/package.dist.json +++ b/palettes/fantasy/jellyfishGlow/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-jellyfish-glow", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles jellyfish glow palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fantasy/jellyfishGlow/package.json b/palettes/fantasy/jellyfishGlow/package.json index 5979a85f4c9..bd6914e81af 100644 --- a/palettes/fantasy/jellyfishGlow/package.json +++ b/palettes/fantasy/jellyfishGlow/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-jellyfish-glow", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles jellyfish glow palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fantasy/mermaid/CHANGELOG.md b/palettes/fantasy/mermaid/CHANGELOG.md index 045e2b1cde9..f0486f90ad2 100644 --- a/palettes/fantasy/mermaid/CHANGELOG.md +++ b/palettes/fantasy/mermaid/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-mermaid + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-mermaid diff --git a/palettes/fantasy/mermaid/package.dist.json b/palettes/fantasy/mermaid/package.dist.json index 978e037b0d0..dfe9d9b49bb 100644 --- a/palettes/fantasy/mermaid/package.dist.json +++ b/palettes/fantasy/mermaid/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-mermaid", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles mermaid palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fantasy/mermaid/package.json b/palettes/fantasy/mermaid/package.json index b1e8d8cacd7..30cb1c0789e 100644 --- a/palettes/fantasy/mermaid/package.json +++ b/palettes/fantasy/mermaid/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-mermaid", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles mermaid palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fantasy/poisonAndVenom/CHANGELOG.md b/palettes/fantasy/poisonAndVenom/CHANGELOG.md index 94d79647f96..de37864df76 100644 --- a/palettes/fantasy/poisonAndVenom/CHANGELOG.md +++ b/palettes/fantasy/poisonAndVenom/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-poison-and-venom + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-poison-and-venom diff --git a/palettes/fantasy/poisonAndVenom/package.dist.json b/palettes/fantasy/poisonAndVenom/package.dist.json index 764ce8b1692..3ce252f7b64 100644 --- a/palettes/fantasy/poisonAndVenom/package.dist.json +++ b/palettes/fantasy/poisonAndVenom/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-poison-and-venom", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles poison & venom palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fantasy/poisonAndVenom/package.json b/palettes/fantasy/poisonAndVenom/package.json index 96785b08295..5dc5db8e54a 100644 --- a/palettes/fantasy/poisonAndVenom/package.json +++ b/palettes/fantasy/poisonAndVenom/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-poison-and-venom", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles poison & venom palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fantasy/unicorn/CHANGELOG.md b/palettes/fantasy/unicorn/CHANGELOG.md index 1dca59bf5dc..e7c8967f1d5 100644 --- a/palettes/fantasy/unicorn/CHANGELOG.md +++ b/palettes/fantasy/unicorn/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-unicorn + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-unicorn diff --git a/palettes/fantasy/unicorn/package.dist.json b/palettes/fantasy/unicorn/package.dist.json index 1b27d40c3db..8bd6fe5629a 100644 --- a/palettes/fantasy/unicorn/package.dist.json +++ b/palettes/fantasy/unicorn/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-unicorn", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles unicorn palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fantasy/unicorn/package.json b/palettes/fantasy/unicorn/package.json index dc81cdcd394..faa402adfb1 100644 --- a/palettes/fantasy/unicorn/package.json +++ b/palettes/fantasy/unicorn/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-unicorn", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles unicorn palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fire/candlelight/CHANGELOG.md b/palettes/fire/candlelight/CHANGELOG.md index c3873b29efc..b1faa769175 100644 --- a/palettes/fire/candlelight/CHANGELOG.md +++ b/palettes/fire/candlelight/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-candlelight + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-candlelight diff --git a/palettes/fire/candlelight/package.dist.json b/palettes/fire/candlelight/package.dist.json index f0a09e6ddfa..0ee8ac06c6c 100644 --- a/palettes/fire/candlelight/package.dist.json +++ b/palettes/fire/candlelight/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-candlelight", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles candlelight palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fire/candlelight/package.json b/palettes/fire/candlelight/package.json index d194969982d..ec263a9e925 100644 --- a/palettes/fire/candlelight/package.json +++ b/palettes/fire/candlelight/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-candlelight", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles candlelight palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fire/default/CHANGELOG.md b/palettes/fire/default/CHANGELOG.md index c879b9cf91c..f847dba3d51 100644 --- a/palettes/fire/default/CHANGELOG.md +++ b/palettes/fire/default/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-fire + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-fire diff --git a/palettes/fire/default/package.dist.json b/palettes/fire/default/package.dist.json index 788512f463b..327741baa9e 100644 --- a/palettes/fire/default/package.dist.json +++ b/palettes/fire/default/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fire", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fire - full palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fire/default/package.json b/palettes/fire/default/package.json index 48c78334aa3..f3fcff92676 100644 --- a/palettes/fire/default/package.json +++ b/palettes/fire/default/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fire", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fire - full palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fire/embersAndAsh/CHANGELOG.md b/palettes/fire/embersAndAsh/CHANGELOG.md index 495fbb05b07..1983a475593 100644 --- a/palettes/fire/embersAndAsh/CHANGELOG.md +++ b/palettes/fire/embersAndAsh/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-embers-and-ash + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-embers-and-ash diff --git a/palettes/fire/embersAndAsh/package.dist.json b/palettes/fire/embersAndAsh/package.dist.json index 3e9278c97c4..bd798ba5f13 100644 --- a/palettes/fire/embersAndAsh/package.dist.json +++ b/palettes/fire/embersAndAsh/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-embers-and-ash", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles embers & ash palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fire/embersAndAsh/package.json b/palettes/fire/embersAndAsh/package.json index 82ff341f330..4e058015974 100644 --- a/palettes/fire/embersAndAsh/package.json +++ b/palettes/fire/embersAndAsh/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-embers-and-ash", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles embers & ash palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fire/fullFireGradient/CHANGELOG.md b/palettes/fire/fullFireGradient/CHANGELOG.md index e26a5ae30b8..17572a0c40d 100644 --- a/palettes/fire/fullFireGradient/CHANGELOG.md +++ b/palettes/fire/fullFireGradient/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-full-fire-gradient + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-full-fire-gradient diff --git a/palettes/fire/fullFireGradient/package.dist.json b/palettes/fire/fullFireGradient/package.dist.json index cdeb0186298..5f7e287132b 100644 --- a/palettes/fire/fullFireGradient/package.dist.json +++ b/palettes/fire/fullFireGradient/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-full-fire-gradient", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles full fire gradient palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fire/fullFireGradient/package.json b/palettes/fire/fullFireGradient/package.json index 54965c7c069..1bd00b64aed 100644 --- a/palettes/fire/fullFireGradient/package.json +++ b/palettes/fire/fullFireGradient/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-full-fire-gradient", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles full fire gradient palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fire/lavaLamp/CHANGELOG.md b/palettes/fire/lavaLamp/CHANGELOG.md index 876b0e9bac8..870e0a0966f 100644 --- a/palettes/fire/lavaLamp/CHANGELOG.md +++ b/palettes/fire/lavaLamp/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-lava-lamp + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-lava-lamp diff --git a/palettes/fire/lavaLamp/package.dist.json b/palettes/fire/lavaLamp/package.dist.json index a5292a6376a..d4ebe187a48 100644 --- a/palettes/fire/lavaLamp/package.dist.json +++ b/palettes/fire/lavaLamp/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-lava-lamp", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles lava lamp palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fire/lavaLamp/package.json b/palettes/fire/lavaLamp/package.json index d686d49381d..3da1da02284 100644 --- a/palettes/fire/lavaLamp/package.json +++ b/palettes/fire/lavaLamp/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-lava-lamp", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles lava lamp palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fire/metalSparks/CHANGELOG.md b/palettes/fire/metalSparks/CHANGELOG.md index 00346749b2e..20b3d0bbd7d 100644 --- a/palettes/fire/metalSparks/CHANGELOG.md +++ b/palettes/fire/metalSparks/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-metal-sparks + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-metal-sparks diff --git a/palettes/fire/metalSparks/package.dist.json b/palettes/fire/metalSparks/package.dist.json index 1672f173d2c..5d2b6136051 100644 --- a/palettes/fire/metalSparks/package.dist.json +++ b/palettes/fire/metalSparks/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-metal-sparks", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles metal sparks palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fire/metalSparks/package.json b/palettes/fire/metalSparks/package.json index 2cc65c0ea16..4f315681df1 100644 --- a/palettes/fire/metalSparks/package.json +++ b/palettes/fire/metalSparks/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-metal-sparks", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles metal sparks palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fire/moltenMetal/CHANGELOG.md b/palettes/fire/moltenMetal/CHANGELOG.md index 553a289523b..b1614bc5dd1 100644 --- a/palettes/fire/moltenMetal/CHANGELOG.md +++ b/palettes/fire/moltenMetal/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-molten-metal + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-molten-metal diff --git a/palettes/fire/moltenMetal/package.dist.json b/palettes/fire/moltenMetal/package.dist.json index 054bd98aedf..0c032e2330f 100644 --- a/palettes/fire/moltenMetal/package.dist.json +++ b/palettes/fire/moltenMetal/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-molten-metal", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles molten metal palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fire/moltenMetal/package.json b/palettes/fire/moltenMetal/package.json index 582e0c7594f..a5b5258cb0c 100644 --- a/palettes/fire/moltenMetal/package.json +++ b/palettes/fire/moltenMetal/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-molten-metal", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles molten metal palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fire/seed/CHANGELOG.md b/palettes/fire/seed/CHANGELOG.md index 05ef600a735..5ed07728ed9 100644 --- a/palettes/fire/seed/CHANGELOG.md +++ b/palettes/fire/seed/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-fire-seed + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-fire-seed diff --git a/palettes/fire/seed/package.dist.json b/palettes/fire/seed/package.dist.json index cfe722461b2..2650fe56e60 100644 --- a/palettes/fire/seed/package.dist.json +++ b/palettes/fire/seed/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fire-seed", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fire seed palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fire/seed/package.json b/palettes/fire/seed/package.json index c866f270784..5e697959fef 100644 --- a/palettes/fire/seed/package.json +++ b/palettes/fire/seed/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fire-seed", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fire seed palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/blue/CHANGELOG.md b/palettes/fireworks/blue/CHANGELOG.md index 4f0da8507b3..e7de53e96fa 100644 --- a/palettes/fireworks/blue/CHANGELOG.md +++ b/palettes/fireworks/blue/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-blue + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-fireworks-blue diff --git a/palettes/fireworks/blue/package.dist.json b/palettes/fireworks/blue/package.dist.json index 4c2a668d4c3..794e031e4d3 100644 --- a/palettes/fireworks/blue/package.dist.json +++ b/palettes/fireworks/blue/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-blue", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks blue palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/blue/package.json b/palettes/fireworks/blue/package.json index 7b592bdbd03..86f8ebff106 100644 --- a/palettes/fireworks/blue/package.json +++ b/palettes/fireworks/blue/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-blue", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks blue palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/blueStroke/CHANGELOG.md b/palettes/fireworks/blueStroke/CHANGELOG.md index 58f8c72e62a..d1f9f49872a 100644 --- a/palettes/fireworks/blueStroke/CHANGELOG.md +++ b/palettes/fireworks/blueStroke/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-blue-stroke + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-fireworks-blue-stroke diff --git a/palettes/fireworks/blueStroke/package.dist.json b/palettes/fireworks/blueStroke/package.dist.json index dea5d333266..aade5f92ea7 100644 --- a/palettes/fireworks/blueStroke/package.dist.json +++ b/palettes/fireworks/blueStroke/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-blue-stroke", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks blue stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/blueStroke/package.json b/palettes/fireworks/blueStroke/package.json index 31562103f89..5bf3741da6a 100644 --- a/palettes/fireworks/blueStroke/package.json +++ b/palettes/fireworks/blueStroke/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-blue-stroke", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks blue stroke palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/copper/CHANGELOG.md b/palettes/fireworks/copper/CHANGELOG.md index b7f18ccc2e7..91c2804832b 100644 --- a/palettes/fireworks/copper/CHANGELOG.md +++ b/palettes/fireworks/copper/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-copper + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-fireworks-copper diff --git a/palettes/fireworks/copper/package.dist.json b/palettes/fireworks/copper/package.dist.json index f7d15cb4bb6..5baa6521c48 100644 --- a/palettes/fireworks/copper/package.dist.json +++ b/palettes/fireworks/copper/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-copper", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks copper palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/copper/package.json b/palettes/fireworks/copper/package.json index 2159f692513..cef6d317f81 100644 --- a/palettes/fireworks/copper/package.json +++ b/palettes/fireworks/copper/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-copper", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks copper palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/copperStroke/CHANGELOG.md b/palettes/fireworks/copperStroke/CHANGELOG.md index b81fce468c8..e7c180e5c94 100644 --- a/palettes/fireworks/copperStroke/CHANGELOG.md +++ b/palettes/fireworks/copperStroke/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-copper-stroke + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-fireworks-copper-stroke diff --git a/palettes/fireworks/copperStroke/package.dist.json b/palettes/fireworks/copperStroke/package.dist.json index c15e3616bdb..69b2934e02f 100644 --- a/palettes/fireworks/copperStroke/package.dist.json +++ b/palettes/fireworks/copperStroke/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-copper-stroke", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks copper stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/copperStroke/package.json b/palettes/fireworks/copperStroke/package.json index 63f11d6c6d9..4266651412d 100644 --- a/palettes/fireworks/copperStroke/package.json +++ b/palettes/fireworks/copperStroke/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-copper-stroke", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks copper stroke palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/gold/CHANGELOG.md b/palettes/fireworks/gold/CHANGELOG.md index 113ad95be66..8eb4de7866c 100644 --- a/palettes/fireworks/gold/CHANGELOG.md +++ b/palettes/fireworks/gold/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-gold + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-fireworks-gold diff --git a/palettes/fireworks/gold/package.dist.json b/palettes/fireworks/gold/package.dist.json index 2400fe88a32..3a7a339cbc9 100644 --- a/palettes/fireworks/gold/package.dist.json +++ b/palettes/fireworks/gold/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-gold", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks - gold palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/gold/package.json b/palettes/fireworks/gold/package.json index 01e169d05d2..d88fbcb3dea 100644 --- a/palettes/fireworks/gold/package.json +++ b/palettes/fireworks/gold/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-gold", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks - gold palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/goldStroke/CHANGELOG.md b/palettes/fireworks/goldStroke/CHANGELOG.md index a5a60d035d7..31d7afb4997 100644 --- a/palettes/fireworks/goldStroke/CHANGELOG.md +++ b/palettes/fireworks/goldStroke/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-gold-stroke + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-fireworks-gold-stroke diff --git a/palettes/fireworks/goldStroke/package.dist.json b/palettes/fireworks/goldStroke/package.dist.json index 565ddb1804d..050a149acd5 100644 --- a/palettes/fireworks/goldStroke/package.dist.json +++ b/palettes/fireworks/goldStroke/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-gold-stroke", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks - gold stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/goldStroke/package.json b/palettes/fireworks/goldStroke/package.json index 746dd6d5fc8..d72688d6095 100644 --- a/palettes/fireworks/goldStroke/package.json +++ b/palettes/fireworks/goldStroke/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-gold-stroke", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks - gold stroke palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/green/CHANGELOG.md b/palettes/fireworks/green/CHANGELOG.md index ef53ce0b755..31beab06c55 100644 --- a/palettes/fireworks/green/CHANGELOG.md +++ b/palettes/fireworks/green/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-green + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-fireworks-green diff --git a/palettes/fireworks/green/package.dist.json b/palettes/fireworks/green/package.dist.json index 3e496767298..f3d235864a6 100644 --- a/palettes/fireworks/green/package.dist.json +++ b/palettes/fireworks/green/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-green", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks green palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/green/package.json b/palettes/fireworks/green/package.json index 144ae447a70..d025aec4141 100644 --- a/palettes/fireworks/green/package.json +++ b/palettes/fireworks/green/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-green", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks green palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/greenStroke/CHANGELOG.md b/palettes/fireworks/greenStroke/CHANGELOG.md index ade8a799ac8..3718c1eb74c 100644 --- a/palettes/fireworks/greenStroke/CHANGELOG.md +++ b/palettes/fireworks/greenStroke/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-green-stroke + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-fireworks-green-stroke diff --git a/palettes/fireworks/greenStroke/package.dist.json b/palettes/fireworks/greenStroke/package.dist.json index d4b30c366b7..920334dcd1c 100644 --- a/palettes/fireworks/greenStroke/package.dist.json +++ b/palettes/fireworks/greenStroke/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-green-stroke", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks green stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/greenStroke/package.json b/palettes/fireworks/greenStroke/package.json index afa8e2168fe..449fef4bac0 100644 --- a/palettes/fireworks/greenStroke/package.json +++ b/palettes/fireworks/greenStroke/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-green-stroke", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks green stroke palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/ice/CHANGELOG.md b/palettes/fireworks/ice/CHANGELOG.md index e03fbc37e80..34a9b3a68b9 100644 --- a/palettes/fireworks/ice/CHANGELOG.md +++ b/palettes/fireworks/ice/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-ice + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-fireworks-ice diff --git a/palettes/fireworks/ice/package.dist.json b/palettes/fireworks/ice/package.dist.json index 5d828b60686..892dfc18fec 100644 --- a/palettes/fireworks/ice/package.dist.json +++ b/palettes/fireworks/ice/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-ice", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks ice palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/ice/package.json b/palettes/fireworks/ice/package.json index 88469c4cae9..17346d00f3e 100644 --- a/palettes/fireworks/ice/package.json +++ b/palettes/fireworks/ice/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-ice", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks ice palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/iceStroke/CHANGELOG.md b/palettes/fireworks/iceStroke/CHANGELOG.md index faeb4eef8e7..8daeb04eee9 100644 --- a/palettes/fireworks/iceStroke/CHANGELOG.md +++ b/palettes/fireworks/iceStroke/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-ice-stroke + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-fireworks-ice-stroke diff --git a/palettes/fireworks/iceStroke/package.dist.json b/palettes/fireworks/iceStroke/package.dist.json index cedf5f1629e..befe63e97d3 100644 --- a/palettes/fireworks/iceStroke/package.dist.json +++ b/palettes/fireworks/iceStroke/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-ice-stroke", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks ice stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/iceStroke/package.json b/palettes/fireworks/iceStroke/package.json index 1ffc7ad1985..a555cadba89 100644 --- a/palettes/fireworks/iceStroke/package.json +++ b/palettes/fireworks/iceStroke/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-ice-stroke", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks ice stroke palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/multicolor/CHANGELOG.md b/palettes/fireworks/multicolor/CHANGELOG.md index 2c49dcd4687..21206c58d7b 100644 --- a/palettes/fireworks/multicolor/CHANGELOG.md +++ b/palettes/fireworks/multicolor/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-multicolor + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-fireworks-multicolor diff --git a/palettes/fireworks/multicolor/package.dist.json b/palettes/fireworks/multicolor/package.dist.json index 1d31bb11193..332648e4a08 100644 --- a/palettes/fireworks/multicolor/package.dist.json +++ b/palettes/fireworks/multicolor/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-multicolor", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks - multicolor palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/multicolor/package.json b/palettes/fireworks/multicolor/package.json index 1d48ca8d00a..c65daa469a9 100644 --- a/palettes/fireworks/multicolor/package.json +++ b/palettes/fireworks/multicolor/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-multicolor", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks - multicolor palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/multicolorStroke/CHANGELOG.md b/palettes/fireworks/multicolorStroke/CHANGELOG.md index e8419c9f3d6..80a00fcf93e 100644 --- a/palettes/fireworks/multicolorStroke/CHANGELOG.md +++ b/palettes/fireworks/multicolorStroke/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-multicolor-stroke + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-fireworks-multicolor-stroke diff --git a/palettes/fireworks/multicolorStroke/package.dist.json b/palettes/fireworks/multicolorStroke/package.dist.json index f91cc09b01c..5358b68b529 100644 --- a/palettes/fireworks/multicolorStroke/package.dist.json +++ b/palettes/fireworks/multicolorStroke/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-multicolor-stroke", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks - multicolor stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/multicolorStroke/package.json b/palettes/fireworks/multicolorStroke/package.json index d9a274ac555..939f13977a6 100644 --- a/palettes/fireworks/multicolorStroke/package.json +++ b/palettes/fireworks/multicolorStroke/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-multicolor-stroke", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks - multicolor stroke palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/neon/CHANGELOG.md b/palettes/fireworks/neon/CHANGELOG.md index 9e0255c019d..d7d79720039 100644 --- a/palettes/fireworks/neon/CHANGELOG.md +++ b/palettes/fireworks/neon/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-neon + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-fireworks-neon diff --git a/palettes/fireworks/neon/package.dist.json b/palettes/fireworks/neon/package.dist.json index 274b57cdecb..24df75746a1 100644 --- a/palettes/fireworks/neon/package.dist.json +++ b/palettes/fireworks/neon/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-neon", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks neon palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/neon/package.json b/palettes/fireworks/neon/package.json index dee9cba69ad..11be8c0c242 100644 --- a/palettes/fireworks/neon/package.json +++ b/palettes/fireworks/neon/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-neon", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks neon palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/neonStroke/CHANGELOG.md b/palettes/fireworks/neonStroke/CHANGELOG.md index f2dbc33defe..1a93df2ecf4 100644 --- a/palettes/fireworks/neonStroke/CHANGELOG.md +++ b/palettes/fireworks/neonStroke/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-neon-stroke + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-fireworks-neon-stroke diff --git a/palettes/fireworks/neonStroke/package.dist.json b/palettes/fireworks/neonStroke/package.dist.json index 0bbabc31d6a..502d852324b 100644 --- a/palettes/fireworks/neonStroke/package.dist.json +++ b/palettes/fireworks/neonStroke/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-neon-stroke", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks neon stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/neonStroke/package.json b/palettes/fireworks/neonStroke/package.json index 7bd230aebdd..c72933b62ee 100644 --- a/palettes/fireworks/neonStroke/package.json +++ b/palettes/fireworks/neonStroke/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-neon-stroke", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks neon stroke palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/pastel/CHANGELOG.md b/palettes/fireworks/pastel/CHANGELOG.md index 8c54812d341..cd68488e232 100644 --- a/palettes/fireworks/pastel/CHANGELOG.md +++ b/palettes/fireworks/pastel/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-pastel + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-fireworks-pastel diff --git a/palettes/fireworks/pastel/package.dist.json b/palettes/fireworks/pastel/package.dist.json index 75a4cc4a565..1e44bbfbcb4 100644 --- a/palettes/fireworks/pastel/package.dist.json +++ b/palettes/fireworks/pastel/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-pastel", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks pastel palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/pastel/package.json b/palettes/fireworks/pastel/package.json index 3968554171a..455cb122cb4 100644 --- a/palettes/fireworks/pastel/package.json +++ b/palettes/fireworks/pastel/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-pastel", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks pastel palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/pastelStroke/CHANGELOG.md b/palettes/fireworks/pastelStroke/CHANGELOG.md index 2d29d3ecac3..1f31c5ce13c 100644 --- a/palettes/fireworks/pastelStroke/CHANGELOG.md +++ b/palettes/fireworks/pastelStroke/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-pastel-stroke + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-fireworks-pastel-stroke diff --git a/palettes/fireworks/pastelStroke/package.dist.json b/palettes/fireworks/pastelStroke/package.dist.json index 441e2686f62..0470c8b389d 100644 --- a/palettes/fireworks/pastelStroke/package.dist.json +++ b/palettes/fireworks/pastelStroke/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-pastel-stroke", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks pastel stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/pastelStroke/package.json b/palettes/fireworks/pastelStroke/package.json index fc13fcb9957..913fd40094e 100644 --- a/palettes/fireworks/pastelStroke/package.json +++ b/palettes/fireworks/pastelStroke/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-pastel-stroke", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks pastel stroke palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/purple/CHANGELOG.md b/palettes/fireworks/purple/CHANGELOG.md index 794eaffd32c..ef15aecdd51 100644 --- a/palettes/fireworks/purple/CHANGELOG.md +++ b/palettes/fireworks/purple/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-purple + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-fireworks-purple diff --git a/palettes/fireworks/purple/package.dist.json b/palettes/fireworks/purple/package.dist.json index 0a5a954a036..6265f7bd655 100644 --- a/palettes/fireworks/purple/package.dist.json +++ b/palettes/fireworks/purple/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-purple", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks purple palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/purple/package.json b/palettes/fireworks/purple/package.json index 2c0d2d6f595..36139eb24e2 100644 --- a/palettes/fireworks/purple/package.json +++ b/palettes/fireworks/purple/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-purple", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks purple palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/purpleStroke/CHANGELOG.md b/palettes/fireworks/purpleStroke/CHANGELOG.md index 2a4d558d63b..9fddb61598e 100644 --- a/palettes/fireworks/purpleStroke/CHANGELOG.md +++ b/palettes/fireworks/purpleStroke/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-purple-stroke + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-fireworks-purple-stroke diff --git a/palettes/fireworks/purpleStroke/package.dist.json b/palettes/fireworks/purpleStroke/package.dist.json index 5eb3cc37710..e2b6d482616 100644 --- a/palettes/fireworks/purpleStroke/package.dist.json +++ b/palettes/fireworks/purpleStroke/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-purple-stroke", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks purple stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/purpleStroke/package.json b/palettes/fireworks/purpleStroke/package.json index b98b74be10f..896e434fb68 100644 --- a/palettes/fireworks/purpleStroke/package.json +++ b/palettes/fireworks/purpleStroke/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-purple-stroke", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks purple stroke palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/rainbow/CHANGELOG.md b/palettes/fireworks/rainbow/CHANGELOG.md index 903563467ef..befc92f35d8 100644 --- a/palettes/fireworks/rainbow/CHANGELOG.md +++ b/palettes/fireworks/rainbow/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-rainbow + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-fireworks-rainbow diff --git a/palettes/fireworks/rainbow/package.dist.json b/palettes/fireworks/rainbow/package.dist.json index 185a7239cd5..d0e78a9176a 100644 --- a/palettes/fireworks/rainbow/package.dist.json +++ b/palettes/fireworks/rainbow/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-rainbow", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks rainbow palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/rainbow/package.json b/palettes/fireworks/rainbow/package.json index 5f02084a6d6..9604af18bbe 100644 --- a/palettes/fireworks/rainbow/package.json +++ b/palettes/fireworks/rainbow/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-rainbow", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks rainbow palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/rainbowStroke/CHANGELOG.md b/palettes/fireworks/rainbowStroke/CHANGELOG.md index d7580722166..3176b94df5d 100644 --- a/palettes/fireworks/rainbowStroke/CHANGELOG.md +++ b/palettes/fireworks/rainbowStroke/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-rainbow-stroke + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-fireworks-rainbow-stroke diff --git a/palettes/fireworks/rainbowStroke/package.dist.json b/palettes/fireworks/rainbowStroke/package.dist.json index 9ee884bb1b9..9133b354734 100644 --- a/palettes/fireworks/rainbowStroke/package.dist.json +++ b/palettes/fireworks/rainbowStroke/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-rainbow-stroke", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks rainbow stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/rainbowStroke/package.json b/palettes/fireworks/rainbowStroke/package.json index 11dd4413193..9ce104603fc 100644 --- a/palettes/fireworks/rainbowStroke/package.json +++ b/palettes/fireworks/rainbowStroke/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-rainbow-stroke", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks rainbow stroke palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/red/CHANGELOG.md b/palettes/fireworks/red/CHANGELOG.md index 00b298992bf..44ab2eabf4d 100644 --- a/palettes/fireworks/red/CHANGELOG.md +++ b/palettes/fireworks/red/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-red + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-fireworks-red diff --git a/palettes/fireworks/red/package.dist.json b/palettes/fireworks/red/package.dist.json index 01ee0e2d959..f61d748a0f7 100644 --- a/palettes/fireworks/red/package.dist.json +++ b/palettes/fireworks/red/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-red", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks red palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/red/package.json b/palettes/fireworks/red/package.json index 985bef911d6..ab7de5b8824 100644 --- a/palettes/fireworks/red/package.json +++ b/palettes/fireworks/red/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-red", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks red palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/redStroke/CHANGELOG.md b/palettes/fireworks/redStroke/CHANGELOG.md index a366ab96cb6..4c2ade95a8d 100644 --- a/palettes/fireworks/redStroke/CHANGELOG.md +++ b/palettes/fireworks/redStroke/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-red-stroke + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-fireworks-red-stroke diff --git a/palettes/fireworks/redStroke/package.dist.json b/palettes/fireworks/redStroke/package.dist.json index 66ed1b57533..17efcb3494b 100644 --- a/palettes/fireworks/redStroke/package.dist.json +++ b/palettes/fireworks/redStroke/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-red-stroke", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks red stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/redStroke/package.json b/palettes/fireworks/redStroke/package.json index 858f3d98dac..333372cab4b 100644 --- a/palettes/fireworks/redStroke/package.json +++ b/palettes/fireworks/redStroke/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-red-stroke", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks red stroke palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/silver/CHANGELOG.md b/palettes/fireworks/silver/CHANGELOG.md index 0ef71e6215b..e36aa5b5a05 100644 --- a/palettes/fireworks/silver/CHANGELOG.md +++ b/palettes/fireworks/silver/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-silver + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-fireworks-silver diff --git a/palettes/fireworks/silver/package.dist.json b/palettes/fireworks/silver/package.dist.json index ee1cf8ff732..58b2f33ea16 100644 --- a/palettes/fireworks/silver/package.dist.json +++ b/palettes/fireworks/silver/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-silver", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks silver palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/silver/package.json b/palettes/fireworks/silver/package.json index 37182c1254f..df54d1f6548 100644 --- a/palettes/fireworks/silver/package.json +++ b/palettes/fireworks/silver/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-silver", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks silver palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/silverStroke/CHANGELOG.md b/palettes/fireworks/silverStroke/CHANGELOG.md index 703ed803c39..18d5e74231c 100644 --- a/palettes/fireworks/silverStroke/CHANGELOG.md +++ b/palettes/fireworks/silverStroke/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-silver-stroke + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-fireworks-silver-stroke diff --git a/palettes/fireworks/silverStroke/package.dist.json b/palettes/fireworks/silverStroke/package.dist.json index 7e23482593e..e688f67eca5 100644 --- a/palettes/fireworks/silverStroke/package.dist.json +++ b/palettes/fireworks/silverStroke/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-silver-stroke", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks silver stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/silverStroke/package.json b/palettes/fireworks/silverStroke/package.json index 4aa154b92f6..81817d34224 100644 --- a/palettes/fireworks/silverStroke/package.json +++ b/palettes/fireworks/silverStroke/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-silver-stroke", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks silver stroke palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/apple-green/CHANGELOG.md b/palettes/food/apple-green/CHANGELOG.md index d051312d961..dc54f8a9ff7 100644 --- a/palettes/food/apple-green/CHANGELOG.md +++ b/palettes/food/apple-green/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-apple-green + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-apple-green diff --git a/palettes/food/apple-green/package.dist.json b/palettes/food/apple-green/package.dist.json index edb47955058..7ba46166cfd 100644 --- a/palettes/food/apple-green/package.dist.json +++ b/palettes/food/apple-green/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-apple-green", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles apple green palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/apple-green/package.json b/palettes/food/apple-green/package.json index afabefad1e5..872dfcfa407 100644 --- a/palettes/food/apple-green/package.json +++ b/palettes/food/apple-green/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-apple-green", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles apple green palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/apple-red/CHANGELOG.md b/palettes/food/apple-red/CHANGELOG.md index f3bdbea2869..c110581e36b 100644 --- a/palettes/food/apple-red/CHANGELOG.md +++ b/palettes/food/apple-red/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-apple-red + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-apple-red diff --git a/palettes/food/apple-red/package.dist.json b/palettes/food/apple-red/package.dist.json index 4fd107c8b78..6abed3a9d72 100644 --- a/palettes/food/apple-red/package.dist.json +++ b/palettes/food/apple-red/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-apple-red", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles apple red palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/apple-red/package.json b/palettes/food/apple-red/package.json index 9ebf347879a..46dc5990f57 100644 --- a/palettes/food/apple-red/package.json +++ b/palettes/food/apple-red/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-apple-red", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles apple red palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/apple/CHANGELOG.md b/palettes/food/apple/CHANGELOG.md index 88f51a512e2..c808f03d242 100644 --- a/palettes/food/apple/CHANGELOG.md +++ b/palettes/food/apple/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-apple + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-apple diff --git a/palettes/food/apple/package.dist.json b/palettes/food/apple/package.dist.json index a642882e3d8..bda555bb2d8 100644 --- a/palettes/food/apple/package.dist.json +++ b/palettes/food/apple/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-apple", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles apple palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/apple/package.json b/palettes/food/apple/package.json index 100d95d9902..819e4a18c32 100644 --- a/palettes/food/apple/package.json +++ b/palettes/food/apple/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-apple", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles apple palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/avocado/CHANGELOG.md b/palettes/food/avocado/CHANGELOG.md index 074ffa2429d..8df721eb904 100644 --- a/palettes/food/avocado/CHANGELOG.md +++ b/palettes/food/avocado/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-avocado + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-avocado diff --git a/palettes/food/avocado/package.dist.json b/palettes/food/avocado/package.dist.json index 9ac577822bd..30004499bdd 100644 --- a/palettes/food/avocado/package.dist.json +++ b/palettes/food/avocado/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-avocado", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles avocado palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/avocado/package.json b/palettes/food/avocado/package.json index 36ac4471125..60f96484aab 100644 --- a/palettes/food/avocado/package.json +++ b/palettes/food/avocado/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-avocado", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles avocado palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/bell-peppers/CHANGELOG.md b/palettes/food/bell-peppers/CHANGELOG.md index a73c571d5e7..135f620956a 100644 --- a/palettes/food/bell-peppers/CHANGELOG.md +++ b/palettes/food/bell-peppers/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-bell-peppers + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-bell-peppers diff --git a/palettes/food/bell-peppers/package.dist.json b/palettes/food/bell-peppers/package.dist.json index ba7e2b6eb1f..3fe04e130c6 100644 --- a/palettes/food/bell-peppers/package.dist.json +++ b/palettes/food/bell-peppers/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-bell-peppers", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles bell peppers palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/bell-peppers/package.json b/palettes/food/bell-peppers/package.json index 2c4e80b5114..d9d87ec389d 100644 --- a/palettes/food/bell-peppers/package.json +++ b/palettes/food/bell-peppers/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-bell-peppers", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles bell peppers palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/berries/CHANGELOG.md b/palettes/food/berries/CHANGELOG.md index 37b161f3c37..60f8e302623 100644 --- a/palettes/food/berries/CHANGELOG.md +++ b/palettes/food/berries/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-berries + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-berries diff --git a/palettes/food/berries/package.dist.json b/palettes/food/berries/package.dist.json index 838b5704f8b..952c5090725 100644 --- a/palettes/food/berries/package.dist.json +++ b/palettes/food/berries/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-berries", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles berries palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/berries/package.json b/palettes/food/berries/package.json index 1d81eaac3e3..55c793d86a3 100644 --- a/palettes/food/berries/package.json +++ b/palettes/food/berries/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-berries", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles berries palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/cherry/CHANGELOG.md b/palettes/food/cherry/CHANGELOG.md index 307c6044da4..15263ed0304 100644 --- a/palettes/food/cherry/CHANGELOG.md +++ b/palettes/food/cherry/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-cherry + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-cherry diff --git a/palettes/food/cherry/package.dist.json b/palettes/food/cherry/package.dist.json index cbb03f55f29..b7256223d66 100644 --- a/palettes/food/cherry/package.dist.json +++ b/palettes/food/cherry/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-cherry", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles cherry palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/cherry/package.json b/palettes/food/cherry/package.json index 4aeaae0cb80..3ed04ef7a90 100644 --- a/palettes/food/cherry/package.json +++ b/palettes/food/cherry/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-cherry", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles cherry palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/citrus-twist/CHANGELOG.md b/palettes/food/citrus-twist/CHANGELOG.md index b1f54e47786..e292419354c 100644 --- a/palettes/food/citrus-twist/CHANGELOG.md +++ b/palettes/food/citrus-twist/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-citrus-twist + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-citrus-twist diff --git a/palettes/food/citrus-twist/package.dist.json b/palettes/food/citrus-twist/package.dist.json index 06c3a0dc871..49b23350c73 100644 --- a/palettes/food/citrus-twist/package.dist.json +++ b/palettes/food/citrus-twist/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-citrus-twist", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles citrus twist palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/citrus-twist/package.json b/palettes/food/citrus-twist/package.json index 7b92c765e49..b41ddcd29fb 100644 --- a/palettes/food/citrus-twist/package.json +++ b/palettes/food/citrus-twist/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-citrus-twist", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles citrus twist palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/gingerbread-house/CHANGELOG.md b/palettes/food/gingerbread-house/CHANGELOG.md index 7e339a0433c..f6415cbb975 100644 --- a/palettes/food/gingerbread-house/CHANGELOG.md +++ b/palettes/food/gingerbread-house/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-gingerbread-house + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-gingerbread-house diff --git a/palettes/food/gingerbread-house/package.dist.json b/palettes/food/gingerbread-house/package.dist.json index 71ce574c097..a5d7716c1b2 100644 --- a/palettes/food/gingerbread-house/package.dist.json +++ b/palettes/food/gingerbread-house/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-gingerbread-house", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles gingerbread house palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/gingerbread-house/package.json b/palettes/food/gingerbread-house/package.json index f09b412f0a5..dacb3684cca 100644 --- a/palettes/food/gingerbread-house/package.json +++ b/palettes/food/gingerbread-house/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-gingerbread-house", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles gingerbread house palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/grapes/CHANGELOG.md b/palettes/food/grapes/CHANGELOG.md index 6d5e0bc7930..79640ed69ac 100644 --- a/palettes/food/grapes/CHANGELOG.md +++ b/palettes/food/grapes/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-grapes + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-grapes diff --git a/palettes/food/grapes/package.dist.json b/palettes/food/grapes/package.dist.json index 8a186ef51d5..7e6a0ba92d5 100644 --- a/palettes/food/grapes/package.dist.json +++ b/palettes/food/grapes/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-grapes", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles grapes palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/grapes/package.json b/palettes/food/grapes/package.json index ca5b251d9a5..7ba90fd4ea2 100644 --- a/palettes/food/grapes/package.json +++ b/palettes/food/grapes/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-grapes", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles grapes palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/macaron/CHANGELOG.md b/palettes/food/macaron/CHANGELOG.md index 466b2f389b2..6db3b4f1eef 100644 --- a/palettes/food/macaron/CHANGELOG.md +++ b/palettes/food/macaron/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-macaron + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-macaron diff --git a/palettes/food/macaron/package.dist.json b/palettes/food/macaron/package.dist.json index aed49741b69..f492b86cc52 100644 --- a/palettes/food/macaron/package.dist.json +++ b/palettes/food/macaron/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-macaron", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles macaron palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/macaron/package.json b/palettes/food/macaron/package.json index 499beca56ac..85c9110ba21 100644 --- a/palettes/food/macaron/package.json +++ b/palettes/food/macaron/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-macaron", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles macaron palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/melon/CHANGELOG.md b/palettes/food/melon/CHANGELOG.md index 28489a852e6..9deb399c258 100644 --- a/palettes/food/melon/CHANGELOG.md +++ b/palettes/food/melon/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-melon + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-melon diff --git a/palettes/food/melon/package.dist.json b/palettes/food/melon/package.dist.json index a9cceb0e468..c3d46f0bba5 100644 --- a/palettes/food/melon/package.dist.json +++ b/palettes/food/melon/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-melon", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles melon palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/melon/package.json b/palettes/food/melon/package.json index b2652f27e69..34672dad44d 100644 --- a/palettes/food/melon/package.json +++ b/palettes/food/melon/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-melon", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles melon palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/pineapple/CHANGELOG.md b/palettes/food/pineapple/CHANGELOG.md index 27ff05bbdb8..142f4c9b05d 100644 --- a/palettes/food/pineapple/CHANGELOG.md +++ b/palettes/food/pineapple/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-pineapple + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-pineapple diff --git a/palettes/food/pineapple/package.dist.json b/palettes/food/pineapple/package.dist.json index 0e059d44a39..9f76ab79867 100644 --- a/palettes/food/pineapple/package.dist.json +++ b/palettes/food/pineapple/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pineapple", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles pineapple palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/pineapple/package.json b/palettes/food/pineapple/package.json index c85e01126a5..3e25fe4a2df 100644 --- a/palettes/food/pineapple/package.json +++ b/palettes/food/pineapple/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pineapple", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles pineapple palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/pizza/CHANGELOG.md b/palettes/food/pizza/CHANGELOG.md index 5fb5796624d..8c8225dc643 100644 --- a/palettes/food/pizza/CHANGELOG.md +++ b/palettes/food/pizza/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-pizza + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-pizza diff --git a/palettes/food/pizza/package.dist.json b/palettes/food/pizza/package.dist.json index 23758a17dc5..c839ba6b1d2 100644 --- a/palettes/food/pizza/package.dist.json +++ b/palettes/food/pizza/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pizza", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles pizza palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/pizza/package.json b/palettes/food/pizza/package.json index d557eab6722..f82080ae7c2 100644 --- a/palettes/food/pizza/package.json +++ b/palettes/food/pizza/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pizza", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles pizza palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/sakura/CHANGELOG.md b/palettes/food/sakura/CHANGELOG.md index 1b7086114e8..74bff4e23d7 100644 --- a/palettes/food/sakura/CHANGELOG.md +++ b/palettes/food/sakura/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-sakura + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-sakura diff --git a/palettes/food/sakura/package.dist.json b/palettes/food/sakura/package.dist.json index 2c57018c143..870331100dc 100644 --- a/palettes/food/sakura/package.dist.json +++ b/palettes/food/sakura/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-sakura", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles sakura palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/sakura/package.json b/palettes/food/sakura/package.json index de8be697f68..1218a2b9a34 100644 --- a/palettes/food/sakura/package.json +++ b/palettes/food/sakura/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-sakura", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles sakura palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/salad/CHANGELOG.md b/palettes/food/salad/CHANGELOG.md index 7da9b45d644..f59622f3b35 100644 --- a/palettes/food/salad/CHANGELOG.md +++ b/palettes/food/salad/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-salad + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-salad diff --git a/palettes/food/salad/package.dist.json b/palettes/food/salad/package.dist.json index 4b9bf116bfb..660ab4c52fb 100644 --- a/palettes/food/salad/package.dist.json +++ b/palettes/food/salad/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-salad", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles salad palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/salad/package.json b/palettes/food/salad/package.json index 6323debcfda..601332aa420 100644 --- a/palettes/food/salad/package.json +++ b/palettes/food/salad/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-salad", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles salad palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/spice-rack/CHANGELOG.md b/palettes/food/spice-rack/CHANGELOG.md index f28dcee9cf5..04fa2fe759e 100644 --- a/palettes/food/spice-rack/CHANGELOG.md +++ b/palettes/food/spice-rack/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-spice-rack + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-spice-rack diff --git a/palettes/food/spice-rack/package.dist.json b/palettes/food/spice-rack/package.dist.json index aa7e43bd864..256d6c47e58 100644 --- a/palettes/food/spice-rack/package.dist.json +++ b/palettes/food/spice-rack/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-spice-rack", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles spice rack palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/spice-rack/package.json b/palettes/food/spice-rack/package.json index 4864915d960..eef3abd4c23 100644 --- a/palettes/food/spice-rack/package.json +++ b/palettes/food/spice-rack/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-spice-rack", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles spice rack palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/steak/CHANGELOG.md b/palettes/food/steak/CHANGELOG.md index b72dd313837..4c75485bfc7 100644 --- a/palettes/food/steak/CHANGELOG.md +++ b/palettes/food/steak/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-steak + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-steak diff --git a/palettes/food/steak/package.dist.json b/palettes/food/steak/package.dist.json index 671a658689c..ffc0891c4be 100644 --- a/palettes/food/steak/package.dist.json +++ b/palettes/food/steak/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-steak", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles steak palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/steak/package.json b/palettes/food/steak/package.json index cc2c2b7e32a..069d86cb193 100644 --- a/palettes/food/steak/package.json +++ b/palettes/food/steak/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-steak", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles steak palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/sushi/CHANGELOG.md b/palettes/food/sushi/CHANGELOG.md index 8e088aa4614..69ceaaf3a89 100644 --- a/palettes/food/sushi/CHANGELOG.md +++ b/palettes/food/sushi/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-sushi + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-sushi diff --git a/palettes/food/sushi/package.dist.json b/palettes/food/sushi/package.dist.json index 7b6baadc217..8a2952bd32b 100644 --- a/palettes/food/sushi/package.dist.json +++ b/palettes/food/sushi/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-sushi", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles sushi palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/sushi/package.json b/palettes/food/sushi/package.json index d1c6eb93e1d..5209b94143f 100644 --- a/palettes/food/sushi/package.json +++ b/palettes/food/sushi/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-sushi", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles sushi palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/tropical-fruits/CHANGELOG.md b/palettes/food/tropical-fruits/CHANGELOG.md index 7d417ebd710..820d254d911 100644 --- a/palettes/food/tropical-fruits/CHANGELOG.md +++ b/palettes/food/tropical-fruits/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-tropical-fruits + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-tropical-fruits diff --git a/palettes/food/tropical-fruits/package.dist.json b/palettes/food/tropical-fruits/package.dist.json index 9f90fd4d416..a4c69b5dabc 100644 --- a/palettes/food/tropical-fruits/package.dist.json +++ b/palettes/food/tropical-fruits/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-tropical-fruits", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles tropical fruits palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/tropical-fruits/package.json b/palettes/food/tropical-fruits/package.json index bc777c6bc19..f70fff30406 100644 --- a/palettes/food/tropical-fruits/package.json +++ b/palettes/food/tropical-fruits/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-tropical-fruits", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles tropical fruits palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/watermelon/CHANGELOG.md b/palettes/food/watermelon/CHANGELOG.md index 96a4f2fefb2..67ba1f9d498 100644 --- a/palettes/food/watermelon/CHANGELOG.md +++ b/palettes/food/watermelon/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-watermelon + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-watermelon diff --git a/palettes/food/watermelon/package.dist.json b/palettes/food/watermelon/package.dist.json index ce29f7d1c3f..abf423cfe10 100644 --- a/palettes/food/watermelon/package.dist.json +++ b/palettes/food/watermelon/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-watermelon", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles watermelon palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/watermelon/package.json b/palettes/food/watermelon/package.json index ba2aae797f6..a4bb6751dc6 100644 --- a/palettes/food/watermelon/package.json +++ b/palettes/food/watermelon/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-watermelon", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles watermelon palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/gaming/minecraft/CHANGELOG.md b/palettes/gaming/minecraft/CHANGELOG.md index 017267a905c..004816fc45b 100644 --- a/palettes/gaming/minecraft/CHANGELOG.md +++ b/palettes/gaming/minecraft/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-minecraft + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-minecraft diff --git a/palettes/gaming/minecraft/package.dist.json b/palettes/gaming/minecraft/package.dist.json index ac529996163..f5257d3af0a 100644 --- a/palettes/gaming/minecraft/package.dist.json +++ b/palettes/gaming/minecraft/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-minecraft", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles minecraft palette", "homepage": "https://particles.js.org", "repository": { @@ -108,7 +108,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-palette-minecraft.min.js", diff --git a/palettes/gaming/minecraft/package.json b/palettes/gaming/minecraft/package.json index 7c3bfda1edc..5b1b1cc051f 100644 --- a/palettes/gaming/minecraft/package.json +++ b/palettes/gaming/minecraft/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-minecraft", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles minecraft palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/gaming/pacman/CHANGELOG.md b/palettes/gaming/pacman/CHANGELOG.md index 45bb4d87a4d..e8905211531 100644 --- a/palettes/gaming/pacman/CHANGELOG.md +++ b/palettes/gaming/pacman/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-pacman + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-pacman diff --git a/palettes/gaming/pacman/package.dist.json b/palettes/gaming/pacman/package.dist.json index 1f3778182d1..9e218bfedfa 100644 --- a/palettes/gaming/pacman/package.dist.json +++ b/palettes/gaming/pacman/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pacman", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles pacman palette", "homepage": "https://particles.js.org", "repository": { @@ -108,7 +108,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-palette-pacman.min.js", diff --git a/palettes/gaming/pacman/package.json b/palettes/gaming/pacman/package.json index db2e8f5927e..c3b1a33060f 100644 --- a/palettes/gaming/pacman/package.json +++ b/palettes/gaming/pacman/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pacman", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles pacman palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/gaming/superMarioBros/CHANGELOG.md b/palettes/gaming/superMarioBros/CHANGELOG.md index 28f5d4a5876..1c17c610667 100644 --- a/palettes/gaming/superMarioBros/CHANGELOG.md +++ b/palettes/gaming/superMarioBros/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-super-mario-bros + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-super-mario-bros diff --git a/palettes/gaming/superMarioBros/package.dist.json b/palettes/gaming/superMarioBros/package.dist.json index d37551f6a89..73089b5f230 100644 --- a/palettes/gaming/superMarioBros/package.dist.json +++ b/palettes/gaming/superMarioBros/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-super-mario-bros", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles super mario bros palette", "homepage": "https://particles.js.org", "repository": { @@ -108,7 +108,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-palette-super-mario-bros.min.js", diff --git a/palettes/gaming/superMarioBros/package.json b/palettes/gaming/superMarioBros/package.json index f98678f233d..21f5cb620e4 100644 --- a/palettes/gaming/superMarioBros/package.json +++ b/palettes/gaming/superMarioBros/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-super-mario-bros", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles super mario bros palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/gaming/tetris/CHANGELOG.md b/palettes/gaming/tetris/CHANGELOG.md index 057b69b2ee3..8787d751624 100644 --- a/palettes/gaming/tetris/CHANGELOG.md +++ b/palettes/gaming/tetris/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-tetris + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-tetris diff --git a/palettes/gaming/tetris/package.dist.json b/palettes/gaming/tetris/package.dist.json index 7e974fe946b..70aa1f14f00 100644 --- a/palettes/gaming/tetris/package.dist.json +++ b/palettes/gaming/tetris/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-tetris", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles tetris palette", "homepage": "https://particles.js.org", "repository": { @@ -108,7 +108,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-palette-tetris.min.js", diff --git a/palettes/gaming/tetris/package.json b/palettes/gaming/tetris/package.json index 7f25d2e8710..d270c8121da 100644 --- a/palettes/gaming/tetris/package.json +++ b/palettes/gaming/tetris/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-tetris", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles tetris palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/impact/bulletHit/CHANGELOG.md b/palettes/impact/bulletHit/CHANGELOG.md index 470f9831896..adf905b0d29 100644 --- a/palettes/impact/bulletHit/CHANGELOG.md +++ b/palettes/impact/bulletHit/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-bullet-hit + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-bullet-hit diff --git a/palettes/impact/bulletHit/package.dist.json b/palettes/impact/bulletHit/package.dist.json index 981c36b00ed..e92f3e9dddd 100644 --- a/palettes/impact/bulletHit/package.dist.json +++ b/palettes/impact/bulletHit/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-bullet-hit", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles bullet hit impact palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/impact/bulletHit/package.json b/palettes/impact/bulletHit/package.json index 499501b619e..1d66c576677 100644 --- a/palettes/impact/bulletHit/package.json +++ b/palettes/impact/bulletHit/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-bullet-hit", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles bullet hit impact palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/impact/explosionDebris/CHANGELOG.md b/palettes/impact/explosionDebris/CHANGELOG.md index d8b2a1eb3f4..8939e5fdc31 100644 --- a/palettes/impact/explosionDebris/CHANGELOG.md +++ b/palettes/impact/explosionDebris/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-explosion-debris + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-explosion-debris diff --git a/palettes/impact/explosionDebris/package.dist.json b/palettes/impact/explosionDebris/package.dist.json index ae2bc5afb92..1d245147d76 100644 --- a/palettes/impact/explosionDebris/package.dist.json +++ b/palettes/impact/explosionDebris/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-explosion-debris", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles explosion - debris palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/impact/explosionDebris/package.json b/palettes/impact/explosionDebris/package.json index d16c18b85cd..41d1916cc56 100644 --- a/palettes/impact/explosionDebris/package.json +++ b/palettes/impact/explosionDebris/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-explosion-debris", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles explosion - debris palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/impact/glassBurst/CHANGELOG.md b/palettes/impact/glassBurst/CHANGELOG.md index 375ea062c34..eb3908c62be 100644 --- a/palettes/impact/glassBurst/CHANGELOG.md +++ b/palettes/impact/glassBurst/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-glass-burst + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-glass-burst diff --git a/palettes/impact/glassBurst/package.dist.json b/palettes/impact/glassBurst/package.dist.json index d66d5821cca..d4e6213e4bb 100644 --- a/palettes/impact/glassBurst/package.dist.json +++ b/palettes/impact/glassBurst/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-glass-burst", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles glass burst impact palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/impact/glassBurst/package.json b/palettes/impact/glassBurst/package.json index a02a9d36833..0ca6d215d1e 100644 --- a/palettes/impact/glassBurst/package.json +++ b/palettes/impact/glassBurst/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-glass-burst", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles glass burst impact palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/impact/meteorImpact/CHANGELOG.md b/palettes/impact/meteorImpact/CHANGELOG.md index 17dc848eb11..e0e511b802d 100644 --- a/palettes/impact/meteorImpact/CHANGELOG.md +++ b/palettes/impact/meteorImpact/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-meteor-impact + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-meteor-impact diff --git a/palettes/impact/meteorImpact/package.dist.json b/palettes/impact/meteorImpact/package.dist.json index a70a76e8312..e8735a02919 100644 --- a/palettes/impact/meteorImpact/package.dist.json +++ b/palettes/impact/meteorImpact/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-meteor-impact", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles meteor impact palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/impact/meteorImpact/package.json b/palettes/impact/meteorImpact/package.json index 22c2dcd2f25..6c62116d1b8 100644 --- a/palettes/impact/meteorImpact/package.json +++ b/palettes/impact/meteorImpact/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-meteor-impact", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles meteor impact palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/impact/nuclearGlow/CHANGELOG.md b/palettes/impact/nuclearGlow/CHANGELOG.md index 2490464c49f..e66ccaf072f 100644 --- a/palettes/impact/nuclearGlow/CHANGELOG.md +++ b/palettes/impact/nuclearGlow/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-nuclear-glow + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-nuclear-glow diff --git a/palettes/impact/nuclearGlow/package.dist.json b/palettes/impact/nuclearGlow/package.dist.json index 9fd10dae4ad..a9f9c2503d5 100644 --- a/palettes/impact/nuclearGlow/package.dist.json +++ b/palettes/impact/nuclearGlow/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-nuclear-glow", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles nuclear glow impact palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/impact/nuclearGlow/package.json b/palettes/impact/nuclearGlow/package.json index 3eabdaef158..9cde77741f1 100644 --- a/palettes/impact/nuclearGlow/package.json +++ b/palettes/impact/nuclearGlow/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-nuclear-glow", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles nuclear glow impact palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/impact/shockwaveBlast/CHANGELOG.md b/palettes/impact/shockwaveBlast/CHANGELOG.md index b6845aa6da6..fced534d02f 100644 --- a/palettes/impact/shockwaveBlast/CHANGELOG.md +++ b/palettes/impact/shockwaveBlast/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-shockwave-blast + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-shockwave-blast diff --git a/palettes/impact/shockwaveBlast/package.dist.json b/palettes/impact/shockwaveBlast/package.dist.json index af7e16292ed..c23a359f73a 100644 --- a/palettes/impact/shockwaveBlast/package.dist.json +++ b/palettes/impact/shockwaveBlast/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-shockwave-blast", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles shockwave blast impact palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/impact/shockwaveBlast/package.json b/palettes/impact/shockwaveBlast/package.json index 8cc80810729..88b49e72d54 100644 --- a/palettes/impact/shockwaveBlast/package.json +++ b/palettes/impact/shockwaveBlast/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-shockwave-blast", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles shockwave blast impact palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/impact/splatterDark/CHANGELOG.md b/palettes/impact/splatterDark/CHANGELOG.md index 9c34fe0d015..dc4b0aa16cd 100644 --- a/palettes/impact/splatterDark/CHANGELOG.md +++ b/palettes/impact/splatterDark/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-splatter-dark + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-splatter-dark diff --git a/palettes/impact/splatterDark/package.dist.json b/palettes/impact/splatterDark/package.dist.json index 6f1e4c07717..03281f45ba8 100644 --- a/palettes/impact/splatterDark/package.dist.json +++ b/palettes/impact/splatterDark/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-splatter-dark", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles dark splatter impact palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/impact/splatterDark/package.json b/palettes/impact/splatterDark/package.json index 9b7ec0c67fc..d02e003ccf8 100644 --- a/palettes/impact/splatterDark/package.json +++ b/palettes/impact/splatterDark/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-splatter-dark", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles dark splatter impact palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/monochromatic/blues/CHANGELOG.md b/palettes/monochromatic/blues/CHANGELOG.md index e8f462d5114..4ff2bf99ce4 100644 --- a/palettes/monochromatic/blues/CHANGELOG.md +++ b/palettes/monochromatic/blues/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-blues + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-monochrome-blues diff --git a/palettes/monochromatic/blues/package.dist.json b/palettes/monochromatic/blues/package.dist.json index eccc2625129..721e461329f 100644 --- a/palettes/monochromatic/blues/package.dist.json +++ b/palettes/monochromatic/blues/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-blues", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles monochrome blues palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/monochromatic/blues/package.json b/palettes/monochromatic/blues/package.json index 1b5834b4415..06fad30c1f0 100644 --- a/palettes/monochromatic/blues/package.json +++ b/palettes/monochromatic/blues/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-blues", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles monochrome blues palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/monochromatic/brown/CHANGELOG.md b/palettes/monochromatic/brown/CHANGELOG.md index 6e4dc9e9396..f4f528b30bb 100644 --- a/palettes/monochromatic/brown/CHANGELOG.md +++ b/palettes/monochromatic/brown/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-brown + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-monochrome-brown diff --git a/palettes/monochromatic/brown/package.dist.json b/palettes/monochromatic/brown/package.dist.json index a8d1d0f21b4..8e015f6cf67 100644 --- a/palettes/monochromatic/brown/package.dist.json +++ b/palettes/monochromatic/brown/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-brown", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles monochrome brown palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/monochromatic/brown/package.json b/palettes/monochromatic/brown/package.json index 981449dd236..816fd5244d8 100644 --- a/palettes/monochromatic/brown/package.json +++ b/palettes/monochromatic/brown/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-brown", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles monochrome brown palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/monochromatic/cyan/CHANGELOG.md b/palettes/monochromatic/cyan/CHANGELOG.md index 29dcfc99159..71a841eac31 100644 --- a/palettes/monochromatic/cyan/CHANGELOG.md +++ b/palettes/monochromatic/cyan/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-cyan + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-monochrome-cyan diff --git a/palettes/monochromatic/cyan/package.dist.json b/palettes/monochromatic/cyan/package.dist.json index 745e35dd295..479e47609bc 100644 --- a/palettes/monochromatic/cyan/package.dist.json +++ b/palettes/monochromatic/cyan/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-cyan", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles monochrome cyan palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/monochromatic/cyan/package.json b/palettes/monochromatic/cyan/package.json index 2a6b25ecc30..177d8653588 100644 --- a/palettes/monochromatic/cyan/package.json +++ b/palettes/monochromatic/cyan/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-cyan", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles monochrome cyan palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/monochromatic/gold/CHANGELOG.md b/palettes/monochromatic/gold/CHANGELOG.md index 88bd4058f2e..a5dcc2b58dc 100644 --- a/palettes/monochromatic/gold/CHANGELOG.md +++ b/palettes/monochromatic/gold/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-gold + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-monochrome-gold diff --git a/palettes/monochromatic/gold/package.dist.json b/palettes/monochromatic/gold/package.dist.json index 13f05dc0a23..b4aafc1e346 100644 --- a/palettes/monochromatic/gold/package.dist.json +++ b/palettes/monochromatic/gold/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-gold", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles monochrome gold palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/monochromatic/gold/package.json b/palettes/monochromatic/gold/package.json index eab131287ca..86cab92e88e 100644 --- a/palettes/monochromatic/gold/package.json +++ b/palettes/monochromatic/gold/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-gold", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles monochrome gold palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/monochromatic/greens/CHANGELOG.md b/palettes/monochromatic/greens/CHANGELOG.md index 96012208e13..f73b8c5a7c2 100644 --- a/palettes/monochromatic/greens/CHANGELOG.md +++ b/palettes/monochromatic/greens/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-greens + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-monochrome-greens diff --git a/palettes/monochromatic/greens/package.dist.json b/palettes/monochromatic/greens/package.dist.json index b8e869709f7..88967100613 100644 --- a/palettes/monochromatic/greens/package.dist.json +++ b/palettes/monochromatic/greens/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-greens", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles monochrome greens palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/monochromatic/greens/package.json b/palettes/monochromatic/greens/package.json index 0aae5fdd903..c596ecba303 100644 --- a/palettes/monochromatic/greens/package.json +++ b/palettes/monochromatic/greens/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-greens", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles monochrome greens palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/monochromatic/noir/CHANGELOG.md b/palettes/monochromatic/noir/CHANGELOG.md index 363b61e060f..a4beb5b9b67 100644 --- a/palettes/monochromatic/noir/CHANGELOG.md +++ b/palettes/monochromatic/noir/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-noir + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-monochrome-noir diff --git a/palettes/monochromatic/noir/package.dist.json b/palettes/monochromatic/noir/package.dist.json index 426c63433e6..01562cfa929 100644 --- a/palettes/monochromatic/noir/package.dist.json +++ b/palettes/monochromatic/noir/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-noir", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles monochrome noir palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/monochromatic/noir/package.json b/palettes/monochromatic/noir/package.json index 95e3df315ff..fadae9f7822 100644 --- a/palettes/monochromatic/noir/package.json +++ b/palettes/monochromatic/noir/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-noir", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles monochrome noir palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/monochromatic/oranges/CHANGELOG.md b/palettes/monochromatic/oranges/CHANGELOG.md index 3378804452a..c4b4f3c4fc1 100644 --- a/palettes/monochromatic/oranges/CHANGELOG.md +++ b/palettes/monochromatic/oranges/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-oranges + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-monochrome-oranges diff --git a/palettes/monochromatic/oranges/package.dist.json b/palettes/monochromatic/oranges/package.dist.json index 4af87850480..b194203302a 100644 --- a/palettes/monochromatic/oranges/package.dist.json +++ b/palettes/monochromatic/oranges/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-oranges", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles monochrome oranges palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/monochromatic/oranges/package.json b/palettes/monochromatic/oranges/package.json index c7fe153b7ed..9a2c59e793f 100644 --- a/palettes/monochromatic/oranges/package.json +++ b/palettes/monochromatic/oranges/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-oranges", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles monochrome oranges palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/monochromatic/pinks/CHANGELOG.md b/palettes/monochromatic/pinks/CHANGELOG.md index a5f080b1a2c..828fddca0e4 100644 --- a/palettes/monochromatic/pinks/CHANGELOG.md +++ b/palettes/monochromatic/pinks/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-pinks + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-monochrome-pinks diff --git a/palettes/monochromatic/pinks/package.dist.json b/palettes/monochromatic/pinks/package.dist.json index 96edb0e1e04..17962ba7ba5 100644 --- a/palettes/monochromatic/pinks/package.dist.json +++ b/palettes/monochromatic/pinks/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-pinks", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles monochrome pinks palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/monochromatic/pinks/package.json b/palettes/monochromatic/pinks/package.json index 7a2376f915a..4c0e301f632 100644 --- a/palettes/monochromatic/pinks/package.json +++ b/palettes/monochromatic/pinks/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-pinks", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles monochrome pinks palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/monochromatic/purples/CHANGELOG.md b/palettes/monochromatic/purples/CHANGELOG.md index 3ac5be180e5..bf42a3a9547 100644 --- a/palettes/monochromatic/purples/CHANGELOG.md +++ b/palettes/monochromatic/purples/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-purples + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-monochrome-purples diff --git a/palettes/monochromatic/purples/package.dist.json b/palettes/monochromatic/purples/package.dist.json index 35c5cb184f2..ba0d8ab47ca 100644 --- a/palettes/monochromatic/purples/package.dist.json +++ b/palettes/monochromatic/purples/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-purples", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles monochrome purples palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/monochromatic/purples/package.json b/palettes/monochromatic/purples/package.json index 1bded488089..ea75924b43d 100644 --- a/palettes/monochromatic/purples/package.json +++ b/palettes/monochromatic/purples/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-purples", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles monochrome purples palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/monochromatic/reds/CHANGELOG.md b/palettes/monochromatic/reds/CHANGELOG.md index 02176fe7de1..93cadbdd383 100644 --- a/palettes/monochromatic/reds/CHANGELOG.md +++ b/palettes/monochromatic/reds/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-reds + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-monochrome-reds diff --git a/palettes/monochromatic/reds/package.dist.json b/palettes/monochromatic/reds/package.dist.json index e60b6f89b26..664ac5a634e 100644 --- a/palettes/monochromatic/reds/package.dist.json +++ b/palettes/monochromatic/reds/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-reds", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles monochrome reds palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/monochromatic/reds/package.json b/palettes/monochromatic/reds/package.json index 1e083fd3cdb..3c69e6cab6c 100644 --- a/palettes/monochromatic/reds/package.json +++ b/palettes/monochromatic/reds/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-reds", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles monochrome reds palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/monochromatic/silver/CHANGELOG.md b/palettes/monochromatic/silver/CHANGELOG.md index 2b5743a8c94..a9fd50b5d7b 100644 --- a/palettes/monochromatic/silver/CHANGELOG.md +++ b/palettes/monochromatic/silver/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-silver + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-monochrome-silver diff --git a/palettes/monochromatic/silver/package.dist.json b/palettes/monochromatic/silver/package.dist.json index c862861988c..073533836fd 100644 --- a/palettes/monochromatic/silver/package.dist.json +++ b/palettes/monochromatic/silver/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-silver", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles monochrome silver palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/monochromatic/silver/package.json b/palettes/monochromatic/silver/package.json index de3f98f85b9..f115a716f15 100644 --- a/palettes/monochromatic/silver/package.json +++ b/palettes/monochromatic/silver/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-silver", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles monochrome silver palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/monochromatic/teal/CHANGELOG.md b/palettes/monochromatic/teal/CHANGELOG.md index ba442802b7a..059d5430e8f 100644 --- a/palettes/monochromatic/teal/CHANGELOG.md +++ b/palettes/monochromatic/teal/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-teal + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-monochrome-teal diff --git a/palettes/monochromatic/teal/package.dist.json b/palettes/monochromatic/teal/package.dist.json index 56f97d460b5..bff336c9ad6 100644 --- a/palettes/monochromatic/teal/package.dist.json +++ b/palettes/monochromatic/teal/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-teal", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles monochrome teal palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/monochromatic/teal/package.json b/palettes/monochromatic/teal/package.json index bf317be8728..1b1046569cd 100644 --- a/palettes/monochromatic/teal/package.json +++ b/palettes/monochromatic/teal/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-teal", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles monochrome teal palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/monochromatic/white/CHANGELOG.md b/palettes/monochromatic/white/CHANGELOG.md index 92e5259f995..0314af62115 100644 --- a/palettes/monochromatic/white/CHANGELOG.md +++ b/palettes/monochromatic/white/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-white + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-monochrome-white diff --git a/palettes/monochromatic/white/package.dist.json b/palettes/monochromatic/white/package.dist.json index a79a00c0817..3c235c7776f 100644 --- a/palettes/monochromatic/white/package.dist.json +++ b/palettes/monochromatic/white/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-white", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles monochrome white palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/monochromatic/white/package.json b/palettes/monochromatic/white/package.json index d99ade78439..74f712fceee 100644 --- a/palettes/monochromatic/white/package.json +++ b/palettes/monochromatic/white/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-white", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles monochrome white palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/monochromatic/yellows/CHANGELOG.md b/palettes/monochromatic/yellows/CHANGELOG.md index daef1cc1976..3b2ff5570eb 100644 --- a/palettes/monochromatic/yellows/CHANGELOG.md +++ b/palettes/monochromatic/yellows/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-yellows + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-monochrome-yellows diff --git a/palettes/monochromatic/yellows/package.dist.json b/palettes/monochromatic/yellows/package.dist.json index 1b75cd6db6c..fbfcb9e919e 100644 --- a/palettes/monochromatic/yellows/package.dist.json +++ b/palettes/monochromatic/yellows/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-yellows", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles monochrome yellows palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/monochromatic/yellows/package.json b/palettes/monochromatic/yellows/package.json index 382e872de82..0155aa82df9 100644 --- a/palettes/monochromatic/yellows/package.json +++ b/palettes/monochromatic/yellows/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-yellows", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles monochrome yellows palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/nature/autumnLeaves/CHANGELOG.md b/palettes/nature/autumnLeaves/CHANGELOG.md index 8cba66bd966..ff8ac5b9087 100644 --- a/palettes/nature/autumnLeaves/CHANGELOG.md +++ b/palettes/nature/autumnLeaves/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-autumn-leaves + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-autumn-leaves diff --git a/palettes/nature/autumnLeaves/package.dist.json b/palettes/nature/autumnLeaves/package.dist.json index 5c711d10759..b45d643dd99 100644 --- a/palettes/nature/autumnLeaves/package.dist.json +++ b/palettes/nature/autumnLeaves/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-autumn-leaves", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles autumn leaves palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/nature/autumnLeaves/package.json b/palettes/nature/autumnLeaves/package.json index e105048b36a..e56dd5c012c 100644 --- a/palettes/nature/autumnLeaves/package.json +++ b/palettes/nature/autumnLeaves/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-autumn-leaves", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles autumn leaves palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/nature/cherryBlossom/CHANGELOG.md b/palettes/nature/cherryBlossom/CHANGELOG.md index fdfb888f50d..d5035c8a43f 100644 --- a/palettes/nature/cherryBlossom/CHANGELOG.md +++ b/palettes/nature/cherryBlossom/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-cherry-blossom + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-cherry-blossom diff --git a/palettes/nature/cherryBlossom/package.dist.json b/palettes/nature/cherryBlossom/package.dist.json index 921afe7d7d9..8e2ee712106 100644 --- a/palettes/nature/cherryBlossom/package.dist.json +++ b/palettes/nature/cherryBlossom/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-cherry-blossom", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles cherry blossom palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/nature/cherryBlossom/package.json b/palettes/nature/cherryBlossom/package.json index 9493b1e0638..26b7142571e 100644 --- a/palettes/nature/cherryBlossom/package.json +++ b/palettes/nature/cherryBlossom/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-cherry-blossom", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles cherry blossom palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/nature/dandelionSeeds/CHANGELOG.md b/palettes/nature/dandelionSeeds/CHANGELOG.md index ee1ff18f225..680cb200e72 100644 --- a/palettes/nature/dandelionSeeds/CHANGELOG.md +++ b/palettes/nature/dandelionSeeds/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-dandelion-seeds + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-dandelion-seeds diff --git a/palettes/nature/dandelionSeeds/package.dist.json b/palettes/nature/dandelionSeeds/package.dist.json index a333bc172d9..9ef78e714b9 100644 --- a/palettes/nature/dandelionSeeds/package.dist.json +++ b/palettes/nature/dandelionSeeds/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-dandelion-seeds", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles dandelion seeds palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/nature/dandelionSeeds/package.json b/palettes/nature/dandelionSeeds/package.json index 752956f0521..73a846e796c 100644 --- a/palettes/nature/dandelionSeeds/package.json +++ b/palettes/nature/dandelionSeeds/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-dandelion-seeds", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles dandelion seeds palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/nature/earthyNature/CHANGELOG.md b/palettes/nature/earthyNature/CHANGELOG.md index 2faae6c9cd0..163ec993594 100644 --- a/palettes/nature/earthyNature/CHANGELOG.md +++ b/palettes/nature/earthyNature/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-earthy-nature + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-earthy-nature diff --git a/palettes/nature/earthyNature/package.dist.json b/palettes/nature/earthyNature/package.dist.json index 9aa1d031619..9c193209101 100644 --- a/palettes/nature/earthyNature/package.dist.json +++ b/palettes/nature/earthyNature/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-earthy-nature", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles earthy nature palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/nature/earthyNature/package.json b/palettes/nature/earthyNature/package.json index 5cc0cfba771..c0a1b6f8d9d 100644 --- a/palettes/nature/earthyNature/package.json +++ b/palettes/nature/earthyNature/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-earthy-nature", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles earthy nature palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/nature/fireflies/CHANGELOG.md b/palettes/nature/fireflies/CHANGELOG.md index b47bfaf39f4..c58a7eb122a 100644 --- a/palettes/nature/fireflies/CHANGELOG.md +++ b/palettes/nature/fireflies/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-fireflies + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-fireflies diff --git a/palettes/nature/fireflies/package.dist.json b/palettes/nature/fireflies/package.dist.json index 6a8d8553947..6b80280df2a 100644 --- a/palettes/nature/fireflies/package.dist.json +++ b/palettes/nature/fireflies/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireflies", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireflies palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/nature/fireflies/package.json b/palettes/nature/fireflies/package.json index e85a00f221a..af7b690d89d 100644 --- a/palettes/nature/fireflies/package.json +++ b/palettes/nature/fireflies/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireflies", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireflies palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/nature/forestCanopy/CHANGELOG.md b/palettes/nature/forestCanopy/CHANGELOG.md index ebb5822ed9c..9880a9b49d1 100644 --- a/palettes/nature/forestCanopy/CHANGELOG.md +++ b/palettes/nature/forestCanopy/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-forest-canopy + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-forest-canopy diff --git a/palettes/nature/forestCanopy/package.dist.json b/palettes/nature/forestCanopy/package.dist.json index 0bdf8997a98..10e74dd76d1 100644 --- a/palettes/nature/forestCanopy/package.dist.json +++ b/palettes/nature/forestCanopy/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-forest-canopy", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles forest canopy palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/nature/forestCanopy/package.json b/palettes/nature/forestCanopy/package.json index 0e32ffcca75..00b4bc6e3cc 100644 --- a/palettes/nature/forestCanopy/package.json +++ b/palettes/nature/forestCanopy/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-forest-canopy", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles forest canopy palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/nature/pollenAndSpores/CHANGELOG.md b/palettes/nature/pollenAndSpores/CHANGELOG.md index e2b6a551d0a..87f86a3247f 100644 --- a/palettes/nature/pollenAndSpores/CHANGELOG.md +++ b/palettes/nature/pollenAndSpores/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-pollen-and-spores + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-pollen-and-spores diff --git a/palettes/nature/pollenAndSpores/package.dist.json b/palettes/nature/pollenAndSpores/package.dist.json index 3c67ffa6493..602d85212c3 100644 --- a/palettes/nature/pollenAndSpores/package.dist.json +++ b/palettes/nature/pollenAndSpores/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pollen-and-spores", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles pollen & spores palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/nature/pollenAndSpores/package.json b/palettes/nature/pollenAndSpores/package.json index bc946d64249..d17931a62a5 100644 --- a/palettes/nature/pollenAndSpores/package.json +++ b/palettes/nature/pollenAndSpores/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pollen-and-spores", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles pollen & spores palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/nature/snowfall/CHANGELOG.md b/palettes/nature/snowfall/CHANGELOG.md index cc5c2077ecc..872e51a219f 100644 --- a/palettes/nature/snowfall/CHANGELOG.md +++ b/palettes/nature/snowfall/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-snowfall + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-snowfall diff --git a/palettes/nature/snowfall/package.dist.json b/palettes/nature/snowfall/package.dist.json index d21d21b6ed3..ff5b0b46f2b 100644 --- a/palettes/nature/snowfall/package.dist.json +++ b/palettes/nature/snowfall/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-snowfall", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles snowfall palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/nature/snowfall/package.json b/palettes/nature/snowfall/package.json index da9c426defb..c7cbd6e7779 100644 --- a/palettes/nature/snowfall/package.json +++ b/palettes/nature/snowfall/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-snowfall", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles snowfall palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/nature/springBloom/CHANGELOG.md b/palettes/nature/springBloom/CHANGELOG.md index 6ddfb7993a0..bcb4e71d68b 100644 --- a/palettes/nature/springBloom/CHANGELOG.md +++ b/palettes/nature/springBloom/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-spring-bloom + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-spring-bloom diff --git a/palettes/nature/springBloom/package.dist.json b/palettes/nature/springBloom/package.dist.json index c48a60bd84e..04a7227a079 100644 --- a/palettes/nature/springBloom/package.dist.json +++ b/palettes/nature/springBloom/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-spring-bloom", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles spring bloom palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/nature/springBloom/package.json b/palettes/nature/springBloom/package.json index d6c40204702..7a9ec458f72 100644 --- a/palettes/nature/springBloom/package.json +++ b/palettes/nature/springBloom/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-spring-bloom", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles spring bloom palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/optics/bokehCold/CHANGELOG.md b/palettes/optics/bokehCold/CHANGELOG.md index c01c2dd4a27..3d38ed2eaa0 100644 --- a/palettes/optics/bokehCold/CHANGELOG.md +++ b/palettes/optics/bokehCold/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-bokeh-cold + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-bokeh-cold diff --git a/palettes/optics/bokehCold/package.dist.json b/palettes/optics/bokehCold/package.dist.json index c672b2f77b9..6f0697bcb3a 100644 --- a/palettes/optics/bokehCold/package.dist.json +++ b/palettes/optics/bokehCold/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-bokeh-cold", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles bokeh cold optics palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/optics/bokehCold/package.json b/palettes/optics/bokehCold/package.json index 5d46ea87675..a4a223d4d41 100644 --- a/palettes/optics/bokehCold/package.json +++ b/palettes/optics/bokehCold/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-bokeh-cold", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles bokeh cold optics palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/optics/bokehGold/CHANGELOG.md b/palettes/optics/bokehGold/CHANGELOG.md index 580f44714d4..e7568e880c5 100644 --- a/palettes/optics/bokehGold/CHANGELOG.md +++ b/palettes/optics/bokehGold/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-bokeh-gold + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-bokeh-gold diff --git a/palettes/optics/bokehGold/package.dist.json b/palettes/optics/bokehGold/package.dist.json index a42de0044b2..da90c51eb86 100644 --- a/palettes/optics/bokehGold/package.dist.json +++ b/palettes/optics/bokehGold/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-bokeh-gold", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles bokeh gold optics palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/optics/bokehGold/package.json b/palettes/optics/bokehGold/package.json index 49ec6084d76..eab1ac3867f 100644 --- a/palettes/optics/bokehGold/package.json +++ b/palettes/optics/bokehGold/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-bokeh-gold", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles bokeh gold optics palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/optics/bokehPastel/CHANGELOG.md b/palettes/optics/bokehPastel/CHANGELOG.md index 0c3549ffee4..0a888547f85 100644 --- a/palettes/optics/bokehPastel/CHANGELOG.md +++ b/palettes/optics/bokehPastel/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-bokeh-pastel + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-bokeh-pastel diff --git a/palettes/optics/bokehPastel/package.dist.json b/palettes/optics/bokehPastel/package.dist.json index c433d85179b..516ad52927a 100644 --- a/palettes/optics/bokehPastel/package.dist.json +++ b/palettes/optics/bokehPastel/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-bokeh-pastel", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles bokeh pastel optics palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/optics/bokehPastel/package.json b/palettes/optics/bokehPastel/package.json index fa2d18f4af4..1a06f8aa05a 100644 --- a/palettes/optics/bokehPastel/package.json +++ b/palettes/optics/bokehPastel/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-bokeh-pastel", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles bokeh pastel optics palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/optics/holographicShimmer/CHANGELOG.md b/palettes/optics/holographicShimmer/CHANGELOG.md index cfd0f07c108..9b5c2e4e0fd 100644 --- a/palettes/optics/holographicShimmer/CHANGELOG.md +++ b/palettes/optics/holographicShimmer/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-holographic-shimmer + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-holographic-shimmer diff --git a/palettes/optics/holographicShimmer/package.dist.json b/palettes/optics/holographicShimmer/package.dist.json index 0059f901cef..396ac75d153 100644 --- a/palettes/optics/holographicShimmer/package.dist.json +++ b/palettes/optics/holographicShimmer/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-holographic-shimmer", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles holographic shimmer optics palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/optics/holographicShimmer/package.json b/palettes/optics/holographicShimmer/package.json index 74038407a3b..898247e1ba1 100644 --- a/palettes/optics/holographicShimmer/package.json +++ b/palettes/optics/holographicShimmer/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-holographic-shimmer", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles holographic shimmer optics palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/optics/laserScatter/CHANGELOG.md b/palettes/optics/laserScatter/CHANGELOG.md index 4102607282f..2b8dce1c604 100644 --- a/palettes/optics/laserScatter/CHANGELOG.md +++ b/palettes/optics/laserScatter/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-laser-scatter + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-laser-scatter diff --git a/palettes/optics/laserScatter/package.dist.json b/palettes/optics/laserScatter/package.dist.json index bdda59b80ac..28f75f8c52f 100644 --- a/palettes/optics/laserScatter/package.dist.json +++ b/palettes/optics/laserScatter/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-laser-scatter", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles laser scatter optics palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/optics/laserScatter/package.json b/palettes/optics/laserScatter/package.json index 155017a2f38..13298042fc3 100644 --- a/palettes/optics/laserScatter/package.json +++ b/palettes/optics/laserScatter/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-laser-scatter", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles laser scatter optics palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/optics/lensFlareDust/CHANGELOG.md b/palettes/optics/lensFlareDust/CHANGELOG.md index ff9b9f70e6e..a2a636fdb83 100644 --- a/palettes/optics/lensFlareDust/CHANGELOG.md +++ b/palettes/optics/lensFlareDust/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-lens-flare-dust + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-lens-flare-dust diff --git a/palettes/optics/lensFlareDust/package.dist.json b/palettes/optics/lensFlareDust/package.dist.json index f85f8818c63..c85a2dd3f3e 100644 --- a/palettes/optics/lensFlareDust/package.dist.json +++ b/palettes/optics/lensFlareDust/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-lens-flare-dust", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles lens flare dust palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/optics/lensFlareDust/package.json b/palettes/optics/lensFlareDust/package.json index b59ee88c2f2..caaef80b9b9 100644 --- a/palettes/optics/lensFlareDust/package.json +++ b/palettes/optics/lensFlareDust/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-lens-flare-dust", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles lens flare dust palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/optics/prismSpectrum/CHANGELOG.md b/palettes/optics/prismSpectrum/CHANGELOG.md index 39fead0cf9b..2a8660ddc41 100644 --- a/palettes/optics/prismSpectrum/CHANGELOG.md +++ b/palettes/optics/prismSpectrum/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-prism-spectrum + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-prism-spectrum diff --git a/palettes/optics/prismSpectrum/package.dist.json b/palettes/optics/prismSpectrum/package.dist.json index 64fe8cedb80..5366dc8ceb3 100644 --- a/palettes/optics/prismSpectrum/package.dist.json +++ b/palettes/optics/prismSpectrum/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-prism-spectrum", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles prism spectrum optics palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/optics/prismSpectrum/package.json b/palettes/optics/prismSpectrum/package.json index 233436de189..4c6fa25f694 100644 --- a/palettes/optics/prismSpectrum/package.json +++ b/palettes/optics/prismSpectrum/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-prism-spectrum", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles prism spectrum optics palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/pastel/cool/CHANGELOG.md b/palettes/pastel/cool/CHANGELOG.md index 4680e60a0b1..a60ea155743 100644 --- a/palettes/pastel/cool/CHANGELOG.md +++ b/palettes/pastel/cool/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-pastel-cool + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-pastel-cool diff --git a/palettes/pastel/cool/package.dist.json b/palettes/pastel/cool/package.dist.json index ad0d5e577f6..19aeddc6846 100644 --- a/palettes/pastel/cool/package.dist.json +++ b/palettes/pastel/cool/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pastel-cool", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles pastel cool palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/pastel/cool/package.json b/palettes/pastel/cool/package.json index fbc8ea02da2..32b0cdfad81 100644 --- a/palettes/pastel/cool/package.json +++ b/palettes/pastel/cool/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pastel-cool", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles pastel cool palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/pastel/dream/CHANGELOG.md b/palettes/pastel/dream/CHANGELOG.md index 8f492a88237..d7dc4c76bf5 100644 --- a/palettes/pastel/dream/CHANGELOG.md +++ b/palettes/pastel/dream/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-pastel-dream + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-pastel-dream diff --git a/palettes/pastel/dream/package.dist.json b/palettes/pastel/dream/package.dist.json index 4bcb957b97b..215440df293 100644 --- a/palettes/pastel/dream/package.dist.json +++ b/palettes/pastel/dream/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pastel-dream", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles pastel dream palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/pastel/dream/package.json b/palettes/pastel/dream/package.json index 62464f2940e..0b5f4e7d274 100644 --- a/palettes/pastel/dream/package.json +++ b/palettes/pastel/dream/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pastel-dream", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles pastel dream palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/pastel/mint/CHANGELOG.md b/palettes/pastel/mint/CHANGELOG.md index de44edcb76d..b0f67612b1c 100644 --- a/palettes/pastel/mint/CHANGELOG.md +++ b/palettes/pastel/mint/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-pastel-mint + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-pastel-mint diff --git a/palettes/pastel/mint/package.dist.json b/palettes/pastel/mint/package.dist.json index 5f99faf4564..65307608d35 100644 --- a/palettes/pastel/mint/package.dist.json +++ b/palettes/pastel/mint/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pastel-mint", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles pastel mint palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/pastel/mint/package.json b/palettes/pastel/mint/package.json index a2c4f724fab..7e7466334ea 100644 --- a/palettes/pastel/mint/package.json +++ b/palettes/pastel/mint/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pastel-mint", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles pastel mint palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/pastel/sunset/CHANGELOG.md b/palettes/pastel/sunset/CHANGELOG.md index b837e9d7c07..664a9b5215c 100644 --- a/palettes/pastel/sunset/CHANGELOG.md +++ b/palettes/pastel/sunset/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-pastel-sunset + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-pastel-sunset diff --git a/palettes/pastel/sunset/package.dist.json b/palettes/pastel/sunset/package.dist.json index f1e6fa4ed10..7b6420ee849 100644 --- a/palettes/pastel/sunset/package.dist.json +++ b/palettes/pastel/sunset/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pastel-sunset", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles pastel sunset palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/pastel/sunset/package.json b/palettes/pastel/sunset/package.json index 8301450de38..c0c01a8da91 100644 --- a/palettes/pastel/sunset/package.json +++ b/palettes/pastel/sunset/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pastel-sunset", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles pastel sunset palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/pastel/warm/CHANGELOG.md b/palettes/pastel/warm/CHANGELOG.md index d1c487faf6b..3ba5f14d3e3 100644 --- a/palettes/pastel/warm/CHANGELOG.md +++ b/palettes/pastel/warm/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-pastel-warm + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-pastel-warm diff --git a/palettes/pastel/warm/package.dist.json b/palettes/pastel/warm/package.dist.json index 6f23d359ef5..0462900ae1e 100644 --- a/palettes/pastel/warm/package.dist.json +++ b/palettes/pastel/warm/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pastel-warm", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles pastel warm palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/pastel/warm/package.json b/palettes/pastel/warm/package.json index 60bbd18860d..72a105a2c79 100644 --- a/palettes/pastel/warm/package.json +++ b/palettes/pastel/warm/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pastel-warm", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles pastel warm palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/space/auroraBorealis/CHANGELOG.md b/palettes/space/auroraBorealis/CHANGELOG.md index 6d08905e77c..6795574bfea 100644 --- a/palettes/space/auroraBorealis/CHANGELOG.md +++ b/palettes/space/auroraBorealis/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-aurora-borealis + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-aurora-borealis diff --git a/palettes/space/auroraBorealis/package.dist.json b/palettes/space/auroraBorealis/package.dist.json index 87e04a28059..c1b2b8fb0f2 100644 --- a/palettes/space/auroraBorealis/package.dist.json +++ b/palettes/space/auroraBorealis/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-aurora-borealis", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles aurora borealis palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/space/auroraBorealis/package.json b/palettes/space/auroraBorealis/package.json index f2d5c96ecc4..92ce69e2586 100644 --- a/palettes/space/auroraBorealis/package.json +++ b/palettes/space/auroraBorealis/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-aurora-borealis", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles aurora borealis palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/space/cosmicRadiation/CHANGELOG.md b/palettes/space/cosmicRadiation/CHANGELOG.md index f96aa516f88..bc3ea65ad72 100644 --- a/palettes/space/cosmicRadiation/CHANGELOG.md +++ b/palettes/space/cosmicRadiation/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-cosmic-radiation + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-cosmic-radiation diff --git a/palettes/space/cosmicRadiation/package.dist.json b/palettes/space/cosmicRadiation/package.dist.json index 9893ee552b6..fe491bfd585 100644 --- a/palettes/space/cosmicRadiation/package.dist.json +++ b/palettes/space/cosmicRadiation/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-cosmic-radiation", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles cosmic radiation palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/space/cosmicRadiation/package.json b/palettes/space/cosmicRadiation/package.json index 005d20e0c6e..3e8d4830678 100644 --- a/palettes/space/cosmicRadiation/package.json +++ b/palettes/space/cosmicRadiation/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-cosmic-radiation", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles cosmic radiation palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/space/darkMatter/CHANGELOG.md b/palettes/space/darkMatter/CHANGELOG.md index 2d5a7b91ad5..9337c6e86b4 100644 --- a/palettes/space/darkMatter/CHANGELOG.md +++ b/palettes/space/darkMatter/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-dark-matter + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-dark-matter diff --git a/palettes/space/darkMatter/package.dist.json b/palettes/space/darkMatter/package.dist.json index c77d2f3dfd8..b97f8fd81c2 100644 --- a/palettes/space/darkMatter/package.dist.json +++ b/palettes/space/darkMatter/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-dark-matter", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles dark matter palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/space/darkMatter/package.json b/palettes/space/darkMatter/package.json index 82fdd4ff5d8..364a8373e2d 100644 --- a/palettes/space/darkMatter/package.json +++ b/palettes/space/darkMatter/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-dark-matter", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles dark matter palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/space/galaxyDust/CHANGELOG.md b/palettes/space/galaxyDust/CHANGELOG.md index 186fdc93afc..680c862b1b6 100644 --- a/palettes/space/galaxyDust/CHANGELOG.md +++ b/palettes/space/galaxyDust/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-galaxy-dust + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-galaxy-dust diff --git a/palettes/space/galaxyDust/package.dist.json b/palettes/space/galaxyDust/package.dist.json index 85eae390cef..e156eb9532c 100644 --- a/palettes/space/galaxyDust/package.dist.json +++ b/palettes/space/galaxyDust/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-galaxy-dust", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles galaxy dust palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/space/galaxyDust/package.json b/palettes/space/galaxyDust/package.json index db37f7bb4cd..fa9b70a4074 100644 --- a/palettes/space/galaxyDust/package.json +++ b/palettes/space/galaxyDust/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-galaxy-dust", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles galaxy dust palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/space/nebula/CHANGELOG.md b/palettes/space/nebula/CHANGELOG.md index b0a3fd53ff1..bfe18e13201 100644 --- a/palettes/space/nebula/CHANGELOG.md +++ b/palettes/space/nebula/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-nebula + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-nebula diff --git a/palettes/space/nebula/package.dist.json b/palettes/space/nebula/package.dist.json index b920225277b..ed88d9a9041 100644 --- a/palettes/space/nebula/package.dist.json +++ b/palettes/space/nebula/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-nebula", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles nebula palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/space/nebula/package.json b/palettes/space/nebula/package.json index f2a60cd82c8..e195a543df9 100644 --- a/palettes/space/nebula/package.json +++ b/palettes/space/nebula/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-nebula", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles nebula palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/space/portal/CHANGELOG.md b/palettes/space/portal/CHANGELOG.md index 5b322458009..773d5dc4329 100644 --- a/palettes/space/portal/CHANGELOG.md +++ b/palettes/space/portal/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-portal + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-portal diff --git a/palettes/space/portal/package.dist.json b/palettes/space/portal/package.dist.json index 85e807be64c..ee9cbe717c0 100644 --- a/palettes/space/portal/package.dist.json +++ b/palettes/space/portal/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-portal", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles portal palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/space/portal/package.json b/palettes/space/portal/package.json index 8b6ce3b1e0d..d17295939b7 100644 --- a/palettes/space/portal/package.json +++ b/palettes/space/portal/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-portal", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles portal palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/space/pulsar/CHANGELOG.md b/palettes/space/pulsar/CHANGELOG.md index 9c31d80f446..bd6c3aad5a2 100644 --- a/palettes/space/pulsar/CHANGELOG.md +++ b/palettes/space/pulsar/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-pulsar + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-pulsar diff --git a/palettes/space/pulsar/package.dist.json b/palettes/space/pulsar/package.dist.json index 6467991ed42..0d570ef9a79 100644 --- a/palettes/space/pulsar/package.dist.json +++ b/palettes/space/pulsar/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pulsar", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles pulsar palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/space/pulsar/package.json b/palettes/space/pulsar/package.json index add167fb671..8da1f2a226a 100644 --- a/palettes/space/pulsar/package.json +++ b/palettes/space/pulsar/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pulsar", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles pulsar palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/space/solarWind/CHANGELOG.md b/palettes/space/solarWind/CHANGELOG.md index ce095693f55..af121cefd90 100644 --- a/palettes/space/solarWind/CHANGELOG.md +++ b/palettes/space/solarWind/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-solar-wind + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-solar-wind diff --git a/palettes/space/solarWind/package.dist.json b/palettes/space/solarWind/package.dist.json index 0feb3f67d79..072f44296fe 100644 --- a/palettes/space/solarWind/package.dist.json +++ b/palettes/space/solarWind/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-solar-wind", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles solar wind palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/space/solarWind/package.json b/palettes/space/solarWind/package.json index 140216c2509..5e13dd3237b 100644 --- a/palettes/space/solarWind/package.json +++ b/palettes/space/solarWind/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-solar-wind", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles solar wind palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/space/supernova/CHANGELOG.md b/palettes/space/supernova/CHANGELOG.md index b30c04db20a..9c1430f8952 100644 --- a/palettes/space/supernova/CHANGELOG.md +++ b/palettes/space/supernova/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-supernova + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-supernova diff --git a/palettes/space/supernova/package.dist.json b/palettes/space/supernova/package.dist.json index a6b40c15553..047dc3db2ff 100644 --- a/palettes/space/supernova/package.dist.json +++ b/palettes/space/supernova/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-supernova", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles supernova palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/space/supernova/package.json b/palettes/space/supernova/package.json index a806fb74136..1d62f80d374 100644 --- a/palettes/space/supernova/package.json +++ b/palettes/space/supernova/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-supernova", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles supernova palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/spectrum/acidPair/CHANGELOG.md b/palettes/spectrum/acidPair/CHANGELOG.md index 0ed1da5e487..157b58c1b89 100644 --- a/palettes/spectrum/acidPair/CHANGELOG.md +++ b/palettes/spectrum/acidPair/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-acid-pair + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-acid-pair diff --git a/palettes/spectrum/acidPair/package.dist.json b/palettes/spectrum/acidPair/package.dist.json index a242bec0c8a..d8541d4489f 100644 --- a/palettes/spectrum/acidPair/package.dist.json +++ b/palettes/spectrum/acidPair/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-acid-pair", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles acid pair palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/spectrum/acidPair/package.json b/palettes/spectrum/acidPair/package.json index b408796d3f9..61a8bdc5557 100644 --- a/palettes/spectrum/acidPair/package.json +++ b/palettes/spectrum/acidPair/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-acid-pair", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles acid pair palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/spectrum/cmySecondaries/CHANGELOG.md b/palettes/spectrum/cmySecondaries/CHANGELOG.md index d26af493765..534d99c75a1 100644 --- a/palettes/spectrum/cmySecondaries/CHANGELOG.md +++ b/palettes/spectrum/cmySecondaries/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-cmy-secondaries + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-cmy-secondaries diff --git a/palettes/spectrum/cmySecondaries/package.dist.json b/palettes/spectrum/cmySecondaries/package.dist.json index a25074a4fe0..86f74719337 100644 --- a/palettes/spectrum/cmySecondaries/package.dist.json +++ b/palettes/spectrum/cmySecondaries/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-cmy-secondaries", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles cmy secondaries palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/spectrum/cmySecondaries/package.json b/palettes/spectrum/cmySecondaries/package.json index 2923d547e7b..850275b8114 100644 --- a/palettes/spectrum/cmySecondaries/package.json +++ b/palettes/spectrum/cmySecondaries/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-cmy-secondaries", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles cmy secondaries palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/spectrum/dualityBlueYellow/CHANGELOG.md b/palettes/spectrum/dualityBlueYellow/CHANGELOG.md index 85bd4f4487e..4581f03d1af 100644 --- a/palettes/spectrum/dualityBlueYellow/CHANGELOG.md +++ b/palettes/spectrum/dualityBlueYellow/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-duality-blue-yellow + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-duality-blue-yellow diff --git a/palettes/spectrum/dualityBlueYellow/package.dist.json b/palettes/spectrum/dualityBlueYellow/package.dist.json index c115d3c2817..82a3e0d5fc0 100644 --- a/palettes/spectrum/dualityBlueYellow/package.dist.json +++ b/palettes/spectrum/dualityBlueYellow/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-duality-blue-yellow", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles duality - blue/yellow palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/spectrum/dualityBlueYellow/package.json b/palettes/spectrum/dualityBlueYellow/package.json index f8fbefbfd2f..846644e497b 100644 --- a/palettes/spectrum/dualityBlueYellow/package.json +++ b/palettes/spectrum/dualityBlueYellow/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-duality-blue-yellow", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles duality - blue/yellow palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/spectrum/dualityGreenMagenta/CHANGELOG.md b/palettes/spectrum/dualityGreenMagenta/CHANGELOG.md index 6fd4c8737a7..fc2cf582328 100644 --- a/palettes/spectrum/dualityGreenMagenta/CHANGELOG.md +++ b/palettes/spectrum/dualityGreenMagenta/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-duality-green-magenta + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-duality-green-magenta diff --git a/palettes/spectrum/dualityGreenMagenta/package.dist.json b/palettes/spectrum/dualityGreenMagenta/package.dist.json index ff3b11e12e6..f5e831e1a96 100644 --- a/palettes/spectrum/dualityGreenMagenta/package.dist.json +++ b/palettes/spectrum/dualityGreenMagenta/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-duality-green-magenta", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles duality - green/magenta palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/spectrum/dualityGreenMagenta/package.json b/palettes/spectrum/dualityGreenMagenta/package.json index 5db46b8816f..8de463a6291 100644 --- a/palettes/spectrum/dualityGreenMagenta/package.json +++ b/palettes/spectrum/dualityGreenMagenta/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-duality-green-magenta", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles duality - green/magenta palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/spectrum/dualityRedCyan/CHANGELOG.md b/palettes/spectrum/dualityRedCyan/CHANGELOG.md index fb34916ed83..ff1c389dffb 100644 --- a/palettes/spectrum/dualityRedCyan/CHANGELOG.md +++ b/palettes/spectrum/dualityRedCyan/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-duality-red-cyan + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-duality-red-cyan diff --git a/palettes/spectrum/dualityRedCyan/package.dist.json b/palettes/spectrum/dualityRedCyan/package.dist.json index 63ec982be75..c43422507bd 100644 --- a/palettes/spectrum/dualityRedCyan/package.dist.json +++ b/palettes/spectrum/dualityRedCyan/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-duality-red-cyan", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles duality red/cyan palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/spectrum/dualityRedCyan/package.json b/palettes/spectrum/dualityRedCyan/package.json index 1edc0df2a40..fd71ac16291 100644 --- a/palettes/spectrum/dualityRedCyan/package.json +++ b/palettes/spectrum/dualityRedCyan/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-duality-red-cyan", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles duality red/cyan palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/spectrum/fullSpectrum/CHANGELOG.md b/palettes/spectrum/fullSpectrum/CHANGELOG.md index b5b1df542ac..327bcd63247 100644 --- a/palettes/spectrum/fullSpectrum/CHANGELOG.md +++ b/palettes/spectrum/fullSpectrum/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-full-spectrum + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-full-spectrum diff --git a/palettes/spectrum/fullSpectrum/package.dist.json b/palettes/spectrum/fullSpectrum/package.dist.json index c629572d2af..291dcc6fe88 100644 --- a/palettes/spectrum/fullSpectrum/package.dist.json +++ b/palettes/spectrum/fullSpectrum/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-full-spectrum", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles full spectrum - high saturation palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/spectrum/fullSpectrum/package.json b/palettes/spectrum/fullSpectrum/package.json index f7777896654..83bf13c79d0 100644 --- a/palettes/spectrum/fullSpectrum/package.json +++ b/palettes/spectrum/fullSpectrum/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-full-spectrum", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles full spectrum - high saturation palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/spectrum/okabeItoAccessible/CHANGELOG.md b/palettes/spectrum/okabeItoAccessible/CHANGELOG.md index f963ce46876..ddbabd73115 100644 --- a/palettes/spectrum/okabeItoAccessible/CHANGELOG.md +++ b/palettes/spectrum/okabeItoAccessible/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-okabe-ito-accessible + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-okabe-ito-accessible diff --git a/palettes/spectrum/okabeItoAccessible/package.dist.json b/palettes/spectrum/okabeItoAccessible/package.dist.json index 0c6cd3b4a3c..362ff413cbf 100644 --- a/palettes/spectrum/okabeItoAccessible/package.dist.json +++ b/palettes/spectrum/okabeItoAccessible/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-okabe-ito-accessible", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles okabe ito accessible palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/spectrum/okabeItoAccessible/package.json b/palettes/spectrum/okabeItoAccessible/package.json index db1beff6007..c0e4bf4165f 100644 --- a/palettes/spectrum/okabeItoAccessible/package.json +++ b/palettes/spectrum/okabeItoAccessible/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-okabe-ito-accessible", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles okabe ito accessible palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/spectrum/prismScatter/CHANGELOG.md b/palettes/spectrum/prismScatter/CHANGELOG.md index be9c7dfab9a..e64eba86e6c 100644 --- a/palettes/spectrum/prismScatter/CHANGELOG.md +++ b/palettes/spectrum/prismScatter/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-prism-scatter + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-prism-scatter diff --git a/palettes/spectrum/prismScatter/package.dist.json b/palettes/spectrum/prismScatter/package.dist.json index eea70a6f6bd..1756a98db86 100644 --- a/palettes/spectrum/prismScatter/package.dist.json +++ b/palettes/spectrum/prismScatter/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-prism-scatter", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles prism scatter palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/spectrum/prismScatter/package.json b/palettes/spectrum/prismScatter/package.json index 342ccaf23a8..cb69eb1114d 100644 --- a/palettes/spectrum/prismScatter/package.json +++ b/palettes/spectrum/prismScatter/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-prism-scatter", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles prism scatter palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/spectrum/rainbow/CHANGELOG.md b/palettes/spectrum/rainbow/CHANGELOG.md index a7f733178f5..4ba6bcd13f0 100644 --- a/palettes/spectrum/rainbow/CHANGELOG.md +++ b/palettes/spectrum/rainbow/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-rainbow + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-rainbow diff --git a/palettes/spectrum/rainbow/package.dist.json b/palettes/spectrum/rainbow/package.dist.json index 9fe03e06b1f..699e8bdb907 100644 --- a/palettes/spectrum/rainbow/package.dist.json +++ b/palettes/spectrum/rainbow/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-rainbow", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles rainbow - maximum saturation srgb palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/spectrum/rainbow/package.json b/palettes/spectrum/rainbow/package.json index dd790a24817..0b3a1d3b200 100644 --- a/palettes/spectrum/rainbow/package.json +++ b/palettes/spectrum/rainbow/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-rainbow", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles rainbow - maximum saturation srgb palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/spectrum/rgbPrimaries/CHANGELOG.md b/palettes/spectrum/rgbPrimaries/CHANGELOG.md index 2e87e741e02..1409109da87 100644 --- a/palettes/spectrum/rgbPrimaries/CHANGELOG.md +++ b/palettes/spectrum/rgbPrimaries/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-rgb-primaries + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-rgb-primaries diff --git a/palettes/spectrum/rgbPrimaries/package.dist.json b/palettes/spectrum/rgbPrimaries/package.dist.json index aa4632764c3..3da2dbf68c0 100644 --- a/palettes/spectrum/rgbPrimaries/package.dist.json +++ b/palettes/spectrum/rgbPrimaries/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-rgb-primaries", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles rgb primaries palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/spectrum/rgbPrimaries/package.json b/palettes/spectrum/rgbPrimaries/package.json index 92e10b7de4e..5ddef753477 100644 --- a/palettes/spectrum/rgbPrimaries/package.json +++ b/palettes/spectrum/rgbPrimaries/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-rgb-primaries", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles rgb primaries palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/tech/crtPhosphor/CHANGELOG.md b/palettes/tech/crtPhosphor/CHANGELOG.md index fee2c28a8e8..db5d654b068 100644 --- a/palettes/tech/crtPhosphor/CHANGELOG.md +++ b/palettes/tech/crtPhosphor/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-crt-phosphor + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-crt-phosphor diff --git a/palettes/tech/crtPhosphor/package.dist.json b/palettes/tech/crtPhosphor/package.dist.json index 877f761383a..502c3159ad8 100644 --- a/palettes/tech/crtPhosphor/package.dist.json +++ b/palettes/tech/crtPhosphor/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-crt-phosphor", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles crt phosphor palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/tech/crtPhosphor/package.json b/palettes/tech/crtPhosphor/package.json index 1b83329e23f..1b1a5cc2d6a 100644 --- a/palettes/tech/crtPhosphor/package.json +++ b/palettes/tech/crtPhosphor/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-crt-phosphor", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles crt phosphor palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/tech/glitch/CHANGELOG.md b/palettes/tech/glitch/CHANGELOG.md index 60892c29bf1..109325de942 100644 --- a/palettes/tech/glitch/CHANGELOG.md +++ b/palettes/tech/glitch/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-glitch + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-glitch diff --git a/palettes/tech/glitch/package.dist.json b/palettes/tech/glitch/package.dist.json index df3a0b4009d..81379556665 100644 --- a/palettes/tech/glitch/package.dist.json +++ b/palettes/tech/glitch/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-glitch", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles glitch - full rgb shift palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/tech/glitch/package.json b/palettes/tech/glitch/package.json index 6e864650bf6..d2cbc4ade8f 100644 --- a/palettes/tech/glitch/package.json +++ b/palettes/tech/glitch/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-glitch", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles glitch - full rgb shift palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/tech/hologram/CHANGELOG.md b/palettes/tech/hologram/CHANGELOG.md index ff3c9ca076e..4e0c96416c1 100644 --- a/palettes/tech/hologram/CHANGELOG.md +++ b/palettes/tech/hologram/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-hologram + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-hologram diff --git a/palettes/tech/hologram/package.dist.json b/palettes/tech/hologram/package.dist.json index 28695a958ba..c12347bcfcd 100644 --- a/palettes/tech/hologram/package.dist.json +++ b/palettes/tech/hologram/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-hologram", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles hologram palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/tech/hologram/package.json b/palettes/tech/hologram/package.json index 4834ecab795..6923f8c415a 100644 --- a/palettes/tech/hologram/package.json +++ b/palettes/tech/hologram/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-hologram", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles hologram palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/tech/lofiWarm/CHANGELOG.md b/palettes/tech/lofiWarm/CHANGELOG.md index 49cd65c5d2f..d1c15509fda 100644 --- a/palettes/tech/lofiWarm/CHANGELOG.md +++ b/palettes/tech/lofiWarm/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-lofi-warm + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-lofi-warm diff --git a/palettes/tech/lofiWarm/package.dist.json b/palettes/tech/lofiWarm/package.dist.json index 52beb632f98..f6ec2d4a850 100644 --- a/palettes/tech/lofiWarm/package.dist.json +++ b/palettes/tech/lofiWarm/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-lofi-warm", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles lo-fi warm palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/tech/lofiWarm/package.json b/palettes/tech/lofiWarm/package.json index 62ed9cc8585..7d1f592e523 100644 --- a/palettes/tech/lofiWarm/package.json +++ b/palettes/tech/lofiWarm/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-lofi-warm", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles lo-fi warm palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/tech/matrixRain/CHANGELOG.md b/palettes/tech/matrixRain/CHANGELOG.md index f82e38a434a..483311dde71 100644 --- a/palettes/tech/matrixRain/CHANGELOG.md +++ b/palettes/tech/matrixRain/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-matrix-rain + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-matrix-rain diff --git a/palettes/tech/matrixRain/package.dist.json b/palettes/tech/matrixRain/package.dist.json index 62c3fc8b6b3..2edc28a1dd6 100644 --- a/palettes/tech/matrixRain/package.dist.json +++ b/palettes/tech/matrixRain/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-matrix-rain", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles matrix rain palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/tech/matrixRain/package.json b/palettes/tech/matrixRain/package.json index 07a166f3e80..3051c2e5388 100644 --- a/palettes/tech/matrixRain/package.json +++ b/palettes/tech/matrixRain/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-matrix-rain", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles matrix rain palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/tech/neonCity/CHANGELOG.md b/palettes/tech/neonCity/CHANGELOG.md index a065db20591..1b5647674d6 100644 --- a/palettes/tech/neonCity/CHANGELOG.md +++ b/palettes/tech/neonCity/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-neon-city + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-neon-city diff --git a/palettes/tech/neonCity/package.dist.json b/palettes/tech/neonCity/package.dist.json index 56aa6a7ff31..9c5c534f52c 100644 --- a/palettes/tech/neonCity/package.dist.json +++ b/palettes/tech/neonCity/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-neon-city", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles neon city palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/tech/neonCity/package.json b/palettes/tech/neonCity/package.json index e9641c091a3..0d9d3d6a100 100644 --- a/palettes/tech/neonCity/package.json +++ b/palettes/tech/neonCity/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-neon-city", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles neon city palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/tech/networkNodes/CHANGELOG.md b/palettes/tech/networkNodes/CHANGELOG.md index 743107c6a56..abbf7767d54 100644 --- a/palettes/tech/networkNodes/CHANGELOG.md +++ b/palettes/tech/networkNodes/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-network-nodes + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-network-nodes diff --git a/palettes/tech/networkNodes/package.dist.json b/palettes/tech/networkNodes/package.dist.json index e82fcfb2bed..a1d7a6bb285 100644 --- a/palettes/tech/networkNodes/package.dist.json +++ b/palettes/tech/networkNodes/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-network-nodes", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles network nodes palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/tech/networkNodes/package.json b/palettes/tech/networkNodes/package.json index 606584e156e..9e68154afa5 100644 --- a/palettes/tech/networkNodes/package.json +++ b/palettes/tech/networkNodes/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-network-nodes", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles network nodes palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/tech/plasmaArc/CHANGELOG.md b/palettes/tech/plasmaArc/CHANGELOG.md index bf83debfa97..f360a29b5b1 100644 --- a/palettes/tech/plasmaArc/CHANGELOG.md +++ b/palettes/tech/plasmaArc/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-plasma-arc + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-plasma-arc diff --git a/palettes/tech/plasmaArc/package.dist.json b/palettes/tech/plasmaArc/package.dist.json index 423b2eea74a..efd533ac238 100644 --- a/palettes/tech/plasmaArc/package.dist.json +++ b/palettes/tech/plasmaArc/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-plasma-arc", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles plasma arc palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/tech/plasmaArc/package.json b/palettes/tech/plasmaArc/package.json index 324f4822bd2..30d32466893 100644 --- a/palettes/tech/plasmaArc/package.json +++ b/palettes/tech/plasmaArc/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-plasma-arc", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles plasma arc palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/tech/vaporwave/CHANGELOG.md b/palettes/tech/vaporwave/CHANGELOG.md index 71bf5f124b1..b31410f6735 100644 --- a/palettes/tech/vaporwave/CHANGELOG.md +++ b/palettes/tech/vaporwave/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-vaporwave + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-vaporwave diff --git a/palettes/tech/vaporwave/package.dist.json b/palettes/tech/vaporwave/package.dist.json index 50d29205aa5..3e2cb74a73b 100644 --- a/palettes/tech/vaporwave/package.dist.json +++ b/palettes/tech/vaporwave/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-vaporwave", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles vaporwave palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/tech/vaporwave/package.json b/palettes/tech/vaporwave/package.json index da7d6cd3a12..148a9c3d21e 100644 --- a/palettes/tech/vaporwave/package.json +++ b/palettes/tech/vaporwave/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-vaporwave", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles vaporwave palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/vibrant/default/CHANGELOG.md b/palettes/vibrant/default/CHANGELOG.md index 1b12d145f4f..77f657fd6ba 100644 --- a/palettes/vibrant/default/CHANGELOG.md +++ b/palettes/vibrant/default/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-vibrant + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-vibrant diff --git a/palettes/vibrant/default/package.dist.json b/palettes/vibrant/default/package.dist.json index dc3a7458a29..c5d107750f2 100644 --- a/palettes/vibrant/default/package.dist.json +++ b/palettes/vibrant/default/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-vibrant", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles vibrant palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/vibrant/default/package.json b/palettes/vibrant/default/package.json index 9bf3dc68c93..999275acc8b 100644 --- a/palettes/vibrant/default/package.json +++ b/palettes/vibrant/default/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-vibrant", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles vibrant palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/vibrant/electric/CHANGELOG.md b/palettes/vibrant/electric/CHANGELOG.md index 0fc04929e94..3e0695fa550 100644 --- a/palettes/vibrant/electric/CHANGELOG.md +++ b/palettes/vibrant/electric/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-vibrant-electric + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-vibrant-electric diff --git a/palettes/vibrant/electric/package.dist.json b/palettes/vibrant/electric/package.dist.json index c0bd0360564..f359cba2181 100644 --- a/palettes/vibrant/electric/package.dist.json +++ b/palettes/vibrant/electric/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-vibrant-electric", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles vibrant electric palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/vibrant/electric/package.json b/palettes/vibrant/electric/package.json index 2451acd094e..3ac41075166 100644 --- a/palettes/vibrant/electric/package.json +++ b/palettes/vibrant/electric/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-vibrant-electric", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles vibrant electric palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/vibrant/neon/CHANGELOG.md b/palettes/vibrant/neon/CHANGELOG.md index c4bd84c1125..feccc71eb8b 100644 --- a/palettes/vibrant/neon/CHANGELOG.md +++ b/palettes/vibrant/neon/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-vibrant-neon + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-vibrant-neon diff --git a/palettes/vibrant/neon/package.dist.json b/palettes/vibrant/neon/package.dist.json index d9b49a167d1..ca87311f8bb 100644 --- a/palettes/vibrant/neon/package.dist.json +++ b/palettes/vibrant/neon/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-vibrant-neon", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles vibrant neon palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/vibrant/neon/package.json b/palettes/vibrant/neon/package.json index 772a7a5faf2..912f4dc6a94 100644 --- a/palettes/vibrant/neon/package.json +++ b/palettes/vibrant/neon/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-vibrant-neon", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles vibrant neon palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/vibrant/retro/CHANGELOG.md b/palettes/vibrant/retro/CHANGELOG.md index df98eebe3a5..e1a325fe472 100644 --- a/palettes/vibrant/retro/CHANGELOG.md +++ b/palettes/vibrant/retro/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-vibrant-retro + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-vibrant-retro diff --git a/palettes/vibrant/retro/package.dist.json b/palettes/vibrant/retro/package.dist.json index c2e215383e6..3d15370659b 100644 --- a/palettes/vibrant/retro/package.dist.json +++ b/palettes/vibrant/retro/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-vibrant-retro", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles vibrant retro palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/vibrant/retro/package.json b/palettes/vibrant/retro/package.json index b79ab529cc5..d2ec4690d3a 100644 --- a/palettes/vibrant/retro/package.json +++ b/palettes/vibrant/retro/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-vibrant-retro", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles vibrant retro palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/vibrant/tropical/CHANGELOG.md b/palettes/vibrant/tropical/CHANGELOG.md index 04b3210cab5..1a7a4ad4de0 100644 --- a/palettes/vibrant/tropical/CHANGELOG.md +++ b/palettes/vibrant/tropical/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-vibrant-tropical + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-vibrant-tropical diff --git a/palettes/vibrant/tropical/package.dist.json b/palettes/vibrant/tropical/package.dist.json index 28ee859a908..c15e911c5f8 100644 --- a/palettes/vibrant/tropical/package.dist.json +++ b/palettes/vibrant/tropical/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-vibrant-tropical", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles vibrant tropical palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/vibrant/tropical/package.json b/palettes/vibrant/tropical/package.json index 192253981b4..5a331769018 100644 --- a/palettes/vibrant/tropical/package.json +++ b/palettes/vibrant/tropical/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-vibrant-tropical", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles vibrant tropical palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/water/deepOcean/CHANGELOG.md b/palettes/water/deepOcean/CHANGELOG.md index 53d7d462738..dc71ee3e192 100644 --- a/palettes/water/deepOcean/CHANGELOG.md +++ b/palettes/water/deepOcean/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-deep-ocean + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-deep-ocean diff --git a/palettes/water/deepOcean/package.dist.json b/palettes/water/deepOcean/package.dist.json index b21065491d7..cbee177682f 100644 --- a/palettes/water/deepOcean/package.dist.json +++ b/palettes/water/deepOcean/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-deep-ocean", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles deep ocean palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/water/deepOcean/package.json b/palettes/water/deepOcean/package.json index fdb56d8ea3a..407b8c2646e 100644 --- a/palettes/water/deepOcean/package.json +++ b/palettes/water/deepOcean/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-deep-ocean", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles deep ocean palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/water/default/CHANGELOG.md b/palettes/water/default/CHANGELOG.md index f8578740867..d0a86b042ec 100644 --- a/palettes/water/default/CHANGELOG.md +++ b/palettes/water/default/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-water + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-water diff --git a/palettes/water/default/package.dist.json b/palettes/water/default/package.dist.json index 509eb9d6199..2e596127a47 100644 --- a/palettes/water/default/package.dist.json +++ b/palettes/water/default/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-water", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles water - full palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/water/default/package.json b/palettes/water/default/package.json index e65a3452efe..7b29e517719 100644 --- a/palettes/water/default/package.json +++ b/palettes/water/default/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-water", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles water - full palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/water/foamAndBubbles/CHANGELOG.md b/palettes/water/foamAndBubbles/CHANGELOG.md index 5a1e6c812d1..082b90f6ea1 100644 --- a/palettes/water/foamAndBubbles/CHANGELOG.md +++ b/palettes/water/foamAndBubbles/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-foam-and-bubbles + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-foam-and-bubbles diff --git a/palettes/water/foamAndBubbles/package.dist.json b/palettes/water/foamAndBubbles/package.dist.json index 0da38d31f83..b294f744a19 100644 --- a/palettes/water/foamAndBubbles/package.dist.json +++ b/palettes/water/foamAndBubbles/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-foam-and-bubbles", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles foam & bubbles palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/water/foamAndBubbles/package.json b/palettes/water/foamAndBubbles/package.json index 6b076f20b70..a4b1b6a9c21 100644 --- a/palettes/water/foamAndBubbles/package.json +++ b/palettes/water/foamAndBubbles/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-foam-and-bubbles", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles foam & bubbles palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/water/fogCoastal/CHANGELOG.md b/palettes/water/fogCoastal/CHANGELOG.md index 250e96d74c3..f486d02780e 100644 --- a/palettes/water/fogCoastal/CHANGELOG.md +++ b/palettes/water/fogCoastal/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-fog-coastal + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-fog-coastal diff --git a/palettes/water/fogCoastal/package.dist.json b/palettes/water/fogCoastal/package.dist.json index 70a8b7c3e0c..d139f42494b 100644 --- a/palettes/water/fogCoastal/package.dist.json +++ b/palettes/water/fogCoastal/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fog-coastal", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fog - coastal palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/water/fogCoastal/package.json b/palettes/water/fogCoastal/package.json index 5bd792fc130..00d6fa32a43 100644 --- a/palettes/water/fogCoastal/package.json +++ b/palettes/water/fogCoastal/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fog-coastal", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fog - coastal palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/water/inkInWater/CHANGELOG.md b/palettes/water/inkInWater/CHANGELOG.md index 5903ea06538..f9aea6fece1 100644 --- a/palettes/water/inkInWater/CHANGELOG.md +++ b/palettes/water/inkInWater/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-ink-in-water + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-ink-in-water diff --git a/palettes/water/inkInWater/package.dist.json b/palettes/water/inkInWater/package.dist.json index cc2e701d444..cadf7f8db29 100644 --- a/palettes/water/inkInWater/package.dist.json +++ b/palettes/water/inkInWater/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-ink-in-water", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles ink in water palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/water/inkInWater/package.json b/palettes/water/inkInWater/package.json index b57cc30a952..ed640bb231d 100644 --- a/palettes/water/inkInWater/package.json +++ b/palettes/water/inkInWater/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-ink-in-water", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles ink in water palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/water/lagoon/CHANGELOG.md b/palettes/water/lagoon/CHANGELOG.md index 30fb3d77aa7..3208a240e64 100644 --- a/palettes/water/lagoon/CHANGELOG.md +++ b/palettes/water/lagoon/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-lagoon + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-lagoon diff --git a/palettes/water/lagoon/package.dist.json b/palettes/water/lagoon/package.dist.json index 53684d8600a..8a0c70622ff 100644 --- a/palettes/water/lagoon/package.dist.json +++ b/palettes/water/lagoon/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-lagoon", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles lagoon palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/water/lagoon/package.json b/palettes/water/lagoon/package.json index 26ee5e952d6..5484378b9e0 100644 --- a/palettes/water/lagoon/package.json +++ b/palettes/water/lagoon/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-lagoon", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles lagoon palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/water/rain/CHANGELOG.md b/palettes/water/rain/CHANGELOG.md index 7d9ce2303c3..3cb24669e9a 100644 --- a/palettes/water/rain/CHANGELOG.md +++ b/palettes/water/rain/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-rain + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-rain diff --git a/palettes/water/rain/package.dist.json b/palettes/water/rain/package.dist.json index fd8a9e11e29..1f4258e4c50 100644 --- a/palettes/water/rain/package.dist.json +++ b/palettes/water/rain/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-rain", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles rain palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/water/rain/package.json b/palettes/water/rain/package.json index d1aee62a93e..24c12baae3d 100644 --- a/palettes/water/rain/package.json +++ b/palettes/water/rain/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-rain", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles rain palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/water/risingBubbles/CHANGELOG.md b/palettes/water/risingBubbles/CHANGELOG.md index d8aec02341d..691a5063da7 100644 --- a/palettes/water/risingBubbles/CHANGELOG.md +++ b/palettes/water/risingBubbles/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-rising-bubbles + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-rising-bubbles diff --git a/palettes/water/risingBubbles/package.dist.json b/palettes/water/risingBubbles/package.dist.json index 4231ea2f14e..64895c68bb4 100644 --- a/palettes/water/risingBubbles/package.dist.json +++ b/palettes/water/risingBubbles/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-rising-bubbles", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles rising bubbles palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/water/risingBubbles/package.json b/palettes/water/risingBubbles/package.json index a5b719d9e1a..301c4afd93d 100644 --- a/palettes/water/risingBubbles/package.json +++ b/palettes/water/risingBubbles/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-rising-bubbles", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles rising bubbles palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/water/splash/CHANGELOG.md b/palettes/water/splash/CHANGELOG.md index 5b678495083..1c31c2d5138 100644 --- a/palettes/water/splash/CHANGELOG.md +++ b/palettes/water/splash/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/palette-water-splash + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/palette-water-splash diff --git a/palettes/water/splash/package.dist.json b/palettes/water/splash/package.dist.json index cf7750b94d2..6dd099e8fac 100644 --- a/palettes/water/splash/package.dist.json +++ b/palettes/water/splash/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-water-splash", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles water splash palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/water/splash/package.json b/palettes/water/splash/package.json index 10da3bf3a93..56543fbd336 100644 --- a/palettes/water/splash/package.json +++ b/palettes/water/splash/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-water-splash", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles water splash palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/branches/CHANGELOG.md b/paths/branches/CHANGELOG.md index f60c5d29c1c..bf57420ed48 100644 --- a/paths/branches/CHANGELOG.md +++ b/paths/branches/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/path-branches + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/path-branches diff --git a/paths/branches/package.dist.json b/paths/branches/package.dist.json index 690ffe51cda..52e53124b9a 100644 --- a/paths/branches/package.dist.json +++ b/paths/branches/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-branches", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles branches path", "homepage": "https://particles.js.org", "repository": { @@ -110,8 +110,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-move": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-move": "4.0.4" }, "type": "module" } diff --git a/paths/branches/package.json b/paths/branches/package.json index 20fcdc28535..72915da76cd 100644 --- a/paths/branches/package.json +++ b/paths/branches/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-branches", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles branches path", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/brownian/CHANGELOG.md b/paths/brownian/CHANGELOG.md index 50efdd6d5b7..248703ba455 100644 --- a/paths/brownian/CHANGELOG.md +++ b/paths/brownian/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/path-brownian + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/path-brownian diff --git a/paths/brownian/package.dist.json b/paths/brownian/package.dist.json index 56f3d516186..10bdc38404d 100644 --- a/paths/brownian/package.dist.json +++ b/paths/brownian/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-brownian", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles brownian path", "homepage": "https://particles.js.org", "repository": { @@ -110,8 +110,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-move": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-move": "4.0.4" }, "type": "module" } diff --git a/paths/brownian/package.json b/paths/brownian/package.json index c781215a143..973cf633fef 100644 --- a/paths/brownian/package.json +++ b/paths/brownian/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-brownian", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles brownian path", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/curlNoise/CHANGELOG.md b/paths/curlNoise/CHANGELOG.md index 19cd15efa01..2805638419f 100644 --- a/paths/curlNoise/CHANGELOG.md +++ b/paths/curlNoise/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/path-curl-noise + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/path-curl-noise diff --git a/paths/curlNoise/package.dist.json b/paths/curlNoise/package.dist.json index e481f14db64..ebfe5d41e14 100644 --- a/paths/curlNoise/package.dist.json +++ b/paths/curlNoise/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-curl-noise", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles curl noise path", "homepage": "https://particles.js.org", "repository": { @@ -110,9 +110,9 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-move": "4.0.3", - "@tsparticles/simplex-noise": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-move": "4.0.4", + "@tsparticles/simplex-noise": "4.0.4" }, "type": "module" } diff --git a/paths/curlNoise/package.json b/paths/curlNoise/package.json index b6d70c407e3..c187c7ee44e 100644 --- a/paths/curlNoise/package.json +++ b/paths/curlNoise/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-curl-noise", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles curl noise path", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/curves/CHANGELOG.md b/paths/curves/CHANGELOG.md index 6c393dbfc88..1f8ef7ad3e1 100644 --- a/paths/curves/CHANGELOG.md +++ b/paths/curves/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/path-curves + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/path-curves diff --git a/paths/curves/package.dist.json b/paths/curves/package.dist.json index 86b39436dd8..87c871cf5dd 100644 --- a/paths/curves/package.dist.json +++ b/paths/curves/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-curves", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles curves path", "homepage": "https://particles.js.org", "repository": { @@ -110,8 +110,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-move": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-move": "4.0.4" }, "type": "module" } diff --git a/paths/curves/package.json b/paths/curves/package.json index d2c9952364f..7e2a9bbb54a 100644 --- a/paths/curves/package.json +++ b/paths/curves/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-curves", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles curves path", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/fractalNoise/CHANGELOG.md b/paths/fractalNoise/CHANGELOG.md index c258b0a464f..3d609999b0f 100644 --- a/paths/fractalNoise/CHANGELOG.md +++ b/paths/fractalNoise/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/path-fractal-noise + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/path-fractal-noise diff --git a/paths/fractalNoise/package.dist.json b/paths/fractalNoise/package.dist.json index 884a786077c..3f0cc105425 100644 --- a/paths/fractalNoise/package.dist.json +++ b/paths/fractalNoise/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-fractal-noise", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fractal noise path", "homepage": "https://particles.js.org", "repository": { @@ -110,10 +110,10 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/fractal-noise": "4.0.3", - "@tsparticles/noise-field": "4.0.3", - "@tsparticles/plugin-move": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/fractal-noise": "4.0.4", + "@tsparticles/noise-field": "4.0.4", + "@tsparticles/plugin-move": "4.0.4" }, "type": "module" } diff --git a/paths/fractalNoise/package.json b/paths/fractalNoise/package.json index 7dca7f6cf6a..401e612feb6 100644 --- a/paths/fractalNoise/package.json +++ b/paths/fractalNoise/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-fractal-noise", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fractal noise path", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/grid/CHANGELOG.md b/paths/grid/CHANGELOG.md index e4ccc50b6a8..1dc4cee19a5 100644 --- a/paths/grid/CHANGELOG.md +++ b/paths/grid/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/path-grid + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/path-grid diff --git a/paths/grid/package.dist.json b/paths/grid/package.dist.json index 2ca13340705..c0e91991ba5 100644 --- a/paths/grid/package.dist.json +++ b/paths/grid/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-grid", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles grid path", "homepage": "https://particles.js.org", "repository": { @@ -110,8 +110,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-move": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-move": "4.0.4" }, "type": "module" } diff --git a/paths/grid/package.json b/paths/grid/package.json index f92947146d9..67e3018081f 100644 --- a/paths/grid/package.json +++ b/paths/grid/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-grid", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles grid path", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/levy/CHANGELOG.md b/paths/levy/CHANGELOG.md index 35bfb5bafc0..0b474a7d406 100644 --- a/paths/levy/CHANGELOG.md +++ b/paths/levy/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/path-levy + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/path-levy diff --git a/paths/levy/package.dist.json b/paths/levy/package.dist.json index 5844a4b5a92..d9049a3c2a0 100644 --- a/paths/levy/package.dist.json +++ b/paths/levy/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-levy", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles levy path", "homepage": "https://particles.js.org", "repository": { @@ -110,8 +110,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-move": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-move": "4.0.4" }, "type": "module" } diff --git a/paths/levy/package.json b/paths/levy/package.json index 2cb5d277cc2..f9cb3ae1805 100644 --- a/paths/levy/package.json +++ b/paths/levy/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-levy", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles levy path", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/perlinNoise/CHANGELOG.md b/paths/perlinNoise/CHANGELOG.md index 73b19c1ea88..e04c5a9068a 100644 --- a/paths/perlinNoise/CHANGELOG.md +++ b/paths/perlinNoise/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/path-perlin-noise + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/path-perlin-noise diff --git a/paths/perlinNoise/package.dist.json b/paths/perlinNoise/package.dist.json index 7c7bfda941b..50bb70b0a3a 100644 --- a/paths/perlinNoise/package.dist.json +++ b/paths/perlinNoise/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-perlin-noise", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles perlin noise path", "homepage": "https://particles.js.org", "repository": { @@ -110,10 +110,10 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/noise-field": "4.0.3", - "@tsparticles/perlin-noise": "4.0.3", - "@tsparticles/plugin-move": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/noise-field": "4.0.4", + "@tsparticles/perlin-noise": "4.0.4", + "@tsparticles/plugin-move": "4.0.4" }, "type": "module" } diff --git a/paths/perlinNoise/package.json b/paths/perlinNoise/package.json index 53edcb71546..d2a40589f34 100644 --- a/paths/perlinNoise/package.json +++ b/paths/perlinNoise/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-perlin-noise", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles perlin noise path", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/polygon/CHANGELOG.md b/paths/polygon/CHANGELOG.md index 5ab6e555e9b..f3a9138df03 100644 --- a/paths/polygon/CHANGELOG.md +++ b/paths/polygon/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/path-polygon + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/path-polygon diff --git a/paths/polygon/package.dist.json b/paths/polygon/package.dist.json index 39e7076dfb5..c3bd28b248e 100644 --- a/paths/polygon/package.dist.json +++ b/paths/polygon/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-polygon", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles polygon path", "homepage": "https://particles.js.org", "repository": { @@ -110,8 +110,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-move": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-move": "4.0.4" }, "type": "module" } diff --git a/paths/polygon/package.json b/paths/polygon/package.json index f2cea945331..0792cb6c26e 100644 --- a/paths/polygon/package.json +++ b/paths/polygon/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-polygon", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles polygon path", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/random/CHANGELOG.md b/paths/random/CHANGELOG.md index 025355aa1e5..968ad84f96f 100644 --- a/paths/random/CHANGELOG.md +++ b/paths/random/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/path-random + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/path-random diff --git a/paths/random/package.dist.json b/paths/random/package.dist.json index 18225b71ec1..312f9642c12 100644 --- a/paths/random/package.dist.json +++ b/paths/random/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-random", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles zig zag path", "homepage": "https://particles.js.org", "repository": { @@ -107,8 +107,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-move": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-move": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/paths/random/package.json b/paths/random/package.json index dd34e04c4d0..99bb00e8e20 100644 --- a/paths/random/package.json +++ b/paths/random/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-random", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles zig zag path", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/simplexNoise/CHANGELOG.md b/paths/simplexNoise/CHANGELOG.md index 356a55cbe4a..6b2a01f2243 100644 --- a/paths/simplexNoise/CHANGELOG.md +++ b/paths/simplexNoise/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/path-simplex-noise + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/path-simplex-noise diff --git a/paths/simplexNoise/package.dist.json b/paths/simplexNoise/package.dist.json index f0da6106629..9a57c17f6d7 100644 --- a/paths/simplexNoise/package.dist.json +++ b/paths/simplexNoise/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-simplex-noise", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles simplex noise path", "homepage": "https://particles.js.org", "repository": { @@ -110,10 +110,10 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/noise-field": "4.0.3", - "@tsparticles/plugin-move": "4.0.3", - "@tsparticles/simplex-noise": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/noise-field": "4.0.4", + "@tsparticles/plugin-move": "4.0.4", + "@tsparticles/simplex-noise": "4.0.4" }, "type": "module" } diff --git a/paths/simplexNoise/package.json b/paths/simplexNoise/package.json index c0554c1c4a9..f8a8859ea16 100644 --- a/paths/simplexNoise/package.json +++ b/paths/simplexNoise/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-simplex-noise", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles simplex noise path", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/spiral/CHANGELOG.md b/paths/spiral/CHANGELOG.md index 2e0ded229f7..1bf9e111969 100644 --- a/paths/spiral/CHANGELOG.md +++ b/paths/spiral/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/path-spiral + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/path-spiral diff --git a/paths/spiral/package.dist.json b/paths/spiral/package.dist.json index 72662e0b230..34321f25787 100644 --- a/paths/spiral/package.dist.json +++ b/paths/spiral/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-spiral", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles spiral path", "homepage": "https://particles.js.org", "repository": { @@ -110,8 +110,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-move": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-move": "4.0.4" }, "type": "module" } diff --git a/paths/spiral/package.json b/paths/spiral/package.json index 871f2e70aa8..a5821734838 100644 --- a/paths/spiral/package.json +++ b/paths/spiral/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-spiral", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles spiral path", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/svg/CHANGELOG.md b/paths/svg/CHANGELOG.md index edb30af2e77..a80bcc84537 100644 --- a/paths/svg/CHANGELOG.md +++ b/paths/svg/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/path-svg + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/path-svg diff --git a/paths/svg/package.dist.json b/paths/svg/package.dist.json index 80fed1aac93..0f636dff8cd 100644 --- a/paths/svg/package.dist.json +++ b/paths/svg/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-svg", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles svg path", "homepage": "https://particles.js.org", "repository": { @@ -107,8 +107,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-move": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-move": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/paths/svg/package.json b/paths/svg/package.json index 4dc6b8de0d9..297646e3fb4 100644 --- a/paths/svg/package.json +++ b/paths/svg/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-svg", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles svg path", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/zigzag/CHANGELOG.md b/paths/zigzag/CHANGELOG.md index 2bff35a588d..a9b1bbf9bd0 100644 --- a/paths/zigzag/CHANGELOG.md +++ b/paths/zigzag/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/path-zig-zag + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/path-zig-zag diff --git a/paths/zigzag/package.dist.json b/paths/zigzag/package.dist.json index a554e14e136..2dc118e4958 100644 --- a/paths/zigzag/package.dist.json +++ b/paths/zigzag/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-zig-zag", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles zig zag path", "homepage": "https://particles.js.org", "repository": { @@ -107,8 +107,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-move": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-move": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/paths/zigzag/package.json b/paths/zigzag/package.json index 5f3651d3eeb..44f08dee44b 100644 --- a/paths/zigzag/package.json +++ b/paths/zigzag/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-zig-zag", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles zig zag path", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/absorbers/CHANGELOG.md b/plugins/absorbers/CHANGELOG.md index 17bcb4bc67f..99befb37a7d 100644 --- a/plugins/absorbers/CHANGELOG.md +++ b/plugins/absorbers/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-absorbers + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-absorbers diff --git a/plugins/absorbers/package.dist.json b/plugins/absorbers/package.dist.json index 7913a70d82c..13e50745422 100644 --- a/plugins/absorbers/package.dist.json +++ b/plugins/absorbers/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-absorbers", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles absorbers plugin", "homepage": "https://particles.js.org", "repository": { @@ -120,8 +120,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-interactivity": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-interactivity": "4.0.4" }, "peerDependenciesMeta": { "@tsparticles/plugin-interactivity": { diff --git a/plugins/absorbers/package.json b/plugins/absorbers/package.json index 59bbf8d6058..08242028fb0 100644 --- a/plugins/absorbers/package.json +++ b/plugins/absorbers/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-absorbers", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles absorbers plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/backgroundMask/CHANGELOG.md b/plugins/backgroundMask/CHANGELOG.md index eb4a8aecf72..452ba34db41 100644 --- a/plugins/backgroundMask/CHANGELOG.md +++ b/plugins/backgroundMask/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-background-mask + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-background-mask diff --git a/plugins/backgroundMask/package.dist.json b/plugins/backgroundMask/package.dist.json index 27a2916e8df..8d90b4f8df0 100644 --- a/plugins/backgroundMask/package.dist.json +++ b/plugins/backgroundMask/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-background-mask", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles background mask plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,7 +92,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/plugins/backgroundMask/package.json b/plugins/backgroundMask/package.json index 7ae7381b5ef..6debb1a3638 100644 --- a/plugins/backgroundMask/package.json +++ b/plugins/backgroundMask/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-background-mask", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles background mask plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/blend/CHANGELOG.md b/plugins/blend/CHANGELOG.md index 56a72c18661..c8432c05f97 100644 --- a/plugins/blend/CHANGELOG.md +++ b/plugins/blend/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-blend + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-blend diff --git a/plugins/blend/package.dist.json b/plugins/blend/package.dist.json index 24296bf9ecd..00360e95f1f 100644 --- a/plugins/blend/package.dist.json +++ b/plugins/blend/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-blend", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles blend plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,7 +92,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/plugins/blend/package.json b/plugins/blend/package.json index 8d5e97d871b..4fd1f20cdb2 100644 --- a/plugins/blend/package.json +++ b/plugins/blend/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-blend", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles blend plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/canvasMask/CHANGELOG.md b/plugins/canvasMask/CHANGELOG.md index 489f789e837..daa23774267 100644 --- a/plugins/canvasMask/CHANGELOG.md +++ b/plugins/canvasMask/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-canvas-mask + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-canvas-mask diff --git a/plugins/canvasMask/package.dist.json b/plugins/canvasMask/package.dist.json index efea90876d6..8b7e045c56e 100644 --- a/plugins/canvasMask/package.dist.json +++ b/plugins/canvasMask/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-canvas-mask", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles canvas mask plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,13 +92,13 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" }, "type": "module", "dependencies": { - "@tsparticles/canvas-utils": "4.0.3" + "@tsparticles/canvas-utils": "4.0.4" } } diff --git a/plugins/canvasMask/package.json b/plugins/canvasMask/package.json index 3012aa28bd2..d9e563065dc 100644 --- a/plugins/canvasMask/package.json +++ b/plugins/canvasMask/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-canvas-mask", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles canvas mask plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/colors/hex/CHANGELOG.md b/plugins/colors/hex/CHANGELOG.md index d4d63f0fcf8..fbb408fc9d0 100644 --- a/plugins/colors/hex/CHANGELOG.md +++ b/plugins/colors/hex/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-hex-color + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-hex-color diff --git a/plugins/colors/hex/package.dist.json b/plugins/colors/hex/package.dist.json index eef39c571e8..e8c92cc3751 100644 --- a/plugins/colors/hex/package.dist.json +++ b/plugins/colors/hex/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-hex-color", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles hex color plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/plugins/colors/hex/package.json b/plugins/colors/hex/package.json index 725088a2f41..3da84a82ab2 100644 --- a/plugins/colors/hex/package.json +++ b/plugins/colors/hex/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-hex-color", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles hex color plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/colors/hsl/CHANGELOG.md b/plugins/colors/hsl/CHANGELOG.md index f0b16847d13..2cba1bb0d4c 100644 --- a/plugins/colors/hsl/CHANGELOG.md +++ b/plugins/colors/hsl/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-hsl-color + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-hsl-color diff --git a/plugins/colors/hsl/package.dist.json b/plugins/colors/hsl/package.dist.json index 99e809869d8..e8d3ff697e8 100644 --- a/plugins/colors/hsl/package.dist.json +++ b/plugins/colors/hsl/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-hsl-color", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles HSL color plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/plugins/colors/hsl/package.json b/plugins/colors/hsl/package.json index 6f1b32d8e84..92651a92f3a 100644 --- a/plugins/colors/hsl/package.json +++ b/plugins/colors/hsl/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-hsl-color", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles HSL color plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/colors/hsv/CHANGELOG.md b/plugins/colors/hsv/CHANGELOG.md index ec07420eb3a..213105e1821 100644 --- a/plugins/colors/hsv/CHANGELOG.md +++ b/plugins/colors/hsv/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-hsv-color + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-hsv-color diff --git a/plugins/colors/hsv/package.dist.json b/plugins/colors/hsv/package.dist.json index ffe2d5e9122..74b2600f986 100644 --- a/plugins/colors/hsv/package.dist.json +++ b/plugins/colors/hsv/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-hsv-color", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles HSV color plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/plugins/colors/hsv/package.json b/plugins/colors/hsv/package.json index 59842d03e45..9ab98dcd4b4 100644 --- a/plugins/colors/hsv/package.json +++ b/plugins/colors/hsv/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-hsv-color", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles HSV color plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/colors/hwb/CHANGELOG.md b/plugins/colors/hwb/CHANGELOG.md index cc9999a3417..380f3a9fcc4 100644 --- a/plugins/colors/hwb/CHANGELOG.md +++ b/plugins/colors/hwb/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-hwb-color + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-hwb-color diff --git a/plugins/colors/hwb/package.dist.json b/plugins/colors/hwb/package.dist.json index e1f07dac1f2..289b76609ac 100644 --- a/plugins/colors/hwb/package.dist.json +++ b/plugins/colors/hwb/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-hwb-color", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles HWB color plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/plugins/colors/hwb/package.json b/plugins/colors/hwb/package.json index 5fcf7e20117..409a366a4b4 100644 --- a/plugins/colors/hwb/package.json +++ b/plugins/colors/hwb/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-hwb-color", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles HWB color plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/colors/lab/CHANGELOG.md b/plugins/colors/lab/CHANGELOG.md index be1ea7900bf..cf9ab3d0fcb 100644 --- a/plugins/colors/lab/CHANGELOG.md +++ b/plugins/colors/lab/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-lab-color + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-lab-color diff --git a/plugins/colors/lab/package.dist.json b/plugins/colors/lab/package.dist.json index 30c137257bb..1ef1a72e19c 100644 --- a/plugins/colors/lab/package.dist.json +++ b/plugins/colors/lab/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-lab-color", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles LAB color plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/plugins/colors/lab/package.json b/plugins/colors/lab/package.json index d2cbc2b2d40..c9d5747662e 100644 --- a/plugins/colors/lab/package.json +++ b/plugins/colors/lab/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-lab-color", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles LAB color plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/colors/lch/CHANGELOG.md b/plugins/colors/lch/CHANGELOG.md index af379452c0d..5a6ea74dfcf 100644 --- a/plugins/colors/lch/CHANGELOG.md +++ b/plugins/colors/lch/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-lch-color + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-lch-color diff --git a/plugins/colors/lch/package.dist.json b/plugins/colors/lch/package.dist.json index 8152f9fba13..79476bbda68 100644 --- a/plugins/colors/lch/package.dist.json +++ b/plugins/colors/lch/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-lch-color", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles LCH color plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/plugins/colors/lch/package.json b/plugins/colors/lch/package.json index 48575f86ead..468088da967 100644 --- a/plugins/colors/lch/package.json +++ b/plugins/colors/lch/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-lch-color", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles LCH color plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/colors/named/CHANGELOG.md b/plugins/colors/named/CHANGELOG.md index 4269ca60226..ec49fe2a1d5 100644 --- a/plugins/colors/named/CHANGELOG.md +++ b/plugins/colors/named/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-named-color + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-named-color diff --git a/plugins/colors/named/package.dist.json b/plugins/colors/named/package.dist.json index 2a4b60c0e18..e812a9457de 100644 --- a/plugins/colors/named/package.dist.json +++ b/plugins/colors/named/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-named-color", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles named color plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/plugins/colors/named/package.json b/plugins/colors/named/package.json index 6c458caab98..9cde0c849cd 100644 --- a/plugins/colors/named/package.json +++ b/plugins/colors/named/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-named-color", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles named color plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/colors/oklab/CHANGELOG.md b/plugins/colors/oklab/CHANGELOG.md index 59d3fd22d53..d0212b3a648 100644 --- a/plugins/colors/oklab/CHANGELOG.md +++ b/plugins/colors/oklab/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-oklab-color + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-oklab-color diff --git a/plugins/colors/oklab/package.dist.json b/plugins/colors/oklab/package.dist.json index f80300eb05e..d1ab76223a8 100644 --- a/plugins/colors/oklab/package.dist.json +++ b/plugins/colors/oklab/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-oklab-color", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles OKLAB color plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/plugins/colors/oklab/package.json b/plugins/colors/oklab/package.json index 2b39f99d395..780c192be16 100644 --- a/plugins/colors/oklab/package.json +++ b/plugins/colors/oklab/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-oklab-color", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles OKLAB color plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/colors/oklch/CHANGELOG.md b/plugins/colors/oklch/CHANGELOG.md index 7fbd81b360b..abd47d9e068 100644 --- a/plugins/colors/oklch/CHANGELOG.md +++ b/plugins/colors/oklch/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-oklch-color + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-oklch-color diff --git a/plugins/colors/oklch/package.dist.json b/plugins/colors/oklch/package.dist.json index 11ec8ebc471..1b6412eaf24 100644 --- a/plugins/colors/oklch/package.dist.json +++ b/plugins/colors/oklch/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-oklch-color", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles OKLCH color plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/plugins/colors/oklch/package.json b/plugins/colors/oklch/package.json index 83ebbdb3212..1f69b4a3c0d 100644 --- a/plugins/colors/oklch/package.json +++ b/plugins/colors/oklch/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-oklch-color", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles OKLCH color plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/colors/rgb/CHANGELOG.md b/plugins/colors/rgb/CHANGELOG.md index 5c35005df57..ae17c9a48b4 100644 --- a/plugins/colors/rgb/CHANGELOG.md +++ b/plugins/colors/rgb/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-rgb-color + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-rgb-color diff --git a/plugins/colors/rgb/package.dist.json b/plugins/colors/rgb/package.dist.json index c33c0311bf9..06d5e33ba21 100644 --- a/plugins/colors/rgb/package.dist.json +++ b/plugins/colors/rgb/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-rgb-color", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles RGB color plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/plugins/colors/rgb/package.json b/plugins/colors/rgb/package.json index d91bce9dd26..ef4b88c842d 100644 --- a/plugins/colors/rgb/package.json +++ b/plugins/colors/rgb/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-rgb-color", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles RGB color plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/easings/back/CHANGELOG.md b/plugins/easings/back/CHANGELOG.md index 43476e91c56..e6f7ca1b1f1 100644 --- a/plugins/easings/back/CHANGELOG.md +++ b/plugins/easings/back/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-easing-back + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-easing-back diff --git a/plugins/easings/back/package.dist.json b/plugins/easings/back/package.dist.json index eaf616784ff..9b7539dfa55 100644 --- a/plugins/easings/back/package.dist.json +++ b/plugins/easings/back/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-back", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles easing back plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/plugins/easings/back/package.json b/plugins/easings/back/package.json index d0bb1048c21..9e0ddc1df52 100644 --- a/plugins/easings/back/package.json +++ b/plugins/easings/back/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-back", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles easing back plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/easings/bounce/CHANGELOG.md b/plugins/easings/bounce/CHANGELOG.md index f97b9fa7fe1..b7f3d8603f9 100644 --- a/plugins/easings/bounce/CHANGELOG.md +++ b/plugins/easings/bounce/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-easing-bounce + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-easing-bounce diff --git a/plugins/easings/bounce/package.dist.json b/plugins/easings/bounce/package.dist.json index 94c34e6bdfe..450d768a49c 100644 --- a/plugins/easings/bounce/package.dist.json +++ b/plugins/easings/bounce/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-bounce", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles easing bounce plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/plugins/easings/bounce/package.json b/plugins/easings/bounce/package.json index 78cf3a1c5dd..6e35c71686a 100644 --- a/plugins/easings/bounce/package.json +++ b/plugins/easings/bounce/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-bounce", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles easing bounce plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/easings/circ/CHANGELOG.md b/plugins/easings/circ/CHANGELOG.md index 52572b00ff0..5d07e159ece 100644 --- a/plugins/easings/circ/CHANGELOG.md +++ b/plugins/easings/circ/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-easing-circ + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-easing-circ diff --git a/plugins/easings/circ/package.dist.json b/plugins/easings/circ/package.dist.json index 4bc443d0634..118d995c550 100644 --- a/plugins/easings/circ/package.dist.json +++ b/plugins/easings/circ/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-circ", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles easing circ plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/plugins/easings/circ/package.json b/plugins/easings/circ/package.json index 893949ec2da..0f19cbddc6e 100644 --- a/plugins/easings/circ/package.json +++ b/plugins/easings/circ/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-circ", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles easing circ plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/easings/cubic/CHANGELOG.md b/plugins/easings/cubic/CHANGELOG.md index 88ca1058aa6..3118d4d0733 100644 --- a/plugins/easings/cubic/CHANGELOG.md +++ b/plugins/easings/cubic/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-easing-cubic + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-easing-cubic diff --git a/plugins/easings/cubic/package.dist.json b/plugins/easings/cubic/package.dist.json index 7b737d99817..0e877145f22 100644 --- a/plugins/easings/cubic/package.dist.json +++ b/plugins/easings/cubic/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-cubic", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles easing cubic plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/plugins/easings/cubic/package.json b/plugins/easings/cubic/package.json index 533615ffda5..5e31732cc0c 100644 --- a/plugins/easings/cubic/package.json +++ b/plugins/easings/cubic/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-cubic", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles easing cubic plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/easings/elastic/CHANGELOG.md b/plugins/easings/elastic/CHANGELOG.md index 85f5e710fcf..2647e235b89 100644 --- a/plugins/easings/elastic/CHANGELOG.md +++ b/plugins/easings/elastic/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-easing-elastic + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-easing-elastic diff --git a/plugins/easings/elastic/package.dist.json b/plugins/easings/elastic/package.dist.json index 349ced740b5..eb4a4648241 100644 --- a/plugins/easings/elastic/package.dist.json +++ b/plugins/easings/elastic/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-elastic", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles easing elastic plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/plugins/easings/elastic/package.json b/plugins/easings/elastic/package.json index 474e5100f57..ae210b01843 100644 --- a/plugins/easings/elastic/package.json +++ b/plugins/easings/elastic/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-elastic", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles easing elastic plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/easings/expo/CHANGELOG.md b/plugins/easings/expo/CHANGELOG.md index 44fc5d3e172..d248e52f03d 100644 --- a/plugins/easings/expo/CHANGELOG.md +++ b/plugins/easings/expo/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-easing-expo + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-easing-expo diff --git a/plugins/easings/expo/package.dist.json b/plugins/easings/expo/package.dist.json index 4494be3bc5f..89e28c4bb12 100644 --- a/plugins/easings/expo/package.dist.json +++ b/plugins/easings/expo/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-expo", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles easing expo plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/plugins/easings/expo/package.json b/plugins/easings/expo/package.json index c76c39e39df..6fa9d4f450f 100644 --- a/plugins/easings/expo/package.json +++ b/plugins/easings/expo/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-expo", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles easing expo plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/easings/gaussian/CHANGELOG.md b/plugins/easings/gaussian/CHANGELOG.md index 4ba57a993bc..967ba195176 100644 --- a/plugins/easings/gaussian/CHANGELOG.md +++ b/plugins/easings/gaussian/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-easing-gaussian + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-easing-gaussian diff --git a/plugins/easings/gaussian/package.dist.json b/plugins/easings/gaussian/package.dist.json index 0f54f40d075..273320548bd 100644 --- a/plugins/easings/gaussian/package.dist.json +++ b/plugins/easings/gaussian/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-gaussian", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles easing gaussian plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "devDependencies": { "@tsparticles/engine": "workspace:*" diff --git a/plugins/easings/gaussian/package.json b/plugins/easings/gaussian/package.json index 4a2b02742d7..97fd23b4aa9 100644 --- a/plugins/easings/gaussian/package.json +++ b/plugins/easings/gaussian/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-gaussian", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles easing gaussian plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/easings/linear/CHANGELOG.md b/plugins/easings/linear/CHANGELOG.md index 06bd092747c..e0ece2bf1ca 100644 --- a/plugins/easings/linear/CHANGELOG.md +++ b/plugins/easings/linear/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-easing-linear + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-easing-linear diff --git a/plugins/easings/linear/package.dist.json b/plugins/easings/linear/package.dist.json index 7cbf59c98e5..42e93c6e6ed 100644 --- a/plugins/easings/linear/package.dist.json +++ b/plugins/easings/linear/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-linear", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles easing linear plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "devDependencies": { "@tsparticles/engine": "workspace:*" diff --git a/plugins/easings/linear/package.json b/plugins/easings/linear/package.json index bca77d008c3..b9bbd4691b1 100644 --- a/plugins/easings/linear/package.json +++ b/plugins/easings/linear/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-linear", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles easing linear plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/easings/quad/CHANGELOG.md b/plugins/easings/quad/CHANGELOG.md index 16ca754f77b..0516c9c1079 100644 --- a/plugins/easings/quad/CHANGELOG.md +++ b/plugins/easings/quad/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-easing-quad + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-easing-quad diff --git a/plugins/easings/quad/package.dist.json b/plugins/easings/quad/package.dist.json index 4d622a75962..83dd68186c9 100644 --- a/plugins/easings/quad/package.dist.json +++ b/plugins/easings/quad/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-quad", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles easing quad plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "devDependencies": { "@tsparticles/engine": "workspace:*" diff --git a/plugins/easings/quad/package.json b/plugins/easings/quad/package.json index 61fd377c73d..42f56b2c6c5 100644 --- a/plugins/easings/quad/package.json +++ b/plugins/easings/quad/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-quad", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles easing quad plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/easings/quart/CHANGELOG.md b/plugins/easings/quart/CHANGELOG.md index 96540cedcce..a6205f90d8c 100644 --- a/plugins/easings/quart/CHANGELOG.md +++ b/plugins/easings/quart/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-easing-quart + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-easing-quart diff --git a/plugins/easings/quart/package.dist.json b/plugins/easings/quart/package.dist.json index 3b394d1b47b..4205a134ed2 100644 --- a/plugins/easings/quart/package.dist.json +++ b/plugins/easings/quart/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-quart", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles easing quart plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/plugins/easings/quart/package.json b/plugins/easings/quart/package.json index ae8617a62f9..597ae268156 100644 --- a/plugins/easings/quart/package.json +++ b/plugins/easings/quart/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-quart", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles easing quart plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/easings/quint/CHANGELOG.md b/plugins/easings/quint/CHANGELOG.md index c0a6afeef59..0985c93c5ab 100644 --- a/plugins/easings/quint/CHANGELOG.md +++ b/plugins/easings/quint/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-easing-quint + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-easing-quint diff --git a/plugins/easings/quint/package.dist.json b/plugins/easings/quint/package.dist.json index 223a1c7d610..a103351e8a5 100644 --- a/plugins/easings/quint/package.dist.json +++ b/plugins/easings/quint/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-quint", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles easing quint plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/plugins/easings/quint/package.json b/plugins/easings/quint/package.json index 70ea8899e50..951d3f7f4d3 100644 --- a/plugins/easings/quint/package.json +++ b/plugins/easings/quint/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-quint", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles easing quint plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/easings/sigmoid/CHANGELOG.md b/plugins/easings/sigmoid/CHANGELOG.md index 6fb6dec7338..3bc3f7d8f8c 100644 --- a/plugins/easings/sigmoid/CHANGELOG.md +++ b/plugins/easings/sigmoid/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-easing-sigmoid + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-easing-sigmoid diff --git a/plugins/easings/sigmoid/package.dist.json b/plugins/easings/sigmoid/package.dist.json index 67333229eb4..a3f07f08660 100644 --- a/plugins/easings/sigmoid/package.dist.json +++ b/plugins/easings/sigmoid/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-sigmoid", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles easing sigmoid plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/plugins/easings/sigmoid/package.json b/plugins/easings/sigmoid/package.json index 4d26c93c5c4..7493241cdd4 100644 --- a/plugins/easings/sigmoid/package.json +++ b/plugins/easings/sigmoid/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-sigmoid", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles easing sigmoid plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/easings/sine/CHANGELOG.md b/plugins/easings/sine/CHANGELOG.md index 226d606d625..ec3c8d27353 100644 --- a/plugins/easings/sine/CHANGELOG.md +++ b/plugins/easings/sine/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-easing-sine + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-easing-sine diff --git a/plugins/easings/sine/package.dist.json b/plugins/easings/sine/package.dist.json index 13389e14cfe..34bcab16b3f 100644 --- a/plugins/easings/sine/package.dist.json +++ b/plugins/easings/sine/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-sine", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles easing sine plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/plugins/easings/sine/package.json b/plugins/easings/sine/package.json index 35749ca44ab..56942141a3a 100644 --- a/plugins/easings/sine/package.json +++ b/plugins/easings/sine/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-sine", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles easing sine plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/easings/smoothstep/CHANGELOG.md b/plugins/easings/smoothstep/CHANGELOG.md index f0fed9d483b..ff4a3bb2380 100644 --- a/plugins/easings/smoothstep/CHANGELOG.md +++ b/plugins/easings/smoothstep/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-easing-smoothstep + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-easing-smoothstep diff --git a/plugins/easings/smoothstep/package.dist.json b/plugins/easings/smoothstep/package.dist.json index 827de718e0e..1101f723682 100644 --- a/plugins/easings/smoothstep/package.dist.json +++ b/plugins/easings/smoothstep/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-smoothstep", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles easing smoothstep plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/plugins/easings/smoothstep/package.json b/plugins/easings/smoothstep/package.json index d5e4ceb838a..102f75f3fcc 100644 --- a/plugins/easings/smoothstep/package.json +++ b/plugins/easings/smoothstep/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-smoothstep", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles easing smoothstep plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/emitters/CHANGELOG.md b/plugins/emitters/CHANGELOG.md index aedff982005..4d7d7bf39f3 100644 --- a/plugins/emitters/CHANGELOG.md +++ b/plugins/emitters/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-emitters + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-emitters diff --git a/plugins/emitters/package.dist.json b/plugins/emitters/package.dist.json index 8521c261d82..e491dee7e8d 100644 --- a/plugins/emitters/package.dist.json +++ b/plugins/emitters/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-emitters", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles emitters plugin", "homepage": "https://particles.js.org", "repository": { @@ -120,8 +120,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-interactivity": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-interactivity": "4.0.4" }, "peerDependenciesMeta": { "@tsparticles/plugin-interactivity": { diff --git a/plugins/emitters/package.json b/plugins/emitters/package.json index f6274af2d08..5ed1d4171e8 100644 --- a/plugins/emitters/package.json +++ b/plugins/emitters/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-emitters", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles emitters plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/emittersShapes/canvas/CHANGELOG.md b/plugins/emittersShapes/canvas/CHANGELOG.md index a7d3377bb02..6dcc7f090c8 100644 --- a/plugins/emittersShapes/canvas/CHANGELOG.md +++ b/plugins/emittersShapes/canvas/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-emitters-shape-canvas + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-emitters-shape-canvas diff --git a/plugins/emittersShapes/canvas/package.dist.json b/plugins/emittersShapes/canvas/package.dist.json index 7653ddcb3fb..2cdcaa39361 100644 --- a/plugins/emittersShapes/canvas/package.dist.json +++ b/plugins/emittersShapes/canvas/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-emitters-shape-canvas", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles emitters shape canvas plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,14 +106,14 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-emitters": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-emitters": "4.0.4" }, "publishConfig": { "access": "public" }, "type": "module", "dependencies": { - "@tsparticles/canvas-utils": "4.0.3" + "@tsparticles/canvas-utils": "4.0.4" } } diff --git a/plugins/emittersShapes/canvas/package.json b/plugins/emittersShapes/canvas/package.json index da73b82a94d..ea46fff1a15 100644 --- a/plugins/emittersShapes/canvas/package.json +++ b/plugins/emittersShapes/canvas/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-emitters-shape-canvas", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles emitters shape canvas plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/emittersShapes/circle/CHANGELOG.md b/plugins/emittersShapes/circle/CHANGELOG.md index f60e5f8962e..a01e86b8780 100644 --- a/plugins/emittersShapes/circle/CHANGELOG.md +++ b/plugins/emittersShapes/circle/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-emitters-shape-circle + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-emitters-shape-circle diff --git a/plugins/emittersShapes/circle/package.dist.json b/plugins/emittersShapes/circle/package.dist.json index dfff4d6e46c..4cd8de57932 100644 --- a/plugins/emittersShapes/circle/package.dist.json +++ b/plugins/emittersShapes/circle/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-emitters-shape-circle", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles emitters shape circle plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,8 +106,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-emitters": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-emitters": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/plugins/emittersShapes/circle/package.json b/plugins/emittersShapes/circle/package.json index 00ddc920abf..b1973843332 100644 --- a/plugins/emittersShapes/circle/package.json +++ b/plugins/emittersShapes/circle/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-emitters-shape-circle", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles emitters shape circle plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/emittersShapes/path/CHANGELOG.md b/plugins/emittersShapes/path/CHANGELOG.md index fda0c44c106..82ae29e53d8 100644 --- a/plugins/emittersShapes/path/CHANGELOG.md +++ b/plugins/emittersShapes/path/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-emitters-shape-path + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-emitters-shape-path diff --git a/plugins/emittersShapes/path/package.dist.json b/plugins/emittersShapes/path/package.dist.json index f5e4456f322..3b48d81e61c 100644 --- a/plugins/emittersShapes/path/package.dist.json +++ b/plugins/emittersShapes/path/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-emitters-shape-path", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles emitters shape path plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,8 +106,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-emitters": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-emitters": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/plugins/emittersShapes/path/package.json b/plugins/emittersShapes/path/package.json index cc1a9afd582..5bed854f819 100644 --- a/plugins/emittersShapes/path/package.json +++ b/plugins/emittersShapes/path/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-emitters-shape-path", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles emitters shape path plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/emittersShapes/polygon/CHANGELOG.md b/plugins/emittersShapes/polygon/CHANGELOG.md index 973adbbdcca..de7ad51f602 100644 --- a/plugins/emittersShapes/polygon/CHANGELOG.md +++ b/plugins/emittersShapes/polygon/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-emitters-shape-polygon + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-emitters-shape-polygon diff --git a/plugins/emittersShapes/polygon/package.dist.json b/plugins/emittersShapes/polygon/package.dist.json index d4b2644da19..4ef51598600 100644 --- a/plugins/emittersShapes/polygon/package.dist.json +++ b/plugins/emittersShapes/polygon/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-emitters-shape-polygon", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles emitters shape polygon plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,8 +106,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-emitters": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-emitters": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/plugins/emittersShapes/polygon/package.json b/plugins/emittersShapes/polygon/package.json index 79bae5bb4c5..743e1932e42 100644 --- a/plugins/emittersShapes/polygon/package.json +++ b/plugins/emittersShapes/polygon/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-emitters-shape-polygon", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles emitters shape polygon plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/emittersShapes/square/CHANGELOG.md b/plugins/emittersShapes/square/CHANGELOG.md index 3b06258873d..19b98d2c339 100644 --- a/plugins/emittersShapes/square/CHANGELOG.md +++ b/plugins/emittersShapes/square/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-emitters-shape-square + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-emitters-shape-square diff --git a/plugins/emittersShapes/square/package.dist.json b/plugins/emittersShapes/square/package.dist.json index c3ff92e1741..e5f4bdc754d 100644 --- a/plugins/emittersShapes/square/package.dist.json +++ b/plugins/emittersShapes/square/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-emitters-shape-square", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles emitters shape square plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,8 +106,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-emitters": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-emitters": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/plugins/emittersShapes/square/package.json b/plugins/emittersShapes/square/package.json index e45b7f2fae1..a20c544eec2 100644 --- a/plugins/emittersShapes/square/package.json +++ b/plugins/emittersShapes/square/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-emitters-shape-square", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles emitters shape square plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/exports/image/CHANGELOG.md b/plugins/exports/image/CHANGELOG.md index e19a5c028c4..7405833ad92 100644 --- a/plugins/exports/image/CHANGELOG.md +++ b/plugins/exports/image/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-export-image + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-export-image diff --git a/plugins/exports/image/package.dist.json b/plugins/exports/image/package.dist.json index 0cc14c3d8c1..3bae8a0131c 100644 --- a/plugins/exports/image/package.dist.json +++ b/plugins/exports/image/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-export-image", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles export image plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/plugins/exports/image/package.json b/plugins/exports/image/package.json index 31762f67f8a..03a3d1b5859 100644 --- a/plugins/exports/image/package.json +++ b/plugins/exports/image/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-export-image", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles export image plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/exports/json/CHANGELOG.md b/plugins/exports/json/CHANGELOG.md index aa03c0f4276..aeb59bcbf2c 100644 --- a/plugins/exports/json/CHANGELOG.md +++ b/plugins/exports/json/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-export-json + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-export-json diff --git a/plugins/exports/json/package.dist.json b/plugins/exports/json/package.dist.json index cdad287fafa..530e45a5de3 100644 --- a/plugins/exports/json/package.dist.json +++ b/plugins/exports/json/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-export-json", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles export json plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/plugins/exports/json/package.json b/plugins/exports/json/package.json index 23ad2874304..ca7e0cef029 100644 --- a/plugins/exports/json/package.json +++ b/plugins/exports/json/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-export-json", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles export json plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/exports/video/CHANGELOG.md b/plugins/exports/video/CHANGELOG.md index 505628cbbc6..643499e04e4 100644 --- a/plugins/exports/video/CHANGELOG.md +++ b/plugins/exports/video/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-export-video + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-export-video diff --git a/plugins/exports/video/package.dist.json b/plugins/exports/video/package.dist.json index 157ae32cb57..145a188aa26 100644 --- a/plugins/exports/video/package.dist.json +++ b/plugins/exports/video/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-export-video", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles export video plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/plugins/exports/video/package.json b/plugins/exports/video/package.json index c092935d4cd..0378bf4b90a 100644 --- a/plugins/exports/video/package.json +++ b/plugins/exports/video/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-export-video", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles export video plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/infection/CHANGELOG.md b/plugins/infection/CHANGELOG.md index 88808b58cee..9c0fb42673d 100644 --- a/plugins/infection/CHANGELOG.md +++ b/plugins/infection/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-infection + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-infection diff --git a/plugins/infection/package.dist.json b/plugins/infection/package.dist.json index 3ca5202ec83..6e247412a07 100644 --- a/plugins/infection/package.dist.json +++ b/plugins/infection/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-infection", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles infection plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,8 +106,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-interactivity": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-interactivity": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/plugins/infection/package.json b/plugins/infection/package.json index d9ee24777ca..fefff8f7650 100644 --- a/plugins/infection/package.json +++ b/plugins/infection/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-infection", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles infection plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/interactivity/CHANGELOG.md b/plugins/interactivity/CHANGELOG.md index 765cec6781f..be2894515a5 100644 --- a/plugins/interactivity/CHANGELOG.md +++ b/plugins/interactivity/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-interactivity + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-interactivity diff --git a/plugins/interactivity/package.dist.json b/plugins/interactivity/package.dist.json index 888e105870d..2a278a73577 100644 --- a/plugins/interactivity/package.dist.json +++ b/plugins/interactivity/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-interactivity", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles interactivity sickness plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,7 +92,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/plugins/interactivity/package.json b/plugins/interactivity/package.json index 39567662efa..697e9bfef1f 100644 --- a/plugins/interactivity/package.json +++ b/plugins/interactivity/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-interactivity", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles interactivity sickness plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/manualParticles/CHANGELOG.md b/plugins/manualParticles/CHANGELOG.md index 81eaa3b88ad..b9eb0dfff6a 100644 --- a/plugins/manualParticles/CHANGELOG.md +++ b/plugins/manualParticles/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-manual-particles + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-manual-particles diff --git a/plugins/manualParticles/package.dist.json b/plugins/manualParticles/package.dist.json index 0105ef2af3e..d5bb70050ed 100644 --- a/plugins/manualParticles/package.dist.json +++ b/plugins/manualParticles/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-manual-particles", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles manual particles plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,7 +92,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/plugins/manualParticles/package.json b/plugins/manualParticles/package.json index c29580098da..6c6d46b953f 100644 --- a/plugins/manualParticles/package.json +++ b/plugins/manualParticles/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-manual-particles", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles manual particles plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/motion/CHANGELOG.md b/plugins/motion/CHANGELOG.md index 06b2a0f8650..05f3a86d41f 100644 --- a/plugins/motion/CHANGELOG.md +++ b/plugins/motion/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-motion + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-motion diff --git a/plugins/motion/package.dist.json b/plugins/motion/package.dist.json index 43d8f173c33..80ef6b737dd 100644 --- a/plugins/motion/package.dist.json +++ b/plugins/motion/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-motion", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles motion sickness plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,7 +92,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/plugins/motion/package.json b/plugins/motion/package.json index b67247460cc..bd7d1af15fb 100644 --- a/plugins/motion/package.json +++ b/plugins/motion/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-motion", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles motion sickness plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/move/CHANGELOG.md b/plugins/move/CHANGELOG.md index 1c5e4194fff..93c9f3fe8b1 100644 --- a/plugins/move/CHANGELOG.md +++ b/plugins/move/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-move + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-move diff --git a/plugins/move/package.dist.json b/plugins/move/package.dist.json index 076aab916db..343c541abf8 100644 --- a/plugins/move/package.dist.json +++ b/plugins/move/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-move", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles Move plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,7 +92,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/plugins/move/package.json b/plugins/move/package.json index ec00182df18..4e7d50c578f 100644 --- a/plugins/move/package.json +++ b/plugins/move/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-move", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles Move plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/poisson/CHANGELOG.md b/plugins/poisson/CHANGELOG.md index 1604e726179..18220a1af16 100644 --- a/plugins/poisson/CHANGELOG.md +++ b/plugins/poisson/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-poisson-disc + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-poisson-disc diff --git a/plugins/poisson/package.dist.json b/plugins/poisson/package.dist.json index 58ce19e2e92..e4b2c934f1a 100644 --- a/plugins/poisson/package.dist.json +++ b/plugins/poisson/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-poisson-disc", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles poisson disc plugin", "homepage": "https://particles.js.org", "repository": { @@ -91,7 +91,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/plugins/poisson/package.json b/plugins/poisson/package.json index 9ab44104fb8..ef92986081c 100644 --- a/plugins/poisson/package.json +++ b/plugins/poisson/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-poisson-disc", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles poisson disc plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/polygonMask/CHANGELOG.md b/plugins/polygonMask/CHANGELOG.md index bdd21ad669d..a5eaaad7c9b 100644 --- a/plugins/polygonMask/CHANGELOG.md +++ b/plugins/polygonMask/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-polygon-mask + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-polygon-mask diff --git a/plugins/polygonMask/package.dist.json b/plugins/polygonMask/package.dist.json index f95ccb50737..781fcf63720 100644 --- a/plugins/polygonMask/package.dist.json +++ b/plugins/polygonMask/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-polygon-mask", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles polygon mask plugin", "homepage": "https://particles.js.org", "repository": { @@ -94,7 +94,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/plugins/polygonMask/package.json b/plugins/polygonMask/package.json index 6504f7b679a..6a7dc791728 100644 --- a/plugins/polygonMask/package.json +++ b/plugins/polygonMask/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-polygon-mask", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles polygon mask plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/responsive/CHANGELOG.md b/plugins/responsive/CHANGELOG.md index ec312bbdeed..d85aa619a01 100644 --- a/plugins/responsive/CHANGELOG.md +++ b/plugins/responsive/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-responsive + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-responsive diff --git a/plugins/responsive/package.dist.json b/plugins/responsive/package.dist.json index 6556c4a3844..3ceb8b39f4c 100644 --- a/plugins/responsive/package.dist.json +++ b/plugins/responsive/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-responsive", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles responsive plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,7 +92,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/plugins/responsive/package.json b/plugins/responsive/package.json index 135226dd645..8b79803e546 100644 --- a/plugins/responsive/package.json +++ b/plugins/responsive/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-responsive", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles responsive plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/sounds/CHANGELOG.md b/plugins/sounds/CHANGELOG.md index 3b941ff1357..f4d7d012ff9 100644 --- a/plugins/sounds/CHANGELOG.md +++ b/plugins/sounds/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-sounds + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-sounds diff --git a/plugins/sounds/package.dist.json b/plugins/sounds/package.dist.json index 53d37a689bb..073275da77a 100644 --- a/plugins/sounds/package.dist.json +++ b/plugins/sounds/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-sounds", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles sounds plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,7 +92,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/plugins/sounds/package.json b/plugins/sounds/package.json index 5ab5eac4451..ea17018b44e 100644 --- a/plugins/sounds/package.json +++ b/plugins/sounds/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-sounds", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles sounds plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/themes/CHANGELOG.md b/plugins/themes/CHANGELOG.md index 1c1d6508962..27a8d187d92 100644 --- a/plugins/themes/CHANGELOG.md +++ b/plugins/themes/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-themes + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-themes diff --git a/plugins/themes/package.dist.json b/plugins/themes/package.dist.json index 6fbc86b5521..b0785de8aee 100644 --- a/plugins/themes/package.dist.json +++ b/plugins/themes/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-themes", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles themes plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,7 +92,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/plugins/themes/package.json b/plugins/themes/package.json index 8df04ade952..b979f553634 100644 --- a/plugins/themes/package.json +++ b/plugins/themes/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-themes", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles themes plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/trail/CHANGELOG.md b/plugins/trail/CHANGELOG.md index 2c5935f9072..f91228f59e3 100644 --- a/plugins/trail/CHANGELOG.md +++ b/plugins/trail/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-trail + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-trail diff --git a/plugins/trail/package.dist.json b/plugins/trail/package.dist.json index 05a29df889e..b7aac943708 100644 --- a/plugins/trail/package.dist.json +++ b/plugins/trail/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-trail", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles trail plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,7 +92,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/plugins/trail/package.json b/plugins/trail/package.json index b889b1e43cb..51260266a00 100644 --- a/plugins/trail/package.json +++ b/plugins/trail/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-trail", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles trail plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/zoom/CHANGELOG.md b/plugins/zoom/CHANGELOG.md index fb9a8b7ed72..92b32a5758b 100644 --- a/plugins/zoom/CHANGELOG.md +++ b/plugins/zoom/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/plugin-zoom + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/plugin-zoom diff --git a/plugins/zoom/package.dist.json b/plugins/zoom/package.dist.json index 6b7e8be95fe..3fe0c300122 100644 --- a/plugins/zoom/package.dist.json +++ b/plugins/zoom/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-zoom", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles zoom plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,7 +92,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/plugins/zoom/package.json b/plugins/zoom/package.json index 3d362f57b3e..33bf26ae257 100644 --- a/plugins/zoom/package.json +++ b/plugins/zoom/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-zoom", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles zoom plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/ambient/CHANGELOG.md b/presets/ambient/CHANGELOG.md index d4457de2c3a..baa0d3f806e 100644 --- a/presets/ambient/CHANGELOG.md +++ b/presets/ambient/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/preset-ambient + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/preset-ambient diff --git a/presets/ambient/package.dist.json b/presets/ambient/package.dist.json index c05894e3931..dbba9235ea9 100644 --- a/presets/ambient/package.dist.json +++ b/presets/ambient/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-ambient", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles ambient preset", "homepage": "https://particles.js.org", "repository": { @@ -106,8 +106,8 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.0.3", - "@tsparticles/engine": "4.0.3" + "@tsparticles/basic": "4.0.4", + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/presets/ambient/package.json b/presets/ambient/package.json index 4f968030a35..fe3758231ad 100644 --- a/presets/ambient/package.json +++ b/presets/ambient/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-ambient", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles ambient preset", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/bigCircles/CHANGELOG.md b/presets/bigCircles/CHANGELOG.md index 7a719aada7b..0f67fd7b0df 100644 --- a/presets/bigCircles/CHANGELOG.md +++ b/presets/bigCircles/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/preset-big-circles + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/preset-big-circles diff --git a/presets/bigCircles/package.dist.json b/presets/bigCircles/package.dist.json index dc103d55a75..dee97a417ee 100644 --- a/presets/bigCircles/package.dist.json +++ b/presets/bigCircles/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-big-circles", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles big circles preset", "homepage": "https://particles.js.org", "repository": { @@ -105,8 +105,8 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.0.3", - "@tsparticles/engine": "4.0.3" + "@tsparticles/basic": "4.0.4", + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/presets/bigCircles/package.json b/presets/bigCircles/package.json index e9ecceec6e7..aad3a2d42bc 100644 --- a/presets/bigCircles/package.json +++ b/presets/bigCircles/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-big-circles", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles big circles preset", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/bubbles/CHANGELOG.md b/presets/bubbles/CHANGELOG.md index 63f078b2c01..4b5e403f956 100644 --- a/presets/bubbles/CHANGELOG.md +++ b/presets/bubbles/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/preset-bubbles + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/preset-bubbles diff --git a/presets/bubbles/package.dist.json b/presets/bubbles/package.dist.json index b938521218a..7ef19b65747 100644 --- a/presets/bubbles/package.dist.json +++ b/presets/bubbles/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-bubbles", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles bubbles preset", "homepage": "https://particles.js.org", "repository": { @@ -106,9 +106,9 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.0.3", - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-emitters": "4.0.3" + "@tsparticles/basic": "4.0.4", + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-emitters": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/presets/bubbles/package.json b/presets/bubbles/package.json index 7b8a0df7ac5..a579ee9aee7 100644 --- a/presets/bubbles/package.json +++ b/presets/bubbles/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-bubbles", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles bubbles preset", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/confetti/CHANGELOG.md b/presets/confetti/CHANGELOG.md index e81d739855e..bac077474e0 100644 --- a/presets/confetti/CHANGELOG.md +++ b/presets/confetti/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/preset-confetti + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/preset-confetti diff --git a/presets/confetti/package.dist.json b/presets/confetti/package.dist.json index d298d246bae..67b8b29a37e 100644 --- a/presets/confetti/package.dist.json +++ b/presets/confetti/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-confetti", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles confetti preset", "homepage": "https://particles.js.org", "repository": { @@ -99,17 +99,17 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.0.3", - "@tsparticles/engine": "4.0.3", - "@tsparticles/palette-confetti": "4.0.3", - "@tsparticles/plugin-emitters": "4.0.3", - "@tsparticles/plugin-motion": "4.0.3", - "@tsparticles/shape-square": "4.0.3", - "@tsparticles/updater-life": "4.0.3", - "@tsparticles/updater-roll": "4.0.3", - "@tsparticles/updater-rotate": "4.0.3", - "@tsparticles/updater-tilt": "4.0.3", - "@tsparticles/updater-wobble": "4.0.3" + "@tsparticles/basic": "4.0.4", + "@tsparticles/engine": "4.0.4", + "@tsparticles/palette-confetti": "4.0.4", + "@tsparticles/plugin-emitters": "4.0.4", + "@tsparticles/plugin-motion": "4.0.4", + "@tsparticles/shape-square": "4.0.4", + "@tsparticles/updater-life": "4.0.4", + "@tsparticles/updater-roll": "4.0.4", + "@tsparticles/updater-rotate": "4.0.4", + "@tsparticles/updater-tilt": "4.0.4", + "@tsparticles/updater-wobble": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/presets/confetti/package.json b/presets/confetti/package.json index 195767f7cd0..d12e5ab4296 100644 --- a/presets/confetti/package.json +++ b/presets/confetti/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-confetti", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles confetti preset", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/confettiCannon/CHANGELOG.md b/presets/confettiCannon/CHANGELOG.md index 3407dffd525..39aa35028f0 100644 --- a/presets/confettiCannon/CHANGELOG.md +++ b/presets/confettiCannon/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/preset-confetti-cannon + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/preset-confetti-cannon diff --git a/presets/confettiCannon/package.dist.json b/presets/confettiCannon/package.dist.json index 005dfa61f93..e6ee9b89153 100644 --- a/presets/confettiCannon/package.dist.json +++ b/presets/confettiCannon/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-confetti-cannon", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles confetti cannon preset", "homepage": "https://particles.js.org", "repository": { @@ -106,18 +106,18 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.0.3", - "@tsparticles/engine": "4.0.3", - "@tsparticles/interaction-external-cannon": "4.0.3", - "@tsparticles/palette-confetti": "4.0.3", - "@tsparticles/plugin-interactivity": "4.0.3", - "@tsparticles/plugin-motion": "4.0.3", - "@tsparticles/shape-square": "4.0.3", - "@tsparticles/updater-life": "4.0.3", - "@tsparticles/updater-roll": "4.0.3", - "@tsparticles/updater-rotate": "4.0.3", - "@tsparticles/updater-tilt": "4.0.3", - "@tsparticles/updater-wobble": "4.0.3" + "@tsparticles/basic": "4.0.4", + "@tsparticles/engine": "4.0.4", + "@tsparticles/interaction-external-cannon": "4.0.4", + "@tsparticles/palette-confetti": "4.0.4", + "@tsparticles/plugin-interactivity": "4.0.4", + "@tsparticles/plugin-motion": "4.0.4", + "@tsparticles/shape-square": "4.0.4", + "@tsparticles/updater-life": "4.0.4", + "@tsparticles/updater-roll": "4.0.4", + "@tsparticles/updater-rotate": "4.0.4", + "@tsparticles/updater-tilt": "4.0.4", + "@tsparticles/updater-wobble": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/presets/confettiCannon/package.json b/presets/confettiCannon/package.json index 83eac27ce96..432d5bbec1f 100644 --- a/presets/confettiCannon/package.json +++ b/presets/confettiCannon/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-confetti-cannon", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles confetti cannon preset", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/confettiExplosions/CHANGELOG.md b/presets/confettiExplosions/CHANGELOG.md index 062e818a6c6..ad79766daa6 100644 --- a/presets/confettiExplosions/CHANGELOG.md +++ b/presets/confettiExplosions/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/preset-confetti-explosions + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/preset-confetti-explosions diff --git a/presets/confettiExplosions/package.dist.json b/presets/confettiExplosions/package.dist.json index 0b0981698ba..e6432ca3231 100644 --- a/presets/confettiExplosions/package.dist.json +++ b/presets/confettiExplosions/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-confetti-explosions", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles confetti explosions preset", "homepage": "https://particles.js.org", "repository": { @@ -106,16 +106,16 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.0.3", - "@tsparticles/engine": "4.0.3", - "@tsparticles/palette-confetti": "4.0.3", - "@tsparticles/plugin-emitters": "4.0.3", - "@tsparticles/plugin-motion": "4.0.3", - "@tsparticles/shape-square": "4.0.3", - "@tsparticles/updater-roll": "4.0.3", - "@tsparticles/updater-rotate": "4.0.3", - "@tsparticles/updater-tilt": "4.0.3", - "@tsparticles/updater-wobble": "4.0.3" + "@tsparticles/basic": "4.0.4", + "@tsparticles/engine": "4.0.4", + "@tsparticles/palette-confetti": "4.0.4", + "@tsparticles/plugin-emitters": "4.0.4", + "@tsparticles/plugin-motion": "4.0.4", + "@tsparticles/shape-square": "4.0.4", + "@tsparticles/updater-roll": "4.0.4", + "@tsparticles/updater-rotate": "4.0.4", + "@tsparticles/updater-tilt": "4.0.4", + "@tsparticles/updater-wobble": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/presets/confettiExplosions/package.json b/presets/confettiExplosions/package.json index a5c8e6eba5b..4eec0af37b6 100644 --- a/presets/confettiExplosions/package.json +++ b/presets/confettiExplosions/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-confetti-explosions", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles confetti explosions preset", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/confettiFalling/CHANGELOG.md b/presets/confettiFalling/CHANGELOG.md index d1c97d21d6f..be7a3c55268 100644 --- a/presets/confettiFalling/CHANGELOG.md +++ b/presets/confettiFalling/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/preset-confetti-falling + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/preset-confetti-falling diff --git a/presets/confettiFalling/package.dist.json b/presets/confettiFalling/package.dist.json index ae27abed873..9f07d819de1 100644 --- a/presets/confettiFalling/package.dist.json +++ b/presets/confettiFalling/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-confetti-falling", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles confetti falling preset", "homepage": "https://particles.js.org", "repository": { @@ -106,15 +106,15 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.0.3", - "@tsparticles/engine": "4.0.3", - "@tsparticles/palette-confetti": "4.0.3", - "@tsparticles/plugin-motion": "4.0.3", - "@tsparticles/shape-square": "4.0.3", - "@tsparticles/updater-roll": "4.0.3", - "@tsparticles/updater-rotate": "4.0.3", - "@tsparticles/updater-tilt": "4.0.3", - "@tsparticles/updater-wobble": "4.0.3" + "@tsparticles/basic": "4.0.4", + "@tsparticles/engine": "4.0.4", + "@tsparticles/palette-confetti": "4.0.4", + "@tsparticles/plugin-motion": "4.0.4", + "@tsparticles/shape-square": "4.0.4", + "@tsparticles/updater-roll": "4.0.4", + "@tsparticles/updater-rotate": "4.0.4", + "@tsparticles/updater-tilt": "4.0.4", + "@tsparticles/updater-wobble": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/presets/confettiFalling/package.json b/presets/confettiFalling/package.json index 0c869f25cbb..6f9359670cf 100644 --- a/presets/confettiFalling/package.json +++ b/presets/confettiFalling/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-confetti-falling", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles confetti falling preset", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/confettiParade/CHANGELOG.md b/presets/confettiParade/CHANGELOG.md index fb16710ab65..8feed68282e 100644 --- a/presets/confettiParade/CHANGELOG.md +++ b/presets/confettiParade/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/preset-confetti-parade + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/preset-confetti-parade diff --git a/presets/confettiParade/package.dist.json b/presets/confettiParade/package.dist.json index 22363b7d6eb..6b1ca900419 100644 --- a/presets/confettiParade/package.dist.json +++ b/presets/confettiParade/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-confetti-parade", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles confetti parade preset", "homepage": "https://particles.js.org", "repository": { @@ -106,17 +106,17 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.0.3", - "@tsparticles/engine": "4.0.3", - "@tsparticles/palette-confetti": "4.0.3", - "@tsparticles/plugin-emitters": "4.0.3", - "@tsparticles/plugin-motion": "4.0.3", - "@tsparticles/shape-square": "4.0.3", - "@tsparticles/updater-life": "4.0.3", - "@tsparticles/updater-roll": "4.0.3", - "@tsparticles/updater-rotate": "4.0.3", - "@tsparticles/updater-tilt": "4.0.3", - "@tsparticles/updater-wobble": "4.0.3" + "@tsparticles/basic": "4.0.4", + "@tsparticles/engine": "4.0.4", + "@tsparticles/palette-confetti": "4.0.4", + "@tsparticles/plugin-emitters": "4.0.4", + "@tsparticles/plugin-motion": "4.0.4", + "@tsparticles/shape-square": "4.0.4", + "@tsparticles/updater-life": "4.0.4", + "@tsparticles/updater-roll": "4.0.4", + "@tsparticles/updater-rotate": "4.0.4", + "@tsparticles/updater-tilt": "4.0.4", + "@tsparticles/updater-wobble": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/presets/confettiParade/package.json b/presets/confettiParade/package.json index 4ea2c1069df..d3fca51bfaf 100644 --- a/presets/confettiParade/package.json +++ b/presets/confettiParade/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-confetti-parade", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles confetti parade preset", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/fire/CHANGELOG.md b/presets/fire/CHANGELOG.md index 74ae60c7d3c..a8e030adaa8 100644 --- a/presets/fire/CHANGELOG.md +++ b/presets/fire/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/preset-fire + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/preset-fire diff --git a/presets/fire/package.dist.json b/presets/fire/package.dist.json index 05886e26cac..cf636ad1695 100644 --- a/presets/fire/package.dist.json +++ b/presets/fire/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-fire", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fire preset", "homepage": "https://particles.js.org", "repository": { @@ -99,10 +99,10 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.0.3", - "@tsparticles/engine": "4.0.3", - "@tsparticles/interaction-external-push": "4.0.3", - "@tsparticles/plugin-interactivity": "4.0.3" + "@tsparticles/basic": "4.0.4", + "@tsparticles/engine": "4.0.4", + "@tsparticles/interaction-external-push": "4.0.4", + "@tsparticles/plugin-interactivity": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/presets/fire/package.json b/presets/fire/package.json index fc836814ae3..e9c94a8c644 100644 --- a/presets/fire/package.json +++ b/presets/fire/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-fire", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fire preset", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/firefly/CHANGELOG.md b/presets/firefly/CHANGELOG.md index bc643f91981..534f42b9b51 100644 --- a/presets/firefly/CHANGELOG.md +++ b/presets/firefly/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/preset-firefly + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/preset-firefly diff --git a/presets/firefly/package.dist.json b/presets/firefly/package.dist.json index dc469f114ff..04740ff6352 100644 --- a/presets/firefly/package.dist.json +++ b/presets/firefly/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-firefly", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles firefly preset", "homepage": "https://particles.js.org", "repository": { @@ -106,11 +106,11 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.0.3", - "@tsparticles/engine": "4.0.3", - "@tsparticles/interaction-external-trail": "4.0.3", - "@tsparticles/plugin-interactivity": "4.0.3", - "@tsparticles/updater-life": "4.0.3" + "@tsparticles/basic": "4.0.4", + "@tsparticles/engine": "4.0.4", + "@tsparticles/interaction-external-trail": "4.0.4", + "@tsparticles/plugin-interactivity": "4.0.4", + "@tsparticles/updater-life": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/presets/firefly/package.json b/presets/firefly/package.json index d212483c3fd..8ce3426d21e 100644 --- a/presets/firefly/package.json +++ b/presets/firefly/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-firefly", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles firefly preset", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/fireworks/CHANGELOG.md b/presets/fireworks/CHANGELOG.md index 0516a8c0a7a..b23e126202a 100644 --- a/presets/fireworks/CHANGELOG.md +++ b/presets/fireworks/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/preset-fireworks + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/preset-fireworks diff --git a/presets/fireworks/package.dist.json b/presets/fireworks/package.dist.json index 21a585f46b9..c3651a62961 100644 --- a/presets/fireworks/package.dist.json +++ b/presets/fireworks/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-fireworks", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks preset", "homepage": "https://particles.js.org", "repository": { @@ -106,16 +106,16 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.0.3", - "@tsparticles/effect-trail": "4.0.3", - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-emitters": "4.0.3", - "@tsparticles/plugin-emitters-shape-square": "4.0.3", - "@tsparticles/plugin-sounds": "4.0.3", - "@tsparticles/shape-line": "4.0.3", - "@tsparticles/updater-destroy": "4.0.3", - "@tsparticles/updater-life": "4.0.3", - "@tsparticles/updater-rotate": "4.0.3" + "@tsparticles/basic": "4.0.4", + "@tsparticles/effect-trail": "4.0.4", + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-emitters": "4.0.4", + "@tsparticles/plugin-emitters-shape-square": "4.0.4", + "@tsparticles/plugin-sounds": "4.0.4", + "@tsparticles/shape-line": "4.0.4", + "@tsparticles/updater-destroy": "4.0.4", + "@tsparticles/updater-life": "4.0.4", + "@tsparticles/updater-rotate": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/presets/fireworks/package.json b/presets/fireworks/package.json index bf3f78da77a..6d313713483 100644 --- a/presets/fireworks/package.json +++ b/presets/fireworks/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-fireworks", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fireworks preset", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/fountain/CHANGELOG.md b/presets/fountain/CHANGELOG.md index da10df34b81..f2cdf750b62 100644 --- a/presets/fountain/CHANGELOG.md +++ b/presets/fountain/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/preset-fountain + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/preset-fountain diff --git a/presets/fountain/package.dist.json b/presets/fountain/package.dist.json index 01dd851d51f..890b822c4ac 100644 --- a/presets/fountain/package.dist.json +++ b/presets/fountain/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-fountain", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fountain preset", "homepage": "https://particles.js.org", "repository": { @@ -106,11 +106,11 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.0.3", - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-emitters": "4.0.3", - "@tsparticles/plugin-trail": "4.0.3", - "@tsparticles/updater-destroy": "4.0.3" + "@tsparticles/basic": "4.0.4", + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-emitters": "4.0.4", + "@tsparticles/plugin-trail": "4.0.4", + "@tsparticles/updater-destroy": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/presets/fountain/package.json b/presets/fountain/package.json index d9260c83573..34b420d4c0e 100644 --- a/presets/fountain/package.json +++ b/presets/fountain/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-fountain", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fountain preset", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/hyperspace/CHANGELOG.md b/presets/hyperspace/CHANGELOG.md index 330f8901194..41004b5b9df 100644 --- a/presets/hyperspace/CHANGELOG.md +++ b/presets/hyperspace/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/preset-hyperspace + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/preset-hyperspace diff --git a/presets/hyperspace/package.dist.json b/presets/hyperspace/package.dist.json index e83b609da2a..9fab30bf9c0 100644 --- a/presets/hyperspace/package.dist.json +++ b/presets/hyperspace/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-hyperspace", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles hyperspace preset", "homepage": "https://particles.js.org", "repository": { @@ -106,12 +106,12 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.0.3", - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-emitters": "4.0.3", - "@tsparticles/plugin-emitters-shape-square": "4.0.3", - "@tsparticles/plugin-trail": "4.0.3", - "@tsparticles/updater-life": "4.0.3" + "@tsparticles/basic": "4.0.4", + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-emitters": "4.0.4", + "@tsparticles/plugin-emitters-shape-square": "4.0.4", + "@tsparticles/plugin-trail": "4.0.4", + "@tsparticles/updater-life": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/presets/hyperspace/package.json b/presets/hyperspace/package.json index 09ef0fb5030..632d31aa766 100644 --- a/presets/hyperspace/package.json +++ b/presets/hyperspace/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-hyperspace", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles hyperspace preset", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/links/CHANGELOG.md b/presets/links/CHANGELOG.md index c440b0ccbbc..b61111166b5 100644 --- a/presets/links/CHANGELOG.md +++ b/presets/links/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/preset-links + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/preset-links diff --git a/presets/links/package.dist.json b/presets/links/package.dist.json index bf6a2b37c1c..58ebc1ba478 100644 --- a/presets/links/package.dist.json +++ b/presets/links/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-links", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles links preset", "homepage": "https://particles.js.org", "repository": { @@ -106,10 +106,10 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.0.3", - "@tsparticles/engine": "4.0.3", - "@tsparticles/interaction-particles-links": "4.0.3", - "@tsparticles/plugin-interactivity": "4.0.3" + "@tsparticles/basic": "4.0.4", + "@tsparticles/engine": "4.0.4", + "@tsparticles/interaction-particles-links": "4.0.4", + "@tsparticles/plugin-interactivity": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/presets/links/package.json b/presets/links/package.json index fb8c0b9a600..dc3de9be062 100644 --- a/presets/links/package.json +++ b/presets/links/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-links", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles links preset", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/matrix/CHANGELOG.md b/presets/matrix/CHANGELOG.md index 53920a36fc2..8b50802c196 100644 --- a/presets/matrix/CHANGELOG.md +++ b/presets/matrix/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/preset-matrix + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/preset-matrix diff --git a/presets/matrix/package.dist.json b/presets/matrix/package.dist.json index faee8ca93fa..09a3fe351bd 100644 --- a/presets/matrix/package.dist.json +++ b/presets/matrix/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-matrix", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles matrix preset", "homepage": "https://particles.js.org", "repository": { @@ -106,12 +106,12 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.0.3", - "@tsparticles/effect-shadow": "4.0.3", - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-poisson-disc": "4.0.3", - "@tsparticles/plugin-trail": "4.0.3", - "@tsparticles/shape-matrix": "4.0.3" + "@tsparticles/basic": "4.0.4", + "@tsparticles/effect-shadow": "4.0.4", + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-poisson-disc": "4.0.4", + "@tsparticles/plugin-trail": "4.0.4", + "@tsparticles/shape-matrix": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/presets/matrix/package.json b/presets/matrix/package.json index 506cb0cbf96..abcd09d8c22 100644 --- a/presets/matrix/package.json +++ b/presets/matrix/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-matrix", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles matrix preset", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/seaAnemone/CHANGELOG.md b/presets/seaAnemone/CHANGELOG.md index 0b14c54d7de..73366e1be67 100644 --- a/presets/seaAnemone/CHANGELOG.md +++ b/presets/seaAnemone/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/preset-sea-anemone + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/preset-sea-anemone diff --git a/presets/seaAnemone/package.dist.json b/presets/seaAnemone/package.dist.json index 51a5cc07b41..aa03cec8080 100644 --- a/presets/seaAnemone/package.dist.json +++ b/presets/seaAnemone/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-sea-anemone", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles sea anemone preset", "homepage": "https://particles.js.org", "repository": { @@ -106,12 +106,12 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.0.3", - "@tsparticles/engine": "4.0.3", - "@tsparticles/path-curves": "4.0.3", - "@tsparticles/plugin-emitters": "4.0.3", - "@tsparticles/plugin-interactivity": "4.0.3", - "@tsparticles/plugin-trail": "4.0.3" + "@tsparticles/basic": "4.0.4", + "@tsparticles/engine": "4.0.4", + "@tsparticles/path-curves": "4.0.4", + "@tsparticles/plugin-emitters": "4.0.4", + "@tsparticles/plugin-interactivity": "4.0.4", + "@tsparticles/plugin-trail": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/presets/seaAnemone/package.json b/presets/seaAnemone/package.json index 7e50b9d42e7..a6ef160d1a1 100644 --- a/presets/seaAnemone/package.json +++ b/presets/seaAnemone/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-sea-anemone", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles sea anemone preset", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/snow/CHANGELOG.md b/presets/snow/CHANGELOG.md index bd2c8fc37b6..3c1003b1ecc 100644 --- a/presets/snow/CHANGELOG.md +++ b/presets/snow/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/preset-snow + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/preset-snow diff --git a/presets/snow/package.dist.json b/presets/snow/package.dist.json index 4c433a7c95e..00076483016 100644 --- a/presets/snow/package.dist.json +++ b/presets/snow/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-snow", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles snow preset", "homepage": "https://particles.js.org", "repository": { @@ -106,10 +106,10 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.0.3", - "@tsparticles/engine": "4.0.3", - "@tsparticles/palette-snowfall": "4.0.3", - "@tsparticles/updater-wobble": "4.0.3" + "@tsparticles/basic": "4.0.4", + "@tsparticles/engine": "4.0.4", + "@tsparticles/palette-snowfall": "4.0.4", + "@tsparticles/updater-wobble": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/presets/snow/package.json b/presets/snow/package.json index 78125af4b53..2b6e383d256 100644 --- a/presets/snow/package.json +++ b/presets/snow/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-snow", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles snow preset", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/squares/CHANGELOG.md b/presets/squares/CHANGELOG.md index 2ad5c0583d6..765d9d35d17 100644 --- a/presets/squares/CHANGELOG.md +++ b/presets/squares/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/preset-squares + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/preset-squares diff --git a/presets/squares/package.dist.json b/presets/squares/package.dist.json index d6e54ce40b1..4f247af18a7 100644 --- a/presets/squares/package.dist.json +++ b/presets/squares/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-squares", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles squares preset", "homepage": "https://particles.js.org", "repository": { @@ -106,13 +106,13 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-emitters": "4.0.3", - "@tsparticles/plugin-hex-color": "4.0.3", - "@tsparticles/shape-square": "4.0.3", - "@tsparticles/updater-paint": "4.0.3", - "@tsparticles/updater-rotate": "4.0.3", - "@tsparticles/updater-size": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-emitters": "4.0.4", + "@tsparticles/plugin-hex-color": "4.0.4", + "@tsparticles/shape-square": "4.0.4", + "@tsparticles/updater-paint": "4.0.4", + "@tsparticles/updater-rotate": "4.0.4", + "@tsparticles/updater-size": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/presets/squares/package.json b/presets/squares/package.json index 2611b8e1752..51ce30b6b3b 100644 --- a/presets/squares/package.json +++ b/presets/squares/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-squares", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles squares preset", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/stars/CHANGELOG.md b/presets/stars/CHANGELOG.md index 9fa76fdccbd..41741dc1458 100644 --- a/presets/stars/CHANGELOG.md +++ b/presets/stars/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/preset-stars + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/preset-stars diff --git a/presets/stars/package.dist.json b/presets/stars/package.dist.json index 91d2dc75228..d3a8fce2c6b 100644 --- a/presets/stars/package.dist.json +++ b/presets/stars/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-stars", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles stars preset", "homepage": "https://particles.js.org", "repository": { @@ -106,8 +106,8 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.0.3", - "@tsparticles/engine": "4.0.3" + "@tsparticles/basic": "4.0.4", + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/presets/stars/package.json b/presets/stars/package.json index 9039023f0d9..8a047930b76 100644 --- a/presets/stars/package.json +++ b/presets/stars/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-stars", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles stars preset", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/triangles/CHANGELOG.md b/presets/triangles/CHANGELOG.md index b03c2a49bdd..3a98ce539f9 100644 --- a/presets/triangles/CHANGELOG.md +++ b/presets/triangles/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/preset-triangles + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/preset-triangles diff --git a/presets/triangles/package.dist.json b/presets/triangles/package.dist.json index e50a5594aa1..e488b32f88a 100644 --- a/presets/triangles/package.dist.json +++ b/presets/triangles/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-triangles", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles triangles preset", "homepage": "https://particles.js.org", "repository": { @@ -106,10 +106,10 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.0.3", - "@tsparticles/engine": "4.0.3", - "@tsparticles/interaction-particles-links": "4.0.3", - "@tsparticles/plugin-interactivity": "4.0.3" + "@tsparticles/basic": "4.0.4", + "@tsparticles/engine": "4.0.4", + "@tsparticles/interaction-particles-links": "4.0.4", + "@tsparticles/plugin-interactivity": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/presets/triangles/package.json b/presets/triangles/package.json index a0f6d9f229f..fdf6f64ddde 100644 --- a/presets/triangles/package.json +++ b/presets/triangles/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-triangles", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles triangles preset", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/arrow/CHANGELOG.md b/shapes/arrow/CHANGELOG.md index 35f333cd2d1..bfab4f40c74 100644 --- a/shapes/arrow/CHANGELOG.md +++ b/shapes/arrow/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/shape-arrow + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/shape-arrow diff --git a/shapes/arrow/package.dist.json b/shapes/arrow/package.dist.json index c05526e30e5..49038a120e4 100644 --- a/shapes/arrow/package.dist.json +++ b/shapes/arrow/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-arrow", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles arrow shape", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/shapes/arrow/package.json b/shapes/arrow/package.json index 9e2d0940d43..708d1b3e555 100644 --- a/shapes/arrow/package.json +++ b/shapes/arrow/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-arrow", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles arrow shape", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/cards/CHANGELOG.md b/shapes/cards/CHANGELOG.md index b101f15a8bd..e165d85b556 100644 --- a/shapes/cards/CHANGELOG.md +++ b/shapes/cards/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/shape-cards + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/shape-cards diff --git a/shapes/cards/package.dist.json b/shapes/cards/package.dist.json index 84328ea48e8..9206f3b15aa 100644 --- a/shapes/cards/package.dist.json +++ b/shapes/cards/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-cards", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles cards shape", "homepage": "https://particles.js.org", "repository": { @@ -190,13 +190,13 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" }, "type": "module", "dependencies": { - "@tsparticles/path-utils": "4.0.3" + "@tsparticles/path-utils": "4.0.4" } } diff --git a/shapes/cards/package.json b/shapes/cards/package.json index f38e8c9c5b6..e5c4d03b56b 100644 --- a/shapes/cards/package.json +++ b/shapes/cards/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-cards", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles cards shape", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/circle/CHANGELOG.md b/shapes/circle/CHANGELOG.md index 75b5d23f49a..fe674d2f0b9 100644 --- a/shapes/circle/CHANGELOG.md +++ b/shapes/circle/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/shape-circle + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/shape-circle diff --git a/shapes/circle/package.dist.json b/shapes/circle/package.dist.json index 2586255b71c..c8ca740b6d1 100644 --- a/shapes/circle/package.dist.json +++ b/shapes/circle/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-circle", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles circle shape", "homepage": "https://particles.js.org", "repository": { @@ -65,7 +65,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/shapes/circle/package.json b/shapes/circle/package.json index e136466f3d7..02fbe1f2403 100644 --- a/shapes/circle/package.json +++ b/shapes/circle/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-circle", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles circle shape", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/cog/CHANGELOG.md b/shapes/cog/CHANGELOG.md index 0725a911c1a..dbe2889a37e 100644 --- a/shapes/cog/CHANGELOG.md +++ b/shapes/cog/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/shape-cog + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/shape-cog diff --git a/shapes/cog/package.dist.json b/shapes/cog/package.dist.json index f432d508cc7..5a2f6896d07 100644 --- a/shapes/cog/package.dist.json +++ b/shapes/cog/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-cog", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles cog shape", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/shapes/cog/package.json b/shapes/cog/package.json index cebbb40fc14..1be1c49d6ca 100644 --- a/shapes/cog/package.json +++ b/shapes/cog/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-cog", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles cog shape", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/emoji/CHANGELOG.md b/shapes/emoji/CHANGELOG.md index 2bc4e5c84c8..9570d9c2b2b 100644 --- a/shapes/emoji/CHANGELOG.md +++ b/shapes/emoji/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/shape-emoji + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/shape-emoji diff --git a/shapes/emoji/package.dist.json b/shapes/emoji/package.dist.json index 2173c915d5e..5a43d0380c9 100644 --- a/shapes/emoji/package.dist.json +++ b/shapes/emoji/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-emoji", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles emoji shape", "homepage": "https://particles.js.org", "repository": { @@ -65,13 +65,13 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" }, "type": "module", "dependencies": { - "@tsparticles/canvas-utils": "4.0.3" + "@tsparticles/canvas-utils": "4.0.4" } } diff --git a/shapes/emoji/package.json b/shapes/emoji/package.json index 19ef77f2f63..578f0f8edad 100644 --- a/shapes/emoji/package.json +++ b/shapes/emoji/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-emoji", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles emoji shape", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/heart/CHANGELOG.md b/shapes/heart/CHANGELOG.md index 48e2a8d580f..ece7fddce93 100644 --- a/shapes/heart/CHANGELOG.md +++ b/shapes/heart/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/shape-heart + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/shape-heart diff --git a/shapes/heart/package.dist.json b/shapes/heart/package.dist.json index a5f40543fee..5da96d22c9e 100644 --- a/shapes/heart/package.dist.json +++ b/shapes/heart/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-heart", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles heart shape", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/shapes/heart/package.json b/shapes/heart/package.json index 20f1d3ce05e..1480b582113 100644 --- a/shapes/heart/package.json +++ b/shapes/heart/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-heart", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles heart shape", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/image/CHANGELOG.md b/shapes/image/CHANGELOG.md index be17d4536a6..71e258c8773 100644 --- a/shapes/image/CHANGELOG.md +++ b/shapes/image/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/shape-image + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/shape-image diff --git a/shapes/image/package.dist.json b/shapes/image/package.dist.json index 366436e9d02..2bf38a21b8a 100644 --- a/shapes/image/package.dist.json +++ b/shapes/image/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-image", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles image shape", "homepage": "https://particles.js.org", "repository": { @@ -65,7 +65,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/shapes/image/package.json b/shapes/image/package.json index 21e4ba998c1..7d2d34e1be8 100644 --- a/shapes/image/package.json +++ b/shapes/image/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-image", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles image shape", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/infinity/CHANGELOG.md b/shapes/infinity/CHANGELOG.md index 928e295b6e2..a018da6c107 100644 --- a/shapes/infinity/CHANGELOG.md +++ b/shapes/infinity/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/shape-infinity + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/shape-infinity diff --git a/shapes/infinity/package.dist.json b/shapes/infinity/package.dist.json index 97afeec173e..20af0e94083 100644 --- a/shapes/infinity/package.dist.json +++ b/shapes/infinity/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-infinity", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles infinity shape", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/shapes/infinity/package.json b/shapes/infinity/package.json index d185e69b319..28b221a0cb6 100644 --- a/shapes/infinity/package.json +++ b/shapes/infinity/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-infinity", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles infinity shape", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/line/CHANGELOG.md b/shapes/line/CHANGELOG.md index d0c5ed26584..e0af54bc95c 100644 --- a/shapes/line/CHANGELOG.md +++ b/shapes/line/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/shape-line + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/shape-line diff --git a/shapes/line/package.dist.json b/shapes/line/package.dist.json index 87743e091af..d79a53a7369 100644 --- a/shapes/line/package.dist.json +++ b/shapes/line/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-line", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles line shape", "homepage": "https://particles.js.org", "repository": { @@ -65,7 +65,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/shapes/line/package.json b/shapes/line/package.json index fe61b8fbc66..950d7f1aeb4 100644 --- a/shapes/line/package.json +++ b/shapes/line/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-line", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles line shape", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/matrix/CHANGELOG.md b/shapes/matrix/CHANGELOG.md index 02d5757a04c..56db44a5a1f 100644 --- a/shapes/matrix/CHANGELOG.md +++ b/shapes/matrix/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/shape-matrix + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/shape-matrix diff --git a/shapes/matrix/package.dist.json b/shapes/matrix/package.dist.json index d14d94d6fd2..85a527d5c83 100644 --- a/shapes/matrix/package.dist.json +++ b/shapes/matrix/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-matrix", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles matrix shape", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/shapes/matrix/package.json b/shapes/matrix/package.json index 590a8e10939..8dd1aa7b159 100644 --- a/shapes/matrix/package.json +++ b/shapes/matrix/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-matrix", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles matrix shape", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/path/CHANGELOG.md b/shapes/path/CHANGELOG.md index f6a5cc94893..23cbc56499c 100644 --- a/shapes/path/CHANGELOG.md +++ b/shapes/path/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/shape-path + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/shape-path diff --git a/shapes/path/package.dist.json b/shapes/path/package.dist.json index f4815e1a6a1..634030c59ff 100644 --- a/shapes/path/package.dist.json +++ b/shapes/path/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-path", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles path shape", "homepage": "https://particles.js.org", "repository": { @@ -106,13 +106,13 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" }, "type": "module", "dependencies": { - "@tsparticles/path-utils": "4.0.3" + "@tsparticles/path-utils": "4.0.4" } } diff --git a/shapes/path/package.json b/shapes/path/package.json index 0d586417db5..912a1f6958b 100644 --- a/shapes/path/package.json +++ b/shapes/path/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-path", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles path shape", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/polygon/CHANGELOG.md b/shapes/polygon/CHANGELOG.md index 1fb633d204a..1e95511a111 100644 --- a/shapes/polygon/CHANGELOG.md +++ b/shapes/polygon/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/shape-polygon + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/shape-polygon diff --git a/shapes/polygon/package.dist.json b/shapes/polygon/package.dist.json index 4b90cc68df7..3e8d5b61c99 100644 --- a/shapes/polygon/package.dist.json +++ b/shapes/polygon/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-polygon", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles polygon shape", "homepage": "https://particles.js.org", "repository": { @@ -65,7 +65,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/shapes/polygon/package.json b/shapes/polygon/package.json index ff4cc76f38c..7c596e389fc 100644 --- a/shapes/polygon/package.json +++ b/shapes/polygon/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-polygon", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles polygon shape", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/rounded-polygon/CHANGELOG.md b/shapes/rounded-polygon/CHANGELOG.md index 3ce9771ca2d..d5a5a68ea9c 100644 --- a/shapes/rounded-polygon/CHANGELOG.md +++ b/shapes/rounded-polygon/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/shape-rounded-polygon + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/shape-rounded-polygon diff --git a/shapes/rounded-polygon/package.dist.json b/shapes/rounded-polygon/package.dist.json index 69c39d1e83a..4a49ae5e7e8 100644 --- a/shapes/rounded-polygon/package.dist.json +++ b/shapes/rounded-polygon/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-rounded-polygon", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles rounded polygon shape", "homepage": "https://particles.js.org", "repository": { @@ -65,7 +65,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/shapes/rounded-polygon/package.json b/shapes/rounded-polygon/package.json index 06138671d11..8a5b67e3328 100644 --- a/shapes/rounded-polygon/package.json +++ b/shapes/rounded-polygon/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-rounded-polygon", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles rounded polygon shape", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/rounded-rect/CHANGELOG.md b/shapes/rounded-rect/CHANGELOG.md index c272eacafd1..8db6db427e2 100644 --- a/shapes/rounded-rect/CHANGELOG.md +++ b/shapes/rounded-rect/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/shape-rounded-rect + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/shape-rounded-rect diff --git a/shapes/rounded-rect/package.dist.json b/shapes/rounded-rect/package.dist.json index 39255200a29..38e730584d7 100644 --- a/shapes/rounded-rect/package.dist.json +++ b/shapes/rounded-rect/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-rounded-rect", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles rounded rect shape", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/shapes/rounded-rect/package.json b/shapes/rounded-rect/package.json index da9944f94a9..9657290abbb 100644 --- a/shapes/rounded-rect/package.json +++ b/shapes/rounded-rect/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-rounded-rect", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles rounded rect shape", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/spiral/CHANGELOG.md b/shapes/spiral/CHANGELOG.md index d736df4ce9d..9440be4c012 100644 --- a/shapes/spiral/CHANGELOG.md +++ b/shapes/spiral/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/shape-spiral + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/shape-spiral diff --git a/shapes/spiral/package.dist.json b/shapes/spiral/package.dist.json index 62ea3f5b22e..55a24f641c8 100644 --- a/shapes/spiral/package.dist.json +++ b/shapes/spiral/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-spiral", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles spiral shape", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/shapes/spiral/package.json b/shapes/spiral/package.json index 04b0b7710ff..bf31eacbfc7 100644 --- a/shapes/spiral/package.json +++ b/shapes/spiral/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-spiral", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles spiral shape", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/square/CHANGELOG.md b/shapes/square/CHANGELOG.md index ddf2ae79b98..4eb9a1df1ed 100644 --- a/shapes/square/CHANGELOG.md +++ b/shapes/square/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/shape-square + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/shape-square diff --git a/shapes/square/package.dist.json b/shapes/square/package.dist.json index 1ac647942af..95125504b77 100644 --- a/shapes/square/package.dist.json +++ b/shapes/square/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-square", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles square shape", "homepage": "https://particles.js.org", "repository": { @@ -65,7 +65,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/shapes/square/package.json b/shapes/square/package.json index 88ef5d0f5f2..3263aca76ff 100644 --- a/shapes/square/package.json +++ b/shapes/square/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-square", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles square shape", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/squircle/CHANGELOG.md b/shapes/squircle/CHANGELOG.md index 2b3f2dc2347..750b25f2da8 100644 --- a/shapes/squircle/CHANGELOG.md +++ b/shapes/squircle/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/shape-squircle + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/shape-squircle diff --git a/shapes/squircle/package.dist.json b/shapes/squircle/package.dist.json index 28cb801511b..534c9162a8a 100644 --- a/shapes/squircle/package.dist.json +++ b/shapes/squircle/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-squircle", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles squircle shape", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/shapes/squircle/package.json b/shapes/squircle/package.json index c59233b6151..07c140e8adf 100644 --- a/shapes/squircle/package.json +++ b/shapes/squircle/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-squircle", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles squircle shape", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/star/CHANGELOG.md b/shapes/star/CHANGELOG.md index 56a9400a396..663b00eca9f 100644 --- a/shapes/star/CHANGELOG.md +++ b/shapes/star/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/shape-star + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/shape-star diff --git a/shapes/star/package.dist.json b/shapes/star/package.dist.json index 57880028889..3d33dd1ef90 100644 --- a/shapes/star/package.dist.json +++ b/shapes/star/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-star", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles star shape", "homepage": "https://particles.js.org", "repository": { @@ -65,7 +65,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/shapes/star/package.json b/shapes/star/package.json index 5606ef14af7..42c8ca051e4 100644 --- a/shapes/star/package.json +++ b/shapes/star/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-star", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles star shape", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/text/CHANGELOG.md b/shapes/text/CHANGELOG.md index cb61a67f1bf..382c6c1ba1c 100644 --- a/shapes/text/CHANGELOG.md +++ b/shapes/text/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/shape-text + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/shape-text diff --git a/shapes/text/package.dist.json b/shapes/text/package.dist.json index 983833c711a..73d9d8e7bf6 100644 --- a/shapes/text/package.dist.json +++ b/shapes/text/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-text", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles text shape", "homepage": "https://particles.js.org", "repository": { @@ -65,13 +65,13 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" }, "type": "module", "dependencies": { - "@tsparticles/canvas-utils": "4.0.3" + "@tsparticles/canvas-utils": "4.0.4" } } diff --git a/shapes/text/package.json b/shapes/text/package.json index 5aac51f2799..c1cfcbdbc11 100644 --- a/shapes/text/package.json +++ b/shapes/text/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-text", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles text shape", "homepage": "https://particles.js.org", "scripts": { diff --git a/templates/react-ts/CHANGELOG.md b/templates/react-ts/CHANGELOG.md index ce53995bc8c..d21c765bf93 100644 --- a/templates/react-ts/CHANGELOG.md +++ b/templates/react-ts/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package cra-template-particles-typescript + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package cra-template-particles-typescript diff --git a/templates/react-ts/package.json b/templates/react-ts/package.json index b800c06cc65..79ee30050f7 100644 --- a/templates/react-ts/package.json +++ b/templates/react-ts/package.json @@ -1,6 +1,6 @@ { "name": "cra-template-particles-typescript", - "version": "4.0.3", + "version": "4.0.4", "description": "Official TypeScript React tsParticles template", "keywords": [ "front-end", diff --git a/templates/react-ts/template.json b/templates/react-ts/template.json index 45bccba00e2..55f36af3774 100644 --- a/templates/react-ts/template.json +++ b/templates/react-ts/template.json @@ -9,12 +9,12 @@ "@types/react": "^19.2.14", "@types/react-dom": "^19.2.3", "@types/jest": "^30.0.0", - "@tsparticles/react": "^4.0.3", - "@tsparticles/engine": "^4.0.3", + "@tsparticles/react": "^4.0.4", + "@tsparticles/engine": "^4.0.4", "tslib": "^2.8.1", "typescript": "^6.0.2", "web-vitals": "^5.2.0", - "tsparticles": "^4.0.3" + "tsparticles": "^4.0.4" } } } \ No newline at end of file diff --git a/templates/react/CHANGELOG.md b/templates/react/CHANGELOG.md index 6d3ef9a109f..e9e8660494c 100644 --- a/templates/react/CHANGELOG.md +++ b/templates/react/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package cra-template-particles + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package cra-template-particles diff --git a/templates/react/package.json b/templates/react/package.json index 98a693b72d8..6d7802ec812 100644 --- a/templates/react/package.json +++ b/templates/react/package.json @@ -1,6 +1,6 @@ { "name": "cra-template-particles", - "version": "4.0.3", + "version": "4.0.4", "description": "Official React tsParticles template", "keywords": [ "front-end", diff --git a/templates/react/template.json b/templates/react/template.json index 964134c92f9..fe19ffc3d4d 100644 --- a/templates/react/template.json +++ b/templates/react/template.json @@ -1,9 +1,9 @@ { "package": { "dependencies": { - "@tsparticles/react": "^4.0.3", - "@tsparticles/engine": "^4.0.3", - "tsparticles": "^4.0.3", + "@tsparticles/react": "^4.0.4", + "@tsparticles/engine": "^4.0.4", + "tsparticles": "^4.0.4", "tslib": "^2.8.1" } } diff --git a/updaters/destroy/CHANGELOG.md b/updaters/destroy/CHANGELOG.md index 23517804472..cb30e5e0c77 100644 --- a/updaters/destroy/CHANGELOG.md +++ b/updaters/destroy/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/updater-destroy + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/updater-destroy diff --git a/updaters/destroy/package.dist.json b/updaters/destroy/package.dist.json index 29cc9636e9e..9eefab10d9e 100644 --- a/updaters/destroy/package.dist.json +++ b/updaters/destroy/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-destroy", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles particles destroy updater", "homepage": "https://particles.js.org", "repository": { @@ -93,7 +93,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/updaters/destroy/package.json b/updaters/destroy/package.json index f67887d79d6..68002217c07 100644 --- a/updaters/destroy/package.json +++ b/updaters/destroy/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-destroy", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles particles destroy updater", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/gradient/CHANGELOG.md b/updaters/gradient/CHANGELOG.md index cf1f36d5c55..ce98b9adc7a 100644 --- a/updaters/gradient/CHANGELOG.md +++ b/updaters/gradient/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/updater-gradient + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/updater-gradient diff --git a/updaters/gradient/package.dist.json b/updaters/gradient/package.dist.json index f7d46726fd5..c9740be0a86 100644 --- a/updaters/gradient/package.dist.json +++ b/updaters/gradient/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-gradient", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles particles gradient updater", "homepage": "https://particles.js.org", "repository": { @@ -107,7 +107,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/updaters/gradient/package.json b/updaters/gradient/package.json index c8e2090c226..8dc79416ecc 100644 --- a/updaters/gradient/package.json +++ b/updaters/gradient/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-gradient", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles particles gradient updater", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/life/CHANGELOG.md b/updaters/life/CHANGELOG.md index 1ed95785ea1..e5d9e29f44b 100644 --- a/updaters/life/CHANGELOG.md +++ b/updaters/life/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/updater-life + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/updater-life diff --git a/updaters/life/package.dist.json b/updaters/life/package.dist.json index bacebf79a7d..2416b4290bd 100644 --- a/updaters/life/package.dist.json +++ b/updaters/life/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-life", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles particles life updater", "homepage": "https://particles.js.org", "repository": { @@ -93,7 +93,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/updaters/life/package.json b/updaters/life/package.json index 1ec2d91ccfd..6d36ce9a8bb 100644 --- a/updaters/life/package.json +++ b/updaters/life/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-life", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles particles life updater", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/opacity/CHANGELOG.md b/updaters/opacity/CHANGELOG.md index 4692c1c83cd..454dd0d429c 100644 --- a/updaters/opacity/CHANGELOG.md +++ b/updaters/opacity/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/updater-opacity + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/updater-opacity diff --git a/updaters/opacity/package.dist.json b/updaters/opacity/package.dist.json index 9300f8a93ce..55437ebdb5e 100644 --- a/updaters/opacity/package.dist.json +++ b/updaters/opacity/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-opacity", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles particles opacity updater", "homepage": "https://particles.js.org", "repository": { @@ -93,7 +93,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/updaters/opacity/package.json b/updaters/opacity/package.json index 4f31cbcd689..2966538b7a1 100644 --- a/updaters/opacity/package.json +++ b/updaters/opacity/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-opacity", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles particles opacity updater", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/orbit/CHANGELOG.md b/updaters/orbit/CHANGELOG.md index 518f964db0f..a7f8b59e7df 100644 --- a/updaters/orbit/CHANGELOG.md +++ b/updaters/orbit/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/updater-orbit + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/updater-orbit diff --git a/updaters/orbit/package.dist.json b/updaters/orbit/package.dist.json index 3e2916c6291..6d63658d74f 100644 --- a/updaters/orbit/package.dist.json +++ b/updaters/orbit/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-orbit", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles particles orbit updater", "homepage": "https://particles.js.org", "repository": { @@ -107,7 +107,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/updaters/orbit/package.json b/updaters/orbit/package.json index f062ef1cbe8..27f82805656 100644 --- a/updaters/orbit/package.json +++ b/updaters/orbit/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-orbit", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles particles orbit updater", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/outModes/CHANGELOG.md b/updaters/outModes/CHANGELOG.md index 1d0b9bfd33f..1b3554cd2cf 100644 --- a/updaters/outModes/CHANGELOG.md +++ b/updaters/outModes/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/updater-out-modes + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/updater-out-modes diff --git a/updaters/outModes/package.dist.json b/updaters/outModes/package.dist.json index f0b2b5a139c..92b5c44c01b 100644 --- a/updaters/outModes/package.dist.json +++ b/updaters/outModes/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-out-modes", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles particles out modes updater", "homepage": "https://particles.js.org", "repository": { @@ -93,7 +93,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/updaters/outModes/package.json b/updaters/outModes/package.json index 7a74f346638..6d1ac7972d3 100644 --- a/updaters/outModes/package.json +++ b/updaters/outModes/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-out-modes", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles particles out modes updater", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/paint/CHANGELOG.md b/updaters/paint/CHANGELOG.md index da96fa41fd3..5e6688586a8 100644 --- a/updaters/paint/CHANGELOG.md +++ b/updaters/paint/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/updater-paint + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/updater-paint diff --git a/updaters/paint/package.dist.json b/updaters/paint/package.dist.json index 90aa32618d1..5d4791d3bad 100644 --- a/updaters/paint/package.dist.json +++ b/updaters/paint/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-paint", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles particles paint updater", "homepage": "https://particles.js.org", "repository": { @@ -93,7 +93,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/updaters/paint/package.json b/updaters/paint/package.json index e402d661e0c..bf01e66f723 100644 --- a/updaters/paint/package.json +++ b/updaters/paint/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-paint", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles particles paint updater", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/roll/CHANGELOG.md b/updaters/roll/CHANGELOG.md index e213f5b2968..2e9b9b2b77f 100644 --- a/updaters/roll/CHANGELOG.md +++ b/updaters/roll/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/updater-roll + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/updater-roll diff --git a/updaters/roll/package.dist.json b/updaters/roll/package.dist.json index 2a17791c3a2..89c174ee523 100644 --- a/updaters/roll/package.dist.json +++ b/updaters/roll/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-roll", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles particles roll updater", "homepage": "https://particles.js.org", "repository": { @@ -93,7 +93,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/updaters/roll/package.json b/updaters/roll/package.json index 894984e19d0..2bb33096208 100644 --- a/updaters/roll/package.json +++ b/updaters/roll/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-roll", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles particles roll updater", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/rotate/CHANGELOG.md b/updaters/rotate/CHANGELOG.md index fbb0bd6596c..aa08c479fae 100644 --- a/updaters/rotate/CHANGELOG.md +++ b/updaters/rotate/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/updater-rotate + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/updater-rotate diff --git a/updaters/rotate/package.dist.json b/updaters/rotate/package.dist.json index 53a0ccc7e97..8625ebdb3d9 100644 --- a/updaters/rotate/package.dist.json +++ b/updaters/rotate/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-rotate", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles particles rotate updater", "homepage": "https://particles.js.org", "repository": { @@ -93,7 +93,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/updaters/rotate/package.json b/updaters/rotate/package.json index d9ce19c161e..1b6a50ec764 100644 --- a/updaters/rotate/package.json +++ b/updaters/rotate/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-rotate", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles particles rotate updater", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/size/CHANGELOG.md b/updaters/size/CHANGELOG.md index a52cff76feb..3bcb786f4d9 100644 --- a/updaters/size/CHANGELOG.md +++ b/updaters/size/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/updater-size + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/updater-size diff --git a/updaters/size/package.dist.json b/updaters/size/package.dist.json index 541f79b804f..4f49091e4f8 100644 --- a/updaters/size/package.dist.json +++ b/updaters/size/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-size", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles particles size updater", "homepage": "https://particles.js.org", "repository": { @@ -93,7 +93,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/updaters/size/package.json b/updaters/size/package.json index 1608fd0c264..378baef22f4 100644 --- a/updaters/size/package.json +++ b/updaters/size/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-size", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles particles size updater", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/tilt/CHANGELOG.md b/updaters/tilt/CHANGELOG.md index 05a3f5e11e0..5dc8c798de1 100644 --- a/updaters/tilt/CHANGELOG.md +++ b/updaters/tilt/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/updater-tilt + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/updater-tilt diff --git a/updaters/tilt/package.dist.json b/updaters/tilt/package.dist.json index d839cf76d03..b3e9ca5c3f1 100644 --- a/updaters/tilt/package.dist.json +++ b/updaters/tilt/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-tilt", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles particles tilt updater", "homepage": "https://particles.js.org", "repository": { @@ -93,7 +93,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/updaters/tilt/package.json b/updaters/tilt/package.json index 26d5933cb14..e80f4c38022 100644 --- a/updaters/tilt/package.json +++ b/updaters/tilt/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-tilt", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles particles tilt updater", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/twinkle/CHANGELOG.md b/updaters/twinkle/CHANGELOG.md index 864edfdc474..8ec2c64ab53 100644 --- a/updaters/twinkle/CHANGELOG.md +++ b/updaters/twinkle/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/updater-twinkle + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/updater-twinkle diff --git a/updaters/twinkle/package.dist.json b/updaters/twinkle/package.dist.json index fd3b8894ce9..18de7c5612c 100644 --- a/updaters/twinkle/package.dist.json +++ b/updaters/twinkle/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-twinkle", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles particles twinkle updater", "homepage": "https://particles.js.org", "repository": { @@ -93,7 +93,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/updaters/twinkle/package.json b/updaters/twinkle/package.json index 3753744d496..5a61ca45ac1 100644 --- a/updaters/twinkle/package.json +++ b/updaters/twinkle/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-twinkle", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles particles twinkle updater", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/wobble/CHANGELOG.md b/updaters/wobble/CHANGELOG.md index 177beefa33d..fdcf6b31321 100644 --- a/updaters/wobble/CHANGELOG.md +++ b/updaters/wobble/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/updater-wobble + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/updater-wobble diff --git a/updaters/wobble/package.dist.json b/updaters/wobble/package.dist.json index 69722356a31..422a1ed8329 100644 --- a/updaters/wobble/package.dist.json +++ b/updaters/wobble/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-wobble", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles particles wobble updater", "homepage": "https://particles.js.org", "repository": { @@ -93,7 +93,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/updaters/wobble/package.json b/updaters/wobble/package.json index 530cca049ca..47455a7ccf8 100644 --- a/updaters/wobble/package.json +++ b/updaters/wobble/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-wobble", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles particles wobble updater", "homepage": "https://particles.js.org", "scripts": { diff --git a/utils/canvasUtils/CHANGELOG.md b/utils/canvasUtils/CHANGELOG.md index bc6006b89b9..1e47014251e 100644 --- a/utils/canvasUtils/CHANGELOG.md +++ b/utils/canvasUtils/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/canvas-utils + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/canvas-utils diff --git a/utils/canvasUtils/package.dist.json b/utils/canvasUtils/package.dist.json index d8425a54152..9fb900c3521 100644 --- a/utils/canvasUtils/package.dist.json +++ b/utils/canvasUtils/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/canvas-utils", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles canvas utils library", "homepage": "https://particles.js.org", "repository": { @@ -109,7 +109,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module" } diff --git a/utils/canvasUtils/package.json b/utils/canvasUtils/package.json index 748c9f8b04c..dea706a6de0 100644 --- a/utils/canvasUtils/package.json +++ b/utils/canvasUtils/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/canvas-utils", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles canvas utils path", "homepage": "https://particles.js.org", "scripts": { diff --git a/utils/configs/CHANGELOG.md b/utils/configs/CHANGELOG.md index 99b355cfe94..5147d5274f0 100644 --- a/utils/configs/CHANGELOG.md +++ b/utils/configs/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/configs + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/configs diff --git a/utils/configs/package.dist.json b/utils/configs/package.dist.json index bb5554cdc88..bde57ef329f 100644 --- a/utils/configs/package.dist.json +++ b/utils/configs/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/configs", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles demo configurations", "homepage": "https://particles.js.org", "repository": { @@ -105,7 +105,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "publishConfig": { "access": "public" diff --git a/utils/configs/package.json b/utils/configs/package.json index 95a3c549b3b..587ce1a4dd7 100644 --- a/utils/configs/package.json +++ b/utils/configs/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/configs", - "version": "4.0.3", + "version": "4.0.4", "homepage": "https://particles.js.org", "scripts": { "build": "tsparticles-build", diff --git a/utils/fractalNoise/CHANGELOG.md b/utils/fractalNoise/CHANGELOG.md index 39028ced6c2..85a10475164 100644 --- a/utils/fractalNoise/CHANGELOG.md +++ b/utils/fractalNoise/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/fractal-noise + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/fractal-noise diff --git a/utils/fractalNoise/package.dist.json b/utils/fractalNoise/package.dist.json index 0056d3d9534..7129bb01321 100644 --- a/utils/fractalNoise/package.dist.json +++ b/utils/fractalNoise/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/fractal-noise", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fractal noise library", "homepage": "https://particles.js.org", "repository": { @@ -110,6 +110,6 @@ }, "type": "module", "dependencies": { - "@tsparticles/smooth-value-noise": "4.0.3" + "@tsparticles/smooth-value-noise": "4.0.4" } } diff --git a/utils/fractalNoise/package.json b/utils/fractalNoise/package.json index 110ed8e0566..c05af016622 100644 --- a/utils/fractalNoise/package.json +++ b/utils/fractalNoise/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/fractal-noise", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles fractal noise path", "homepage": "https://particles.js.org", "scripts": { diff --git a/utils/noiseField/CHANGELOG.md b/utils/noiseField/CHANGELOG.md index 39e87f30d8c..f29facc6371 100644 --- a/utils/noiseField/CHANGELOG.md +++ b/utils/noiseField/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/noise-field + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/noise-field diff --git a/utils/noiseField/package.dist.json b/utils/noiseField/package.dist.json index e2e5b1e714f..d41d6a89072 100644 --- a/utils/noiseField/package.dist.json +++ b/utils/noiseField/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/noise-field", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles noise field library", "homepage": "https://particles.js.org", "repository": { @@ -92,8 +92,8 @@ "module": "esm/index.js", "types": "types/index.d.ts", "peerDependencies": { - "@tsparticles/engine": "4.0.3", - "@tsparticles/plugin-move": "4.0.3" + "@tsparticles/engine": "4.0.4", + "@tsparticles/plugin-move": "4.0.4" }, "exports": { ".": { diff --git a/utils/noiseField/package.json b/utils/noiseField/package.json index ea6cffa5892..7329e871a59 100644 --- a/utils/noiseField/package.json +++ b/utils/noiseField/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/noise-field", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles noise field library", "homepage": "https://particles.js.org", "scripts": { diff --git a/utils/pathUtils/CHANGELOG.md b/utils/pathUtils/CHANGELOG.md index a620ed3235b..025bb01e3b4 100644 --- a/utils/pathUtils/CHANGELOG.md +++ b/utils/pathUtils/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/path-utils + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/path-utils diff --git a/utils/pathUtils/package.dist.json b/utils/pathUtils/package.dist.json index b51e3f15a39..b8c294db81d 100644 --- a/utils/pathUtils/package.dist.json +++ b/utils/pathUtils/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-utils", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles path utils library", "homepage": "https://particles.js.org", "repository": { @@ -109,7 +109,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.3" + "@tsparticles/engine": "4.0.4" }, "type": "module" } diff --git a/utils/pathUtils/package.json b/utils/pathUtils/package.json index 5da4813b57e..67168361e79 100644 --- a/utils/pathUtils/package.json +++ b/utils/pathUtils/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-utils", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles path utils path", "homepage": "https://particles.js.org", "scripts": { diff --git a/utils/perlinNoise/CHANGELOG.md b/utils/perlinNoise/CHANGELOG.md index 5be19482662..994ebb666b7 100644 --- a/utils/perlinNoise/CHANGELOG.md +++ b/utils/perlinNoise/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/perlin-noise + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/perlin-noise diff --git a/utils/perlinNoise/package.dist.json b/utils/perlinNoise/package.dist.json index f61148d9665..a430f49ef64 100644 --- a/utils/perlinNoise/package.dist.json +++ b/utils/perlinNoise/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/perlin-noise", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles perlin noise library", "homepage": "https://particles.js.org", "repository": { diff --git a/utils/perlinNoise/package.json b/utils/perlinNoise/package.json index 2c0e186a116..ce484cc345d 100644 --- a/utils/perlinNoise/package.json +++ b/utils/perlinNoise/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/perlin-noise", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles perlin noise path", "homepage": "https://particles.js.org", "scripts": { diff --git a/utils/simplexNoise/CHANGELOG.md b/utils/simplexNoise/CHANGELOG.md index 31fe97677be..6cb65bd2306 100644 --- a/utils/simplexNoise/CHANGELOG.md +++ b/utils/simplexNoise/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/simplex-noise + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/simplex-noise diff --git a/utils/simplexNoise/package.dist.json b/utils/simplexNoise/package.dist.json index 8e1b917959b..5c6c3b23379 100644 --- a/utils/simplexNoise/package.dist.json +++ b/utils/simplexNoise/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/simplex-noise", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles simplex noise library", "homepage": "https://particles.js.org", "repository": { diff --git a/utils/simplexNoise/package.json b/utils/simplexNoise/package.json index a9aa498e80e..5b98fe1c03a 100644 --- a/utils/simplexNoise/package.json +++ b/utils/simplexNoise/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/simplex-noise", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles simplex noise library", "homepage": "https://particles.js.org", "scripts": { diff --git a/utils/smoothValueNoise/CHANGELOG.md b/utils/smoothValueNoise/CHANGELOG.md index 93fd559798c..395fc708a9f 100644 --- a/utils/smoothValueNoise/CHANGELOG.md +++ b/utils/smoothValueNoise/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/smooth-value-noise + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/smooth-value-noise diff --git a/utils/smoothValueNoise/package.dist.json b/utils/smoothValueNoise/package.dist.json index d3502c6e91e..f5188b42616 100644 --- a/utils/smoothValueNoise/package.dist.json +++ b/utils/smoothValueNoise/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/smooth-value-noise", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles smooth value noise library", "homepage": "https://particles.js.org", "repository": { diff --git a/utils/smoothValueNoise/package.json b/utils/smoothValueNoise/package.json index e3c0d3b0418..0c92d28c8b7 100644 --- a/utils/smoothValueNoise/package.json +++ b/utils/smoothValueNoise/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/smooth-value-noise", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles smooth value noise path", "homepage": "https://particles.js.org", "scripts": { diff --git a/utils/tests/CHANGELOG.md b/utils/tests/CHANGELOG.md index ef0b509ecb3..d4c6d60f17f 100644 --- a/utils/tests/CHANGELOG.md +++ b/utils/tests/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/tests + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/tests diff --git a/utils/tests/package.json b/utils/tests/package.json index 1cbed441a01..bf01bf003f7 100644 --- a/utils/tests/package.json +++ b/utils/tests/package.json @@ -1,7 +1,7 @@ { "name": "@tsparticles/tests", "private": true, - "version": "4.0.3", + "version": "4.0.4", "repository": { "type": "git", "url": "git+https://github.com/tsparticles/tsparticles.git", diff --git a/websites/confetti/CHANGELOG.md b/websites/confetti/CHANGELOG.md index 42fabefffd8..38f7449a023 100644 --- a/websites/confetti/CHANGELOG.md +++ b/websites/confetti/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/confetti-website + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) ### Bug Fixes diff --git a/websites/confetti/package.json b/websites/confetti/package.json index 33bb50f1a9d..367c473de20 100644 --- a/websites/confetti/package.json +++ b/websites/confetti/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/confetti-website", - "version": "4.0.3", + "version": "4.0.4", "description": "tsParticles confetti webpage", "private": true, "type": "module", diff --git a/websites/website/CHANGELOG.md b/websites/website/CHANGELOG.md index c03ea144341..77fa0f69ef5 100644 --- a/websites/website/CHANGELOG.md +++ b/websites/website/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/website + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/website diff --git a/websites/website/package.json b/websites/website/package.json index 9e05d6e19a4..e540fff1f99 100644 --- a/websites/website/package.json +++ b/websites/website/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/website", - "version": "4.0.3", + "version": "4.0.4", "private": true, "description": "tsParticles Website (VitePress)", "main": "docs/index.md", diff --git a/wrappers/angular-confetti/CHANGELOG.md b/wrappers/angular-confetti/CHANGELOG.md index df389755ec7..f1dcfb3851f 100644 --- a/wrappers/angular-confetti/CHANGELOG.md +++ b/wrappers/angular-confetti/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package angular-confetti + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package angular-confetti diff --git a/wrappers/angular-confetti/package.json b/wrappers/angular-confetti/package.json index 3fd88c8e5ad..ccd05556a1a 100644 --- a/wrappers/angular-confetti/package.json +++ b/wrappers/angular-confetti/package.json @@ -1,6 +1,6 @@ { "name": "angular-confetti", - "version": "4.0.3", + "version": "4.0.4", "description": "Official tsParticles Angular Confetti Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Svelte, jQuery, Preact, Riot.js, Solid.js, Inferno.", "repository": { "type": "git", diff --git a/wrappers/angular-confetti/projects/ng-confetti/package.json b/wrappers/angular-confetti/projects/ng-confetti/package.json index 7bc39e97fec..932d83710be 100644 --- a/wrappers/angular-confetti/projects/ng-confetti/package.json +++ b/wrappers/angular-confetti/projects/ng-confetti/package.json @@ -1,6 +1,6 @@ { "name": "angular-confetti", - "version": "4.0.3", + "version": "4.0.4", "description": "Official tsParticles Angular Confetti Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Svelte, jQuery, Preact, Riot.js, Solid.js, Inferno.", "homepage": "https://confetti.js.org", "repository": { @@ -85,8 +85,8 @@ "@angular/common": ">=2.0.0", "@angular/core": ">=2.0.0", "rxjs": ">=7.0.0", - "@tsparticles/confetti": "^4.0.3", - "@tsparticles/engine": "^4.0.3" + "@tsparticles/confetti": "^4.0.4", + "@tsparticles/engine": "^4.0.4" }, "dependencies": { "tslib": "^2.8.1" diff --git a/wrappers/angular-fireworks/CHANGELOG.md b/wrappers/angular-fireworks/CHANGELOG.md index 99d56cb0043..08a0c310737 100644 --- a/wrappers/angular-fireworks/CHANGELOG.md +++ b/wrappers/angular-fireworks/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package angular-fireworks + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package angular-fireworks diff --git a/wrappers/angular-fireworks/package.json b/wrappers/angular-fireworks/package.json index 7461302c73b..76e2cb101d1 100644 --- a/wrappers/angular-fireworks/package.json +++ b/wrappers/angular-fireworks/package.json @@ -1,6 +1,6 @@ { "name": "angular-fireworks", - "version": "4.0.3", + "version": "4.0.4", "description": "Official tsParticles Angular Confetti Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Svelte, jQuery, Preact, Riot.js, Solid.js, Inferno.", "repository": { "type": "git", diff --git a/wrappers/angular-fireworks/projects/ng-fireworks/package.json b/wrappers/angular-fireworks/projects/ng-fireworks/package.json index 13d9b22e2fd..9097f5d8d90 100644 --- a/wrappers/angular-fireworks/projects/ng-fireworks/package.json +++ b/wrappers/angular-fireworks/projects/ng-fireworks/package.json @@ -1,6 +1,6 @@ { "name": "angular-fireworks", - "version": "4.0.3", + "version": "4.0.4", "description": "Official tsParticles Angular Confetti Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Svelte, jQuery, Preact, Riot.js, Solid.js, Inferno.", "homepage": "https://confetti.js.org", "repository": { @@ -85,7 +85,7 @@ "@angular/common": ">=2.0.0", "@angular/core": ">=2.0.0", "rxjs": ">=7.0.0", - "@tsparticles/fireworks": "^4.0.3" + "@tsparticles/fireworks": "^4.0.4" }, "dependencies": { "tslib": "^2.8.1" diff --git a/wrappers/angular/CHANGELOG.md b/wrappers/angular/CHANGELOG.md index de4e84df256..226e8eb5d83 100644 --- a/wrappers/angular/CHANGELOG.md +++ b/wrappers/angular/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/angular + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/angular diff --git a/wrappers/angular/package.json b/wrappers/angular/package.json index 6ecff34d8c2..df5f97e4296 100644 --- a/wrappers/angular/package.json +++ b/wrappers/angular/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/angular", - "version": "4.0.3", + "version": "4.0.4", "description": "Official tsParticles Angular Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Svelte, jQuery, Preact, Riot.js, Solid.js, Inferno.", "repository": { "type": "git", diff --git a/wrappers/angular/projects/ng-particles/package.json b/wrappers/angular/projects/ng-particles/package.json index 358b0cd864c..2573954da14 100644 --- a/wrappers/angular/projects/ng-particles/package.json +++ b/wrappers/angular/projects/ng-particles/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/angular", - "version": "4.0.3", + "version": "4.0.4", "description": "Official tsParticles Angular Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Svelte, jQuery, Preact, Riot.js, Solid.js, Inferno.", "homepage": "https://particles.js.org", "repository": { @@ -88,7 +88,7 @@ "@angular/common": ">=2.0.0", "@angular/core": ">=2.0.0", "rxjs": ">=7.0.0", - "@tsparticles/engine": "^4.0.3" + "@tsparticles/engine": "^4.0.4" }, "dependencies": { "tslib": "^2.8.1" diff --git a/wrappers/astro/CHANGELOG.md b/wrappers/astro/CHANGELOG.md index 5adeee89066..cd5663a26cd 100644 --- a/wrappers/astro/CHANGELOG.md +++ b/wrappers/astro/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/astro + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/astro diff --git a/wrappers/astro/package.json b/wrappers/astro/package.json index 6735deafdf3..756fcc5dbe8 100644 --- a/wrappers/astro/package.json +++ b/wrappers/astro/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/astro", - "version": "4.0.3", + "version": "4.0.4", "description": "Official tsParticles Astro Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, React.js, Riot.js, Solid.js, Inferno.", "type": "module", "scripts": { diff --git a/wrappers/ember/CHANGELOG.md b/wrappers/ember/CHANGELOG.md index 99d6b322003..0f63f6d5f7b 100644 --- a/wrappers/ember/CHANGELOG.md +++ b/wrappers/ember/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/ember + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/ember diff --git a/wrappers/ember/package.json b/wrappers/ember/package.json index 0d855831dc8..6a01cba474e 100644 --- a/wrappers/ember/package.json +++ b/wrappers/ember/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/ember", - "version": "4.0.3", + "version": "4.0.4", "description": "Ember.js component for using tsParticles", "keywords": [ "ember-addon" diff --git a/wrappers/inferno/CHANGELOG.md b/wrappers/inferno/CHANGELOG.md index 11349b5fffa..0a969a3b820 100644 --- a/wrappers/inferno/CHANGELOG.md +++ b/wrappers/inferno/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/inferno + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/inferno diff --git a/wrappers/inferno/package.json b/wrappers/inferno/package.json index f91beb8d9a8..d004436423b 100644 --- a/wrappers/inferno/package.json +++ b/wrappers/inferno/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/inferno", - "version": "4.0.3", + "version": "4.0.4", "description": "Official tsParticles Inferno Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Solid.js.", "main": "dist/particles.js", "types": "dist/index.d.ts", diff --git a/wrappers/jquery/CHANGELOG.md b/wrappers/jquery/CHANGELOG.md index cb8d9706aa4..0aea425e077 100644 --- a/wrappers/jquery/CHANGELOG.md +++ b/wrappers/jquery/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/jquery + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/jquery diff --git a/wrappers/jquery/package.json b/wrappers/jquery/package.json index d9825ff5ec7..39248c671c1 100644 --- a/wrappers/jquery/package.json +++ b/wrappers/jquery/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/jquery", - "version": "4.0.3", + "version": "4.0.4", "description": "Official tsParticles jQuery Plugin - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Angular, Svelte, Preact, Riot.js, Solid.js, Inferno.", "main": "dist/jquery.particles.min.js", "scripts": { diff --git a/wrappers/lit/CHANGELOG.md b/wrappers/lit/CHANGELOG.md index b80b4c7d5ee..3d3ec23a8d2 100644 --- a/wrappers/lit/CHANGELOG.md +++ b/wrappers/lit/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/lit + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/lit diff --git a/wrappers/lit/package.json b/wrappers/lit/package.json index fdaea33dbd2..d1d4b6985cb 100644 --- a/wrappers/lit/package.json +++ b/wrappers/lit/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/lit", - "version": "4.0.3", + "version": "4.0.4", "description": "Official tsParticles Lit Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, Angular, React, Vue.js (2.x and 3.x), Svelte, jQuery, Preact, Riot.js, Solid.js, Inferno.", "repository": { "type": "git", diff --git a/wrappers/nextjs/CHANGELOG.md b/wrappers/nextjs/CHANGELOG.md index 7a91b3dca04..53376efc9db 100644 --- a/wrappers/nextjs/CHANGELOG.md +++ b/wrappers/nextjs/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/nextjs + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/nextjs diff --git a/wrappers/nextjs/package.json b/wrappers/nextjs/package.json index f6a3cd6218a..edd568f5fb5 100644 --- a/wrappers/nextjs/package.json +++ b/wrappers/nextjs/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/nextjs", - "version": "4.0.3", + "version": "4.0.4", "type": "module", "repository": { "type": "git", diff --git a/wrappers/nuxt2/CHANGELOG.md b/wrappers/nuxt2/CHANGELOG.md index 48818d75da1..d960ae22352 100644 --- a/wrappers/nuxt2/CHANGELOG.md +++ b/wrappers/nuxt2/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/nuxt2 + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/nuxt2 diff --git a/wrappers/nuxt2/package.json b/wrappers/nuxt2/package.json index 3d24ac67e9c..9c4455684f5 100644 --- a/wrappers/nuxt2/package.json +++ b/wrappers/nuxt2/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/nuxt2", - "version": "4.0.3", + "version": "4.0.4", "repository": { "type": "git", "url": "git+https://github.com/tsparticles/tsparticles.git", diff --git a/wrappers/nuxt3/CHANGELOG.md b/wrappers/nuxt3/CHANGELOG.md index 76cdcaff563..377db824b9b 100644 --- a/wrappers/nuxt3/CHANGELOG.md +++ b/wrappers/nuxt3/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/nuxt3 + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/nuxt3 diff --git a/wrappers/nuxt3/package.json b/wrappers/nuxt3/package.json index 95eb1e1531c..596a404a6fd 100644 --- a/wrappers/nuxt3/package.json +++ b/wrappers/nuxt3/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/nuxt3", - "version": "4.0.3", + "version": "4.0.4", "type": "module", "repository": { "type": "git", diff --git a/wrappers/nuxt4/CHANGELOG.md b/wrappers/nuxt4/CHANGELOG.md index aaafff3dd6d..1f13933e207 100644 --- a/wrappers/nuxt4/CHANGELOG.md +++ b/wrappers/nuxt4/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/nuxt4 + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/nuxt4 diff --git a/wrappers/nuxt4/package.json b/wrappers/nuxt4/package.json index 9d2cf567580..866ebce73e0 100644 --- a/wrappers/nuxt4/package.json +++ b/wrappers/nuxt4/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/nuxt4", - "version": "4.0.3", + "version": "4.0.4", "type": "module", "repository": { "type": "git", diff --git a/wrappers/preact/CHANGELOG.md b/wrappers/preact/CHANGELOG.md index e79233dc0cd..7afb86317fa 100644 --- a/wrappers/preact/CHANGELOG.md +++ b/wrappers/preact/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/preact + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/preact diff --git a/wrappers/preact/package.json b/wrappers/preact/package.json index eff8f90c0a0..49ae57572ac 100644 --- a/wrappers/preact/package.json +++ b/wrappers/preact/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preact", - "version": "4.0.3", + "version": "4.0.4", "description": "Official tsParticles Preact Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Riot.js, Solid.js, Inferno.", "main": "index.js", "unpkg": "umd/particles.js", diff --git a/wrappers/qwik/CHANGELOG.md b/wrappers/qwik/CHANGELOG.md index 4ec3bcefafa..edfbd3095b8 100644 --- a/wrappers/qwik/CHANGELOG.md +++ b/wrappers/qwik/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/qwik + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/qwik diff --git a/wrappers/qwik/package.json b/wrappers/qwik/package.json index 6895c11abc9..98db887aeef 100644 --- a/wrappers/qwik/package.json +++ b/wrappers/qwik/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/qwik", - "version": "4.0.3", + "version": "4.0.4", "description": "Official tsParticles Qwik Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, React, Riot.js, Solid.js, Inferno.", "repository": { "type": "git", diff --git a/wrappers/react/CHANGELOG.md b/wrappers/react/CHANGELOG.md index 5779830b1e8..7161ff0f629 100644 --- a/wrappers/react/CHANGELOG.md +++ b/wrappers/react/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/react + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/react diff --git a/wrappers/react/package.json b/wrappers/react/package.json index 77761f83700..dc75a1e365b 100644 --- a/wrappers/react/package.json +++ b/wrappers/react/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/react", - "version": "4.0.3", + "version": "4.0.4", "type": "module", "repository": { "type": "git", diff --git a/wrappers/riot/CHANGELOG.md b/wrappers/riot/CHANGELOG.md index 6141f70be83..a6bad2ef418 100644 --- a/wrappers/riot/CHANGELOG.md +++ b/wrappers/riot/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/riot + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/riot diff --git a/wrappers/riot/package.json b/wrappers/riot/package.json index 5e693de936f..6e54beb6e3f 100644 --- a/wrappers/riot/package.json +++ b/wrappers/riot/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/riot", - "version": "4.0.3", + "version": "4.0.4", "description": "Official tsParticles Riot Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Inferno.", "main": "dist/riot-particles.cjs", "module": "dist/riot-particles.esm.js", diff --git a/wrappers/solid/CHANGELOG.md b/wrappers/solid/CHANGELOG.md index 021347023bb..5fa9688e909 100644 --- a/wrappers/solid/CHANGELOG.md +++ b/wrappers/solid/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/solid + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/solid diff --git a/wrappers/solid/package.json b/wrappers/solid/package.json index dc17d2e0683..bc9d548602d 100644 --- a/wrappers/solid/package.json +++ b/wrappers/solid/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/solid", - "version": "4.0.3", + "version": "4.0.4", "description": "Official tsParticles Solid Component - Easily create highly customizable particle, confetti and fireworks 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, Inferno, Riot.js.", "license": "MIT", "author": "Matteo Bruni ", diff --git a/wrappers/svelte/CHANGELOG.md b/wrappers/svelte/CHANGELOG.md index 9bc0427005c..e65ce413730 100644 --- a/wrappers/svelte/CHANGELOG.md +++ b/wrappers/svelte/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/svelte + + + + + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/svelte diff --git a/wrappers/svelte/package.json b/wrappers/svelte/package.json index 01c7e6eb49d..ad916f5d7cb 100644 --- a/wrappers/svelte/package.json +++ b/wrappers/svelte/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/svelte", - "version": "4.0.3", + "version": "4.0.4", "description": "Official tsParticles Svelte Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Angular, jQuery, Preact, Riot.js, Solid.js, Inferno.", "repository": { "type": "git", diff --git a/wrappers/vue2/CHANGELOG.md b/wrappers/vue2/CHANGELOG.md index 9945d704f6b..98eef4165bc 100644 --- a/wrappers/vue2/CHANGELOG.md +++ b/wrappers/vue2/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/vue2 + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/vue2 diff --git a/wrappers/vue2/package.json b/wrappers/vue2/package.json index 8093a36de0b..f6b33625855 100644 --- a/wrappers/vue2/package.json +++ b/wrappers/vue2/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/vue2", - "version": "4.0.3", + "version": "4.0.4", "main": "dist/vue2-particles.umd.js", "module": "dist/vue2-particles.es.js", "types": "dist/index.d.ts", diff --git a/wrappers/vue3/CHANGELOG.md b/wrappers/vue3/CHANGELOG.md index 552491a18ce..7dc631d8fb5 100644 --- a/wrappers/vue3/CHANGELOG.md +++ b/wrappers/vue3/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/vue3 + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/vue3 diff --git a/wrappers/vue3/package.json b/wrappers/vue3/package.json index 6c93a1a6ddd..c94224d6759 100644 --- a/wrappers/vue3/package.json +++ b/wrappers/vue3/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/vue3", - "version": "4.0.3", + "version": "4.0.4", "type": "module", "main": "dist/particles.es.js", "types": "dist/index.d.ts", diff --git a/wrappers/webcomponents/CHANGELOG.md b/wrappers/webcomponents/CHANGELOG.md index af3c0284afa..931be7fdc91 100644 --- a/wrappers/webcomponents/CHANGELOG.md +++ b/wrappers/webcomponents/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/webcomponents + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/webcomponents diff --git a/wrappers/webcomponents/package.json b/wrappers/webcomponents/package.json index 7e55a52d0cf..fc98160cfb4 100644 --- a/wrappers/webcomponents/package.json +++ b/wrappers/webcomponents/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/webcomponents", - "version": "4.0.3", + "version": "4.0.4", "description": "Official tsParticles Web Component - Easily create highly customizable particle, confetti and fireworks 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, Solid.js, Inferno.", "keywords": [ "front-end", diff --git a/wrappers/wordpress/CHANGELOG.md b/wrappers/wordpress/CHANGELOG.md index 2acaa8c265d..f4b854bb528 100644 --- a/wrappers/wordpress/CHANGELOG.md +++ b/wrappers/wordpress/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/tsparticles/tsparticles/compare/v4.0.3...v4.0.4) (2026-05-19) + +**Note:** Version bump only for package @tsparticles/wordpress + ## [4.0.3](https://github.com/tsparticles/tsparticles/compare/v4.0.2...v4.0.3) (2026-05-18) **Note:** Version bump only for package @tsparticles/wordpress diff --git a/wrappers/wordpress/package.json b/wrappers/wordpress/package.json index ae0a811ed5b..010190f8bcf 100644 --- a/wrappers/wordpress/package.json +++ b/wrappers/wordpress/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/wordpress", - "version": "4.0.3", + "version": "4.0.4", "description": "Official tsParticles WordPress Plugin - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, React, Riot.js, Solid.js, Inferno.", "repository": { "type": "git", diff --git a/wrappers/wordpress/readme.txt b/wrappers/wordpress/readme.txt index 34d41ec054c..e66e4034c91 100644 --- a/wrappers/wordpress/readme.txt +++ b/wrappers/wordpress/readme.txt @@ -4,7 +4,7 @@ Donate link: https://github.com/sponsors/matteobruni Tags: block, particles, confetti, fireworks, animations, javascript, tsparticles, particles js, background, particle background, animated background, particlesjs Requires at least: 5.9 Tested up to: 6.1 -Stable tag: 4.0.3 +Stable tag: 4.0.4 Requires PHP: 7.0 License: GPL-2.0-or-later License URI: https://www.gnu.org/licenses/gpl-2.0.html diff --git a/wrappers/wordpress/src/block.json b/wrappers/wordpress/src/block.json index e9dc61cc883..095b717a58b 100644 --- a/wrappers/wordpress/src/block.json +++ b/wrappers/wordpress/src/block.json @@ -2,7 +2,7 @@ "$schema": "https://schemas.wp.org/trunk/block.json", "apiVersion": 2, "name": "tsparticles/tsparticles-wp-block", - "version": "4.0.3", + "version": "4.0.4", "title": "tsParticles WP Block", "category": "widgets", "icon": "rest-api", diff --git a/wrappers/wordpress/wordpress-particles.php b/wrappers/wordpress/wordpress-particles.php index f93c02ca18b..69dca54743e 100644 --- a/wrappers/wordpress/wordpress-particles.php +++ b/wrappers/wordpress/wordpress-particles.php @@ -5,7 +5,7 @@ * Description: Official tsParticles WordPress Plugin - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. * Requires at least: 5.9 * Requires PHP: 7.0 - * Version: 4.0.3 + * Version: 4.0.4 * Author: matteobruni * License: GPL-2.0-or-later * License URI: https://www.gnu.org/licenses/gpl-2.0.html