@tsparticles/all 4.0.4 → 4.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/browser/index.js CHANGED
@@ -60,6 +60,7 @@ import { loadPolygonMaskPlugin } from "@tsparticles/plugin-polygon-mask";
60
60
  import { loadPolygonPath } from "@tsparticles/path-polygon";
61
61
  import { loadRandomPath } from "@tsparticles/path-random";
62
62
  import { loadResponsivePlugin } from "@tsparticles/plugin-responsive";
63
+ import { loadRibbonShape } from "@tsparticles/shape-ribbon";
63
64
  import { loadRoundedPolygonShape } from "@tsparticles/shape-rounded-polygon";
64
65
  import { loadRoundedRectShape } from "@tsparticles/shape-rounded-rect";
65
66
  import { loadSVGPath } from "@tsparticles/path-svg";
@@ -75,7 +76,7 @@ import { loadTrailPlugin } from "@tsparticles/plugin-trail";
75
76
  import { loadZigZagPath } from "@tsparticles/path-zig-zag";
76
77
  import { loadZoomPlugin } from "@tsparticles/plugin-zoom";
77
78
  export async function loadAll(engine) {
78
- engine.checkVersion("4.0.4");
79
+ engine.checkVersion("4.1.0");
79
80
  await engine.pluginManager.register(async (e) => {
80
81
  const loadInteractionsForAll = async (e) => {
81
82
  await loadFull(e);
@@ -155,6 +156,7 @@ export async function loadAll(engine) {
155
156
  loadInfinityShape(e),
156
157
  loadMatrixShape(e),
157
158
  loadPathShape(e),
159
+ loadRibbonShape(e),
158
160
  loadRoundedPolygonShape(e),
159
161
  loadRoundedRectShape(e),
160
162
  loadSpiralShape(e),
@@ -1,7 +1,7 @@
1
1
  export async function loadAll(engine) {
2
- engine.checkVersion("4.0.4");
2
+ engine.checkVersion("4.1.0");
3
3
  await engine.pluginManager.register(async (e) => {
4
- const [{ loadFull }, { loadHsvColorPlugin }, { loadHwbColorPlugin }, { loadLabColorPlugin }, { loadLchColorPlugin }, { loadOklabColorPlugin }, { loadOklchColorPlugin }, { loadNamedColorPlugin }, { loadEasingBackPlugin }, { loadEasingBouncePlugin }, { loadEasingCircPlugin }, { loadEasingCubicPlugin }, { loadEasingElasticPlugin }, { loadEasingExpoPlugin }, { loadEasingGaussianPlugin }, { loadEasingLinearPlugin }, { loadEasingQuartPlugin }, { loadEasingQuintPlugin }, { loadEasingSigmoidPlugin }, { loadEasingSinePlugin }, { loadEasingSmoothstepPlugin }, { loadBackgroundMaskPlugin }, { loadCanvasMaskPlugin }, { loadInfectionPlugin }, { loadManualParticlesPlugin }, { loadMotionPlugin }, { loadPoissonDiscPlugin }, { loadPolygonMaskPlugin }, { loadResponsivePlugin }, { loadSoundsPlugin }, { loadThemesPlugin }, { loadTrailPlugin }, { loadZoomPlugin }, { loadExportImagePlugin }, { loadExportJSONPlugin }, { loadExportVideoPlugin }, { loadExternalCannonInteraction }, { loadExternalParticleInteraction }, { loadExternalPopInteraction }, { loadLightInteraction }, { loadParticlesRepulseInteraction }, { loadGradientUpdater }, { loadOrbitUpdater }, { loadBranchesPath }, { loadBrownianPath }, { loadCurlNoisePath }, { loadCurvesPath }, { loadFractalNoisePath }, { loadGridPath }, { loadLevyPath }, { loadPerlinNoisePath }, { loadPolygonPath }, { loadRandomPath }, { loadSimplexNoisePath }, { loadSpiralPath }, { loadSVGPath }, { loadZigZagPath }, { loadBubbleEffect }, { loadFilterEffect }, { loadParticlesEffect }, { loadShadowEffect }, { loadTrailEffect }, { loadArrowShape }, { loadCardsShape }, { loadCogShape }, { loadHeartShape }, { loadInfinityShape }, { loadMatrixShape }, { loadPathShape }, { loadRoundedPolygonShape }, { loadRoundedRectShape }, { loadSpiralShape }, { loadSquircleShape }, { loadEmittersShapeCanvas }, { loadEmittersShapePath }, { loadEmittersShapePolygon },] = await Promise.all([
4
+ const [{ loadFull }, { loadHsvColorPlugin }, { loadHwbColorPlugin }, { loadLabColorPlugin }, { loadLchColorPlugin }, { loadOklabColorPlugin }, { loadOklchColorPlugin }, { loadNamedColorPlugin }, { loadEasingBackPlugin }, { loadEasingBouncePlugin }, { loadEasingCircPlugin }, { loadEasingCubicPlugin }, { loadEasingElasticPlugin }, { loadEasingExpoPlugin }, { loadEasingGaussianPlugin }, { loadEasingLinearPlugin }, { loadEasingQuartPlugin }, { loadEasingQuintPlugin }, { loadEasingSigmoidPlugin }, { loadEasingSinePlugin }, { loadEasingSmoothstepPlugin }, { loadBackgroundMaskPlugin }, { loadCanvasMaskPlugin }, { loadInfectionPlugin }, { loadManualParticlesPlugin }, { loadMotionPlugin }, { loadPoissonDiscPlugin }, { loadPolygonMaskPlugin }, { loadResponsivePlugin }, { loadSoundsPlugin }, { loadThemesPlugin }, { loadTrailPlugin }, { loadZoomPlugin }, { loadExportImagePlugin }, { loadExportJSONPlugin }, { loadExportVideoPlugin }, { loadExternalCannonInteraction }, { loadExternalParticleInteraction }, { loadExternalPopInteraction }, { loadLightInteraction }, { loadParticlesRepulseInteraction }, { loadGradientUpdater }, { loadOrbitUpdater }, { loadBranchesPath }, { loadBrownianPath }, { loadCurlNoisePath }, { loadCurvesPath }, { loadFractalNoisePath }, { loadGridPath }, { loadLevyPath }, { loadPerlinNoisePath }, { loadPolygonPath }, { loadRandomPath }, { loadSimplexNoisePath }, { loadSpiralPath }, { loadSVGPath }, { loadZigZagPath }, { loadBubbleEffect }, { loadFilterEffect }, { loadParticlesEffect }, { loadShadowEffect }, { loadTrailEffect }, { loadArrowShape }, { loadCardsShape }, { loadCogShape }, { loadHeartShape }, { loadInfinityShape }, { loadMatrixShape }, { loadPathShape }, { loadRibbonShape }, { loadRoundedPolygonShape }, { loadRoundedRectShape }, { loadSpiralShape }, { loadSquircleShape }, { loadEmittersShapeCanvas }, { loadEmittersShapePath }, { loadEmittersShapePolygon },] = await Promise.all([
5
5
  import("tsparticles/lazy"),
6
6
  import("@tsparticles/plugin-hsv-color/lazy"),
7
7
  import("@tsparticles/plugin-hwb-color/lazy"),
@@ -71,6 +71,7 @@ export async function loadAll(engine) {
71
71
  import("@tsparticles/shape-infinity/lazy"),
72
72
  import("@tsparticles/shape-matrix/lazy"),
73
73
  import("@tsparticles/shape-path/lazy"),
74
+ import("@tsparticles/shape-ribbon/lazy"),
74
75
  import("@tsparticles/shape-rounded-polygon/lazy"),
75
76
  import("@tsparticles/shape-rounded-rect/lazy"),
76
77
  import("@tsparticles/shape-spiral/lazy"),
@@ -156,6 +157,7 @@ export async function loadAll(engine) {
156
157
  loadInfinityShape(e),
157
158
  loadMatrixShape(e),
158
159
  loadPathShape(e),
160
+ loadRibbonShape(e),
159
161
  loadRoundedPolygonShape(e),
160
162
  loadRoundedRectShape(e),
161
163
  loadSpiralShape(e),
package/cjs/index.js CHANGED
@@ -60,6 +60,7 @@ import { loadPolygonMaskPlugin } from "@tsparticles/plugin-polygon-mask";
60
60
  import { loadPolygonPath } from "@tsparticles/path-polygon";
61
61
  import { loadRandomPath } from "@tsparticles/path-random";
62
62
  import { loadResponsivePlugin } from "@tsparticles/plugin-responsive";
63
+ import { loadRibbonShape } from "@tsparticles/shape-ribbon";
63
64
  import { loadRoundedPolygonShape } from "@tsparticles/shape-rounded-polygon";
64
65
  import { loadRoundedRectShape } from "@tsparticles/shape-rounded-rect";
65
66
  import { loadSVGPath } from "@tsparticles/path-svg";
@@ -75,7 +76,7 @@ import { loadTrailPlugin } from "@tsparticles/plugin-trail";
75
76
  import { loadZigZagPath } from "@tsparticles/path-zig-zag";
76
77
  import { loadZoomPlugin } from "@tsparticles/plugin-zoom";
77
78
  export async function loadAll(engine) {
78
- engine.checkVersion("4.0.4");
79
+ engine.checkVersion("4.1.0");
79
80
  await engine.pluginManager.register(async (e) => {
80
81
  const loadInteractionsForAll = async (e) => {
81
82
  await loadFull(e);
@@ -155,6 +156,7 @@ export async function loadAll(engine) {
155
156
  loadInfinityShape(e),
156
157
  loadMatrixShape(e),
157
158
  loadPathShape(e),
159
+ loadRibbonShape(e),
158
160
  loadRoundedPolygonShape(e),
159
161
  loadRoundedRectShape(e),
160
162
  loadSpiralShape(e),
package/cjs/index.lazy.js CHANGED
@@ -1,7 +1,7 @@
1
1
  export async function loadAll(engine) {
2
- engine.checkVersion("4.0.4");
2
+ engine.checkVersion("4.1.0");
3
3
  await engine.pluginManager.register(async (e) => {
4
- const [{ loadFull }, { loadHsvColorPlugin }, { loadHwbColorPlugin }, { loadLabColorPlugin }, { loadLchColorPlugin }, { loadOklabColorPlugin }, { loadOklchColorPlugin }, { loadNamedColorPlugin }, { loadEasingBackPlugin }, { loadEasingBouncePlugin }, { loadEasingCircPlugin }, { loadEasingCubicPlugin }, { loadEasingElasticPlugin }, { loadEasingExpoPlugin }, { loadEasingGaussianPlugin }, { loadEasingLinearPlugin }, { loadEasingQuartPlugin }, { loadEasingQuintPlugin }, { loadEasingSigmoidPlugin }, { loadEasingSinePlugin }, { loadEasingSmoothstepPlugin }, { loadBackgroundMaskPlugin }, { loadCanvasMaskPlugin }, { loadInfectionPlugin }, { loadManualParticlesPlugin }, { loadMotionPlugin }, { loadPoissonDiscPlugin }, { loadPolygonMaskPlugin }, { loadResponsivePlugin }, { loadSoundsPlugin }, { loadThemesPlugin }, { loadTrailPlugin }, { loadZoomPlugin }, { loadExportImagePlugin }, { loadExportJSONPlugin }, { loadExportVideoPlugin }, { loadExternalCannonInteraction }, { loadExternalParticleInteraction }, { loadExternalPopInteraction }, { loadLightInteraction }, { loadParticlesRepulseInteraction }, { loadGradientUpdater }, { loadOrbitUpdater }, { loadBranchesPath }, { loadBrownianPath }, { loadCurlNoisePath }, { loadCurvesPath }, { loadFractalNoisePath }, { loadGridPath }, { loadLevyPath }, { loadPerlinNoisePath }, { loadPolygonPath }, { loadRandomPath }, { loadSimplexNoisePath }, { loadSpiralPath }, { loadSVGPath }, { loadZigZagPath }, { loadBubbleEffect }, { loadFilterEffect }, { loadParticlesEffect }, { loadShadowEffect }, { loadTrailEffect }, { loadArrowShape }, { loadCardsShape }, { loadCogShape }, { loadHeartShape }, { loadInfinityShape }, { loadMatrixShape }, { loadPathShape }, { loadRoundedPolygonShape }, { loadRoundedRectShape }, { loadSpiralShape }, { loadSquircleShape }, { loadEmittersShapeCanvas }, { loadEmittersShapePath }, { loadEmittersShapePolygon },] = await Promise.all([
4
+ const [{ loadFull }, { loadHsvColorPlugin }, { loadHwbColorPlugin }, { loadLabColorPlugin }, { loadLchColorPlugin }, { loadOklabColorPlugin }, { loadOklchColorPlugin }, { loadNamedColorPlugin }, { loadEasingBackPlugin }, { loadEasingBouncePlugin }, { loadEasingCircPlugin }, { loadEasingCubicPlugin }, { loadEasingElasticPlugin }, { loadEasingExpoPlugin }, { loadEasingGaussianPlugin }, { loadEasingLinearPlugin }, { loadEasingQuartPlugin }, { loadEasingQuintPlugin }, { loadEasingSigmoidPlugin }, { loadEasingSinePlugin }, { loadEasingSmoothstepPlugin }, { loadBackgroundMaskPlugin }, { loadCanvasMaskPlugin }, { loadInfectionPlugin }, { loadManualParticlesPlugin }, { loadMotionPlugin }, { loadPoissonDiscPlugin }, { loadPolygonMaskPlugin }, { loadResponsivePlugin }, { loadSoundsPlugin }, { loadThemesPlugin }, { loadTrailPlugin }, { loadZoomPlugin }, { loadExportImagePlugin }, { loadExportJSONPlugin }, { loadExportVideoPlugin }, { loadExternalCannonInteraction }, { loadExternalParticleInteraction }, { loadExternalPopInteraction }, { loadLightInteraction }, { loadParticlesRepulseInteraction }, { loadGradientUpdater }, { loadOrbitUpdater }, { loadBranchesPath }, { loadBrownianPath }, { loadCurlNoisePath }, { loadCurvesPath }, { loadFractalNoisePath }, { loadGridPath }, { loadLevyPath }, { loadPerlinNoisePath }, { loadPolygonPath }, { loadRandomPath }, { loadSimplexNoisePath }, { loadSpiralPath }, { loadSVGPath }, { loadZigZagPath }, { loadBubbleEffect }, { loadFilterEffect }, { loadParticlesEffect }, { loadShadowEffect }, { loadTrailEffect }, { loadArrowShape }, { loadCardsShape }, { loadCogShape }, { loadHeartShape }, { loadInfinityShape }, { loadMatrixShape }, { loadPathShape }, { loadRibbonShape }, { loadRoundedPolygonShape }, { loadRoundedRectShape }, { loadSpiralShape }, { loadSquircleShape }, { loadEmittersShapeCanvas }, { loadEmittersShapePath }, { loadEmittersShapePolygon },] = await Promise.all([
5
5
  import("tsparticles/lazy"),
6
6
  import("@tsparticles/plugin-hsv-color/lazy"),
7
7
  import("@tsparticles/plugin-hwb-color/lazy"),
@@ -71,6 +71,7 @@ export async function loadAll(engine) {
71
71
  import("@tsparticles/shape-infinity/lazy"),
72
72
  import("@tsparticles/shape-matrix/lazy"),
73
73
  import("@tsparticles/shape-path/lazy"),
74
+ import("@tsparticles/shape-ribbon/lazy"),
74
75
  import("@tsparticles/shape-rounded-polygon/lazy"),
75
76
  import("@tsparticles/shape-rounded-rect/lazy"),
76
77
  import("@tsparticles/shape-spiral/lazy"),
@@ -156,6 +157,7 @@ export async function loadAll(engine) {
156
157
  loadInfinityShape(e),
157
158
  loadMatrixShape(e),
158
159
  loadPathShape(e),
160
+ loadRibbonShape(e),
159
161
  loadRoundedPolygonShape(e),
160
162
  loadRoundedRectShape(e),
161
163
  loadSpiralShape(e),
package/esm/index.js CHANGED
@@ -60,6 +60,7 @@ import { loadPolygonMaskPlugin } from "@tsparticles/plugin-polygon-mask";
60
60
  import { loadPolygonPath } from "@tsparticles/path-polygon";
61
61
  import { loadRandomPath } from "@tsparticles/path-random";
62
62
  import { loadResponsivePlugin } from "@tsparticles/plugin-responsive";
63
+ import { loadRibbonShape } from "@tsparticles/shape-ribbon";
63
64
  import { loadRoundedPolygonShape } from "@tsparticles/shape-rounded-polygon";
64
65
  import { loadRoundedRectShape } from "@tsparticles/shape-rounded-rect";
65
66
  import { loadSVGPath } from "@tsparticles/path-svg";
@@ -75,7 +76,7 @@ import { loadTrailPlugin } from "@tsparticles/plugin-trail";
75
76
  import { loadZigZagPath } from "@tsparticles/path-zig-zag";
76
77
  import { loadZoomPlugin } from "@tsparticles/plugin-zoom";
77
78
  export async function loadAll(engine) {
78
- engine.checkVersion("4.0.4");
79
+ engine.checkVersion("4.1.0");
79
80
  await engine.pluginManager.register(async (e) => {
80
81
  const loadInteractionsForAll = async (e) => {
81
82
  await loadFull(e);
@@ -155,6 +156,7 @@ export async function loadAll(engine) {
155
156
  loadInfinityShape(e),
156
157
  loadMatrixShape(e),
157
158
  loadPathShape(e),
159
+ loadRibbonShape(e),
158
160
  loadRoundedPolygonShape(e),
159
161
  loadRoundedRectShape(e),
160
162
  loadSpiralShape(e),
package/esm/index.lazy.js CHANGED
@@ -1,7 +1,7 @@
1
1
  export async function loadAll(engine) {
2
- engine.checkVersion("4.0.4");
2
+ engine.checkVersion("4.1.0");
3
3
  await engine.pluginManager.register(async (e) => {
4
- const [{ loadFull }, { loadHsvColorPlugin }, { loadHwbColorPlugin }, { loadLabColorPlugin }, { loadLchColorPlugin }, { loadOklabColorPlugin }, { loadOklchColorPlugin }, { loadNamedColorPlugin }, { loadEasingBackPlugin }, { loadEasingBouncePlugin }, { loadEasingCircPlugin }, { loadEasingCubicPlugin }, { loadEasingElasticPlugin }, { loadEasingExpoPlugin }, { loadEasingGaussianPlugin }, { loadEasingLinearPlugin }, { loadEasingQuartPlugin }, { loadEasingQuintPlugin }, { loadEasingSigmoidPlugin }, { loadEasingSinePlugin }, { loadEasingSmoothstepPlugin }, { loadBackgroundMaskPlugin }, { loadCanvasMaskPlugin }, { loadInfectionPlugin }, { loadManualParticlesPlugin }, { loadMotionPlugin }, { loadPoissonDiscPlugin }, { loadPolygonMaskPlugin }, { loadResponsivePlugin }, { loadSoundsPlugin }, { loadThemesPlugin }, { loadTrailPlugin }, { loadZoomPlugin }, { loadExportImagePlugin }, { loadExportJSONPlugin }, { loadExportVideoPlugin }, { loadExternalCannonInteraction }, { loadExternalParticleInteraction }, { loadExternalPopInteraction }, { loadLightInteraction }, { loadParticlesRepulseInteraction }, { loadGradientUpdater }, { loadOrbitUpdater }, { loadBranchesPath }, { loadBrownianPath }, { loadCurlNoisePath }, { loadCurvesPath }, { loadFractalNoisePath }, { loadGridPath }, { loadLevyPath }, { loadPerlinNoisePath }, { loadPolygonPath }, { loadRandomPath }, { loadSimplexNoisePath }, { loadSpiralPath }, { loadSVGPath }, { loadZigZagPath }, { loadBubbleEffect }, { loadFilterEffect }, { loadParticlesEffect }, { loadShadowEffect }, { loadTrailEffect }, { loadArrowShape }, { loadCardsShape }, { loadCogShape }, { loadHeartShape }, { loadInfinityShape }, { loadMatrixShape }, { loadPathShape }, { loadRoundedPolygonShape }, { loadRoundedRectShape }, { loadSpiralShape }, { loadSquircleShape }, { loadEmittersShapeCanvas }, { loadEmittersShapePath }, { loadEmittersShapePolygon },] = await Promise.all([
4
+ const [{ loadFull }, { loadHsvColorPlugin }, { loadHwbColorPlugin }, { loadLabColorPlugin }, { loadLchColorPlugin }, { loadOklabColorPlugin }, { loadOklchColorPlugin }, { loadNamedColorPlugin }, { loadEasingBackPlugin }, { loadEasingBouncePlugin }, { loadEasingCircPlugin }, { loadEasingCubicPlugin }, { loadEasingElasticPlugin }, { loadEasingExpoPlugin }, { loadEasingGaussianPlugin }, { loadEasingLinearPlugin }, { loadEasingQuartPlugin }, { loadEasingQuintPlugin }, { loadEasingSigmoidPlugin }, { loadEasingSinePlugin }, { loadEasingSmoothstepPlugin }, { loadBackgroundMaskPlugin }, { loadCanvasMaskPlugin }, { loadInfectionPlugin }, { loadManualParticlesPlugin }, { loadMotionPlugin }, { loadPoissonDiscPlugin }, { loadPolygonMaskPlugin }, { loadResponsivePlugin }, { loadSoundsPlugin }, { loadThemesPlugin }, { loadTrailPlugin }, { loadZoomPlugin }, { loadExportImagePlugin }, { loadExportJSONPlugin }, { loadExportVideoPlugin }, { loadExternalCannonInteraction }, { loadExternalParticleInteraction }, { loadExternalPopInteraction }, { loadLightInteraction }, { loadParticlesRepulseInteraction }, { loadGradientUpdater }, { loadOrbitUpdater }, { loadBranchesPath }, { loadBrownianPath }, { loadCurlNoisePath }, { loadCurvesPath }, { loadFractalNoisePath }, { loadGridPath }, { loadLevyPath }, { loadPerlinNoisePath }, { loadPolygonPath }, { loadRandomPath }, { loadSimplexNoisePath }, { loadSpiralPath }, { loadSVGPath }, { loadZigZagPath }, { loadBubbleEffect }, { loadFilterEffect }, { loadParticlesEffect }, { loadShadowEffect }, { loadTrailEffect }, { loadArrowShape }, { loadCardsShape }, { loadCogShape }, { loadHeartShape }, { loadInfinityShape }, { loadMatrixShape }, { loadPathShape }, { loadRibbonShape }, { loadRoundedPolygonShape }, { loadRoundedRectShape }, { loadSpiralShape }, { loadSquircleShape }, { loadEmittersShapeCanvas }, { loadEmittersShapePath }, { loadEmittersShapePolygon },] = await Promise.all([
5
5
  import("tsparticles/lazy"),
6
6
  import("@tsparticles/plugin-hsv-color/lazy"),
7
7
  import("@tsparticles/plugin-hwb-color/lazy"),
@@ -71,6 +71,7 @@ export async function loadAll(engine) {
71
71
  import("@tsparticles/shape-infinity/lazy"),
72
72
  import("@tsparticles/shape-matrix/lazy"),
73
73
  import("@tsparticles/shape-path/lazy"),
74
+ import("@tsparticles/shape-ribbon/lazy"),
74
75
  import("@tsparticles/shape-rounded-polygon/lazy"),
75
76
  import("@tsparticles/shape-rounded-rect/lazy"),
76
77
  import("@tsparticles/shape-spiral/lazy"),
@@ -156,6 +157,7 @@ export async function loadAll(engine) {
156
157
  loadInfinityShape(e),
157
158
  loadMatrixShape(e),
158
159
  loadPathShape(e),
160
+ loadRibbonShape(e),
159
161
  loadRoundedPolygonShape(e),
160
162
  loadRoundedRectShape(e),
161
163
  loadSpiralShape(e),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsparticles/all",
3
- "version": "4.0.4",
3
+ "version": "4.1.0",
4
4
  "description": "Easily create highly customizable particle animations and use them as animated backgrounds for your website. Ready to use components available also for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.",
5
5
  "homepage": "https://particles.js.org",
6
6
  "repository": {
@@ -105,83 +105,84 @@
105
105
  "./package.json": "./package.json"
106
106
  },
107
107
  "dependencies": {
108
- "@tsparticles/effect-bubble": "4.0.4",
109
- "@tsparticles/effect-filter": "4.0.4",
110
- "@tsparticles/effect-particles": "4.0.4",
111
- "@tsparticles/effect-shadow": "4.0.4",
112
- "@tsparticles/effect-trail": "4.0.4",
113
- "@tsparticles/engine": "4.0.4",
114
- "@tsparticles/interaction-external-cannon": "4.0.4",
115
- "@tsparticles/interaction-external-particle": "4.0.4",
116
- "@tsparticles/interaction-external-pop": "4.0.4",
117
- "@tsparticles/interaction-light": "4.0.4",
118
- "@tsparticles/interaction-particles-repulse": "4.0.4",
119
- "@tsparticles/path-branches": "4.0.4",
120
- "@tsparticles/path-brownian": "4.0.4",
121
- "@tsparticles/path-curl-noise": "4.0.4",
122
- "@tsparticles/path-curves": "4.0.4",
123
- "@tsparticles/path-fractal-noise": "4.0.4",
124
- "@tsparticles/path-grid": "4.0.4",
125
- "@tsparticles/path-levy": "4.0.4",
126
- "@tsparticles/path-perlin-noise": "4.0.4",
127
- "@tsparticles/path-polygon": "4.0.4",
128
- "@tsparticles/path-random": "4.0.4",
129
- "@tsparticles/path-simplex-noise": "4.0.4",
130
- "@tsparticles/path-spiral": "4.0.4",
131
- "@tsparticles/path-svg": "4.0.4",
132
- "@tsparticles/path-zig-zag": "4.0.4",
133
- "@tsparticles/plugin-background-mask": "4.0.4",
134
- "@tsparticles/plugin-canvas-mask": "4.0.4",
135
- "@tsparticles/plugin-easing-back": "4.0.4",
136
- "@tsparticles/plugin-easing-bounce": "4.0.4",
137
- "@tsparticles/plugin-easing-circ": "4.0.4",
138
- "@tsparticles/plugin-easing-cubic": "4.0.4",
139
- "@tsparticles/plugin-easing-elastic": "4.0.4",
140
- "@tsparticles/plugin-easing-expo": "4.0.4",
141
- "@tsparticles/plugin-easing-gaussian": "4.0.4",
142
- "@tsparticles/plugin-easing-linear": "4.0.4",
143
- "@tsparticles/plugin-easing-quart": "4.0.4",
144
- "@tsparticles/plugin-easing-quint": "4.0.4",
145
- "@tsparticles/plugin-easing-sigmoid": "4.0.4",
146
- "@tsparticles/plugin-easing-sine": "4.0.4",
147
- "@tsparticles/plugin-easing-smoothstep": "4.0.4",
148
- "@tsparticles/plugin-emitters-shape-canvas": "4.0.4",
149
- "@tsparticles/plugin-emitters-shape-path": "4.0.4",
150
- "@tsparticles/plugin-emitters-shape-polygon": "4.0.4",
151
- "@tsparticles/plugin-export-image": "4.0.4",
152
- "@tsparticles/plugin-export-json": "4.0.4",
153
- "@tsparticles/plugin-export-video": "4.0.4",
154
- "@tsparticles/plugin-hsv-color": "4.0.4",
155
- "@tsparticles/plugin-hwb-color": "4.0.4",
156
- "@tsparticles/plugin-infection": "4.0.4",
157
- "@tsparticles/plugin-lab-color": "4.0.4",
158
- "@tsparticles/plugin-lch-color": "4.0.4",
159
- "@tsparticles/plugin-manual-particles": "4.0.4",
160
- "@tsparticles/plugin-motion": "4.0.4",
161
- "@tsparticles/plugin-named-color": "4.0.4",
162
- "@tsparticles/plugin-oklab-color": "4.0.4",
163
- "@tsparticles/plugin-oklch-color": "4.0.4",
164
- "@tsparticles/plugin-poisson-disc": "4.0.4",
165
- "@tsparticles/plugin-polygon-mask": "4.0.4",
166
- "@tsparticles/plugin-responsive": "4.0.4",
167
- "@tsparticles/plugin-sounds": "4.0.4",
168
- "@tsparticles/plugin-themes": "4.0.4",
169
- "@tsparticles/plugin-trail": "4.0.4",
170
- "@tsparticles/plugin-zoom": "4.0.4",
171
- "@tsparticles/shape-arrow": "4.0.4",
172
- "@tsparticles/shape-cards": "4.0.4",
173
- "@tsparticles/shape-cog": "4.0.4",
174
- "@tsparticles/shape-heart": "4.0.4",
175
- "@tsparticles/shape-infinity": "4.0.4",
176
- "@tsparticles/shape-matrix": "4.0.4",
177
- "@tsparticles/shape-path": "4.0.4",
178
- "@tsparticles/shape-rounded-polygon": "4.0.4",
179
- "@tsparticles/shape-rounded-rect": "4.0.4",
180
- "@tsparticles/shape-spiral": "4.0.4",
181
- "@tsparticles/shape-squircle": "4.0.4",
182
- "@tsparticles/updater-gradient": "4.0.4",
183
- "@tsparticles/updater-orbit": "4.0.4",
184
- "tsparticles": "4.0.4"
108
+ "@tsparticles/effect-bubble": "4.1.0",
109
+ "@tsparticles/effect-filter": "4.1.0",
110
+ "@tsparticles/effect-particles": "4.1.0",
111
+ "@tsparticles/effect-shadow": "4.1.0",
112
+ "@tsparticles/effect-trail": "4.1.0",
113
+ "@tsparticles/engine": "4.1.0",
114
+ "@tsparticles/interaction-external-cannon": "4.1.0",
115
+ "@tsparticles/interaction-external-particle": "4.1.0",
116
+ "@tsparticles/interaction-external-pop": "4.1.0",
117
+ "@tsparticles/interaction-light": "4.1.0",
118
+ "@tsparticles/interaction-particles-repulse": "4.1.0",
119
+ "@tsparticles/path-branches": "4.1.0",
120
+ "@tsparticles/path-brownian": "4.1.0",
121
+ "@tsparticles/path-curl-noise": "4.1.0",
122
+ "@tsparticles/path-curves": "4.1.0",
123
+ "@tsparticles/path-fractal-noise": "4.1.0",
124
+ "@tsparticles/path-grid": "4.1.0",
125
+ "@tsparticles/path-levy": "4.1.0",
126
+ "@tsparticles/path-perlin-noise": "4.1.0",
127
+ "@tsparticles/path-polygon": "4.1.0",
128
+ "@tsparticles/path-random": "4.1.0",
129
+ "@tsparticles/path-simplex-noise": "4.1.0",
130
+ "@tsparticles/path-spiral": "4.1.0",
131
+ "@tsparticles/path-svg": "4.1.0",
132
+ "@tsparticles/path-zig-zag": "4.1.0",
133
+ "@tsparticles/plugin-background-mask": "4.1.0",
134
+ "@tsparticles/plugin-canvas-mask": "4.1.0",
135
+ "@tsparticles/plugin-easing-back": "4.1.0",
136
+ "@tsparticles/plugin-easing-bounce": "4.1.0",
137
+ "@tsparticles/plugin-easing-circ": "4.1.0",
138
+ "@tsparticles/plugin-easing-cubic": "4.1.0",
139
+ "@tsparticles/plugin-easing-elastic": "4.1.0",
140
+ "@tsparticles/plugin-easing-expo": "4.1.0",
141
+ "@tsparticles/plugin-easing-gaussian": "4.1.0",
142
+ "@tsparticles/plugin-easing-linear": "4.1.0",
143
+ "@tsparticles/plugin-easing-quart": "4.1.0",
144
+ "@tsparticles/plugin-easing-quint": "4.1.0",
145
+ "@tsparticles/plugin-easing-sigmoid": "4.1.0",
146
+ "@tsparticles/plugin-easing-sine": "4.1.0",
147
+ "@tsparticles/plugin-easing-smoothstep": "4.1.0",
148
+ "@tsparticles/plugin-emitters-shape-canvas": "4.1.0",
149
+ "@tsparticles/plugin-emitters-shape-path": "4.1.0",
150
+ "@tsparticles/plugin-emitters-shape-polygon": "4.1.0",
151
+ "@tsparticles/plugin-export-image": "4.1.0",
152
+ "@tsparticles/plugin-export-json": "4.1.0",
153
+ "@tsparticles/plugin-export-video": "4.1.0",
154
+ "@tsparticles/plugin-hsv-color": "4.1.0",
155
+ "@tsparticles/plugin-hwb-color": "4.1.0",
156
+ "@tsparticles/plugin-infection": "4.1.0",
157
+ "@tsparticles/plugin-lab-color": "4.1.0",
158
+ "@tsparticles/plugin-lch-color": "4.1.0",
159
+ "@tsparticles/plugin-manual-particles": "4.1.0",
160
+ "@tsparticles/plugin-motion": "4.1.0",
161
+ "@tsparticles/plugin-named-color": "4.1.0",
162
+ "@tsparticles/plugin-oklab-color": "4.1.0",
163
+ "@tsparticles/plugin-oklch-color": "4.1.0",
164
+ "@tsparticles/plugin-poisson-disc": "4.1.0",
165
+ "@tsparticles/plugin-polygon-mask": "4.1.0",
166
+ "@tsparticles/plugin-responsive": "4.1.0",
167
+ "@tsparticles/plugin-sounds": "4.1.0",
168
+ "@tsparticles/plugin-themes": "4.1.0",
169
+ "@tsparticles/plugin-trail": "4.1.0",
170
+ "@tsparticles/plugin-zoom": "4.1.0",
171
+ "@tsparticles/shape-arrow": "4.1.0",
172
+ "@tsparticles/shape-cards": "4.1.0",
173
+ "@tsparticles/shape-cog": "4.1.0",
174
+ "@tsparticles/shape-heart": "4.1.0",
175
+ "@tsparticles/shape-infinity": "4.1.0",
176
+ "@tsparticles/shape-matrix": "4.1.0",
177
+ "@tsparticles/shape-path": "4.1.0",
178
+ "@tsparticles/shape-ribbon": "4.1.0",
179
+ "@tsparticles/shape-rounded-polygon": "4.1.0",
180
+ "@tsparticles/shape-rounded-rect": "4.1.0",
181
+ "@tsparticles/shape-spiral": "4.1.0",
182
+ "@tsparticles/shape-squircle": "4.1.0",
183
+ "@tsparticles/updater-gradient": "4.1.0",
184
+ "@tsparticles/updater-orbit": "4.1.0",
185
+ "tsparticles": "4.1.0"
185
186
  },
186
187
  "publishConfig": {
187
188
  "access": "public"