@tsparticles/basic 3.7.1 → 3.8.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.
- package/browser/index.js +1 -2
- package/cjs/index.js +1 -2
- package/esm/index.js +1 -2
- package/package.json +11 -11
- package/report.html +1 -1
- package/tsparticles.basic.bundle.js +32 -32
- package/tsparticles.basic.bundle.min.js +1 -1
- package/tsparticles.basic.bundle.min.js.LICENSE.txt +1 -1
- package/tsparticles.basic.js +6 -16
- package/tsparticles.basic.min.js +1 -1
- package/tsparticles.basic.min.js.LICENSE.txt +1 -1
- package/umd/index.js +2 -3
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! tsParticles Basic v3.
|
|
1
|
+
/*! tsParticles Basic v3.8.0 by Matteo Bruni */
|
package/umd/index.js
CHANGED
|
@@ -4,13 +4,12 @@
|
|
|
4
4
|
if (v !== undefined) module.exports = v;
|
|
5
5
|
}
|
|
6
6
|
else if (typeof define === "function" && define.amd) {
|
|
7
|
-
define(["require", "exports", "@tsparticles/
|
|
7
|
+
define(["require", "exports", "@tsparticles/move-base", "@tsparticles/shape-circle", "@tsparticles/updater-color", "@tsparticles/plugin-hex-color", "@tsparticles/plugin-hsl-color", "@tsparticles/updater-opacity", "@tsparticles/updater-out-modes", "@tsparticles/plugin-rgb-color", "@tsparticles/updater-size"], factory);
|
|
8
8
|
}
|
|
9
9
|
})(function (require, exports) {
|
|
10
10
|
"use strict";
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
12
|
exports.loadBasic = loadBasic;
|
|
13
|
-
const engine_1 = require("@tsparticles/engine");
|
|
14
13
|
const move_base_1 = require("@tsparticles/move-base");
|
|
15
14
|
const shape_circle_1 = require("@tsparticles/shape-circle");
|
|
16
15
|
const updater_color_1 = require("@tsparticles/updater-color");
|
|
@@ -21,7 +20,7 @@
|
|
|
21
20
|
const plugin_rgb_color_1 = require("@tsparticles/plugin-rgb-color");
|
|
22
21
|
const updater_size_1 = require("@tsparticles/updater-size");
|
|
23
22
|
async function loadBasic(engine, refresh = true) {
|
|
24
|
-
|
|
23
|
+
engine.checkVersion("3.8.0");
|
|
25
24
|
await (0, plugin_hex_color_1.loadHexColorPlugin)(engine, false);
|
|
26
25
|
await (0, plugin_hsl_color_1.loadHslColorPlugin)(engine, false);
|
|
27
26
|
await (0, plugin_rgb_color_1.loadRgbColorPlugin)(engine, false);
|