@tsparticles/preset-triangles 3.0.0-alpha.1 → 3.0.0-beta.1

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
@@ -26,14 +26,15 @@ Once installed you need one more script to be included in your page (or you can
26
26
  from [jsDelivr](https://www.jsdelivr.com/package/npm/@tsparticles/preset-triangles):
27
27
 
28
28
  ```html
29
- <script src="https://cdn.jsdelivr.net/npm/tsparticles-engine@2/tsparticles.engine.min.js"></script>
30
- <script src="https://cdn.jsdelivr.net/npm/tsparticles-interaction-particles-links@2/tsparticles.interaction.particles.links.min.js"></script>
31
- <script src="https://cdn.jsdelivr.net/npm/tsparticles-move-base@2/tsparticles.move.base.min.js"></script>
32
- <script src="https://cdn.jsdelivr.net/npm/tsparticles-shape-circle@2/tsparticles.shape.circle.min.js"></script>
33
- <script src="https://cdn.jsdelivr.net/npm/tsparticles-updater-color@2/tsparticles.updater.color.min.js"></script>
34
- <script src="https://cdn.jsdelivr.net/npm/tsparticles-updater-opacity@2/tsparticles.updater.opacity.min.js"></script>
35
- <script src="https://cdn.jsdelivr.net/npm/tsparticles-updater-out-modes@2/tsparticles.updater.out-modes.min.js"></script>
36
- <script src="https://cdn.jsdelivr.net/npm/tsparticles-updater-size@2/tsparticles.updater.size.min.js"></script>
29
+ <script src="https://cdn.jsdelivr.net/npm/@tsparticles/engine@2/tsparticles.engine.min.js"></script>
30
+ <script src="https://cdn.jsdelivr.net/npm/@tsparticles/basic@2/tsparticles.basic.min.js"></script>
31
+ <script src="https://cdn.jsdelivr.net/npm/@tsparticles/interaction-particles-links@2/tsparticles.interaction.particles.links.min.js"></script>
32
+ <script src="https://cdn.jsdelivr.net/npm/@tsparticles/move-base@2/tsparticles.move.base.min.js"></script>
33
+ <script src="https://cdn.jsdelivr.net/npm/@tsparticles/shape-circle@2/tsparticles.shape.circle.min.js"></script>
34
+ <script src="https://cdn.jsdelivr.net/npm/@tsparticles/updater-color@2/tsparticles.updater.color.min.js"></script>
35
+ <script src="https://cdn.jsdelivr.net/npm/@tsparticles/updater-opacity@2/tsparticles.updater.opacity.min.js"></script>
36
+ <script src="https://cdn.jsdelivr.net/npm/@tsparticles/updater-out-modes@2/tsparticles.updater.out-modes.min.js"></script>
37
+ <script src="https://cdn.jsdelivr.net/npm/@tsparticles/updater-size@2/tsparticles.updater.size.min.js"></script>
37
38
  <script src="https://cdn.jsdelivr.net/npm/@tsparticles/preset-triangles@2/tsparticles.preset.triangles.min.js"></script>
38
39
  ```
39
40
 
@@ -87,7 +88,7 @@ This sample uses the class component syntax, but you can use hooks as well (if t
87
88
 
88
89
  ```typescript jsx
89
90
  import Particles from "react-particles";
90
- import type { Engine } from "tsparticles-engine";
91
+ import type { Engine } from "@tsparticles/engine";
91
92
  import { loadTrianglesPreset } from "@tsparticles/preset-triangles";
92
93
 
93
94
  export class ParticlesContainer extends React.PureComponent<IProps> {
@@ -128,7 +129,7 @@ async function particlesInit(engine: Engine): Promise<void> {
128
129
  ### Angular
129
130
 
130
131
  ```html
131
- <angular-particles [id]="id" [options]="particlesOptions" [particlesInit]="particlesInit"></angular-particles>
132
+ <ng-particles [id]="id" [options]="particlesOptions" [particlesInit]="particlesInit"></ng-particles>
132
133
  ```
133
134
 
134
135
  ```ts
@@ -167,8 +168,6 @@ let particlesInit = async (engine) => {
167
168
  ```mermaid
168
169
  flowchart TD
169
170
 
170
- e[tsParticles Engine]
171
-
172
171
  subgraph i [Interactions]
173
172
 
174
173
  subgraph ip [Particles]
@@ -177,36 +176,11 @@ end
177
176
 
178
177
  end
179
178
 
180
- i --> ip
181
-
182
- e --> i
183
-
184
- subgraph m [Movers]
185
- mb[Base]
186
- end
187
-
188
- e --> m
189
-
190
- subgraph s [Shapes]
191
- sc[Circle]
192
- end
193
-
194
- e --> s
195
-
196
- subgraph u [Updaters]
197
- uc[Color]
198
- uop[Opacity]
199
- uou[Out Modes]
200
- usi[Size]
201
- end
202
-
203
- e --> u
179
+ bb[tsParticles Basic] --> i
204
180
 
205
181
  subgraph pr [Presets]
206
182
  prt[Triangles]
207
183
  end
208
184
 
209
- e --> pr
210
-
211
- ipl & mb & sc & uc & uop & uou & usi --> prt
185
+ bb & ipl --> prt
212
186
  ```
package/browser/bundle.js CHANGED
@@ -1,6 +1,4 @@
1
1
  import { loadTrianglesPreset } from ".";
2
2
  import { tsParticles } from "@tsparticles/engine";
3
- (async () => {
4
- await loadTrianglesPreset(tsParticles);
5
- })();
3
+ loadTrianglesPreset(tsParticles);
6
4
  export { loadTrianglesPreset, tsParticles };
package/browser/index.js CHANGED
@@ -1,18 +1,8 @@
1
- import { loadBaseMover } from "@tsparticles/move-base";
2
- import { loadCircleShape } from "@tsparticles/shape-circle";
3
- import { loadColorUpdater } from "@tsparticles/updater-color";
4
- import { loadOpacityUpdater } from "@tsparticles/updater-opacity";
5
- import { loadOutModesUpdater } from "@tsparticles/updater-out-modes";
1
+ import { loadBasic } from "@tsparticles/basic";
6
2
  import { loadParticlesLinksInteraction } from "@tsparticles/interaction-particles-links";
7
- import { loadSizeUpdater } from "@tsparticles/updater-size";
8
3
  import { options } from "./options";
9
- export async function loadTrianglesPreset(engine) {
10
- await loadBaseMover(engine);
11
- await loadCircleShape(engine);
12
- await loadColorUpdater(engine);
13
- await loadParticlesLinksInteraction(engine);
14
- await loadOutModesUpdater(engine);
15
- await loadOpacityUpdater(engine);
16
- await loadSizeUpdater(engine);
17
- await engine.addPreset("triangles", options);
4
+ export async function loadTrianglesPreset(engine, refresh = true) {
5
+ await loadBasic(engine, false);
6
+ await loadParticlesLinksInteraction(engine, false);
7
+ await engine.addPreset("triangles", options, refresh);
18
8
  }
@@ -3,6 +3,9 @@ export const options = {
3
3
  color: "#000000",
4
4
  },
5
5
  particles: {
6
+ number: {
7
+ value: 100,
8
+ },
6
9
  links: {
7
10
  distance: 125,
8
11
  enable: true,
@@ -0,0 +1 @@
1
+ { "type": "module" }
package/cjs/bundle.js CHANGED
@@ -1,19 +1,8 @@
1
1
  "use strict";
2
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
- return new (P || (P = Promise))(function (resolve, reject) {
5
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
- step((generator = generator.apply(thisArg, _arguments || [])).next());
9
- });
10
- };
11
2
  Object.defineProperty(exports, "__esModule", { value: true });
12
3
  exports.tsParticles = exports.loadTrianglesPreset = void 0;
13
4
  const _1 = require(".");
14
5
  Object.defineProperty(exports, "loadTrianglesPreset", { enumerable: true, get: function () { return _1.loadTrianglesPreset; } });
15
6
  const engine_1 = require("@tsparticles/engine");
16
7
  Object.defineProperty(exports, "tsParticles", { enumerable: true, get: function () { return engine_1.tsParticles; } });
17
- (() => __awaiter(void 0, void 0, void 0, function* () {
18
- yield (0, _1.loadTrianglesPreset)(engine_1.tsParticles);
19
- }))();
8
+ (0, _1.loadTrianglesPreset)(engine_1.tsParticles);
package/cjs/index.js CHANGED
@@ -1,33 +1,12 @@
1
1
  "use strict";
2
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
- return new (P || (P = Promise))(function (resolve, reject) {
5
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
- step((generator = generator.apply(thisArg, _arguments || [])).next());
9
- });
10
- };
11
2
  Object.defineProperty(exports, "__esModule", { value: true });
12
3
  exports.loadTrianglesPreset = void 0;
13
- const move_base_1 = require("@tsparticles/move-base");
14
- const shape_circle_1 = require("@tsparticles/shape-circle");
15
- const updater_color_1 = require("@tsparticles/updater-color");
16
- const updater_opacity_1 = require("@tsparticles/updater-opacity");
17
- const updater_out_modes_1 = require("@tsparticles/updater-out-modes");
4
+ const basic_1 = require("@tsparticles/basic");
18
5
  const interaction_particles_links_1 = require("@tsparticles/interaction-particles-links");
19
- const updater_size_1 = require("@tsparticles/updater-size");
20
6
  const options_1 = require("./options");
21
- function loadTrianglesPreset(engine) {
22
- return __awaiter(this, void 0, void 0, function* () {
23
- yield (0, move_base_1.loadBaseMover)(engine);
24
- yield (0, shape_circle_1.loadCircleShape)(engine);
25
- yield (0, updater_color_1.loadColorUpdater)(engine);
26
- yield (0, interaction_particles_links_1.loadParticlesLinksInteraction)(engine);
27
- yield (0, updater_out_modes_1.loadOutModesUpdater)(engine);
28
- yield (0, updater_opacity_1.loadOpacityUpdater)(engine);
29
- yield (0, updater_size_1.loadSizeUpdater)(engine);
30
- yield engine.addPreset("triangles", options_1.options);
31
- });
7
+ async function loadTrianglesPreset(engine, refresh = true) {
8
+ await (0, basic_1.loadBasic)(engine, false);
9
+ await (0, interaction_particles_links_1.loadParticlesLinksInteraction)(engine, false);
10
+ await engine.addPreset("triangles", options_1.options, refresh);
32
11
  }
33
12
  exports.loadTrianglesPreset = loadTrianglesPreset;
package/cjs/options.js CHANGED
@@ -6,6 +6,9 @@ exports.options = {
6
6
  color: "#000000",
7
7
  },
8
8
  particles: {
9
+ number: {
10
+ value: 100,
11
+ },
9
12
  links: {
10
13
  distance: 125,
11
14
  enable: true,
@@ -0,0 +1 @@
1
+ { "type": "commonjs" }
package/esm/bundle.js CHANGED
@@ -1,6 +1,4 @@
1
1
  import { loadTrianglesPreset } from ".";
2
2
  import { tsParticles } from "@tsparticles/engine";
3
- (async () => {
4
- await loadTrianglesPreset(tsParticles);
5
- })();
3
+ loadTrianglesPreset(tsParticles);
6
4
  export { loadTrianglesPreset, tsParticles };
package/esm/index.js CHANGED
@@ -1,18 +1,8 @@
1
- import { loadBaseMover } from "@tsparticles/move-base";
2
- import { loadCircleShape } from "@tsparticles/shape-circle";
3
- import { loadColorUpdater } from "@tsparticles/updater-color";
4
- import { loadOpacityUpdater } from "@tsparticles/updater-opacity";
5
- import { loadOutModesUpdater } from "@tsparticles/updater-out-modes";
1
+ import { loadBasic } from "@tsparticles/basic";
6
2
  import { loadParticlesLinksInteraction } from "@tsparticles/interaction-particles-links";
7
- import { loadSizeUpdater } from "@tsparticles/updater-size";
8
3
  import { options } from "./options";
9
- export async function loadTrianglesPreset(engine) {
10
- await loadBaseMover(engine);
11
- await loadCircleShape(engine);
12
- await loadColorUpdater(engine);
13
- await loadParticlesLinksInteraction(engine);
14
- await loadOutModesUpdater(engine);
15
- await loadOpacityUpdater(engine);
16
- await loadSizeUpdater(engine);
17
- await engine.addPreset("triangles", options);
4
+ export async function loadTrianglesPreset(engine, refresh = true) {
5
+ await loadBasic(engine, false);
6
+ await loadParticlesLinksInteraction(engine, false);
7
+ await engine.addPreset("triangles", options, refresh);
18
8
  }
package/esm/options.js CHANGED
@@ -3,6 +3,9 @@ export const options = {
3
3
  color: "#000000",
4
4
  },
5
5
  particles: {
6
+ number: {
7
+ value: 100,
8
+ },
6
9
  links: {
7
10
  distance: 125,
8
11
  enable: true,
@@ -0,0 +1 @@
1
+ { "type": "module" }
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@tsparticles/preset-triangles",
3
- "version": "3.0.0-alpha.1",
3
+ "version": "3.0.0-beta.1",
4
4
  "description": "tsParticles triangles preset",
5
5
  "homepage": "https://particles.js.org",
6
6
  "repository": {
7
7
  "type": "git",
8
- "url": "git+https://github.com/matteobruni/tsparticles.git",
8
+ "url": "git+https://github.com/tsparticles/presets.git",
9
9
  "directory": "presets/triangles"
10
10
  },
11
11
  "keywords": [
@@ -65,13 +65,17 @@
65
65
  "author": "Matteo Bruni <matteo.bruni@me.com>",
66
66
  "license": "MIT",
67
67
  "bugs": {
68
- "url": "https://github.com/matteobruni/tsparticles/issues"
68
+ "url": "https://github.com/tsparticles/presets/issues"
69
69
  },
70
70
  "funding": [
71
71
  {
72
72
  "type": "github",
73
73
  "url": "https://github.com/sponsors/matteobruni"
74
74
  },
75
+ {
76
+ "type": "github",
77
+ "url": "https://github.com/sponsors/tsparticles"
78
+ },
75
79
  {
76
80
  "type": "buymeacoffee",
77
81
  "url": "https://www.buymeacoffee.com/matteobruni"
@@ -82,17 +86,9 @@
82
86
  "unpkg": "tsparticles.preset.triangles.min.js",
83
87
  "module": "esm/index.js",
84
88
  "types": "types/index.d.ts",
85
- "publishConfig": {
86
- "access": "public"
87
- },
88
89
  "dependencies": {
89
- "@tsparticles/engine": "^3.0.0-alpha.1",
90
- "@tsparticles/interaction-particles-links": "^3.0.0-alpha.1",
91
- "@tsparticles/move-base": "^3.0.0-alpha.1",
92
- "@tsparticles/shape-circle": "^3.0.0-alpha.1",
93
- "@tsparticles/updater-color": "^3.0.0-alpha.1",
94
- "@tsparticles/updater-opacity": "^3.0.0-alpha.1",
95
- "@tsparticles/updater-out-modes": "^3.0.0-alpha.1",
96
- "@tsparticles/updater-size": "^3.0.0-alpha.1"
90
+ "@tsparticles/basic": "^3.0.0-beta.1",
91
+ "@tsparticles/engine": "^3.0.0-beta.1",
92
+ "@tsparticles/interaction-particles-links": "^3.0.0-beta.1"
97
93
  }
98
- }
94
+ }