tsparticles 2.0.3 → 2.0.4
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/107.js +1 -1
- package/index.js +3 -1
- package/package.json +11 -10
- package/report.html +2 -2
- package/tsparticles.bundle.js +3471 -3225
- package/tsparticles.bundle.min.js +2 -2
- package/tsparticles.js +116 -45
- package/tsparticles.min.js +2 -2
package/107.js
CHANGED
|
@@ -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
|
-
* v2.0.
|
|
7
|
+
* v2.0.4
|
|
8
8
|
*/
|
|
9
9
|
"use strict";
|
|
10
10
|
(this["webpackChunktsparticles"] = this["webpackChunktsparticles"] || []).push([[107],{
|
package/index.js
CHANGED
|
@@ -14,12 +14,14 @@ import { loadPolygonMaskPlugin } from "tsparticles-plugin-polygon-mask";
|
|
|
14
14
|
import { loadRollUpdater } from "tsparticles-updater-roll";
|
|
15
15
|
import { loadSlim } from "tsparticles-slim";
|
|
16
16
|
import { loadTiltUpdater } from "tsparticles-updater-tilt";
|
|
17
|
+
import { loadTwinkleUpdater } from "tsparticles-updater-twinkle";
|
|
17
18
|
import { loadWobbleUpdater } from "tsparticles-updater-wobble";
|
|
18
19
|
export function loadFull(engine) {
|
|
19
20
|
return __awaiter(this, void 0, void 0, function* () {
|
|
20
21
|
yield loadSlim(engine);
|
|
21
|
-
yield loadTiltUpdater(engine);
|
|
22
22
|
yield loadRollUpdater(engine);
|
|
23
|
+
yield loadTiltUpdater(engine);
|
|
24
|
+
yield loadTwinkleUpdater(engine);
|
|
23
25
|
yield loadWobbleUpdater(engine);
|
|
24
26
|
yield loadExternalTrailInteraction(engine);
|
|
25
27
|
yield loadAbsorbersPlugin(engine);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tsparticles",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.4",
|
|
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": {
|
|
@@ -63,14 +63,15 @@
|
|
|
63
63
|
"browser": "index.js",
|
|
64
64
|
"types": "index.d.ts",
|
|
65
65
|
"dependencies": {
|
|
66
|
-
"tsparticles-engine": "^2.0.
|
|
67
|
-
"tsparticles-interaction-external-trail": "^2.0.
|
|
68
|
-
"tsparticles-plugin-absorbers": "^2.0.
|
|
69
|
-
"tsparticles-plugin-emitters": "^2.0.
|
|
70
|
-
"tsparticles-plugin-polygon-mask": "^2.0.
|
|
71
|
-
"tsparticles-slim": "^2.0.
|
|
72
|
-
"tsparticles-updater-roll": "^2.0.
|
|
73
|
-
"tsparticles-updater-tilt": "^2.0.
|
|
74
|
-
"tsparticles-updater-
|
|
66
|
+
"tsparticles-engine": "^2.0.4",
|
|
67
|
+
"tsparticles-interaction-external-trail": "^2.0.4",
|
|
68
|
+
"tsparticles-plugin-absorbers": "^2.0.4",
|
|
69
|
+
"tsparticles-plugin-emitters": "^2.0.4",
|
|
70
|
+
"tsparticles-plugin-polygon-mask": "^2.0.4",
|
|
71
|
+
"tsparticles-slim": "^2.0.4",
|
|
72
|
+
"tsparticles-updater-roll": "^2.0.4",
|
|
73
|
+
"tsparticles-updater-tilt": "^2.0.4",
|
|
74
|
+
"tsparticles-updater-twinkle": "^2.0.4",
|
|
75
|
+
"tsparticles-updater-wobble": "^2.0.4"
|
|
75
76
|
}
|
|
76
77
|
}
|