@tsparticles/path-random 4.0.0-beta.0 → 4.0.0-beta.10

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.
@@ -1 +1 @@
1
- "use strict";(this.webpackChunk_tsparticles_path_random=this.webpackChunk_tsparticles_path_random||[]).push([[387],{387(t,e,s){s.d(e,{RandomPathGenerator:()=>a});var r=s(303);class a{_res;constructor(){this._res=r.Vector.origin}generate(){return this._res.x=(0,r.getRandomInRange)(-1,1),this._res.y=(0,r.getRandomInRange)(-1,1),this._res}init(){}reset(){}update(){}}}}]);
1
+ "use strict";(this.webpackChunk_tsparticles_path_random=this.webpackChunk_tsparticles_path_random||[]).push([[702],{702(t,e,s){s.d(e,{RandomPathGenerator:()=>a});var r=s(303);class a{_res;constructor(){this._res=r.Vector.origin}generate(){return this._res.x=(0,r.getRandomInRange)(-1,1),this._res.y=(0,r.getRandomInRange)(-1,1),this._res}init(){}reset(){}update(){}}}}]);
package/README.md CHANGED
@@ -8,6 +8,12 @@
8
8
 
9
9
  [tsParticles](https://github.com/tsparticles/tsparticles) path plugin for random path movement.
10
10
 
11
+ ## Quick checklist
12
+
13
+ 1. Install `@tsparticles/engine` (or use the CDN bundle below)
14
+ 2. Call the package loader function(s) before `tsParticles.load(...)`
15
+ 3. Apply the package options in your `tsParticles.load(...)` config
16
+
11
17
  ## How to use it
12
18
 
13
19
  ### CDN / Vanilla JS / jQuery
@@ -72,3 +78,34 @@ import { loadRandomPath } from "@tsparticles/path-random";
72
78
  await loadRandomPath(tsParticles);
73
79
  })();
74
80
  ```
81
+
82
+ ## Option mapping
83
+
84
+ - Primary options key: `particles.move.path`
85
+ - Path generator name: `"random"`
86
+
87
+ ```json
88
+ {
89
+ "particles": {
90
+ "move": {
91
+ "enable": true,
92
+ "path": {
93
+ "enable": true,
94
+ "generator": "random",
95
+ "options": {}
96
+ }
97
+ }
98
+ }
99
+ }
100
+ ```
101
+
102
+ ## Common pitfalls
103
+
104
+ - Calling `tsParticles.load(...)` before `loadRandomPath(...)`
105
+ - Verify required peer packages before enabling advanced options
106
+ - Change one option group at a time to isolate regressions quickly
107
+
108
+ ## Related docs
109
+
110
+ - All packages catalog: <https://github.com/tsparticles/tsparticles>
111
+ - Main docs: <https://particles.js.org/docs/>
package/browser/index.js CHANGED
@@ -1,10 +1,10 @@
1
1
  export const randomPathName = "randomPathGenerator";
2
2
  export async function loadRandomPath(engine) {
3
- engine.checkVersion("4.0.0-beta.0");
4
- await engine.register(async (e) => {
3
+ engine.checkVersion("4.0.0-beta.10");
4
+ await engine.pluginManager.register(async (e) => {
5
5
  const { ensureBaseMoverLoaded } = await import("@tsparticles/plugin-move");
6
6
  ensureBaseMoverLoaded(e);
7
- e.addPathGenerator?.(randomPathName, async () => {
7
+ e.pluginManager.addPathGenerator?.(randomPathName, async () => {
8
8
  const { RandomPathGenerator } = await import("./RandomPathGenerator.js");
9
9
  return new RandomPathGenerator();
10
10
  });
package/cjs/index.js CHANGED
@@ -1,10 +1,10 @@
1
1
  export const randomPathName = "randomPathGenerator";
2
2
  export async function loadRandomPath(engine) {
3
- engine.checkVersion("4.0.0-beta.0");
4
- await engine.register(async (e) => {
3
+ engine.checkVersion("4.0.0-beta.10");
4
+ await engine.pluginManager.register(async (e) => {
5
5
  const { ensureBaseMoverLoaded } = await import("@tsparticles/plugin-move");
6
6
  ensureBaseMoverLoaded(e);
7
- e.addPathGenerator?.(randomPathName, async () => {
7
+ e.pluginManager.addPathGenerator?.(randomPathName, async () => {
8
8
  const { RandomPathGenerator } = await import("./RandomPathGenerator.js");
9
9
  return new RandomPathGenerator();
10
10
  });
@@ -4,7 +4,7 @@
4
4
  * Demo / Generator : https://particles.js.org/
5
5
  * GitHub : https://www.github.com/matteobruni/tsparticles
6
6
  * How to use? : Check the GitHub README
7
- * v4.0.0-beta.0
7
+ * v4.0.0-beta.10
8
8
  */
9
9
  "use strict";
10
10
  /*
package/esm/index.js CHANGED
@@ -1,10 +1,10 @@
1
1
  export const randomPathName = "randomPathGenerator";
2
2
  export async function loadRandomPath(engine) {
3
- engine.checkVersion("4.0.0-beta.0");
4
- await engine.register(async (e) => {
3
+ engine.checkVersion("4.0.0-beta.10");
4
+ await engine.pluginManager.register(async (e) => {
5
5
  const { ensureBaseMoverLoaded } = await import("@tsparticles/plugin-move");
6
6
  ensureBaseMoverLoaded(e);
7
- e.addPathGenerator?.(randomPathName, async () => {
7
+ e.pluginManager.addPathGenerator?.(randomPathName, async () => {
8
8
  const { RandomPathGenerator } = await import("./RandomPathGenerator.js");
9
9
  return new RandomPathGenerator();
10
10
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsparticles/path-random",
3
- "version": "4.0.0-beta.0",
3
+ "version": "4.0.0-beta.10",
4
4
  "description": "tsParticles zig zag path",
5
5
  "homepage": "https://particles.js.org",
6
6
  "repository": {
@@ -95,14 +95,13 @@
95
95
  "browser": "./browser/index.js",
96
96
  "import": "./esm/index.js",
97
97
  "require": "./cjs/index.js",
98
- "umd": "./umd/index.js",
99
- "default": "./cjs/index.js"
98
+ "default": "./esm/index.js"
100
99
  },
101
100
  "./package.json": "./package.json"
102
101
  },
103
- "dependencies": {
104
- "@tsparticles/engine": "4.0.0-beta.0",
105
- "@tsparticles/plugin-move": "4.0.0-beta.0"
102
+ "peerDependencies": {
103
+ "@tsparticles/engine": "4.0.0-beta.10",
104
+ "@tsparticles/plugin-move": "4.0.0-beta.10"
106
105
  },
107
106
  "publishConfig": {
108
107
  "access": "public"