diff --git a/.github/workflows/deploy-confetti.yml b/.github/workflows/deploy-confetti.yml deleted file mode 100644 index 29604378dbe..00000000000 --- a/.github/workflows/deploy-confetti.yml +++ /dev/null @@ -1,84 +0,0 @@ -name: Deploy Confetti - -on: - schedule: - - cron: '0 0 * * *' - push: - branches: - - main - paths: - - 'websites/confetti/**' - workflow_dispatch: - -concurrency: - group: deploy-confetti-${{ github.ref }} - cancel-in-progress: true - -permissions: - contents: read - -jobs: - build-and-deploy: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v6 - with: - fetch-depth: 0 - - - name: Check for confetti changes - id: changes - run: | - if [ "${{ github.event_name }}" = "push" ]; then - if git diff --name-only "${{ github.event.before }}" "${{ github.sha }}" | grep -q "^websites/confetti/"; then - echo "changed=true" >> "$GITHUB_OUTPUT" - else - echo "changed=false" >> "$GITHUB_OUTPUT" - fi - else - echo "changed=true" >> "$GITHUB_OUTPUT" - fi - - - uses: pnpm/action-setup@v6 - if: steps.changes.outputs.changed == 'true' - - - uses: actions/setup-node@v6 - if: steps.changes.outputs.changed == 'true' - with: - node-version: '24' - cache: 'pnpm' - cache-dependency-path: websites/confetti/pnpm-lock.yaml - - - name: Install dependencies - if: steps.changes.outputs.changed == 'true' - working-directory: websites/confetti - run: pnpm install - - - name: Build - if: steps.changes.outputs.changed == 'true' - working-directory: websites/confetti - run: pnpm run build:ci - - - name: Generate GitHub App token - if: steps.changes.outputs.changed == 'true' - id: app-token - uses: actions/create-github-app-token@v1 - with: - app-id: ${{ secrets.PAGES_APP_ID }} - private-key: ${{ secrets.PAGES_APP_PRIVATE_KEY }} - owner: tsparticles - repositories: | - confetti - - - name: Deploy to tsparticles/confetti main - if: steps.changes.outputs.changed == 'true' - uses: peaceiris/actions-gh-pages@v4 - with: - token: ${{ steps.app-token.outputs.token }} - external_repository: tsparticles/confetti - publish_branch: main - publish_dir: websites/confetti/public - cname: confetti.js.org - user_name: 'github-actions-bot' - user_email: 'support+actions@github.com' - commit_message: 'build: website updated' - force_orphan: true diff --git a/.github/workflows/deploy-website.yml b/.github/workflows/deploy-website.yml deleted file mode 100644 index 351fc931971..00000000000 --- a/.github/workflows/deploy-website.yml +++ /dev/null @@ -1,89 +0,0 @@ -name: Deploy Website - -on: - schedule: - - cron: '0 0 * * *' - push: - branches: - - main - paths: - - 'websites/website/**' - workflow_dispatch: - -concurrency: - group: deploy-website-${{ github.ref }} - cancel-in-progress: true - -permissions: - contents: read - -jobs: - build-and-deploy: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v6 - with: - fetch-depth: 0 - - - name: Check for website changes - id: changes - run: | - if [ "${{ github.event_name }}" = "push" ]; then - if git diff --name-only "${{ github.event.before }}" "${{ github.sha }}" | grep -q "^websites/website/"; then - echo "changed=true" >> "$GITHUB_OUTPUT" - else - echo "changed=false" >> "$GITHUB_OUTPUT" - fi - else - echo "changed=true" >> "$GITHUB_OUTPUT" - fi - - - uses: pnpm/action-setup@v6 - if: steps.changes.outputs.changed == 'true' - - - uses: actions/setup-node@v6 - if: steps.changes.outputs.changed == 'true' - with: - node-version: '24' - cache: 'pnpm' - cache-dependency-path: websites/website/pnpm-lock.yaml - - - name: Install dependencies - if: steps.changes.outputs.changed == 'true' - working-directory: websites/website - run: pnpm install --frozen-lockfile - - - name: Lint - if: steps.changes.outputs.changed == 'true' - working-directory: websites/website - run: pnpm run lint - - - name: Build - if: steps.changes.outputs.changed == 'true' - working-directory: websites/website - run: pnpm run docs:build - - - name: Generate GitHub App token - if: steps.changes.outputs.changed == 'true' - id: app-token - uses: actions/create-github-app-token@v1 - with: - app-id: ${{ secrets.PAGES_APP_ID }} - private-key: ${{ secrets.PAGES_APP_PRIVATE_KEY }} - owner: tsparticles - repositories: | - website - - - name: Deploy to tsparticles/website main - if: steps.changes.outputs.changed == 'true' - uses: peaceiris/actions-gh-pages@v4 - with: - token: ${{ steps.app-token.outputs.token }} - external_repository: tsparticles/website - publish_branch: main - publish_dir: websites/website/docs/.vitepress/dist - cname: particles.js.org - user_name: 'github-actions-bot' - user_email: 'support+actions@github.com' - commit_message: 'build: website updated' - force_orphan: true diff --git a/.github/workflows/deploy-websites.yml b/.github/workflows/deploy-websites.yml new file mode 100644 index 00000000000..a1c8fadab84 --- /dev/null +++ b/.github/workflows/deploy-websites.yml @@ -0,0 +1,98 @@ +name: Deploy Websites + +on: + schedule: + - cron: '0 0 * * *' + push: + branches: + - main + paths: + - 'websites/confetti/**' + - 'websites/website/**' + - '.github/workflows/deploy-websites.yml' + workflow_dispatch: + +concurrency: + group: deploy-websites-${{ github.ref }} + cancel-in-progress: true + +permissions: + contents: read + +env: + NX_CLOUD_ACCESS_TOKEN: "${{ secrets.NX_CLOUD_ACCESS_TOKEN }}" + +jobs: + build-and-deploy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v6 + with: + fetch-depth: 0 + + - uses: pnpm/action-setup@v6 + with: + cache: true + + - uses: actions/setup-node@v6 + with: + node-version: '24' + + - name: Initialize Nx Cloud or fall back to local + run: | + if [ -z "$NX_CLOUD_ACCESS_TOKEN" ]; then + echo "NX Cloud token missing — using local nx execution" + echo "NX_NO_CLOUD=true" >> "$GITHUB_ENV" + fi + + - name: Install dependencies + run: pnpm install + + - name: Build workspace packages + run: pnpm exec nx run-many -t build --projects="@tsparticles/confetti-website,@tsparticles/website" + + - name: Generate GitHub App token (confetti) + id: token-confetti + uses: actions/create-github-app-token@v1 + with: + app-id: ${{ secrets.PAGES_APP_ID }} + private-key: ${{ secrets.PAGES_APP_PRIVATE_KEY }} + owner: tsparticles + repositories: | + confetti + + - name: Generate GitHub App token (website) + id: token-website + uses: actions/create-github-app-token@v1 + with: + app-id: ${{ secrets.PAGES_APP_ID }} + private-key: ${{ secrets.PAGES_APP_PRIVATE_KEY }} + owner: tsparticles + repositories: | + website + + - name: Deploy to tsparticles/confetti main + uses: peaceiris/actions-gh-pages@v4 + with: + personal_token: ${{ steps.token-confetti.outputs.token }} + external_repository: tsparticles/confetti + publish_branch: main + publish_dir: websites/confetti/dist + cname: confetti.js.org + user_name: 'github-actions-bot' + user_email: 'support+actions@github.com' + commit_message: 'build: website updated' + force_orphan: true + + - name: Deploy to tsparticles/website main + uses: peaceiris/actions-gh-pages@v4 + with: + personal_token: ${{ steps.token-website.outputs.token }} + external_repository: tsparticles/website + publish_branch: main + publish_dir: websites/website/docs/.vitepress/dist + cname: particles.js.org + user_name: 'github-actions-bot' + user_email: 'support+actions@github.com' + commit_message: 'build: website updated' + force_orphan: true diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 94aba793637..64fa910902a 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -7,6 +7,7 @@ on: - main env: + NX_NO_CLOUD: true GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} jobs: @@ -20,11 +21,12 @@ jobs: with: fetch-depth: 0 - uses: pnpm/action-setup@v6 + with: + cache: true - uses: actions/setup-node@v6 with: node-version: '24' - cache: 'pnpm' - run: pnpm install --no-frozen-lockfile - run: pnpm run build:ci:json diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 466f6cadd21..d4210c785cd 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -29,11 +29,12 @@ jobs: uses: nrwl/nx-set-shas@v5 - uses: pnpm/action-setup@v6 + with: + cache: true - uses: actions/setup-node@v6 with: node-version: "24" - cache: 'pnpm' - name: Install dependencies run: pnpm install diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index a2c851995ab..e0b059627d1 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -31,13 +31,14 @@ jobs: fetch-depth: 0 - uses: pnpm/action-setup@v6 + with: + cache: true - uses: actions/setup-node@v6 name: Setup Node.js with: node-version: "24" registry-url: https://registry.npmjs.org - cache: 'pnpm' - name: Install Dependencies run: pnpm install diff --git a/CHANGELOG.md b/CHANGELOG.md index e8325b48d88..3b1714cc440 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/workspace + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/workspace diff --git a/bundles/all/CHANGELOG.md b/bundles/all/CHANGELOG.md index 90d75a4d2c1..42f966a3e78 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/all + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/all diff --git a/bundles/all/package.dist.json b/bundles/all/package.dist.json index 1ac0b68ee8a..4ac49c57f2a 100644 --- a/bundles/all/package.dist.json +++ b/bundles/all/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/all", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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,84 +105,84 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/effect-bubble": "4.0.0-beta.15", - "@tsparticles/effect-filter": "4.0.0-beta.15", - "@tsparticles/effect-particles": "4.0.0-beta.15", - "@tsparticles/effect-shadow": "4.0.0-beta.15", - "@tsparticles/effect-trail": "4.0.0-beta.15", - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/interaction-external-cannon": "4.0.0-beta.15", - "@tsparticles/interaction-external-particle": "4.0.0-beta.15", - "@tsparticles/interaction-external-pop": "4.0.0-beta.15", - "@tsparticles/interaction-light": "4.0.0-beta.15", - "@tsparticles/interaction-particles-repulse": "4.0.0-beta.15", - "@tsparticles/path-branches": "4.0.0-beta.15", - "@tsparticles/path-brownian": "4.0.0-beta.15", - "@tsparticles/path-curl-noise": "4.0.0-beta.15", - "@tsparticles/path-curves": "4.0.0-beta.15", - "@tsparticles/path-fractal-noise": "4.0.0-beta.15", - "@tsparticles/path-grid": "4.0.0-beta.15", - "@tsparticles/path-levy": "4.0.0-beta.15", - "@tsparticles/path-perlin-noise": "4.0.0-beta.15", - "@tsparticles/path-polygon": "4.0.0-beta.15", - "@tsparticles/path-random": "4.0.0-beta.15", - "@tsparticles/path-simplex-noise": "4.0.0-beta.15", - "@tsparticles/path-spiral": "4.0.0-beta.15", - "@tsparticles/path-svg": "4.0.0-beta.15", - "@tsparticles/path-zig-zag": "4.0.0-beta.15", - "@tsparticles/plugin-background-mask": "4.0.0-beta.15", - "@tsparticles/plugin-blend": "4.0.0-beta.15", - "@tsparticles/plugin-canvas-mask": "4.0.0-beta.15", - "@tsparticles/plugin-easing-back": "4.0.0-beta.15", - "@tsparticles/plugin-easing-bounce": "4.0.0-beta.15", - "@tsparticles/plugin-easing-circ": "4.0.0-beta.15", - "@tsparticles/plugin-easing-cubic": "4.0.0-beta.15", - "@tsparticles/plugin-easing-elastic": "4.0.0-beta.15", - "@tsparticles/plugin-easing-expo": "4.0.0-beta.15", - "@tsparticles/plugin-easing-gaussian": "4.0.0-beta.15", - "@tsparticles/plugin-easing-linear": "4.0.0-beta.15", - "@tsparticles/plugin-easing-quart": "4.0.0-beta.15", - "@tsparticles/plugin-easing-quint": "4.0.0-beta.15", - "@tsparticles/plugin-easing-sigmoid": "4.0.0-beta.15", - "@tsparticles/plugin-easing-sine": "4.0.0-beta.15", - "@tsparticles/plugin-easing-smoothstep": "4.0.0-beta.15", - "@tsparticles/plugin-emitters-shape-canvas": "4.0.0-beta.15", - "@tsparticles/plugin-emitters-shape-path": "4.0.0-beta.15", - "@tsparticles/plugin-emitters-shape-polygon": "4.0.0-beta.15", - "@tsparticles/plugin-export-image": "4.0.0-beta.15", - "@tsparticles/plugin-export-json": "4.0.0-beta.15", - "@tsparticles/plugin-export-video": "4.0.0-beta.15", - "@tsparticles/plugin-hsv-color": "4.0.0-beta.15", - "@tsparticles/plugin-hwb-color": "4.0.0-beta.15", - "@tsparticles/plugin-infection": "4.0.0-beta.15", - "@tsparticles/plugin-lab-color": "4.0.0-beta.15", - "@tsparticles/plugin-lch-color": "4.0.0-beta.15", - "@tsparticles/plugin-manual-particles": "4.0.0-beta.15", - "@tsparticles/plugin-motion": "4.0.0-beta.15", - "@tsparticles/plugin-named-color": "4.0.0-beta.15", - "@tsparticles/plugin-oklab-color": "4.0.0-beta.15", - "@tsparticles/plugin-oklch-color": "4.0.0-beta.15", - "@tsparticles/plugin-poisson-disc": "4.0.0-beta.15", - "@tsparticles/plugin-polygon-mask": "4.0.0-beta.15", - "@tsparticles/plugin-responsive": "4.0.0-beta.15", - "@tsparticles/plugin-sounds": "4.0.0-beta.15", - "@tsparticles/plugin-themes": "4.0.0-beta.15", - "@tsparticles/plugin-trail": "4.0.0-beta.15", - "@tsparticles/plugin-zoom": "4.0.0-beta.15", - "@tsparticles/shape-arrow": "4.0.0-beta.15", - "@tsparticles/shape-cards": "4.0.0-beta.15", - "@tsparticles/shape-cog": "4.0.0-beta.15", - "@tsparticles/shape-heart": "4.0.0-beta.15", - "@tsparticles/shape-infinity": "4.0.0-beta.15", - "@tsparticles/shape-matrix": "4.0.0-beta.15", - "@tsparticles/shape-path": "4.0.0-beta.15", - "@tsparticles/shape-rounded-polygon": "4.0.0-beta.15", - "@tsparticles/shape-rounded-rect": "4.0.0-beta.15", - "@tsparticles/shape-spiral": "4.0.0-beta.15", - "@tsparticles/shape-squircle": "4.0.0-beta.15", - "@tsparticles/updater-gradient": "4.0.0-beta.15", - "@tsparticles/updater-orbit": "4.0.0-beta.15", - "tsparticles": "4.0.0-beta.15" + "@tsparticles/effect-bubble": "4.0.0-beta.16", + "@tsparticles/effect-filter": "4.0.0-beta.16", + "@tsparticles/effect-particles": "4.0.0-beta.16", + "@tsparticles/effect-shadow": "4.0.0-beta.16", + "@tsparticles/effect-trail": "4.0.0-beta.16", + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/interaction-external-cannon": "4.0.0-beta.16", + "@tsparticles/interaction-external-particle": "4.0.0-beta.16", + "@tsparticles/interaction-external-pop": "4.0.0-beta.16", + "@tsparticles/interaction-light": "4.0.0-beta.16", + "@tsparticles/interaction-particles-repulse": "4.0.0-beta.16", + "@tsparticles/path-branches": "4.0.0-beta.16", + "@tsparticles/path-brownian": "4.0.0-beta.16", + "@tsparticles/path-curl-noise": "4.0.0-beta.16", + "@tsparticles/path-curves": "4.0.0-beta.16", + "@tsparticles/path-fractal-noise": "4.0.0-beta.16", + "@tsparticles/path-grid": "4.0.0-beta.16", + "@tsparticles/path-levy": "4.0.0-beta.16", + "@tsparticles/path-perlin-noise": "4.0.0-beta.16", + "@tsparticles/path-polygon": "4.0.0-beta.16", + "@tsparticles/path-random": "4.0.0-beta.16", + "@tsparticles/path-simplex-noise": "4.0.0-beta.16", + "@tsparticles/path-spiral": "4.0.0-beta.16", + "@tsparticles/path-svg": "4.0.0-beta.16", + "@tsparticles/path-zig-zag": "4.0.0-beta.16", + "@tsparticles/plugin-background-mask": "4.0.0-beta.16", + "@tsparticles/plugin-blend": "4.0.0-beta.16", + "@tsparticles/plugin-canvas-mask": "4.0.0-beta.16", + "@tsparticles/plugin-easing-back": "4.0.0-beta.16", + "@tsparticles/plugin-easing-bounce": "4.0.0-beta.16", + "@tsparticles/plugin-easing-circ": "4.0.0-beta.16", + "@tsparticles/plugin-easing-cubic": "4.0.0-beta.16", + "@tsparticles/plugin-easing-elastic": "4.0.0-beta.16", + "@tsparticles/plugin-easing-expo": "4.0.0-beta.16", + "@tsparticles/plugin-easing-gaussian": "4.0.0-beta.16", + "@tsparticles/plugin-easing-linear": "4.0.0-beta.16", + "@tsparticles/plugin-easing-quart": "4.0.0-beta.16", + "@tsparticles/plugin-easing-quint": "4.0.0-beta.16", + "@tsparticles/plugin-easing-sigmoid": "4.0.0-beta.16", + "@tsparticles/plugin-easing-sine": "4.0.0-beta.16", + "@tsparticles/plugin-easing-smoothstep": "4.0.0-beta.16", + "@tsparticles/plugin-emitters-shape-canvas": "4.0.0-beta.16", + "@tsparticles/plugin-emitters-shape-path": "4.0.0-beta.16", + "@tsparticles/plugin-emitters-shape-polygon": "4.0.0-beta.16", + "@tsparticles/plugin-export-image": "4.0.0-beta.16", + "@tsparticles/plugin-export-json": "4.0.0-beta.16", + "@tsparticles/plugin-export-video": "4.0.0-beta.16", + "@tsparticles/plugin-hsv-color": "4.0.0-beta.16", + "@tsparticles/plugin-hwb-color": "4.0.0-beta.16", + "@tsparticles/plugin-infection": "4.0.0-beta.16", + "@tsparticles/plugin-lab-color": "4.0.0-beta.16", + "@tsparticles/plugin-lch-color": "4.0.0-beta.16", + "@tsparticles/plugin-manual-particles": "4.0.0-beta.16", + "@tsparticles/plugin-motion": "4.0.0-beta.16", + "@tsparticles/plugin-named-color": "4.0.0-beta.16", + "@tsparticles/plugin-oklab-color": "4.0.0-beta.16", + "@tsparticles/plugin-oklch-color": "4.0.0-beta.16", + "@tsparticles/plugin-poisson-disc": "4.0.0-beta.16", + "@tsparticles/plugin-polygon-mask": "4.0.0-beta.16", + "@tsparticles/plugin-responsive": "4.0.0-beta.16", + "@tsparticles/plugin-sounds": "4.0.0-beta.16", + "@tsparticles/plugin-themes": "4.0.0-beta.16", + "@tsparticles/plugin-trail": "4.0.0-beta.16", + "@tsparticles/plugin-zoom": "4.0.0-beta.16", + "@tsparticles/shape-arrow": "4.0.0-beta.16", + "@tsparticles/shape-cards": "4.0.0-beta.16", + "@tsparticles/shape-cog": "4.0.0-beta.16", + "@tsparticles/shape-heart": "4.0.0-beta.16", + "@tsparticles/shape-infinity": "4.0.0-beta.16", + "@tsparticles/shape-matrix": "4.0.0-beta.16", + "@tsparticles/shape-path": "4.0.0-beta.16", + "@tsparticles/shape-rounded-polygon": "4.0.0-beta.16", + "@tsparticles/shape-rounded-rect": "4.0.0-beta.16", + "@tsparticles/shape-spiral": "4.0.0-beta.16", + "@tsparticles/shape-squircle": "4.0.0-beta.16", + "@tsparticles/updater-gradient": "4.0.0-beta.16", + "@tsparticles/updater-orbit": "4.0.0-beta.16", + "tsparticles": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/bundles/all/package.json b/bundles/all/package.json index eac3d3d9835..a53ceb7cfd4 100644 --- a/bundles/all/package.json +++ b/bundles/all/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/all", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 a595c9a0bb2..f9a181d5d2e 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/basic + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/basic diff --git a/bundles/basic/package.dist.json b/bundles/basic/package.dist.json index b1b13e17311..512a3475e03 100644 --- a/bundles/basic/package.dist.json +++ b/bundles/basic/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/basic", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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,16 +105,16 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/plugin-hex-color": "4.0.0-beta.15", - "@tsparticles/plugin-hsl-color": "4.0.0-beta.15", - "@tsparticles/plugin-move": "4.0.0-beta.15", - "@tsparticles/plugin-rgb-color": "4.0.0-beta.15", - "@tsparticles/shape-circle": "4.0.0-beta.15", - "@tsparticles/updater-opacity": "4.0.0-beta.15", - "@tsparticles/updater-out-modes": "4.0.0-beta.15", - "@tsparticles/updater-paint": "4.0.0-beta.15", - "@tsparticles/updater-size": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-hex-color": "4.0.0-beta.16", + "@tsparticles/plugin-hsl-color": "4.0.0-beta.16", + "@tsparticles/plugin-move": "4.0.0-beta.16", + "@tsparticles/plugin-rgb-color": "4.0.0-beta.16", + "@tsparticles/shape-circle": "4.0.0-beta.16", + "@tsparticles/updater-opacity": "4.0.0-beta.16", + "@tsparticles/updater-out-modes": "4.0.0-beta.16", + "@tsparticles/updater-paint": "4.0.0-beta.16", + "@tsparticles/updater-size": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/bundles/basic/package.json b/bundles/basic/package.json index fc5ba59bfec..777d37e4a25 100644 --- a/bundles/basic/package.json +++ b/bundles/basic/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/basic", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 ef25f10391f..f8b3362309b 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/confetti + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/confetti diff --git a/bundles/confetti/package.dist.json b/bundles/confetti/package.dist.json index 52cd68527c6..d49c846463f 100644 --- a/bundles/confetti/package.dist.json +++ b/bundles/confetti/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/confetti", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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.0-beta.15", - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/plugin-emitters": "4.0.0-beta.15", - "@tsparticles/plugin-motion": "4.0.0-beta.15", - "@tsparticles/shape-cards": "4.0.0-beta.15", - "@tsparticles/shape-emoji": "4.0.0-beta.15", - "@tsparticles/shape-heart": "4.0.0-beta.15", - "@tsparticles/shape-image": "4.0.0-beta.15", - "@tsparticles/shape-polygon": "4.0.0-beta.15", - "@tsparticles/shape-square": "4.0.0-beta.15", - "@tsparticles/shape-star": "4.0.0-beta.15", - "@tsparticles/updater-life": "4.0.0-beta.15", - "@tsparticles/updater-roll": "4.0.0-beta.15", - "@tsparticles/updater-rotate": "4.0.0-beta.15", - "@tsparticles/updater-tilt": "4.0.0-beta.15", - "@tsparticles/updater-wobble": "4.0.0-beta.15" + "@tsparticles/basic": "4.0.0-beta.16", + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-emitters": "4.0.0-beta.16", + "@tsparticles/plugin-motion": "4.0.0-beta.16", + "@tsparticles/shape-cards": "4.0.0-beta.16", + "@tsparticles/shape-emoji": "4.0.0-beta.16", + "@tsparticles/shape-heart": "4.0.0-beta.16", + "@tsparticles/shape-image": "4.0.0-beta.16", + "@tsparticles/shape-polygon": "4.0.0-beta.16", + "@tsparticles/shape-square": "4.0.0-beta.16", + "@tsparticles/shape-star": "4.0.0-beta.16", + "@tsparticles/updater-life": "4.0.0-beta.16", + "@tsparticles/updater-roll": "4.0.0-beta.16", + "@tsparticles/updater-rotate": "4.0.0-beta.16", + "@tsparticles/updater-tilt": "4.0.0-beta.16", + "@tsparticles/updater-wobble": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/bundles/confetti/package.json b/bundles/confetti/package.json index b94f4144eb0..e628b1686b1 100644 --- a/bundles/confetti/package.json +++ b/bundles/confetti/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/confetti", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 f4ce5ddb4f1..7ff711820d7 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/fireworks + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/fireworks diff --git a/bundles/fireworks/package.dist.json b/bundles/fireworks/package.dist.json index 2c78a817aef..81a77a35f1f 100644 --- a/bundles/fireworks/package.dist.json +++ b/bundles/fireworks/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/fireworks", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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.0-beta.15", - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/plugin-blend": "4.0.0-beta.15", - "@tsparticles/plugin-emitters": "4.0.0-beta.15", - "@tsparticles/plugin-emitters-shape-square": "4.0.0-beta.15", - "@tsparticles/plugin-sounds": "4.0.0-beta.15", - "@tsparticles/shape-line": "4.0.0-beta.15", - "@tsparticles/updater-destroy": "4.0.0-beta.15", - "@tsparticles/updater-life": "4.0.0-beta.15", - "@tsparticles/updater-paint": "4.0.0-beta.15", - "@tsparticles/updater-rotate": "4.0.0-beta.15" + "@tsparticles/basic": "4.0.0-beta.16", + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-blend": "4.0.0-beta.16", + "@tsparticles/plugin-emitters": "4.0.0-beta.16", + "@tsparticles/plugin-emitters-shape-square": "4.0.0-beta.16", + "@tsparticles/plugin-sounds": "4.0.0-beta.16", + "@tsparticles/shape-line": "4.0.0-beta.16", + "@tsparticles/updater-destroy": "4.0.0-beta.16", + "@tsparticles/updater-life": "4.0.0-beta.16", + "@tsparticles/updater-paint": "4.0.0-beta.16", + "@tsparticles/updater-rotate": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/bundles/fireworks/package.json b/bundles/fireworks/package.json index 9e41fda5627..98685ea8154 100644 --- a/bundles/fireworks/package.json +++ b/bundles/fireworks/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/fireworks", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 446dc036f7e..5173f08475e 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package tsparticles + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package tsparticles diff --git a/bundles/full/package.dist.json b/bundles/full/package.dist.json index 0c1da2a3b34..17e49ede51b 100644 --- a/bundles/full/package.dist.json +++ b/bundles/full/package.dist.json @@ -1,6 +1,6 @@ { "name": "tsparticles", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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.0-beta.15", - "@tsparticles/interaction-external-drag": "4.0.0-beta.15", - "@tsparticles/interaction-external-trail": "4.0.0-beta.15", - "@tsparticles/plugin-absorbers": "4.0.0-beta.15", - "@tsparticles/plugin-emitters": "4.0.0-beta.15", - "@tsparticles/plugin-emitters-shape-circle": "4.0.0-beta.15", - "@tsparticles/plugin-emitters-shape-square": "4.0.0-beta.15", - "@tsparticles/shape-text": "4.0.0-beta.15", - "@tsparticles/slim": "4.0.0-beta.15", - "@tsparticles/updater-destroy": "4.0.0-beta.15", - "@tsparticles/updater-roll": "4.0.0-beta.15", - "@tsparticles/updater-tilt": "4.0.0-beta.15", - "@tsparticles/updater-twinkle": "4.0.0-beta.15", - "@tsparticles/updater-wobble": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/interaction-external-drag": "4.0.0-beta.16", + "@tsparticles/interaction-external-trail": "4.0.0-beta.16", + "@tsparticles/plugin-absorbers": "4.0.0-beta.16", + "@tsparticles/plugin-emitters": "4.0.0-beta.16", + "@tsparticles/plugin-emitters-shape-circle": "4.0.0-beta.16", + "@tsparticles/plugin-emitters-shape-square": "4.0.0-beta.16", + "@tsparticles/shape-text": "4.0.0-beta.16", + "@tsparticles/slim": "4.0.0-beta.16", + "@tsparticles/updater-destroy": "4.0.0-beta.16", + "@tsparticles/updater-roll": "4.0.0-beta.16", + "@tsparticles/updater-tilt": "4.0.0-beta.16", + "@tsparticles/updater-twinkle": "4.0.0-beta.16", + "@tsparticles/updater-wobble": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/bundles/full/package.json b/bundles/full/package.json index 3e66cbce6e7..da692d0960d 100644 --- a/bundles/full/package.json +++ b/bundles/full/package.json @@ -1,6 +1,6 @@ { "name": "tsparticles", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 8c8df66bb1c..d75726d195f 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/particles + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/particles diff --git a/bundles/particles/package.dist.json b/bundles/particles/package.dist.json index 84c08a8b736..ccf680bfb4f 100644 --- a/bundles/particles/package.dist.json +++ b/bundles/particles/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/particles", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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.0-beta.15", - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/interaction-particles-collisions": "4.0.0-beta.15", - "@tsparticles/interaction-particles-links": "4.0.0-beta.15", - "@tsparticles/plugin-interactivity": "4.0.0-beta.15" + "@tsparticles/basic": "4.0.0-beta.16", + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/interaction-particles-collisions": "4.0.0-beta.16", + "@tsparticles/interaction-particles-links": "4.0.0-beta.16", + "@tsparticles/plugin-interactivity": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/bundles/particles/package.json b/bundles/particles/package.json index 35760e382e1..e723f7c72f0 100644 --- a/bundles/particles/package.json +++ b/bundles/particles/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/particles", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 8ff39e74f59..6f70ef3a688 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/pjs + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/pjs diff --git a/bundles/pjs/package.dist.json b/bundles/pjs/package.dist.json index a0290904dc0..c2d7b37e293 100644 --- a/bundles/pjs/package.dist.json +++ b/bundles/pjs/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/pjs", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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.0-beta.15", - "@tsparticles/plugin-responsive": "4.0.0-beta.15", - "tsparticles": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-responsive": "4.0.0-beta.16", + "tsparticles": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/bundles/pjs/package.json b/bundles/pjs/package.json index b3ed2f3ebb5..d68bc4647e6 100644 --- a/bundles/pjs/package.json +++ b/bundles/pjs/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/pjs", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 81265d82e51..365d4efa5d6 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/slim + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/slim diff --git a/bundles/slim/package.dist.json b/bundles/slim/package.dist.json index 232c0640d3c..dd837ef6069 100644 --- a/bundles/slim/package.dist.json +++ b/bundles/slim/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/slim", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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.0-beta.15", - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/interaction-external-attract": "4.0.0-beta.15", - "@tsparticles/interaction-external-bounce": "4.0.0-beta.15", - "@tsparticles/interaction-external-bubble": "4.0.0-beta.15", - "@tsparticles/interaction-external-connect": "4.0.0-beta.15", - "@tsparticles/interaction-external-destroy": "4.0.0-beta.15", - "@tsparticles/interaction-external-grab": "4.0.0-beta.15", - "@tsparticles/interaction-external-parallax": "4.0.0-beta.15", - "@tsparticles/interaction-external-pause": "4.0.0-beta.15", - "@tsparticles/interaction-external-push": "4.0.0-beta.15", - "@tsparticles/interaction-external-remove": "4.0.0-beta.15", - "@tsparticles/interaction-external-repulse": "4.0.0-beta.15", - "@tsparticles/interaction-external-slow": "4.0.0-beta.15", - "@tsparticles/interaction-particles-attract": "4.0.0-beta.15", - "@tsparticles/interaction-particles-collisions": "4.0.0-beta.15", - "@tsparticles/interaction-particles-links": "4.0.0-beta.15", - "@tsparticles/plugin-easing-quad": "4.0.0-beta.15", - "@tsparticles/plugin-interactivity": "4.0.0-beta.15", - "@tsparticles/shape-emoji": "4.0.0-beta.15", - "@tsparticles/shape-image": "4.0.0-beta.15", - "@tsparticles/shape-line": "4.0.0-beta.15", - "@tsparticles/shape-polygon": "4.0.0-beta.15", - "@tsparticles/shape-square": "4.0.0-beta.15", - "@tsparticles/shape-star": "4.0.0-beta.15", - "@tsparticles/updater-life": "4.0.0-beta.15", - "@tsparticles/updater-paint": "4.0.0-beta.15", - "@tsparticles/updater-rotate": "4.0.0-beta.15" + "@tsparticles/basic": "4.0.0-beta.16", + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/interaction-external-attract": "4.0.0-beta.16", + "@tsparticles/interaction-external-bounce": "4.0.0-beta.16", + "@tsparticles/interaction-external-bubble": "4.0.0-beta.16", + "@tsparticles/interaction-external-connect": "4.0.0-beta.16", + "@tsparticles/interaction-external-destroy": "4.0.0-beta.16", + "@tsparticles/interaction-external-grab": "4.0.0-beta.16", + "@tsparticles/interaction-external-parallax": "4.0.0-beta.16", + "@tsparticles/interaction-external-pause": "4.0.0-beta.16", + "@tsparticles/interaction-external-push": "4.0.0-beta.16", + "@tsparticles/interaction-external-remove": "4.0.0-beta.16", + "@tsparticles/interaction-external-repulse": "4.0.0-beta.16", + "@tsparticles/interaction-external-slow": "4.0.0-beta.16", + "@tsparticles/interaction-particles-attract": "4.0.0-beta.16", + "@tsparticles/interaction-particles-collisions": "4.0.0-beta.16", + "@tsparticles/interaction-particles-links": "4.0.0-beta.16", + "@tsparticles/plugin-easing-quad": "4.0.0-beta.16", + "@tsparticles/plugin-interactivity": "4.0.0-beta.16", + "@tsparticles/shape-emoji": "4.0.0-beta.16", + "@tsparticles/shape-image": "4.0.0-beta.16", + "@tsparticles/shape-line": "4.0.0-beta.16", + "@tsparticles/shape-polygon": "4.0.0-beta.16", + "@tsparticles/shape-square": "4.0.0-beta.16", + "@tsparticles/shape-star": "4.0.0-beta.16", + "@tsparticles/updater-life": "4.0.0-beta.16", + "@tsparticles/updater-paint": "4.0.0-beta.16", + "@tsparticles/updater-rotate": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/bundles/slim/package.json b/bundles/slim/package.json index 2040a23e0ef..46e74df2c2f 100644 --- a/bundles/slim/package.json +++ b/bundles/slim/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/slim", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 321a99808d4..99f85278e6b 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/cli-command-build-bundle-rollup + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 7a8b491ceff..65cad5ceebc 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.0-beta.15", + "version": "4.0.0-beta.16", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/build-bundle-webpack/CHANGELOG.md b/cli/commands/build-bundle-webpack/CHANGELOG.md index e97b36e83cf..4cc80e30cd7 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/cli-command-build-bundle-webpack + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 b1d1a93a31b..172480050d3 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.0-beta.15", + "version": "4.0.0-beta.16", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/build-circular-deps/CHANGELOG.md b/cli/commands/build-circular-deps/CHANGELOG.md index e5b6e9d2dfc..4182468e9a4 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/cli-command-build-circular-deps + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 11b9312fd05..bd468b86d67 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.0-beta.15", + "version": "4.0.0-beta.16", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/build-clear/CHANGELOG.md b/cli/commands/build-clear/CHANGELOG.md index 31f82da8f61..0624ab8d8e9 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/cli-command-build-clear + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 9d1bbef9859..21743c0e06e 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.0-beta.15", + "version": "4.0.0-beta.16", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/build-distfiles/CHANGELOG.md b/cli/commands/build-distfiles/CHANGELOG.md index 2e214f6bed5..f511f4ad204 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/cli-command-build-distfiles + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 c6133bcedfa..d3107b408a4 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.0-beta.15", + "version": "4.0.0-beta.16", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/build-diststats/CHANGELOG.md b/cli/commands/build-diststats/CHANGELOG.md index f2e0084d83a..20d67609473 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/cli-command-build-diststats + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 845c25f0cf5..b3d1c58aad5 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.0-beta.15", + "version": "4.0.0-beta.16", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/build-eslint/CHANGELOG.md b/cli/commands/build-eslint/CHANGELOG.md index 4f911b8b6d9..7a3c2a04ee1 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/cli-command-build-eslint + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 2bf330fc681..18c6d9cf938 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.0-beta.15", + "version": "4.0.0-beta.16", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/build-prettier/CHANGELOG.md b/cli/commands/build-prettier/CHANGELOG.md index 2f006ab46eb..abaacd4a694 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/cli-command-build-prettier + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 8774e555b07..03dd4d6106d 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.0-beta.15", + "version": "4.0.0-beta.16", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/build-tsc/CHANGELOG.md b/cli/commands/build-tsc/CHANGELOG.md index ec4c7a08f6a..ca5bca3f6e3 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/cli-command-build-tsc + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 2ff7ccfb07f..5f86e417f0c 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.0-beta.15", + "version": "4.0.0-beta.16", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/build/CHANGELOG.md b/cli/commands/build/CHANGELOG.md index 9d30be319e1..505a6b03f84 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/cli-command-build + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 66dd3b63ced..68d20fef52d 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.0-beta.15", + "version": "4.0.0-beta.16", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/create-bundle/CHANGELOG.md b/cli/commands/create-bundle/CHANGELOG.md index 00e8f4670ef..d2df052c026 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/cli-command-create-bundle + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 eb9833fafcc..c03778347c1 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.0-beta.15", + "version": "4.0.0-beta.16", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/create-effect/CHANGELOG.md b/cli/commands/create-effect/CHANGELOG.md index e8de6927c0a..e49cdccafb5 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/cli-command-create-effect + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 ceead9ee21f..59cc91f6872 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.0-beta.15", + "version": "4.0.0-beta.16", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/create-interaction/CHANGELOG.md b/cli/commands/create-interaction/CHANGELOG.md index c8db2fe4bc7..d6000bbef44 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/cli-command-create-interaction + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 c2fd84c2b81..5ca5f1e1f3a 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.0-beta.15", + "version": "4.0.0-beta.16", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/create-palette/CHANGELOG.md b/cli/commands/create-palette/CHANGELOG.md index 64d386ca8a0..922970d99c6 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/cli-command-create-palette + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 31239c6b488..1a8d6e5ece7 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.0-beta.15", + "version": "4.0.0-beta.16", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/create-path/CHANGELOG.md b/cli/commands/create-path/CHANGELOG.md index d61a5f4a459..79e025776b0 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/cli-command-create-path + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 01b9182825d..3065ef70733 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.0-beta.15", + "version": "4.0.0-beta.16", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/create-plugin/CHANGELOG.md b/cli/commands/create-plugin/CHANGELOG.md index 10dfa05454f..5dc79d272b6 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/cli-command-create-plugin + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 94bcc78f67b..02560f3a467 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.0-beta.15", + "version": "4.0.0-beta.16", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/create-preset/CHANGELOG.md b/cli/commands/create-preset/CHANGELOG.md index 4d3f4586a9f..227fe2743dd 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/cli-command-create-preset + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 3080b5c9f36..f278d0e2ebb 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.0-beta.15", + "version": "4.0.0-beta.16", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/create-shape/CHANGELOG.md b/cli/commands/create-shape/CHANGELOG.md index 40801d22798..cc09a59a36f 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/cli-command-create-shape + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 ca0ea99d24c..83ef1ae2b96 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.0-beta.15", + "version": "4.0.0-beta.16", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/create-updater/CHANGELOG.md b/cli/commands/create-updater/CHANGELOG.md index 7d389f436b3..85140547422 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/cli-command-create-updater + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 a1fef14303d..2e3cd12e63a 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.0-beta.15", + "version": "4.0.0-beta.16", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/create-utils/CHANGELOG.md b/cli/commands/create-utils/CHANGELOG.md index 00e1e585735..12f41bc36ad 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/cli-create-utils + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 cdea9be0fc2..0b2ec96f94b 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.0-beta.15", + "version": "4.0.0-beta.16", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/create/CHANGELOG.md b/cli/commands/create/CHANGELOG.md index 07af37a0cfe..43041905fcd 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/cli-command-create + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 beb8408db63..0fcf1dbf1f7 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.0-beta.15", + "version": "4.0.0-beta.16", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/packages/cli-build/CHANGELOG.md b/cli/packages/cli-build/CHANGELOG.md index f2deeab7f2d..251357f9b86 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/cli-build + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 c8ada027f6d..5597cc09cba 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.0-beta.15", + "version": "4.0.0-beta.16", "license": "MIT", "type": "module", "bin": { diff --git a/cli/packages/cli-create/CHANGELOG.md b/cli/packages/cli-create/CHANGELOG.md index daafd4c11a2..bcd89783fc0 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/cli-create + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 2394c23baf8..201e347bb44 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.0-beta.15", + "version": "4.0.0-beta.16", "license": "MIT", "type": "module", "bin": { diff --git a/cli/packages/nx-plugin/CHANGELOG.md b/cli/packages/nx-plugin/CHANGELOG.md index 0d374c4e06f..9510b0d7b56 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/cli-nx-plugin + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 09bce6e11da..86c42ef585c 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.0-beta.15", + "version": "4.0.0-beta.16", "license": "MIT", "type": "module", "repository": { diff --git a/cli/utils/browserslist-config/CHANGELOG.md b/cli/utils/browserslist-config/CHANGELOG.md index 5b858fcb743..9c08ffdbcb4 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/browserslist-config + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 b9127697f49..03cf0bf2da9 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.0-beta.15", + "version": "4.0.0-beta.16", "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 9199083249e..797317cccf0 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/depcruise-config + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 ff4349ef21b..445e0edd6af 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.0-beta.15", + "version": "4.0.0-beta.16", "private": false, "type": "module", "publishConfig": { diff --git a/cli/utils/eslint-config/CHANGELOG.md b/cli/utils/eslint-config/CHANGELOG.md index 08bb6d2e20c..1ba2e583245 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/eslint-config + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 5b44c15ee36..d6704c7a203 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.0-beta.15", + "version": "4.0.0-beta.16", "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 d8e405bca47..d3679477478 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/prettier-config + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 3b3756ae9f4..5bc9a6f3082 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.0-beta.15", + "version": "4.0.0-beta.16", "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 a6c222241a9..466df2ec4d8 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/rollup-plugin + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 3288231042b..5d22d20cbb2 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.0-beta.15", + "version": "4.0.0-beta.16", "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 6e79a028795..5c278ac9d24 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/tsconfig + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/tsconfig diff --git a/cli/utils/tsconfig/package.json b/cli/utils/tsconfig/package.json index ae34caec092..87c9ad67400 100644 --- a/cli/utils/tsconfig/package.json +++ b/cli/utils/tsconfig/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/tsconfig", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 58cc1aef0fe..b00e011e41f 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/webpack-plugin + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 ca0f58ecd70..cfe418c92c3 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.0-beta.15", + "version": "4.0.0-beta.16", "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 77d77c5e58a..d3ca31f6faa 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/angular-demo + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/angular-demo diff --git a/demo/angular/package.json b/demo/angular/package.json index f128d040906..1293edb406a 100644 --- a/demo/angular/package.json +++ b/demo/angular/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/angular-demo", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "repository": { "type": "git", "url": "git+https://github.com/tsparticles/tsparticles.git", diff --git a/demo/astro/CHANGELOG.md b/demo/astro/CHANGELOG.md index ca2e59d6afe..17b22161d6d 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/astro-demo + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/astro-demo diff --git a/demo/astro/package.json b/demo/astro/package.json index a017619c13a..4f616ed0ee2 100644 --- a/demo/astro/package.json +++ b/demo/astro/package.json @@ -1,7 +1,7 @@ { "name": "@tsparticles/astro-demo", "type": "module", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "private": true, "repository": { "type": "git", diff --git a/demo/electron/CHANGELOG.md b/demo/electron/CHANGELOG.md index 433c6851aef..df639cf32d1 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/electron-demo + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/electron-demo diff --git a/demo/electron/package.json b/demo/electron/package.json index 1d703834471..57f0adea57e 100644 --- a/demo/electron/package.json +++ b/demo/electron/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/electron-demo", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "", "main": "app/index.cjs", "private": true, diff --git a/demo/ember/CHANGELOG.md b/demo/ember/CHANGELOG.md index 8dfab6e2b27..825cf756430 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/ember-demo + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/ember-demo diff --git a/demo/ember/package.json b/demo/ember/package.json index e376acb0217..c979af74870 100644 --- a/demo/ember/package.json +++ b/demo/ember/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/ember-demo", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "private": true, "description": "Ember demo for @tsparticles/ember", "repository": { diff --git a/demo/inferno/CHANGELOG.md b/demo/inferno/CHANGELOG.md index 30bf50bda4e..5e1a64b0739 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/inferno-demo + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/inferno-demo diff --git a/demo/inferno/package.json b/demo/inferno/package.json index d9715bb9120..81ec24e2e53 100644 --- a/demo/inferno/package.json +++ b/demo/inferno/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/inferno-demo", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "private": true, "description": "> TODO: description", "main": "index.js", diff --git a/demo/ionic/CHANGELOG.md b/demo/ionic/CHANGELOG.md index d39ffaa4574..1aedd7a67e4 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/ionic-demo + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/ionic-demo diff --git a/demo/ionic/package.json b/demo/ionic/package.json index c502af020a9..2eb9a3ad2ff 100644 --- a/demo/ionic/package.json +++ b/demo/ionic/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/ionic-demo", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "author": "Matteo Bruni ", "homepage": "https://particles.js.org", "repository": { diff --git a/demo/jquery/CHANGELOG.md b/demo/jquery/CHANGELOG.md index 2d36211f919..d0d8d7d9cf4 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/jquery-demo + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/jquery-demo diff --git a/demo/jquery/package.json b/demo/jquery/package.json index b2142121871..873520e8993 100644 --- a/demo/jquery/package.json +++ b/demo/jquery/package.json @@ -1,7 +1,7 @@ { "name": "@tsparticles/jquery-demo", "private": true, - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "> TODO: description", "author": "Matteo Bruni ", "homepage": "https://particles.js.org", diff --git a/demo/lit/CHANGELOG.md b/demo/lit/CHANGELOG.md index d8891d595a2..d1ef2f513da 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/lit-demo + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/lit-demo diff --git a/demo/lit/package.json b/demo/lit/package.json index cc6b07f085f..47d2d8b6414 100644 --- a/demo/lit/package.json +++ b/demo/lit/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/lit-demo", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "private": true, "description": "A simple web component", "type": "module", diff --git a/demo/nextjs-legacy/CHANGELOG.md b/demo/nextjs-legacy/CHANGELOG.md index 6aae3ee261e..7fd49906d6b 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/nextjs-legacy-demo + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 b3211850953..5a054c383b4 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.0-beta.15", + "version": "4.0.0-beta.16", "private": true, "repository": { "type": "git", diff --git a/demo/nextjs/CHANGELOG.md b/demo/nextjs/CHANGELOG.md index fc2ccc36ba0..9bbb9521335 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/nextjs-demo + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/nextjs-demo diff --git a/demo/nextjs/package.json b/demo/nextjs/package.json index 91afb49de20..606aafaa6e7 100644 --- a/demo/nextjs/package.json +++ b/demo/nextjs/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/nextjs-demo", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "private": true, "repository": { "type": "git", diff --git a/demo/nuxt2/CHANGELOG.md b/demo/nuxt2/CHANGELOG.md index f21b015edc6..f0d830aa7e1 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/nuxt2-demo + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/nuxt2-demo diff --git a/demo/nuxt2/package.json b/demo/nuxt2/package.json index ead48c765ed..5246890ab97 100644 --- a/demo/nuxt2/package.json +++ b/demo/nuxt2/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/nuxt2-demo", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "private": true, "repository": { "type": "git", diff --git a/demo/nuxt3/CHANGELOG.md b/demo/nuxt3/CHANGELOG.md index c61edcfbe3e..f2f6aac0268 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/nuxt3-particles-demo + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/nuxt3-particles-demo diff --git a/demo/nuxt3/package.json b/demo/nuxt3/package.json index 638b5ba9f4a..966449af05d 100644 --- a/demo/nuxt3/package.json +++ b/demo/nuxt3/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/nuxt3-particles-demo", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "private": true, "type": "module", "repository": { diff --git a/demo/nuxt4/CHANGELOG.md b/demo/nuxt4/CHANGELOG.md index bb9bb9dd7c0..c5b2438a220 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/nuxt4-particles-demo + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/nuxt4-particles-demo diff --git a/demo/nuxt4/package.json b/demo/nuxt4/package.json index a4459cff9c7..e2834975669 100644 --- a/demo/nuxt4/package.json +++ b/demo/nuxt4/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/nuxt4-particles-demo", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "private": true, "type": "module", "repository": { diff --git a/demo/preact/CHANGELOG.md b/demo/preact/CHANGELOG.md index 93bc8239d94..c54b66e80ad 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/preact-demo + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/preact-demo diff --git a/demo/preact/package.json b/demo/preact/package.json index b7a2bcf8b42..54d010b6e79 100644 --- a/demo/preact/package.json +++ b/demo/preact/package.json @@ -1,7 +1,7 @@ { "name": "@tsparticles/preact-demo", "private": true, - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "type": "module", "description": "> TODO: description", "author": "Matteo Bruni ", diff --git a/demo/qwik/CHANGELOG.md b/demo/qwik/CHANGELOG.md index 3e32f54a7dd..e9b10c090b2 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/qwik-demo + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/qwik-demo diff --git a/demo/qwik/package.json b/demo/qwik/package.json index b00782160d9..75a8af0a360 100644 --- a/demo/qwik/package.json +++ b/demo/qwik/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/qwik-demo", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "private": true, "type": "module", "repository": { diff --git a/demo/react/CHANGELOG.md b/demo/react/CHANGELOG.md index 89e48d468ab..82a298a454a 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/react-demo + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/react-demo diff --git a/demo/react/package.json b/demo/react/package.json index 4152f10ddb0..2e2672a34ad 100644 --- a/demo/react/package.json +++ b/demo/react/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/react-demo", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "private": true, "type": "module", "repository": { diff --git a/demo/riot/CHANGELOG.md b/demo/riot/CHANGELOG.md index 09220c0cee1..f7f330837b8 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/riot-demo + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/riot-demo diff --git a/demo/riot/package.json b/demo/riot/package.json index 8590e5fe72a..4b7506a6502 100644 --- a/demo/riot/package.json +++ b/demo/riot/package.json @@ -1,7 +1,7 @@ { "name": "@tsparticles/riot-demo", "private": true, - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "", "main": "index.js", "repository": { diff --git a/demo/solid/CHANGELOG.md b/demo/solid/CHANGELOG.md index 644c5dcc87c..d825b421e48 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/vite-template-solid + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/vite-template-solid diff --git a/demo/solid/package.json b/demo/solid/package.json index c30761cfc8a..01d482e6c8f 100644 --- a/demo/solid/package.json +++ b/demo/solid/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/vite-template-solid", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "private": true, "description": "", "repository": { diff --git a/demo/svelte-kit/CHANGELOG.md b/demo/svelte-kit/CHANGELOG.md index 83aca830d69..9a7c813f394 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/svelte-kit-demo + + + + + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 04ae41b6f7e..089a391728b 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.0-beta.15", + "version": "4.0.0-beta.16", "private": true, "repository": { "type": "git", diff --git a/demo/svelte/CHANGELOG.md b/demo/svelte/CHANGELOG.md index c66004224b9..4a70e0003ad 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/svelte-demo + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/svelte-demo diff --git a/demo/svelte/package.json b/demo/svelte/package.json index a92bcc968ed..87c63e495ef 100644 --- a/demo/svelte/package.json +++ b/demo/svelte/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/svelte-demo", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "private": true, "repository": { "type": "git", diff --git a/demo/vanilla/CHANGELOG.md b/demo/vanilla/CHANGELOG.md index 4f74cd9a3fa..95821a83ecd 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/demo + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/demo diff --git a/demo/vanilla/package.json b/demo/vanilla/package.json index d8708930378..b9f473a0fd7 100644 --- a/demo/vanilla/package.json +++ b/demo/vanilla/package.json @@ -1,7 +1,7 @@ { "name": "@tsparticles/demo", "private": true, - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 b62f0aab6d1..2e946477633 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/demo-new + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/demo-new diff --git a/demo/vanilla_new/package.json b/demo/vanilla_new/package.json index bc66dbb4188..3368d4b1f17 100644 --- a/demo/vanilla_new/package.json +++ b/demo/vanilla_new/package.json @@ -1,7 +1,7 @@ { "name": "@tsparticles/demo-new", "private": true, - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles Demo Website", "main": "index.html", "scripts": { diff --git a/demo/vite/CHANGELOG.md b/demo/vite/CHANGELOG.md index 68cbd925893..83bcab1ace8 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/vite-demo + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/vite-demo diff --git a/demo/vite/package.json b/demo/vite/package.json index ed7a536aedf..f600de942ac 100644 --- a/demo/vite/package.json +++ b/demo/vite/package.json @@ -1,7 +1,7 @@ { "name": "@tsparticles/vite-demo", "private": true, - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "type": "module", "repository": { "type": "git", diff --git a/demo/vue2/CHANGELOG.md b/demo/vue2/CHANGELOG.md index da2074ad2e3..676ff1d0f11 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/vue2-demo + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/vue2-demo diff --git a/demo/vue2/package.json b/demo/vue2/package.json index 79c98fae352..c6602b86243 100644 --- a/demo/vue2/package.json +++ b/demo/vue2/package.json @@ -1,7 +1,7 @@ { "name": "@tsparticles/vue2-demo", "private": true, - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "VueJS Demo", "author": "Matteo Bruni ", "homepage": "https://particles.js.org", diff --git a/demo/vue3/CHANGELOG.md b/demo/vue3/CHANGELOG.md index 11b50b7132e..40bc827b2ea 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/vue3-demo + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/vue3-demo diff --git a/demo/vue3/package.json b/demo/vue3/package.json index e77c4e62b0c..c6a0d58f8c5 100644 --- a/demo/vue3/package.json +++ b/demo/vue3/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/vue3-demo", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "private": true, "type": "module", "repository": { diff --git a/demo/webcomponents/CHANGELOG.md b/demo/webcomponents/CHANGELOG.md index 57d174217dd..1db9450d36c 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/webcomponents-demo + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/webcomponents-demo diff --git a/demo/webcomponents/package.json b/demo/webcomponents/package.json index 72a5b3209ae..2dd04287adc 100644 --- a/demo/webcomponents/package.json +++ b/demo/webcomponents/package.json @@ -1,7 +1,7 @@ { "name": "@tsparticles/webcomponents-demo", "private": true, - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "> TODO: description", "author": "Matteo Bruni ", "homepage": "https://particles.js.org", diff --git a/effects/bubble/CHANGELOG.md b/effects/bubble/CHANGELOG.md index 832c6f187ec..b52ae81e9d5 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/effect-bubble + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/effect-bubble diff --git a/effects/bubble/package.dist.json b/effects/bubble/package.dist.json index 4c0945d28e9..b0d453805b9 100644 --- a/effects/bubble/package.dist.json +++ b/effects/bubble/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/effect-bubble", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles bubble effect", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/effects/bubble/package.json b/effects/bubble/package.json index 59704e0082d..9c084ff71c5 100644 --- a/effects/bubble/package.json +++ b/effects/bubble/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/effect-bubble", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles bubble effect", "homepage": "https://particles.js.org", "scripts": { diff --git a/effects/filter/CHANGELOG.md b/effects/filter/CHANGELOG.md index 97f56251028..943d0d35a5c 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/effect-filter + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/effect-filter diff --git a/effects/filter/package.dist.json b/effects/filter/package.dist.json index 740aa311586..a6caec098a2 100644 --- a/effects/filter/package.dist.json +++ b/effects/filter/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/effect-filter", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles filter effect", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/effects/filter/package.json b/effects/filter/package.json index 348e96a6034..5565bf8bd10 100644 --- a/effects/filter/package.json +++ b/effects/filter/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/effect-filter", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles filter effect", "homepage": "https://particles.js.org", "scripts": { diff --git a/effects/particles/CHANGELOG.md b/effects/particles/CHANGELOG.md index 75748a28a9e..89bf8ee385e 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/effect-particles + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/effect-particles diff --git a/effects/particles/package.dist.json b/effects/particles/package.dist.json index 97354dbe2d1..78b69536aef 100644 --- a/effects/particles/package.dist.json +++ b/effects/particles/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/effect-particles", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles particles effect", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/effects/particles/package.json b/effects/particles/package.json index 102dcfce547..9946e822323 100644 --- a/effects/particles/package.json +++ b/effects/particles/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/effect-particles", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles particles effect", "homepage": "https://particles.js.org", "scripts": { diff --git a/effects/shadow/CHANGELOG.md b/effects/shadow/CHANGELOG.md index fce801cadd6..03f06b6463b 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/effect-shadow + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/effect-shadow diff --git a/effects/shadow/package.dist.json b/effects/shadow/package.dist.json index f7be284a32f..f20106de189 100644 --- a/effects/shadow/package.dist.json +++ b/effects/shadow/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/effect-shadow", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles shadow effect", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/effects/shadow/package.json b/effects/shadow/package.json index c9f4749289a..2c22abb5353 100644 --- a/effects/shadow/package.json +++ b/effects/shadow/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/effect-shadow", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles shadow effect", "homepage": "https://particles.js.org", "scripts": { diff --git a/effects/trail/CHANGELOG.md b/effects/trail/CHANGELOG.md index 66ee376d697..78108b4082c 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/effect-trail + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/effect-trail diff --git a/effects/trail/package.dist.json b/effects/trail/package.dist.json index 118338188eb..9749116f879 100644 --- a/effects/trail/package.dist.json +++ b/effects/trail/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/effect-trail", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles trail effect", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/effects/trail/package.json b/effects/trail/package.json index 740e575c3af..c75ee6ca7fe 100644 --- a/effects/trail/package.json +++ b/effects/trail/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/effect-trail", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles trail effect", "homepage": "https://particles.js.org", "scripts": { diff --git a/engine/CHANGELOG.md b/engine/CHANGELOG.md index ff8f89fa09a..2d4a2b955c8 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/engine + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/engine diff --git a/engine/package.dist.json b/engine/package.dist.json index 4a8848f994b..433917a844b 100644 --- a/engine/package.dist.json +++ b/engine/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/engine", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 9fc7919f350..61f6ed26a9d 100644 --- a/engine/package.json +++ b/engine/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/engine", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 d78a803a3a6..ab766051346 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/interaction-external-attract + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 ddfff2ddcde..86c48e2c6e6 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles attract external interaction", "homepage": "https://particles.js.org", "repository": { @@ -101,7 +101,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/plugin-interactivity": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-interactivity": "4.0.0-beta.16" } } diff --git a/interactions/external/attract/package.json b/interactions/external/attract/package.json index 442495eace6..6779545ea7c 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.0-beta.15", + "version": "4.0.0-beta.16", "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 06663da8d1b..09b7f5b0340 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/interaction-external-bounce + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 549fd1f4565..dc4dd602e48 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles bounce external interaction", "homepage": "https://particles.js.org", "repository": { @@ -101,7 +101,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/plugin-interactivity": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-interactivity": "4.0.0-beta.16" } } diff --git a/interactions/external/bounce/package.json b/interactions/external/bounce/package.json index 1f451decacd..e0bfe6fb23d 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.0-beta.15", + "version": "4.0.0-beta.16", "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 13c44547442..5404701bcab 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/interaction-external-bubble + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 fafe8b081d1..5692787c1c9 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles bubble external interaction", "homepage": "https://particles.js.org", "repository": { @@ -101,7 +101,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/plugin-interactivity": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-interactivity": "4.0.0-beta.16" } } diff --git a/interactions/external/bubble/package.json b/interactions/external/bubble/package.json index ab696da64b9..0ac680ada48 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.0-beta.15", + "version": "4.0.0-beta.16", "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 e8f774aa700..cd8e9f1f51d 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/interaction-external-cannon + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 a4a9fbd099d..28e963d3976 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles cannon external interaction", "homepage": "https://particles.js.org", "repository": { @@ -101,7 +101,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/plugin-interactivity": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-interactivity": "4.0.0-beta.16" } } diff --git a/interactions/external/cannon/package.json b/interactions/external/cannon/package.json index f8f59db9ec8..bb7e911dafd 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.0-beta.15", + "version": "4.0.0-beta.16", "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 be4fc772ce9..d47ba129cdb 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/interaction-external-connect + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 81db6ba73ad..2d01accd67f 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles connect external interaction", "homepage": "https://particles.js.org", "repository": { @@ -102,8 +102,8 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/canvas-utils": "4.0.0-beta.15", - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/plugin-interactivity": "4.0.0-beta.15" + "@tsparticles/canvas-utils": "4.0.0-beta.16", + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-interactivity": "4.0.0-beta.16" } } diff --git a/interactions/external/connect/package.json b/interactions/external/connect/package.json index dda5c1da78d..e8cfbcad4ef 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.0-beta.15", + "version": "4.0.0-beta.16", "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 b710160f8a0..deb9438797b 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/interaction-external-destroy + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 3384f9dc122..e0f1f9da4b4 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles destroy external interaction", "homepage": "https://particles.js.org", "repository": { @@ -101,7 +101,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/plugin-interactivity": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-interactivity": "4.0.0-beta.16" } } diff --git a/interactions/external/destroy/package.json b/interactions/external/destroy/package.json index e007e9e8f2b..52b03650b66 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.0-beta.15", + "version": "4.0.0-beta.16", "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 0bf24841658..9c7c187da71 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/interaction-external-drag + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 5c48a84a636..db23f027c81 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles drag external interaction", "homepage": "https://particles.js.org", "repository": { @@ -101,7 +101,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/plugin-interactivity": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-interactivity": "4.0.0-beta.16" } } diff --git a/interactions/external/drag/package.json b/interactions/external/drag/package.json index 886b24a28c9..46d8fcbc202 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.0-beta.15", + "version": "4.0.0-beta.16", "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 f17b5e3afd2..b14bc2e4d83 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/interaction-external-grab + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 2b25687df93..ad4b5460286 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles grab external interaction", "homepage": "https://particles.js.org", "repository": { @@ -102,8 +102,8 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/canvas-utils": "4.0.0-beta.15", - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/plugin-interactivity": "4.0.0-beta.15" + "@tsparticles/canvas-utils": "4.0.0-beta.16", + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-interactivity": "4.0.0-beta.16" } } diff --git a/interactions/external/grab/package.json b/interactions/external/grab/package.json index 9b3235ac6d9..a03cc5d695c 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.0-beta.15", + "version": "4.0.0-beta.16", "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 0ad39baec60..2c8ee9368fa 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/interaction-external-parallax + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 1e28b45369a..d5bd0857b51 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles parallax external interaction", "homepage": "https://particles.js.org", "repository": { @@ -101,7 +101,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/plugin-interactivity": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-interactivity": "4.0.0-beta.16" } } diff --git a/interactions/external/parallax/package.json b/interactions/external/parallax/package.json index e1ea134cfe9..6800980a975 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.0-beta.15", + "version": "4.0.0-beta.16", "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 2ead146e257..197aae88d98 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/interaction-external-particle + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 eabb8424b81..6a6d287eb1d 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles particle external interaction", "homepage": "https://particles.js.org", "repository": { @@ -101,7 +101,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/plugin-interactivity": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-interactivity": "4.0.0-beta.16" } } diff --git a/interactions/external/particle/package.json b/interactions/external/particle/package.json index 23a14dc5d16..8392fa8d4e3 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.0-beta.15", + "version": "4.0.0-beta.16", "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 09c98eefad2..4e8867aea8c 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/interaction-external-pause + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 f747a6c09bc..304cd7c8d6a 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles pause external interaction", "homepage": "https://particles.js.org", "repository": { @@ -101,7 +101,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/plugin-interactivity": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-interactivity": "4.0.0-beta.16" } } diff --git a/interactions/external/pause/package.json b/interactions/external/pause/package.json index 6dc7e421167..371cf328907 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.0-beta.15", + "version": "4.0.0-beta.16", "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 2a19ef67e83..ddb528d70a9 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/interaction-external-pop + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 e05dc56cb8e..05128bef791 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles pop external interaction", "homepage": "https://particles.js.org", "repository": { @@ -101,7 +101,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/plugin-interactivity": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-interactivity": "4.0.0-beta.16" } } diff --git a/interactions/external/pop/package.json b/interactions/external/pop/package.json index 8ba235de770..28eda789ccb 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.0-beta.15", + "version": "4.0.0-beta.16", "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 01e04f9c8ea..29cf19a7eb6 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/interaction-external-push + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 5cf55c2f3a1..481e6d07c97 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles push external interaction", "homepage": "https://particles.js.org", "repository": { @@ -101,7 +101,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/plugin-interactivity": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-interactivity": "4.0.0-beta.16" } } diff --git a/interactions/external/push/package.json b/interactions/external/push/package.json index 8992b145c8f..b43c7023e29 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.0-beta.15", + "version": "4.0.0-beta.16", "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 3b6c5717174..3da70c150c7 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/interaction-external-remove + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 485ed4d5cd4..2a3742def44 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles remove external interaction", "homepage": "https://particles.js.org", "repository": { @@ -101,7 +101,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/plugin-interactivity": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-interactivity": "4.0.0-beta.16" } } diff --git a/interactions/external/remove/package.json b/interactions/external/remove/package.json index 3bdd53ec9fd..83bf4b27f14 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.0-beta.15", + "version": "4.0.0-beta.16", "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 44e06b5d247..9658b8be3cd 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/interaction-external-repulse + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 feb5707eef5..73d8ee101b6 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles repulse external interaction", "homepage": "https://particles.js.org", "repository": { @@ -101,7 +101,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/plugin-interactivity": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-interactivity": "4.0.0-beta.16" } } diff --git a/interactions/external/repulse/package.json b/interactions/external/repulse/package.json index 4ee9a679ad5..6ec3d5fff6e 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.0-beta.15", + "version": "4.0.0-beta.16", "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 614ddb79e43..e784be7bfaf 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/interaction-external-slow + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 2653ce67d6c..4405a299c4e 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles slow external interaction", "homepage": "https://particles.js.org", "repository": { @@ -101,7 +101,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/plugin-interactivity": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-interactivity": "4.0.0-beta.16" } } diff --git a/interactions/external/slow/package.json b/interactions/external/slow/package.json index af291593f7c..11742617e42 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.0-beta.15", + "version": "4.0.0-beta.16", "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 fadfba12d0c..1e27d6ca118 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/interaction-external-trail + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 dffd4546786..614eb45e020 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles trail external interaction", "homepage": "https://particles.js.org", "repository": { @@ -101,7 +101,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/plugin-interactivity": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-interactivity": "4.0.0-beta.16" } } diff --git a/interactions/external/trail/package.json b/interactions/external/trail/package.json index b52cfec40fe..658295e9a58 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles trail external interaction", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/light/CHANGELOG.md b/interactions/light/CHANGELOG.md index e47523690eb..16ae3067e32 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/interaction-light + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/interaction-light diff --git a/interactions/light/package.dist.json b/interactions/light/package.dist.json index 29dc2d353d8..8b370eea2a6 100644 --- a/interactions/light/package.dist.json +++ b/interactions/light/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-light", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles Light interaction", "homepage": "https://particles.js.org", "repository": { @@ -107,8 +107,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/plugin-interactivity": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-interactivity": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/interactions/light/package.json b/interactions/light/package.json index 782b4b6e2d5..10e2635637a 100644 --- a/interactions/light/package.json +++ b/interactions/light/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-light", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 a1d394555e2..717b0b55408 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/interaction-particles-attract + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 82e860af8b4..e84e8ed58ad 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles attract particles interaction", "homepage": "https://particles.js.org", "repository": { @@ -93,8 +93,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/plugin-interactivity": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-interactivity": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/interactions/particles/attract/package.json b/interactions/particles/attract/package.json index e2c161553b6..28032eef043 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.0-beta.15", + "version": "4.0.0-beta.16", "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 e49b2a78f29..7bb796023a7 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/interaction-particles-collisions + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 10173d943b0..ab4103f1c25 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles collisions particles interaction", "homepage": "https://particles.js.org", "repository": { @@ -101,7 +101,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/plugin-interactivity": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-interactivity": "4.0.0-beta.16" } } diff --git a/interactions/particles/collisions/package.json b/interactions/particles/collisions/package.json index 59a5d952525..10a7dcd9b84 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.0-beta.15", + "version": "4.0.0-beta.16", "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 9499dccef7a..3f311c6ffef 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/interaction-particles-links + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 32b4082e283..b34d10d3486 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles links particles interaction", "homepage": "https://particles.js.org", "repository": { @@ -102,8 +102,8 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/canvas-utils": "4.0.0-beta.15", - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/plugin-interactivity": "4.0.0-beta.15" + "@tsparticles/canvas-utils": "4.0.0-beta.16", + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-interactivity": "4.0.0-beta.16" } } diff --git a/interactions/particles/links/package.json b/interactions/particles/links/package.json index 1de24a3ef0e..303d3590e8d 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.0-beta.15", + "version": "4.0.0-beta.16", "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 c9aedb29072..72952bf9899 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/interaction-particles-repulse + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 9671ee054b8..332e178b3aa 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles repulse particles interaction", "homepage": "https://particles.js.org", "repository": { @@ -107,8 +107,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/plugin-interactivity": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-interactivity": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/interactions/particles/repulse/package.json b/interactions/particles/repulse/package.json index 9e85d334037..de427556b15 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles repulse particles interaction", "homepage": "https://particles.js.org", "scripts": { diff --git a/lerna.json b/lerna.json index 06d5b204f4c..a5e8eab51db 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "npmClient": "pnpm", "conventionalCommits": true, "command": { diff --git a/palettes/atmosphere/coloredSmokeAmber/CHANGELOG.md b/palettes/atmosphere/coloredSmokeAmber/CHANGELOG.md index bfe0d44cceb..b818168751c 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-colored-smoke-amber + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 90bfd0f4b98..c3324775908 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles colored smoke amber palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 b41ab452d45..6dbb7d2b55f 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.0-beta.15", + "version": "4.0.0-beta.16", "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 6f92c48dfc5..defa57d78ec 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-colored-smoke-blue + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 9a4aff994a9..b5e2d07a235 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles colored smoke blue palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 bcf04edaace..b502977087e 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.0-beta.15", + "version": "4.0.0-beta.16", "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 dc8b29f5544..3d065b19e91 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-colored-smoke-green + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 8f344912703..f6a516f30c6 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles colored smoke green palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 90d9e38ac89..1878214f83e 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.0-beta.15", + "version": "4.0.0-beta.16", "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 d36ca14661e..8493be08a92 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-colored-smoke-magenta + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 28c15b8523c..8933a0e3247 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles colored smoke - magenta palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 de85e3711dc..8b78dcaa8b0 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.0-beta.15", + "version": "4.0.0-beta.16", "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 219c948ae86..3a34ac4b2a3 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-colored-smoke-orange + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 efb6ea98908..f21d8bac93c 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles colored smoke orange palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 bc314865622..d352955b3ba 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.0-beta.15", + "version": "4.0.0-beta.16", "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 2e82f6a6f34..f1ec8aa9197 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-colored-smoke-purple + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 0034c9fd2fd..c3bb482175e 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles colored smoke purple palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 109ba09adcf..52cbe35405c 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.0-beta.15", + "version": "4.0.0-beta.16", "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 82165547c11..a9c897d1e85 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-colored-smoke-rainbow + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 d4ce8eac7e4..59c29ee778a 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles colored smoke rainbow palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 4a543af4043..0d6b42ca9b8 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.0-beta.15", + "version": "4.0.0-beta.16", "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 ec29ed7a2c7..ae2959173ad 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-colored-smoke-red + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 076e91933b5..2510278d0e2 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles colored smoke red palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 e0f826c7c5b..568f3cd1c12 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.0-beta.15", + "version": "4.0.0-beta.16", "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 e66e57d4713..c581820a700 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-colored-smoke-teal + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 5c46d3c3540..e50a2240ab4 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles colored smoke - teal palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 3991b5ba31b..77b3f8fede9 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.0-beta.15", + "version": "4.0.0-beta.16", "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 0bea1767cad..70b734523d3 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-dust-haze + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 ad02435d497..20bd25409c7 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles dust haze atmosphere palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 faa105aa560..05ae846ff03 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.0-beta.15", + "version": "4.0.0-beta.16", "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 7c65b7ad2d6..9c7a1f745fd 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-fog-morning + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 c9a797a60da..0c0745ec6ce 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles morning fog atmosphere palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 84857fdd995..040b08af8ee 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.0-beta.15", + "version": "4.0.0-beta.16", "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 4b794ea08f5..2c555848c7a 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-volcanic-ash + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 024fd125540..30c871c6422 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles volcanic ash atmosphere palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 8b2a721dfa5..a6b6b7419c0 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.0-beta.15", + "version": "4.0.0-beta.16", "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 b61423ea9be..fafe53dfe7e 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-heat-duality + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 af1e2898189..d94ca11f90e 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles heat duality palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 c0819b316e9..a05e8e752be 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.0-beta.15", + "version": "4.0.0-beta.16", "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 28cb569dfdd..5d41f4625ae 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-heat-haze + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 7110092e176..4f8039f2bb9 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles heat haze palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 1e04014a13d..e7a0b3fa6b1 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.0-beta.15", + "version": "4.0.0-beta.16", "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 d002b903903..6d232df6f0f 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-lightning + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 c5023b6524e..32917d1b40f 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles lightning palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 c4b7d691f52..75840994bf6 100644 --- a/palettes/atmospheric/lightning/package.json +++ b/palettes/atmospheric/lightning/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-lightning", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 7fc0d6b82de..08832fe2fe5 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-shockwave + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 b168c93beea..564ad5dfc80 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles shockwave palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 3c42c49dad7..0e92042396e 100644 --- a/palettes/atmospheric/shockwave/package.json +++ b/palettes/atmospheric/shockwave/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-shockwave", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 31ea4505114..1a18d5d1af7 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-smoke-cold + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 d74a89e2bb4..dca56667964 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles smoke - cold palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 e3a7a66a477..01050b716de 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.0-beta.15", + "version": "4.0.0-beta.16", "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 b7cfbdc4efd..17b6a6ba104 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-smoke-warm + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 eac8dc210b8..2299e5a0d77 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles smoke - warm palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 f7cfd366d1b..53ce7dbc646 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.0-beta.15", + "version": "4.0.0-beta.16", "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 5e9028baa78..da78bbd81d2 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-sunrise-gold + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 49ae26f4d24..c21c2df0226 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles sunrise gold palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 76c9f3e6c97..e5a5051fede 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.0-beta.15", + "version": "4.0.0-beta.16", "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 7afa940c453..76835ecf74d 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-sunset-binary + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 d09fb44fe41..8474f15d83a 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles sunset binary palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 d7183a2bce3..24dceaf6606 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.0-beta.15", + "version": "4.0.0-beta.16", "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 49c23808dba..2d56311b06a 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-thermal-map + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 fb52a1fc59a..5c385f8bd16 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles thermal map - cold to hot palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 9dcd30980ed..cf668d5f45e 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.0-beta.15", + "version": "4.0.0-beta.16", "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 386e87ee313..1062c750749 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-thunderstorm + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 88f9be04b15..2101b84801b 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles thunderstorm palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 6824d377007..020c93488c2 100644 --- a/palettes/atmospheric/thunderstorm/package.json +++ b/palettes/atmospheric/thunderstorm/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-thunderstorm", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 4814783261d..d3b10c8502e 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-confetti + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 f5aa3487f8d..cc18f09050a 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles confetti palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 0bae8a70ec6..de533aa4f89 100644 --- a/palettes/confetti/default/package.json +++ b/palettes/confetti/default/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 954742fc90c..2a79a2034c6 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-confetti-gold + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 f13b63a5444..b367a83cb4d 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles confetti gold palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 fd99714e752..912d44f8428 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.0-beta.15", + "version": "4.0.0-beta.16", "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 f0eecf3eeb2..76e654d22aa 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-confetti-monochrome-blue + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 e0f72e86f6c..84841723767 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles confetti monochrome blue palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 003c4d74e89..9f4bada586d 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.0-beta.15", + "version": "4.0.0-beta.16", "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 0ccaaa87a8e..7f965415116 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-confetti-monochrome-green + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 80ca1917d6b..65bdd281978 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles confetti monochrome green palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 c2e2b5d2886..da9e2689caa 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.0-beta.15", + "version": "4.0.0-beta.16", "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 56eec5a96df..f91dbfd1d34 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-confetti-monochrome-pink + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 ccf30a03647..eadf2320b64 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles confetti monochrome pink palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 a1f6c217195..bcdc3d8ff52 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.0-beta.15", + "version": "4.0.0-beta.16", "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 e729bfc4ac0..7530ea901a2 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-confetti-monochrome-purple + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 2a0b3765dd6..3521e4572ca 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles confetti monochrome purple palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 4a483ddf5a9..104354aaeda 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.0-beta.15", + "version": "4.0.0-beta.16", "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 f69e6693883..a786a804348 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-confetti-monochrome-red + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 695739e7e7a..6deb608147d 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles confetti monochrome red palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 4c98f276653..f7ca65cf1e2 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.0-beta.15", + "version": "4.0.0-beta.16", "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 cd24425e479..d85742833b8 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-confetti-neon + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 b3ed53c90b4..6eef431c4ea 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles confetti neon palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 fc3a98d0366..a39f84da78a 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.0-beta.15", + "version": "4.0.0-beta.16", "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 1967be8c580..a56e170918e 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-confetti-pastel + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 33eed3dbf2a..43089fa7ebf 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles confetti pastel palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 956f916a644..13f29643e6a 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.0-beta.15", + "version": "4.0.0-beta.16", "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 f07b358baaf..b00664cb407 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-confetti-patriotic + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 b4665035624..c18ba258038 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles confetti patriotic palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 ca433375161..080e04ce571 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.0-beta.15", + "version": "4.0.0-beta.16", "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 bd5387b9b93..e3e47203853 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-confetti-rainbow + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 b321481b45b..6905875269c 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles confetti rainbow palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 253e4150f01..6962dd40693 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.0-beta.15", + "version": "4.0.0-beta.16", "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 a245616fc74..4b863bb7600 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-confetti-winter + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 e0080f5e5ce..e15af35e84b 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles confetti winter palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 d90b9c16f72..67a15eae4f9 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.0-beta.15", + "version": "4.0.0-beta.16", "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 53d6d37602e..6ebf6f5fd90 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-caustics + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 c9459becdd8..d95f2d676f4 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles caustics palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 da4a8f89284..88e56ffa7e2 100644 --- a/palettes/earth/caustics/package.json +++ b/palettes/earth/caustics/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-caustics", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 4ed3f2dcf96..45f13033ed1 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-desert-sand + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 6974591734c..bcdbe7beee1 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles desert sand palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 3e0b1dd267d..a1d8cc5b25f 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.0-beta.15", + "version": "4.0.0-beta.16", "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 8375ed837f9..f0c62277d0c 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-mud-and-dirt + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 4ae9a1ec6bd..0c59e55abca 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles mud & dirt palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 79772593adb..7d37f11183f 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.0-beta.15", + "version": "4.0.0-beta.16", "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 27ad8532fe1..a5983722e58 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-oil-slick + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 1534b209ae0..fa5abc0059f 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles oil slick palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 e3fcacb37cb..e587b71d462 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.0-beta.15", + "version": "4.0.0-beta.16", "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 9dfe3c4d27e..9882f7fc734 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-rock-and-gravel + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 790a124f74c..01c0fbf6811 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles rock & gravel palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 9c5ca8f5ff0..c251dc26661 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.0-beta.15", + "version": "4.0.0-beta.16", "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 e6e2ee61f01..e7f7c8f5a94 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-rust-and-corrosion + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 58b17b69a44..2b3c5725cc2 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles rust & corrosion palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 2c88af093be..fe456bb1bb1 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.0-beta.15", + "version": "4.0.0-beta.16", "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 10b286e5b25..a947039641f 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-skin-and-organic + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 5c270e4953e..5782c30e6c9 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles skin & organic palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 1fd2a50e5a5..92fe4257e21 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.0-beta.15", + "version": "4.0.0-beta.16", "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 63cd778d40d..43c7077092c 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-bioluminescence + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 0e46f95e1f4..a4bb78a66bd 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles bioluminescence palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 2b45f044178..f6d2516e566 100644 --- a/palettes/fantasy/bioluminescence/package.json +++ b/palettes/fantasy/bioluminescence/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-bioluminescence", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 0d86fa32b06..e6dd98ef77a 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-blood-and-gore + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 3b1b042e79d..644063b6ccb 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles blood & gore palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 be64bd6d972..8b520728ea9 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.0-beta.15", + "version": "4.0.0-beta.16", "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 dc0a78c1a7e..638fb6ac4f5 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-fairy-dust + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 5d7a50482cf..73cdec9ffd4 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles fairy dust palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 40f3002e778..a8cae2f4d68 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.0-beta.15", + "version": "4.0.0-beta.16", "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 f263f077bca..1b14ed096fb 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-holy-light + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 f02c460c070..660fb98ac65 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles holy light palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 697dde99a14..4777404ab15 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.0-beta.15", + "version": "4.0.0-beta.16", "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 8aad9663004..c1acf2d377f 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-ice-magic + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 ce6f839c061..f28a27cffaf 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles ice magic palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 76ee1aee10b..243fe930a99 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.0-beta.15", + "version": "4.0.0-beta.16", "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 6aa9af52166..fab717ce8c0 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-ice-triad + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 beb91a202ec..9ef188ef5d8 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles ice triad palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 1dcf9ffdde1..adc43dbd27c 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.0-beta.15", + "version": "4.0.0-beta.16", "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 b7f98aae6cb..854fc0e3434 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-iris + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 e423181ee90..0a82a8cf51b 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles iris palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 782494887f8..3b830def645 100644 --- a/palettes/fantasy/iris/package.json +++ b/palettes/fantasy/iris/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-iris", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 335f0355470..bb377051434 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-jellyfish-glow + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 c71ed317224..48a3f7fab29 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles jellyfish glow palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 627332d6745..38e722d21ec 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.0-beta.15", + "version": "4.0.0-beta.16", "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 c9ad67fceda..c3fff164737 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-mermaid + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 58f1ba21f9e..a35af49f56a 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles mermaid palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 2702d951f0b..f6eea2b4ccb 100644 --- a/palettes/fantasy/mermaid/package.json +++ b/palettes/fantasy/mermaid/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-mermaid", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 ae5690baa15..f665927945b 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-poison-and-venom + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 69a9c776783..ce6f7d93636 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles poison & venom palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 aac66ad7a4e..0b0aa6ed002 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.0-beta.15", + "version": "4.0.0-beta.16", "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 309e6d0d5ba..e0221ddf13e 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-unicorn + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 641b1b11f7f..6db9fc6e9b2 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles unicorn palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 f911b2bdfcd..555541c6490 100644 --- a/palettes/fantasy/unicorn/package.json +++ b/palettes/fantasy/unicorn/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-unicorn", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 bde6a88f706..a8d7f6ec6ec 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-candlelight + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 3c08c8a4147..fbf47ad3ab3 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles candlelight palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 dcfe9963cd2..645c238033c 100644 --- a/palettes/fire/candlelight/package.json +++ b/palettes/fire/candlelight/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-candlelight", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 d554432a6cd..2597d0061c8 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-fire + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 0ecb78513e4..5668b28d8a0 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles fire - full palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 10bb539a91c..a27de1f1165 100644 --- a/palettes/fire/default/package.json +++ b/palettes/fire/default/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fire", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 be46fcf281b..bf96376398e 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-embers-and-ash + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 68de3170ffb..2cb50f0f132 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles embers & ash palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 32226ab4cdd..26ff3829769 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.0-beta.15", + "version": "4.0.0-beta.16", "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 d5abbaf817a..743d6eb4230 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-full-fire-gradient + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 f91a92332a3..8dc274d30fc 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles full fire gradient palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 366f44d43a6..a121a47c95b 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.0-beta.15", + "version": "4.0.0-beta.16", "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 4eeb420d521..602fa663e93 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-lava-lamp + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 16004a1ab48..3f83e7bf376 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles lava lamp palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 06eb6da6160..37eea3f7f09 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.0-beta.15", + "version": "4.0.0-beta.16", "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 02b68c0f9b0..c9a4bc718cf 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-metal-sparks + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 6d6313ba4cf..eecdc1aede2 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles metal sparks palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 0a5e9e403e4..031feb314ef 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.0-beta.15", + "version": "4.0.0-beta.16", "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 54121d987b3..fa700f1d41d 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-molten-metal + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 458afa8c933..6393ebe720e 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles molten metal palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 6ce4c739861..7f08a972748 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.0-beta.15", + "version": "4.0.0-beta.16", "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 3a435c8e41b..f1de0082d8b 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-fire-seed + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 f2055cf67cf..5f7c84e0fcc 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles fire seed palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 1f89568017a..6f1fc767991 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.0-beta.15", + "version": "4.0.0-beta.16", "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 0dd873aea69..18a3b340753 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-blue + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 033c49f8322..bade81c5e68 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles fireworks blue palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 6ec7cc5b097..ee5cf94207b 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.0-beta.15", + "version": "4.0.0-beta.16", "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 15bce960c9c..f8f13548e22 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-blue-stroke + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 26c3fa0fde1..d36950c0bed 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles fireworks blue stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 a1ac6dcd9f6..2cd306685c6 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.0-beta.15", + "version": "4.0.0-beta.16", "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 6d16f54ec74..b64d9a4ed78 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-copper + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 0e530a84c8c..e80d73d66ed 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles fireworks copper palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 b8fb0a86bd2..50d3b559e9c 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.0-beta.15", + "version": "4.0.0-beta.16", "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 7431eb1cf63..ac790fac7b1 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-copper-stroke + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 f34693c9996..cda541c43f9 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles fireworks copper stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 11a30504419..af535b52efb 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.0-beta.15", + "version": "4.0.0-beta.16", "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 937ea97127c..f99a03727e8 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-gold + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 22788fed85f..937017a3c48 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles fireworks - gold palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 b4b02e93325..41ad28599d0 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.0-beta.15", + "version": "4.0.0-beta.16", "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 40513bf0f0b..d96d2d8d6dc 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-gold-stroke + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 d84cf3a4fe7..a615ff78c0e 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles fireworks - gold stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 127f992c884..742855376a9 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.0-beta.15", + "version": "4.0.0-beta.16", "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 9dbe96a670f..6bf3b487d7c 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-green + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 7561e59e81a..b73faa95e15 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles fireworks green palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 93f9738ab1e..c7eeedca1fc 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.0-beta.15", + "version": "4.0.0-beta.16", "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 878c941f1be..b74b6e661e5 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-green-stroke + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 862deb0530b..785cab4bd78 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles fireworks green stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 cfa41b4ee76..2798f0e34e3 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.0-beta.15", + "version": "4.0.0-beta.16", "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 8231505d122..d19e573f1a0 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-ice + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 e5a5fb57074..d3eeeaa72cd 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles fireworks ice palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 096e205123d..25db0a2ffda 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.0-beta.15", + "version": "4.0.0-beta.16", "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 f749c1e4618..e4e1ffe41c2 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-ice-stroke + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 cc2c04d268a..49c26e9df7e 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles fireworks ice stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 9fb03107e83..d6aeb72f945 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.0-beta.15", + "version": "4.0.0-beta.16", "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 873bc4bb3f1..766202c622d 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-multicolor + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 39864ebb298..75db59dadce 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles fireworks - multicolor palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 736876c4269..5286c1aa1f0 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.0-beta.15", + "version": "4.0.0-beta.16", "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 d2c30e7734e..0c58527d643 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-multicolor-stroke + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 b8af9005ba4..f8fcf6ba5e9 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles fireworks - multicolor stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 e3ce173a004..8816a57ba53 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.0-beta.15", + "version": "4.0.0-beta.16", "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 e1544328e0e..ea32fbde133 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-neon + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 8ca6500b598..c73704b1967 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles fireworks neon palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 2fc03b9bbb8..c2333c63bb9 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.0-beta.15", + "version": "4.0.0-beta.16", "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 3f619a24dec..5c94f5176e6 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-neon-stroke + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 bc5236a033c..2105d88e4a8 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles fireworks neon stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 13cb874fc50..e1dba209081 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.0-beta.15", + "version": "4.0.0-beta.16", "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 938a6fb22af..3ca79754461 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-pastel + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 4ee704e8130..288136e4c88 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles fireworks pastel palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 ce62aa780c2..6272a3be963 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.0-beta.15", + "version": "4.0.0-beta.16", "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 1710da4a6ea..442d9d7eb6e 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-pastel-stroke + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 ddfccf2c316..3cf9eaa9339 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles fireworks pastel stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 814f5cfaa13..1840043ca79 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.0-beta.15", + "version": "4.0.0-beta.16", "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 3df6680a8b9..eb8e2621b93 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-purple + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 3915b68ffa2..4e31f27d85a 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles fireworks purple palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 e00c94227ed..19aeeaa362e 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.0-beta.15", + "version": "4.0.0-beta.16", "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 1414134c57a..9b7df81e89b 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-purple-stroke + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 d7bde2d75d3..84deae1face 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles fireworks purple stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 4d25bfa2b3a..ab4f2fa6032 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.0-beta.15", + "version": "4.0.0-beta.16", "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 206542bb067..7034d99ec63 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-rainbow + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 2425eb59ccd..4054debf496 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles fireworks rainbow palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 f97bf255d60..4f6993f7aa4 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.0-beta.15", + "version": "4.0.0-beta.16", "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 6ac652f071b..eae49e75ed1 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-rainbow-stroke + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 a68809e9da1..bed6f6009d5 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles fireworks rainbow stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 8868ddc1d86..12d191bb10a 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.0-beta.15", + "version": "4.0.0-beta.16", "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 ff0809d1424..a4cae36e1d5 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-red + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 89e4380a7dc..fb5755b82ac 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles fireworks red palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 ae1d0878471..a207a668af8 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.0-beta.15", + "version": "4.0.0-beta.16", "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 b232c8e398c..cce26bf6487 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-red-stroke + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 62f7936108f..b26ab558d82 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles fireworks red stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 f8243f3cbaa..60c25728d27 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.0-beta.15", + "version": "4.0.0-beta.16", "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 98c26f59a10..fe59a62e8b7 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-silver + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 1a7418ffbbb..c8f53ac2966 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles fireworks silver palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 197f40effdb..49d80d9eb62 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.0-beta.15", + "version": "4.0.0-beta.16", "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 e68013ad5d4..ef0d60392e7 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-silver-stroke + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 c5f30ed3602..26d41948c31 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles fireworks silver stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 5d6663b0f8a..4b4fbd90c12 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.0-beta.15", + "version": "4.0.0-beta.16", "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 b10ffddbee4..a30f0e4b0e1 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-apple-green + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 80ac23ce7e3..32f58e7e55c 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles apple green palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 fa805e6f782..65d79c7696d 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.0-beta.15", + "version": "4.0.0-beta.16", "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 cf91c194227..69ca7e7fd43 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-apple-red + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 1915792dc95..ac8d78da6b4 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles apple red palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 048d1f29f0c..2368d9387c6 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.0-beta.15", + "version": "4.0.0-beta.16", "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 631d01335eb..75fb1591a26 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-apple + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 ec33f89d1fa..aad393924c9 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles apple palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 fe895d69485..735e4d11d40 100644 --- a/palettes/food/apple/package.json +++ b/palettes/food/apple/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-apple", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 c8003cc3fff..e06e7487d77 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-avocado + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 9c47d136c60..6ad7a0227bc 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles avocado palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 a3a5d92b060..5dc6d5e2766 100644 --- a/palettes/food/avocado/package.json +++ b/palettes/food/avocado/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-avocado", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 b6ce9fcac6c..eb2e0efe745 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-bell-peppers + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 3ba694b19e9..5a8d952f181 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles bell peppers palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 412b988d2b9..d4043493373 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.0-beta.15", + "version": "4.0.0-beta.16", "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 4d4186b8aa2..7190aa531dd 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-berries + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 6f38475f56f..bc6c7d169db 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles berries palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 2fc52e972db..65bcacb9685 100644 --- a/palettes/food/berries/package.json +++ b/palettes/food/berries/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-berries", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 a8c9326396e..25ef28976a3 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-cherry + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 bb9bab539bd..73a55da6845 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles cherry palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 f17fac85925..e9e2a752607 100644 --- a/palettes/food/cherry/package.json +++ b/palettes/food/cherry/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-cherry", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 f6defe5e1b0..7fb52f1066b 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-citrus-twist + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 4b27ce9a8c0..278524c5b8e 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles citrus twist palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 c0247b91124..038decbf95d 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.0-beta.15", + "version": "4.0.0-beta.16", "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 cb1a6ac5f33..a1c9c85d4be 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-gingerbread-house + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 048c3c66958..f479c27bf89 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles gingerbread house palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 589e8a5d064..b46fd07b889 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.0-beta.15", + "version": "4.0.0-beta.16", "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 0c5ad2bef65..7e1ae5094bd 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-grapes + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 9a986a3f0de..42392362110 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles grapes palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 8f88ab8f1ff..d1427fa3bac 100644 --- a/palettes/food/grapes/package.json +++ b/palettes/food/grapes/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-grapes", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 e2adcc20f01..b77b2f07d82 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-macaron + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 43ca01dcb0d..3a1eb90b8f6 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles macaron palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 82bf29284df..6509027b201 100644 --- a/palettes/food/macaron/package.json +++ b/palettes/food/macaron/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-macaron", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 b9da798533c..617289f0203 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-melon + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 ce5f5a9eaf6..7e70fffc178 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles melon palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 2c888af5f3c..6e603d06f66 100644 --- a/palettes/food/melon/package.json +++ b/palettes/food/melon/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-melon", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 3d317786eef..8994837fa10 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-pineapple + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 9dffd3619b1..47de1740319 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles pineapple palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 8c706037ce1..0d3ef9b3abe 100644 --- a/palettes/food/pineapple/package.json +++ b/palettes/food/pineapple/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pineapple", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 bb2a3ce867b..fa92156d51e 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-pizza + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 aae353b7d35..193444313f0 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles pizza palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 69b77c13f55..eed28b60c76 100644 --- a/palettes/food/pizza/package.json +++ b/palettes/food/pizza/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pizza", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 e8f596f24a9..66b04bf88a3 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-sakura + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 6f2e8336478..95bec244233 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles sakura palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 bfba039fd50..c678781b82e 100644 --- a/palettes/food/sakura/package.json +++ b/palettes/food/sakura/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-sakura", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 b6e3f20c5a5..b73473a7c80 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-salad + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 4de438ff593..2278e0ea44f 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles salad palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 b0340acb8d2..bb2cbd04522 100644 --- a/palettes/food/salad/package.json +++ b/palettes/food/salad/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-salad", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 efe39d69316..0fa7b2e541f 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-spice-rack + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 2a7027ffb4a..6842b628ac8 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles spice rack palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 f9fda18d569..c5108543ec7 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.0-beta.15", + "version": "4.0.0-beta.16", "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 ef021a1f4f5..3e69151b5fa 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-steak + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 ffae81996d5..7eb77f1034a 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles steak palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 8b0d30c299f..931830d2939 100644 --- a/palettes/food/steak/package.json +++ b/palettes/food/steak/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-steak", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 77038de7983..4a08d414611 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-sushi + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 52b21078e95..a75a7d26d7b 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles sushi palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 c7c38e257f1..da78a293b64 100644 --- a/palettes/food/sushi/package.json +++ b/palettes/food/sushi/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-sushi", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 d429d0b92be..a2a2c3c20c8 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-tropical-fruits + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 b1931800bad..0888232e9a5 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles tropical fruits palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 01ee06be2ea..4a68af57fd8 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.0-beta.15", + "version": "4.0.0-beta.16", "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 556fd44bd21..1ad6001a7a2 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-watermelon + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 3b49a34543c..2cca9277750 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles watermelon palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 4ef778832be..762ee12b3d5 100644 --- a/palettes/food/watermelon/package.json +++ b/palettes/food/watermelon/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-watermelon", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles watermelon palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/impact/bulletHit/CHANGELOG.md b/palettes/impact/bulletHit/CHANGELOG.md index 893cbca6bbe..95b6a2d1051 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-bullet-hit + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 7b20291c89b..e5b0b6c992b 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles bullet hit impact palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 086285070d5..310c7aa2324 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.0-beta.15", + "version": "4.0.0-beta.16", "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 0b470676c56..186fda434f8 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-explosion-debris + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 8584c439dbe..fc5c7652f1f 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles explosion - debris palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 5b0e8138b1c..502521e829b 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.0-beta.15", + "version": "4.0.0-beta.16", "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 6b575fbd158..2338eeddd4b 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-glass-burst + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 796d087dbe8..0c52122dd38 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles glass burst impact palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 51d11a9f227..78588588451 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.0-beta.15", + "version": "4.0.0-beta.16", "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 7f2403698c9..80997476474 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-meteor-impact + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 827b28aec65..4f99b90e294 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles meteor impact palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 876dc5d5de6..3bd5e166f01 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.0-beta.15", + "version": "4.0.0-beta.16", "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 7d2f441abe9..67bc0eede82 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-nuclear-glow + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 38ef233234f..a2b017ada74 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles nuclear glow impact palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 6b9708ca260..9d952f5f8d6 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.0-beta.15", + "version": "4.0.0-beta.16", "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 88c18a09e76..8bcd81264bc 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-shockwave-blast + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 1236e50f1e2..c36e25f8b65 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles shockwave blast impact palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 db494ecb65d..539dcd23fee 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.0-beta.15", + "version": "4.0.0-beta.16", "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 f7be6dfca3f..8c6be498575 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-splatter-dark + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 f5bab90ef01..3c6a5bba41e 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles dark splatter impact palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 c23c04b7315..40d5b29a46d 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.0-beta.15", + "version": "4.0.0-beta.16", "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 8ea1f31adfc..16c49e7b842 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-blues + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 1bc8eb63f2f..306148698a1 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles monochrome blues palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 00d70564cf9..3959adf782d 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.0-beta.15", + "version": "4.0.0-beta.16", "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 d2f2cfd4ceb..e68c23ce49a 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-brown + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 750c09e5cff..4ff3678c1ed 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles monochrome brown palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 f8dac4e4882..1211d238bdf 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.0-beta.15", + "version": "4.0.0-beta.16", "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 5f80cceab02..b21b7208c69 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-cyan + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 37cca96cda3..079080af66c 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles monochrome cyan palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 8497e1c8a1a..41c730db5a9 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.0-beta.15", + "version": "4.0.0-beta.16", "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 2a8b1317681..f83714d3d8b 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-gold + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 c49b7837532..e9ffb8a0984 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles monochrome gold palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 a523d382cb8..5a56f1e8fe7 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.0-beta.15", + "version": "4.0.0-beta.16", "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 c84d6915243..453d66e0787 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-greens + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 2f4b851c4bd..db85c26df0e 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles monochrome greens palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 824ceb8df94..5d03c9fd417 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.0-beta.15", + "version": "4.0.0-beta.16", "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 bb1df09aa8a..f498874ce06 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-noir + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 e1db33bd862..2a2411f282c 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles monochrome noir palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 9269e705085..a1bf9d44882 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.0-beta.15", + "version": "4.0.0-beta.16", "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 ea6cbfaa9fc..710f5441c80 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-oranges + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 1a1af4ef34d..376583e2c9a 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles monochrome oranges palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 a0a1620f6dd..8523f7e08d5 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.0-beta.15", + "version": "4.0.0-beta.16", "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 692dec6d714..e6e08f6d397 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-pinks + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 e4feb76b80a..d670b07d2f0 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles monochrome pinks palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 12f5ccd7e30..0ce8ea6f835 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.0-beta.15", + "version": "4.0.0-beta.16", "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 859183c3170..584a7a08833 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-purples + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 e589b235dba..ffbef605c37 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles monochrome purples palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 a4772822ad6..4a3658c79b5 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.0-beta.15", + "version": "4.0.0-beta.16", "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 203c58a44b3..35bd0617709 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-reds + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 9b9c2d72340..f0be5ab20bd 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles monochrome reds palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 5609748d48b..7f115cfb47c 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.0-beta.15", + "version": "4.0.0-beta.16", "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 7c53a43b3ab..820995afa03 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-silver + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 680729d93ff..d8fc9a96c22 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles monochrome silver palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 79b49789bb7..5a65ddf6234 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.0-beta.15", + "version": "4.0.0-beta.16", "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 a479df53578..a3fdaddbeb8 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-teal + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 970fa45718e..0d66568e898 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles monochrome teal palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 6ec0ebcb3c6..35226fc768e 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.0-beta.15", + "version": "4.0.0-beta.16", "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 8bed6eb9ff7..d9e7fce3c15 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-white + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 e74925fe94d..a30628cfef2 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles monochrome white palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 11b60b8ca4d..c7de17a7117 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.0-beta.15", + "version": "4.0.0-beta.16", "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 df412576f1f..646c9dd16c3 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-yellows + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 85ba3abc208..d1dcb51356b 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles monochrome yellows palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 5b7e65b2ebb..4899bfd7df3 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.0-beta.15", + "version": "4.0.0-beta.16", "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 0e4b85dad05..9777e4372fe 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-autumn-leaves + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 e4849072a2d..2f9baaa6505 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles autumn leaves palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 b66ec5b1722..2a3559cf591 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.0-beta.15", + "version": "4.0.0-beta.16", "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 e42b19c673e..5a3d5d0c2f6 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-cherry-blossom + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 0d23785d1a7..8ede8bfa885 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles cherry blossom palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 905b08409d8..9aca3f50f82 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.0-beta.15", + "version": "4.0.0-beta.16", "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 db7cbba7ed5..dd36473f6d5 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-dandelion-seeds + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 48e3f55f479..926567e1304 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles dandelion seeds palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 0faf0a9efde..28c26ebcf5c 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.0-beta.15", + "version": "4.0.0-beta.16", "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 8e042448af3..013e9de78aa 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-earthy-nature + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 f112cab966d..1f8365c09e8 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles earthy nature palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 a093f504ec6..4505b84373e 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.0-beta.15", + "version": "4.0.0-beta.16", "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 2b38f33ca43..104aa4112f7 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-fireflies + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 daf58b1cee7..40acf01d629 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles fireflies palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 2bd76bc6795..74b3f8f3055 100644 --- a/palettes/nature/fireflies/package.json +++ b/palettes/nature/fireflies/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireflies", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 040fd4f3ee9..8bc17042194 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-forest-canopy + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 4e1b450c0c8..415a7fa1a1d 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles forest canopy palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 aa900cd0907..e7c20d8e0e9 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.0-beta.15", + "version": "4.0.0-beta.16", "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 d5dcab935e1..a1af91583b6 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-pollen-and-spores + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 59881e66d1f..65f8c2cf6ac 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles pollen & spores palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 04cfd11fbfd..aebef93ba82 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.0-beta.15", + "version": "4.0.0-beta.16", "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 9439a73dc07..55e84bdbf87 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-snowfall + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 7ed4122efe6..8c70491e01e 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles snowfall palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 699d674b8df..2b09a988bee 100644 --- a/palettes/nature/snowfall/package.json +++ b/palettes/nature/snowfall/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-snowfall", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 28bf7a55a98..6cf24dce81c 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-spring-bloom + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 3b1c9d1f5a9..b2bde1bf619 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles spring bloom palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 6c323d1fe0d..76983506a32 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.0-beta.15", + "version": "4.0.0-beta.16", "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 290df5baa70..995b27a9aef 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-bokeh-cold + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 a8607de0ac5..e1dc996b7e3 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles bokeh cold optics palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 1b5a966c478..dd256f9a0d5 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.0-beta.15", + "version": "4.0.0-beta.16", "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 2b9ae838890..5b84b21ce76 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-bokeh-gold + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 8ebe4f89537..28a7d426378 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles bokeh gold optics palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 7a480982633..e36ff680769 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.0-beta.15", + "version": "4.0.0-beta.16", "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 05739a4062b..964452cafe7 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-bokeh-pastel + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 cbeb49e9224..59855d9bb3d 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles bokeh pastel optics palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 646ee5555b9..7ee83d62119 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.0-beta.15", + "version": "4.0.0-beta.16", "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 51ac94a7df2..8d5b4070088 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-holographic-shimmer + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 418ad4d9f4e..862eae85048 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles holographic shimmer optics palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 005ef7d208f..5c7835e5123 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.0-beta.15", + "version": "4.0.0-beta.16", "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 147c0107cc1..700b4cc9ea6 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-laser-scatter + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 d8f702e9d85..a69dafc6cf8 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles laser scatter optics palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 79b875e3509..725ed09fb76 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.0-beta.15", + "version": "4.0.0-beta.16", "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 7d455927ad7..cbb0b9b9343 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-lens-flare-dust + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 1ff2283962c..1fe80e1a590 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles lens flare dust palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 57d34001d26..9ff5a08ef1c 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.0-beta.15", + "version": "4.0.0-beta.16", "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 8b8505341a6..f1da0a8f8fd 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-prism-spectrum + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 8c1b105afdc..6aab427b5ef 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles prism spectrum optics palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 b39edabcaa4..444eaa6673f 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.0-beta.15", + "version": "4.0.0-beta.16", "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 1ac589a4858..39ef9ad2783 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-pastel-cool + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 0902ef94bfd..498f575d442 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles pastel cool palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 d5e35352420..3f6b93f2b39 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.0-beta.15", + "version": "4.0.0-beta.16", "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 001e13a2602..275da965b8a 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-pastel-dream + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 de54755ff79..bfe511b813f 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles pastel dream palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 2cbc227f447..549e29f9e65 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.0-beta.15", + "version": "4.0.0-beta.16", "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 deb3d412147..36f8a8cf741 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-pastel-mint + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 4e9618e5c35..770496e9245 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles pastel mint palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 526a617821f..6916d547a66 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.0-beta.15", + "version": "4.0.0-beta.16", "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 a5c1999eb7e..e99b25c84d7 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-pastel-sunset + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 249d98a6564..8c314ec623f 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles pastel sunset palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 db52d623e57..65983503eb2 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.0-beta.15", + "version": "4.0.0-beta.16", "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 04a86a93d5e..797169d809f 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-pastel-warm + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 54c6be44aa1..2517721fa9b 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles pastel warm palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 6b79139c016..3c1f6353c28 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.0-beta.15", + "version": "4.0.0-beta.16", "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 d1d6ced2be1..04b291c50f3 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-aurora-borealis + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 6182797ee3b..17f7ec1e55f 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles aurora borealis palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 d6248fd7488..34904a84ee0 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.0-beta.15", + "version": "4.0.0-beta.16", "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 1426bd4c294..da3cd9e2788 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-cosmic-radiation + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 ba658ba685b..cba6809ac25 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles cosmic radiation palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 5a475462bfa..177034a4fd6 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.0-beta.15", + "version": "4.0.0-beta.16", "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 0eb0098c9d8..92e4e77a0ce 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-dark-matter + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 cc9bddf94b2..38b83107099 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles dark matter palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 13758cf4142..84fad229151 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.0-beta.15", + "version": "4.0.0-beta.16", "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 35ca0ca6830..1ad30f9533d 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-galaxy-dust + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 1c3363f1f5c..24e5dcd7059 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles galaxy dust palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 bb71a01d7ea..66104fce9a7 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.0-beta.15", + "version": "4.0.0-beta.16", "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 a55c592295a..e9eb5f6a0b6 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-nebula + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 27017f974c3..9a6f392160b 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles nebula palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 af2ddefbf27..6145dfca318 100644 --- a/palettes/space/nebula/package.json +++ b/palettes/space/nebula/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-nebula", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 bc9949212d1..411dea6928c 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-portal + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 781c3be6e7a..bea7fa8a5dc 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles portal palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 6811941cf2b..6290e28b335 100644 --- a/palettes/space/portal/package.json +++ b/palettes/space/portal/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-portal", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 adc7bf9697e..02786d45f22 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-pulsar + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 8d6466b8f77..a037fd375c3 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles pulsar palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 ba6350e9211..f5560e978f7 100644 --- a/palettes/space/pulsar/package.json +++ b/palettes/space/pulsar/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pulsar", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 624639cf864..06f725bab1d 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-solar-wind + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 dc5d4142401..bf112e64530 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles solar wind palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 c2f4f2c28c0..018f165dd7f 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.0-beta.15", + "version": "4.0.0-beta.16", "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 6eb9a81c699..7277c4679a4 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-supernova + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 34cb5d26e8a..30f1baf367a 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles supernova palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 d811bc2185d..8af17a7210a 100644 --- a/palettes/space/supernova/package.json +++ b/palettes/space/supernova/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-supernova", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 84f839eefbb..1576a587f42 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-acid-pair + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 8ba84328b60..01ad0541ebe 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles acid pair palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 2ebc9ac91f2..46c399c73d6 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.0-beta.15", + "version": "4.0.0-beta.16", "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 42a6ac0900e..eb1fdbbcfcc 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-cmy-secondaries + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 a0734f774d1..054f45826de 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles cmy secondaries palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 5178c2078d2..ebab4a8fe3c 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.0-beta.15", + "version": "4.0.0-beta.16", "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 9ee55c8dae3..a4ae5aabcae 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-duality-blue-yellow + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 94c178c7359..3eaa991a52d 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles duality - blue/yellow palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 c7a5b4f31e2..295ffc7bef1 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.0-beta.15", + "version": "4.0.0-beta.16", "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 087b7eb93f5..7acd8395138 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-duality-green-magenta + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 a73e38f08b8..432cf840404 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles duality - green/magenta palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 81c89847979..a60a48ad476 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.0-beta.15", + "version": "4.0.0-beta.16", "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 f48aa3eaf32..3bf08dc2986 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-duality-red-cyan + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 e5889d8f7ff..58d2e5c7028 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles duality red/cyan palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 299f5c3fcc6..daae23b5e47 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.0-beta.15", + "version": "4.0.0-beta.16", "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 0d6de503025..165bcb1b648 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-full-spectrum + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 ac487a6b944..f4131f3a347 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles full spectrum - high saturation palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 2aa9c120da1..3813967380b 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.0-beta.15", + "version": "4.0.0-beta.16", "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 d3241df2401..068ab75e59b 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-okabe-ito-accessible + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 7239bb6e654..22929fa1cbc 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles okabe ito accessible palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 f4367f52e76..dce07877480 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.0-beta.15", + "version": "4.0.0-beta.16", "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 95b380c2986..215c839f302 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-prism-scatter + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 12f90264ea6..2060003d81c 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles prism scatter palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 b5757eeb863..ee6b9ece145 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.0-beta.15", + "version": "4.0.0-beta.16", "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 1e7c1d87697..da731cb1e37 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-rainbow + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 48e76afa890..a92d8fbb3dc 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles rainbow - maximum saturation srgb palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 e85b952a49e..4e086bab17d 100644 --- a/palettes/spectrum/rainbow/package.json +++ b/palettes/spectrum/rainbow/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-rainbow", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 560a1695306..b5e83c15a30 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-rgb-primaries + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 7f2a042f2fb..f935a4bfc95 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles rgb primaries palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 669f66ae2e7..cf34c263997 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.0-beta.15", + "version": "4.0.0-beta.16", "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 c58a3d1197b..b21e15131da 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-crt-phosphor + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 01d3f77fa2a..63108b6be18 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles crt phosphor palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 6dd2d67f43f..1dd29af1a87 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.0-beta.15", + "version": "4.0.0-beta.16", "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 954a0fcedf1..a2626952471 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-glitch + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 89ed819ab01..fd4912351d4 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles glitch - full rgb shift palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 ca3383c2fdb..5a73f095b83 100644 --- a/palettes/tech/glitch/package.json +++ b/palettes/tech/glitch/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-glitch", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 91803708413..34745475f21 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-hologram + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 fc661e34cf8..1c9df063166 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles hologram palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 4dea4e532bb..eec73ee9d9e 100644 --- a/palettes/tech/hologram/package.json +++ b/palettes/tech/hologram/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-hologram", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 c36b1560f11..a2b952d435c 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-lofi-warm + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 ea3b60fd047..693ea52d3b1 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles lo-fi warm palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 8c6512f00fa..2173ba93e8b 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.0-beta.15", + "version": "4.0.0-beta.16", "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 9be639b6fb8..5be34de953c 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-matrix-rain + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 4926a1964e2..64b4761d1d3 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles matrix rain palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 fbb3a96ed80..4ca7597a4db 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.0-beta.15", + "version": "4.0.0-beta.16", "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 6ca31e917d3..06dfc53708e 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-neon-city + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 803402c61c2..ef826f6bad7 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles neon city palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 2243bab84e4..fe7a5d32526 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.0-beta.15", + "version": "4.0.0-beta.16", "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 2db70d8e26f..a6b7dd53933 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-network-nodes + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 997272ddc1b..3675af91a55 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles network nodes palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 230fa203499..f852f46bc64 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.0-beta.15", + "version": "4.0.0-beta.16", "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 b5456a3daea..f4ad75c9f44 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-plasma-arc + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 6e1d0f34d22..b0e70caa991 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles plasma arc palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 b3fecae3b0c..d7ff1fe26c4 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.0-beta.15", + "version": "4.0.0-beta.16", "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 eee89aff3be..fe8b72364fc 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-vaporwave + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 15c88cd1edf..77f91fbf4c7 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles vaporwave palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 f8f7a8449bb..13cce5f728f 100644 --- a/palettes/tech/vaporwave/package.json +++ b/palettes/tech/vaporwave/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-vaporwave", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 ecc53a64ac6..ba9eeff6984 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-vibrant + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 7643433fa1d..7b7ff0dc8a2 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles vibrant palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 19c521d9642..e3845bfdf21 100644 --- a/palettes/vibrant/default/package.json +++ b/palettes/vibrant/default/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-vibrant", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 3d4f4289f29..9fecab1a615 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-vibrant-electric + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 fcb45afeeb3..3fac0fe5c18 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles vibrant electric palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 27dea946489..0add72fd857 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.0-beta.15", + "version": "4.0.0-beta.16", "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 71fc9b9226d..719b0d96fad 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-vibrant-neon + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 54a40f2ee70..8b59df71265 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles vibrant neon palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 ec2e529ca35..b1d723f4559 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.0-beta.15", + "version": "4.0.0-beta.16", "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 c5fe6f074a8..552bdc67d74 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-vibrant-retro + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 d79a4173e24..693d63930d9 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles vibrant retro palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 89c8f77e82e..81f20913166 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.0-beta.15", + "version": "4.0.0-beta.16", "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 29a5f912b11..92a55e4f374 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-vibrant-tropical + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 20fac4ae508..94a42734a8d 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles vibrant tropical palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 b9e5f0506f0..fb8c91d8cb5 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.0-beta.15", + "version": "4.0.0-beta.16", "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 d400eb6d5e4..723d799b886 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-deep-ocean + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 7dbc9819b88..93c6c95cb00 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles deep ocean palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 ce05fa4fa0b..1077c0aca30 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.0-beta.15", + "version": "4.0.0-beta.16", "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 6c326e9f42c..fb016ff4036 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-water + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 3c18e5dda11..379355f8e4d 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles water - full palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 026232c7388..1f756538686 100644 --- a/palettes/water/default/package.json +++ b/palettes/water/default/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-water", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 acd3a8b74f9..fcd6ea83766 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-foam-and-bubbles + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 7c45f301a6d..d68cb3e9ef6 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles foam & bubbles palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 600e46a1292..2b49b4d1b52 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.0-beta.15", + "version": "4.0.0-beta.16", "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 d6cdfd2e7fe..98c626fa574 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-fog-coastal + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 179ea3b8ca7..c0a2d9827a7 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles fog - coastal palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 ed8147f3066..17dc35899b7 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.0-beta.15", + "version": "4.0.0-beta.16", "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 aef405cd69a..dbaae73c283 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-ink-in-water + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 102648e8be8..97b38b2bcf4 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles ink in water palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 80081f4138a..fd341c036c8 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.0-beta.15", + "version": "4.0.0-beta.16", "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 66e4fd90bfc..5eb4a7ec3f7 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-lagoon + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 853f5fd1c7b..117b1848171 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles lagoon palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 8a8a64fbc07..da5b6fb5fa8 100644 --- a/palettes/water/lagoon/package.json +++ b/palettes/water/lagoon/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-lagoon", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 b5a8f6694e9..e3cad70e412 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-rain + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 54185d3e00b..80a4bc9ce42 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles rain palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 677a6245ca3..905c7e6b87b 100644 --- a/palettes/water/rain/package.json +++ b/palettes/water/rain/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-rain", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 6328b1a6b0f..630d1ff4425 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-rising-bubbles + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 fb834500ddf..c4cefd6c075 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles rising bubbles palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 2e131fac97e..30ea64e16fa 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.0-beta.15", + "version": "4.0.0-beta.16", "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 c0d1476f31f..3a94fb04ea4 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/palette-water-splash + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 d9e01e525ba..d94e00bda9c 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles water splash palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "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 f5889c286ae..9bfd4e01eb0 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles water splash palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/branches/CHANGELOG.md b/paths/branches/CHANGELOG.md index 5f032b7fff5..a464331e95f 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/path-branches + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/path-branches diff --git a/paths/branches/package.dist.json b/paths/branches/package.dist.json index efd06c032bf..396f94de4fd 100644 --- a/paths/branches/package.dist.json +++ b/paths/branches/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-branches", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles branches path", "homepage": "https://particles.js.org", "repository": { @@ -110,8 +110,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/plugin-move": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-move": "4.0.0-beta.16" }, "type": "module" } diff --git a/paths/branches/package.json b/paths/branches/package.json index e47035b45a9..097d4069198 100644 --- a/paths/branches/package.json +++ b/paths/branches/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-branches", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles branches path", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/brownian/CHANGELOG.md b/paths/brownian/CHANGELOG.md index 3666efa7728..a75d3ebde62 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/path-brownian + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/path-brownian diff --git a/paths/brownian/package.dist.json b/paths/brownian/package.dist.json index fbfb9c50458..41323367e84 100644 --- a/paths/brownian/package.dist.json +++ b/paths/brownian/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-brownian", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles brownian path", "homepage": "https://particles.js.org", "repository": { @@ -110,8 +110,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/plugin-move": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-move": "4.0.0-beta.16" }, "type": "module" } diff --git a/paths/brownian/package.json b/paths/brownian/package.json index e0926b27c38..43b569f76c7 100644 --- a/paths/brownian/package.json +++ b/paths/brownian/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-brownian", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles brownian path", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/curlNoise/CHANGELOG.md b/paths/curlNoise/CHANGELOG.md index e07143d9613..87549f68703 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/path-curl-noise + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 2e08f4f6c56..ac5b62c5c13 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles curl noise path", "homepage": "https://particles.js.org", "repository": { @@ -110,9 +110,9 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/plugin-move": "4.0.0-beta.15", - "@tsparticles/simplex-noise": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-move": "4.0.0-beta.16", + "@tsparticles/simplex-noise": "4.0.0-beta.16" }, "type": "module" } diff --git a/paths/curlNoise/package.json b/paths/curlNoise/package.json index cb28dd7ead7..53940fe041e 100644 --- a/paths/curlNoise/package.json +++ b/paths/curlNoise/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-curl-noise", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles curl noise path", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/curves/CHANGELOG.md b/paths/curves/CHANGELOG.md index 536e4ae1bc2..fcf952dc90d 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/path-curves + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/path-curves diff --git a/paths/curves/package.dist.json b/paths/curves/package.dist.json index b6979c9c794..edf5904ec4a 100644 --- a/paths/curves/package.dist.json +++ b/paths/curves/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-curves", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles curves path", "homepage": "https://particles.js.org", "repository": { @@ -110,8 +110,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/plugin-move": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-move": "4.0.0-beta.16" }, "type": "module" } diff --git a/paths/curves/package.json b/paths/curves/package.json index 6d9354a568a..66834c13bb7 100644 --- a/paths/curves/package.json +++ b/paths/curves/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-curves", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles curves path", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/fractalNoise/CHANGELOG.md b/paths/fractalNoise/CHANGELOG.md index 1030666fd89..7855730fe4c 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/path-fractal-noise + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 7321367ea70..89338be13b3 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles fractal noise path", "homepage": "https://particles.js.org", "repository": { @@ -110,10 +110,10 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/fractal-noise": "4.0.0-beta.15", - "@tsparticles/noise-field": "4.0.0-beta.15", - "@tsparticles/plugin-move": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/fractal-noise": "4.0.0-beta.16", + "@tsparticles/noise-field": "4.0.0-beta.16", + "@tsparticles/plugin-move": "4.0.0-beta.16" }, "type": "module" } diff --git a/paths/fractalNoise/package.json b/paths/fractalNoise/package.json index aeef51f7787..3a5444e5f9d 100644 --- a/paths/fractalNoise/package.json +++ b/paths/fractalNoise/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-fractal-noise", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles fractal noise path", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/grid/CHANGELOG.md b/paths/grid/CHANGELOG.md index e269274982c..363cc94269c 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/path-grid + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/path-grid diff --git a/paths/grid/package.dist.json b/paths/grid/package.dist.json index 20bfded8d3b..b4a51ab09af 100644 --- a/paths/grid/package.dist.json +++ b/paths/grid/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-grid", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles grid path", "homepage": "https://particles.js.org", "repository": { @@ -110,8 +110,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/plugin-move": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-move": "4.0.0-beta.16" }, "type": "module" } diff --git a/paths/grid/package.json b/paths/grid/package.json index 547450cdfa2..3a895940303 100644 --- a/paths/grid/package.json +++ b/paths/grid/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-grid", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles grid path", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/levy/CHANGELOG.md b/paths/levy/CHANGELOG.md index dc9de963d33..34a00e6c01c 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/path-levy + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/path-levy diff --git a/paths/levy/package.dist.json b/paths/levy/package.dist.json index 5754a1ce85a..104e59ea5af 100644 --- a/paths/levy/package.dist.json +++ b/paths/levy/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-levy", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles levy path", "homepage": "https://particles.js.org", "repository": { @@ -110,8 +110,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/plugin-move": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-move": "4.0.0-beta.16" }, "type": "module" } diff --git a/paths/levy/package.json b/paths/levy/package.json index 8af91a9ad04..1b41934edfd 100644 --- a/paths/levy/package.json +++ b/paths/levy/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-levy", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles levy path", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/perlinNoise/CHANGELOG.md b/paths/perlinNoise/CHANGELOG.md index 6132038b6e0..b89901ee839 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/path-perlin-noise + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 361d6af113c..1be51c420fa 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles perlin noise path", "homepage": "https://particles.js.org", "repository": { @@ -110,10 +110,10 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/noise-field": "4.0.0-beta.15", - "@tsparticles/perlin-noise": "4.0.0-beta.15", - "@tsparticles/plugin-move": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/noise-field": "4.0.0-beta.16", + "@tsparticles/perlin-noise": "4.0.0-beta.16", + "@tsparticles/plugin-move": "4.0.0-beta.16" }, "type": "module" } diff --git a/paths/perlinNoise/package.json b/paths/perlinNoise/package.json index 1287b4c9ab4..f7a69cb7836 100644 --- a/paths/perlinNoise/package.json +++ b/paths/perlinNoise/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-perlin-noise", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles perlin noise path", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/polygon/CHANGELOG.md b/paths/polygon/CHANGELOG.md index 8a6e4235a3c..1a790a97c0d 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/path-polygon + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/path-polygon diff --git a/paths/polygon/package.dist.json b/paths/polygon/package.dist.json index 0d520021bf1..fadcc141360 100644 --- a/paths/polygon/package.dist.json +++ b/paths/polygon/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-polygon", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles polygon path", "homepage": "https://particles.js.org", "repository": { @@ -110,8 +110,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/plugin-move": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-move": "4.0.0-beta.16" }, "type": "module" } diff --git a/paths/polygon/package.json b/paths/polygon/package.json index df15ce07822..293ce923f5f 100644 --- a/paths/polygon/package.json +++ b/paths/polygon/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-polygon", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles polygon path", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/random/CHANGELOG.md b/paths/random/CHANGELOG.md index 08fad9146e6..34ff7374cbc 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/path-random + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/path-random diff --git a/paths/random/package.dist.json b/paths/random/package.dist.json index d902a9e37d0..971fc44b79f 100644 --- a/paths/random/package.dist.json +++ b/paths/random/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-random", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles zig zag path", "homepage": "https://particles.js.org", "repository": { @@ -107,8 +107,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/plugin-move": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-move": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/paths/random/package.json b/paths/random/package.json index 1a0177b75cb..d09cbe34e03 100644 --- a/paths/random/package.json +++ b/paths/random/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-random", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles zig zag path", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/simplexNoise/CHANGELOG.md b/paths/simplexNoise/CHANGELOG.md index a8a0ca4c17f..e25f2a4e319 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/path-simplex-noise + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 fa02707fb3a..534d1ab5395 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles simplex noise path", "homepage": "https://particles.js.org", "repository": { @@ -110,10 +110,10 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/noise-field": "4.0.0-beta.15", - "@tsparticles/plugin-move": "4.0.0-beta.15", - "@tsparticles/simplex-noise": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/noise-field": "4.0.0-beta.16", + "@tsparticles/plugin-move": "4.0.0-beta.16", + "@tsparticles/simplex-noise": "4.0.0-beta.16" }, "type": "module" } diff --git a/paths/simplexNoise/package.json b/paths/simplexNoise/package.json index d876f012711..8e7910cd8b7 100644 --- a/paths/simplexNoise/package.json +++ b/paths/simplexNoise/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-simplex-noise", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles simplex noise path", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/spiral/CHANGELOG.md b/paths/spiral/CHANGELOG.md index be78e6c8e1f..733497bd5ba 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/path-spiral + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/path-spiral diff --git a/paths/spiral/package.dist.json b/paths/spiral/package.dist.json index 11d7783aba7..f0d93b2f4fb 100644 --- a/paths/spiral/package.dist.json +++ b/paths/spiral/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-spiral", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles spiral path", "homepage": "https://particles.js.org", "repository": { @@ -110,8 +110,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/plugin-move": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-move": "4.0.0-beta.16" }, "type": "module" } diff --git a/paths/spiral/package.json b/paths/spiral/package.json index d9bf9d40dc9..8c192bb46d7 100644 --- a/paths/spiral/package.json +++ b/paths/spiral/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-spiral", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles spiral path", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/svg/CHANGELOG.md b/paths/svg/CHANGELOG.md index 3e911c0d241..20c79c5c422 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/path-svg + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/path-svg diff --git a/paths/svg/package.dist.json b/paths/svg/package.dist.json index 9acb4cd5d3c..556e3c272d4 100644 --- a/paths/svg/package.dist.json +++ b/paths/svg/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-svg", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles svg path", "homepage": "https://particles.js.org", "repository": { @@ -107,8 +107,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/plugin-move": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-move": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/paths/svg/package.json b/paths/svg/package.json index 852d44223b2..56a56db7fab 100644 --- a/paths/svg/package.json +++ b/paths/svg/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-svg", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles svg path", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/zigzag/CHANGELOG.md b/paths/zigzag/CHANGELOG.md index b65c53b27a0..729d8d6493e 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/path-zig-zag + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 27c741d1740..27bdd20caca 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles zig zag path", "homepage": "https://particles.js.org", "repository": { @@ -107,8 +107,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/plugin-move": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-move": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/paths/zigzag/package.json b/paths/zigzag/package.json index 66e7aa4a7f6..32a8cab3065 100644 --- a/paths/zigzag/package.json +++ b/paths/zigzag/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-zig-zag", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles zig zag path", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/absorbers/CHANGELOG.md b/plugins/absorbers/CHANGELOG.md index 5b393d18254..5fd4accc2e5 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-absorbers + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/plugin-absorbers diff --git a/plugins/absorbers/package.dist.json b/plugins/absorbers/package.dist.json index 82b45084683..3e6f82e5185 100644 --- a/plugins/absorbers/package.dist.json +++ b/plugins/absorbers/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-absorbers", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles absorbers plugin", "homepage": "https://particles.js.org", "repository": { @@ -120,8 +120,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/plugin-interactivity": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-interactivity": "4.0.0-beta.16" }, "peerDependenciesMeta": { "@tsparticles/plugin-interactivity": { diff --git a/plugins/absorbers/package.json b/plugins/absorbers/package.json index c509a128d04..50e0fd0cbdc 100644 --- a/plugins/absorbers/package.json +++ b/plugins/absorbers/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-absorbers", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles absorbers plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/backgroundMask/CHANGELOG.md b/plugins/backgroundMask/CHANGELOG.md index 455c3b069a2..eadde955881 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-background-mask + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 f2b2f8a72bf..36f6d2cc553 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles background mask plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,7 +92,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/plugins/backgroundMask/package.json b/plugins/backgroundMask/package.json index b1473b66caf..d33e2d00207 100644 --- a/plugins/backgroundMask/package.json +++ b/plugins/backgroundMask/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-background-mask", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles background mask plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/blend/CHANGELOG.md b/plugins/blend/CHANGELOG.md index 4d919ad906e..3d7de28ecd9 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-blend + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/plugin-blend diff --git a/plugins/blend/package.dist.json b/plugins/blend/package.dist.json index aeab71e9493..0783b5a1d39 100644 --- a/plugins/blend/package.dist.json +++ b/plugins/blend/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-blend", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles blend plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,7 +92,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/plugins/blend/package.json b/plugins/blend/package.json index 32f8607ad19..dd1285bdbf4 100644 --- a/plugins/blend/package.json +++ b/plugins/blend/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-blend", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles blend plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/canvasMask/CHANGELOG.md b/plugins/canvasMask/CHANGELOG.md index c34cc82bcf7..5271ec80803 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-canvas-mask + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 84f90ec90b7..c89e6860d61 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles canvas mask plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,8 +92,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/canvas-utils": "4.0.0-beta.15", - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/canvas-utils": "4.0.0-beta.16", + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/plugins/canvasMask/package.json b/plugins/canvasMask/package.json index 62b2c5806af..de784c450f1 100644 --- a/plugins/canvasMask/package.json +++ b/plugins/canvasMask/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-canvas-mask", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 816bf337d47..bf864ee0fa5 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-hex-color + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 a80ad1d8f54..8dece1fdc0c 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles hex color plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/plugins/colors/hex/package.json b/plugins/colors/hex/package.json index 55259d033eb..6b42b608761 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.0-beta.15", + "version": "4.0.0-beta.16", "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 86b0d1b6232..48706e42ff6 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-hsl-color + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 9250d6125f9..ee2ef9fec18 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles HSL color plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/plugins/colors/hsl/package.json b/plugins/colors/hsl/package.json index 8e49820daa0..d289871d003 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.0-beta.15", + "version": "4.0.0-beta.16", "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 4418d7b84b1..4ea0e7aa71c 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-hsv-color + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 9135037b326..cd4336f58e9 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles HSV color plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/plugins/colors/hsv/package.json b/plugins/colors/hsv/package.json index 178086ce5e9..a33f9e30924 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.0-beta.15", + "version": "4.0.0-beta.16", "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 747530f569c..4751d0ef0d5 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-hwb-color + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 1653dd00717..a5f094f510e 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles HWB color plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/plugins/colors/hwb/package.json b/plugins/colors/hwb/package.json index c791652ad7a..dc641b41079 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.0-beta.15", + "version": "4.0.0-beta.16", "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 c6b3b5cd41f..2454016770c 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-lab-color + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 2e127095aeb..1b00dc296b2 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles LAB color plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/plugins/colors/lab/package.json b/plugins/colors/lab/package.json index 9dad0852e39..c986f679285 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.0-beta.15", + "version": "4.0.0-beta.16", "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 fae6e517d2e..8f29c641421 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-lch-color + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 fd90fa13b9e..0b900a64a52 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles LCH color plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/plugins/colors/lch/package.json b/plugins/colors/lch/package.json index 323870d0701..952ab47e282 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.0-beta.15", + "version": "4.0.0-beta.16", "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 d52da43946e..ae9dbfa5535 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-named-color + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 8648c9904a4..5dd6335a2d2 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles named color plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/plugins/colors/named/package.json b/plugins/colors/named/package.json index fde8bf77af3..b5e6d67bd99 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.0-beta.15", + "version": "4.0.0-beta.16", "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 c9e28741595..64bfe2e248d 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-oklab-color + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 1398afefae6..be9b8ada8b9 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles OKLAB color plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/plugins/colors/oklab/package.json b/plugins/colors/oklab/package.json index 784e78552ba..8ce2c30c7f7 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.0-beta.15", + "version": "4.0.0-beta.16", "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 5146262b761..e567cb03af8 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-oklch-color + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 9015323a2ee..aa1ca85267b 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles OKLCH color plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/plugins/colors/oklch/package.json b/plugins/colors/oklch/package.json index c11cee2e9a8..63660d6f5c3 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.0-beta.15", + "version": "4.0.0-beta.16", "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 ac25fa9d569..1a052b16e20 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-rgb-color + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 12d069d9dc0..240eff621af 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles RGB color plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/plugins/colors/rgb/package.json b/plugins/colors/rgb/package.json index ae3b24f080b..0600c6815fc 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.0-beta.15", + "version": "4.0.0-beta.16", "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 8dafd08e84e..ff453bc1de4 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-easing-back + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 841fceef510..8c64046688d 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles easing back plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/plugins/easings/back/package.json b/plugins/easings/back/package.json index 0fc243b323a..9569042340a 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.0-beta.15", + "version": "4.0.0-beta.16", "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 c26595de0e3..1772bf0a224 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-easing-bounce + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 f45cc896780..ebc37ba6b44 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles easing bounce plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/plugins/easings/bounce/package.json b/plugins/easings/bounce/package.json index ee69fb4e61b..75ce14c0bda 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.0-beta.15", + "version": "4.0.0-beta.16", "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 8b5357df747..effc514576b 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-easing-circ + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 877a9707731..3d41f0a55e0 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles easing circ plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/plugins/easings/circ/package.json b/plugins/easings/circ/package.json index 64e942d6778..956160ef1eb 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.0-beta.15", + "version": "4.0.0-beta.16", "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 4a37d3cd693..270b9fddd3d 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-easing-cubic + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 a919f5f061d..d32662a550d 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles easing cubic plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/plugins/easings/cubic/package.json b/plugins/easings/cubic/package.json index 7c3a122dffc..625aa95b62c 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.0-beta.15", + "version": "4.0.0-beta.16", "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 3b4cb1c7220..589d13988b0 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-easing-elastic + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 961fef0e1d1..43898646bde 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles easing elastic plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/plugins/easings/elastic/package.json b/plugins/easings/elastic/package.json index 61e111377de..ca3f9a7acc3 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.0-beta.15", + "version": "4.0.0-beta.16", "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 9b3cfdfe0b3..1bf6edb2e2b 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-easing-expo + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 0e108a2443b..d0b67111ab4 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles easing expo plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/plugins/easings/expo/package.json b/plugins/easings/expo/package.json index 03125372626..2f2ee7fec40 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.0-beta.15", + "version": "4.0.0-beta.16", "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 88ca2f489bb..a30585e3bc4 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-easing-gaussian + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 80a2f735a57..2e6071df683 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles easing gaussian plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "devDependencies": { "@tsparticles/engine": "workspace:*" diff --git a/plugins/easings/gaussian/package.json b/plugins/easings/gaussian/package.json index 5236fd275b8..b0342ae1ddc 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.0-beta.15", + "version": "4.0.0-beta.16", "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 e45befdb246..baf613a8b52 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-easing-linear + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 5a7dca3b98e..0eed44e77b1 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles easing linear plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "devDependencies": { "@tsparticles/engine": "workspace:*" diff --git a/plugins/easings/linear/package.json b/plugins/easings/linear/package.json index a0770577522..fc228d2590b 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.0-beta.15", + "version": "4.0.0-beta.16", "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 d6ee8c7f506..9bb95fd7a96 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-easing-quad + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 23fe4de358a..0c88a3dbe05 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles easing quad plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "devDependencies": { "@tsparticles/engine": "workspace:*" diff --git a/plugins/easings/quad/package.json b/plugins/easings/quad/package.json index c2218a3f2e4..830ea158d48 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.0-beta.15", + "version": "4.0.0-beta.16", "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 4d3f313b052..011fd5d3960 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-easing-quart + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 6eebd625b6b..ca6e3853303 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles easing quart plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/plugins/easings/quart/package.json b/plugins/easings/quart/package.json index fde29b1183a..e31a921fb71 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.0-beta.15", + "version": "4.0.0-beta.16", "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 dc93f81616b..04f95315ddc 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-easing-quint + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 af9e880f90c..4fdc3f77f5e 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles easing quint plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/plugins/easings/quint/package.json b/plugins/easings/quint/package.json index 5f2277e981d..13453fd8a5a 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.0-beta.15", + "version": "4.0.0-beta.16", "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 d03f0fd591d..e3ba865b015 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-easing-sigmoid + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 2ab3183b14a..a3a265df15a 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles easing sigmoid plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/plugins/easings/sigmoid/package.json b/plugins/easings/sigmoid/package.json index 87f592f311b..0ca69ba7003 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.0-beta.15", + "version": "4.0.0-beta.16", "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 12498838fa8..82971b7213c 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-easing-sine + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 e21a26f0df4..044af7dde52 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles easing sine plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/plugins/easings/sine/package.json b/plugins/easings/sine/package.json index 9b502531c6a..4d7a7f4180e 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.0-beta.15", + "version": "4.0.0-beta.16", "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 13f0c11990d..c2138414f69 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-easing-smoothstep + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 cbb0d6aa69f..8cca150c921 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles easing smoothstep plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/plugins/easings/smoothstep/package.json b/plugins/easings/smoothstep/package.json index 42183544004..65d1f92cd39 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles easing smoothstep plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/emitters/CHANGELOG.md b/plugins/emitters/CHANGELOG.md index 7982be636f8..753eedb1bcd 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-emitters + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/plugin-emitters diff --git a/plugins/emitters/package.dist.json b/plugins/emitters/package.dist.json index 21903c1d7e6..240d4ac4d16 100644 --- a/plugins/emitters/package.dist.json +++ b/plugins/emitters/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-emitters", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles emitters plugin", "homepage": "https://particles.js.org", "repository": { @@ -120,8 +120,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/plugin-interactivity": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-interactivity": "4.0.0-beta.16" }, "peerDependenciesMeta": { "@tsparticles/plugin-interactivity": { diff --git a/plugins/emitters/package.json b/plugins/emitters/package.json index 599194d2dc1..62ae3a7ec88 100644 --- a/plugins/emitters/package.json +++ b/plugins/emitters/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-emitters", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 e1d7f433727..0c313f43a03 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-emitters-shape-canvas + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 a416c6eafd1..d54f588d79b 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles emitters shape canvas plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,9 +106,9 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/canvas-utils": "4.0.0-beta.15", - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/plugin-emitters": "4.0.0-beta.15" + "@tsparticles/canvas-utils": "4.0.0-beta.16", + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-emitters": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/plugins/emittersShapes/canvas/package.json b/plugins/emittersShapes/canvas/package.json index e633e20c923..1ae22a84e73 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.0-beta.15", + "version": "4.0.0-beta.16", "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 d68eefc69be..116bdcb90b7 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-emitters-shape-circle + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 c3ad385ce53..682dd6309b9 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.0-beta.15", + "version": "4.0.0-beta.16", "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.0-beta.15", - "@tsparticles/plugin-emitters": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-emitters": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/plugins/emittersShapes/circle/package.json b/plugins/emittersShapes/circle/package.json index d5e1666a46c..54b56e210ab 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.0-beta.15", + "version": "4.0.0-beta.16", "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 fe5fc97befd..f1f63d1cf7c 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-emitters-shape-path + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 fb94daff0c5..e6059d77a67 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.0-beta.15", + "version": "4.0.0-beta.16", "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.0-beta.15", - "@tsparticles/plugin-emitters": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-emitters": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/plugins/emittersShapes/path/package.json b/plugins/emittersShapes/path/package.json index c810cff081b..c26a4e04005 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.0-beta.15", + "version": "4.0.0-beta.16", "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 a368d8f60e1..d913b7a898e 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-emitters-shape-polygon + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 7958238d86f..65f9918afa2 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.0-beta.15", + "version": "4.0.0-beta.16", "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.0-beta.15", - "@tsparticles/plugin-emitters": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-emitters": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/plugins/emittersShapes/polygon/package.json b/plugins/emittersShapes/polygon/package.json index eb4d56c8add..ae45201b833 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.0-beta.15", + "version": "4.0.0-beta.16", "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 7726aa93abe..740186c7c63 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-emitters-shape-square + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 7c8bc23b386..80d88a9ae73 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.0-beta.15", + "version": "4.0.0-beta.16", "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.0-beta.15", - "@tsparticles/plugin-emitters": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-emitters": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/plugins/emittersShapes/square/package.json b/plugins/emittersShapes/square/package.json index 00129169423..bb788fa728e 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.0-beta.15", + "version": "4.0.0-beta.16", "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 380a2ef0684..1f57c7e066c 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-export-image + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 24c9404a3c1..ec008773a35 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles export image plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/plugins/exports/image/package.json b/plugins/exports/image/package.json index a638d0f0e0b..af42b2c4272 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.0-beta.15", + "version": "4.0.0-beta.16", "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 99351a74501..0b2c6f85ed8 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-export-json + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 ce9eca221fe..3d4e54f969d 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles export json plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/plugins/exports/json/package.json b/plugins/exports/json/package.json index 28cf59200ed..1695b8b425c 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.0-beta.15", + "version": "4.0.0-beta.16", "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 ae32d600f25..56812572050 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-export-video + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 5d1d29f5f1e..533a953b7b5 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles export video plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/plugins/exports/video/package.json b/plugins/exports/video/package.json index c9ccd183ec7..e5dfa0b6d4a 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles export video plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/infection/CHANGELOG.md b/plugins/infection/CHANGELOG.md index fffc41b275a..8f72cf0928a 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-infection + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/plugin-infection diff --git a/plugins/infection/package.dist.json b/plugins/infection/package.dist.json index 68908e67aee..f6d2089ca5e 100644 --- a/plugins/infection/package.dist.json +++ b/plugins/infection/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-infection", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles infection plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,8 +106,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/plugin-interactivity": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-interactivity": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/plugins/infection/package.json b/plugins/infection/package.json index b2706d423e2..1a6a8a7a561 100644 --- a/plugins/infection/package.json +++ b/plugins/infection/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-infection", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles infection plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/interactivity/CHANGELOG.md b/plugins/interactivity/CHANGELOG.md index 925c0dadc40..9bc9bd89aa0 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-interactivity + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/plugin-interactivity diff --git a/plugins/interactivity/package.dist.json b/plugins/interactivity/package.dist.json index 8907eb5b806..f601a8e3169 100644 --- a/plugins/interactivity/package.dist.json +++ b/plugins/interactivity/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-interactivity", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles interactivity sickness plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,7 +92,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/plugins/interactivity/package.json b/plugins/interactivity/package.json index 1afc50c49ca..33d12acd46c 100644 --- a/plugins/interactivity/package.json +++ b/plugins/interactivity/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-interactivity", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles interactivity sickness plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/manualParticles/CHANGELOG.md b/plugins/manualParticles/CHANGELOG.md index 26e67dc6cdf..3a8664d8b28 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-manual-particles + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 2e6a9d6f382..5181ea40f46 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles manual particles plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,7 +92,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/plugins/manualParticles/package.json b/plugins/manualParticles/package.json index 32cfac2bacc..3a6628ee5c8 100644 --- a/plugins/manualParticles/package.json +++ b/plugins/manualParticles/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-manual-particles", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles manual particles plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/motion/CHANGELOG.md b/plugins/motion/CHANGELOG.md index 51419df45c5..d211dd5435a 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-motion + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/plugin-motion diff --git a/plugins/motion/package.dist.json b/plugins/motion/package.dist.json index 2d39c5dfd8a..3eb38c405f9 100644 --- a/plugins/motion/package.dist.json +++ b/plugins/motion/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-motion", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles motion sickness plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,7 +92,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/plugins/motion/package.json b/plugins/motion/package.json index 6f65b13bd4c..af3b8a50f6d 100644 --- a/plugins/motion/package.json +++ b/plugins/motion/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-motion", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles motion sickness plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/move/CHANGELOG.md b/plugins/move/CHANGELOG.md index e1b1fd4b048..beab8fdf236 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-move + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/plugin-move diff --git a/plugins/move/package.dist.json b/plugins/move/package.dist.json index 8d2993d8086..8fe1a101d26 100644 --- a/plugins/move/package.dist.json +++ b/plugins/move/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-move", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles Move plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,7 +92,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/plugins/move/package.json b/plugins/move/package.json index 00705e084fc..83288b3b30a 100644 --- a/plugins/move/package.json +++ b/plugins/move/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-move", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles Move plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/poisson/CHANGELOG.md b/plugins/poisson/CHANGELOG.md index 4259344ebb7..b94c7c95b9e 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-poisson-disc + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 a5dde40f0d4..bf9b3b8998a 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles poisson disc plugin", "homepage": "https://particles.js.org", "repository": { @@ -91,7 +91,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/plugins/poisson/package.json b/plugins/poisson/package.json index 5a447346685..6a317da377c 100644 --- a/plugins/poisson/package.json +++ b/plugins/poisson/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-poisson-disc", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles poisson disc plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/polygonMask/CHANGELOG.md b/plugins/polygonMask/CHANGELOG.md index 838f220d2db..791603a1896 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-polygon-mask + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 0f482fb4639..d61c51cf700 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles polygon mask plugin", "homepage": "https://particles.js.org", "repository": { @@ -94,7 +94,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/plugins/polygonMask/package.json b/plugins/polygonMask/package.json index be3be39bde5..f6d2ca47d4c 100644 --- a/plugins/polygonMask/package.json +++ b/plugins/polygonMask/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-polygon-mask", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles polygon mask plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/responsive/CHANGELOG.md b/plugins/responsive/CHANGELOG.md index 92b9127d0cb..d588abd3bb2 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-responsive + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/plugin-responsive diff --git a/plugins/responsive/package.dist.json b/plugins/responsive/package.dist.json index 6cb877202fd..8f9927117f9 100644 --- a/plugins/responsive/package.dist.json +++ b/plugins/responsive/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-responsive", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles responsive plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,7 +92,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/plugins/responsive/package.json b/plugins/responsive/package.json index 87851605689..296e589e8ea 100644 --- a/plugins/responsive/package.json +++ b/plugins/responsive/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-responsive", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles responsive plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/sounds/CHANGELOG.md b/plugins/sounds/CHANGELOG.md index a7f5f34c7ad..f6c99cbc76c 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-sounds + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/plugin-sounds diff --git a/plugins/sounds/package.dist.json b/plugins/sounds/package.dist.json index ac9e1393b20..f31635b707c 100644 --- a/plugins/sounds/package.dist.json +++ b/plugins/sounds/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-sounds", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles sounds plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,7 +92,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/plugins/sounds/package.json b/plugins/sounds/package.json index 1ef34107873..02cd863b2d6 100644 --- a/plugins/sounds/package.json +++ b/plugins/sounds/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-sounds", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles sounds plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/themes/CHANGELOG.md b/plugins/themes/CHANGELOG.md index e8268e8141c..32d8e810a15 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-themes + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/plugin-themes diff --git a/plugins/themes/package.dist.json b/plugins/themes/package.dist.json index 346ad53b33b..06426c6114a 100644 --- a/plugins/themes/package.dist.json +++ b/plugins/themes/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-themes", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles themes plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,7 +92,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/plugins/themes/package.json b/plugins/themes/package.json index 255f86d3178..d374dc543c9 100644 --- a/plugins/themes/package.json +++ b/plugins/themes/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-themes", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles themes plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/trail/CHANGELOG.md b/plugins/trail/CHANGELOG.md index f123ecc7691..723bef832d1 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-trail + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/plugin-trail diff --git a/plugins/trail/package.dist.json b/plugins/trail/package.dist.json index b106d3b823c..d2f76003177 100644 --- a/plugins/trail/package.dist.json +++ b/plugins/trail/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-trail", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles trail plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,7 +92,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/plugins/trail/package.json b/plugins/trail/package.json index 2ac13b54da8..a88fc3d74d1 100644 --- a/plugins/trail/package.json +++ b/plugins/trail/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-trail", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles trail plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/zoom/CHANGELOG.md b/plugins/zoom/CHANGELOG.md index 70c9a52f12c..0b145755d47 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/plugin-zoom + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/plugin-zoom diff --git a/plugins/zoom/package.dist.json b/plugins/zoom/package.dist.json index 270501cae66..df4837596ac 100644 --- a/plugins/zoom/package.dist.json +++ b/plugins/zoom/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-zoom", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles zoom plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,7 +92,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/plugins/zoom/package.json b/plugins/zoom/package.json index a01a983d237..3bb8c0c67ac 100644 --- a/plugins/zoom/package.json +++ b/plugins/zoom/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-zoom", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles zoom plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 77b0a3d0471..2f393f74d5e 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -6873,10 +6873,10 @@ importers: interactions/light/dist: dependencies: "@tsparticles/engine": - specifier: 4.0.0-beta.15 + specifier: 4.0.0-beta.16 version: link:../../../engine/dist "@tsparticles/plugin-interactivity": - specifier: 4.0.0-beta.15 + specifier: 4.0.0-beta.16 version: link:../../../plugins/interactivity/dist interactions/particles/attract: diff --git a/presets/ambient/CHANGELOG.md b/presets/ambient/CHANGELOG.md index 0735977e70c..06d4e72e27f 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/preset-ambient + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/preset-ambient diff --git a/presets/ambient/package.dist.json b/presets/ambient/package.dist.json index 4bf97e8a7d8..651339244c5 100644 --- a/presets/ambient/package.dist.json +++ b/presets/ambient/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-ambient", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles ambient preset", "homepage": "https://particles.js.org", "repository": { @@ -106,8 +106,8 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.0.0-beta.15", - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/basic": "4.0.0-beta.16", + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/presets/ambient/package.json b/presets/ambient/package.json index 75077044fc2..1edb8c229a2 100644 --- a/presets/ambient/package.json +++ b/presets/ambient/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-ambient", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles ambient preset", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/bigCircles/CHANGELOG.md b/presets/bigCircles/CHANGELOG.md index 0eb3ae26d7f..52ca6f48e71 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/preset-big-circles + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 f0e16dc4739..34bc584a45f 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles big circles preset", "homepage": "https://particles.js.org", "repository": { @@ -105,8 +105,8 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.0.0-beta.15", - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/basic": "4.0.0-beta.16", + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/presets/bigCircles/package.json b/presets/bigCircles/package.json index c68d23d7cf3..8f40091acda 100644 --- a/presets/bigCircles/package.json +++ b/presets/bigCircles/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-big-circles", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles big circles preset", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/bubbles/CHANGELOG.md b/presets/bubbles/CHANGELOG.md index 2081eb71b4d..002e634825e 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/preset-bubbles + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/preset-bubbles diff --git a/presets/bubbles/package.dist.json b/presets/bubbles/package.dist.json index abeba01a9e1..8ad3af9868e 100644 --- a/presets/bubbles/package.dist.json +++ b/presets/bubbles/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-bubbles", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles bubbles preset", "homepage": "https://particles.js.org", "repository": { @@ -106,9 +106,9 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.0.0-beta.15", - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/plugin-emitters": "4.0.0-beta.15" + "@tsparticles/basic": "4.0.0-beta.16", + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-emitters": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/presets/bubbles/package.json b/presets/bubbles/package.json index 7fe7aee8bdb..603f8fdb986 100644 --- a/presets/bubbles/package.json +++ b/presets/bubbles/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-bubbles", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles bubbles preset", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/confetti/CHANGELOG.md b/presets/confetti/CHANGELOG.md index e34dc1ccdfd..f3e3135edf6 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/preset-confetti + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/preset-confetti diff --git a/presets/confetti/package.dist.json b/presets/confetti/package.dist.json index 42c5cdac38d..f977934b470 100644 --- a/presets/confetti/package.dist.json +++ b/presets/confetti/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-confetti", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles confetti preset", "homepage": "https://particles.js.org", "repository": { @@ -99,17 +99,17 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.0.0-beta.15", - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/palette-confetti": "4.0.0-beta.15", - "@tsparticles/plugin-emitters": "4.0.0-beta.15", - "@tsparticles/plugin-motion": "4.0.0-beta.15", - "@tsparticles/shape-square": "4.0.0-beta.15", - "@tsparticles/updater-life": "4.0.0-beta.15", - "@tsparticles/updater-roll": "4.0.0-beta.15", - "@tsparticles/updater-rotate": "4.0.0-beta.15", - "@tsparticles/updater-tilt": "4.0.0-beta.15", - "@tsparticles/updater-wobble": "4.0.0-beta.15" + "@tsparticles/basic": "4.0.0-beta.16", + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/palette-confetti": "4.0.0-beta.16", + "@tsparticles/plugin-emitters": "4.0.0-beta.16", + "@tsparticles/plugin-motion": "4.0.0-beta.16", + "@tsparticles/shape-square": "4.0.0-beta.16", + "@tsparticles/updater-life": "4.0.0-beta.16", + "@tsparticles/updater-roll": "4.0.0-beta.16", + "@tsparticles/updater-rotate": "4.0.0-beta.16", + "@tsparticles/updater-tilt": "4.0.0-beta.16", + "@tsparticles/updater-wobble": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/presets/confetti/package.json b/presets/confetti/package.json index eb458b109de..d4bfa329b5a 100644 --- a/presets/confetti/package.json +++ b/presets/confetti/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-confetti", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles confetti preset", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/confettiCannon/CHANGELOG.md b/presets/confettiCannon/CHANGELOG.md index 1d886d12f15..5e42efdf6f2 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/preset-confetti-cannon + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 76df684840c..69b9191d7e6 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles confetti cannon preset", "homepage": "https://particles.js.org", "repository": { @@ -106,18 +106,18 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.0.0-beta.15", - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/interaction-external-cannon": "4.0.0-beta.15", - "@tsparticles/palette-confetti": "4.0.0-beta.15", - "@tsparticles/plugin-interactivity": "4.0.0-beta.15", - "@tsparticles/plugin-motion": "4.0.0-beta.15", - "@tsparticles/shape-square": "4.0.0-beta.15", - "@tsparticles/updater-life": "4.0.0-beta.15", - "@tsparticles/updater-roll": "4.0.0-beta.15", - "@tsparticles/updater-rotate": "4.0.0-beta.15", - "@tsparticles/updater-tilt": "4.0.0-beta.15", - "@tsparticles/updater-wobble": "4.0.0-beta.15" + "@tsparticles/basic": "4.0.0-beta.16", + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/interaction-external-cannon": "4.0.0-beta.16", + "@tsparticles/palette-confetti": "4.0.0-beta.16", + "@tsparticles/plugin-interactivity": "4.0.0-beta.16", + "@tsparticles/plugin-motion": "4.0.0-beta.16", + "@tsparticles/shape-square": "4.0.0-beta.16", + "@tsparticles/updater-life": "4.0.0-beta.16", + "@tsparticles/updater-roll": "4.0.0-beta.16", + "@tsparticles/updater-rotate": "4.0.0-beta.16", + "@tsparticles/updater-tilt": "4.0.0-beta.16", + "@tsparticles/updater-wobble": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/presets/confettiCannon/package.json b/presets/confettiCannon/package.json index 2e7ff814551..c9b633548d6 100644 --- a/presets/confettiCannon/package.json +++ b/presets/confettiCannon/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-confetti-cannon", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles confetti cannon preset", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/confettiExplosions/CHANGELOG.md b/presets/confettiExplosions/CHANGELOG.md index 744427dcdc1..ce71833e00f 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/preset-confetti-explosions + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 5d112ac51e1..c1e56b80e5d 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles confetti explosions preset", "homepage": "https://particles.js.org", "repository": { @@ -106,16 +106,16 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.0.0-beta.15", - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/palette-confetti": "4.0.0-beta.15", - "@tsparticles/plugin-emitters": "4.0.0-beta.15", - "@tsparticles/plugin-motion": "4.0.0-beta.15", - "@tsparticles/shape-square": "4.0.0-beta.15", - "@tsparticles/updater-roll": "4.0.0-beta.15", - "@tsparticles/updater-rotate": "4.0.0-beta.15", - "@tsparticles/updater-tilt": "4.0.0-beta.15", - "@tsparticles/updater-wobble": "4.0.0-beta.15" + "@tsparticles/basic": "4.0.0-beta.16", + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/palette-confetti": "4.0.0-beta.16", + "@tsparticles/plugin-emitters": "4.0.0-beta.16", + "@tsparticles/plugin-motion": "4.0.0-beta.16", + "@tsparticles/shape-square": "4.0.0-beta.16", + "@tsparticles/updater-roll": "4.0.0-beta.16", + "@tsparticles/updater-rotate": "4.0.0-beta.16", + "@tsparticles/updater-tilt": "4.0.0-beta.16", + "@tsparticles/updater-wobble": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/presets/confettiExplosions/package.json b/presets/confettiExplosions/package.json index f76611303c2..a8a01c86a34 100644 --- a/presets/confettiExplosions/package.json +++ b/presets/confettiExplosions/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-confetti-explosions", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles confetti explosions preset", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/confettiFalling/CHANGELOG.md b/presets/confettiFalling/CHANGELOG.md index 5e236a946b4..eef957f2950 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/preset-confetti-falling + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 10876382755..353656463c1 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles confetti falling preset", "homepage": "https://particles.js.org", "repository": { @@ -106,15 +106,15 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.0.0-beta.15", - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/palette-confetti": "4.0.0-beta.15", - "@tsparticles/plugin-motion": "4.0.0-beta.15", - "@tsparticles/shape-square": "4.0.0-beta.15", - "@tsparticles/updater-roll": "4.0.0-beta.15", - "@tsparticles/updater-rotate": "4.0.0-beta.15", - "@tsparticles/updater-tilt": "4.0.0-beta.15", - "@tsparticles/updater-wobble": "4.0.0-beta.15" + "@tsparticles/basic": "4.0.0-beta.16", + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/palette-confetti": "4.0.0-beta.16", + "@tsparticles/plugin-motion": "4.0.0-beta.16", + "@tsparticles/shape-square": "4.0.0-beta.16", + "@tsparticles/updater-roll": "4.0.0-beta.16", + "@tsparticles/updater-rotate": "4.0.0-beta.16", + "@tsparticles/updater-tilt": "4.0.0-beta.16", + "@tsparticles/updater-wobble": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/presets/confettiFalling/package.json b/presets/confettiFalling/package.json index 711a525ade4..495de055c0a 100644 --- a/presets/confettiFalling/package.json +++ b/presets/confettiFalling/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-confetti-falling", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles confetti falling preset", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/confettiParade/CHANGELOG.md b/presets/confettiParade/CHANGELOG.md index 5b8d4722832..c10e715fbf4 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/preset-confetti-parade + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 a482a5e3240..7911ac3e5c5 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles confetti parade preset", "homepage": "https://particles.js.org", "repository": { @@ -106,17 +106,17 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.0.0-beta.15", - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/palette-confetti": "4.0.0-beta.15", - "@tsparticles/plugin-emitters": "4.0.0-beta.15", - "@tsparticles/plugin-motion": "4.0.0-beta.15", - "@tsparticles/shape-square": "4.0.0-beta.15", - "@tsparticles/updater-life": "4.0.0-beta.15", - "@tsparticles/updater-roll": "4.0.0-beta.15", - "@tsparticles/updater-rotate": "4.0.0-beta.15", - "@tsparticles/updater-tilt": "4.0.0-beta.15", - "@tsparticles/updater-wobble": "4.0.0-beta.15" + "@tsparticles/basic": "4.0.0-beta.16", + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/palette-confetti": "4.0.0-beta.16", + "@tsparticles/plugin-emitters": "4.0.0-beta.16", + "@tsparticles/plugin-motion": "4.0.0-beta.16", + "@tsparticles/shape-square": "4.0.0-beta.16", + "@tsparticles/updater-life": "4.0.0-beta.16", + "@tsparticles/updater-roll": "4.0.0-beta.16", + "@tsparticles/updater-rotate": "4.0.0-beta.16", + "@tsparticles/updater-tilt": "4.0.0-beta.16", + "@tsparticles/updater-wobble": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/presets/confettiParade/package.json b/presets/confettiParade/package.json index cdc486c9403..11757098159 100644 --- a/presets/confettiParade/package.json +++ b/presets/confettiParade/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-confetti-parade", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles confetti parade preset", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/fire/CHANGELOG.md b/presets/fire/CHANGELOG.md index 9e3ee7ad8ae..d523df0b417 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/preset-fire + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/preset-fire diff --git a/presets/fire/package.dist.json b/presets/fire/package.dist.json index 7e7375e1c80..3001d916277 100644 --- a/presets/fire/package.dist.json +++ b/presets/fire/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-fire", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles fire preset", "homepage": "https://particles.js.org", "repository": { @@ -99,10 +99,10 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.0.0-beta.15", - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/interaction-external-push": "4.0.0-beta.15", - "@tsparticles/plugin-interactivity": "4.0.0-beta.15" + "@tsparticles/basic": "4.0.0-beta.16", + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/interaction-external-push": "4.0.0-beta.16", + "@tsparticles/plugin-interactivity": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/presets/fire/package.json b/presets/fire/package.json index ad41a8b1fd2..ed85ac02c46 100644 --- a/presets/fire/package.json +++ b/presets/fire/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-fire", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles fire preset", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/firefly/CHANGELOG.md b/presets/firefly/CHANGELOG.md index 03493b6c15c..3bf3d014390 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/preset-firefly + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/preset-firefly diff --git a/presets/firefly/package.dist.json b/presets/firefly/package.dist.json index 99f7dd4df5c..f47c6deb5f2 100644 --- a/presets/firefly/package.dist.json +++ b/presets/firefly/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-firefly", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles firefly preset", "homepage": "https://particles.js.org", "repository": { @@ -106,11 +106,11 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.0.0-beta.15", - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/interaction-external-trail": "4.0.0-beta.15", - "@tsparticles/plugin-interactivity": "4.0.0-beta.15", - "@tsparticles/updater-life": "4.0.0-beta.15" + "@tsparticles/basic": "4.0.0-beta.16", + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/interaction-external-trail": "4.0.0-beta.16", + "@tsparticles/plugin-interactivity": "4.0.0-beta.16", + "@tsparticles/updater-life": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/presets/firefly/package.json b/presets/firefly/package.json index 636b727085a..7d49a5eb0d4 100644 --- a/presets/firefly/package.json +++ b/presets/firefly/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-firefly", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles firefly preset", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/fireworks/CHANGELOG.md b/presets/fireworks/CHANGELOG.md index 20332fa7492..3b2b84ca964 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/preset-fireworks + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/preset-fireworks diff --git a/presets/fireworks/package.dist.json b/presets/fireworks/package.dist.json index cec7fc3cbf1..1242228fbbd 100644 --- a/presets/fireworks/package.dist.json +++ b/presets/fireworks/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-fireworks", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles fireworks preset", "homepage": "https://particles.js.org", "repository": { @@ -106,16 +106,16 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.0.0-beta.15", - "@tsparticles/effect-trail": "4.0.0-beta.15", - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/plugin-emitters": "4.0.0-beta.15", - "@tsparticles/plugin-emitters-shape-square": "4.0.0-beta.15", - "@tsparticles/plugin-sounds": "4.0.0-beta.15", - "@tsparticles/shape-line": "4.0.0-beta.15", - "@tsparticles/updater-destroy": "4.0.0-beta.15", - "@tsparticles/updater-life": "4.0.0-beta.15", - "@tsparticles/updater-rotate": "4.0.0-beta.15" + "@tsparticles/basic": "4.0.0-beta.16", + "@tsparticles/effect-trail": "4.0.0-beta.16", + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-emitters": "4.0.0-beta.16", + "@tsparticles/plugin-emitters-shape-square": "4.0.0-beta.16", + "@tsparticles/plugin-sounds": "4.0.0-beta.16", + "@tsparticles/shape-line": "4.0.0-beta.16", + "@tsparticles/updater-destroy": "4.0.0-beta.16", + "@tsparticles/updater-life": "4.0.0-beta.16", + "@tsparticles/updater-rotate": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/presets/fireworks/package.json b/presets/fireworks/package.json index b222f39de3a..6bab0338b9b 100644 --- a/presets/fireworks/package.json +++ b/presets/fireworks/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-fireworks", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles fireworks preset", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/fountain/CHANGELOG.md b/presets/fountain/CHANGELOG.md index 68b9c9b0432..9c286b83c5e 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/preset-fountain + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/preset-fountain diff --git a/presets/fountain/package.dist.json b/presets/fountain/package.dist.json index e2d5b37d329..14bc88c4fb0 100644 --- a/presets/fountain/package.dist.json +++ b/presets/fountain/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-fountain", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles fountain preset", "homepage": "https://particles.js.org", "repository": { @@ -106,11 +106,11 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.0.0-beta.15", - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/plugin-emitters": "4.0.0-beta.15", - "@tsparticles/plugin-trail": "4.0.0-beta.15", - "@tsparticles/updater-destroy": "4.0.0-beta.15" + "@tsparticles/basic": "4.0.0-beta.16", + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-emitters": "4.0.0-beta.16", + "@tsparticles/plugin-trail": "4.0.0-beta.16", + "@tsparticles/updater-destroy": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/presets/fountain/package.json b/presets/fountain/package.json index a80ae081f69..b43e719db98 100644 --- a/presets/fountain/package.json +++ b/presets/fountain/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-fountain", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles fountain preset", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/hyperspace/CHANGELOG.md b/presets/hyperspace/CHANGELOG.md index 4244ae7213a..febdea5a951 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/preset-hyperspace + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/preset-hyperspace diff --git a/presets/hyperspace/package.dist.json b/presets/hyperspace/package.dist.json index 50def323213..0afdbb39e9f 100644 --- a/presets/hyperspace/package.dist.json +++ b/presets/hyperspace/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-hyperspace", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles hyperspace preset", "homepage": "https://particles.js.org", "repository": { @@ -106,12 +106,12 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.0.0-beta.15", - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/plugin-emitters": "4.0.0-beta.15", - "@tsparticles/plugin-emitters-shape-square": "4.0.0-beta.15", - "@tsparticles/plugin-trail": "4.0.0-beta.15", - "@tsparticles/updater-life": "4.0.0-beta.15" + "@tsparticles/basic": "4.0.0-beta.16", + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-emitters": "4.0.0-beta.16", + "@tsparticles/plugin-emitters-shape-square": "4.0.0-beta.16", + "@tsparticles/plugin-trail": "4.0.0-beta.16", + "@tsparticles/updater-life": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/presets/hyperspace/package.json b/presets/hyperspace/package.json index 2c8fc303ad3..5b4abf1396f 100644 --- a/presets/hyperspace/package.json +++ b/presets/hyperspace/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-hyperspace", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles hyperspace preset", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/links/CHANGELOG.md b/presets/links/CHANGELOG.md index ba58680533d..b0b7221a2e6 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/preset-links + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/preset-links diff --git a/presets/links/package.dist.json b/presets/links/package.dist.json index 1ca05862715..81b2f0b16c9 100644 --- a/presets/links/package.dist.json +++ b/presets/links/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-links", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles links preset", "homepage": "https://particles.js.org", "repository": { @@ -106,10 +106,10 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.0.0-beta.15", - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/interaction-particles-links": "4.0.0-beta.15", - "@tsparticles/plugin-interactivity": "4.0.0-beta.15" + "@tsparticles/basic": "4.0.0-beta.16", + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/interaction-particles-links": "4.0.0-beta.16", + "@tsparticles/plugin-interactivity": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/presets/links/package.json b/presets/links/package.json index 0dc532ae777..3926fc5869c 100644 --- a/presets/links/package.json +++ b/presets/links/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-links", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles links preset", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/matrix/CHANGELOG.md b/presets/matrix/CHANGELOG.md index 6c4b7d2b1e0..f8a02f6ed58 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/preset-matrix + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/preset-matrix diff --git a/presets/matrix/package.dist.json b/presets/matrix/package.dist.json index 74fda57bc72..7d2b80f923d 100644 --- a/presets/matrix/package.dist.json +++ b/presets/matrix/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-matrix", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles matrix preset", "homepage": "https://particles.js.org", "repository": { @@ -106,12 +106,12 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.0.0-beta.15", - "@tsparticles/effect-shadow": "4.0.0-beta.15", - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/plugin-poisson-disc": "4.0.0-beta.15", - "@tsparticles/plugin-trail": "4.0.0-beta.15", - "@tsparticles/shape-matrix": "4.0.0-beta.15" + "@tsparticles/basic": "4.0.0-beta.16", + "@tsparticles/effect-shadow": "4.0.0-beta.16", + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-poisson-disc": "4.0.0-beta.16", + "@tsparticles/plugin-trail": "4.0.0-beta.16", + "@tsparticles/shape-matrix": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/presets/matrix/package.json b/presets/matrix/package.json index 8cdb7582f1c..2d89c26ba69 100644 --- a/presets/matrix/package.json +++ b/presets/matrix/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-matrix", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles matrix preset", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/seaAnemone/CHANGELOG.md b/presets/seaAnemone/CHANGELOG.md index d8bcf1ffcbc..ed59f626e0c 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/preset-sea-anemone + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 f83de19b66a..27878204b0f 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles sea anemone preset", "homepage": "https://particles.js.org", "repository": { @@ -106,12 +106,12 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.0.0-beta.15", - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/path-curves": "4.0.0-beta.15", - "@tsparticles/plugin-emitters": "4.0.0-beta.15", - "@tsparticles/plugin-interactivity": "4.0.0-beta.15", - "@tsparticles/plugin-trail": "4.0.0-beta.15" + "@tsparticles/basic": "4.0.0-beta.16", + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/path-curves": "4.0.0-beta.16", + "@tsparticles/plugin-emitters": "4.0.0-beta.16", + "@tsparticles/plugin-interactivity": "4.0.0-beta.16", + "@tsparticles/plugin-trail": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/presets/seaAnemone/package.json b/presets/seaAnemone/package.json index 54c1271f027..6e9c2a56888 100644 --- a/presets/seaAnemone/package.json +++ b/presets/seaAnemone/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-sea-anemone", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles sea anemone preset", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/snow/CHANGELOG.md b/presets/snow/CHANGELOG.md index 09a706fd07f..c970c70a569 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/preset-snow + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/preset-snow diff --git a/presets/snow/package.dist.json b/presets/snow/package.dist.json index 9c57b47182d..30ebf32ec4b 100644 --- a/presets/snow/package.dist.json +++ b/presets/snow/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-snow", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles snow preset", "homepage": "https://particles.js.org", "repository": { @@ -106,10 +106,10 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.0.0-beta.15", - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/palette-snowfall": "4.0.0-beta.15", - "@tsparticles/updater-wobble": "4.0.0-beta.15" + "@tsparticles/basic": "4.0.0-beta.16", + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/palette-snowfall": "4.0.0-beta.16", + "@tsparticles/updater-wobble": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/presets/snow/package.json b/presets/snow/package.json index 0404d98f5ec..2c5e369cd9c 100644 --- a/presets/snow/package.json +++ b/presets/snow/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-snow", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles snow preset", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/squares/CHANGELOG.md b/presets/squares/CHANGELOG.md index fe7f257f029..ec6ba92b1f0 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/preset-squares + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/preset-squares diff --git a/presets/squares/package.dist.json b/presets/squares/package.dist.json index 90679773181..f743caa7cb1 100644 --- a/presets/squares/package.dist.json +++ b/presets/squares/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-squares", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles squares preset", "homepage": "https://particles.js.org", "repository": { @@ -106,13 +106,13 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/plugin-emitters": "4.0.0-beta.15", - "@tsparticles/plugin-hex-color": "4.0.0-beta.15", - "@tsparticles/shape-square": "4.0.0-beta.15", - "@tsparticles/updater-paint": "4.0.0-beta.15", - "@tsparticles/updater-rotate": "4.0.0-beta.15", - "@tsparticles/updater-size": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-emitters": "4.0.0-beta.16", + "@tsparticles/plugin-hex-color": "4.0.0-beta.16", + "@tsparticles/shape-square": "4.0.0-beta.16", + "@tsparticles/updater-paint": "4.0.0-beta.16", + "@tsparticles/updater-rotate": "4.0.0-beta.16", + "@tsparticles/updater-size": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/presets/squares/package.json b/presets/squares/package.json index ad9457776e9..72915d9e8f5 100644 --- a/presets/squares/package.json +++ b/presets/squares/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-squares", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles squares preset", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/stars/CHANGELOG.md b/presets/stars/CHANGELOG.md index 2832af70b8f..8a5008a1406 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/preset-stars + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/preset-stars diff --git a/presets/stars/package.dist.json b/presets/stars/package.dist.json index 4cfcb91170f..a50799d2480 100644 --- a/presets/stars/package.dist.json +++ b/presets/stars/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-stars", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles stars preset", "homepage": "https://particles.js.org", "repository": { @@ -106,8 +106,8 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.0.0-beta.15", - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/basic": "4.0.0-beta.16", + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/presets/stars/package.json b/presets/stars/package.json index 4b97280f48e..ba03cb8ea53 100644 --- a/presets/stars/package.json +++ b/presets/stars/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-stars", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles stars preset", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/triangles/CHANGELOG.md b/presets/triangles/CHANGELOG.md index 95c4348f5cc..c3c034c8b56 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/preset-triangles + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/preset-triangles diff --git a/presets/triangles/package.dist.json b/presets/triangles/package.dist.json index e1f9137b7a9..584b5fddf37 100644 --- a/presets/triangles/package.dist.json +++ b/presets/triangles/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-triangles", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles triangles preset", "homepage": "https://particles.js.org", "repository": { @@ -106,10 +106,10 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.0.0-beta.15", - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/interaction-particles-links": "4.0.0-beta.15", - "@tsparticles/plugin-interactivity": "4.0.0-beta.15" + "@tsparticles/basic": "4.0.0-beta.16", + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/interaction-particles-links": "4.0.0-beta.16", + "@tsparticles/plugin-interactivity": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/presets/triangles/package.json b/presets/triangles/package.json index effeb2319ee..9703a810738 100644 --- a/presets/triangles/package.json +++ b/presets/triangles/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-triangles", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles triangles preset", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/arrow/CHANGELOG.md b/shapes/arrow/CHANGELOG.md index c68f3460929..48190ca2100 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/shape-arrow + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/shape-arrow diff --git a/shapes/arrow/package.dist.json b/shapes/arrow/package.dist.json index 0d6af124c33..d362ed1f59b 100644 --- a/shapes/arrow/package.dist.json +++ b/shapes/arrow/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-arrow", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles arrow shape", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/shapes/arrow/package.json b/shapes/arrow/package.json index 1818c5281c5..576fa2f3638 100644 --- a/shapes/arrow/package.json +++ b/shapes/arrow/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-arrow", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles arrow shape", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/cards/CHANGELOG.md b/shapes/cards/CHANGELOG.md index 739170f121e..c575ace121a 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/shape-cards + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/shape-cards diff --git a/shapes/cards/package.dist.json b/shapes/cards/package.dist.json index cb54494108c..79a70d2b724 100644 --- a/shapes/cards/package.dist.json +++ b/shapes/cards/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-cards", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles cards shape", "homepage": "https://particles.js.org", "repository": { @@ -190,8 +190,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/path-utils": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/path-utils": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/shapes/cards/package.json b/shapes/cards/package.json index 0d901ab558e..5bdadb56764 100644 --- a/shapes/cards/package.json +++ b/shapes/cards/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-cards", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles cards shape", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/circle/CHANGELOG.md b/shapes/circle/CHANGELOG.md index 8db25f2b336..55c3facb506 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/shape-circle + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/shape-circle diff --git a/shapes/circle/package.dist.json b/shapes/circle/package.dist.json index ec2e88ab604..9c69527820b 100644 --- a/shapes/circle/package.dist.json +++ b/shapes/circle/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-circle", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles circle shape", "homepage": "https://particles.js.org", "repository": { @@ -65,7 +65,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/shapes/circle/package.json b/shapes/circle/package.json index e7ad6b75508..54e1f9bfc21 100644 --- a/shapes/circle/package.json +++ b/shapes/circle/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-circle", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles circle shape", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/cog/CHANGELOG.md b/shapes/cog/CHANGELOG.md index 65dbeabb407..7dc4d5ac883 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/shape-cog + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/shape-cog diff --git a/shapes/cog/package.dist.json b/shapes/cog/package.dist.json index bf218201091..4a9840b176c 100644 --- a/shapes/cog/package.dist.json +++ b/shapes/cog/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-cog", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles cog shape", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/shapes/cog/package.json b/shapes/cog/package.json index 5cda3e5c975..e4e537d8b6d 100644 --- a/shapes/cog/package.json +++ b/shapes/cog/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-cog", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles cog shape", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/emoji/CHANGELOG.md b/shapes/emoji/CHANGELOG.md index 938c620d424..9ae9fed5aa8 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/shape-emoji + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/shape-emoji diff --git a/shapes/emoji/package.dist.json b/shapes/emoji/package.dist.json index 03d1b70ffd3..9e53e98ccb3 100644 --- a/shapes/emoji/package.dist.json +++ b/shapes/emoji/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-emoji", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles emoji shape", "homepage": "https://particles.js.org", "repository": { @@ -65,8 +65,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/canvas-utils": "4.0.0-beta.15", - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/canvas-utils": "4.0.0-beta.16", + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/shapes/emoji/package.json b/shapes/emoji/package.json index 055214d2b89..682c93fd2d6 100644 --- a/shapes/emoji/package.json +++ b/shapes/emoji/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-emoji", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles emoji shape", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/heart/CHANGELOG.md b/shapes/heart/CHANGELOG.md index 35269c638a8..eaca074f327 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/shape-heart + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/shape-heart diff --git a/shapes/heart/package.dist.json b/shapes/heart/package.dist.json index e50cf435151..58731705982 100644 --- a/shapes/heart/package.dist.json +++ b/shapes/heart/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-heart", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles heart shape", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/shapes/heart/package.json b/shapes/heart/package.json index 3b72aef7822..d8ebb554c16 100644 --- a/shapes/heart/package.json +++ b/shapes/heart/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-heart", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles heart shape", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/image/CHANGELOG.md b/shapes/image/CHANGELOG.md index ab4cf40293a..b21b0619279 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/shape-image + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/shape-image diff --git a/shapes/image/package.dist.json b/shapes/image/package.dist.json index 498cf954a87..89f038fe3b8 100644 --- a/shapes/image/package.dist.json +++ b/shapes/image/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-image", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles image shape", "homepage": "https://particles.js.org", "repository": { @@ -65,7 +65,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/shapes/image/package.json b/shapes/image/package.json index d9003a1e33e..301c285a296 100644 --- a/shapes/image/package.json +++ b/shapes/image/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-image", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles image shape", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/infinity/CHANGELOG.md b/shapes/infinity/CHANGELOG.md index a81e0b619bb..d670f75dccc 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/shape-infinity + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/shape-infinity diff --git a/shapes/infinity/package.dist.json b/shapes/infinity/package.dist.json index 6ab261f9449..6868d52dbb1 100644 --- a/shapes/infinity/package.dist.json +++ b/shapes/infinity/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-infinity", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles infinity shape", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/shapes/infinity/package.json b/shapes/infinity/package.json index 14f2ec0cbe5..8ab2d6ff48c 100644 --- a/shapes/infinity/package.json +++ b/shapes/infinity/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-infinity", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles infinity shape", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/line/CHANGELOG.md b/shapes/line/CHANGELOG.md index f37fd908b48..72ae277a0d6 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/shape-line + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/shape-line diff --git a/shapes/line/package.dist.json b/shapes/line/package.dist.json index 836fd70444f..67c4aec90b5 100644 --- a/shapes/line/package.dist.json +++ b/shapes/line/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-line", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles line shape", "homepage": "https://particles.js.org", "repository": { @@ -65,7 +65,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/shapes/line/package.json b/shapes/line/package.json index 8c05892b219..09249b5f8ae 100644 --- a/shapes/line/package.json +++ b/shapes/line/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-line", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles line shape", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/matrix/CHANGELOG.md b/shapes/matrix/CHANGELOG.md index e3f19641bf0..3758bae8165 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/shape-matrix + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/shape-matrix diff --git a/shapes/matrix/package.dist.json b/shapes/matrix/package.dist.json index 7e7f0289fa6..6d1e4005564 100644 --- a/shapes/matrix/package.dist.json +++ b/shapes/matrix/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-matrix", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles matrix shape", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/shapes/matrix/package.json b/shapes/matrix/package.json index 0e305eb6dcf..edbb3944b72 100644 --- a/shapes/matrix/package.json +++ b/shapes/matrix/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-matrix", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles matrix shape", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/path/CHANGELOG.md b/shapes/path/CHANGELOG.md index 7b66563ffd4..70373ed9bb3 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/shape-path + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/shape-path diff --git a/shapes/path/package.dist.json b/shapes/path/package.dist.json index 3550b820468..7818161cf67 100644 --- a/shapes/path/package.dist.json +++ b/shapes/path/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-path", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles path shape", "homepage": "https://particles.js.org", "repository": { @@ -106,8 +106,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15", - "@tsparticles/path-utils": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/path-utils": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/shapes/path/package.json b/shapes/path/package.json index 844c026d7bb..7bb11df2042 100644 --- a/shapes/path/package.json +++ b/shapes/path/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-path", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles path shape", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/polygon/CHANGELOG.md b/shapes/polygon/CHANGELOG.md index 2ab801c7b67..6ad657f2547 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/shape-polygon + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/shape-polygon diff --git a/shapes/polygon/package.dist.json b/shapes/polygon/package.dist.json index c9c38d8e35e..c60b60ee2fa 100644 --- a/shapes/polygon/package.dist.json +++ b/shapes/polygon/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-polygon", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles polygon shape", "homepage": "https://particles.js.org", "repository": { @@ -65,7 +65,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/shapes/polygon/package.json b/shapes/polygon/package.json index 4a0409e81d6..c409a765dc5 100644 --- a/shapes/polygon/package.json +++ b/shapes/polygon/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-polygon", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 1a4352674bb..c907ac30a13 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/shape-rounded-polygon + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 c1b5db9e47d..79213590f42 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles rounded polygon shape", "homepage": "https://particles.js.org", "repository": { @@ -65,7 +65,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/shapes/rounded-polygon/package.json b/shapes/rounded-polygon/package.json index 1b62586b1a6..331f2226edd 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.0-beta.15", + "version": "4.0.0-beta.16", "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 0a69a093ddd..176557d80ab 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/shape-rounded-rect + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 dd58086af2e..1e9144e2e41 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles rounded rect shape", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/shapes/rounded-rect/package.json b/shapes/rounded-rect/package.json index 4534557e74d..4a746723b42 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles rounded rect shape", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/spiral/CHANGELOG.md b/shapes/spiral/CHANGELOG.md index c7cc0f7c2d8..95a73ce3a6e 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/shape-spiral + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/shape-spiral diff --git a/shapes/spiral/package.dist.json b/shapes/spiral/package.dist.json index 910d697a1d9..8980a3cc051 100644 --- a/shapes/spiral/package.dist.json +++ b/shapes/spiral/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-spiral", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles spiral shape", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/shapes/spiral/package.json b/shapes/spiral/package.json index ac14a78a1d2..205c0509864 100644 --- a/shapes/spiral/package.json +++ b/shapes/spiral/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-spiral", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles spiral shape", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/square/CHANGELOG.md b/shapes/square/CHANGELOG.md index 698098907db..84d803735f8 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/shape-square + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/shape-square diff --git a/shapes/square/package.dist.json b/shapes/square/package.dist.json index 91302e38137..1e24972aa33 100644 --- a/shapes/square/package.dist.json +++ b/shapes/square/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-square", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles square shape", "homepage": "https://particles.js.org", "repository": { @@ -65,7 +65,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/shapes/square/package.json b/shapes/square/package.json index 0798ab9d72f..b9a81b61a16 100644 --- a/shapes/square/package.json +++ b/shapes/square/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-square", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles square shape", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/squircle/CHANGELOG.md b/shapes/squircle/CHANGELOG.md index e54779a410c..4e4e263e445 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/shape-squircle + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/shape-squircle diff --git a/shapes/squircle/package.dist.json b/shapes/squircle/package.dist.json index f1bdad53888..2b9d70daa11 100644 --- a/shapes/squircle/package.dist.json +++ b/shapes/squircle/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-squircle", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles squircle shape", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/shapes/squircle/package.json b/shapes/squircle/package.json index c0d7b10c761..d5855c709ac 100644 --- a/shapes/squircle/package.json +++ b/shapes/squircle/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-squircle", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles squircle shape", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/star/CHANGELOG.md b/shapes/star/CHANGELOG.md index a6053283b85..2eb6e94fd42 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/shape-star + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/shape-star diff --git a/shapes/star/package.dist.json b/shapes/star/package.dist.json index a43de40d5eb..877637ba870 100644 --- a/shapes/star/package.dist.json +++ b/shapes/star/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-star", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles star shape", "homepage": "https://particles.js.org", "repository": { @@ -65,7 +65,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/shapes/star/package.json b/shapes/star/package.json index 8ac4326d9dd..9e17d69eea8 100644 --- a/shapes/star/package.json +++ b/shapes/star/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-star", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles star shape", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/text/CHANGELOG.md b/shapes/text/CHANGELOG.md index 5c7644fb9a1..0948187e09f 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/shape-text + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/shape-text diff --git a/shapes/text/package.dist.json b/shapes/text/package.dist.json index 2cc71b611e2..97b804c277f 100644 --- a/shapes/text/package.dist.json +++ b/shapes/text/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-text", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles text shape", "homepage": "https://particles.js.org", "repository": { @@ -65,8 +65,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/canvas-utils": "4.0.0-beta.15", - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/canvas-utils": "4.0.0-beta.16", + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/shapes/text/package.json b/shapes/text/package.json index 5e2aee37b72..12a0378c4c1 100644 --- a/shapes/text/package.json +++ b/shapes/text/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-text", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 4dcaa00e1b3..f74f25aa62a 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package cra-template-particles-typescript + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 8f0603c0a0e..0d9a266e7af 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.0-beta.15", + "version": "4.0.0-beta.16", "description": "Official TypeScript React tsParticles template", "keywords": [ "front-end", diff --git a/templates/react-ts/template.json b/templates/react-ts/template.json index 71a286a68cf..521e418f0c0 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.0-beta.15", - "@tsparticles/engine": "^4.0.0-beta.15", + "@tsparticles/react": "^4.0.0-beta.16", + "@tsparticles/engine": "^4.0.0-beta.16", "tslib": "^2.8.1", "typescript": "^6.0.2", "web-vitals": "^5.2.0", - "tsparticles": "^4.0.0-beta.15" + "tsparticles": "^4.0.0-beta.16" } } } \ No newline at end of file diff --git a/templates/react/CHANGELOG.md b/templates/react/CHANGELOG.md index 9046b5c1c7f..febe781b1ec 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package cra-template-particles + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package cra-template-particles diff --git a/templates/react/package.json b/templates/react/package.json index 2c13bfb49b3..6f1d350fb38 100644 --- a/templates/react/package.json +++ b/templates/react/package.json @@ -1,6 +1,6 @@ { "name": "cra-template-particles", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "Official React tsParticles template", "keywords": [ "front-end", diff --git a/templates/react/template.json b/templates/react/template.json index af06c6822e0..fe58d6701b0 100644 --- a/templates/react/template.json +++ b/templates/react/template.json @@ -1,9 +1,9 @@ { "package": { "dependencies": { - "@tsparticles/react": "^4.0.0-beta.15", - "@tsparticles/engine": "^4.0.0-beta.15", - "tsparticles": "^4.0.0-beta.15", + "@tsparticles/react": "^4.0.0-beta.16", + "@tsparticles/engine": "^4.0.0-beta.16", + "tsparticles": "^4.0.0-beta.16", "tslib": "^2.8.1" } } diff --git a/updaters/destroy/CHANGELOG.md b/updaters/destroy/CHANGELOG.md index 15785a5062a..cbf92af8a00 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/updater-destroy + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/updater-destroy diff --git a/updaters/destroy/package.dist.json b/updaters/destroy/package.dist.json index 689d3f99e36..100a7af1616 100644 --- a/updaters/destroy/package.dist.json +++ b/updaters/destroy/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-destroy", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles particles destroy updater", "homepage": "https://particles.js.org", "repository": { @@ -93,7 +93,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/updaters/destroy/package.json b/updaters/destroy/package.json index c741b9197f2..3b91618be53 100644 --- a/updaters/destroy/package.json +++ b/updaters/destroy/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-destroy", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles particles destroy updater", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/gradient/CHANGELOG.md b/updaters/gradient/CHANGELOG.md index 4469544cf7d..8a29d297154 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/updater-gradient + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/updater-gradient diff --git a/updaters/gradient/package.dist.json b/updaters/gradient/package.dist.json index 85a74aa639d..ee75962b205 100644 --- a/updaters/gradient/package.dist.json +++ b/updaters/gradient/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-gradient", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles particles gradient updater", "homepage": "https://particles.js.org", "repository": { @@ -107,7 +107,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/updaters/gradient/package.json b/updaters/gradient/package.json index 9e41f54ef4e..024fae0cfa3 100644 --- a/updaters/gradient/package.json +++ b/updaters/gradient/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-gradient", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles particles gradient updater", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/life/CHANGELOG.md b/updaters/life/CHANGELOG.md index 4b75fe984f7..4fa7c831b21 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/updater-life + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/updater-life diff --git a/updaters/life/package.dist.json b/updaters/life/package.dist.json index fa2574692f3..e4b1e3be205 100644 --- a/updaters/life/package.dist.json +++ b/updaters/life/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-life", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles particles life updater", "homepage": "https://particles.js.org", "repository": { @@ -93,7 +93,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/updaters/life/package.json b/updaters/life/package.json index 2d24c4efe89..bfc7279149e 100644 --- a/updaters/life/package.json +++ b/updaters/life/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-life", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles particles life updater", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/opacity/CHANGELOG.md b/updaters/opacity/CHANGELOG.md index 09ca1782ef8..ca4c4d799c5 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/updater-opacity + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/updater-opacity diff --git a/updaters/opacity/package.dist.json b/updaters/opacity/package.dist.json index 3c51d670221..fd8fb963bc1 100644 --- a/updaters/opacity/package.dist.json +++ b/updaters/opacity/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-opacity", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles particles opacity updater", "homepage": "https://particles.js.org", "repository": { @@ -93,7 +93,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/updaters/opacity/package.json b/updaters/opacity/package.json index 64ef9da3df4..36b02d4523e 100644 --- a/updaters/opacity/package.json +++ b/updaters/opacity/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-opacity", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles particles opacity updater", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/orbit/CHANGELOG.md b/updaters/orbit/CHANGELOG.md index 290cf25d8b3..22ab6065931 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/updater-orbit + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/updater-orbit diff --git a/updaters/orbit/package.dist.json b/updaters/orbit/package.dist.json index 66430c40f1e..22affd5c58f 100644 --- a/updaters/orbit/package.dist.json +++ b/updaters/orbit/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-orbit", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles particles orbit updater", "homepage": "https://particles.js.org", "repository": { @@ -107,7 +107,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/updaters/orbit/package.json b/updaters/orbit/package.json index 1b5e8c02340..80d4ae4ca4c 100644 --- a/updaters/orbit/package.json +++ b/updaters/orbit/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-orbit", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles particles orbit updater", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/outModes/CHANGELOG.md b/updaters/outModes/CHANGELOG.md index 989651b9ceb..6e65aad3a5b 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/updater-out-modes + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 6ed48e3371f..347cea94875 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.0-beta.15", + "version": "4.0.0-beta.16", "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.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/updaters/outModes/package.json b/updaters/outModes/package.json index 59760aa8eca..60858f2886c 100644 --- a/updaters/outModes/package.json +++ b/updaters/outModes/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-out-modes", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 f2509d95af0..8c4646b501f 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/updater-paint + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/updater-paint diff --git a/updaters/paint/package.dist.json b/updaters/paint/package.dist.json index 7388e45d30a..29d9ce7d3ad 100644 --- a/updaters/paint/package.dist.json +++ b/updaters/paint/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-paint", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles particles paint updater", "homepage": "https://particles.js.org", "repository": { @@ -93,7 +93,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/updaters/paint/package.json b/updaters/paint/package.json index 5be32421a63..fdffae20e27 100644 --- a/updaters/paint/package.json +++ b/updaters/paint/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-paint", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles particles paint updater", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/roll/CHANGELOG.md b/updaters/roll/CHANGELOG.md index 505774a3647..7d1ec4e070a 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/updater-roll + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/updater-roll diff --git a/updaters/roll/package.dist.json b/updaters/roll/package.dist.json index 1a64e100998..8592f0ce2d0 100644 --- a/updaters/roll/package.dist.json +++ b/updaters/roll/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-roll", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles particles roll updater", "homepage": "https://particles.js.org", "repository": { @@ -93,7 +93,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/updaters/roll/package.json b/updaters/roll/package.json index 3f7ca2d57b1..c69201d0a4d 100644 --- a/updaters/roll/package.json +++ b/updaters/roll/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-roll", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles particles roll updater", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/rotate/CHANGELOG.md b/updaters/rotate/CHANGELOG.md index 4764326f425..6e7f6b99417 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/updater-rotate + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/updater-rotate diff --git a/updaters/rotate/package.dist.json b/updaters/rotate/package.dist.json index 8093206ea1a..6f7249d51cf 100644 --- a/updaters/rotate/package.dist.json +++ b/updaters/rotate/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-rotate", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles particles rotate updater", "homepage": "https://particles.js.org", "repository": { @@ -93,7 +93,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/updaters/rotate/package.json b/updaters/rotate/package.json index 7f5338d8347..c1d10e29531 100644 --- a/updaters/rotate/package.json +++ b/updaters/rotate/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-rotate", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles particles rotate updater", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/size/CHANGELOG.md b/updaters/size/CHANGELOG.md index e6bfa9983fe..19b2b4fdd36 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/updater-size + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/updater-size diff --git a/updaters/size/package.dist.json b/updaters/size/package.dist.json index 85fa14df295..809fc052807 100644 --- a/updaters/size/package.dist.json +++ b/updaters/size/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-size", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles particles size updater", "homepage": "https://particles.js.org", "repository": { @@ -93,7 +93,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/updaters/size/package.json b/updaters/size/package.json index ef78ec14821..a93b183e5bb 100644 --- a/updaters/size/package.json +++ b/updaters/size/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-size", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles particles size updater", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/tilt/CHANGELOG.md b/updaters/tilt/CHANGELOG.md index e9b71de7cd5..7a8772efcb3 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/updater-tilt + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/updater-tilt diff --git a/updaters/tilt/package.dist.json b/updaters/tilt/package.dist.json index ce4a1538cc5..c3693c22211 100644 --- a/updaters/tilt/package.dist.json +++ b/updaters/tilt/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-tilt", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles particles tilt updater", "homepage": "https://particles.js.org", "repository": { @@ -93,7 +93,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/updaters/tilt/package.json b/updaters/tilt/package.json index 9acdd21f68f..145229d2741 100644 --- a/updaters/tilt/package.json +++ b/updaters/tilt/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-tilt", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles particles tilt updater", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/twinkle/CHANGELOG.md b/updaters/twinkle/CHANGELOG.md index af373262d14..4f998a0ede1 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/updater-twinkle + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/updater-twinkle diff --git a/updaters/twinkle/package.dist.json b/updaters/twinkle/package.dist.json index 53e1829765d..08af84884b0 100644 --- a/updaters/twinkle/package.dist.json +++ b/updaters/twinkle/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-twinkle", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles particles twinkle updater", "homepage": "https://particles.js.org", "repository": { @@ -93,7 +93,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/updaters/twinkle/package.json b/updaters/twinkle/package.json index eced8ecc412..4b19d3f3a2d 100644 --- a/updaters/twinkle/package.json +++ b/updaters/twinkle/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-twinkle", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles particles twinkle updater", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/wobble/CHANGELOG.md b/updaters/wobble/CHANGELOG.md index 1df9b5df637..7264c1dd7d1 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/updater-wobble + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/updater-wobble diff --git a/updaters/wobble/package.dist.json b/updaters/wobble/package.dist.json index abc7bca39f1..97ab7385e5f 100644 --- a/updaters/wobble/package.dist.json +++ b/updaters/wobble/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-wobble", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles particles wobble updater", "homepage": "https://particles.js.org", "repository": { @@ -93,7 +93,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/updaters/wobble/package.json b/updaters/wobble/package.json index 761180c79fc..a9afbfadbc9 100644 --- a/updaters/wobble/package.json +++ b/updaters/wobble/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-wobble", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles particles wobble updater", "homepage": "https://particles.js.org", "scripts": { diff --git a/utils/canvasUtils/CHANGELOG.md b/utils/canvasUtils/CHANGELOG.md index 79b4a7db368..e18a380ddb5 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/canvas-utils + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/canvas-utils diff --git a/utils/canvasUtils/package.dist.json b/utils/canvasUtils/package.dist.json index 4b0105435f0..b6fd6f515a6 100644 --- a/utils/canvasUtils/package.dist.json +++ b/utils/canvasUtils/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/canvas-utils", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles canvas utils library", "homepage": "https://particles.js.org", "repository": { @@ -109,7 +109,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "type": "module" } diff --git a/utils/canvasUtils/package.json b/utils/canvasUtils/package.json index 5b22e0ea4cd..ce90e21c8ba 100644 --- a/utils/canvasUtils/package.json +++ b/utils/canvasUtils/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/canvas-utils", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles canvas utils path", "homepage": "https://particles.js.org", "scripts": { diff --git a/utils/configs/CHANGELOG.md b/utils/configs/CHANGELOG.md index 1b10dff63a4..842924664fb 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/configs + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/configs diff --git a/utils/configs/package.dist.json b/utils/configs/package.dist.json index 695e070adbf..d1c1a65c60f 100644 --- a/utils/configs/package.dist.json +++ b/utils/configs/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/configs", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles demo configurations", "homepage": "https://particles.js.org", "repository": { @@ -105,7 +105,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "publishConfig": { "access": "public" diff --git a/utils/configs/package.json b/utils/configs/package.json index b987358c270..4413b8a2e16 100644 --- a/utils/configs/package.json +++ b/utils/configs/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/configs", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "homepage": "https://particles.js.org", "scripts": { "build": "tsparticles-build", diff --git a/utils/fractalNoise/CHANGELOG.md b/utils/fractalNoise/CHANGELOG.md index aa9061880c6..402f25032e6 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/fractal-noise + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/fractal-noise diff --git a/utils/fractalNoise/package.dist.json b/utils/fractalNoise/package.dist.json index c2007392c9c..b82ea27ec27 100644 --- a/utils/fractalNoise/package.dist.json +++ b/utils/fractalNoise/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/fractal-noise", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles fractal noise library", "homepage": "https://particles.js.org", "repository": { @@ -92,7 +92,7 @@ "module": "esm/index.js", "types": "types/index.d.ts", "peerDependencies": { - "@tsparticles/smooth-value-noise": "4.0.0-beta.15" + "@tsparticles/smooth-value-noise": "4.0.0-beta.16" }, "exports": { ".": { diff --git a/utils/fractalNoise/package.json b/utils/fractalNoise/package.json index c3932a48d60..7bb5e89ecad 100644 --- a/utils/fractalNoise/package.json +++ b/utils/fractalNoise/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/fractal-noise", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles fractal noise path", "homepage": "https://particles.js.org", "scripts": { diff --git a/utils/noiseField/CHANGELOG.md b/utils/noiseField/CHANGELOG.md index f2d10598f0e..74a241ab65b 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/noise-field + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/noise-field diff --git a/utils/noiseField/package.dist.json b/utils/noiseField/package.dist.json index d1b9ed6a69f..0ab2e8cafd8 100644 --- a/utils/noiseField/package.dist.json +++ b/utils/noiseField/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/noise-field", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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.0-beta.15", - "@tsparticles/plugin-move": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16", + "@tsparticles/plugin-move": "4.0.0-beta.16" }, "exports": { ".": { diff --git a/utils/noiseField/package.json b/utils/noiseField/package.json index 701f5a238c7..1776297ded6 100644 --- a/utils/noiseField/package.json +++ b/utils/noiseField/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/noise-field", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles noise field library", "homepage": "https://particles.js.org", "scripts": { diff --git a/utils/pathUtils/CHANGELOG.md b/utils/pathUtils/CHANGELOG.md index 3d019c2de90..c0ce062c474 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/path-utils + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/path-utils diff --git a/utils/pathUtils/package.dist.json b/utils/pathUtils/package.dist.json index 68204ceb1f3..7356651b5ba 100644 --- a/utils/pathUtils/package.dist.json +++ b/utils/pathUtils/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-utils", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles path utils library", "homepage": "https://particles.js.org", "repository": { @@ -109,7 +109,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.0.0-beta.15" + "@tsparticles/engine": "4.0.0-beta.16" }, "type": "module" } diff --git a/utils/pathUtils/package.json b/utils/pathUtils/package.json index c0e0e6918a5..2b874a53803 100644 --- a/utils/pathUtils/package.json +++ b/utils/pathUtils/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-utils", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles path utils path", "homepage": "https://particles.js.org", "scripts": { diff --git a/utils/perlinNoise/CHANGELOG.md b/utils/perlinNoise/CHANGELOG.md index 51ace1907a0..0820976537a 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/perlin-noise + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/perlin-noise diff --git a/utils/perlinNoise/package.dist.json b/utils/perlinNoise/package.dist.json index d83e3338c5d..fb965cdf08a 100644 --- a/utils/perlinNoise/package.dist.json +++ b/utils/perlinNoise/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/perlin-noise", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles perlin noise library", "homepage": "https://particles.js.org", "repository": { diff --git a/utils/perlinNoise/package.json b/utils/perlinNoise/package.json index 97d1de0b3e0..63ce1df4fae 100644 --- a/utils/perlinNoise/package.json +++ b/utils/perlinNoise/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/perlin-noise", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles perlin noise path", "homepage": "https://particles.js.org", "scripts": { diff --git a/utils/simplexNoise/CHANGELOG.md b/utils/simplexNoise/CHANGELOG.md index bccab11392b..b5c73c8854d 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/simplex-noise + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/simplex-noise diff --git a/utils/simplexNoise/package.dist.json b/utils/simplexNoise/package.dist.json index c592e7ff941..0b712976c9b 100644 --- a/utils/simplexNoise/package.dist.json +++ b/utils/simplexNoise/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/simplex-noise", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles simplex noise library", "homepage": "https://particles.js.org", "repository": { diff --git a/utils/simplexNoise/package.json b/utils/simplexNoise/package.json index 8ab137adc3f..2c9c2969929 100644 --- a/utils/simplexNoise/package.json +++ b/utils/simplexNoise/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/simplex-noise", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles simplex noise library", "homepage": "https://particles.js.org", "scripts": { diff --git a/utils/smoothValueNoise/CHANGELOG.md b/utils/smoothValueNoise/CHANGELOG.md index fc3ef92976d..88eaad64671 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/smooth-value-noise + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **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 997906422b4..fde85acf0b2 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.0-beta.15", + "version": "4.0.0-beta.16", "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 14bd4b39af8..a26985af48f 100644 --- a/utils/smoothValueNoise/package.json +++ b/utils/smoothValueNoise/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/smooth-value-noise", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 b25f7e7ea7c..c7f855f2a6c 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/tests + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/tests diff --git a/utils/tests/package.json b/utils/tests/package.json index 7500bd67b6c..799c723c288 100644 --- a/utils/tests/package.json +++ b/utils/tests/package.json @@ -1,7 +1,7 @@ { "name": "@tsparticles/tests", "private": true, - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "repository": { "type": "git", "url": "git+https://github.com/tsparticles/tsparticles.git", diff --git a/websites/confetti/CHANGELOG.md b/websites/confetti/CHANGELOG.md index 3c406e1d179..d6328ba98f1 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/confetti-website + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/confetti-website diff --git a/websites/confetti/deploy.js b/websites/confetti/deploy.js index 2bfd1a67adf..f32f3783915 100644 --- a/websites/confetti/deploy.js +++ b/websites/confetti/deploy.js @@ -1,42 +1,42 @@ -import { execSync } from "child_process"; -import { resolve, dirname } from "path"; -import { fileURLToPath } from "url"; +import { execSync } from 'child_process'; +import { resolve, dirname } from 'path'; +import { fileURLToPath } from 'url'; -import ghpages from "gh-pages"; +import ghpages from 'gh-pages'; const __dirname = dirname(fileURLToPath(import.meta.url)); -const rootDir = resolve(__dirname, "."); +const rootDir = resolve(__dirname, '.'); -execSync("npx vite build", { cwd: rootDir, stdio: "inherit" }); +execSync('npx vite build', { cwd: rootDir, stdio: 'inherit' }); const ghToken = process.env.GITHUB_TOKEN, gitUser = ghToken ? { - name: "github-actions-bot", - email: "support+actions@github.com", + name: 'github-actions-bot', + email: 'support+actions@github.com', } : { - name: "Matteo Bruni", - email: "176620+matteobruni@users.noreply.github.com", + name: 'Matteo Bruni', + email: '176620+matteobruni@users.noreply.github.com', }; ghpages.publish( - "./dist", + './dist', { repo: ghToken ? `https://git:${ghToken}@github.com/tsparticles/confetti.git` : `https://git:github.com/tsparticles/confetti.git`, - branch: "main", + branch: 'main', dotfiles: true, history: false, - message: "build: website updated", + message: 'build: website updated', user: gitUser, }, (publishErr) => { if (!publishErr) { - console.log("Website published successfully"); + console.log('Website published successfully'); } else { console.log(`Error publishing website: ${publishErr}`); } - }, + } ); diff --git a/websites/confetti/package.json b/websites/confetti/package.json index 847704f371e..766d7110e04 100644 --- a/websites/confetti/package.json +++ b/websites/confetti/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/confetti-website", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "tsParticles confetti webpage", "private": true, "type": "module", @@ -9,7 +9,8 @@ }, "scripts": { "dev": "vite", - "build": "vite build", + "build": "pnpm run format && pnpm run lint:fix && vite build", + "build:ci": "pnpm run format:check && pnpm run lint && vite build", "preview": "vite preview", "deploy": "node deploy.js", "lint": "eslint src", @@ -40,5 +41,12 @@ "globals": "^17.6.0", "prettier": "^3.8.3", "vite": "^8.0.11" + }, + "nx": { + "targets": { + "build": { + "inputs": ["{projectRoot}/vite.config.js", "production", "^production"] + } + } } } diff --git a/websites/confetti/src/cookie-consent.js b/websites/confetti/src/cookie-consent.js index ef0acff6d4d..c4882859b99 100644 --- a/websites/confetti/src/cookie-consent.js +++ b/websites/confetti/src/cookie-consent.js @@ -1,6 +1,6 @@ -const CONSENT_KEY = "tsparticles-confetti/cookie-consent-v1"; -const GA_MEASUREMENT_ID = "G-80MY3TZM79"; -const ADSENSE_CLIENT_ID = "ca-pub-1784552607103901"; +const CONSENT_KEY = 'tsparticles-confetti/cookie-consent-v1'; +const GA_MEASUREMENT_ID = 'G-80MY3TZM79'; +const ADSENSE_CLIENT_ID = 'ca-pub-1784552607103901'; const ADSENSE_NON_PERSONALIZED_ON_REJECT = true; const defaultConsent = { @@ -22,7 +22,7 @@ function readConsent() { const parsed = JSON.parse(rawConsent); - if (typeof parsed !== "object" || !parsed) { + if (typeof parsed !== 'object' || !parsed) { return undefined; } @@ -31,7 +31,7 @@ function readConsent() { adsense: !!parsed.adsense, }; } catch (err) { - console.warn("Cannot read cookie consent preferences.", err); + console.warn('Cannot read cookie consent preferences.', err); return undefined; } @@ -50,7 +50,7 @@ function loadScript(id, src, attributes) { return; } - const script = document.createElement("script"); + const script = document.createElement('script'); script.id = id; script.src = src; @@ -78,9 +78,9 @@ function initAnalytics() { } ensureGtagStub(); - loadScript("ga-script", `https://www.googletagmanager.com/gtag/js?id=${GA_MEASUREMENT_ID}`); - window.gtag("js", new Date()); - window.gtag("config", GA_MEASUREMENT_ID, { + loadScript('ga-script', `https://www.googletagmanager.com/gtag/js?id=${GA_MEASUREMENT_ID}`); + window.gtag('js', new Date()); + window.gtag('config', GA_MEASUREMENT_ID, { send_page_view: false, }); @@ -93,11 +93,11 @@ function initAdSense() { } loadScript( - "adsense-script", + 'adsense-script', `https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=${ADSENSE_CLIENT_ID}`, { - crossorigin: "anonymous", - }, + crossorigin: 'anonymous', + } ); window.adsbygoogle = window.adsbygoogle || []; @@ -112,11 +112,11 @@ function initAdSense() { function updateConsentMode(activeConsent) { ensureGtagStub(); - window.gtag("consent", "update", { - ad_storage: activeConsent.adsense ? "granted" : "denied", - analytics_storage: activeConsent.analytics ? "granted" : "denied", - ad_user_data: activeConsent.adsense ? "granted" : "denied", - ad_personalization: activeConsent.adsense ? "granted" : "denied", + window.gtag('consent', 'update', { + ad_storage: activeConsent.adsense ? 'granted' : 'denied', + analytics_storage: activeConsent.analytics ? 'granted' : 'denied', + ad_user_data: activeConsent.adsense ? 'granted' : 'denied', + ad_personalization: activeConsent.adsense ? 'granted' : 'denied', }); } @@ -140,7 +140,7 @@ function applyConsent(activeConsent) { } function closeBanner() { - const banner = document.getElementById("cookieConsentBanner"); + const banner = document.getElementById('cookieConsentBanner'); if (banner) { banner.remove(); @@ -155,15 +155,15 @@ function saveAndApply(nextConsent) { } function createBanner() { - if (document.getElementById("cookieConsentBanner")) { + if (document.getElementById('cookieConsentBanner')) { return; } - const banner = document.createElement("div"); + const banner = document.createElement('div'); const consentState = consent || defaultConsent; - banner.id = "cookieConsentBanner"; - banner.className = "cookie-consent-banner"; + banner.id = 'cookieConsentBanner'; + banner.className = 'cookie-consent-banner'; banner.innerHTML = `
- ${mode.id === "custom" ? ` + ${ + mode.id === 'custom' + ? `
-
` : ""} + ` + : '' + } - `, + ` ) - .join("\n"); + .join('\n'); } function pretty(val) { - return js_beautify(val, { indent_size: 2, brace_style: "preserve-inline" }); + return js_beautify(val, { indent_size: 2, brace_style: 'preserve-inline' }); } function getCode(name) { @@ -790,55 +794,55 @@ function getCode(name) { let code = pretty(mode.fn.toString()); code = code - .split("\n") + .split('\n') .slice(1) .slice(0, -1) .map(function (s) { return s.trim(); }) - .join("\n"); + .join('\n'); return pretty(code); } -document.addEventListener("DOMContentLoaded", () => { +document.addEventListener('DOMContentLoaded', () => { updateShareLinks(); updateShareOrder(); setupShareActions(); - window.addEventListener("resize", updateShareOrder); + window.addEventListener('resize', updateShareOrder); - Array.from(document.querySelectorAll(".html-group")).forEach(function (group) { - const codeElem = group.querySelector(".editor"), + Array.from(document.querySelectorAll('.html-group')).forEach(function (group) { + const codeElem = group.querySelector('.editor'), editor = ace.edit(codeElem); editor.setTheme(themes[activeTheme]); - editor.session.setMode("ace/mode/html"); + editor.session.setMode('ace/mode/html'); editor.session.setUseSoftTabs(true); editor.session.setTabSize(2); const count = editor.session.getLength(); - codeElem.style.minHeight = 14 * count + 1 + "px"; - codeElem.style.height = count + "rem"; + codeElem.style.minHeight = 14 * count + 1 + 'px'; + codeElem.style.height = count + 'rem'; editors.push(editor); }); - document.getElementById("confetti-modes").innerHTML = renderModes(modes); + document.getElementById('confetti-modes').innerHTML = renderModes(modes); - Array.from(document.querySelectorAll(".group")).forEach(function (group) { - const name = group.getAttribute("data-name"), - button = group.querySelector(".run"), - codeElem = group.querySelector(".editor"), + Array.from(document.querySelectorAll('.group')).forEach(function (group) { + const name = group.getAttribute('data-name'), + button = group.querySelector('.run'), + codeElem = group.querySelector('.editor'), editor = ace.edit(codeElem); editor.setTheme(themes[activeTheme]); - editor.session.on("changeMode", function (e, session) { - if ("ace/mode/javascript" === session.getMode().$id) { + editor.session.on('changeMode', function (e, session) { + if ('ace/mode/javascript' === session.getMode().$id) { if (!!session.$worker) { - session.$worker.send("setOptions", [ + session.$worker.send('setOptions', [ { esversion: 9, esnext: false, @@ -848,18 +852,18 @@ document.addEventListener("DOMContentLoaded", () => { } }); - editor.session.setMode("ace/mode/javascript"); + editor.session.setMode('ace/mode/javascript'); editor.session.setUseSoftTabs(true); editor.session.setTabSize(2); editor.session.setValue(getCode(name)); const count = editor.session.getLength(); - codeElem.style.minHeight = 14 * count + 1 + "px"; - codeElem.style.height = count + "rem"; + codeElem.style.minHeight = 14 * count + 1 + 'px'; + codeElem.style.height = count + 'rem'; - button.addEventListener("click", (ev) => { - if (ev && typeof ev.preventDefault === "function") ev.preventDefault(); + button.addEventListener('click', (ev) => { + if (ev && typeof ev.preventDefault === 'function') ev.preventDefault(); try { eval(editor.getValue()); diff --git a/websites/confetti/vite.config.js b/websites/confetti/vite.config.js index c32c02b6b6f..c3d98539f89 100644 --- a/websites/confetti/vite.config.js +++ b/websites/confetti/vite.config.js @@ -1,20 +1,19 @@ -import { defineConfig } from "vite"; -import { readFileSync } from "fs"; +import { defineConfig } from 'vite'; +import { readFileSync } from 'fs'; -const confettiPkg = JSON.parse( - readFileSync("./node_modules/@tsparticles/confetti/package.json", "utf8"), -); +const confettiPkg = JSON.parse(readFileSync('./package.json', 'utf8')); export default defineConfig({ plugins: [ { - name: "html-transform", + name: 'html-transform', transformIndexHtml(html) { return html.replace(/__CONFETTI_VERSION__/g, confettiPkg.version); }, }, ], build: { - outDir: "dist", + outDir: 'dist', + minify: false, }, }); diff --git a/websites/website/CHANGELOG.md b/websites/website/CHANGELOG.md index 3c0f11a590a..1e40b01b19c 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/website + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/website diff --git a/websites/website/docs/.vitepress/config.ts b/websites/website/docs/.vitepress/config.ts index 049bd416005..19571c68c66 100644 --- a/websites/website/docs/.vitepress/config.ts +++ b/websites/website/docs/.vitepress/config.ts @@ -243,7 +243,7 @@ const baseSidebar: DefaultTheme.Sidebar = { }; function prefixSidebarItems(items: DefaultTheme.SidebarItem[], prefix: string): DefaultTheme.SidebarItem[] { - return items.map(item => ({ + return items.map((item) => ({ ...item, link: item.link ? prefix + item.link : undefined, items: item.items ? prefixSidebarItems(item.items, prefix) : undefined, @@ -251,7 +251,7 @@ function prefixSidebarItems(items: DefaultTheme.SidebarItem[], prefix: string): } function prefixNavItems(items: DefaultTheme.NavItem[], prefix: string): DefaultTheme.NavItem[] { - return items.map(item => { + return items.map((item) => { if ("link" in item && item.link && !item.link.startsWith("http") && !item.link.startsWith("//")) { return { ...item, link: prefix + item.link } as DefaultTheme.NavItem; } @@ -281,10 +281,7 @@ export default defineConfig({ cleanUrls: true, lastUpdated: true, base, - ignoreDeadLinks: [ - /\/releases\/index$/, - /\/[a-z]{2}\/releases\/index$/, - ], + ignoreDeadLinks: [/\/releases\/index$/, /\/[a-z]{2}\/releases\/index$/], locales: { root: { label: "English", diff --git a/websites/website/docs/de/guide/bundles.md b/websites/website/docs/de/guide/bundles.md index a300eb03b1b..c0e0717b3f3 100644 --- a/websites/website/docs/de/guide/bundles.md +++ b/websites/website/docs/de/guide/bundles.md @@ -4,15 +4,15 @@ Diese Seite hilft dir, das passende `tsParticles`-Bundle auszuwaehlen und schnel ## Paketvergleich -| Paket | Ideal fuer | Setup-Stil | -| --- | --- | --- | -| `@tsparticles/basic` | Sehr leichte Setups | `tsParticles` + `await loadBasic(tsParticles)` | -| `@tsparticles/slim` | Die meisten Websites/Apps | `tsParticles` + `await loadSlim(tsParticles)` | -| `tsparticles` | Vollstaendiger offizieller Feature-Satz mit Engine-Kontrolle | `tsParticles` + `await loadFull(tsParticles)` | -| `@tsparticles/all` | Alle Features, schnelles Prototyping | `tsParticles` + `await loadAll(tsParticles)` | -| `@tsparticles/confetti` | Konfetti-Effekte mit einem Aufruf | `await confetti(options)` | -| `@tsparticles/fireworks` | Feuerwerk-Effekte mit einem Aufruf | `await fireworks(options)` | -| `@tsparticles/particles` | Einfache API fuer Partikel-Hintergruende | `await particles(options)` | +| Paket | Ideal fuer | Setup-Stil | +| ------------------------ | ------------------------------------------------------------ | ---------------------------------------------- | +| `@tsparticles/basic` | Sehr leichte Setups | `tsParticles` + `await loadBasic(tsParticles)` | +| `@tsparticles/slim` | Die meisten Websites/Apps | `tsParticles` + `await loadSlim(tsParticles)` | +| `tsparticles` | Vollstaendiger offizieller Feature-Satz mit Engine-Kontrolle | `tsParticles` + `await loadFull(tsParticles)` | +| `@tsparticles/all` | Alle Features, schnelles Prototyping | `tsParticles` + `await loadAll(tsParticles)` | +| `@tsparticles/confetti` | Konfetti-Effekte mit einem Aufruf | `await confetti(options)` | +| `@tsparticles/fireworks` | Feuerwerk-Effekte mit einem Aufruf | `await fireworks(options)` | +| `@tsparticles/particles` | Einfache API fuer Partikel-Hintergruende | `await particles(options)` | ## Bundle-Anleitungen diff --git a/websites/website/docs/de/guide/option-rename-matrix.md b/websites/website/docs/de/guide/option-rename-matrix.md index 39d0b1b7118..7b9d382da9f 100644 --- a/websites/website/docs/de/guide/option-rename-matrix.md +++ b/websites/website/docs/de/guide/option-rename-matrix.md @@ -4,21 +4,21 @@ Schnellreferenz fuer die haeufigsten Umbenennungen waehrend Migrationen. ## tsParticles -| Legacy-Key | Aktueller Key | Hinweise | -| --- | --- | --- | -| `particles.color` | `particles.paint.fill` | Hauptfarbe wurde nach `paint.fill` verschoben. | -| `particles.stroke` | `particles.paint.stroke` | Stroke wurde nach `paint.stroke` verschoben. | +| Legacy-Key | Aktueller Key | Hinweise | +| ------------------ | ------------------------ | ---------------------------------------------- | +| `particles.color` | `particles.paint.fill` | Hauptfarbe wurde nach `paint.fill` verschoben. | +| `particles.stroke` | `particles.paint.stroke` | Stroke wurde nach `paint.stroke` verschoben. | ## particles.js legacy -| particles.js-Key | Aktueller Key | Hinweise | -| --- | --- | --- | -| `line_linked` | `links` | Auf modernen Key-Stil umbenannt. | -| `retina_detect` | `detectRetina` | Von snake_case auf camelCase. | +| particles.js-Key | Aktueller Key | Hinweise | +| ---------------- | -------------- | -------------------------------- | +| `line_linked` | `links` | Auf modernen Key-Stil umbenannt. | +| `retina_detect` | `detectRetina` | Von snake_case auf camelCase. | ## Load API -| Legacy-API | Aktuelle API | -| --- | --- | +| Legacy-API | Aktuelle API | +| --------------------------------- | ----------------------------------------- | | `tsParticles.load("id", options)` | `tsParticles.load({ id: "id", options })` | -| `particlesJS("id", options)` | `tsParticles.load({ id: "id", options })` | +| `particlesJS("id", options)` | `tsParticles.load({ id: "id", options })` | diff --git a/websites/website/docs/de/guide/plugins-customization.md b/websites/website/docs/de/guide/plugins-customization.md index 2dbf85029a8..189131745e4 100644 --- a/websites/website/docs/de/guide/plugins-customization.md +++ b/websites/website/docs/de/guide/plugins-customization.md @@ -28,17 +28,17 @@ Wenn du diese Kategorien erklarst, verstehen Nutzer sofort, wie weit die Anpassu ## Ubersichtstabelle -| Typ | Schnell erstellen (app-lokal) | Verwendung | -| --- | --- | --- | -| Bundle | Erstelle dein eigenes `loadAppBundle(engine)` und rufe interne Loader auf | Rufe `await loadAppBundle(tsParticles)` vor `tsParticles.load(...)` auf | -| Effect | Mit `pluginManager.addEffect("app-*", drawer)` registrieren | `particles.effect.type` auf deine Effect-ID setzen | -| Interaction | Mit `pluginManager.addInteractor("app-*", interactor)` registrieren | In `interactivity.events` aktivieren / optionale Prufungen fur benutzerdefinierte Modi | -| Palette | Mit `pluginManager.addPalette("app-*", palette)` registrieren | `particles.palette` auf deine Palette-ID setzen | -| Path | Mit `pluginManager.addPathGenerator("app-*", generator)` registrieren | `particles.move.path.generator` auf deine Path-ID setzen | -| Plugin | `IPlugin` + `IContainerPlugin` erstellen und `engine.addPlugin(...)` aufrufen | Mit Plugin-Optionen und Lifecycle-Hooks aktivieren | -| Preset | Mit `tsParticles.addPreset("app-*", options)` registrieren | Root-`preset` setzen | -| Shape | Mit `tsParticles.addShape("app-*", drawer)` registrieren oder alle offiziellen Shape-Pakete laden | `particles.shape.type` und die shape-spezifischen Optionen in `particles.shape.options` setzen | -| Updater | Mit `pluginManager.addParticleUpdater("app-*", updater)` registrieren | Lauft automatisch fur Partikel, bei denen `isEnabled(...)` `true` zuruckgibt | +| Typ | Schnell erstellen (app-lokal) | Verwendung | +| ----------- | ------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | +| Bundle | Erstelle dein eigenes `loadAppBundle(engine)` und rufe interne Loader auf | Rufe `await loadAppBundle(tsParticles)` vor `tsParticles.load(...)` auf | +| Effect | Mit `pluginManager.addEffect("app-*", drawer)` registrieren | `particles.effect.type` auf deine Effect-ID setzen | +| Interaction | Mit `pluginManager.addInteractor("app-*", interactor)` registrieren | In `interactivity.events` aktivieren / optionale Prufungen fur benutzerdefinierte Modi | +| Palette | Mit `pluginManager.addPalette("app-*", palette)` registrieren | `particles.palette` auf deine Palette-ID setzen | +| Path | Mit `pluginManager.addPathGenerator("app-*", generator)` registrieren | `particles.move.path.generator` auf deine Path-ID setzen | +| Plugin | `IPlugin` + `IContainerPlugin` erstellen und `engine.addPlugin(...)` aufrufen | Mit Plugin-Optionen und Lifecycle-Hooks aktivieren | +| Preset | Mit `tsParticles.addPreset("app-*", options)` registrieren | Root-`preset` setzen | +| Shape | Mit `tsParticles.addShape("app-*", drawer)` registrieren oder alle offiziellen Shape-Pakete laden | `particles.shape.type` und die shape-spezifischen Optionen in `particles.shape.options` setzen | +| Updater | Mit `pluginManager.addParticleUpdater("app-*", updater)` registrieren | Lauft automatisch fur Partikel, bei denen `isEnabled(...)` `true` zuruckgibt | ## Schnelle app-lokale Erstellung + Nutzung nach Erweiterungstyp @@ -82,7 +82,7 @@ await loadAppBundle(tsParticles); import type { Engine } from "@tsparticles/engine"; export async function loadAppEffect(engine: Engine): Promise { - await engine.pluginManager.register(e => { + await engine.pluginManager.register((e) => { e.pluginManager.addEffect("app-fade", () => Promise.resolve({ drawBefore: ({ context }) => { @@ -111,7 +111,11 @@ const options = { ### Interaktionen (external und particles) ```ts -import { ExternalInteractorBase, loadInteractivityPlugin, type IInteractivityData } from "@tsparticles/plugin-interactivity"; +import { + ExternalInteractorBase, + loadInteractivityPlugin, + type IInteractivityData, +} from "@tsparticles/plugin-interactivity"; import type { Engine, IDelta } from "@tsparticles/engine"; class AppHoverPauseInteractor extends ExternalInteractorBase { @@ -139,8 +143,8 @@ class AppHoverPauseInteractor extends ExternalInteractorBase { export async function loadAppInteraction(engine: Engine): Promise { await loadInteractivityPlugin(engine); - await engine.pluginManager.register(e => { - e.pluginManager.addInteractor?.("app-hover-pause", container => { + await engine.pluginManager.register((e) => { + e.pluginManager.addInteractor?.("app-hover-pause", (container) => { return Promise.resolve(new AppHoverPauseInteractor(container)); }); }); @@ -176,7 +180,7 @@ const appPalette: IPalette = { }; export async function loadAppPalette(engine: Engine): Promise { - await engine.pluginManager.register(e => { + await engine.pluginManager.register((e) => { e.pluginManager.addPalette("app-sunset", appPalette); }); } @@ -199,10 +203,10 @@ import { Vector, type Engine } from "@tsparticles/engine"; export async function loadAppPath(engine: Engine): Promise { await loadMovePlugin(engine); - await engine.pluginManager.register(e => { + await engine.pluginManager.register((e) => { e.pluginManager.addPathGenerator?.("app-sway", () => Promise.resolve({ - generate: particle => { + generate: (particle) => { const wave = Math.sin(particle.position.y * 0.02); return Vector.create(wave, 0); @@ -294,7 +298,6 @@ export async function loadAppPreset(): Promise { await loadAppPreset(); - const options = { preset: "app-hero", }; @@ -447,7 +450,7 @@ Die obige URL in `image.src` wird aus bestehenden Projektkonfigurationen wiederv import type { Engine, IDelta, Particle } from "@tsparticles/engine"; export async function loadAppUpdater(engine: Engine): Promise { - await engine.pluginManager.register(e => { + await engine.pluginManager.register((e) => { e.pluginManager.addParticleUpdater("app-drift", () => Promise.resolve({ init: (): void => {}, diff --git a/websites/website/docs/es/guide/bundles.md b/websites/website/docs/es/guide/bundles.md index 6d57becc02a..347dafe4d6b 100644 --- a/websites/website/docs/es/guide/bundles.md +++ b/websites/website/docs/es/guide/bundles.md @@ -4,15 +4,15 @@ Esta pagina te ayuda a elegir el bundle correcto de `tsParticles` y configurarlo ## Comparacion de paquetes -| Paquete | Ideal para | Estilo de setup | -| --- | --- | --- | -| `@tsparticles/basic` | Configuraciones ultra ligeras | `tsParticles` + `await loadBasic(tsParticles)` | -| `@tsparticles/slim` | La mayoria de sitios/apps | `tsParticles` + `await loadSlim(tsParticles)` | -| `tsparticles` | Conjunto completo de funciones oficiales con control del engine | `tsParticles` + `await loadFull(tsParticles)` | -| `@tsparticles/all` | Todas las funciones, prototipado rapido | `tsParticles` + `await loadAll(tsParticles)` | -| `@tsparticles/confetti` | Efectos de confeti con una llamada | `await confetti(options)` | -| `@tsparticles/fireworks` | Efectos de fuegos artificiales con una llamada | `await fireworks(options)` | -| `@tsparticles/particles` | API simple para fondo de particulas | `await particles(options)` | +| Paquete | Ideal para | Estilo de setup | +| ------------------------ | --------------------------------------------------------------- | ---------------------------------------------- | +| `@tsparticles/basic` | Configuraciones ultra ligeras | `tsParticles` + `await loadBasic(tsParticles)` | +| `@tsparticles/slim` | La mayoria de sitios/apps | `tsParticles` + `await loadSlim(tsParticles)` | +| `tsparticles` | Conjunto completo de funciones oficiales con control del engine | `tsParticles` + `await loadFull(tsParticles)` | +| `@tsparticles/all` | Todas las funciones, prototipado rapido | `tsParticles` + `await loadAll(tsParticles)` | +| `@tsparticles/confetti` | Efectos de confeti con una llamada | `await confetti(options)` | +| `@tsparticles/fireworks` | Efectos de fuegos artificiales con una llamada | `await fireworks(options)` | +| `@tsparticles/particles` | API simple para fondo de particulas | `await particles(options)` | ## Guias por bundle diff --git a/websites/website/docs/es/guide/option-rename-matrix.md b/websites/website/docs/es/guide/option-rename-matrix.md index d7004b4e887..d6dae5ad8b6 100644 --- a/websites/website/docs/es/guide/option-rename-matrix.md +++ b/websites/website/docs/es/guide/option-rename-matrix.md @@ -4,21 +4,21 @@ Referencia rapida para los renombres mas comunes durante migraciones. ## tsParticles -| Clave legacy | Clave actual | Notas | -| --- | --- | --- | -| `particles.color` | `particles.paint.fill` | El color principal se movio a `paint.fill`. | -| `particles.stroke` | `particles.paint.stroke` | El stroke se movio a `paint.stroke`. | +| Clave legacy | Clave actual | Notas | +| ------------------ | ------------------------ | ------------------------------------------- | +| `particles.color` | `particles.paint.fill` | El color principal se movio a `paint.fill`. | +| `particles.stroke` | `particles.paint.stroke` | El stroke se movio a `paint.stroke`. | ## particles.js legacy -| Clave particles.js | Clave actual | Notas | -| --- | --- | --- | -| `line_linked` | `links` | Renombrado al estilo moderno. | -| `retina_detect` | `detectRetina` | De snake_case a camelCase. | +| Clave particles.js | Clave actual | Notas | +| ------------------ | -------------- | ----------------------------- | +| `line_linked` | `links` | Renombrado al estilo moderno. | +| `retina_detect` | `detectRetina` | De snake_case a camelCase. | ## Load API -| API legacy | API actual | -| --- | --- | +| API legacy | API actual | +| --------------------------------- | ----------------------------------------- | | `tsParticles.load("id", options)` | `tsParticles.load({ id: "id", options })` | -| `particlesJS("id", options)` | `tsParticles.load({ id: "id", options })` | +| `particlesJS("id", options)` | `tsParticles.load({ id: "id", options })` | diff --git a/websites/website/docs/es/guide/plugins-customization.md b/websites/website/docs/es/guide/plugins-customization.md index d2a686ea474..3850f9f5d29 100644 --- a/websites/website/docs/es/guide/plugins-customization.md +++ b/websites/website/docs/es/guide/plugins-customization.md @@ -28,17 +28,17 @@ Si explicas estas categorias a los usuarios, entienden de inmediato hasta donde ## Tabla resumen -| Tipo | Creacion rapida (local en app) | Como usar | -| --- | --- | --- | -| Bundle | Compone tu propio `loadAppBundle(engine)` y llama a cargadores internos | Llama a `await loadAppBundle(tsParticles)` antes de `tsParticles.load(...)` | -| Effect | Registra con `pluginManager.addEffect("app-*", drawer)` | Establece `particles.effect.type` con el id de tu effect | -| Interaction | Registra con `pluginManager.addInteractor("app-*", interactor)` | Activa en `interactivity.events` / comprobaciones opcionales de modo personalizado | -| Palette | Registra con `pluginManager.addPalette("app-*", palette)` | Establece `particles.palette` con el id de tu palette | -| Path | Registra con `pluginManager.addPathGenerator("app-*", generator)` | Establece `particles.move.path.generator` con el id de tu path | -| Plugin | Crea `IPlugin` + `IContainerPlugin` y llama a `engine.addPlugin(...)` | Activa con opciones del plugin y hooks del ciclo de vida | -| Preset | Registra con `tsParticles.addPreset("app-*", options)` | Establece `preset` en la raiz | -| Shape | Registra con `tsParticles.addShape("app-*", drawer)` o carga todos los paquetes oficiales de shapes | Establece `particles.shape.type` y las opciones por shape en `particles.shape.options` | -| Updater | Registra con `pluginManager.addParticleUpdater("app-*", updater)` | Se ejecuta automaticamente en particulas donde `isEnabled(...)` devuelve `true` | +| Tipo | Creacion rapida (local en app) | Como usar | +| ----------- | --------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | +| Bundle | Compone tu propio `loadAppBundle(engine)` y llama a cargadores internos | Llama a `await loadAppBundle(tsParticles)` antes de `tsParticles.load(...)` | +| Effect | Registra con `pluginManager.addEffect("app-*", drawer)` | Establece `particles.effect.type` con el id de tu effect | +| Interaction | Registra con `pluginManager.addInteractor("app-*", interactor)` | Activa en `interactivity.events` / comprobaciones opcionales de modo personalizado | +| Palette | Registra con `pluginManager.addPalette("app-*", palette)` | Establece `particles.palette` con el id de tu palette | +| Path | Registra con `pluginManager.addPathGenerator("app-*", generator)` | Establece `particles.move.path.generator` con el id de tu path | +| Plugin | Crea `IPlugin` + `IContainerPlugin` y llama a `engine.addPlugin(...)` | Activa con opciones del plugin y hooks del ciclo de vida | +| Preset | Registra con `tsParticles.addPreset("app-*", options)` | Establece `preset` en la raiz | +| Shape | Registra con `tsParticles.addShape("app-*", drawer)` o carga todos los paquetes oficiales de shapes | Establece `particles.shape.type` y las opciones por shape en `particles.shape.options` | +| Updater | Registra con `pluginManager.addParticleUpdater("app-*", updater)` | Se ejecuta automaticamente en particulas donde `isEnabled(...)` devuelve `true` | ## Creacion local rapida + uso por tipo de extension @@ -82,7 +82,7 @@ await loadAppBundle(tsParticles); import type { Engine } from "@tsparticles/engine"; export async function loadAppEffect(engine: Engine): Promise { - await engine.pluginManager.register(e => { + await engine.pluginManager.register((e) => { e.pluginManager.addEffect("app-fade", () => Promise.resolve({ drawBefore: ({ context }) => { @@ -111,7 +111,11 @@ const options = { ### Interacciones (external y particles) ```ts -import { ExternalInteractorBase, loadInteractivityPlugin, type IInteractivityData } from "@tsparticles/plugin-interactivity"; +import { + ExternalInteractorBase, + loadInteractivityPlugin, + type IInteractivityData, +} from "@tsparticles/plugin-interactivity"; import type { Engine, IDelta } from "@tsparticles/engine"; class AppHoverPauseInteractor extends ExternalInteractorBase { @@ -139,8 +143,8 @@ class AppHoverPauseInteractor extends ExternalInteractorBase { export async function loadAppInteraction(engine: Engine): Promise { await loadInteractivityPlugin(engine); - await engine.pluginManager.register(e => { - e.pluginManager.addInteractor?.("app-hover-pause", container => { + await engine.pluginManager.register((e) => { + e.pluginManager.addInteractor?.("app-hover-pause", (container) => { return Promise.resolve(new AppHoverPauseInteractor(container)); }); }); @@ -176,7 +180,7 @@ const appPalette: IPalette = { }; export async function loadAppPalette(engine: Engine): Promise { - await engine.pluginManager.register(e => { + await engine.pluginManager.register((e) => { e.pluginManager.addPalette("app-sunset", appPalette); }); } @@ -199,10 +203,10 @@ import { Vector, type Engine } from "@tsparticles/engine"; export async function loadAppPath(engine: Engine): Promise { await loadMovePlugin(engine); - await engine.pluginManager.register(e => { + await engine.pluginManager.register((e) => { e.pluginManager.addPathGenerator?.("app-sway", () => Promise.resolve({ - generate: particle => { + generate: (particle) => { const wave = Math.sin(particle.position.y * 0.02); return Vector.create(wave, 0); @@ -294,7 +298,6 @@ export async function loadAppPreset(): Promise { await loadAppPreset(); - const options = { preset: "app-hero", }; @@ -447,7 +450,7 @@ La URL de `image.src` de arriba se reutiliza de las configuraciones existentes d import type { Engine, IDelta, Particle } from "@tsparticles/engine"; export async function loadAppUpdater(engine: Engine): Promise { - await engine.pluginManager.register(e => { + await engine.pluginManager.register((e) => { e.pluginManager.addParticleUpdater("app-drift", () => Promise.resolve({ init: (): void => {}, diff --git a/websites/website/docs/fr/guide/bundles.md b/websites/website/docs/fr/guide/bundles.md index 7acbd1d8759..c3b38c63f1e 100644 --- a/websites/website/docs/fr/guide/bundles.md +++ b/websites/website/docs/fr/guide/bundles.md @@ -4,15 +4,15 @@ Cette page vous aide a choisir le bon bundle `tsParticles` et a le configurer ra ## Comparaison des packages -| Package | Ideal pour | Style de setup | -| --- | --- | --- | -| `@tsparticles/basic` | Configurations tres legeres | `tsParticles` + `await loadBasic(tsParticles)` | -| `@tsparticles/slim` | La plupart des sites/apps | `tsParticles` + `await loadSlim(tsParticles)` | -| `tsparticles` | Ensemble complet de fonctionnalites officielles avec controle engine | `tsParticles` + `await loadFull(tsParticles)` | -| `@tsparticles/all` | Toutes les fonctionnalites, prototypage rapide | `tsParticles` + `await loadAll(tsParticles)` | -| `@tsparticles/confetti` | Effets confettis en un appel | `await confetti(options)` | -| `@tsparticles/fireworks` | Effets feux d'artifice en un appel | `await fireworks(options)` | -| `@tsparticles/particles` | API simple pour fond de particules | `await particles(options)` | +| Package | Ideal pour | Style de setup | +| ------------------------ | -------------------------------------------------------------------- | ---------------------------------------------- | +| `@tsparticles/basic` | Configurations tres legeres | `tsParticles` + `await loadBasic(tsParticles)` | +| `@tsparticles/slim` | La plupart des sites/apps | `tsParticles` + `await loadSlim(tsParticles)` | +| `tsparticles` | Ensemble complet de fonctionnalites officielles avec controle engine | `tsParticles` + `await loadFull(tsParticles)` | +| `@tsparticles/all` | Toutes les fonctionnalites, prototypage rapide | `tsParticles` + `await loadAll(tsParticles)` | +| `@tsparticles/confetti` | Effets confettis en un appel | `await confetti(options)` | +| `@tsparticles/fireworks` | Effets feux d'artifice en un appel | `await fireworks(options)` | +| `@tsparticles/particles` | API simple pour fond de particules | `await particles(options)` | ## Guides par bundle diff --git a/websites/website/docs/fr/guide/option-rename-matrix.md b/websites/website/docs/fr/guide/option-rename-matrix.md index 4a3f337425b..6be00e71717 100644 --- a/websites/website/docs/fr/guide/option-rename-matrix.md +++ b/websites/website/docs/fr/guide/option-rename-matrix.md @@ -4,21 +4,21 @@ Reference rapide pour les renommages les plus frequents pendant les migrations. ## tsParticles -| Cle legacy | Cle actuelle | Notes | -| --- | --- | --- | -| `particles.color` | `particles.paint.fill` | La couleur principale a ete deplacee vers `paint.fill`. | -| `particles.stroke` | `particles.paint.stroke` | Le stroke a ete deplace vers `paint.stroke`. | +| Cle legacy | Cle actuelle | Notes | +| ------------------ | ------------------------ | ------------------------------------------------------- | +| `particles.color` | `particles.paint.fill` | La couleur principale a ete deplacee vers `paint.fill`. | +| `particles.stroke` | `particles.paint.stroke` | Le stroke a ete deplace vers `paint.stroke`. | ## particles.js legacy -| Cle particles.js | Cle actuelle | Notes | -| --- | --- | --- | -| `line_linked` | `links` | Renomme selon le style moderne. | -| `retina_detect` | `detectRetina` | De snake_case vers camelCase. | +| Cle particles.js | Cle actuelle | Notes | +| ---------------- | -------------- | ------------------------------- | +| `line_linked` | `links` | Renomme selon le style moderne. | +| `retina_detect` | `detectRetina` | De snake_case vers camelCase. | ## Load API -| API legacy | API actuelle | -| --- | --- | +| API legacy | API actuelle | +| --------------------------------- | ----------------------------------------- | | `tsParticles.load("id", options)` | `tsParticles.load({ id: "id", options })` | -| `particlesJS("id", options)` | `tsParticles.load({ id: "id", options })` | +| `particlesJS("id", options)` | `tsParticles.load({ id: "id", options })` | diff --git a/websites/website/docs/fr/guide/plugins-customization.md b/websites/website/docs/fr/guide/plugins-customization.md index 8ebf4a69a94..313718bbb4c 100644 --- a/websites/website/docs/fr/guide/plugins-customization.md +++ b/websites/website/docs/fr/guide/plugins-customization.md @@ -28,17 +28,17 @@ Si vous expliquez ces categories aux utilisateurs, ils comprennent immediatement ## Tableau recapitulatif -| Type | Creation rapide (locale a l'app) | Utilisation | -| --- | --- | --- | -| Bundle | Composez votre `loadAppBundle(engine)` et appelez les chargeurs internes | Appelez `await loadAppBundle(tsParticles)` avant `tsParticles.load(...)` | -| Effect | Enregistrez avec `pluginManager.addEffect("app-*", drawer)` | Definissez `particles.effect.type` avec l'id de votre effect | -| Interaction | Enregistrez avec `pluginManager.addInteractor("app-*", interactor)` | Activez dans `interactivity.events` / verifications optionnelles de mode personnalise | -| Palette | Enregistrez avec `pluginManager.addPalette("app-*", palette)` | Definissez `particles.palette` avec l'id de votre palette | -| Path | Enregistrez avec `pluginManager.addPathGenerator("app-*", generator)` | Definissez `particles.move.path.generator` avec l'id de votre path | -| Plugin | Creez `IPlugin` + `IContainerPlugin` et appelez `engine.addPlugin(...)` | Activez via les options du plugin et les hooks du cycle de vie | -| Preset | Enregistrez avec `tsParticles.addPreset("app-*", options)` | Definissez le `preset` racine | -| Shape | Enregistrez avec `tsParticles.addShape("app-*", drawer)` ou chargez tous les packages shape officiels | Definissez `particles.shape.type` et les options par shape dans `particles.shape.options` | -| Updater | Enregistrez avec `pluginManager.addParticleUpdater("app-*", updater)` | S'execute automatiquement sur les particules ou `isEnabled(...)` renvoie `true` | +| Type | Creation rapide (locale a l'app) | Utilisation | +| ----------- | ----------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | +| Bundle | Composez votre `loadAppBundle(engine)` et appelez les chargeurs internes | Appelez `await loadAppBundle(tsParticles)` avant `tsParticles.load(...)` | +| Effect | Enregistrez avec `pluginManager.addEffect("app-*", drawer)` | Definissez `particles.effect.type` avec l'id de votre effect | +| Interaction | Enregistrez avec `pluginManager.addInteractor("app-*", interactor)` | Activez dans `interactivity.events` / verifications optionnelles de mode personnalise | +| Palette | Enregistrez avec `pluginManager.addPalette("app-*", palette)` | Definissez `particles.palette` avec l'id de votre palette | +| Path | Enregistrez avec `pluginManager.addPathGenerator("app-*", generator)` | Definissez `particles.move.path.generator` avec l'id de votre path | +| Plugin | Creez `IPlugin` + `IContainerPlugin` et appelez `engine.addPlugin(...)` | Activez via les options du plugin et les hooks du cycle de vie | +| Preset | Enregistrez avec `tsParticles.addPreset("app-*", options)` | Definissez le `preset` racine | +| Shape | Enregistrez avec `tsParticles.addShape("app-*", drawer)` ou chargez tous les packages shape officiels | Definissez `particles.shape.type` et les options par shape dans `particles.shape.options` | +| Updater | Enregistrez avec `pluginManager.addParticleUpdater("app-*", updater)` | S'execute automatiquement sur les particules ou `isEnabled(...)` renvoie `true` | ## Creation locale rapide + utilisation par type d'extension @@ -82,7 +82,7 @@ await loadAppBundle(tsParticles); import type { Engine } from "@tsparticles/engine"; export async function loadAppEffect(engine: Engine): Promise { - await engine.pluginManager.register(e => { + await engine.pluginManager.register((e) => { e.pluginManager.addEffect("app-fade", () => Promise.resolve({ drawBefore: ({ context }) => { @@ -111,7 +111,11 @@ const options = { ### Interactions (external et particles) ```ts -import { ExternalInteractorBase, loadInteractivityPlugin, type IInteractivityData } from "@tsparticles/plugin-interactivity"; +import { + ExternalInteractorBase, + loadInteractivityPlugin, + type IInteractivityData, +} from "@tsparticles/plugin-interactivity"; import type { Engine, IDelta } from "@tsparticles/engine"; class AppHoverPauseInteractor extends ExternalInteractorBase { @@ -139,8 +143,8 @@ class AppHoverPauseInteractor extends ExternalInteractorBase { export async function loadAppInteraction(engine: Engine): Promise { await loadInteractivityPlugin(engine); - await engine.pluginManager.register(e => { - e.pluginManager.addInteractor?.("app-hover-pause", container => { + await engine.pluginManager.register((e) => { + e.pluginManager.addInteractor?.("app-hover-pause", (container) => { return Promise.resolve(new AppHoverPauseInteractor(container)); }); }); @@ -176,7 +180,7 @@ const appPalette: IPalette = { }; export async function loadAppPalette(engine: Engine): Promise { - await engine.pluginManager.register(e => { + await engine.pluginManager.register((e) => { e.pluginManager.addPalette("app-sunset", appPalette); }); } @@ -199,10 +203,10 @@ import { Vector, type Engine } from "@tsparticles/engine"; export async function loadAppPath(engine: Engine): Promise { await loadMovePlugin(engine); - await engine.pluginManager.register(e => { + await engine.pluginManager.register((e) => { e.pluginManager.addPathGenerator?.("app-sway", () => Promise.resolve({ - generate: particle => { + generate: (particle) => { const wave = Math.sin(particle.position.y * 0.02); return Vector.create(wave, 0); @@ -294,7 +298,6 @@ export async function loadAppPreset(): Promise { await loadAppPreset(); - const options = { preset: "app-hero", }; @@ -447,7 +450,7 @@ L'URL `image.src` ci-dessus est reutilisee depuis les configurations existantes import type { Engine, IDelta, Particle } from "@tsparticles/engine"; export async function loadAppUpdater(engine: Engine): Promise { - await engine.pluginManager.register(e => { + await engine.pluginManager.register((e) => { e.pluginManager.addParticleUpdater("app-drift", () => Promise.resolve({ init: (): void => {}, diff --git a/websites/website/docs/guide/bundles.md b/websites/website/docs/guide/bundles.md index df0b561dcb6..759b2a0989d 100644 --- a/websites/website/docs/guide/bundles.md +++ b/websites/website/docs/guide/bundles.md @@ -4,15 +4,15 @@ This page helps you pick the right `tsParticles` bundle and set it up quickly. ## Package comparison -| Package | Best for | Setup style | -| --- | --- | --- | -| `@tsparticles/basic` | Extra-light setups | `tsParticles` + `await loadBasic(tsParticles)` | -| `@tsparticles/slim` | Most websites/apps | `tsParticles` + `await loadSlim(tsParticles)` | -| `tsparticles` | Full official feature set with engine control | `tsParticles` + `await loadFull(tsParticles)` | -| `@tsparticles/all` | Full features, fastest prototyping | `tsParticles` + `await loadAll(tsParticles)` | -| `@tsparticles/confetti` | One-call confetti effects | `await confetti(options)` | -| `@tsparticles/fireworks` | One-call fireworks effects | `await fireworks(options)` | -| `@tsparticles/particles` | Simple particles background API | `await particles(options)` | +| Package | Best for | Setup style | +| ------------------------ | --------------------------------------------- | ---------------------------------------------- | +| `@tsparticles/basic` | Extra-light setups | `tsParticles` + `await loadBasic(tsParticles)` | +| `@tsparticles/slim` | Most websites/apps | `tsParticles` + `await loadSlim(tsParticles)` | +| `tsparticles` | Full official feature set with engine control | `tsParticles` + `await loadFull(tsParticles)` | +| `@tsparticles/all` | Full features, fastest prototyping | `tsParticles` + `await loadAll(tsParticles)` | +| `@tsparticles/confetti` | One-call confetti effects | `await confetti(options)` | +| `@tsparticles/fireworks` | One-call fireworks effects | `await fireworks(options)` | +| `@tsparticles/particles` | Simple particles background API | `await particles(options)` | ## Bundle guides diff --git a/websites/website/docs/guide/option-rename-matrix.md b/websites/website/docs/guide/option-rename-matrix.md index 73d08c64239..03aa4c79102 100644 --- a/websites/website/docs/guide/option-rename-matrix.md +++ b/websites/website/docs/guide/option-rename-matrix.md @@ -4,28 +4,28 @@ Use this page as a fast lookup when migrating configs across major versions. ## Core tsParticles option mappings -| Legacy key | Current key | Notes | -| --- | --- | --- | -| `particles.color` | `particles.paint.fill` | Main color path moved under `paint.fill`. | -| `particles.stroke` | `particles.paint.stroke` | Stroke path moved under `paint.stroke`. | +| Legacy key | Current key | Notes | +| ------------------ | ------------------------ | ----------------------------------------- | +| `particles.color` | `particles.paint.fill` | Main color path moved under `paint.fill`. | +| `particles.stroke` | `particles.paint.stroke` | Stroke path moved under `paint.stroke`. | ## Legacy particles.js compatibility mappings These mappings are useful if your config still comes from old particles.js JSON. -| particles.js key | Current key | Notes | -| --- | --- | --- | -| `line_linked` | `links` | Same concept, renamed to modern key style. | -| `retina_detect` | `detectRetina` | Snake case to camel case. | +| particles.js key | Current key | Notes | +| ---------------- | -------------- | ------------------------------------------ | +| `line_linked` | `links` | Same concept, renamed to modern key style. | +| `retina_detect` | `detectRetina` | Snake case to camel case. | ## Load API migration quick map This is not an option key rename, but it is one of the most common migration breakages. -| Legacy API | Current API | -| --- | --- | +| Legacy API | Current API | +| --------------------------------- | ----------------------------------------- | | `tsParticles.load("id", options)` | `tsParticles.load({ id: "id", options })` | -| `particlesJS("id", options)` | `tsParticles.load({ id: "id", options })` | +| `particlesJS("id", options)` | `tsParticles.load({ id: "id", options })` | ## See also diff --git a/websites/website/docs/guide/plugins-customization.md b/websites/website/docs/guide/plugins-customization.md index ec22703c304..b4af17c2864 100644 --- a/websites/website/docs/guide/plugins-customization.md +++ b/websites/website/docs/guide/plugins-customization.md @@ -28,17 +28,17 @@ If you explain these categories to users, they immediately understand how deep t ## Summary table -| Type | Quick create (app-local) | How to use | -| --- | --- | --- | -| Bundle | Compose your own `loadAppBundle(engine)` and call internal loaders | Call `await loadAppBundle(tsParticles)` before `tsParticles.load(...)` | -| Effect | Register with `pluginManager.addEffect("app-*", drawer)` | Set `particles.effect.type` to your effect id | -| Interaction | Register with `pluginManager.addInteractor("app-*", interactor)` | Enable in `interactivity.events` / optional custom mode checks | -| Palette | Register with `pluginManager.addPalette("app-*", palette)` | Set `particles.palette` to your palette id | -| Path | Register with `pluginManager.addPathGenerator("app-*", generator)` | Set `particles.move.path.generator` to your path id | -| Plugin | Create `IPlugin` + `IContainerPlugin` and call `engine.addPlugin(...)` | Enable with your plugin options and lifecycle hooks | -| Preset | Register with `tsParticles.addPreset("app-*", options)` | Set root `preset` | -| Shape | Register with `tsParticles.addShape("app-*", drawer)` or load all official shape packages | Set `particles.shape.type` and per-shape `particles.shape.options` | -| Updater | Register with `pluginManager.addParticleUpdater("app-*", updater)` | Runs automatically on particles where `isEnabled(...)` returns `true` | +| Type | Quick create (app-local) | How to use | +| ----------- | ----------------------------------------------------------------------------------------- | ---------------------------------------------------------------------- | +| Bundle | Compose your own `loadAppBundle(engine)` and call internal loaders | Call `await loadAppBundle(tsParticles)` before `tsParticles.load(...)` | +| Effect | Register with `pluginManager.addEffect("app-*", drawer)` | Set `particles.effect.type` to your effect id | +| Interaction | Register with `pluginManager.addInteractor("app-*", interactor)` | Enable in `interactivity.events` / optional custom mode checks | +| Palette | Register with `pluginManager.addPalette("app-*", palette)` | Set `particles.palette` to your palette id | +| Path | Register with `pluginManager.addPathGenerator("app-*", generator)` | Set `particles.move.path.generator` to your path id | +| Plugin | Create `IPlugin` + `IContainerPlugin` and call `engine.addPlugin(...)` | Enable with your plugin options and lifecycle hooks | +| Preset | Register with `tsParticles.addPreset("app-*", options)` | Set root `preset` | +| Shape | Register with `tsParticles.addShape("app-*", drawer)` or load all official shape packages | Set `particles.shape.type` and per-shape `particles.shape.options` | +| Updater | Register with `pluginManager.addParticleUpdater("app-*", updater)` | Runs automatically on particles where `isEnabled(...)` returns `true` | ## Quick app-local creation + usage by extension type @@ -82,7 +82,7 @@ await loadAppBundle(tsParticles); import type { Engine } from "@tsparticles/engine"; export async function loadAppEffect(engine: Engine): Promise { - await engine.pluginManager.register(e => { + await engine.pluginManager.register((e) => { e.pluginManager.addEffect("app-fade", () => Promise.resolve({ drawBefore: ({ context }) => { @@ -111,7 +111,11 @@ const options = { ### Interactions (external and particles) ```ts -import { ExternalInteractorBase, loadInteractivityPlugin, type IInteractivityData } from "@tsparticles/plugin-interactivity"; +import { + ExternalInteractorBase, + loadInteractivityPlugin, + type IInteractivityData, +} from "@tsparticles/plugin-interactivity"; import type { Engine, IDelta } from "@tsparticles/engine"; class AppHoverPauseInteractor extends ExternalInteractorBase { @@ -139,8 +143,8 @@ class AppHoverPauseInteractor extends ExternalInteractorBase { export async function loadAppInteraction(engine: Engine): Promise { await loadInteractivityPlugin(engine); - await engine.pluginManager.register(e => { - e.pluginManager.addInteractor?.("app-hover-pause", container => { + await engine.pluginManager.register((e) => { + e.pluginManager.addInteractor?.("app-hover-pause", (container) => { return Promise.resolve(new AppHoverPauseInteractor(container)); }); }); @@ -176,7 +180,7 @@ const appPalette: IPalette = { }; export async function loadAppPalette(engine: Engine): Promise { - await engine.pluginManager.register(e => { + await engine.pluginManager.register((e) => { e.pluginManager.addPalette("app-sunset", appPalette); }); } @@ -199,10 +203,10 @@ import { Vector, type Engine } from "@tsparticles/engine"; export async function loadAppPath(engine: Engine): Promise { await loadMovePlugin(engine); - await engine.pluginManager.register(e => { + await engine.pluginManager.register((e) => { e.pluginManager.addPathGenerator?.("app-sway", () => Promise.resolve({ - generate: particle => { + generate: (particle) => { const wave = Math.sin(particle.position.y * 0.02); return Vector.create(wave, 0); @@ -294,7 +298,6 @@ export async function loadAppPreset(): Promise { await loadAppPreset(); - const options = { preset: "app-hero", }; @@ -447,7 +450,7 @@ The `image.src` URL above is reused from existing project configs (`utils/config import type { Engine, IDelta, Particle } from "@tsparticles/engine"; export async function loadAppUpdater(engine: Engine): Promise { - await engine.pluginManager.register(e => { + await engine.pluginManager.register((e) => { e.pluginManager.addParticleUpdater("app-drift", () => Promise.resolve({ init: (): void => {}, diff --git a/websites/website/docs/hi/guide/bundles.md b/websites/website/docs/hi/guide/bundles.md index 9e0b46fc245..231c344e0da 100644 --- a/websites/website/docs/hi/guide/bundles.md +++ b/websites/website/docs/hi/guide/bundles.md @@ -4,15 +4,15 @@ ## पैकेज तुलना -| पैकेज | किसके लिए बेहतर | setup स्टाइल | -| --- | --- | --- | -| `@tsparticles/basic` | बहुत हल्के सेटअप | `tsParticles` + `await loadBasic(tsParticles)` | -| `@tsparticles/slim` | ज्यादातर वेबसाइट/ऐप्स | `tsParticles` + `await loadSlim(tsParticles)` | -| `tsparticles` | official full फीचर सेट और engine control | `tsParticles` + `await loadFull(tsParticles)` | -| `@tsparticles/all` | सभी फीचर्स, तेज prototyping | `tsParticles` + `await loadAll(tsParticles)` | -| `@tsparticles/confetti` | one-call confetti effects | `await confetti(options)` | -| `@tsparticles/fireworks` | one-call fireworks effects | `await fireworks(options)` | -| `@tsparticles/particles` | सरल particles background API | `await particles(options)` | +| पैकेज | किसके लिए बेहतर | setup स्टाइल | +| ------------------------ | ---------------------------------------- | ---------------------------------------------- | +| `@tsparticles/basic` | बहुत हल्के सेटअप | `tsParticles` + `await loadBasic(tsParticles)` | +| `@tsparticles/slim` | ज्यादातर वेबसाइट/ऐप्स | `tsParticles` + `await loadSlim(tsParticles)` | +| `tsparticles` | official full फीचर सेट और engine control | `tsParticles` + `await loadFull(tsParticles)` | +| `@tsparticles/all` | सभी फीचर्स, तेज prototyping | `tsParticles` + `await loadAll(tsParticles)` | +| `@tsparticles/confetti` | one-call confetti effects | `await confetti(options)` | +| `@tsparticles/fireworks` | one-call fireworks effects | `await fireworks(options)` | +| `@tsparticles/particles` | सरल particles background API | `await particles(options)` | ## Bundle guides diff --git a/websites/website/docs/hi/guide/option-rename-matrix.md b/websites/website/docs/hi/guide/option-rename-matrix.md index 5f1a51133e1..97c22763b67 100644 --- a/websites/website/docs/hi/guide/option-rename-matrix.md +++ b/websites/website/docs/hi/guide/option-rename-matrix.md @@ -4,21 +4,21 @@ Migration के दौरान सबसे common renames के लिए qu ## tsParticles -| Legacy key | Current key | Notes | -| --- | --- | --- | -| `particles.color` | `particles.paint.fill` | मुख्य color path `paint.fill` में moved है। | -| `particles.stroke` | `particles.paint.stroke` | stroke path `paint.stroke` में moved है। | +| Legacy key | Current key | Notes | +| ------------------ | ------------------------ | ------------------------------------------- | +| `particles.color` | `particles.paint.fill` | मुख्य color path `paint.fill` में moved है। | +| `particles.stroke` | `particles.paint.stroke` | stroke path `paint.stroke` में moved है। | ## particles.js legacy -| particles.js key | Current key | Notes | -| --- | --- | --- | -| `line_linked` | `links` | modern key style में rename। | -| `retina_detect` | `detectRetina` | snake_case से camelCase. | +| particles.js key | Current key | Notes | +| ---------------- | -------------- | ---------------------------- | +| `line_linked` | `links` | modern key style में rename। | +| `retina_detect` | `detectRetina` | snake_case से camelCase. | ## Load API -| Legacy API | Current API | -| --- | --- | +| Legacy API | Current API | +| --------------------------------- | ----------------------------------------- | | `tsParticles.load("id", options)` | `tsParticles.load({ id: "id", options })` | -| `particlesJS("id", options)` | `tsParticles.load({ id: "id", options })` | +| `particlesJS("id", options)` | `tsParticles.load({ id: "id", options })` | diff --git a/websites/website/docs/hi/guide/plugins-customization.md b/websites/website/docs/hi/guide/plugins-customization.md index 08159af2e3a..7a8f01c2f0d 100644 --- a/websites/website/docs/hi/guide/plugins-customization.md +++ b/websites/website/docs/hi/guide/plugins-customization.md @@ -28,17 +28,17 @@ tsParticles का customization केवल custom plugin तक सीमि ## सारणी -| Type | त्वरित निर्माण (app-local) | उपयोग कैसे करें | -| --- | --- | --- | -| Bundle | अपना `loadAppBundle(engine)` बनाएं और internal loader कॉल करें | `tsParticles.load(...)` से पहले `await loadAppBundle(tsParticles)` कॉल करें | -| Effect | `pluginManager.addEffect("app-*", drawer)` से register करें | `particles.effect.type` को अपने effect id पर सेट करें | -| Interaction | `pluginManager.addInteractor("app-*", interactor)` से register करें | `interactivity.events` में enable करें / वैकल्पिक custom mode checks | -| Palette | `pluginManager.addPalette("app-*", palette)` से register करें | `particles.palette` को अपने palette id पर सेट करें | -| Path | `pluginManager.addPathGenerator("app-*", generator)` से register करें | `particles.move.path.generator` को अपने path id पर सेट करें | -| Plugin | `IPlugin` + `IContainerPlugin` बनाएं और `engine.addPlugin(...)` कॉल करें | plugin options और lifecycle hooks के साथ enable करें | -| Preset | `tsParticles.addPreset("app-*", options)` से register करें | root `preset` सेट करें | -| Shape | `tsParticles.addShape("app-*", drawer)` से register करें या सभी official shape package load करें | `particles.shape.type` और per-shape `particles.shape.options` सेट करें | -| Updater | `pluginManager.addParticleUpdater("app-*", updater)` से register करें | जहां `isEnabled(...)` `true` लौटाए, वहां particle पर अपने-आप चलेगा | +| Type | त्वरित निर्माण (app-local) | उपयोग कैसे करें | +| ----------- | ------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------- | +| Bundle | अपना `loadAppBundle(engine)` बनाएं और internal loader कॉल करें | `tsParticles.load(...)` से पहले `await loadAppBundle(tsParticles)` कॉल करें | +| Effect | `pluginManager.addEffect("app-*", drawer)` से register करें | `particles.effect.type` को अपने effect id पर सेट करें | +| Interaction | `pluginManager.addInteractor("app-*", interactor)` से register करें | `interactivity.events` में enable करें / वैकल्पिक custom mode checks | +| Palette | `pluginManager.addPalette("app-*", palette)` से register करें | `particles.palette` को अपने palette id पर सेट करें | +| Path | `pluginManager.addPathGenerator("app-*", generator)` से register करें | `particles.move.path.generator` को अपने path id पर सेट करें | +| Plugin | `IPlugin` + `IContainerPlugin` बनाएं और `engine.addPlugin(...)` कॉल करें | plugin options और lifecycle hooks के साथ enable करें | +| Preset | `tsParticles.addPreset("app-*", options)` से register करें | root `preset` सेट करें | +| Shape | `tsParticles.addShape("app-*", drawer)` से register करें या सभी official shape package load करें | `particles.shape.type` और per-shape `particles.shape.options` सेट करें | +| Updater | `pluginManager.addParticleUpdater("app-*", updater)` से register करें | जहां `isEnabled(...)` `true` लौटाए, वहां particle पर अपने-आप चलेगा | ## extension type के अनुसार त्वरित app-local creation + usage @@ -82,7 +82,7 @@ await loadAppBundle(tsParticles); import type { Engine } from "@tsparticles/engine"; export async function loadAppEffect(engine: Engine): Promise { - await engine.pluginManager.register(e => { + await engine.pluginManager.register((e) => { e.pluginManager.addEffect("app-fade", () => Promise.resolve({ drawBefore: ({ context }) => { @@ -111,7 +111,11 @@ const options = { ### Interactions (external और particles) ```ts -import { ExternalInteractorBase, loadInteractivityPlugin, type IInteractivityData } from "@tsparticles/plugin-interactivity"; +import { + ExternalInteractorBase, + loadInteractivityPlugin, + type IInteractivityData, +} from "@tsparticles/plugin-interactivity"; import type { Engine, IDelta } from "@tsparticles/engine"; class AppHoverPauseInteractor extends ExternalInteractorBase { @@ -139,8 +143,8 @@ class AppHoverPauseInteractor extends ExternalInteractorBase { export async function loadAppInteraction(engine: Engine): Promise { await loadInteractivityPlugin(engine); - await engine.pluginManager.register(e => { - e.pluginManager.addInteractor?.("app-hover-pause", container => { + await engine.pluginManager.register((e) => { + e.pluginManager.addInteractor?.("app-hover-pause", (container) => { return Promise.resolve(new AppHoverPauseInteractor(container)); }); }); @@ -176,7 +180,7 @@ const appPalette: IPalette = { }; export async function loadAppPalette(engine: Engine): Promise { - await engine.pluginManager.register(e => { + await engine.pluginManager.register((e) => { e.pluginManager.addPalette("app-sunset", appPalette); }); } @@ -199,10 +203,10 @@ import { Vector, type Engine } from "@tsparticles/engine"; export async function loadAppPath(engine: Engine): Promise { await loadMovePlugin(engine); - await engine.pluginManager.register(e => { + await engine.pluginManager.register((e) => { e.pluginManager.addPathGenerator?.("app-sway", () => Promise.resolve({ - generate: particle => { + generate: (particle) => { const wave = Math.sin(particle.position.y * 0.02); return Vector.create(wave, 0); @@ -294,7 +298,6 @@ export async function loadAppPreset(): Promise { await loadAppPreset(); - const options = { preset: "app-hero", }; @@ -447,7 +450,7 @@ const options = { import type { Engine, IDelta, Particle } from "@tsparticles/engine"; export async function loadAppUpdater(engine: Engine): Promise { - await engine.pluginManager.register(e => { + await engine.pluginManager.register((e) => { e.pluginManager.addParticleUpdater("app-drift", () => Promise.resolve({ init: (): void => {}, diff --git a/websites/website/docs/it/guide/bundles.md b/websites/website/docs/it/guide/bundles.md index 817acd891c6..e80d9084cbf 100644 --- a/websites/website/docs/it/guide/bundles.md +++ b/websites/website/docs/it/guide/bundles.md @@ -4,15 +4,15 @@ Questa pagina ti aiuta a scegliere il bundle `tsParticles` giusto e a configurar ## Confronto pacchetti -| Pacchetto | Ideale per | Stile di setup | -| --- | --- | --- | -| `@tsparticles/basic` | Setup ultra leggeri | `tsParticles` + `await loadBasic(tsParticles)` | -| `@tsparticles/slim` | La maggior parte di siti/app | `tsParticles` + `await loadSlim(tsParticles)` | -| `tsparticles` | Set completo di funzionalita ufficiali con controllo engine | `tsParticles` + `await loadFull(tsParticles)` | -| `@tsparticles/all` | Tutte le funzionalita, prototipazione rapida | `tsParticles` + `await loadAll(tsParticles)` | -| `@tsparticles/confetti` | Effetti coriandoli con una chiamata | `await confetti(options)` | -| `@tsparticles/fireworks` | Effetti fuochi d'artificio con una chiamata | `await fireworks(options)` | -| `@tsparticles/particles` | API semplice per sfondo particellare | `await particles(options)` | +| Pacchetto | Ideale per | Stile di setup | +| ------------------------ | ----------------------------------------------------------- | ---------------------------------------------- | +| `@tsparticles/basic` | Setup ultra leggeri | `tsParticles` + `await loadBasic(tsParticles)` | +| `@tsparticles/slim` | La maggior parte di siti/app | `tsParticles` + `await loadSlim(tsParticles)` | +| `tsparticles` | Set completo di funzionalita ufficiali con controllo engine | `tsParticles` + `await loadFull(tsParticles)` | +| `@tsparticles/all` | Tutte le funzionalita, prototipazione rapida | `tsParticles` + `await loadAll(tsParticles)` | +| `@tsparticles/confetti` | Effetti coriandoli con una chiamata | `await confetti(options)` | +| `@tsparticles/fireworks` | Effetti fuochi d'artificio con una chiamata | `await fireworks(options)` | +| `@tsparticles/particles` | API semplice per sfondo particellare | `await particles(options)` | ## Guide per bundle diff --git a/websites/website/docs/it/guide/option-rename-matrix.md b/websites/website/docs/it/guide/option-rename-matrix.md index 26a4d63be1c..07f940a8233 100644 --- a/websites/website/docs/it/guide/option-rename-matrix.md +++ b/websites/website/docs/it/guide/option-rename-matrix.md @@ -4,21 +4,21 @@ Riferimento rapido per le rinomine piu comuni durante le migrazioni. ## tsParticles -| Chiave legacy | Chiave attuale | Note | -| --- | --- | --- | -| `particles.color` | `particles.paint.fill` | Colore principale spostato in `paint.fill`. | -| `particles.stroke` | `particles.paint.stroke` | Stroke spostato in `paint.stroke`. | +| Chiave legacy | Chiave attuale | Note | +| ------------------ | ------------------------ | ------------------------------------------- | +| `particles.color` | `particles.paint.fill` | Colore principale spostato in `paint.fill`. | +| `particles.stroke` | `particles.paint.stroke` | Stroke spostato in `paint.stroke`. | ## particles.js legacy -| Chiave particles.js | Chiave attuale | Note | -| --- | --- | --- | -| `line_linked` | `links` | Rinominata in stile moderno. | -| `retina_detect` | `detectRetina` | Da snake_case a camelCase. | +| Chiave particles.js | Chiave attuale | Note | +| ------------------- | -------------- | ---------------------------- | +| `line_linked` | `links` | Rinominata in stile moderno. | +| `retina_detect` | `detectRetina` | Da snake_case a camelCase. | ## Load API -| API legacy | API attuale | -| --- | --- | +| API legacy | API attuale | +| --------------------------------- | ----------------------------------------- | | `tsParticles.load("id", options)` | `tsParticles.load({ id: "id", options })` | -| `particlesJS("id", options)` | `tsParticles.load({ id: "id", options })` | +| `particlesJS("id", options)` | `tsParticles.load({ id: "id", options })` | diff --git a/websites/website/docs/it/guide/plugins-customization.md b/websites/website/docs/it/guide/plugins-customization.md index cd528c0bc59..77034c9f8be 100644 --- a/websites/website/docs/it/guide/plugins-customization.md +++ b/websites/website/docs/it/guide/plugins-customization.md @@ -28,17 +28,17 @@ Se spieghi queste categorie agli utenti, capiscono subito quanto puo essere prof ## Tabella riassuntiva -| Tipo | Creazione rapida (locale all'app) | Come usarlo | -| --- | --- | --- | -| Bundle | Componi il tuo `loadAppBundle(engine)` e richiama i loader interni | Chiama `await loadAppBundle(tsParticles)` prima di `tsParticles.load(...)` | -| Effect | Registra con `pluginManager.addEffect("app-*", drawer)` | Imposta `particles.effect.type` con l'id del tuo effect | -| Interaction | Registra con `pluginManager.addInteractor("app-*", interactor)` | Abilita in `interactivity.events` / controlli opzionali su mode custom | -| Palette | Registra con `pluginManager.addPalette("app-*", palette)` | Imposta `particles.palette` con l'id della tua palette | -| Path | Registra con `pluginManager.addPathGenerator("app-*", generator)` | Imposta `particles.move.path.generator` con l'id del tuo path | -| Plugin | Crea `IPlugin` + `IContainerPlugin` e chiama `engine.addPlugin(...)` | Abilita con le opzioni del plugin e gli hook del lifecycle | -| Preset | Registra con `tsParticles.addPreset("app-*", options)` | Imposta `preset` alla radice | -| Shape | Registra con `tsParticles.addShape("app-*", drawer)` o carica tutti i pacchetti shape ufficiali | Imposta `particles.shape.type` e le opzioni per-shape in `particles.shape.options` | -| Updater | Registra con `pluginManager.addParticleUpdater("app-*", updater)` | Esegue automaticamente sulle particelle dove `isEnabled(...)` restituisce `true` | +| Tipo | Creazione rapida (locale all'app) | Come usarlo | +| ----------- | ----------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | +| Bundle | Componi il tuo `loadAppBundle(engine)` e richiama i loader interni | Chiama `await loadAppBundle(tsParticles)` prima di `tsParticles.load(...)` | +| Effect | Registra con `pluginManager.addEffect("app-*", drawer)` | Imposta `particles.effect.type` con l'id del tuo effect | +| Interaction | Registra con `pluginManager.addInteractor("app-*", interactor)` | Abilita in `interactivity.events` / controlli opzionali su mode custom | +| Palette | Registra con `pluginManager.addPalette("app-*", palette)` | Imposta `particles.palette` con l'id della tua palette | +| Path | Registra con `pluginManager.addPathGenerator("app-*", generator)` | Imposta `particles.move.path.generator` con l'id del tuo path | +| Plugin | Crea `IPlugin` + `IContainerPlugin` e chiama `engine.addPlugin(...)` | Abilita con le opzioni del plugin e gli hook del lifecycle | +| Preset | Registra con `tsParticles.addPreset("app-*", options)` | Imposta `preset` alla radice | +| Shape | Registra con `tsParticles.addShape("app-*", drawer)` o carica tutti i pacchetti shape ufficiali | Imposta `particles.shape.type` e le opzioni per-shape in `particles.shape.options` | +| Updater | Registra con `pluginManager.addParticleUpdater("app-*", updater)` | Esegue automaticamente sulle particelle dove `isEnabled(...)` restituisce `true` | ## Creazione locale rapida + uso per tipo di estensione @@ -82,7 +82,7 @@ await loadAppBundle(tsParticles); import type { Engine } from "@tsparticles/engine"; export async function loadAppEffect(engine: Engine): Promise { - await engine.pluginManager.register(e => { + await engine.pluginManager.register((e) => { e.pluginManager.addEffect("app-fade", () => Promise.resolve({ drawBefore: ({ context }) => { @@ -111,7 +111,11 @@ const options = { ### Interazioni (external e particles) ```ts -import { ExternalInteractorBase, loadInteractivityPlugin, type IInteractivityData } from "@tsparticles/plugin-interactivity"; +import { + ExternalInteractorBase, + loadInteractivityPlugin, + type IInteractivityData, +} from "@tsparticles/plugin-interactivity"; import type { Engine, IDelta } from "@tsparticles/engine"; class AppHoverPauseInteractor extends ExternalInteractorBase { @@ -139,8 +143,8 @@ class AppHoverPauseInteractor extends ExternalInteractorBase { export async function loadAppInteraction(engine: Engine): Promise { await loadInteractivityPlugin(engine); - await engine.pluginManager.register(e => { - e.pluginManager.addInteractor?.("app-hover-pause", container => { + await engine.pluginManager.register((e) => { + e.pluginManager.addInteractor?.("app-hover-pause", (container) => { return Promise.resolve(new AppHoverPauseInteractor(container)); }); }); @@ -176,7 +180,7 @@ const appPalette: IPalette = { }; export async function loadAppPalette(engine: Engine): Promise { - await engine.pluginManager.register(e => { + await engine.pluginManager.register((e) => { e.pluginManager.addPalette("app-sunset", appPalette); }); } @@ -199,10 +203,10 @@ import { Vector, type Engine } from "@tsparticles/engine"; export async function loadAppPath(engine: Engine): Promise { await loadMovePlugin(engine); - await engine.pluginManager.register(e => { + await engine.pluginManager.register((e) => { e.pluginManager.addPathGenerator?.("app-sway", () => Promise.resolve({ - generate: particle => { + generate: (particle) => { const wave = Math.sin(particle.position.y * 0.02); return Vector.create(wave, 0); @@ -294,7 +298,6 @@ export async function loadAppPreset(): Promise { await loadAppPreset(); - const options = { preset: "app-hero", }; @@ -447,7 +450,7 @@ L'URL `image.src` qui sopra viene riutilizzato dalle configurazioni esistenti de import type { Engine, IDelta, Particle } from "@tsparticles/engine"; export async function loadAppUpdater(engine: Engine): Promise { - await engine.pluginManager.register(e => { + await engine.pluginManager.register((e) => { e.pluginManager.addParticleUpdater("app-drift", () => Promise.resolve({ init: (): void => {}, diff --git a/websites/website/docs/ja/guide/bundles.md b/websites/website/docs/ja/guide/bundles.md index 8cdc6854116..2dd5584f393 100644 --- a/websites/website/docs/ja/guide/bundles.md +++ b/websites/website/docs/ja/guide/bundles.md @@ -4,15 +4,15 @@ ## パッケージ比較 -| パッケージ | 向いている用途 | セットアップ方式 | -| --- | --- | --- | -| `@tsparticles/basic` | さらに軽量な構成 | `tsParticles` + `await loadBasic(tsParticles)` | -| `@tsparticles/slim` | ほとんどの Web サイト/アプリ | `tsParticles` + `await loadSlim(tsParticles)` | -| `tsparticles` | 公式機能を広く含む full 構成を engine 制御で使う | `tsParticles` + `await loadFull(tsParticles)` | -| `@tsparticles/all` | 全機能を使った高速プロトタイプ | `tsParticles` + `await loadAll(tsParticles)` | -| `@tsparticles/confetti` | 1 回の呼び出しで紙吹雪演出 | `await confetti(options)` | -| `@tsparticles/fireworks` | 1 回の呼び出しで花火演出 | `await fireworks(options)` | -| `@tsparticles/particles` | シンプルな粒子背景 API | `await particles(options)` | +| パッケージ | 向いている用途 | セットアップ方式 | +| ------------------------ | ------------------------------------------------ | ---------------------------------------------- | +| `@tsparticles/basic` | さらに軽量な構成 | `tsParticles` + `await loadBasic(tsParticles)` | +| `@tsparticles/slim` | ほとんどの Web サイト/アプリ | `tsParticles` + `await loadSlim(tsParticles)` | +| `tsparticles` | 公式機能を広く含む full 構成を engine 制御で使う | `tsParticles` + `await loadFull(tsParticles)` | +| `@tsparticles/all` | 全機能を使った高速プロトタイプ | `tsParticles` + `await loadAll(tsParticles)` | +| `@tsparticles/confetti` | 1 回の呼び出しで紙吹雪演出 | `await confetti(options)` | +| `@tsparticles/fireworks` | 1 回の呼び出しで花火演出 | `await fireworks(options)` | +| `@tsparticles/particles` | シンプルな粒子背景 API | `await particles(options)` | ## Bundle ガイド diff --git a/websites/website/docs/ja/guide/option-rename-matrix.md b/websites/website/docs/ja/guide/option-rename-matrix.md index 4e6e566bdfd..b29c825c132 100644 --- a/websites/website/docs/ja/guide/option-rename-matrix.md +++ b/websites/website/docs/ja/guide/option-rename-matrix.md @@ -4,21 +4,21 @@ ## tsParticles -| 旧キー | 現在のキー | メモ | -| --- | --- | --- | -| `particles.color` | `particles.paint.fill` | メイン色は `paint.fill` に移動。 | +| 旧キー | 現在のキー | メモ | +| ------------------ | ------------------------ | ------------------------------------ | +| `particles.color` | `particles.paint.fill` | メイン色は `paint.fill` に移動。 | | `particles.stroke` | `particles.paint.stroke` | ストロークは `paint.stroke` に移動。 | ## particles.js legacy -| particles.js キー | 現在のキー | メモ | -| --- | --- | --- | -| `line_linked` | `links` | モダンなキー名に改名。 | -| `retina_detect` | `detectRetina` | snake_case から camelCase へ。 | +| particles.js キー | 現在のキー | メモ | +| ----------------- | -------------- | ------------------------------ | +| `line_linked` | `links` | モダンなキー名に改名。 | +| `retina_detect` | `detectRetina` | snake_case から camelCase へ。 | ## Load API -| 旧 API | 現在の API | -| --- | --- | +| 旧 API | 現在の API | +| --------------------------------- | ----------------------------------------- | | `tsParticles.load("id", options)` | `tsParticles.load({ id: "id", options })` | -| `particlesJS("id", options)` | `tsParticles.load({ id: "id", options })` | +| `particlesJS("id", options)` | `tsParticles.load({ id: "id", options })` | diff --git a/websites/website/docs/ja/guide/plugins-customization.md b/websites/website/docs/ja/guide/plugins-customization.md index ea2ecfc3428..1a6ca52a7d2 100644 --- a/websites/website/docs/ja/guide/plugins-customization.md +++ b/websites/website/docs/ja/guide/plugins-customization.md @@ -28,17 +28,17 @@ tsParticles のカスタマイズは、custom plugin だけにとどまりませ ## 早見表 -| 種別 | 素早い作成(アプリ内ローカル) | 使い方 | -| --- | --- | --- | -| Bundle | 独自の `loadAppBundle(engine)` を構成して内部ローダーを呼ぶ | `tsParticles.load(...)` の前に `await loadAppBundle(tsParticles)` を呼ぶ | -| Effect | `pluginManager.addEffect("app-*", drawer)` で登録 | `particles.effect.type` に effect id を設定 | -| Interaction | `pluginManager.addInteractor("app-*", interactor)` で登録 | `interactivity.events` で有効化 / 必要に応じて独自 mode 判定 | -| Palette | `pluginManager.addPalette("app-*", palette)` で登録 | `particles.palette` に palette id を設定 | -| Path | `pluginManager.addPathGenerator("app-*", generator)` で登録 | `particles.move.path.generator` に path id を設定 | -| Plugin | `IPlugin` + `IContainerPlugin` を作成し `engine.addPlugin(...)` を呼ぶ | plugin options と lifecycle hooks で有効化 | -| Preset | `tsParticles.addPreset("app-*", options)` で登録 | ルートの `preset` を設定 | -| Shape | `tsParticles.addShape("app-*", drawer)` で登録、または公式 shape パッケージをすべて読み込み | `particles.shape.type` と shape ごとの `particles.shape.options` を設定 | -| Updater | `pluginManager.addParticleUpdater("app-*", updater)` で登録 | `isEnabled(...)` が `true` の粒子で自動実行 | +| 種別 | 素早い作成(アプリ内ローカル) | 使い方 | +| ----------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------ | +| Bundle | 独自の `loadAppBundle(engine)` を構成して内部ローダーを呼ぶ | `tsParticles.load(...)` の前に `await loadAppBundle(tsParticles)` を呼ぶ | +| Effect | `pluginManager.addEffect("app-*", drawer)` で登録 | `particles.effect.type` に effect id を設定 | +| Interaction | `pluginManager.addInteractor("app-*", interactor)` で登録 | `interactivity.events` で有効化 / 必要に応じて独自 mode 判定 | +| Palette | `pluginManager.addPalette("app-*", palette)` で登録 | `particles.palette` に palette id を設定 | +| Path | `pluginManager.addPathGenerator("app-*", generator)` で登録 | `particles.move.path.generator` に path id を設定 | +| Plugin | `IPlugin` + `IContainerPlugin` を作成し `engine.addPlugin(...)` を呼ぶ | plugin options と lifecycle hooks で有効化 | +| Preset | `tsParticles.addPreset("app-*", options)` で登録 | ルートの `preset` を設定 | +| Shape | `tsParticles.addShape("app-*", drawer)` で登録、または公式 shape パッケージをすべて読み込み | `particles.shape.type` と shape ごとの `particles.shape.options` を設定 | +| Updater | `pluginManager.addParticleUpdater("app-*", updater)` で登録 | `isEnabled(...)` が `true` の粒子で自動実行 | ## 拡張タイプ別: アプリ内での素早い作成と利用 @@ -82,7 +82,7 @@ await loadAppBundle(tsParticles); import type { Engine } from "@tsparticles/engine"; export async function loadAppEffect(engine: Engine): Promise { - await engine.pluginManager.register(e => { + await engine.pluginManager.register((e) => { e.pluginManager.addEffect("app-fade", () => Promise.resolve({ drawBefore: ({ context }) => { @@ -111,7 +111,11 @@ const options = { ### Interactions(external と particles) ```ts -import { ExternalInteractorBase, loadInteractivityPlugin, type IInteractivityData } from "@tsparticles/plugin-interactivity"; +import { + ExternalInteractorBase, + loadInteractivityPlugin, + type IInteractivityData, +} from "@tsparticles/plugin-interactivity"; import type { Engine, IDelta } from "@tsparticles/engine"; class AppHoverPauseInteractor extends ExternalInteractorBase { @@ -139,8 +143,8 @@ class AppHoverPauseInteractor extends ExternalInteractorBase { export async function loadAppInteraction(engine: Engine): Promise { await loadInteractivityPlugin(engine); - await engine.pluginManager.register(e => { - e.pluginManager.addInteractor?.("app-hover-pause", container => { + await engine.pluginManager.register((e) => { + e.pluginManager.addInteractor?.("app-hover-pause", (container) => { return Promise.resolve(new AppHoverPauseInteractor(container)); }); }); @@ -176,7 +180,7 @@ const appPalette: IPalette = { }; export async function loadAppPalette(engine: Engine): Promise { - await engine.pluginManager.register(e => { + await engine.pluginManager.register((e) => { e.pluginManager.addPalette("app-sunset", appPalette); }); } @@ -199,10 +203,10 @@ import { Vector, type Engine } from "@tsparticles/engine"; export async function loadAppPath(engine: Engine): Promise { await loadMovePlugin(engine); - await engine.pluginManager.register(e => { + await engine.pluginManager.register((e) => { e.pluginManager.addPathGenerator?.("app-sway", () => Promise.resolve({ - generate: particle => { + generate: (particle) => { const wave = Math.sin(particle.position.y * 0.02); return Vector.create(wave, 0); @@ -294,7 +298,6 @@ export async function loadAppPreset(): Promise { await loadAppPreset(); - const options = { preset: "app-hero", }; @@ -447,7 +450,7 @@ const options = { import type { Engine, IDelta, Particle } from "@tsparticles/engine"; export async function loadAppUpdater(engine: Engine): Promise { - await engine.pluginManager.register(e => { + await engine.pluginManager.register((e) => { e.pluginManager.addParticleUpdater("app-drift", () => Promise.resolve({ init: (): void => {}, diff --git a/websites/website/docs/pt/guide/bundles.md b/websites/website/docs/pt/guide/bundles.md index 9e9559a17c1..af8d84f9b24 100644 --- a/websites/website/docs/pt/guide/bundles.md +++ b/websites/website/docs/pt/guide/bundles.md @@ -4,15 +4,15 @@ Esta pagina ajuda voce a escolher o bundle certo do `tsParticles` e configurar t ## Comparacao de pacotes -| Pacote | Ideal para | Estilo de setup | -| --- | --- | --- | -| `@tsparticles/basic` | Configuracoes super leves | `tsParticles` + `await loadBasic(tsParticles)` | -| `@tsparticles/slim` | A maioria dos sites/apps | `tsParticles` + `await loadSlim(tsParticles)` | -| `tsparticles` | Conjunto completo de recursos oficiais com controle do engine | `tsParticles` + `await loadFull(tsParticles)` | -| `@tsparticles/all` | Todos os recursos, prototipagem rapida | `tsParticles` + `await loadAll(tsParticles)` | -| `@tsparticles/confetti` | Efeitos de confete com uma chamada | `await confetti(options)` | -| `@tsparticles/fireworks` | Efeitos de fogos com uma chamada | `await fireworks(options)` | -| `@tsparticles/particles` | API simples para fundo de particulas | `await particles(options)` | +| Pacote | Ideal para | Estilo de setup | +| ------------------------ | ------------------------------------------------------------- | ---------------------------------------------- | +| `@tsparticles/basic` | Configuracoes super leves | `tsParticles` + `await loadBasic(tsParticles)` | +| `@tsparticles/slim` | A maioria dos sites/apps | `tsParticles` + `await loadSlim(tsParticles)` | +| `tsparticles` | Conjunto completo de recursos oficiais com controle do engine | `tsParticles` + `await loadFull(tsParticles)` | +| `@tsparticles/all` | Todos os recursos, prototipagem rapida | `tsParticles` + `await loadAll(tsParticles)` | +| `@tsparticles/confetti` | Efeitos de confete com uma chamada | `await confetti(options)` | +| `@tsparticles/fireworks` | Efeitos de fogos com uma chamada | `await fireworks(options)` | +| `@tsparticles/particles` | API simples para fundo de particulas | `await particles(options)` | ## Guias por bundle diff --git a/websites/website/docs/pt/guide/option-rename-matrix.md b/websites/website/docs/pt/guide/option-rename-matrix.md index 45ae31b2012..ee8f8b3e17f 100644 --- a/websites/website/docs/pt/guide/option-rename-matrix.md +++ b/websites/website/docs/pt/guide/option-rename-matrix.md @@ -4,21 +4,21 @@ Referencia rapida para os renomes mais comuns durante migracoes. ## tsParticles -| Chave legacy | Chave atual | Notas | -| --- | --- | --- | -| `particles.color` | `particles.paint.fill` | Cor principal movida para `paint.fill`. | -| `particles.stroke` | `particles.paint.stroke` | Stroke movido para `paint.stroke`. | +| Chave legacy | Chave atual | Notas | +| ------------------ | ------------------------ | --------------------------------------- | +| `particles.color` | `particles.paint.fill` | Cor principal movida para `paint.fill`. | +| `particles.stroke` | `particles.paint.stroke` | Stroke movido para `paint.stroke`. | ## particles.js legacy -| Chave particles.js | Chave atual | Notas | -| --- | --- | --- | -| `line_linked` | `links` | Renomeado para estilo moderno. | -| `retina_detect` | `detectRetina` | De snake_case para camelCase. | +| Chave particles.js | Chave atual | Notas | +| ------------------ | -------------- | ------------------------------ | +| `line_linked` | `links` | Renomeado para estilo moderno. | +| `retina_detect` | `detectRetina` | De snake_case para camelCase. | ## Load API -| API legacy | API atual | -| --- | --- | +| API legacy | API atual | +| --------------------------------- | ----------------------------------------- | | `tsParticles.load("id", options)` | `tsParticles.load({ id: "id", options })` | -| `particlesJS("id", options)` | `tsParticles.load({ id: "id", options })` | +| `particlesJS("id", options)` | `tsParticles.load({ id: "id", options })` | diff --git a/websites/website/docs/pt/guide/plugins-customization.md b/websites/website/docs/pt/guide/plugins-customization.md index 9f3ca36834c..c616ee2b611 100644 --- a/websites/website/docs/pt/guide/plugins-customization.md +++ b/websites/website/docs/pt/guide/plugins-customization.md @@ -28,17 +28,17 @@ Se voce explicar essas categorias para os usuarios, eles entendem imediatamente ## Tabela de resumo -| Tipo | Criacao rapida (local ao app) | Como usar | -| --- | --- | --- | -| Bundle | Componha seu proprio `loadAppBundle(engine)` e chame loaders internos | Chame `await loadAppBundle(tsParticles)` antes de `tsParticles.load(...)` | -| Effect | Registre com `pluginManager.addEffect("app-*", drawer)` | Defina `particles.effect.type` com o id do seu effect | -| Interaction | Registre com `pluginManager.addInteractor("app-*", interactor)` | Habilite em `interactivity.events` / verificacoes opcionais de modo customizado | -| Palette | Registre com `pluginManager.addPalette("app-*", palette)` | Defina `particles.palette` com o id da sua palette | -| Path | Registre com `pluginManager.addPathGenerator("app-*", generator)` | Defina `particles.move.path.generator` com o id do seu path | -| Plugin | Crie `IPlugin` + `IContainerPlugin` e chame `engine.addPlugin(...)` | Habilite com as opcoes do plugin e hooks de ciclo de vida | -| Preset | Registre com `tsParticles.addPreset("app-*", options)` | Defina `preset` na raiz | -| Shape | Registre com `tsParticles.addShape("app-*", drawer)` ou carregue todos os pacotes oficiais de shape | Defina `particles.shape.type` e as opcoes por shape em `particles.shape.options` | -| Updater | Registre com `pluginManager.addParticleUpdater("app-*", updater)` | Roda automaticamente em particulas onde `isEnabled(...)` retorna `true` | +| Tipo | Criacao rapida (local ao app) | Como usar | +| ----------- | --------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | +| Bundle | Componha seu proprio `loadAppBundle(engine)` e chame loaders internos | Chame `await loadAppBundle(tsParticles)` antes de `tsParticles.load(...)` | +| Effect | Registre com `pluginManager.addEffect("app-*", drawer)` | Defina `particles.effect.type` com o id do seu effect | +| Interaction | Registre com `pluginManager.addInteractor("app-*", interactor)` | Habilite em `interactivity.events` / verificacoes opcionais de modo customizado | +| Palette | Registre com `pluginManager.addPalette("app-*", palette)` | Defina `particles.palette` com o id da sua palette | +| Path | Registre com `pluginManager.addPathGenerator("app-*", generator)` | Defina `particles.move.path.generator` com o id do seu path | +| Plugin | Crie `IPlugin` + `IContainerPlugin` e chame `engine.addPlugin(...)` | Habilite com as opcoes do plugin e hooks de ciclo de vida | +| Preset | Registre com `tsParticles.addPreset("app-*", options)` | Defina `preset` na raiz | +| Shape | Registre com `tsParticles.addShape("app-*", drawer)` ou carregue todos os pacotes oficiais de shape | Defina `particles.shape.type` e as opcoes por shape em `particles.shape.options` | +| Updater | Registre com `pluginManager.addParticleUpdater("app-*", updater)` | Roda automaticamente em particulas onde `isEnabled(...)` retorna `true` | ## Criacao local rapida no app + uso por tipo de extensao @@ -82,7 +82,7 @@ await loadAppBundle(tsParticles); import type { Engine } from "@tsparticles/engine"; export async function loadAppEffect(engine: Engine): Promise { - await engine.pluginManager.register(e => { + await engine.pluginManager.register((e) => { e.pluginManager.addEffect("app-fade", () => Promise.resolve({ drawBefore: ({ context }) => { @@ -111,7 +111,11 @@ const options = { ### Interacoes (external e particles) ```ts -import { ExternalInteractorBase, loadInteractivityPlugin, type IInteractivityData } from "@tsparticles/plugin-interactivity"; +import { + ExternalInteractorBase, + loadInteractivityPlugin, + type IInteractivityData, +} from "@tsparticles/plugin-interactivity"; import type { Engine, IDelta } from "@tsparticles/engine"; class AppHoverPauseInteractor extends ExternalInteractorBase { @@ -139,8 +143,8 @@ class AppHoverPauseInteractor extends ExternalInteractorBase { export async function loadAppInteraction(engine: Engine): Promise { await loadInteractivityPlugin(engine); - await engine.pluginManager.register(e => { - e.pluginManager.addInteractor?.("app-hover-pause", container => { + await engine.pluginManager.register((e) => { + e.pluginManager.addInteractor?.("app-hover-pause", (container) => { return Promise.resolve(new AppHoverPauseInteractor(container)); }); }); @@ -176,7 +180,7 @@ const appPalette: IPalette = { }; export async function loadAppPalette(engine: Engine): Promise { - await engine.pluginManager.register(e => { + await engine.pluginManager.register((e) => { e.pluginManager.addPalette("app-sunset", appPalette); }); } @@ -199,10 +203,10 @@ import { Vector, type Engine } from "@tsparticles/engine"; export async function loadAppPath(engine: Engine): Promise { await loadMovePlugin(engine); - await engine.pluginManager.register(e => { + await engine.pluginManager.register((e) => { e.pluginManager.addPathGenerator?.("app-sway", () => Promise.resolve({ - generate: particle => { + generate: (particle) => { const wave = Math.sin(particle.position.y * 0.02); return Vector.create(wave, 0); @@ -294,7 +298,6 @@ export async function loadAppPreset(): Promise { await loadAppPreset(); - const options = { preset: "app-hero", }; @@ -447,7 +450,7 @@ A URL de `image.src` acima e reutilizada das configuracoes existentes do projeto import type { Engine, IDelta, Particle } from "@tsparticles/engine"; export async function loadAppUpdater(engine: Engine): Promise { - await engine.pluginManager.register(e => { + await engine.pluginManager.register((e) => { e.pluginManager.addParticleUpdater("app-drift", () => Promise.resolve({ init: (): void => {}, diff --git a/websites/website/docs/ru/guide/bundles.md b/websites/website/docs/ru/guide/bundles.md index f54dbbe4dc7..22816561897 100644 --- a/websites/website/docs/ru/guide/bundles.md +++ b/websites/website/docs/ru/guide/bundles.md @@ -4,15 +4,15 @@ ## Сравнение пакетов -| Пакет | Лучше всего подходит для | Стиль настройки | -| --- | --- | --- | -| `@tsparticles/basic` | Очень легкие конфигурации | `tsParticles` + `await loadBasic(tsParticles)` | -| `@tsparticles/slim` | Большинство сайтов/приложений | `tsParticles` + `await loadSlim(tsParticles)` | -| `tsparticles` | Полный набор официальных возможностей с контролем engine | `tsParticles` + `await loadFull(tsParticles)` | -| `@tsparticles/all` | Все возможности, быстрое прототипирование | `tsParticles` + `await loadAll(tsParticles)` | -| `@tsparticles/confetti` | Эффекты конфетти в один вызов | `await confetti(options)` | -| `@tsparticles/fireworks` | Эффекты фейерверков в один вызов | `await fireworks(options)` | -| `@tsparticles/particles` | Простое API для фоновых частиц | `await particles(options)` | +| Пакет | Лучше всего подходит для | Стиль настройки | +| ------------------------ | -------------------------------------------------------- | ---------------------------------------------- | +| `@tsparticles/basic` | Очень легкие конфигурации | `tsParticles` + `await loadBasic(tsParticles)` | +| `@tsparticles/slim` | Большинство сайтов/приложений | `tsParticles` + `await loadSlim(tsParticles)` | +| `tsparticles` | Полный набор официальных возможностей с контролем engine | `tsParticles` + `await loadFull(tsParticles)` | +| `@tsparticles/all` | Все возможности, быстрое прототипирование | `tsParticles` + `await loadAll(tsParticles)` | +| `@tsparticles/confetti` | Эффекты конфетти в один вызов | `await confetti(options)` | +| `@tsparticles/fireworks` | Эффекты фейерверков в один вызов | `await fireworks(options)` | +| `@tsparticles/particles` | Простое API для фоновых частиц | `await particles(options)` | ## Руководства по bundle diff --git a/websites/website/docs/ru/guide/option-rename-matrix.md b/websites/website/docs/ru/guide/option-rename-matrix.md index 6e95880b1bc..4430995174f 100644 --- a/websites/website/docs/ru/guide/option-rename-matrix.md +++ b/websites/website/docs/ru/guide/option-rename-matrix.md @@ -4,21 +4,21 @@ ## tsParticles -| Старый ключ | Текущий ключ | Примечания | -| --- | --- | --- | -| `particles.color` | `particles.paint.fill` | Основной цвет перенесен в `paint.fill`. | -| `particles.stroke` | `particles.paint.stroke` | Stroke перенесен в `paint.stroke`. | +| Старый ключ | Текущий ключ | Примечания | +| ------------------ | ------------------------ | --------------------------------------- | +| `particles.color` | `particles.paint.fill` | Основной цвет перенесен в `paint.fill`. | +| `particles.stroke` | `particles.paint.stroke` | Stroke перенесен в `paint.stroke`. | ## particles.js legacy -| Ключ particles.js | Текущий ключ | Примечания | -| --- | --- | --- | -| `line_linked` | `links` | Переименовано в современный стиль. | -| `retina_detect` | `detectRetina` | Переход с snake_case на camelCase. | +| Ключ particles.js | Текущий ключ | Примечания | +| ----------------- | -------------- | ---------------------------------- | +| `line_linked` | `links` | Переименовано в современный стиль. | +| `retina_detect` | `detectRetina` | Переход с snake_case на camelCase. | ## Load API -| Legacy API | Текущий API | -| --- | --- | +| Legacy API | Текущий API | +| --------------------------------- | ----------------------------------------- | | `tsParticles.load("id", options)` | `tsParticles.load({ id: "id", options })` | -| `particlesJS("id", options)` | `tsParticles.load({ id: "id", options })` | +| `particlesJS("id", options)` | `tsParticles.load({ id: "id", options })` | diff --git a/websites/website/docs/ru/guide/plugins-customization.md b/websites/website/docs/ru/guide/plugins-customization.md index 1b914f23e06..549cf562a4c 100644 --- a/websites/website/docs/ru/guide/plugins-customization.md +++ b/websites/website/docs/ru/guide/plugins-customization.md @@ -28,17 +28,17 @@ tsParticles можно расширять во время выполнения ## Сводная таблица -| Тип | Быстрое создание (внутри приложения) | Как использовать | -| --- | --- | --- | -| Bundle | Соберите свой `loadAppBundle(engine)` и вызовите внутренние загрузчики | Вызовите `await loadAppBundle(tsParticles)` перед `tsParticles.load(...)` | -| Effect | Зарегистрируйте через `pluginManager.addEffect("app-*", drawer)` | Установите `particles.effect.type` в id вашего effect | -| Interaction | Зарегистрируйте через `pluginManager.addInteractor("app-*", interactor)` | Включите в `interactivity.events` / при необходимости добавьте проверки пользовательских режимов | -| Palette | Зарегистрируйте через `pluginManager.addPalette("app-*", palette)` | Установите `particles.palette` в id вашей palette | -| Path | Зарегистрируйте через `pluginManager.addPathGenerator("app-*", generator)` | Установите `particles.move.path.generator` в id вашего path | -| Plugin | Создайте `IPlugin` + `IContainerPlugin` и вызовите `engine.addPlugin(...)` | Включайте через параметры плагина и хуки жизненного цикла | -| Preset | Зарегистрируйте через `tsParticles.addPreset("app-*", options)` | Задайте корневой `preset` | -| Shape | Зарегистрируйте через `tsParticles.addShape("app-*", drawer)` или загрузите все официальные shape-пакеты | Установите `particles.shape.type` и параметры для shape в `particles.shape.options` | -| Updater | Зарегистрируйте через `pluginManager.addParticleUpdater("app-*", updater)` | Автоматически работает для частиц, где `isEnabled(...)` возвращает `true` | +| Тип | Быстрое создание (внутри приложения) | Как использовать | +| ----------- | -------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------ | +| Bundle | Соберите свой `loadAppBundle(engine)` и вызовите внутренние загрузчики | Вызовите `await loadAppBundle(tsParticles)` перед `tsParticles.load(...)` | +| Effect | Зарегистрируйте через `pluginManager.addEffect("app-*", drawer)` | Установите `particles.effect.type` в id вашего effect | +| Interaction | Зарегистрируйте через `pluginManager.addInteractor("app-*", interactor)` | Включите в `interactivity.events` / при необходимости добавьте проверки пользовательских режимов | +| Palette | Зарегистрируйте через `pluginManager.addPalette("app-*", palette)` | Установите `particles.palette` в id вашей palette | +| Path | Зарегистрируйте через `pluginManager.addPathGenerator("app-*", generator)` | Установите `particles.move.path.generator` в id вашего path | +| Plugin | Создайте `IPlugin` + `IContainerPlugin` и вызовите `engine.addPlugin(...)` | Включайте через параметры плагина и хуки жизненного цикла | +| Preset | Зарегистрируйте через `tsParticles.addPreset("app-*", options)` | Задайте корневой `preset` | +| Shape | Зарегистрируйте через `tsParticles.addShape("app-*", drawer)` или загрузите все официальные shape-пакеты | Установите `particles.shape.type` и параметры для shape в `particles.shape.options` | +| Updater | Зарегистрируйте через `pluginManager.addParticleUpdater("app-*", updater)` | Автоматически работает для частиц, где `isEnabled(...)` возвращает `true` | ## Быстрое локальное создание в приложении + использование по типам расширений @@ -82,7 +82,7 @@ await loadAppBundle(tsParticles); import type { Engine } from "@tsparticles/engine"; export async function loadAppEffect(engine: Engine): Promise { - await engine.pluginManager.register(e => { + await engine.pluginManager.register((e) => { e.pluginManager.addEffect("app-fade", () => Promise.resolve({ drawBefore: ({ context }) => { @@ -111,7 +111,11 @@ const options = { ### Взаимодействия (external и particles) ```ts -import { ExternalInteractorBase, loadInteractivityPlugin, type IInteractivityData } from "@tsparticles/plugin-interactivity"; +import { + ExternalInteractorBase, + loadInteractivityPlugin, + type IInteractivityData, +} from "@tsparticles/plugin-interactivity"; import type { Engine, IDelta } from "@tsparticles/engine"; class AppHoverPauseInteractor extends ExternalInteractorBase { @@ -139,8 +143,8 @@ class AppHoverPauseInteractor extends ExternalInteractorBase { export async function loadAppInteraction(engine: Engine): Promise { await loadInteractivityPlugin(engine); - await engine.pluginManager.register(e => { - e.pluginManager.addInteractor?.("app-hover-pause", container => { + await engine.pluginManager.register((e) => { + e.pluginManager.addInteractor?.("app-hover-pause", (container) => { return Promise.resolve(new AppHoverPauseInteractor(container)); }); }); @@ -176,7 +180,7 @@ const appPalette: IPalette = { }; export async function loadAppPalette(engine: Engine): Promise { - await engine.pluginManager.register(e => { + await engine.pluginManager.register((e) => { e.pluginManager.addPalette("app-sunset", appPalette); }); } @@ -199,10 +203,10 @@ import { Vector, type Engine } from "@tsparticles/engine"; export async function loadAppPath(engine: Engine): Promise { await loadMovePlugin(engine); - await engine.pluginManager.register(e => { + await engine.pluginManager.register((e) => { e.pluginManager.addPathGenerator?.("app-sway", () => Promise.resolve({ - generate: particle => { + generate: (particle) => { const wave = Math.sin(particle.position.y * 0.02); return Vector.create(wave, 0); @@ -294,7 +298,6 @@ export async function loadAppPreset(): Promise { await loadAppPreset(); - const options = { preset: "app-hero", }; @@ -447,7 +450,7 @@ URL в `image.src` выше повторно используется из су import type { Engine, IDelta, Particle } from "@tsparticles/engine"; export async function loadAppUpdater(engine: Engine): Promise { - await engine.pluginManager.register(e => { + await engine.pluginManager.register((e) => { e.pluginManager.addParticleUpdater("app-drift", () => Promise.resolve({ init: (): void => {}, diff --git a/websites/website/docs/ru/options/particles-palette.md b/websites/website/docs/ru/options/particles-palette.md index a666199914a..30afa8cc633 100644 --- a/websites/website/docs/ru/options/particles-palette.md +++ b/websites/website/docs/ru/options/particles-palette.md @@ -44,6 +44,7 @@ const palette = { ## Примечания — Неизвестные идентификаторы палитр игнорируются. + - Явные значения `particles.paint.fill`, `particles.paint.stroke` или `particles.blend` переопределяют импортированные значения по умолчанию. ## Ссылка на источник diff --git a/websites/website/docs/zh/guide/bundles.md b/websites/website/docs/zh/guide/bundles.md index db5155c8d59..1c2c9a34861 100644 --- a/websites/website/docs/zh/guide/bundles.md +++ b/websites/website/docs/zh/guide/bundles.md @@ -4,15 +4,15 @@ ## 包对比 -| 包 | 适用场景 | setup 方式 | -| --- | --- | --- | -| `@tsparticles/basic` | 超轻量场景 | `tsParticles` + `await loadBasic(tsParticles)` | -| `@tsparticles/slim` | 大多数网站/应用 | `tsParticles` + `await loadSlim(tsParticles)` | -| `tsparticles` | 官方全量能力组合并保留 engine 控制 | `tsParticles` + `await loadFull(tsParticles)` | -| `@tsparticles/all` | 全功能、快速原型 | `tsParticles` + `await loadAll(tsParticles)` | -| `@tsparticles/confetti` | 一次调用的彩纸效果 | `await confetti(options)` | -| `@tsparticles/fireworks` | 一次调用的烟花效果 | `await fireworks(options)` | -| `@tsparticles/particles` | 简化的粒子背景 API | `await particles(options)` | +| 包 | 适用场景 | setup 方式 | +| ------------------------ | ---------------------------------- | ---------------------------------------------- | +| `@tsparticles/basic` | 超轻量场景 | `tsParticles` + `await loadBasic(tsParticles)` | +| `@tsparticles/slim` | 大多数网站/应用 | `tsParticles` + `await loadSlim(tsParticles)` | +| `tsparticles` | 官方全量能力组合并保留 engine 控制 | `tsParticles` + `await loadFull(tsParticles)` | +| `@tsparticles/all` | 全功能、快速原型 | `tsParticles` + `await loadAll(tsParticles)` | +| `@tsparticles/confetti` | 一次调用的彩纸效果 | `await confetti(options)` | +| `@tsparticles/fireworks` | 一次调用的烟花效果 | `await fireworks(options)` | +| `@tsparticles/particles` | 简化的粒子背景 API | `await particles(options)` | ## Bundle 分页指南 diff --git a/websites/website/docs/zh/guide/option-rename-matrix.md b/websites/website/docs/zh/guide/option-rename-matrix.md index c23dad9c09b..3b32a73a759 100644 --- a/websites/website/docs/zh/guide/option-rename-matrix.md +++ b/websites/website/docs/zh/guide/option-rename-matrix.md @@ -4,21 +4,21 @@ ## tsParticles -| 旧键 | 当前键 | 说明 | -| --- | --- | --- | -| `particles.color` | `particles.paint.fill` | 主颜色已迁移到 `paint.fill`。 | +| 旧键 | 当前键 | 说明 | +| ------------------ | ------------------------ | ----------------------------- | +| `particles.color` | `particles.paint.fill` | 主颜色已迁移到 `paint.fill`。 | | `particles.stroke` | `particles.paint.stroke` | 描边已迁移到 `paint.stroke`。 | ## particles.js legacy -| particles.js 键 | 当前键 | 说明 | -| --- | --- | --- | -| `line_linked` | `links` | 改为现代命名风格。 | +| particles.js 键 | 当前键 | 说明 | +| --------------- | -------------- | ------------------------------ | +| `line_linked` | `links` | 改为现代命名风格。 | | `retina_detect` | `detectRetina` | 从 snake_case 改为 camelCase。 | ## Load API -| 旧 API | 当前 API | -| --- | --- | +| 旧 API | 当前 API | +| --------------------------------- | ----------------------------------------- | | `tsParticles.load("id", options)` | `tsParticles.load({ id: "id", options })` | -| `particlesJS("id", options)` | `tsParticles.load({ id: "id", options })` | +| `particlesJS("id", options)` | `tsParticles.load({ id: "id", options })` | diff --git a/websites/website/docs/zh/guide/plugins-customization.md b/websites/website/docs/zh/guide/plugins-customization.md index 25f189b3ff8..23413673536 100644 --- a/websites/website/docs/zh/guide/plugins-customization.md +++ b/websites/website/docs/zh/guide/plugins-customization.md @@ -28,17 +28,17 @@ tsParticles 的自定义能力不仅限于自定义插件。 ## 汇总表 -| 类型 | 快速创建(应用内本地) | 使用方式 | -| --- | --- | --- | -| Bundle | 组合自己的 `loadAppBundle(engine)` 并调用内部加载器 | 在 `tsParticles.load(...)` 之前调用 `await loadAppBundle(tsParticles)` | -| Effect | 使用 `pluginManager.addEffect("app-*", drawer)` 注册 | 将 `particles.effect.type` 设为你的 effect id | -| Interaction | 使用 `pluginManager.addInteractor("app-*", interactor)` 注册 | 在 `interactivity.events` 中启用 / 可选自定义模式判断 | -| Palette | 使用 `pluginManager.addPalette("app-*", palette)` 注册 | 将 `particles.palette` 设为你的 palette id | -| Path | 使用 `pluginManager.addPathGenerator("app-*", generator)` 注册 | 将 `particles.move.path.generator` 设为你的 path id | -| Plugin | 创建 `IPlugin` + `IContainerPlugin` 并调用 `engine.addPlugin(...)` | 通过插件选项和生命周期钩子启用 | -| Preset | 使用 `tsParticles.addPreset("app-*", options)` 注册 | 设置根级 `preset` | -| Shape | 使用 `tsParticles.addShape("app-*", drawer)` 注册,或加载全部官方 shape 包 | 设置 `particles.shape.type` 以及每种 shape 的 `particles.shape.options` | -| Updater | 使用 `pluginManager.addParticleUpdater("app-*", updater)` 注册 | 在 `isEnabled(...)` 返回 `true` 的粒子上自动运行 | +| 类型 | 快速创建(应用内本地) | 使用方式 | +| ----------- | -------------------------------------------------------------------------- | ----------------------------------------------------------------------- | +| Bundle | 组合自己的 `loadAppBundle(engine)` 并调用内部加载器 | 在 `tsParticles.load(...)` 之前调用 `await loadAppBundle(tsParticles)` | +| Effect | 使用 `pluginManager.addEffect("app-*", drawer)` 注册 | 将 `particles.effect.type` 设为你的 effect id | +| Interaction | 使用 `pluginManager.addInteractor("app-*", interactor)` 注册 | 在 `interactivity.events` 中启用 / 可选自定义模式判断 | +| Palette | 使用 `pluginManager.addPalette("app-*", palette)` 注册 | 将 `particles.palette` 设为你的 palette id | +| Path | 使用 `pluginManager.addPathGenerator("app-*", generator)` 注册 | 将 `particles.move.path.generator` 设为你的 path id | +| Plugin | 创建 `IPlugin` + `IContainerPlugin` 并调用 `engine.addPlugin(...)` | 通过插件选项和生命周期钩子启用 | +| Preset | 使用 `tsParticles.addPreset("app-*", options)` 注册 | 设置根级 `preset` | +| Shape | 使用 `tsParticles.addShape("app-*", drawer)` 注册,或加载全部官方 shape 包 | 设置 `particles.shape.type` 以及每种 shape 的 `particles.shape.options` | +| Updater | 使用 `pluginManager.addParticleUpdater("app-*", updater)` 注册 | 在 `isEnabled(...)` 返回 `true` 的粒子上自动运行 | ## 按扩展类型快速本地创建与使用 @@ -82,7 +82,7 @@ await loadAppBundle(tsParticles); import type { Engine } from "@tsparticles/engine"; export async function loadAppEffect(engine: Engine): Promise { - await engine.pluginManager.register(e => { + await engine.pluginManager.register((e) => { e.pluginManager.addEffect("app-fade", () => Promise.resolve({ drawBefore: ({ context }) => { @@ -111,7 +111,11 @@ const options = { ### 交互(external 和 particles) ```ts -import { ExternalInteractorBase, loadInteractivityPlugin, type IInteractivityData } from "@tsparticles/plugin-interactivity"; +import { + ExternalInteractorBase, + loadInteractivityPlugin, + type IInteractivityData, +} from "@tsparticles/plugin-interactivity"; import type { Engine, IDelta } from "@tsparticles/engine"; class AppHoverPauseInteractor extends ExternalInteractorBase { @@ -139,8 +143,8 @@ class AppHoverPauseInteractor extends ExternalInteractorBase { export async function loadAppInteraction(engine: Engine): Promise { await loadInteractivityPlugin(engine); - await engine.pluginManager.register(e => { - e.pluginManager.addInteractor?.("app-hover-pause", container => { + await engine.pluginManager.register((e) => { + e.pluginManager.addInteractor?.("app-hover-pause", (container) => { return Promise.resolve(new AppHoverPauseInteractor(container)); }); }); @@ -176,7 +180,7 @@ const appPalette: IPalette = { }; export async function loadAppPalette(engine: Engine): Promise { - await engine.pluginManager.register(e => { + await engine.pluginManager.register((e) => { e.pluginManager.addPalette("app-sunset", appPalette); }); } @@ -199,10 +203,10 @@ import { Vector, type Engine } from "@tsparticles/engine"; export async function loadAppPath(engine: Engine): Promise { await loadMovePlugin(engine); - await engine.pluginManager.register(e => { + await engine.pluginManager.register((e) => { e.pluginManager.addPathGenerator?.("app-sway", () => Promise.resolve({ - generate: particle => { + generate: (particle) => { const wave = Math.sin(particle.position.y * 0.02); return Vector.create(wave, 0); @@ -294,7 +298,6 @@ export async function loadAppPreset(): Promise { await loadAppPreset(); - const options = { preset: "app-hero", }; @@ -447,7 +450,7 @@ const options = { import type { Engine, IDelta, Particle } from "@tsparticles/engine"; export async function loadAppUpdater(engine: Engine): Promise { - await engine.pluginManager.register(e => { + await engine.pluginManager.register((e) => { e.pluginManager.addParticleUpdater("app-drift", () => Promise.resolve({ init: (): void => {}, diff --git a/websites/website/package.json b/websites/website/package.json index 2d85fd28e9d..19ea02245e8 100644 --- a/websites/website/package.json +++ b/websites/website/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/website", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "private": true, "description": "tsParticles Website (VitePress)", "main": "docs/index.md", @@ -9,12 +9,13 @@ "postinstall": "node ./scripts/fix-palette-types.mjs", "docs:assets": "node ./scripts/sync-public-assets.mjs", "dev": "pnpm run docs:assets && vitepress dev docs --host", - "docs:build": "pnpm run docs:assets && vitepress build docs", + "docs:build": "pnpm run lint:fix && pnpm run docs:assets && vitepress build docs", + "docs:build:ci": "pnpm run lint && pnpm run docs:assets && vitepress build docs", "docs:preview": "vitepress preview docs --host", "build": "pnpm run docs:build", "lint": "prettier --check \"docs/**/*.{md,ts,css}\"", "lint:fix": "prettier --write \"docs/**/*.{md,ts,css}\"", - "build:ci": "pnpm run docs:build" + "build:ci": "pnpm run docs:build:ci" }, "repository": { "type": "git", @@ -249,5 +250,12 @@ "devDependencies": { "prettier": "^3.8.3", "vitepress": "^1.6.4" + }, + "nx": { + "targets": { + "build": { + "outputs": ["{projectRoot}/docs/.vitepress/dist"] + } + } } } diff --git a/wrappers/angular-confetti/CHANGELOG.md b/wrappers/angular-confetti/CHANGELOG.md index ef05a23931b..459e9ac18c2 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package angular-confetti + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package angular-confetti diff --git a/wrappers/angular-confetti/package.json b/wrappers/angular-confetti/package.json index 055e27bdc51..dfe8416f023 100644 --- a/wrappers/angular-confetti/package.json +++ b/wrappers/angular-confetti/package.json @@ -1,6 +1,6 @@ { "name": "angular-confetti", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 aac826c9c27..28c7a815ac6 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.0-beta.15", + "version": "4.0.0-beta.16", "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.0-beta.15", - "@tsparticles/engine": "^4.0.0-beta.15" + "@tsparticles/confetti": "^4.0.0-beta.16", + "@tsparticles/engine": "^4.0.0-beta.16" }, "dependencies": { "tslib": "^2.8.1" diff --git a/wrappers/angular-fireworks/CHANGELOG.md b/wrappers/angular-fireworks/CHANGELOG.md index 114a3c5e744..54806b34bd0 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package angular-fireworks + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package angular-fireworks diff --git a/wrappers/angular-fireworks/package.json b/wrappers/angular-fireworks/package.json index 4704c0bb26f..7167d9d11ae 100644 --- a/wrappers/angular-fireworks/package.json +++ b/wrappers/angular-fireworks/package.json @@ -1,6 +1,6 @@ { "name": "angular-fireworks", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 9f0ae8c84b0..d2f65eda257 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.0-beta.15", + "version": "4.0.0-beta.16", "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.0-beta.15" + "@tsparticles/fireworks": "^4.0.0-beta.16" }, "dependencies": { "tslib": "^2.8.1" diff --git a/wrappers/angular/CHANGELOG.md b/wrappers/angular/CHANGELOG.md index 16c97bdbfdd..c51329189ff 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/angular + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/angular diff --git a/wrappers/angular/package.json b/wrappers/angular/package.json index ac0343732c4..391206e2bce 100644 --- a/wrappers/angular/package.json +++ b/wrappers/angular/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/angular", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 b875f730c47..62fee3316d3 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.0-beta.15", + "version": "4.0.0-beta.16", "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.0-beta.15" + "@tsparticles/engine": "^4.0.0-beta.16" }, "dependencies": { "tslib": "^2.8.1" diff --git a/wrappers/astro/CHANGELOG.md b/wrappers/astro/CHANGELOG.md index 00e7bf9d983..8fd84509850 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/astro + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/astro diff --git a/wrappers/astro/package.json b/wrappers/astro/package.json index 5d5f97e5f8c..977786a18f2 100644 --- a/wrappers/astro/package.json +++ b/wrappers/astro/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/astro", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 cc9258601cf..342152d1533 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/ember + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/ember diff --git a/wrappers/ember/package.json b/wrappers/ember/package.json index 2af8b3feb55..3314a24cbe6 100644 --- a/wrappers/ember/package.json +++ b/wrappers/ember/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/ember", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "description": "Ember.js component for using tsParticles", "keywords": [ "ember-addon" diff --git a/wrappers/inferno/CHANGELOG.md b/wrappers/inferno/CHANGELOG.md index a1afc29f738..3088ba241d5 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/inferno + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/inferno diff --git a/wrappers/inferno/package.json b/wrappers/inferno/package.json index a099c8e36b8..59e1f5005d0 100644 --- a/wrappers/inferno/package.json +++ b/wrappers/inferno/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/inferno", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 902c0e745af..a05b1e695ba 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/jquery + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/jquery diff --git a/wrappers/jquery/package.json b/wrappers/jquery/package.json index 68adfd67277..852fcb6bf10 100644 --- a/wrappers/jquery/package.json +++ b/wrappers/jquery/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/jquery", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 ace85284db9..9ec1a7f44e0 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/lit + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/lit diff --git a/wrappers/lit/package.json b/wrappers/lit/package.json index 66db40d3f7e..2a9ca0ece79 100644 --- a/wrappers/lit/package.json +++ b/wrappers/lit/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/lit", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 419cd8796a1..2886c10be89 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/nextjs + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/nextjs diff --git a/wrappers/nextjs/package.json b/wrappers/nextjs/package.json index 3493ab46814..d5748c72079 100644 --- a/wrappers/nextjs/package.json +++ b/wrappers/nextjs/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/nextjs", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "type": "module", "repository": { "type": "git", diff --git a/wrappers/nuxt2/CHANGELOG.md b/wrappers/nuxt2/CHANGELOG.md index 57a1eb0dc77..3f07670a787 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/nuxt2 + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/nuxt2 diff --git a/wrappers/nuxt2/package.json b/wrappers/nuxt2/package.json index 638cdad4f80..d159caada68 100644 --- a/wrappers/nuxt2/package.json +++ b/wrappers/nuxt2/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/nuxt2", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "repository": { "type": "git", "url": "git+https://github.com/tsparticles/tsparticles.git", diff --git a/wrappers/nuxt3/CHANGELOG.md b/wrappers/nuxt3/CHANGELOG.md index 2d3eeda1786..0ec1675d9d0 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/nuxt3 + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/nuxt3 diff --git a/wrappers/nuxt3/package.json b/wrappers/nuxt3/package.json index 44bac3d6bb8..c6fcb565341 100644 --- a/wrappers/nuxt3/package.json +++ b/wrappers/nuxt3/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/nuxt3", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "type": "module", "repository": { "type": "git", diff --git a/wrappers/nuxt4/CHANGELOG.md b/wrappers/nuxt4/CHANGELOG.md index 2097b018a89..de2d6116db4 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/nuxt4 + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/nuxt4 diff --git a/wrappers/nuxt4/package.json b/wrappers/nuxt4/package.json index b52cdd6864a..3548e52cc05 100644 --- a/wrappers/nuxt4/package.json +++ b/wrappers/nuxt4/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/nuxt4", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "type": "module", "repository": { "type": "git", diff --git a/wrappers/preact/CHANGELOG.md b/wrappers/preact/CHANGELOG.md index 714064d9b7b..9be33bad3f0 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/preact + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/preact diff --git a/wrappers/preact/package.json b/wrappers/preact/package.json index 6c67c0c57a3..d33fadeb085 100644 --- a/wrappers/preact/package.json +++ b/wrappers/preact/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preact", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 1132b944238..c7c5648c7c6 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/qwik + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/qwik diff --git a/wrappers/qwik/package.json b/wrappers/qwik/package.json index 1684f0143dd..56b425d4e93 100644 --- a/wrappers/qwik/package.json +++ b/wrappers/qwik/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/qwik", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 14ec5a37033..5b14cff7405 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/react + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/react diff --git a/wrappers/react/package.json b/wrappers/react/package.json index b42c606ab29..882c083028a 100644 --- a/wrappers/react/package.json +++ b/wrappers/react/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/react", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "type": "module", "repository": { "type": "git", diff --git a/wrappers/riot/CHANGELOG.md b/wrappers/riot/CHANGELOG.md index c03c52240c2..40db2359c1c 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/riot + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/riot diff --git a/wrappers/riot/package.json b/wrappers/riot/package.json index f3e47e6d731..82cf4db7c1d 100644 --- a/wrappers/riot/package.json +++ b/wrappers/riot/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/riot", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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.js", "scripts": { diff --git a/wrappers/solid/CHANGELOG.md b/wrappers/solid/CHANGELOG.md index d2f8c02043e..9a1832f571e 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/solid + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/solid diff --git a/wrappers/solid/package.json b/wrappers/solid/package.json index e56f8a8dbbe..1fcc124c0ed 100644 --- a/wrappers/solid/package.json +++ b/wrappers/solid/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/solid", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 4db19927845..29e161c2a85 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/svelte + + + + + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/svelte diff --git a/wrappers/svelte/package.json b/wrappers/svelte/package.json index 8edcc8be063..4e6c614df4d 100644 --- a/wrappers/svelte/package.json +++ b/wrappers/svelte/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/svelte", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 3dabd241a5d..1a2152c4d2d 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/vue2 + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/vue2 diff --git a/wrappers/vue2/package.json b/wrappers/vue2/package.json index 9116efd5f60..6509a951ad7 100644 --- a/wrappers/vue2/package.json +++ b/wrappers/vue2/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/vue2", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 b9d7b7d1983..a1b90edb4ec 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/vue3 + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/vue3 diff --git a/wrappers/vue3/package.json b/wrappers/vue3/package.json index 7e3d37993d8..752b4dda6b6 100644 --- a/wrappers/vue3/package.json +++ b/wrappers/vue3/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/vue3", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 4113ba27e98..fbe07173b45 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/webcomponents + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/webcomponents diff --git a/wrappers/webcomponents/package.json b/wrappers/webcomponents/package.json index d2363256687..59945e9439d 100644 --- a/wrappers/webcomponents/package.json +++ b/wrappers/webcomponents/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/webcomponents", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 298000c958e..c10ca617106 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.0-beta.16](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.15...v4.0.0-beta.16) (2026-05-09) + +**Note:** Version bump only for package @tsparticles/wordpress + # [4.0.0-beta.15](https://github.com/tsparticles/tsparticles/compare/v4.0.0-beta.14...v4.0.0-beta.15) (2026-05-09) **Note:** Version bump only for package @tsparticles/wordpress diff --git a/wrappers/wordpress/package.json b/wrappers/wordpress/package.json index 5015a07f478..b44f440cb0b 100644 --- a/wrappers/wordpress/package.json +++ b/wrappers/wordpress/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/wordpress", - "version": "4.0.0-beta.15", + "version": "4.0.0-beta.16", "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 5edb8a23828..d8805b5cd92 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.0-beta.15 +Stable tag: 4.0.0-beta.16 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 042a3dbde46..72fac1906ea 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.0-beta.15", + "version": "4.0.0-beta.16", "title": "tsParticles WP Block", "category": "widgets", "icon": "rest-api", diff --git a/wrappers/wordpress/wordpress-particles.php b/wrappers/wordpress/wordpress-particles.php index d04dc54aa03..00b55b348ec 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.0-beta.15 + * Version: 4.0.0-beta.16 * Author: matteobruni * License: GPL-2.0-or-later * License URI: https://www.gnu.org/licenses/gpl-2.0.html