Skip to content

Commit 49a5382

Browse files
authored
Merge pull request tsparticles#5564 from tsparticles/v4
4.0.0-alpha.4
2 parents 576fcca + dd42a71 commit 49a5382

950 files changed

Lines changed: 17603 additions & 11734 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,36 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [4.0.0-alpha.5](https://github.com/tsparticles/tsparticles/compare/v4.0.0-alpha.4...v4.0.0-alpha.5) (2026-01-21)
7+
8+
**Note:** Version bump only for package @tsparticles/workspace
9+
10+
# [4.0.0-alpha.4](https://github.com/tsparticles/tsparticles/compare/v4.0.0-alpha.3...v4.0.0-alpha.4) (2026-01-21)
11+
12+
### Bug Fixes
13+
14+
- fixed condition in parallax interact ([c84d3b6](https://github.com/tsparticles/tsparticles/commit/c84d3b69ffe8c2aaf62671799ab8e75314a4f10c))
15+
- fixed errors after previous refactor ([c8f65d8](https://github.com/tsparticles/tsparticles/commit/c8f65d82516f4f9c0258a2beb2fc38f333910ec1))
16+
- fixed hsv color manager ([76600a2](https://github.com/tsparticles/tsparticles/commit/76600a202d3bba98d2704c8f12098b0c1fc69cf6))
17+
- fixed imports in emitters plugin ([0eb375d](https://github.com/tsparticles/tsparticles/commit/0eb375d04c5d88389f10470bcc531710b7d3fb62))
18+
- fixed load options in some plugins ([4e1cd4b](https://github.com/tsparticles/tsparticles/commit/4e1cd4b6ad2570d23d38484ba0a053521c6e4d95))
19+
- fixed two readmes ([433c426](https://github.com/tsparticles/tsparticles/commit/433c4262d3e6d29d74506bd74ef96c4cd84e163c))
20+
- fixed wrong condition ([f14e08c](https://github.com/tsparticles/tsparticles/commit/f14e08c0e2b2ca8a2a973542567bb1ae112f5452))
21+
- format fix ([cab2a5f](https://github.com/tsparticles/tsparticles/commit/cab2a5f58021c11b614ac63ea64e18ec5ed8c6c7))
22+
- prevent engine register from being overwritten when loader fails ([652d2d2](https://github.com/tsparticles/tsparticles/commit/652d2d2af9b72f9200e0efe99a52dff2e6fe9b95))
23+
- removed inconsistent or operator ([f5a4ed7](https://github.com/tsparticles/tsparticles/commit/f5a4ed7140fc3a77cb23125ed11410f972753a5d))
24+
- removed some deprecation, added more functions and utils to exports ([119aa9e](https://github.com/tsparticles/tsparticles/commit/119aa9e33b1dfc6e3ce17d827a94a6afb1664b60))
25+
- removed some duplicated constants ([2e46059](https://github.com/tsparticles/tsparticles/commit/2e460599a6763d22663e0f2c402867f569890e00))
26+
27+
### Features
28+
29+
- add manual particles plugin with configuration and usage examples ([8d73e42](https://github.com/tsparticles/tsparticles/commit/8d73e42320f8f3845545a2bef0f8d92979f1e2ee))
30+
- reworked parallax mover plugin to parallax external interaction plugin ([6e2052c](https://github.com/tsparticles/tsparticles/commit/6e2052c5ec2412b7aa2b63a688b06af1c9ef4ec9))
31+
32+
# [4.0.0-alpha.3](https://github.com/tsparticles/tsparticles/compare/v4.0.0-alpha.2...v4.0.0-alpha.3) (2026-01-10)
33+
34+
**Note:** Version bump only for package @tsparticles/workspace
35+
636
# [4.0.0-alpha.2](https://github.com/tsparticles/tsparticles/compare/v4.0.0-alpha.1...v4.0.0-alpha.2) (2026-01-08)
737

838
### Bug Fixes

README.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ tsParticles.setOnClickHandler((event, particles) => {
295295
// now you can control the animations too, it's possible to pause and resume the animations
296296
// these methods don't change the config so you're safe with all your configurations
297297
// domItem(0) returns the first tsParticles instance loaded in the dom
298-
const particles = tsParticles.domItem(0);
298+
const particles = tsParticles.item(0);
299299

300300
// play will start the animations, if the move is not enabled it won't enable it, it just updates the frame
301301
particles.play();
@@ -755,6 +755,7 @@ flowchart TD
755755
interaction-external-bubble[Bubble]
756756
interaction-external-connect[Connect]
757757
interaction-external-grab[Grab]
758+
interaction-external-parallax[Parallax]
758759
interaction-external-pause[Pause]
759760
interaction-external-push[Push]
760761
interaction-external-remove[Remove]
@@ -770,10 +771,6 @@ flowchart TD
770771
771772
end
772773
773-
subgraph slim-movers [Movers]
774-
move-parallax[Parallax]
775-
end
776-
777774
subgraph slim-plugins [Plugins]
778775
779776
subgraph slim-plugins-easings [Easings]

bundles/all/.browserslistrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
since 2019
1+
since 2021
22
not dead

bundles/all/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,20 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [4.0.0-alpha.5](https://github.com/tsparticles/tsparticles/compare/v4.0.0-alpha.4...v4.0.0-alpha.5) (2026-01-21)
7+
8+
**Note:** Version bump only for package @tsparticles/all
9+
10+
# [4.0.0-alpha.4](https://github.com/tsparticles/tsparticles/compare/v4.0.0-alpha.3...v4.0.0-alpha.4) (2026-01-21)
11+
12+
### Features
13+
14+
- add manual particles plugin with configuration and usage examples ([8d73e42](https://github.com/tsparticles/tsparticles/commit/8d73e42320f8f3845545a2bef0f8d92979f1e2ee))
15+
16+
# [4.0.0-alpha.3](https://github.com/tsparticles/tsparticles/compare/v4.0.0-alpha.2...v4.0.0-alpha.3) (2026-01-10)
17+
18+
**Note:** Version bump only for package @tsparticles/all
19+
620
# [4.0.0-alpha.2](https://github.com/tsparticles/tsparticles/compare/v4.0.0-alpha.1...v4.0.0-alpha.2) (2026-01-08)
721

822
**Note:** Version bump only for package @tsparticles/all

bundles/all/package.dist.json

Lines changed: 61 additions & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tsparticles/all",
3-
"version": "4.0.0-alpha.2",
3+
"version": "4.0.0-alpha.5",
44
"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.",
55
"homepage": "https://particles.js.org",
66
"repository": {
@@ -99,64 +99,66 @@
9999
"./package.json": "./package.json"
100100
},
101101
"dependencies": {
102-
"@tsparticles/effect-bubble": "4.0.0-alpha.2",
103-
"@tsparticles/effect-shadow": "4.0.0-alpha.2",
104-
"@tsparticles/effect-trail": "4.0.0-alpha.2",
105-
"@tsparticles/engine": "4.0.0-alpha.2",
106-
"@tsparticles/interaction-external-particle": "4.0.0-alpha.2",
107-
"@tsparticles/interaction-external-pop": "4.0.0-alpha.2",
108-
"@tsparticles/interaction-light": "4.0.0-alpha.2",
109-
"@tsparticles/interaction-particles-repulse": "4.0.0-alpha.2",
110-
"@tsparticles/path-curl-noise": "4.0.0-alpha.2",
111-
"@tsparticles/path-curves": "4.0.0-alpha.2",
112-
"@tsparticles/path-fractal-noise": "4.0.0-alpha.2",
113-
"@tsparticles/path-perlin-noise": "4.0.0-alpha.2",
114-
"@tsparticles/path-polygon": "4.0.0-alpha.2",
115-
"@tsparticles/path-simplex-noise": "4.0.0-alpha.2",
116-
"@tsparticles/path-svg": "4.0.0-alpha.2",
117-
"@tsparticles/path-zig-zag": "4.0.0-alpha.2",
118-
"@tsparticles/pjs": "4.0.0-alpha.2",
119-
"@tsparticles/plugin-background-mask": "4.0.0-alpha.2",
120-
"@tsparticles/plugin-canvas-mask": "4.0.0-alpha.2",
121-
"@tsparticles/plugin-easing-back": "4.0.0-alpha.2",
122-
"@tsparticles/plugin-easing-circ": "4.0.0-alpha.2",
123-
"@tsparticles/plugin-easing-cubic": "4.0.0-alpha.2",
124-
"@tsparticles/plugin-easing-expo": "4.0.0-alpha.2",
125-
"@tsparticles/plugin-easing-linear": "4.0.0-alpha.2",
126-
"@tsparticles/plugin-easing-quart": "4.0.0-alpha.2",
127-
"@tsparticles/plugin-easing-quint": "4.0.0-alpha.2",
128-
"@tsparticles/plugin-easing-sine": "4.0.0-alpha.2",
129-
"@tsparticles/plugin-emitters-shape-canvas": "4.0.0-alpha.2",
130-
"@tsparticles/plugin-emitters-shape-path": "4.0.0-alpha.2",
131-
"@tsparticles/plugin-emitters-shape-polygon": "4.0.0-alpha.2",
132-
"@tsparticles/plugin-export-image": "4.0.0-alpha.2",
133-
"@tsparticles/plugin-export-json": "4.0.0-alpha.2",
134-
"@tsparticles/plugin-export-video": "4.0.0-alpha.2",
135-
"@tsparticles/plugin-hsv-color": "4.0.0-alpha.2",
136-
"@tsparticles/plugin-hwb-color": "4.0.0-alpha.2",
137-
"@tsparticles/plugin-infection": "4.0.0-alpha.2",
138-
"@tsparticles/plugin-lab-color": "4.0.0-alpha.2",
139-
"@tsparticles/plugin-lch-color": "4.0.0-alpha.2",
140-
"@tsparticles/plugin-motion": "4.0.0-alpha.2",
141-
"@tsparticles/plugin-named-color": "4.0.0-alpha.2",
142-
"@tsparticles/plugin-oklab-color": "4.0.0-alpha.2",
143-
"@tsparticles/plugin-oklch-color": "4.0.0-alpha.2",
144-
"@tsparticles/plugin-poisson-disc": "4.0.0-alpha.2",
145-
"@tsparticles/plugin-polygon-mask": "4.0.0-alpha.2",
146-
"@tsparticles/plugin-sounds": "4.0.0-alpha.2",
147-
"@tsparticles/plugin-trail": "4.0.0-alpha.2",
148-
"@tsparticles/shape-arrow": "4.0.0-alpha.2",
149-
"@tsparticles/shape-cards": "4.0.0-alpha.2",
150-
"@tsparticles/shape-cog": "4.0.0-alpha.2",
151-
"@tsparticles/shape-heart": "4.0.0-alpha.2",
152-
"@tsparticles/shape-infinity": "4.0.0-alpha.2",
153-
"@tsparticles/shape-path": "4.0.0-alpha.2",
154-
"@tsparticles/shape-rounded-polygon": "4.0.0-alpha.2",
155-
"@tsparticles/shape-rounded-rect": "4.0.0-alpha.2",
156-
"@tsparticles/shape-spiral": "4.0.0-alpha.2",
157-
"@tsparticles/updater-gradient": "4.0.0-alpha.2",
158-
"@tsparticles/updater-orbit": "4.0.0-alpha.2",
159-
"tsparticles": "4.0.0-alpha.2"
102+
"@tsparticles/effect-bubble": "4.0.0-alpha.5",
103+
"@tsparticles/effect-shadow": "4.0.0-alpha.5",
104+
"@tsparticles/effect-trail": "4.0.0-alpha.5",
105+
"@tsparticles/engine": "4.0.0-alpha.5",
106+
"@tsparticles/interaction-external-particle": "4.0.0-alpha.5",
107+
"@tsparticles/interaction-external-pop": "4.0.0-alpha.5",
108+
"@tsparticles/interaction-light": "4.0.0-alpha.5",
109+
"@tsparticles/interaction-particles-repulse": "4.0.0-alpha.5",
110+
"@tsparticles/path-curl-noise": "4.0.0-alpha.5",
111+
"@tsparticles/path-curves": "4.0.0-alpha.5",
112+
"@tsparticles/path-fractal-noise": "4.0.0-alpha.5",
113+
"@tsparticles/path-perlin-noise": "4.0.0-alpha.5",
114+
"@tsparticles/path-polygon": "4.0.0-alpha.5",
115+
"@tsparticles/path-simplex-noise": "4.0.0-alpha.5",
116+
"@tsparticles/path-svg": "4.0.0-alpha.5",
117+
"@tsparticles/path-zig-zag": "4.0.0-alpha.5",
118+
"@tsparticles/plugin-background-mask": "4.0.0-alpha.5",
119+
"@tsparticles/plugin-canvas-mask": "4.0.0-alpha.5",
120+
"@tsparticles/plugin-easing-back": "4.0.0-alpha.5",
121+
"@tsparticles/plugin-easing-circ": "4.0.0-alpha.5",
122+
"@tsparticles/plugin-easing-cubic": "4.0.0-alpha.5",
123+
"@tsparticles/plugin-easing-expo": "4.0.0-alpha.5",
124+
"@tsparticles/plugin-easing-linear": "4.0.0-alpha.5",
125+
"@tsparticles/plugin-easing-quart": "4.0.0-alpha.5",
126+
"@tsparticles/plugin-easing-quint": "4.0.0-alpha.5",
127+
"@tsparticles/plugin-easing-sine": "4.0.0-alpha.5",
128+
"@tsparticles/plugin-emitters-shape-canvas": "4.0.0-alpha.5",
129+
"@tsparticles/plugin-emitters-shape-path": "4.0.0-alpha.5",
130+
"@tsparticles/plugin-emitters-shape-polygon": "4.0.0-alpha.5",
131+
"@tsparticles/plugin-export-image": "4.0.0-alpha.5",
132+
"@tsparticles/plugin-export-json": "4.0.0-alpha.5",
133+
"@tsparticles/plugin-export-video": "4.0.0-alpha.5",
134+
"@tsparticles/plugin-hsv-color": "4.0.0-alpha.5",
135+
"@tsparticles/plugin-hwb-color": "4.0.0-alpha.5",
136+
"@tsparticles/plugin-infection": "4.0.0-alpha.5",
137+
"@tsparticles/plugin-lab-color": "4.0.0-alpha.5",
138+
"@tsparticles/plugin-lch-color": "4.0.0-alpha.5",
139+
"@tsparticles/plugin-manual-particles": "4.0.0-alpha.5",
140+
"@tsparticles/plugin-motion": "4.0.0-alpha.5",
141+
"@tsparticles/plugin-named-color": "4.0.0-alpha.5",
142+
"@tsparticles/plugin-oklab-color": "4.0.0-alpha.5",
143+
"@tsparticles/plugin-oklch-color": "4.0.0-alpha.5",
144+
"@tsparticles/plugin-poisson-disc": "4.0.0-alpha.5",
145+
"@tsparticles/plugin-polygon-mask": "4.0.0-alpha.5",
146+
"@tsparticles/plugin-responsive": "4.0.0-alpha.5",
147+
"@tsparticles/plugin-sounds": "4.0.0-alpha.5",
148+
"@tsparticles/plugin-themes": "4.0.0-alpha.5",
149+
"@tsparticles/plugin-trail": "4.0.0-alpha.5",
150+
"@tsparticles/shape-arrow": "4.0.0-alpha.5",
151+
"@tsparticles/shape-cards": "4.0.0-alpha.5",
152+
"@tsparticles/shape-cog": "4.0.0-alpha.5",
153+
"@tsparticles/shape-heart": "4.0.0-alpha.5",
154+
"@tsparticles/shape-infinity": "4.0.0-alpha.5",
155+
"@tsparticles/shape-path": "4.0.0-alpha.5",
156+
"@tsparticles/shape-rounded-polygon": "4.0.0-alpha.5",
157+
"@tsparticles/shape-rounded-rect": "4.0.0-alpha.5",
158+
"@tsparticles/shape-spiral": "4.0.0-alpha.5",
159+
"@tsparticles/updater-gradient": "4.0.0-alpha.5",
160+
"@tsparticles/updater-orbit": "4.0.0-alpha.5",
161+
"tsparticles": "4.0.0-alpha.5"
160162
},
161163
"publishConfig": {
162164
"access": "public"

bundles/all/package.json

Lines changed: 61 additions & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tsparticles/all",
3-
"version": "4.0.0-alpha.2",
3+
"version": "4.0.0-alpha.5",
44
"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.",
55
"homepage": "https://particles.js.org",
66
"scripts": {
@@ -107,64 +107,66 @@
107107
"./package.json": "./dist/package.json"
108108
},
109109
"dependencies": {
110-
"@tsparticles/effect-bubble": "workspace:4.0.0-alpha.2",
111-
"@tsparticles/effect-shadow": "workspace:4.0.0-alpha.2",
112-
"@tsparticles/effect-trail": "workspace:4.0.0-alpha.2",
113-
"@tsparticles/engine": "workspace:4.0.0-alpha.2",
114-
"@tsparticles/interaction-external-particle": "workspace:4.0.0-alpha.2",
115-
"@tsparticles/interaction-external-pop": "workspace:4.0.0-alpha.2",
116-
"@tsparticles/interaction-light": "workspace:4.0.0-alpha.2",
117-
"@tsparticles/interaction-particles-repulse": "workspace:4.0.0-alpha.2",
118-
"@tsparticles/path-curl-noise": "workspace:4.0.0-alpha.2",
119-
"@tsparticles/path-curves": "workspace:4.0.0-alpha.2",
120-
"@tsparticles/path-fractal-noise": "workspace:4.0.0-alpha.2",
121-
"@tsparticles/path-perlin-noise": "workspace:4.0.0-alpha.2",
122-
"@tsparticles/path-polygon": "workspace:4.0.0-alpha.2",
123-
"@tsparticles/path-simplex-noise": "workspace:4.0.0-alpha.2",
124-
"@tsparticles/path-svg": "workspace:4.0.0-alpha.2",
125-
"@tsparticles/path-zig-zag": "workspace:4.0.0-alpha.2",
126-
"@tsparticles/pjs": "workspace:4.0.0-alpha.2",
127-
"@tsparticles/plugin-background-mask": "workspace:4.0.0-alpha.2",
128-
"@tsparticles/plugin-canvas-mask": "workspace:4.0.0-alpha.2",
129-
"@tsparticles/plugin-easing-back": "workspace:4.0.0-alpha.2",
130-
"@tsparticles/plugin-easing-circ": "workspace:4.0.0-alpha.2",
131-
"@tsparticles/plugin-easing-cubic": "workspace:4.0.0-alpha.2",
132-
"@tsparticles/plugin-easing-expo": "workspace:4.0.0-alpha.2",
133-
"@tsparticles/plugin-easing-linear": "workspace:4.0.0-alpha.2",
134-
"@tsparticles/plugin-easing-quart": "workspace:4.0.0-alpha.2",
135-
"@tsparticles/plugin-easing-quint": "workspace:4.0.0-alpha.2",
136-
"@tsparticles/plugin-easing-sine": "workspace:4.0.0-alpha.2",
137-
"@tsparticles/plugin-emitters-shape-canvas": "workspace:4.0.0-alpha.2",
138-
"@tsparticles/plugin-emitters-shape-path": "workspace:4.0.0-alpha.2",
139-
"@tsparticles/plugin-emitters-shape-polygon": "workspace:4.0.0-alpha.2",
140-
"@tsparticles/plugin-export-image": "workspace:4.0.0-alpha.2",
141-
"@tsparticles/plugin-export-json": "workspace:4.0.0-alpha.2",
142-
"@tsparticles/plugin-export-video": "workspace:4.0.0-alpha.2",
143-
"@tsparticles/plugin-hsv-color": "workspace:4.0.0-alpha.2",
144-
"@tsparticles/plugin-hwb-color": "workspace:4.0.0-alpha.2",
145-
"@tsparticles/plugin-infection": "workspace:4.0.0-alpha.2",
146-
"@tsparticles/plugin-lab-color": "workspace:4.0.0-alpha.2",
147-
"@tsparticles/plugin-lch-color": "workspace:4.0.0-alpha.2",
148-
"@tsparticles/plugin-motion": "workspace:4.0.0-alpha.2",
149-
"@tsparticles/plugin-named-color": "workspace:4.0.0-alpha.2",
150-
"@tsparticles/plugin-oklab-color": "workspace:4.0.0-alpha.2",
151-
"@tsparticles/plugin-oklch-color": "workspace:4.0.0-alpha.2",
152-
"@tsparticles/plugin-poisson-disc": "workspace:4.0.0-alpha.2",
153-
"@tsparticles/plugin-polygon-mask": "workspace:4.0.0-alpha.2",
154-
"@tsparticles/plugin-sounds": "workspace:4.0.0-alpha.2",
155-
"@tsparticles/plugin-trail": "workspace:4.0.0-alpha.2",
156-
"@tsparticles/shape-arrow": "workspace:4.0.0-alpha.2",
157-
"@tsparticles/shape-cards": "workspace:4.0.0-alpha.2",
158-
"@tsparticles/shape-cog": "workspace:4.0.0-alpha.2",
159-
"@tsparticles/shape-heart": "workspace:4.0.0-alpha.2",
160-
"@tsparticles/shape-infinity": "workspace:4.0.0-alpha.2",
161-
"@tsparticles/shape-path": "workspace:4.0.0-alpha.2",
162-
"@tsparticles/shape-rounded-polygon": "workspace:4.0.0-alpha.2",
163-
"@tsparticles/shape-rounded-rect": "workspace:4.0.0-alpha.2",
164-
"@tsparticles/shape-spiral": "workspace:4.0.0-alpha.2",
165-
"@tsparticles/updater-gradient": "workspace:4.0.0-alpha.2",
166-
"@tsparticles/updater-orbit": "workspace:4.0.0-alpha.2",
167-
"tsparticles": "workspace:4.0.0-alpha.2"
110+
"@tsparticles/effect-bubble": "workspace:4.0.0-alpha.5",
111+
"@tsparticles/effect-shadow": "workspace:4.0.0-alpha.5",
112+
"@tsparticles/effect-trail": "workspace:4.0.0-alpha.5",
113+
"@tsparticles/engine": "workspace:4.0.0-alpha.5",
114+
"@tsparticles/interaction-external-particle": "workspace:4.0.0-alpha.5",
115+
"@tsparticles/interaction-external-pop": "workspace:4.0.0-alpha.5",
116+
"@tsparticles/interaction-light": "workspace:4.0.0-alpha.5",
117+
"@tsparticles/interaction-particles-repulse": "workspace:4.0.0-alpha.5",
118+
"@tsparticles/path-curl-noise": "workspace:4.0.0-alpha.5",
119+
"@tsparticles/path-curves": "workspace:4.0.0-alpha.5",
120+
"@tsparticles/path-fractal-noise": "workspace:4.0.0-alpha.5",
121+
"@tsparticles/path-perlin-noise": "workspace:4.0.0-alpha.5",
122+
"@tsparticles/path-polygon": "workspace:4.0.0-alpha.5",
123+
"@tsparticles/path-simplex-noise": "workspace:4.0.0-alpha.5",
124+
"@tsparticles/path-svg": "workspace:4.0.0-alpha.5",
125+
"@tsparticles/path-zig-zag": "workspace:4.0.0-alpha.5",
126+
"@tsparticles/plugin-background-mask": "workspace:4.0.0-alpha.5",
127+
"@tsparticles/plugin-canvas-mask": "workspace:4.0.0-alpha.5",
128+
"@tsparticles/plugin-easing-back": "workspace:4.0.0-alpha.5",
129+
"@tsparticles/plugin-easing-circ": "workspace:4.0.0-alpha.5",
130+
"@tsparticles/plugin-easing-cubic": "workspace:4.0.0-alpha.5",
131+
"@tsparticles/plugin-easing-expo": "workspace:4.0.0-alpha.5",
132+
"@tsparticles/plugin-easing-linear": "workspace:4.0.0-alpha.5",
133+
"@tsparticles/plugin-easing-quart": "workspace:4.0.0-alpha.5",
134+
"@tsparticles/plugin-easing-quint": "workspace:4.0.0-alpha.5",
135+
"@tsparticles/plugin-easing-sine": "workspace:4.0.0-alpha.5",
136+
"@tsparticles/plugin-emitters-shape-canvas": "workspace:4.0.0-alpha.5",
137+
"@tsparticles/plugin-emitters-shape-path": "workspace:4.0.0-alpha.5",
138+
"@tsparticles/plugin-emitters-shape-polygon": "workspace:4.0.0-alpha.5",
139+
"@tsparticles/plugin-export-image": "workspace:4.0.0-alpha.5",
140+
"@tsparticles/plugin-export-json": "workspace:4.0.0-alpha.5",
141+
"@tsparticles/plugin-export-video": "workspace:4.0.0-alpha.5",
142+
"@tsparticles/plugin-hsv-color": "workspace:4.0.0-alpha.5",
143+
"@tsparticles/plugin-hwb-color": "workspace:4.0.0-alpha.5",
144+
"@tsparticles/plugin-infection": "workspace:4.0.0-alpha.5",
145+
"@tsparticles/plugin-lab-color": "workspace:4.0.0-alpha.5",
146+
"@tsparticles/plugin-lch-color": "workspace:4.0.0-alpha.5",
147+
"@tsparticles/plugin-manual-particles": "workspace:4.0.0-alpha.5",
148+
"@tsparticles/plugin-motion": "workspace:4.0.0-alpha.5",
149+
"@tsparticles/plugin-named-color": "workspace:4.0.0-alpha.5",
150+
"@tsparticles/plugin-oklab-color": "workspace:4.0.0-alpha.5",
151+
"@tsparticles/plugin-oklch-color": "workspace:4.0.0-alpha.5",
152+
"@tsparticles/plugin-poisson-disc": "workspace:4.0.0-alpha.5",
153+
"@tsparticles/plugin-polygon-mask": "workspace:4.0.0-alpha.5",
154+
"@tsparticles/plugin-responsive": "workspace:4.0.0-alpha.5",
155+
"@tsparticles/plugin-sounds": "workspace:4.0.0-alpha.5",
156+
"@tsparticles/plugin-themes": "workspace:4.0.0-alpha.5",
157+
"@tsparticles/plugin-trail": "workspace:4.0.0-alpha.5",
158+
"@tsparticles/shape-arrow": "workspace:4.0.0-alpha.5",
159+
"@tsparticles/shape-cards": "workspace:4.0.0-alpha.5",
160+
"@tsparticles/shape-cog": "workspace:4.0.0-alpha.5",
161+
"@tsparticles/shape-heart": "workspace:4.0.0-alpha.5",
162+
"@tsparticles/shape-infinity": "workspace:4.0.0-alpha.5",
163+
"@tsparticles/shape-path": "workspace:4.0.0-alpha.5",
164+
"@tsparticles/shape-rounded-polygon": "workspace:4.0.0-alpha.5",
165+
"@tsparticles/shape-rounded-rect": "workspace:4.0.0-alpha.5",
166+
"@tsparticles/shape-spiral": "workspace:4.0.0-alpha.5",
167+
"@tsparticles/updater-gradient": "workspace:4.0.0-alpha.5",
168+
"@tsparticles/updater-orbit": "workspace:4.0.0-alpha.5",
169+
"tsparticles": "workspace:4.0.0-alpha.5"
168170
},
169171
"publishConfig": {
170172
"access": "public",

0 commit comments

Comments
 (0)