tsparticles 3.0.0-beta.4 → 3.0.0-beta.5

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/README.md CHANGED
@@ -13,6 +13,7 @@ a `@tsparticles/engine` instance.
13
13
  - [@tsparticles/interaction-external-trail](https://github.com/tsparticles/tsparticles/tree/main/interactions/external/trail)
14
14
  - [@tsparticles/plugin-absorbers](https://github.com/tsparticles/tsparticles/tree/main/plugins/absorbers)
15
15
  - [@tsparticles/plugin-emitters](https://github.com/tsparticles/tsparticles/tree/main/plugins/emitters)
16
+ - [@tsparticles/shape-text](https://github.com/tsparticles/tsparticles/tree/main/shapes/text)
16
17
  - [@tsparticles/updater-destroy](https://github.com/tsparticles/tsparticles/tree/main/updaters/destroy)
17
18
  - [@tsparticles/updater-roll](https://github.com/tsparticles/tsparticles/tree/main/updaters/roll)
18
19
  - [@tsparticles/updater-tilt](https://github.com/tsparticles/tsparticles/tree/main/updaters/tilt)
package/browser/index.js CHANGED
@@ -6,6 +6,7 @@ import { loadEmittersShapeSquare } from "@tsparticles/plugin-emitters-shape-squa
6
6
  import { loadExternalTrailInteraction } from "@tsparticles/interaction-external-trail";
7
7
  import { loadRollUpdater } from "@tsparticles/updater-roll";
8
8
  import { loadSlim } from "@tsparticles/slim";
9
+ import { loadTextShape } from "@tsparticles/shape-text";
9
10
  import { loadTiltUpdater } from "@tsparticles/updater-tilt";
10
11
  import { loadTwinkleUpdater } from "@tsparticles/updater-twinkle";
11
12
  import { loadWobbleUpdater } from "@tsparticles/updater-wobble";
@@ -15,6 +16,7 @@ export async function loadFull(engine, refresh = true) {
15
16
  await loadTiltUpdater(engine, false);
16
17
  await loadTwinkleUpdater(engine, false);
17
18
  await loadWobbleUpdater(engine, false);
19
+ await loadTextShape(engine, false);
18
20
  await loadExternalTrailInteraction(engine, false);
19
21
  await loadAbsorbersPlugin(engine, false);
20
22
  await loadEmittersPlugin(engine, false);
package/cjs/index.js CHANGED
@@ -9,6 +9,7 @@ const plugin_emitters_shape_square_1 = require("@tsparticles/plugin-emitters-sha
9
9
  const interaction_external_trail_1 = require("@tsparticles/interaction-external-trail");
10
10
  const updater_roll_1 = require("@tsparticles/updater-roll");
11
11
  const slim_1 = require("@tsparticles/slim");
12
+ const shape_text_1 = require("@tsparticles/shape-text");
12
13
  const updater_tilt_1 = require("@tsparticles/updater-tilt");
13
14
  const updater_twinkle_1 = require("@tsparticles/updater-twinkle");
14
15
  const updater_wobble_1 = require("@tsparticles/updater-wobble");
@@ -18,6 +19,7 @@ async function loadFull(engine, refresh = true) {
18
19
  await (0, updater_tilt_1.loadTiltUpdater)(engine, false);
19
20
  await (0, updater_twinkle_1.loadTwinkleUpdater)(engine, false);
20
21
  await (0, updater_wobble_1.loadWobbleUpdater)(engine, false);
22
+ await (0, shape_text_1.loadTextShape)(engine, false);
21
23
  await (0, interaction_external_trail_1.loadExternalTrailInteraction)(engine, false);
22
24
  await (0, plugin_absorbers_1.loadAbsorbersPlugin)(engine, false);
23
25
  await (0, plugin_emitters_1.loadEmittersPlugin)(engine, false);
package/esm/index.js CHANGED
@@ -6,6 +6,7 @@ import { loadEmittersShapeSquare } from "@tsparticles/plugin-emitters-shape-squa
6
6
  import { loadExternalTrailInteraction } from "@tsparticles/interaction-external-trail";
7
7
  import { loadRollUpdater } from "@tsparticles/updater-roll";
8
8
  import { loadSlim } from "@tsparticles/slim";
9
+ import { loadTextShape } from "@tsparticles/shape-text";
9
10
  import { loadTiltUpdater } from "@tsparticles/updater-tilt";
10
11
  import { loadTwinkleUpdater } from "@tsparticles/updater-twinkle";
11
12
  import { loadWobbleUpdater } from "@tsparticles/updater-wobble";
@@ -15,6 +16,7 @@ export async function loadFull(engine, refresh = true) {
15
16
  await loadTiltUpdater(engine, false);
16
17
  await loadTwinkleUpdater(engine, false);
17
18
  await loadWobbleUpdater(engine, false);
19
+ await loadTextShape(engine, false);
18
20
  await loadExternalTrailInteraction(engine, false);
19
21
  await loadAbsorbersPlugin(engine, false);
20
22
  await loadEmittersPlugin(engine, false);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tsparticles",
3
- "version": "3.0.0-beta.4",
3
+ "version": "3.0.0-beta.5",
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": {
@@ -99,18 +99,19 @@
99
99
  "./package.json": "./package.json"
100
100
  },
101
101
  "dependencies": {
102
- "@tsparticles/engine": "^3.0.0-beta.4",
103
- "@tsparticles/interaction-external-trail": "^3.0.0-beta.4",
104
- "@tsparticles/plugin-absorbers": "^3.0.0-beta.4",
105
- "@tsparticles/plugin-emitters": "^3.0.0-beta.4",
106
- "@tsparticles/plugin-emitters-shape-circle": "^3.0.0-beta.4",
107
- "@tsparticles/plugin-emitters-shape-square": "^3.0.0-beta.4",
108
- "@tsparticles/slim": "^3.0.0-beta.4",
109
- "@tsparticles/updater-destroy": "^3.0.0-beta.4",
110
- "@tsparticles/updater-roll": "^3.0.0-beta.4",
111
- "@tsparticles/updater-tilt": "^3.0.0-beta.4",
112
- "@tsparticles/updater-twinkle": "^3.0.0-beta.4",
113
- "@tsparticles/updater-wobble": "^3.0.0-beta.4"
102
+ "@tsparticles/engine": "^3.0.0-beta.5",
103
+ "@tsparticles/interaction-external-trail": "^3.0.0-beta.5",
104
+ "@tsparticles/plugin-absorbers": "^3.0.0-beta.5",
105
+ "@tsparticles/plugin-emitters": "^3.0.0-beta.5",
106
+ "@tsparticles/plugin-emitters-shape-circle": "^3.0.0-beta.5",
107
+ "@tsparticles/plugin-emitters-shape-square": "^3.0.0-beta.5",
108
+ "@tsparticles/shape-text": "^3.0.0-beta.5",
109
+ "@tsparticles/slim": "^3.0.0-beta.5",
110
+ "@tsparticles/updater-destroy": "^3.0.0-beta.5",
111
+ "@tsparticles/updater-roll": "^3.0.0-beta.5",
112
+ "@tsparticles/updater-tilt": "^3.0.0-beta.5",
113
+ "@tsparticles/updater-twinkle": "^3.0.0-beta.5",
114
+ "@tsparticles/updater-wobble": "^3.0.0-beta.5"
114
115
  },
115
116
  "publishConfig": {
116
117
  "access": "public"