@tsparticles/path-zig-zag 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.
package/251.min.js ADDED
@@ -0,0 +1 @@
1
+ "use strict";(this.webpackChunk_tsparticles_path_zig_zag=this.webpackChunk_tsparticles_path_zig_zag||[]).push([[251],{251(t,e,i){i.d(e,{ZigZagPathGenerator:()=>h});var a=i(303);let n=Math.PI*a.half,s={waveHeight:{min:0,max:3},waveLength:{min:0,max:5}};class h{options;_container;_res;constructor(t){this._container=t,this._res=a.Vector.origin,this.options=(0,a.deepExtend)({},s)}generate(t,e){let{options:i}=this;t.zigzag??={counter:(0,a.getRandom)(),waveHeight:(0,a.getRangeValue)(i.waveHeight),waveLength:(0,a.getRangeValue)(i.waveLength)};let s=.5/t.zigzag.waveLength*e.factor;t.zigzag.counter+=s;let h=t.zigzag.waveHeight*Math.sin(t.zigzag.counter);return t.position.x+=h*Math.cos(t.velocity.angle+n),t.position.y+=h*Math.sin(t.velocity.angle+n),this._res.x=0,this._res.y=0,this._res}init(){let t=this._container.actualOptions.particles.move.path.options;this.options.waveLength=t.waveLength??this.options.waveLength,this.options.waveHeight=t.waveHeight??this.options.waveHeight}reset(){}update(){}}}}]);
package/README.md CHANGED
@@ -8,6 +8,12 @@
8
8
 
9
9
  [tsParticles](https://github.com/tsparticles/tsparticles) path plugin for on zigzag 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 { loadZigZagPath } from "@tsparticles/path-zigzag";
72
78
  await loadZigZagPath(tsParticles);
73
79
  })();
74
80
  ```
81
+
82
+ ## Option mapping
83
+
84
+ - Primary options key: `particles.move.path`
85
+ - Path generator name: `"zigzag"`
86
+
87
+ ```json
88
+ {
89
+ "particles": {
90
+ "move": {
91
+ "enable": true,
92
+ "path": {
93
+ "enable": true,
94
+ "generator": "zigzag",
95
+ "options": {}
96
+ }
97
+ }
98
+ }
99
+ }
100
+ ```
101
+
102
+ ## Common pitfalls
103
+
104
+ - Calling `tsParticles.load(...)` before `loadZigZagPath(...)`
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 zigZagPathName = "zigZagPathGenerator";
2
2
  export async function loadZigZagPath(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?.(zigZagPathName, async (container) => {
7
+ e.pluginManager.addPathGenerator?.(zigZagPathName, async (container) => {
8
8
  const { ZigZagPathGenerator } = await import("./ZigZagPathGenerator.js");
9
9
  return new ZigZagPathGenerator(container);
10
10
  });
package/cjs/index.js CHANGED
@@ -1,10 +1,10 @@
1
1
  export const zigZagPathName = "zigZagPathGenerator";
2
2
  export async function loadZigZagPath(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?.(zigZagPathName, async (container) => {
7
+ e.pluginManager.addPathGenerator?.(zigZagPathName, async (container) => {
8
8
  const { ZigZagPathGenerator } = await import("./ZigZagPathGenerator.js");
9
9
  return new ZigZagPathGenerator(container);
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 zigZagPathName = "zigZagPathGenerator";
2
2
  export async function loadZigZagPath(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?.(zigZagPathName, async (container) => {
7
+ e.pluginManager.addPathGenerator?.(zigZagPathName, async (container) => {
8
8
  const { ZigZagPathGenerator } = await import("./ZigZagPathGenerator.js");
9
9
  return new ZigZagPathGenerator(container);
10
10
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsparticles/path-zig-zag",
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"