@tsparticles/basic 3.9.0 → 4.0.0-alpha.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/182.min.js +2 -0
- package/182.min.js.LICENSE.txt +1 -0
- package/204.min.js +2 -0
- package/204.min.js.LICENSE.txt +1 -0
- package/241.min.js +2 -0
- package/241.min.js.LICENSE.txt +1 -0
- package/303.min.js +2 -0
- package/303.min.js.LICENSE.txt +1 -0
- package/309.min.js +2 -0
- package/309.min.js.LICENSE.txt +1 -0
- package/321.min.js +2 -0
- package/321.min.js.LICENSE.txt +1 -0
- package/416.min.js +2 -0
- package/416.min.js.LICENSE.txt +1 -0
- package/420.min.js +2 -0
- package/420.min.js.LICENSE.txt +1 -0
- package/440.min.js +2 -0
- package/440.min.js.LICENSE.txt +1 -0
- package/491.min.js +2 -0
- package/491.min.js.LICENSE.txt +1 -0
- package/493.min.js +2 -0
- package/493.min.js.LICENSE.txt +1 -0
- package/561.min.js +2 -0
- package/561.min.js.LICENSE.txt +1 -0
- package/571.min.js +2 -0
- package/571.min.js.LICENSE.txt +1 -0
- package/606.min.js +2 -0
- package/606.min.js.LICENSE.txt +1 -0
- package/620.min.js +2 -0
- package/620.min.js.LICENSE.txt +1 -0
- package/704.min.js +2 -0
- package/704.min.js.LICENSE.txt +1 -0
- package/869.min.js +2 -0
- package/869.min.js.LICENSE.txt +1 -0
- package/885.min.js +2 -0
- package/885.min.js.LICENSE.txt +1 -0
- package/907.min.js +2 -0
- package/907.min.js.LICENSE.txt +1 -0
- package/browser/bundle.js +1 -1
- package/browser/index.js +14 -21
- package/cjs/bundle.js +3 -20
- package/cjs/index.js +14 -24
- package/engine_dist_browser_Core_Container_js.js +100 -0
- package/esm/bundle.js +1 -1
- package/esm/index.js +14 -21
- package/move_base_dist_browser_BaseMover_js.js +40 -0
- package/move_base_dist_browser_index_js.js +30 -0
- package/package.json +13 -12
- package/plugins_colors_hex_dist_browser_HexColorManager_js.js +30 -0
- package/plugins_colors_hex_dist_browser_index_js.js +30 -0
- package/plugins_colors_hsl_dist_browser_HslColorManager_js.js +30 -0
- package/plugins_colors_hsl_dist_browser_index_js.js +30 -0
- package/plugins_colors_rgb_dist_browser_RgbColorManager_js.js +30 -0
- package/plugins_colors_rgb_dist_browser_index_js.js +30 -0
- package/report.html +5 -4
- package/shapes_circle_dist_browser_CircleDrawer_js.js +40 -0
- package/shapes_circle_dist_browser_index_js.js +30 -0
- package/tsparticles.basic.bundle.js +500 -1709
- package/tsparticles.basic.bundle.min.js +1 -1
- package/tsparticles.basic.bundle.min.js.LICENSE.txt +1 -1
- package/tsparticles.basic.js +68 -44
- package/tsparticles.basic.min.js +1 -1
- package/tsparticles.basic.min.js.LICENSE.txt +1 -1
- package/types/bundle.d.ts +1 -1
- package/types/index.d.ts +1 -1
- package/umd/bundle.js +3 -3
- package/umd/index.js +49 -22
- package/updaters_color_dist_browser_ColorUpdater_js.js +30 -0
- package/updaters_color_dist_browser_index_js.js +30 -0
- package/updaters_opacity_dist_browser_OpacityUpdater_js.js +30 -0
- package/updaters_opacity_dist_browser_index_js.js +30 -0
- package/updaters_outModes_dist_browser_OutOfCanvasUpdater_js.js +80 -0
- package/updaters_outModes_dist_browser_index_js.js +30 -0
- package/updaters_size_dist_browser_SizeUpdater_js.js +30 -0
- package/updaters_size_dist_browser_index_js.js +30 -0
package/tsparticles.basic.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
|
-
*
|
|
7
|
+
* v4.0.0-alpha.0
|
|
8
8
|
*/
|
|
9
9
|
/*
|
|
10
10
|
* ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
|
|
@@ -16,117 +16,117 @@
|
|
|
16
16
|
*/
|
|
17
17
|
(function webpackUniversalModuleDefinition(root, factory) {
|
|
18
18
|
if(typeof exports === 'object' && typeof module === 'object')
|
|
19
|
-
module.exports = factory(require("@tsparticles/
|
|
19
|
+
module.exports = factory(require("@tsparticles/updater-size"), require("@tsparticles/updater-out-modes"), require("@tsparticles/updater-opacity"), require("@tsparticles/updater-color"), require("@tsparticles/shape-circle"), require("@tsparticles/move-base"), require("@tsparticles/plugin-rgb-color"), require("@tsparticles/plugin-hsl-color"), require("@tsparticles/plugin-hex-color"));
|
|
20
20
|
else if(typeof define === 'function' && define.amd)
|
|
21
|
-
define(["@tsparticles/
|
|
21
|
+
define(["@tsparticles/updater-size", "@tsparticles/updater-out-modes", "@tsparticles/updater-opacity", "@tsparticles/updater-color", "@tsparticles/shape-circle", "@tsparticles/move-base", "@tsparticles/plugin-rgb-color", "@tsparticles/plugin-hsl-color", "@tsparticles/plugin-hex-color"], factory);
|
|
22
22
|
else {
|
|
23
|
-
var a = typeof exports === 'object' ? factory(require("@tsparticles/
|
|
23
|
+
var a = typeof exports === 'object' ? factory(require("@tsparticles/updater-size"), require("@tsparticles/updater-out-modes"), require("@tsparticles/updater-opacity"), require("@tsparticles/updater-color"), require("@tsparticles/shape-circle"), require("@tsparticles/move-base"), require("@tsparticles/plugin-rgb-color"), require("@tsparticles/plugin-hsl-color"), require("@tsparticles/plugin-hex-color")) : factory(root["window"], root["window"], root["window"], root["window"], root["window"], root["window"], root["window"], root["window"], root["window"]);
|
|
24
24
|
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
|
25
25
|
}
|
|
26
|
-
})(this, (
|
|
26
|
+
})(this, (__WEBPACK_EXTERNAL_MODULE__tsparticles_updater_size__, __WEBPACK_EXTERNAL_MODULE__tsparticles_updater_out_modes__, __WEBPACK_EXTERNAL_MODULE__tsparticles_updater_opacity__, __WEBPACK_EXTERNAL_MODULE__tsparticles_updater_color__, __WEBPACK_EXTERNAL_MODULE__tsparticles_shape_circle__, __WEBPACK_EXTERNAL_MODULE__tsparticles_move_base__, __WEBPACK_EXTERNAL_MODULE__tsparticles_plugin_rgb_color__, __WEBPACK_EXTERNAL_MODULE__tsparticles_plugin_hsl_color__, __WEBPACK_EXTERNAL_MODULE__tsparticles_plugin_hex_color__) => {
|
|
27
27
|
return /******/ (() => { // webpackBootstrap
|
|
28
28
|
/******/ "use strict";
|
|
29
29
|
/******/ var __webpack_modules__ = ({
|
|
30
30
|
|
|
31
|
-
/***/ "./dist/browser/index.js"
|
|
31
|
+
/***/ "./dist/browser/index.js"
|
|
32
32
|
/*!*******************************!*\
|
|
33
33
|
!*** ./dist/browser/index.js ***!
|
|
34
34
|
\*******************************/
|
|
35
|
-
|
|
35
|
+
(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
36
36
|
|
|
37
|
-
eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ loadBasic: () => (/* binding */ loadBasic)\n/* harmony export */ });\
|
|
37
|
+
eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ loadBasic: () => (/* binding */ loadBasic)\n/* harmony export */ });\nfunction loadBasic(engine) {\n engine.checkVersion(\"4.0.0-alpha.0\");\n engine.register(async e => {\n const {\n loadHexColorPlugin\n } = await Promise.resolve(/*! import() */).then(__webpack_require__.t.bind(__webpack_require__, /*! @tsparticles/plugin-hex-color */ \"@tsparticles/plugin-hex-color\", 19)),\n {\n loadHslColorPlugin\n } = await Promise.resolve(/*! import() */).then(__webpack_require__.t.bind(__webpack_require__, /*! @tsparticles/plugin-hsl-color */ \"@tsparticles/plugin-hsl-color\", 19)),\n {\n loadRgbColorPlugin\n } = await Promise.resolve(/*! import() */).then(__webpack_require__.t.bind(__webpack_require__, /*! @tsparticles/plugin-rgb-color */ \"@tsparticles/plugin-rgb-color\", 19)),\n {\n loadBaseMover\n } = await Promise.resolve(/*! import() */).then(__webpack_require__.t.bind(__webpack_require__, /*! @tsparticles/move-base */ \"@tsparticles/move-base\", 19)),\n {\n loadCircleShape\n } = await Promise.resolve(/*! import() */).then(__webpack_require__.t.bind(__webpack_require__, /*! @tsparticles/shape-circle */ \"@tsparticles/shape-circle\", 19)),\n {\n loadColorUpdater\n } = await Promise.resolve(/*! import() */).then(__webpack_require__.t.bind(__webpack_require__, /*! @tsparticles/updater-color */ \"@tsparticles/updater-color\", 19)),\n {\n loadOpacityUpdater\n } = await Promise.resolve(/*! import() */).then(__webpack_require__.t.bind(__webpack_require__, /*! @tsparticles/updater-opacity */ \"@tsparticles/updater-opacity\", 19)),\n {\n loadOutModesUpdater\n } = await Promise.resolve(/*! import() */).then(__webpack_require__.t.bind(__webpack_require__, /*! @tsparticles/updater-out-modes */ \"@tsparticles/updater-out-modes\", 19)),\n {\n loadSizeUpdater\n } = await Promise.resolve(/*! import() */).then(__webpack_require__.t.bind(__webpack_require__, /*! @tsparticles/updater-size */ \"@tsparticles/updater-size\", 19));\n loadHexColorPlugin(e);\n loadHslColorPlugin(e);\n loadRgbColorPlugin(e);\n loadBaseMover(e);\n loadCircleShape(e);\n loadColorUpdater(e);\n loadOpacityUpdater(e);\n loadOutModesUpdater(e);\n loadSizeUpdater(e);\n });\n}\n\n//# sourceURL=webpack://@tsparticles/basic/./dist/browser/index.js?\n}");
|
|
38
38
|
|
|
39
|
-
/***/ }
|
|
39
|
+
/***/ },
|
|
40
40
|
|
|
41
|
-
/***/ "@tsparticles/move-base"
|
|
41
|
+
/***/ "@tsparticles/move-base"
|
|
42
42
|
/*!******************************************************************************************************************************************!*\
|
|
43
43
|
!*** external {"commonjs":"@tsparticles/move-base","commonjs2":"@tsparticles/move-base","amd":"@tsparticles/move-base","root":"window"} ***!
|
|
44
44
|
\******************************************************************************************************************************************/
|
|
45
|
-
|
|
45
|
+
(module) {
|
|
46
46
|
|
|
47
47
|
module.exports = __WEBPACK_EXTERNAL_MODULE__tsparticles_move_base__;
|
|
48
48
|
|
|
49
|
-
/***/ }
|
|
49
|
+
/***/ },
|
|
50
50
|
|
|
51
|
-
/***/ "@tsparticles/plugin-hex-color"
|
|
51
|
+
/***/ "@tsparticles/plugin-hex-color"
|
|
52
52
|
/*!***************************************************************************************************************************************************************!*\
|
|
53
53
|
!*** external {"commonjs":"@tsparticles/plugin-hex-color","commonjs2":"@tsparticles/plugin-hex-color","amd":"@tsparticles/plugin-hex-color","root":"window"} ***!
|
|
54
54
|
\***************************************************************************************************************************************************************/
|
|
55
|
-
|
|
55
|
+
(module) {
|
|
56
56
|
|
|
57
57
|
module.exports = __WEBPACK_EXTERNAL_MODULE__tsparticles_plugin_hex_color__;
|
|
58
58
|
|
|
59
|
-
/***/ }
|
|
59
|
+
/***/ },
|
|
60
60
|
|
|
61
|
-
/***/ "@tsparticles/plugin-hsl-color"
|
|
61
|
+
/***/ "@tsparticles/plugin-hsl-color"
|
|
62
62
|
/*!***************************************************************************************************************************************************************!*\
|
|
63
63
|
!*** external {"commonjs":"@tsparticles/plugin-hsl-color","commonjs2":"@tsparticles/plugin-hsl-color","amd":"@tsparticles/plugin-hsl-color","root":"window"} ***!
|
|
64
64
|
\***************************************************************************************************************************************************************/
|
|
65
|
-
|
|
65
|
+
(module) {
|
|
66
66
|
|
|
67
67
|
module.exports = __WEBPACK_EXTERNAL_MODULE__tsparticles_plugin_hsl_color__;
|
|
68
68
|
|
|
69
|
-
/***/ }
|
|
69
|
+
/***/ },
|
|
70
70
|
|
|
71
|
-
/***/ "@tsparticles/plugin-rgb-color"
|
|
71
|
+
/***/ "@tsparticles/plugin-rgb-color"
|
|
72
72
|
/*!***************************************************************************************************************************************************************!*\
|
|
73
73
|
!*** external {"commonjs":"@tsparticles/plugin-rgb-color","commonjs2":"@tsparticles/plugin-rgb-color","amd":"@tsparticles/plugin-rgb-color","root":"window"} ***!
|
|
74
74
|
\***************************************************************************************************************************************************************/
|
|
75
|
-
|
|
75
|
+
(module) {
|
|
76
76
|
|
|
77
77
|
module.exports = __WEBPACK_EXTERNAL_MODULE__tsparticles_plugin_rgb_color__;
|
|
78
78
|
|
|
79
|
-
/***/ }
|
|
79
|
+
/***/ },
|
|
80
80
|
|
|
81
|
-
/***/ "@tsparticles/shape-circle"
|
|
81
|
+
/***/ "@tsparticles/shape-circle"
|
|
82
82
|
/*!***************************************************************************************************************************************************!*\
|
|
83
83
|
!*** external {"commonjs":"@tsparticles/shape-circle","commonjs2":"@tsparticles/shape-circle","amd":"@tsparticles/shape-circle","root":"window"} ***!
|
|
84
84
|
\***************************************************************************************************************************************************/
|
|
85
|
-
|
|
85
|
+
(module) {
|
|
86
86
|
|
|
87
87
|
module.exports = __WEBPACK_EXTERNAL_MODULE__tsparticles_shape_circle__;
|
|
88
88
|
|
|
89
|
-
/***/ }
|
|
89
|
+
/***/ },
|
|
90
90
|
|
|
91
|
-
/***/ "@tsparticles/updater-color"
|
|
91
|
+
/***/ "@tsparticles/updater-color"
|
|
92
92
|
/*!******************************************************************************************************************************************************!*\
|
|
93
93
|
!*** external {"commonjs":"@tsparticles/updater-color","commonjs2":"@tsparticles/updater-color","amd":"@tsparticles/updater-color","root":"window"} ***!
|
|
94
94
|
\******************************************************************************************************************************************************/
|
|
95
|
-
|
|
95
|
+
(module) {
|
|
96
96
|
|
|
97
97
|
module.exports = __WEBPACK_EXTERNAL_MODULE__tsparticles_updater_color__;
|
|
98
98
|
|
|
99
|
-
/***/ }
|
|
99
|
+
/***/ },
|
|
100
100
|
|
|
101
|
-
/***/ "@tsparticles/updater-opacity"
|
|
101
|
+
/***/ "@tsparticles/updater-opacity"
|
|
102
102
|
/*!************************************************************************************************************************************************************!*\
|
|
103
103
|
!*** external {"commonjs":"@tsparticles/updater-opacity","commonjs2":"@tsparticles/updater-opacity","amd":"@tsparticles/updater-opacity","root":"window"} ***!
|
|
104
104
|
\************************************************************************************************************************************************************/
|
|
105
|
-
|
|
105
|
+
(module) {
|
|
106
106
|
|
|
107
107
|
module.exports = __WEBPACK_EXTERNAL_MODULE__tsparticles_updater_opacity__;
|
|
108
108
|
|
|
109
|
-
/***/ }
|
|
109
|
+
/***/ },
|
|
110
110
|
|
|
111
|
-
/***/ "@tsparticles/updater-out-modes"
|
|
111
|
+
/***/ "@tsparticles/updater-out-modes"
|
|
112
112
|
/*!******************************************************************************************************************************************************************!*\
|
|
113
113
|
!*** external {"commonjs":"@tsparticles/updater-out-modes","commonjs2":"@tsparticles/updater-out-modes","amd":"@tsparticles/updater-out-modes","root":"window"} ***!
|
|
114
114
|
\******************************************************************************************************************************************************************/
|
|
115
|
-
|
|
115
|
+
(module) {
|
|
116
116
|
|
|
117
117
|
module.exports = __WEBPACK_EXTERNAL_MODULE__tsparticles_updater_out_modes__;
|
|
118
118
|
|
|
119
|
-
/***/ }
|
|
119
|
+
/***/ },
|
|
120
120
|
|
|
121
|
-
/***/ "@tsparticles/updater-size"
|
|
121
|
+
/***/ "@tsparticles/updater-size"
|
|
122
122
|
/*!***************************************************************************************************************************************************!*\
|
|
123
123
|
!*** external {"commonjs":"@tsparticles/updater-size","commonjs2":"@tsparticles/updater-size","amd":"@tsparticles/updater-size","root":"window"} ***!
|
|
124
124
|
\***************************************************************************************************************************************************/
|
|
125
|
-
|
|
125
|
+
(module) {
|
|
126
126
|
|
|
127
127
|
module.exports = __WEBPACK_EXTERNAL_MODULE__tsparticles_updater_size__;
|
|
128
128
|
|
|
129
|
-
/***/ }
|
|
129
|
+
/***/ }
|
|
130
130
|
|
|
131
131
|
/******/ });
|
|
132
132
|
/************************************************************************/
|
|
@@ -140,6 +140,12 @@ module.exports = __WEBPACK_EXTERNAL_MODULE__tsparticles_updater_size__;
|
|
|
140
140
|
/******/ if (cachedModule !== undefined) {
|
|
141
141
|
/******/ return cachedModule.exports;
|
|
142
142
|
/******/ }
|
|
143
|
+
/******/ // Check if module exists (development only)
|
|
144
|
+
/******/ if (__webpack_modules__[moduleId] === undefined) {
|
|
145
|
+
/******/ var e = new Error("Cannot find module '" + moduleId + "'");
|
|
146
|
+
/******/ e.code = 'MODULE_NOT_FOUND';
|
|
147
|
+
/******/ throw e;
|
|
148
|
+
/******/ }
|
|
143
149
|
/******/ // Create a new module (and put it into the cache)
|
|
144
150
|
/******/ var module = __webpack_module_cache__[moduleId] = {
|
|
145
151
|
/******/ // no module.id needed
|
|
@@ -155,15 +161,33 @@ module.exports = __WEBPACK_EXTERNAL_MODULE__tsparticles_updater_size__;
|
|
|
155
161
|
/******/ }
|
|
156
162
|
/******/
|
|
157
163
|
/************************************************************************/
|
|
158
|
-
/******/ /* webpack/runtime/
|
|
164
|
+
/******/ /* webpack/runtime/create fake namespace object */
|
|
159
165
|
/******/ (() => {
|
|
160
|
-
/******/
|
|
161
|
-
/******/
|
|
162
|
-
/******/
|
|
163
|
-
/******/
|
|
164
|
-
/******/
|
|
165
|
-
/******/
|
|
166
|
-
/******/
|
|
166
|
+
/******/ var getProto = Object.getPrototypeOf ? (obj) => (Object.getPrototypeOf(obj)) : (obj) => (obj.__proto__);
|
|
167
|
+
/******/ var leafPrototypes;
|
|
168
|
+
/******/ // create a fake namespace object
|
|
169
|
+
/******/ // mode & 1: value is a module id, require it
|
|
170
|
+
/******/ // mode & 2: merge all properties of value into the ns
|
|
171
|
+
/******/ // mode & 4: return value when already ns object
|
|
172
|
+
/******/ // mode & 16: return value when it's Promise-like
|
|
173
|
+
/******/ // mode & 8|1: behave like require
|
|
174
|
+
/******/ __webpack_require__.t = function(value, mode) {
|
|
175
|
+
/******/ if(mode & 1) value = this(value);
|
|
176
|
+
/******/ if(mode & 8) return value;
|
|
177
|
+
/******/ if(typeof value === 'object' && value) {
|
|
178
|
+
/******/ if((mode & 4) && value.__esModule) return value;
|
|
179
|
+
/******/ if((mode & 16) && typeof value.then === 'function') return value;
|
|
180
|
+
/******/ }
|
|
181
|
+
/******/ var ns = Object.create(null);
|
|
182
|
+
/******/ __webpack_require__.r(ns);
|
|
183
|
+
/******/ var def = {};
|
|
184
|
+
/******/ leafPrototypes = leafPrototypes || [null, getProto({}), getProto([]), getProto(getProto)];
|
|
185
|
+
/******/ for(var current = mode & 2 && value; (typeof current == 'object' || typeof current == 'function') && !~leafPrototypes.indexOf(current); current = getProto(current)) {
|
|
186
|
+
/******/ Object.getOwnPropertyNames(current).forEach((key) => (def[key] = () => (value[key])));
|
|
187
|
+
/******/ }
|
|
188
|
+
/******/ def['default'] = () => (value);
|
|
189
|
+
/******/ __webpack_require__.d(ns, def);
|
|
190
|
+
/******/ return ns;
|
|
167
191
|
/******/ };
|
|
168
192
|
/******/ })();
|
|
169
193
|
/******/
|
package/tsparticles.basic.min.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/*! For license information please see tsparticles.basic.min.js.LICENSE.txt */
|
|
2
|
-
!function(e,r){if("object"==typeof exports&&"object"==typeof module)module.exports=r(require("@tsparticles/
|
|
2
|
+
!function(e,r){if("object"==typeof exports&&"object"==typeof module)module.exports=r(require("@tsparticles/updater-size"),require("@tsparticles/updater-out-modes"),require("@tsparticles/updater-opacity"),require("@tsparticles/updater-color"),require("@tsparticles/shape-circle"),require("@tsparticles/move-base"),require("@tsparticles/plugin-rgb-color"),require("@tsparticles/plugin-hsl-color"),require("@tsparticles/plugin-hex-color"));else if("function"==typeof define&&define.amd)define(["@tsparticles/updater-size","@tsparticles/updater-out-modes","@tsparticles/updater-opacity","@tsparticles/updater-color","@tsparticles/shape-circle","@tsparticles/move-base","@tsparticles/plugin-rgb-color","@tsparticles/plugin-hsl-color","@tsparticles/plugin-hex-color"],r);else{var t="object"==typeof exports?r(require("@tsparticles/updater-size"),require("@tsparticles/updater-out-modes"),require("@tsparticles/updater-opacity"),require("@tsparticles/updater-color"),require("@tsparticles/shape-circle"),require("@tsparticles/move-base"),require("@tsparticles/plugin-rgb-color"),require("@tsparticles/plugin-hsl-color"),require("@tsparticles/plugin-hex-color")):r(e.window,e.window,e.window,e.window,e.window,e.window,e.window,e.window,e.window);for(var o in t)("object"==typeof exports?exports:e)[o]=t[o]}}(this,((e,r,t,o,i,s,a,l,p)=>(()=>{var n,c,u={116(e){e.exports=o},126(e){e.exports=p},308(e){e.exports=l},394(r){r.exports=e},522(e){e.exports=s},694(e){e.exports=r},872(e){e.exports=a},898(e){e.exports=t},969(e){e.exports=i}},d={};function f(e){var r=d[e];if(void 0!==r)return r.exports;var t=d[e]={exports:{}};return u[e](t,t.exports,f),t.exports}c=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,f.t=function(e,r){if(1&r&&(e=this(e)),8&r)return e;if("object"==typeof e&&e){if(4&r&&e.__esModule)return e;if(16&r&&"function"==typeof e.then)return e}var t=Object.create(null);f.r(t);var o={};n=n||[null,c({}),c([]),c(c)];for(var i=2&r&&e;("object"==typeof i||"function"==typeof i)&&!~n.indexOf(i);i=c(i))Object.getOwnPropertyNames(i).forEach((r=>o[r]=()=>e[r]));return o.default=()=>e,f.d(t,o),t},f.d=(e,r)=>{for(var t in r)f.o(r,t)&&!f.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:r[t]})},f.o=(e,r)=>Object.prototype.hasOwnProperty.call(e,r),f.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var b={};function w(e){e.checkVersion("4.0.0-alpha.0"),e.register((async e=>{const{loadHexColorPlugin:r}=await Promise.resolve().then(f.t.bind(f,126,19)),{loadHslColorPlugin:t}=await Promise.resolve().then(f.t.bind(f,308,19)),{loadRgbColorPlugin:o}=await Promise.resolve().then(f.t.bind(f,872,19)),{loadBaseMover:i}=await Promise.resolve().then(f.t.bind(f,522,19)),{loadCircleShape:s}=await Promise.resolve().then(f.t.bind(f,969,19)),{loadColorUpdater:a}=await Promise.resolve().then(f.t.bind(f,116,19)),{loadOpacityUpdater:l}=await Promise.resolve().then(f.t.bind(f,898,19)),{loadOutModesUpdater:p}=await Promise.resolve().then(f.t.bind(f,694,19)),{loadSizeUpdater:n}=await Promise.resolve().then(f.t.bind(f,394,19));r(e),t(e),o(e),i(e),s(e),a(e),l(e),p(e),n(e)}))}return f.r(b),f.d(b,{loadBasic:()=>w}),b})()));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! tsParticles Basic
|
|
1
|
+
/*! tsParticles Basic v4.0.0-alpha.0 by Matteo Bruni */
|
package/types/bundle.d.ts
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { type Engine } from "@tsparticles/engine";
|
|
2
|
-
export declare function loadBasic(engine: Engine
|
|
2
|
+
export declare function loadBasic(engine: Engine): void;
|
package/umd/bundle.js
CHANGED
|
@@ -18,13 +18,13 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
18
18
|
if (v !== undefined) module.exports = v;
|
|
19
19
|
}
|
|
20
20
|
else if (typeof define === "function" && define.amd) {
|
|
21
|
-
define(["require", "exports", ".", "@tsparticles/engine"], factory);
|
|
21
|
+
define(["require", "exports", "./index.js", "@tsparticles/engine"], factory);
|
|
22
22
|
}
|
|
23
23
|
})(function (require, exports) {
|
|
24
24
|
"use strict";
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
26
|
exports.loadBasic = void 0;
|
|
27
|
-
const
|
|
28
|
-
Object.defineProperty(exports, "loadBasic", { enumerable: true, get: function () { return
|
|
27
|
+
const index_js_1 = require("./index.js");
|
|
28
|
+
Object.defineProperty(exports, "loadBasic", { enumerable: true, get: function () { return index_js_1.loadBasic; } });
|
|
29
29
|
__exportStar(require("@tsparticles/engine"), exports);
|
|
30
30
|
});
|
package/umd/index.js
CHANGED
|
@@ -1,35 +1,62 @@
|
|
|
1
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
2
|
+
if (k2 === undefined) k2 = k;
|
|
3
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
4
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
5
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
6
|
+
}
|
|
7
|
+
Object.defineProperty(o, k2, desc);
|
|
8
|
+
}) : (function(o, m, k, k2) {
|
|
9
|
+
if (k2 === undefined) k2 = k;
|
|
10
|
+
o[k2] = m[k];
|
|
11
|
+
}));
|
|
12
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
13
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
14
|
+
}) : function(o, v) {
|
|
15
|
+
o["default"] = v;
|
|
16
|
+
});
|
|
17
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
18
|
+
var ownKeys = function(o) {
|
|
19
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
20
|
+
var ar = [];
|
|
21
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
22
|
+
return ar;
|
|
23
|
+
};
|
|
24
|
+
return ownKeys(o);
|
|
25
|
+
};
|
|
26
|
+
return function (mod) {
|
|
27
|
+
if (mod && mod.__esModule) return mod;
|
|
28
|
+
var result = {};
|
|
29
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
30
|
+
__setModuleDefault(result, mod);
|
|
31
|
+
return result;
|
|
32
|
+
};
|
|
33
|
+
})();
|
|
1
34
|
(function (factory) {
|
|
2
35
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
3
36
|
var v = factory(require, exports);
|
|
4
37
|
if (v !== undefined) module.exports = v;
|
|
5
38
|
}
|
|
6
39
|
else if (typeof define === "function" && define.amd) {
|
|
7
|
-
define(["require", "exports"
|
|
40
|
+
define(["require", "exports"], factory);
|
|
8
41
|
}
|
|
9
42
|
})(function (require, exports) {
|
|
10
43
|
"use strict";
|
|
44
|
+
var __syncRequire = typeof module === "object" && typeof module.exports === "object";
|
|
11
45
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
46
|
exports.loadBasic = loadBasic;
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
await (0, move_base_1.loadBaseMover)(engine, false);
|
|
28
|
-
await (0, shape_circle_1.loadCircleShape)(engine, false);
|
|
29
|
-
await (0, updater_color_1.loadColorUpdater)(engine, false);
|
|
30
|
-
await (0, updater_opacity_1.loadOpacityUpdater)(engine, false);
|
|
31
|
-
await (0, updater_out_modes_1.loadOutModesUpdater)(engine, false);
|
|
32
|
-
await (0, updater_size_1.loadSizeUpdater)(engine, false);
|
|
33
|
-
await engine.refresh(refresh);
|
|
47
|
+
function loadBasic(engine) {
|
|
48
|
+
engine.checkVersion("4.0.0-alpha.0");
|
|
49
|
+
engine.register(async (e) => {
|
|
50
|
+
const { loadHexColorPlugin } = await (__syncRequire ? Promise.resolve().then(() => __importStar(require("@tsparticles/plugin-hex-color"))) : new Promise((resolve_1, reject_1) => { require(["@tsparticles/plugin-hex-color"], resolve_1, reject_1); }).then(__importStar)), { loadHslColorPlugin } = await (__syncRequire ? Promise.resolve().then(() => __importStar(require("@tsparticles/plugin-hsl-color"))) : new Promise((resolve_2, reject_2) => { require(["@tsparticles/plugin-hsl-color"], resolve_2, reject_2); }).then(__importStar)), { loadRgbColorPlugin } = await (__syncRequire ? Promise.resolve().then(() => __importStar(require("@tsparticles/plugin-rgb-color"))) : new Promise((resolve_3, reject_3) => { require(["@tsparticles/plugin-rgb-color"], resolve_3, reject_3); }).then(__importStar)), { loadBaseMover } = await (__syncRequire ? Promise.resolve().then(() => __importStar(require("@tsparticles/move-base"))) : new Promise((resolve_4, reject_4) => { require(["@tsparticles/move-base"], resolve_4, reject_4); }).then(__importStar)), { loadCircleShape } = await (__syncRequire ? Promise.resolve().then(() => __importStar(require("@tsparticles/shape-circle"))) : new Promise((resolve_5, reject_5) => { require(["@tsparticles/shape-circle"], resolve_5, reject_5); }).then(__importStar)), { loadColorUpdater } = await (__syncRequire ? Promise.resolve().then(() => __importStar(require("@tsparticles/updater-color"))) : new Promise((resolve_6, reject_6) => { require(["@tsparticles/updater-color"], resolve_6, reject_6); }).then(__importStar)), { loadOpacityUpdater } = await (__syncRequire ? Promise.resolve().then(() => __importStar(require("@tsparticles/updater-opacity"))) : new Promise((resolve_7, reject_7) => { require(["@tsparticles/updater-opacity"], resolve_7, reject_7); }).then(__importStar)), { loadOutModesUpdater } = await (__syncRequire ? Promise.resolve().then(() => __importStar(require("@tsparticles/updater-out-modes"))) : new Promise((resolve_8, reject_8) => { require(["@tsparticles/updater-out-modes"], resolve_8, reject_8); }).then(__importStar)), { loadSizeUpdater } = await (__syncRequire ? Promise.resolve().then(() => __importStar(require("@tsparticles/updater-size"))) : new Promise((resolve_9, reject_9) => { require(["@tsparticles/updater-size"], resolve_9, reject_9); }).then(__importStar));
|
|
51
|
+
loadHexColorPlugin(e);
|
|
52
|
+
loadHslColorPlugin(e);
|
|
53
|
+
loadRgbColorPlugin(e);
|
|
54
|
+
loadBaseMover(e);
|
|
55
|
+
loadCircleShape(e);
|
|
56
|
+
loadColorUpdater(e);
|
|
57
|
+
loadOpacityUpdater(e);
|
|
58
|
+
loadOutModesUpdater(e);
|
|
59
|
+
loadSizeUpdater(e);
|
|
60
|
+
});
|
|
34
61
|
}
|
|
35
62
|
});
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Author : Matteo Bruni
|
|
3
|
+
* MIT license: https://opensource.org/licenses/MIT
|
|
4
|
+
* Demo / Generator : https://particles.js.org/
|
|
5
|
+
* GitHub : https://www.github.com/matteobruni/tsparticles
|
|
6
|
+
* How to use? : Check the GitHub README
|
|
7
|
+
* v4.0.0-alpha.0
|
|
8
|
+
*/
|
|
9
|
+
"use strict";
|
|
10
|
+
/*
|
|
11
|
+
* ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
|
|
12
|
+
* This devtool is neither made for production nor for readable output files.
|
|
13
|
+
* It uses "eval()" calls to create a separate source file in the browser devtools.
|
|
14
|
+
* If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
|
|
15
|
+
* or disable the default devtool with "devtool: false".
|
|
16
|
+
* If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
|
|
17
|
+
*/
|
|
18
|
+
(this["webpackChunk_tsparticles_basic"] = this["webpackChunk_tsparticles_basic"] || []).push([["updaters_color_dist_browser_ColorUpdater_js"],{
|
|
19
|
+
|
|
20
|
+
/***/ "../../updaters/color/dist/browser/ColorUpdater.js"
|
|
21
|
+
/*!*********************************************************!*\
|
|
22
|
+
!*** ../../updaters/color/dist/browser/ColorUpdater.js ***!
|
|
23
|
+
\*********************************************************/
|
|
24
|
+
(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
25
|
+
|
|
26
|
+
eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ ColorUpdater: () => (/* binding */ ColorUpdater)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"../../engine/dist/browser/index.js\");\n\nclass ColorUpdater {\n constructor(engine, container) {\n this._container = container;\n this._engine = engine;\n }\n init(particle) {\n const hslColor = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.rangeColorToHsl)(this._engine, particle.options.color, particle.id, particle.options.reduceDuplicates);\n if (hslColor) {\n particle.color = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getHslAnimationFromHsl)(hslColor, particle.options.color.animation, this._container.retina.reduceFactor);\n }\n }\n isEnabled(particle) {\n const {\n h: hAnimation,\n s: sAnimation,\n l: lAnimation\n } = particle.options.color.animation,\n {\n color\n } = particle;\n return !particle.destroyed && !particle.spawning && (color?.h.value !== undefined && hAnimation.enable || color?.s.value !== undefined && sAnimation.enable || color?.l.value !== undefined && lAnimation.enable);\n }\n update(particle, delta) {\n (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.updateColor)(particle.color, delta);\n }\n}\n\n//# sourceURL=webpack://@tsparticles/basic/../../updaters/color/dist/browser/ColorUpdater.js?\n}");
|
|
27
|
+
|
|
28
|
+
/***/ }
|
|
29
|
+
|
|
30
|
+
}]);
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Author : Matteo Bruni
|
|
3
|
+
* MIT license: https://opensource.org/licenses/MIT
|
|
4
|
+
* Demo / Generator : https://particles.js.org/
|
|
5
|
+
* GitHub : https://www.github.com/matteobruni/tsparticles
|
|
6
|
+
* How to use? : Check the GitHub README
|
|
7
|
+
* v4.0.0-alpha.0
|
|
8
|
+
*/
|
|
9
|
+
"use strict";
|
|
10
|
+
/*
|
|
11
|
+
* ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
|
|
12
|
+
* This devtool is neither made for production nor for readable output files.
|
|
13
|
+
* It uses "eval()" calls to create a separate source file in the browser devtools.
|
|
14
|
+
* If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
|
|
15
|
+
* or disable the default devtool with "devtool: false".
|
|
16
|
+
* If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
|
|
17
|
+
*/
|
|
18
|
+
(this["webpackChunk_tsparticles_basic"] = this["webpackChunk_tsparticles_basic"] || []).push([["updaters_color_dist_browser_index_js"],{
|
|
19
|
+
|
|
20
|
+
/***/ "../../updaters/color/dist/browser/index.js"
|
|
21
|
+
/*!**************************************************!*\
|
|
22
|
+
!*** ../../updaters/color/dist/browser/index.js ***!
|
|
23
|
+
\**************************************************/
|
|
24
|
+
(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
25
|
+
|
|
26
|
+
eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ loadColorUpdater: () => (/* binding */ loadColorUpdater)\n/* harmony export */ });\nfunction loadColorUpdater(engine) {\n engine.checkVersion(\"4.0.0-alpha.0\");\n engine.register(e => {\n e.addParticleUpdater(\"color\", async container => {\n const {\n ColorUpdater\n } = await __webpack_require__.e(/*! import() */ \"updaters_color_dist_browser_ColorUpdater_js\").then(__webpack_require__.bind(__webpack_require__, /*! ./ColorUpdater.js */ \"../../updaters/color/dist/browser/ColorUpdater.js\"));\n return new ColorUpdater(e, container);\n });\n });\n}\n\n//# sourceURL=webpack://@tsparticles/basic/../../updaters/color/dist/browser/index.js?\n}");
|
|
27
|
+
|
|
28
|
+
/***/ }
|
|
29
|
+
|
|
30
|
+
}]);
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Author : Matteo Bruni
|
|
3
|
+
* MIT license: https://opensource.org/licenses/MIT
|
|
4
|
+
* Demo / Generator : https://particles.js.org/
|
|
5
|
+
* GitHub : https://www.github.com/matteobruni/tsparticles
|
|
6
|
+
* How to use? : Check the GitHub README
|
|
7
|
+
* v4.0.0-alpha.0
|
|
8
|
+
*/
|
|
9
|
+
"use strict";
|
|
10
|
+
/*
|
|
11
|
+
* ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
|
|
12
|
+
* This devtool is neither made for production nor for readable output files.
|
|
13
|
+
* It uses "eval()" calls to create a separate source file in the browser devtools.
|
|
14
|
+
* If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
|
|
15
|
+
* or disable the default devtool with "devtool: false".
|
|
16
|
+
* If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
|
|
17
|
+
*/
|
|
18
|
+
(this["webpackChunk_tsparticles_basic"] = this["webpackChunk_tsparticles_basic"] || []).push([["updaters_opacity_dist_browser_OpacityUpdater_js"],{
|
|
19
|
+
|
|
20
|
+
/***/ "../../updaters/opacity/dist/browser/OpacityUpdater.js"
|
|
21
|
+
/*!*************************************************************!*\
|
|
22
|
+
!*** ../../updaters/opacity/dist/browser/OpacityUpdater.js ***!
|
|
23
|
+
\*************************************************************/
|
|
24
|
+
(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
25
|
+
|
|
26
|
+
eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ OpacityUpdater: () => (/* binding */ OpacityUpdater)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"../../engine/dist/browser/index.js\");\n\nclass OpacityUpdater {\n constructor(container) {\n this.container = container;\n }\n init(particle) {\n const opacityOptions = particle.options.opacity,\n pxRatio = 1;\n particle.opacity = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.initParticleNumericAnimationValue)(opacityOptions, pxRatio);\n const opacityAnimation = opacityOptions.animation;\n if (opacityAnimation.enable) {\n particle.opacity.velocity = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRangeValue)(opacityAnimation.speed) / _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.percentDenominator * this.container.retina.reduceFactor;\n if (!opacityAnimation.sync) {\n particle.opacity.velocity *= (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRandom)();\n }\n }\n }\n isEnabled(particle) {\n const none = 0;\n return !particle.destroyed && !particle.spawning && !!particle.opacity && particle.opacity.enable && ((particle.opacity.maxLoops ?? none) <= none || (particle.opacity.maxLoops ?? none) > none && (particle.opacity.loops ?? none) < (particle.opacity.maxLoops ?? none));\n }\n reset(particle) {\n if (particle.opacity) {\n particle.opacity.time = 0;\n particle.opacity.loops = 0;\n }\n }\n update(particle, delta) {\n if (!this.isEnabled(particle) || !particle.opacity) {\n return;\n }\n (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.updateAnimation)(particle, particle.opacity, true, particle.options.opacity.animation.destroy, delta);\n }\n}\n\n//# sourceURL=webpack://@tsparticles/basic/../../updaters/opacity/dist/browser/OpacityUpdater.js?\n}");
|
|
27
|
+
|
|
28
|
+
/***/ }
|
|
29
|
+
|
|
30
|
+
}]);
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Author : Matteo Bruni
|
|
3
|
+
* MIT license: https://opensource.org/licenses/MIT
|
|
4
|
+
* Demo / Generator : https://particles.js.org/
|
|
5
|
+
* GitHub : https://www.github.com/matteobruni/tsparticles
|
|
6
|
+
* How to use? : Check the GitHub README
|
|
7
|
+
* v4.0.0-alpha.0
|
|
8
|
+
*/
|
|
9
|
+
"use strict";
|
|
10
|
+
/*
|
|
11
|
+
* ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
|
|
12
|
+
* This devtool is neither made for production nor for readable output files.
|
|
13
|
+
* It uses "eval()" calls to create a separate source file in the browser devtools.
|
|
14
|
+
* If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
|
|
15
|
+
* or disable the default devtool with "devtool: false".
|
|
16
|
+
* If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
|
|
17
|
+
*/
|
|
18
|
+
(this["webpackChunk_tsparticles_basic"] = this["webpackChunk_tsparticles_basic"] || []).push([["updaters_opacity_dist_browser_index_js"],{
|
|
19
|
+
|
|
20
|
+
/***/ "../../updaters/opacity/dist/browser/index.js"
|
|
21
|
+
/*!****************************************************!*\
|
|
22
|
+
!*** ../../updaters/opacity/dist/browser/index.js ***!
|
|
23
|
+
\****************************************************/
|
|
24
|
+
(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
25
|
+
|
|
26
|
+
eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ loadOpacityUpdater: () => (/* binding */ loadOpacityUpdater)\n/* harmony export */ });\nfunction loadOpacityUpdater(engine) {\n engine.checkVersion(\"4.0.0-alpha.0\");\n engine.register(e => {\n e.addParticleUpdater(\"opacity\", async container => {\n const {\n OpacityUpdater\n } = await __webpack_require__.e(/*! import() */ \"updaters_opacity_dist_browser_OpacityUpdater_js\").then(__webpack_require__.bind(__webpack_require__, /*! ./OpacityUpdater.js */ \"../../updaters/opacity/dist/browser/OpacityUpdater.js\"));\n return new OpacityUpdater(container);\n });\n });\n}\n\n//# sourceURL=webpack://@tsparticles/basic/../../updaters/opacity/dist/browser/index.js?\n}");
|
|
27
|
+
|
|
28
|
+
/***/ }
|
|
29
|
+
|
|
30
|
+
}]);
|