@tsparticles/configs 3.6.0-beta.1 → 3.7.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.
@@ -1,8 +1,10 @@
1
+ import lch from "./lch.js";
1
2
  import life from "./life.js";
2
3
  import lightHover from "./lightHover.js";
3
4
  import linkTriangles from "./linkTriangles.js";
4
5
  import localPolygonMask from "./localPolygonMask.js";
5
6
  export default {
7
+ lch,
6
8
  life,
7
9
  lightHover,
8
10
  linkTriangles,
@@ -0,0 +1,67 @@
1
+ const options = {
2
+ key: "lch",
3
+ name: "LCH",
4
+ particles: {
5
+ number: {
6
+ value: 80,
7
+ density: {
8
+ enable: true,
9
+ },
10
+ },
11
+ color: {
12
+ value: "lch(63.94% 33.1 0.67)",
13
+ animation: {
14
+ enable: true,
15
+ speed: 20,
16
+ sync: true,
17
+ },
18
+ },
19
+ shape: {
20
+ type: "circle",
21
+ },
22
+ opacity: {
23
+ value: 0.5,
24
+ },
25
+ size: {
26
+ value: {
27
+ min: 1,
28
+ max: 3,
29
+ },
30
+ },
31
+ links: {
32
+ enable: true,
33
+ distance: 150,
34
+ color: "#ffffff",
35
+ opacity: 0.4,
36
+ width: 1,
37
+ },
38
+ move: {
39
+ enable: true,
40
+ speed: 6,
41
+ },
42
+ },
43
+ interactivity: {
44
+ events: {
45
+ onHover: {
46
+ enable: true,
47
+ mode: "repulse",
48
+ },
49
+ onClick: {
50
+ enable: true,
51
+ mode: "push",
52
+ },
53
+ },
54
+ modes: {
55
+ repulse: {
56
+ distance: 200,
57
+ },
58
+ push: {
59
+ quantity: 4,
60
+ },
61
+ },
62
+ },
63
+ background: {
64
+ color: "#000000",
65
+ },
66
+ };
67
+ export default options;
@@ -1,3 +1,4 @@
1
+ import namedColors from "./namedColors.js";
1
2
  import nasa from "./nasa.js";
2
3
  import noClear from "./noClear.js";
3
4
  import noConfig from "./noConfig.js";
@@ -5,6 +6,7 @@ import noisePlanes from "./noisePlanes.js";
5
6
  import nyancat from "./nyancat.js";
6
7
  import nyancat2 from "./nyancat2.js";
7
8
  export default {
9
+ namedColors,
8
10
  nasa,
9
11
  noClear,
10
12
  noConfig,
@@ -0,0 +1,55 @@
1
+ const options = {
2
+ key: "namedColors",
3
+ name: "Named Colors",
4
+ particles: {
5
+ number: {
6
+ value: 80,
7
+ density: {
8
+ enable: true,
9
+ },
10
+ },
11
+ color: {
12
+ value: ["aqua", "deepskyblue", "firebrick", "khaki"],
13
+ },
14
+ shape: {
15
+ type: "circle",
16
+ },
17
+ opacity: {
18
+ value: 1,
19
+ },
20
+ size: {
21
+ value: {
22
+ min: 3,
23
+ max: 7,
24
+ },
25
+ },
26
+ move: {
27
+ enable: true,
28
+ speed: 6,
29
+ },
30
+ },
31
+ interactivity: {
32
+ events: {
33
+ onHover: {
34
+ enable: true,
35
+ mode: "repulse",
36
+ },
37
+ onClick: {
38
+ enable: true,
39
+ mode: "push",
40
+ },
41
+ },
42
+ modes: {
43
+ repulse: {
44
+ distance: 200,
45
+ },
46
+ push: {
47
+ quantity: 4,
48
+ },
49
+ },
50
+ },
51
+ background: {
52
+ color: "#000000",
53
+ },
54
+ };
55
+ export default options;
@@ -1,4 +1,6 @@
1
+ import oklch from "./oklch";
1
2
  import orbit from "./orbit.js";
2
3
  export default {
4
+ oklch,
3
5
  orbit,
4
6
  };
@@ -0,0 +1,67 @@
1
+ const options = {
2
+ key: "oklch",
3
+ name: "OKLCH",
4
+ particles: {
5
+ number: {
6
+ value: 80,
7
+ density: {
8
+ enable: true,
9
+ },
10
+ },
11
+ color: {
12
+ value: "oklch(70% 0.1 266)",
13
+ animation: {
14
+ enable: true,
15
+ speed: 20,
16
+ sync: true,
17
+ },
18
+ },
19
+ shape: {
20
+ type: "circle",
21
+ },
22
+ opacity: {
23
+ value: 0.5,
24
+ },
25
+ size: {
26
+ value: {
27
+ min: 1,
28
+ max: 3,
29
+ },
30
+ },
31
+ links: {
32
+ enable: true,
33
+ distance: 150,
34
+ color: "#ffffff",
35
+ opacity: 0.4,
36
+ width: 1,
37
+ },
38
+ move: {
39
+ enable: true,
40
+ speed: 6,
41
+ },
42
+ },
43
+ interactivity: {
44
+ events: {
45
+ onHover: {
46
+ enable: true,
47
+ mode: "repulse",
48
+ },
49
+ onClick: {
50
+ enable: true,
51
+ mode: "push",
52
+ },
53
+ },
54
+ modes: {
55
+ repulse: {
56
+ distance: 200,
57
+ },
58
+ push: {
59
+ quantity: 4,
60
+ },
61
+ },
62
+ },
63
+ background: {
64
+ color: "#000000",
65
+ },
66
+ };
67
+ export default options;
package/cjs/l/index.js CHANGED
@@ -3,11 +3,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
+ const lch_js_1 = __importDefault(require("./lch.js"));
6
7
  const life_js_1 = __importDefault(require("./life.js"));
7
8
  const lightHover_js_1 = __importDefault(require("./lightHover.js"));
8
9
  const linkTriangles_js_1 = __importDefault(require("./linkTriangles.js"));
9
10
  const localPolygonMask_js_1 = __importDefault(require("./localPolygonMask.js"));
10
11
  exports.default = {
12
+ lch: lch_js_1.default,
11
13
  life: life_js_1.default,
12
14
  lightHover: lightHover_js_1.default,
13
15
  linkTriangles: linkTriangles_js_1.default,
package/cjs/l/lch.js ADDED
@@ -0,0 +1,69 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const options = {
4
+ key: "lch",
5
+ name: "LCH",
6
+ particles: {
7
+ number: {
8
+ value: 80,
9
+ density: {
10
+ enable: true,
11
+ },
12
+ },
13
+ color: {
14
+ value: "lch(63.94% 33.1 0.67)",
15
+ animation: {
16
+ enable: true,
17
+ speed: 20,
18
+ sync: true,
19
+ },
20
+ },
21
+ shape: {
22
+ type: "circle",
23
+ },
24
+ opacity: {
25
+ value: 0.5,
26
+ },
27
+ size: {
28
+ value: {
29
+ min: 1,
30
+ max: 3,
31
+ },
32
+ },
33
+ links: {
34
+ enable: true,
35
+ distance: 150,
36
+ color: "#ffffff",
37
+ opacity: 0.4,
38
+ width: 1,
39
+ },
40
+ move: {
41
+ enable: true,
42
+ speed: 6,
43
+ },
44
+ },
45
+ interactivity: {
46
+ events: {
47
+ onHover: {
48
+ enable: true,
49
+ mode: "repulse",
50
+ },
51
+ onClick: {
52
+ enable: true,
53
+ mode: "push",
54
+ },
55
+ },
56
+ modes: {
57
+ repulse: {
58
+ distance: 200,
59
+ },
60
+ push: {
61
+ quantity: 4,
62
+ },
63
+ },
64
+ },
65
+ background: {
66
+ color: "#000000",
67
+ },
68
+ };
69
+ exports.default = options;
package/cjs/n/index.js CHANGED
@@ -3,6 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
+ const namedColors_js_1 = __importDefault(require("./namedColors.js"));
6
7
  const nasa_js_1 = __importDefault(require("./nasa.js"));
7
8
  const noClear_js_1 = __importDefault(require("./noClear.js"));
8
9
  const noConfig_js_1 = __importDefault(require("./noConfig.js"));
@@ -10,6 +11,7 @@ const noisePlanes_js_1 = __importDefault(require("./noisePlanes.js"));
10
11
  const nyancat_js_1 = __importDefault(require("./nyancat.js"));
11
12
  const nyancat2_js_1 = __importDefault(require("./nyancat2.js"));
12
13
  exports.default = {
14
+ namedColors: namedColors_js_1.default,
13
15
  nasa: nasa_js_1.default,
14
16
  noClear: noClear_js_1.default,
15
17
  noConfig: noConfig_js_1.default,
@@ -0,0 +1,57 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const options = {
4
+ key: "namedColors",
5
+ name: "Named Colors",
6
+ particles: {
7
+ number: {
8
+ value: 80,
9
+ density: {
10
+ enable: true,
11
+ },
12
+ },
13
+ color: {
14
+ value: ["aqua", "deepskyblue", "firebrick", "khaki"],
15
+ },
16
+ shape: {
17
+ type: "circle",
18
+ },
19
+ opacity: {
20
+ value: 1,
21
+ },
22
+ size: {
23
+ value: {
24
+ min: 3,
25
+ max: 7,
26
+ },
27
+ },
28
+ move: {
29
+ enable: true,
30
+ speed: 6,
31
+ },
32
+ },
33
+ interactivity: {
34
+ events: {
35
+ onHover: {
36
+ enable: true,
37
+ mode: "repulse",
38
+ },
39
+ onClick: {
40
+ enable: true,
41
+ mode: "push",
42
+ },
43
+ },
44
+ modes: {
45
+ repulse: {
46
+ distance: 200,
47
+ },
48
+ push: {
49
+ quantity: 4,
50
+ },
51
+ },
52
+ },
53
+ background: {
54
+ color: "#000000",
55
+ },
56
+ };
57
+ exports.default = options;
package/cjs/o/index.js CHANGED
@@ -3,7 +3,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
+ const oklch_1 = __importDefault(require("./oklch"));
6
7
  const orbit_js_1 = __importDefault(require("./orbit.js"));
7
8
  exports.default = {
9
+ oklch: oklch_1.default,
8
10
  orbit: orbit_js_1.default,
9
11
  };
package/cjs/o/oklch.js ADDED
@@ -0,0 +1,69 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const options = {
4
+ key: "oklch",
5
+ name: "OKLCH",
6
+ particles: {
7
+ number: {
8
+ value: 80,
9
+ density: {
10
+ enable: true,
11
+ },
12
+ },
13
+ color: {
14
+ value: "oklch(70% 0.1 266)",
15
+ animation: {
16
+ enable: true,
17
+ speed: 20,
18
+ sync: true,
19
+ },
20
+ },
21
+ shape: {
22
+ type: "circle",
23
+ },
24
+ opacity: {
25
+ value: 0.5,
26
+ },
27
+ size: {
28
+ value: {
29
+ min: 1,
30
+ max: 3,
31
+ },
32
+ },
33
+ links: {
34
+ enable: true,
35
+ distance: 150,
36
+ color: "#ffffff",
37
+ opacity: 0.4,
38
+ width: 1,
39
+ },
40
+ move: {
41
+ enable: true,
42
+ speed: 6,
43
+ },
44
+ },
45
+ interactivity: {
46
+ events: {
47
+ onHover: {
48
+ enable: true,
49
+ mode: "repulse",
50
+ },
51
+ onClick: {
52
+ enable: true,
53
+ mode: "push",
54
+ },
55
+ },
56
+ modes: {
57
+ repulse: {
58
+ distance: 200,
59
+ },
60
+ push: {
61
+ quantity: 4,
62
+ },
63
+ },
64
+ },
65
+ background: {
66
+ color: "#000000",
67
+ },
68
+ };
69
+ exports.default = options;
package/esm/l/index.js CHANGED
@@ -1,8 +1,10 @@
1
+ import lch from "./lch.js";
1
2
  import life from "./life.js";
2
3
  import lightHover from "./lightHover.js";
3
4
  import linkTriangles from "./linkTriangles.js";
4
5
  import localPolygonMask from "./localPolygonMask.js";
5
6
  export default {
7
+ lch,
6
8
  life,
7
9
  lightHover,
8
10
  linkTriangles,
package/esm/l/lch.js ADDED
@@ -0,0 +1,67 @@
1
+ const options = {
2
+ key: "lch",
3
+ name: "LCH",
4
+ particles: {
5
+ number: {
6
+ value: 80,
7
+ density: {
8
+ enable: true,
9
+ },
10
+ },
11
+ color: {
12
+ value: "lch(63.94% 33.1 0.67)",
13
+ animation: {
14
+ enable: true,
15
+ speed: 20,
16
+ sync: true,
17
+ },
18
+ },
19
+ shape: {
20
+ type: "circle",
21
+ },
22
+ opacity: {
23
+ value: 0.5,
24
+ },
25
+ size: {
26
+ value: {
27
+ min: 1,
28
+ max: 3,
29
+ },
30
+ },
31
+ links: {
32
+ enable: true,
33
+ distance: 150,
34
+ color: "#ffffff",
35
+ opacity: 0.4,
36
+ width: 1,
37
+ },
38
+ move: {
39
+ enable: true,
40
+ speed: 6,
41
+ },
42
+ },
43
+ interactivity: {
44
+ events: {
45
+ onHover: {
46
+ enable: true,
47
+ mode: "repulse",
48
+ },
49
+ onClick: {
50
+ enable: true,
51
+ mode: "push",
52
+ },
53
+ },
54
+ modes: {
55
+ repulse: {
56
+ distance: 200,
57
+ },
58
+ push: {
59
+ quantity: 4,
60
+ },
61
+ },
62
+ },
63
+ background: {
64
+ color: "#000000",
65
+ },
66
+ };
67
+ export default options;
package/esm/n/index.js CHANGED
@@ -1,3 +1,4 @@
1
+ import namedColors from "./namedColors.js";
1
2
  import nasa from "./nasa.js";
2
3
  import noClear from "./noClear.js";
3
4
  import noConfig from "./noConfig.js";
@@ -5,6 +6,7 @@ import noisePlanes from "./noisePlanes.js";
5
6
  import nyancat from "./nyancat.js";
6
7
  import nyancat2 from "./nyancat2.js";
7
8
  export default {
9
+ namedColors,
8
10
  nasa,
9
11
  noClear,
10
12
  noConfig,
@@ -0,0 +1,55 @@
1
+ const options = {
2
+ key: "namedColors",
3
+ name: "Named Colors",
4
+ particles: {
5
+ number: {
6
+ value: 80,
7
+ density: {
8
+ enable: true,
9
+ },
10
+ },
11
+ color: {
12
+ value: ["aqua", "deepskyblue", "firebrick", "khaki"],
13
+ },
14
+ shape: {
15
+ type: "circle",
16
+ },
17
+ opacity: {
18
+ value: 1,
19
+ },
20
+ size: {
21
+ value: {
22
+ min: 3,
23
+ max: 7,
24
+ },
25
+ },
26
+ move: {
27
+ enable: true,
28
+ speed: 6,
29
+ },
30
+ },
31
+ interactivity: {
32
+ events: {
33
+ onHover: {
34
+ enable: true,
35
+ mode: "repulse",
36
+ },
37
+ onClick: {
38
+ enable: true,
39
+ mode: "push",
40
+ },
41
+ },
42
+ modes: {
43
+ repulse: {
44
+ distance: 200,
45
+ },
46
+ push: {
47
+ quantity: 4,
48
+ },
49
+ },
50
+ },
51
+ background: {
52
+ color: "#000000",
53
+ },
54
+ };
55
+ export default options;
package/esm/o/index.js CHANGED
@@ -1,4 +1,6 @@
1
+ import oklch from "./oklch";
1
2
  import orbit from "./orbit.js";
2
3
  export default {
4
+ oklch,
3
5
  orbit,
4
6
  };
package/esm/o/oklch.js ADDED
@@ -0,0 +1,67 @@
1
+ const options = {
2
+ key: "oklch",
3
+ name: "OKLCH",
4
+ particles: {
5
+ number: {
6
+ value: 80,
7
+ density: {
8
+ enable: true,
9
+ },
10
+ },
11
+ color: {
12
+ value: "oklch(70% 0.1 266)",
13
+ animation: {
14
+ enable: true,
15
+ speed: 20,
16
+ sync: true,
17
+ },
18
+ },
19
+ shape: {
20
+ type: "circle",
21
+ },
22
+ opacity: {
23
+ value: 0.5,
24
+ },
25
+ size: {
26
+ value: {
27
+ min: 1,
28
+ max: 3,
29
+ },
30
+ },
31
+ links: {
32
+ enable: true,
33
+ distance: 150,
34
+ color: "#ffffff",
35
+ opacity: 0.4,
36
+ width: 1,
37
+ },
38
+ move: {
39
+ enable: true,
40
+ speed: 6,
41
+ },
42
+ },
43
+ interactivity: {
44
+ events: {
45
+ onHover: {
46
+ enable: true,
47
+ mode: "repulse",
48
+ },
49
+ onClick: {
50
+ enable: true,
51
+ mode: "push",
52
+ },
53
+ },
54
+ modes: {
55
+ repulse: {
56
+ distance: 200,
57
+ },
58
+ push: {
59
+ quantity: 4,
60
+ },
61
+ },
62
+ },
63
+ background: {
64
+ color: "#000000",
65
+ },
66
+ };
67
+ export default options;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsparticles/configs",
3
- "version": "3.6.0-beta.1",
3
+ "version": "3.7.0",
4
4
  "description": "tsParticles demo configurations",
5
5
  "homepage": "https://particles.js.org",
6
6
  "repository": {
@@ -99,7 +99,7 @@
99
99
  "./package.json": "./package.json"
100
100
  },
101
101
  "dependencies": {
102
- "@tsparticles/engine": "^3.6.0-beta.1"
102
+ "@tsparticles/engine": "3.7.0"
103
103
  },
104
104
  "publishConfig": {
105
105
  "access": "public"