@tsparticles/plugin-themes 4.0.0-alpha.8 → 4.0.0-beta.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/306.min.js ADDED
@@ -0,0 +1 @@
1
+ "use strict";(this.webpackChunk_tsparticles_plugin_themes=this.webpackChunk_tsparticles_plugin_themes||[]).push([[306],{306(e,t,a){a.d(t,{ThemesPluginInstance:()=>n});var h=a(303);class n{_container;constructor(e){this._container=e}init(){let e=this._container;e.themeMatchMedia=(0,h.safeMatchMedia)("(prefers-color-scheme: dark)");let t=async t=>{e.destroyed||(e.currentTheme=t,await e.refresh())};return e.themeHandlers={themeChange:e=>{this._handleThemeChange(e)},oldThemeChange:e=>{this._handleThemeChange(e)}},e.manageMediaMatch=t=>{let a=e.themeHandlers;!a||e.themeMatchMedia&&(0,h.manageListener)(e.themeMatchMedia,"change",a.themeChange,t)},e.loadTheme=t,Promise.resolve()}manageListeners(e){let t=this._container;t.manageMediaMatch?.(e)}async start(){return this.manageListeners(!0),Promise.resolve()}stop(){this.manageListeners(!1)}updateActualOptions(){let e=this._container;return e.actualOptions.setTheme?.(e.currentTheme),!1}_handleThemeChange=e=>{let t=this._container,a=t.options,h=a.defaultThemes,n=e.matches?h.dark:h.light,s=a.themes?.find(e=>e.name===n);s?.default.auto&&t.loadTheme?.(n)}}}}]);
package/366.min.js ADDED
@@ -0,0 +1 @@
1
+ "use strict";(this.webpackChunk_tsparticles_plugin_themes=this.webpackChunk_tsparticles_plugin_themes||[]).push([[366],{366(e,t,s){s.d(t,{ThemesPlugin:()=>h});var a,i,l=s(303);(a=i||(i={})).any="any",a.dark="dark",a.light="light";class n{auto;mode;value;constructor(){this.auto=!1,this.mode=i.any,this.value=!1}load(e){(0,l.isNull)(e)||(void 0!==e.auto&&(this.auto=e.auto),void 0!==e.mode&&(this.mode=e.mode),void 0!==e.value&&(this.value=e.value))}}class d{default;name;options;constructor(){this.name="",this.default=new n}load(e){(0,l.isNull)(e)||(void 0!==e.name&&(this.name=e.name),this.default.load(e.default),void 0!==e.options&&(this.options=(0,l.deepExtend)({},e.options)))}}class h{id="theme";async getPlugin(e){let{ThemesPluginInstance:t}=await s.e(306).then(s.bind(s,306));return new t(e)}loadOptions(e,t,s){if(!this.needsPlugin(t)&&!this.needsPlugin(s))return;let a=e=>{if(t.themes)return t.themes.find(t=>t.default.value&&t.default.mode===e)??t.themes.find(e=>e.default.value&&e.default.mode===i.any)};if(t.findDefaultTheme=a,t.setTheme=e=>{if(t.themes)if(e){let s=t.themes.find(t=>t.name===e);s&&t.load(s.options)}else{let e=(0,l.safeMatchMedia)("(prefers-color-scheme: dark)"),s=a(e?.matches?i.dark:i.light);s&&t.load(s.options)}},t.themes??=[],s?.themes!==void 0)for(let e of s.themes){if(!e)continue;let s=t.themes.find(t=>t.name===e.name);if(s)s.load(e);else{let s=new d;s.load(e),t.themes.push(s)}}t.defaultThemes.dark=a(i.dark)?.name,t.defaultThemes.light=a(i.light)?.name}needsPlugin(e){return!!e?.themes?.length}}}}]);
@@ -1,6 +1,9 @@
1
1
  import { deepExtend, isNull, } from "@tsparticles/engine";
2
2
  import { ThemeDefault } from "./ThemeDefault.js";
3
3
  export class Theme {
4
+ default;
5
+ name;
6
+ options;
4
7
  constructor() {
5
8
  this.name = "";
6
9
  this.default = new ThemeDefault();
@@ -1,6 +1,9 @@
1
1
  import { isNull } from "@tsparticles/engine";
2
2
  import { ThemeMode } from "../../ThemeMode.js";
3
3
  export class ThemeDefault {
4
+ auto;
5
+ mode;
6
+ value;
4
7
  constructor() {
5
8
  this.auto = false;
6
9
  this.mode = ThemeMode.any;
@@ -2,9 +2,7 @@ import { safeMatchMedia, } from "@tsparticles/engine";
2
2
  import { Theme } from "./Options/Classes/Theme.js";
3
3
  import { ThemeMode } from "./ThemeMode.js";
4
4
  export class ThemesPlugin {
5
- constructor() {
6
- this.id = "theme";
7
- }
5
+ id = "theme";
8
6
  async getPlugin(container) {
9
7
  const { ThemesPluginInstance } = await import("./ThemesPluginInstance.js");
10
8
  return new ThemesPluginInstance(container);
@@ -1,15 +1,10 @@
1
1
  import { manageListener, safeMatchMedia } from "@tsparticles/engine";
2
2
  export class ThemesPluginInstance {
3
+ _container;
3
4
  constructor(container) {
4
- this._handleThemeChange = (e) => {
5
- const mediaEvent = e, container = this._container, options = container.options, defaultThemes = options.defaultThemes, themeName = mediaEvent.matches ? defaultThemes.dark : defaultThemes.light, theme = options.themes?.find(theme => theme.name === themeName);
6
- if (theme?.default.auto) {
7
- void container.loadTheme?.(themeName);
8
- }
9
- };
10
5
  this._container = container;
11
6
  }
12
- async init() {
7
+ init() {
13
8
  const container = this._container;
14
9
  container.themeMatchMedia = safeMatchMedia("(prefers-color-scheme: dark)");
15
10
  const loadTheme = async (name) => {
@@ -38,7 +33,7 @@ export class ThemesPluginInstance {
38
33
  manageListener(container.themeMatchMedia, "change", handlers.themeChange, add);
39
34
  };
40
35
  container.loadTheme = loadTheme;
41
- await Promise.resolve();
36
+ return Promise.resolve();
42
37
  }
43
38
  manageListeners(add) {
44
39
  const container = this._container;
@@ -46,7 +41,7 @@ export class ThemesPluginInstance {
46
41
  }
47
42
  async start() {
48
43
  this.manageListeners(true);
49
- await Promise.resolve();
44
+ return Promise.resolve();
50
45
  }
51
46
  stop() {
52
47
  this.manageListeners(false);
@@ -56,4 +51,10 @@ export class ThemesPluginInstance {
56
51
  container.actualOptions.setTheme?.(container.currentTheme);
57
52
  return false;
58
53
  }
54
+ _handleThemeChange = (e) => {
55
+ const mediaEvent = e, container = this._container, options = container.options, defaultThemes = options.defaultThemes, themeName = mediaEvent.matches ? defaultThemes.dark : defaultThemes.light, theme = options.themes?.find(theme => theme.name === themeName);
56
+ if (theme?.default.auto) {
57
+ void container.loadTheme?.(themeName);
58
+ }
59
+ };
59
60
  }
package/browser/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  export async function loadThemesPlugin(engine) {
2
- engine.checkVersion("4.0.0-alpha.8");
2
+ engine.checkVersion("4.0.0-beta.0");
3
3
  await engine.register(async (e) => {
4
4
  const { ThemesPlugin } = await import("./ThemesPlugin.js");
5
5
  e.addPlugin(new ThemesPlugin());
@@ -1,6 +1,9 @@
1
1
  import { deepExtend, isNull, } from "@tsparticles/engine";
2
2
  import { ThemeDefault } from "./ThemeDefault.js";
3
3
  export class Theme {
4
+ default;
5
+ name;
6
+ options;
4
7
  constructor() {
5
8
  this.name = "";
6
9
  this.default = new ThemeDefault();
@@ -1,6 +1,9 @@
1
1
  import { isNull } from "@tsparticles/engine";
2
2
  import { ThemeMode } from "../../ThemeMode.js";
3
3
  export class ThemeDefault {
4
+ auto;
5
+ mode;
6
+ value;
4
7
  constructor() {
5
8
  this.auto = false;
6
9
  this.mode = ThemeMode.any;
@@ -2,9 +2,7 @@ import { safeMatchMedia, } from "@tsparticles/engine";
2
2
  import { Theme } from "./Options/Classes/Theme.js";
3
3
  import { ThemeMode } from "./ThemeMode.js";
4
4
  export class ThemesPlugin {
5
- constructor() {
6
- this.id = "theme";
7
- }
5
+ id = "theme";
8
6
  async getPlugin(container) {
9
7
  const { ThemesPluginInstance } = await import("./ThemesPluginInstance.js");
10
8
  return new ThemesPluginInstance(container);
@@ -1,15 +1,10 @@
1
1
  import { manageListener, safeMatchMedia } from "@tsparticles/engine";
2
2
  export class ThemesPluginInstance {
3
+ _container;
3
4
  constructor(container) {
4
- this._handleThemeChange = (e) => {
5
- const mediaEvent = e, container = this._container, options = container.options, defaultThemes = options.defaultThemes, themeName = mediaEvent.matches ? defaultThemes.dark : defaultThemes.light, theme = options.themes?.find(theme => theme.name === themeName);
6
- if (theme?.default.auto) {
7
- void container.loadTheme?.(themeName);
8
- }
9
- };
10
5
  this._container = container;
11
6
  }
12
- async init() {
7
+ init() {
13
8
  const container = this._container;
14
9
  container.themeMatchMedia = safeMatchMedia("(prefers-color-scheme: dark)");
15
10
  const loadTheme = async (name) => {
@@ -38,7 +33,7 @@ export class ThemesPluginInstance {
38
33
  manageListener(container.themeMatchMedia, "change", handlers.themeChange, add);
39
34
  };
40
35
  container.loadTheme = loadTheme;
41
- await Promise.resolve();
36
+ return Promise.resolve();
42
37
  }
43
38
  manageListeners(add) {
44
39
  const container = this._container;
@@ -46,7 +41,7 @@ export class ThemesPluginInstance {
46
41
  }
47
42
  async start() {
48
43
  this.manageListeners(true);
49
- await Promise.resolve();
44
+ return Promise.resolve();
50
45
  }
51
46
  stop() {
52
47
  this.manageListeners(false);
@@ -56,4 +51,10 @@ export class ThemesPluginInstance {
56
51
  container.actualOptions.setTheme?.(container.currentTheme);
57
52
  return false;
58
53
  }
54
+ _handleThemeChange = (e) => {
55
+ const mediaEvent = e, container = this._container, options = container.options, defaultThemes = options.defaultThemes, themeName = mediaEvent.matches ? defaultThemes.dark : defaultThemes.light, theme = options.themes?.find(theme => theme.name === themeName);
56
+ if (theme?.default.auto) {
57
+ void container.loadTheme?.(themeName);
58
+ }
59
+ };
59
60
  }
package/cjs/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  export async function loadThemesPlugin(engine) {
2
- engine.checkVersion("4.0.0-alpha.8");
2
+ engine.checkVersion("4.0.0-beta.0");
3
3
  await engine.register(async (e) => {
4
4
  const { ThemesPlugin } = await import("./ThemesPlugin.js");
5
5
  e.addPlugin(new ThemesPlugin());
@@ -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
- * v4.0.0-alpha.8
7
+ * v4.0.0-beta.0
8
8
  */
9
9
  "use strict";
10
10
  /*
@@ -23,7 +23,7 @@
23
23
  \**********************************************/
24
24
  (__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
25
25
 
26
- eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ ThemesPluginInstance: () => (/* binding */ ThemesPluginInstance)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"@tsparticles/engine\");\n\nclass ThemesPluginInstance {\n constructor(container) {\n this._handleThemeChange = e => {\n const mediaEvent = e,\n container = this._container,\n options = container.options,\n defaultThemes = options.defaultThemes,\n themeName = mediaEvent.matches ? defaultThemes.dark : defaultThemes.light,\n theme = options.themes?.find(theme => theme.name === themeName);\n if (theme?.default.auto) {\n void container.loadTheme?.(themeName);\n }\n };\n this._container = container;\n }\n async init() {\n const container = this._container;\n container.themeMatchMedia = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.safeMatchMedia)(\"(prefers-color-scheme: dark)\");\n const loadTheme = async name => {\n if (container.destroyed) {\n return;\n }\n container.currentTheme = name;\n await container.refresh();\n };\n container.themeHandlers = {\n themeChange: e => {\n this._handleThemeChange(e);\n },\n oldThemeChange: e => {\n this._handleThemeChange(e);\n }\n };\n container.manageMediaMatch = add => {\n const handlers = container.themeHandlers;\n if (!handlers) {\n return;\n }\n if (!container.themeMatchMedia) {\n return;\n }\n (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.manageListener)(container.themeMatchMedia, \"change\", handlers.themeChange, add);\n };\n container.loadTheme = loadTheme;\n await Promise.resolve();\n }\n manageListeners(add) {\n const container = this._container;\n container.manageMediaMatch?.(add);\n }\n async start() {\n this.manageListeners(true);\n await Promise.resolve();\n }\n stop() {\n this.manageListeners(false);\n }\n updateActualOptions() {\n const container = this._container;\n container.actualOptions.setTheme?.(container.currentTheme);\n return false;\n }\n}\n\n//# sourceURL=webpack://@tsparticles/plugin-themes/./dist/browser/ThemesPluginInstance.js?\n}");
26
+ eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ ThemesPluginInstance: () => (/* binding */ ThemesPluginInstance)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"@tsparticles/engine\");\n\nclass ThemesPluginInstance {\n _container;\n constructor(container){\n this._container = container;\n }\n init() {\n const container = this._container;\n container.themeMatchMedia = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.safeMatchMedia)(\"(prefers-color-scheme: dark)\");\n const loadTheme = async (name)=>{\n if (container.destroyed) {\n return;\n }\n container.currentTheme = name;\n await container.refresh();\n };\n container.themeHandlers = {\n themeChange: (e)=>{\n this._handleThemeChange(e);\n },\n oldThemeChange: (e)=>{\n this._handleThemeChange(e);\n }\n };\n container.manageMediaMatch = (add)=>{\n const handlers = container.themeHandlers;\n if (!handlers) {\n return;\n }\n if (!container.themeMatchMedia) {\n return;\n }\n (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.manageListener)(container.themeMatchMedia, \"change\", handlers.themeChange, add);\n };\n container.loadTheme = loadTheme;\n return Promise.resolve();\n }\n manageListeners(add) {\n const container = this._container;\n container.manageMediaMatch?.(add);\n }\n async start() {\n this.manageListeners(true);\n return Promise.resolve();\n }\n stop() {\n this.manageListeners(false);\n }\n updateActualOptions() {\n const container = this._container;\n container.actualOptions.setTheme?.(container.currentTheme);\n return false;\n }\n _handleThemeChange = (e)=>{\n const mediaEvent = e, container = this._container, options = container.options, defaultThemes = options.defaultThemes, themeName = mediaEvent.matches ? defaultThemes.dark : defaultThemes.light, theme = options.themes?.find((theme)=>theme.name === themeName);\n if (theme?.default.auto) {\n void container.loadTheme?.(themeName);\n }\n };\n}\n\n\n//# sourceURL=webpack://@tsparticles/plugin-themes/./dist/browser/ThemesPluginInstance.js?\n}");
27
27
 
28
28
  /***/ }
29
29
 
@@ -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
- * v4.0.0-alpha.8
7
+ * v4.0.0-beta.0
8
8
  */
9
9
  "use strict";
10
10
  /*
@@ -23,7 +23,7 @@
23
23
  \***********************************************/
24
24
  (__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
25
25
 
26
- eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ Theme: () => (/* binding */ Theme)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"@tsparticles/engine\");\n/* harmony import */ var _ThemeDefault_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./ThemeDefault.js */ \"./dist/browser/Options/Classes/ThemeDefault.js\");\n\n\nclass Theme {\n constructor() {\n this.name = \"\";\n this.default = new _ThemeDefault_js__WEBPACK_IMPORTED_MODULE_1__.ThemeDefault();\n }\n load(data) {\n if ((0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.isNull)(data)) {\n return;\n }\n if (data.name !== undefined) {\n this.name = data.name;\n }\n this.default.load(data.default);\n if (data.options !== undefined) {\n this.options = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.deepExtend)({}, data.options);\n }\n }\n}\n\n//# sourceURL=webpack://@tsparticles/plugin-themes/./dist/browser/Options/Classes/Theme.js?\n}");
26
+ eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ Theme: () => (/* binding */ Theme)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"@tsparticles/engine\");\n/* harmony import */ var _ThemeDefault_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./ThemeDefault.js */ \"./dist/browser/Options/Classes/ThemeDefault.js\");\n\n\nclass Theme {\n default;\n name;\n options;\n constructor(){\n this.name = \"\";\n this.default = new _ThemeDefault_js__WEBPACK_IMPORTED_MODULE_1__.ThemeDefault();\n }\n load(data) {\n if ((0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.isNull)(data)) {\n return;\n }\n if (data.name !== undefined) {\n this.name = data.name;\n }\n this.default.load(data.default);\n if (data.options !== undefined) {\n this.options = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.deepExtend)({}, data.options);\n }\n }\n}\n\n\n//# sourceURL=webpack://@tsparticles/plugin-themes/./dist/browser/Options/Classes/Theme.js?\n}");
27
27
 
28
28
  /***/ },
29
29
 
@@ -33,7 +33,7 @@ eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpa
33
33
  \******************************************************/
34
34
  (__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
35
35
 
36
- eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ ThemeDefault: () => (/* binding */ ThemeDefault)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"@tsparticles/engine\");\n/* harmony import */ var _ThemeMode_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../ThemeMode.js */ \"./dist/browser/ThemeMode.js\");\n\n\nclass ThemeDefault {\n constructor() {\n this.auto = false;\n this.mode = _ThemeMode_js__WEBPACK_IMPORTED_MODULE_1__.ThemeMode.any;\n this.value = false;\n }\n load(data) {\n if ((0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.isNull)(data)) {\n return;\n }\n if (data.auto !== undefined) {\n this.auto = data.auto;\n }\n if (data.mode !== undefined) {\n this.mode = data.mode;\n }\n if (data.value !== undefined) {\n this.value = data.value;\n }\n }\n}\n\n//# sourceURL=webpack://@tsparticles/plugin-themes/./dist/browser/Options/Classes/ThemeDefault.js?\n}");
36
+ eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ ThemeDefault: () => (/* binding */ ThemeDefault)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"@tsparticles/engine\");\n/* harmony import */ var _ThemeMode_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../ThemeMode.js */ \"./dist/browser/ThemeMode.js\");\n\n\nclass ThemeDefault {\n auto;\n mode;\n value;\n constructor(){\n this.auto = false;\n this.mode = _ThemeMode_js__WEBPACK_IMPORTED_MODULE_1__.ThemeMode.any;\n this.value = false;\n }\n load(data) {\n if ((0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.isNull)(data)) {\n return;\n }\n if (data.auto !== undefined) {\n this.auto = data.auto;\n }\n if (data.mode !== undefined) {\n this.mode = data.mode;\n }\n if (data.value !== undefined) {\n this.value = data.value;\n }\n }\n}\n\n\n//# sourceURL=webpack://@tsparticles/plugin-themes/./dist/browser/Options/Classes/ThemeDefault.js?\n}");
37
37
 
38
38
  /***/ },
39
39
 
@@ -43,7 +43,7 @@ eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpa
43
43
  \***********************************/
44
44
  (__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
45
45
 
46
- eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ ThemeMode: () => (/* binding */ ThemeMode)\n/* harmony export */ });\nvar ThemeMode;\n(function (ThemeMode) {\n ThemeMode[\"any\"] = \"any\";\n ThemeMode[\"dark\"] = \"dark\";\n ThemeMode[\"light\"] = \"light\";\n})(ThemeMode || (ThemeMode = {}));\n\n//# sourceURL=webpack://@tsparticles/plugin-themes/./dist/browser/ThemeMode.js?\n}");
46
+ eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ ThemeMode: () => (/* binding */ ThemeMode)\n/* harmony export */ });\nvar ThemeMode;\n(function(ThemeMode) {\n ThemeMode[\"any\"] = \"any\";\n ThemeMode[\"dark\"] = \"dark\";\n ThemeMode[\"light\"] = \"light\";\n})(ThemeMode || (ThemeMode = {}));\n\n\n//# sourceURL=webpack://@tsparticles/plugin-themes/./dist/browser/ThemeMode.js?\n}");
47
47
 
48
48
  /***/ },
49
49
 
@@ -53,7 +53,7 @@ eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpa
53
53
  \**************************************/
54
54
  (__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
55
55
 
56
- eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ ThemesPlugin: () => (/* binding */ ThemesPlugin)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"@tsparticles/engine\");\n/* harmony import */ var _Options_Classes_Theme_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Options/Classes/Theme.js */ \"./dist/browser/Options/Classes/Theme.js\");\n/* harmony import */ var _ThemeMode_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./ThemeMode.js */ \"./dist/browser/ThemeMode.js\");\n\n\n\nclass ThemesPlugin {\n constructor() {\n this.id = \"theme\";\n }\n async getPlugin(container) {\n const {\n ThemesPluginInstance\n } = await __webpack_require__.e(/*! import() */ \"dist_browser_ThemesPluginInstance_js\").then(__webpack_require__.bind(__webpack_require__, /*! ./ThemesPluginInstance.js */ \"./dist/browser/ThemesPluginInstance.js\"));\n return new ThemesPluginInstance(container);\n }\n loadOptions(_container, options, source) {\n if (!this.needsPlugin(options) && !this.needsPlugin(source)) {\n return;\n }\n const findDefaultTheme = mode => {\n if (!options.themes) {\n return;\n }\n return options.themes.find(theme => theme.default.value && theme.default.mode === mode) ?? options.themes.find(theme => theme.default.value && theme.default.mode === _ThemeMode_js__WEBPACK_IMPORTED_MODULE_2__.ThemeMode.any);\n },\n setTheme = name => {\n if (!options.themes) {\n return;\n }\n if (name) {\n const chosenTheme = options.themes.find(theme => theme.name === name);\n if (chosenTheme) {\n options.load(chosenTheme.options);\n }\n } else {\n const mediaMatch = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.safeMatchMedia)(\"(prefers-color-scheme: dark)\"),\n clientDarkMode = mediaMatch?.matches,\n defaultTheme = findDefaultTheme(clientDarkMode ? _ThemeMode_js__WEBPACK_IMPORTED_MODULE_2__.ThemeMode.dark : _ThemeMode_js__WEBPACK_IMPORTED_MODULE_2__.ThemeMode.light);\n if (defaultTheme) {\n options.load(defaultTheme.options);\n }\n }\n };\n options.findDefaultTheme = findDefaultTheme;\n options.setTheme = setTheme;\n options.themes ??= [];\n if (source?.themes !== undefined) {\n for (const theme of source.themes) {\n if (!theme) {\n continue;\n }\n const existingTheme = options.themes.find(t => t.name === theme.name);\n if (existingTheme) {\n existingTheme.load(theme);\n } else {\n const optTheme = new _Options_Classes_Theme_js__WEBPACK_IMPORTED_MODULE_1__.Theme();\n optTheme.load(theme);\n options.themes.push(optTheme);\n }\n }\n }\n options.defaultThemes.dark = findDefaultTheme(_ThemeMode_js__WEBPACK_IMPORTED_MODULE_2__.ThemeMode.dark)?.name;\n options.defaultThemes.light = findDefaultTheme(_ThemeMode_js__WEBPACK_IMPORTED_MODULE_2__.ThemeMode.light)?.name;\n }\n needsPlugin(options) {\n return !!options?.themes?.length;\n }\n}\n\n//# sourceURL=webpack://@tsparticles/plugin-themes/./dist/browser/ThemesPlugin.js?\n}");
56
+ eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ ThemesPlugin: () => (/* binding */ ThemesPlugin)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"@tsparticles/engine\");\n/* harmony import */ var _Options_Classes_Theme_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Options/Classes/Theme.js */ \"./dist/browser/Options/Classes/Theme.js\");\n/* harmony import */ var _ThemeMode_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./ThemeMode.js */ \"./dist/browser/ThemeMode.js\");\n\n\n\nclass ThemesPlugin {\n id = \"theme\";\n async getPlugin(container) {\n const { ThemesPluginInstance } = await __webpack_require__.e(/*! import() */ \"dist_browser_ThemesPluginInstance_js\").then(__webpack_require__.bind(__webpack_require__, /*! ./ThemesPluginInstance.js */ \"./dist/browser/ThemesPluginInstance.js\"));\n return new ThemesPluginInstance(container);\n }\n loadOptions(_container, options, source) {\n if (!this.needsPlugin(options) && !this.needsPlugin(source)) {\n return;\n }\n const findDefaultTheme = (mode)=>{\n if (!options.themes) {\n return;\n }\n return options.themes.find((theme)=>theme.default.value && theme.default.mode === mode) ?? options.themes.find((theme)=>theme.default.value && theme.default.mode === _ThemeMode_js__WEBPACK_IMPORTED_MODULE_2__.ThemeMode.any);\n }, setTheme = (name)=>{\n if (!options.themes) {\n return;\n }\n if (name) {\n const chosenTheme = options.themes.find((theme)=>theme.name === name);\n if (chosenTheme) {\n options.load(chosenTheme.options);\n }\n } else {\n const mediaMatch = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.safeMatchMedia)(\"(prefers-color-scheme: dark)\"), clientDarkMode = mediaMatch?.matches, defaultTheme = findDefaultTheme(clientDarkMode ? _ThemeMode_js__WEBPACK_IMPORTED_MODULE_2__.ThemeMode.dark : _ThemeMode_js__WEBPACK_IMPORTED_MODULE_2__.ThemeMode.light);\n if (defaultTheme) {\n options.load(defaultTheme.options);\n }\n }\n };\n options.findDefaultTheme = findDefaultTheme;\n options.setTheme = setTheme;\n options.themes ??= [];\n if (source?.themes !== undefined) {\n for (const theme of source.themes){\n if (!theme) {\n continue;\n }\n const existingTheme = options.themes.find((t)=>t.name === theme.name);\n if (existingTheme) {\n existingTheme.load(theme);\n } else {\n const optTheme = new _Options_Classes_Theme_js__WEBPACK_IMPORTED_MODULE_1__.Theme();\n optTheme.load(theme);\n options.themes.push(optTheme);\n }\n }\n }\n options.defaultThemes.dark = findDefaultTheme(_ThemeMode_js__WEBPACK_IMPORTED_MODULE_2__.ThemeMode.dark)?.name;\n options.defaultThemes.light = findDefaultTheme(_ThemeMode_js__WEBPACK_IMPORTED_MODULE_2__.ThemeMode.light)?.name;\n }\n needsPlugin(options) {\n return !!options?.themes?.length;\n }\n}\n\n\n//# sourceURL=webpack://@tsparticles/plugin-themes/./dist/browser/ThemesPlugin.js?\n}");
57
57
 
58
58
  /***/ }
59
59
 
@@ -1,6 +1,9 @@
1
1
  import { deepExtend, isNull, } from "@tsparticles/engine";
2
2
  import { ThemeDefault } from "./ThemeDefault.js";
3
3
  export class Theme {
4
+ default;
5
+ name;
6
+ options;
4
7
  constructor() {
5
8
  this.name = "";
6
9
  this.default = new ThemeDefault();
@@ -1,6 +1,9 @@
1
1
  import { isNull } from "@tsparticles/engine";
2
2
  import { ThemeMode } from "../../ThemeMode.js";
3
3
  export class ThemeDefault {
4
+ auto;
5
+ mode;
6
+ value;
4
7
  constructor() {
5
8
  this.auto = false;
6
9
  this.mode = ThemeMode.any;
@@ -2,9 +2,7 @@ import { safeMatchMedia, } from "@tsparticles/engine";
2
2
  import { Theme } from "./Options/Classes/Theme.js";
3
3
  import { ThemeMode } from "./ThemeMode.js";
4
4
  export class ThemesPlugin {
5
- constructor() {
6
- this.id = "theme";
7
- }
5
+ id = "theme";
8
6
  async getPlugin(container) {
9
7
  const { ThemesPluginInstance } = await import("./ThemesPluginInstance.js");
10
8
  return new ThemesPluginInstance(container);
@@ -1,15 +1,10 @@
1
1
  import { manageListener, safeMatchMedia } from "@tsparticles/engine";
2
2
  export class ThemesPluginInstance {
3
+ _container;
3
4
  constructor(container) {
4
- this._handleThemeChange = (e) => {
5
- const mediaEvent = e, container = this._container, options = container.options, defaultThemes = options.defaultThemes, themeName = mediaEvent.matches ? defaultThemes.dark : defaultThemes.light, theme = options.themes?.find(theme => theme.name === themeName);
6
- if (theme?.default.auto) {
7
- void container.loadTheme?.(themeName);
8
- }
9
- };
10
5
  this._container = container;
11
6
  }
12
- async init() {
7
+ init() {
13
8
  const container = this._container;
14
9
  container.themeMatchMedia = safeMatchMedia("(prefers-color-scheme: dark)");
15
10
  const loadTheme = async (name) => {
@@ -38,7 +33,7 @@ export class ThemesPluginInstance {
38
33
  manageListener(container.themeMatchMedia, "change", handlers.themeChange, add);
39
34
  };
40
35
  container.loadTheme = loadTheme;
41
- await Promise.resolve();
36
+ return Promise.resolve();
42
37
  }
43
38
  manageListeners(add) {
44
39
  const container = this._container;
@@ -46,7 +41,7 @@ export class ThemesPluginInstance {
46
41
  }
47
42
  async start() {
48
43
  this.manageListeners(true);
49
- await Promise.resolve();
44
+ return Promise.resolve();
50
45
  }
51
46
  stop() {
52
47
  this.manageListeners(false);
@@ -56,4 +51,10 @@ export class ThemesPluginInstance {
56
51
  container.actualOptions.setTheme?.(container.currentTheme);
57
52
  return false;
58
53
  }
54
+ _handleThemeChange = (e) => {
55
+ const mediaEvent = e, container = this._container, options = container.options, defaultThemes = options.defaultThemes, themeName = mediaEvent.matches ? defaultThemes.dark : defaultThemes.light, theme = options.themes?.find(theme => theme.name === themeName);
56
+ if (theme?.default.auto) {
57
+ void container.loadTheme?.(themeName);
58
+ }
59
+ };
59
60
  }
package/esm/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  export async function loadThemesPlugin(engine) {
2
- engine.checkVersion("4.0.0-alpha.8");
2
+ engine.checkVersion("4.0.0-beta.0");
3
3
  await engine.register(async (e) => {
4
4
  const { ThemesPlugin } = await import("./ThemesPlugin.js");
5
5
  e.addPlugin(new ThemesPlugin());
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsparticles/plugin-themes",
3
- "version": "4.0.0-alpha.8",
3
+ "version": "4.0.0-beta.0",
4
4
  "description": "tsParticles themes plugin",
5
5
  "homepage": "https://particles.js.org",
6
6
  "repository": {
@@ -86,7 +86,7 @@
86
86
  "./package.json": "./package.json"
87
87
  },
88
88
  "dependencies": {
89
- "@tsparticles/engine": "4.0.0-alpha.8"
89
+ "@tsparticles/engine": "4.0.0-beta.0"
90
90
  },
91
91
  "publishConfig": {
92
92
  "access": "public"
package/report.html CHANGED
@@ -3,7 +3,7 @@
3
3
  <head>
4
4
  <meta charset="UTF-8"/>
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1"/>
6
- <title>@tsparticles/plugin-themes [23 Jan 2026 at 23:46]</title>
6
+ <title>@tsparticles/plugin-themes [19 Mar 2026 at 14:03]</title>
7
7
  <link rel="shortcut icon" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAMAAACdt4HsAAABrVBMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+O1foceMD///+J0/qK1Pr7/v8Xdr/9///W8P4UdL7L7P0Scr2r4Pyj3vwad8D5/f/2/f+55f3E6f34+/2H0/ojfMKpzOd0rNgQcb3F3O/j9f7c8v6g3Pz0/P/w+v/q+P7n9v6T1/uQ1vuE0vqLut/y+v+Z2fvt+f+15Pzv9fuc2/vR7v2V2Pvd6/bg9P7I6/285/2y4/yp3/zp8vk8i8kqgMT7/P31+fyv4vxGkcz6/P6/6P3j7vfS5PNnpNUxhcbO7f7F6v3O4vHK3/DA2u631Ouy0eqXweKJud5wqthfoNMMbLvY8f73+v2dxeR8sNtTmdDx9/zX6PSjyeaCtd1YnNGX2PuQveCGt95Nls42h8dLlM3F4vBtAAAAM3RSTlMAAyOx0/sKBvik8opWGBMOAe3l1snDm2E9LSb06eHcu5JpHbarfHZCN9CBb08zzkdNS0kYaptYAAAFV0lEQVRYw92X51/aYBDHHS2O2qqttVbrqNq9m+TJIAYIShBkWwqIiCgoWvfeq7Z2/s29hyQNyUcR7LveGwVyXy6XH8/9rqxglLfUPLxVduUor3h0rfp2TYvpivk37929TkG037hffoX0+peVtZQc1589rigVUdXS/ABSAyEmGIO/1XfvldSK8vs3OqB6u3m0nxmIrvgB0dj7rr7Y9IbuF68hnfFaiHA/sxqm0wciIG43P60qKv9WXWc1RXGh/mFESFABTSBi0sNAKzqet17eCtOb3kZIDwxEEU0oAIJGYxNBDhBND29e0rtXXbcpuPmED9IhEAAQ/AXEaF8EPmnrrKsv0LvWR3fg5sWDNAFZOgAgaKvZDogHNU9MFwnnYROkc56RD5CjAbQX9Ow4g7upCsvYu55aSI/Nj0H1akgKQEUM94dwK65hYRmFU9MIcH/fqJYOZYcnuJSU/waKDgTOEVaVKhwrTRP5XzgSpAITYzom7UvkhFX5VutmxeNnWDjjswTKTyfgluNDGbUpWissXhF3s7mlSml+czWkg3D0l1nNjGNjz3myOQOa1KM/jOS6ebdbAVTCi4gljHSFrviza7tOgRWcS0MOUX9zdNgag5w7rRqA44Lzw0hr1WqES36dFliSJFlh2rXIae3FFcDDgKdxrUIDePr8jGcSClV1u7A9xeN0ModY/pHMxmR1EzRh8TJiwqsHmKW0l4FCEZI+jHio+JdPPE9qwQtTRxku2D8sIeRL2LnxWSllANCQGOIiqVHAz2ye2JR0DcH+HoxDkaADLjgxjKQ+AwCX/g0+DNgdG0ukYCONAe+dbc2IAc6fwt1ARoDSezNHxV2Cmzwv3O6lDMV55edBGwGK9n1+x2F8EDfAGCxug8MhpsMEcTEAWf3rx2vZhe/LAmtIn/6apE6PN0ULKgywD9mmdxbmFl3OvD5AS5fW5zLbv/YHmcsBTjf/afDz3MaZTVCfAP9z6/Bw6ycv8EUBWJIn9zYcoAWWlW9+OzO3vkTy8H+RANLmdrpOuYWdZYEXpo+TlCJrW5EARb7fF+bWdqf3hhyZI1nWJQHgznErZhbjoEsWqi8dQNoE294aldzFurwSABL2XXMf9+H1VQGke9exw5P/AnA5Pv5ngMul7LOvO922iwACu8WkCwLCafvM4CeWPxfA8lNHcWZSoi8EwMAIciKX2Z4SWCMAa3snCZ/G4EA8D6CMLNFsGQhkkz/gQNEBbPCbWsxGUpYVu3z8IyNAknwJkfPMEhLyrdi5RTyUVACkw4GSFRNWJNEW+fgPGwHD8/JxnRuLabN4CGNRkAE23na2+VmEAUmrYymSGjMAYqH84YUIyzgzs3XC7gNgH36Vcc4zKY9o9fgPBXUAiHHwVboBHGLiX6Zcjp1f2wu4tvzZKo0ecPnDtQYDQvJXaBeNzce45Fp28ZQLrEZVuFqgBwOalArKXnW1UzlnSusQKJqKYNuz4tOnI6sZG4zanpemv+7ySU2jbA9h6uhcgpfy6G2PahirDZ6zvq6zDduMVFTKvzw8wgyEdelwY9in3XkEPs3osJuwRQ4qTkfzifndg9Gfc4pdsu82+tTnHZTBa2EAMrqr2t43pguc8tNm7JQVQ2S0ukj2d22dhXYP0/veWtwKrCkNoNimAN5+Xr/oLrxswKbVJjteWrX7eR63o4j9q0GxnaBdWgGA5VStpanIjQmEhV0/nVt5VOFUvix6awJhPcAaTEShgrG+iGyvb5a0Ndb1YGHFPEwoqAinoaykaID1o1pdPNu7XsnCKQ3R+hwWIIhGvORcJUBYXe3Xa3vq/mF/N9V13ugufMkfXn+KHsRD0B8AAAAASUVORK5CYII=" type="image/x-icon" />
8
8
 
9
9
  <script>
@@ -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
- * v4.0.0-alpha.8
7
+ * v4.0.0-beta.0
8
8
  */
9
9
  /*
10
10
  * ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
@@ -28,16 +28,6 @@ return /******/ (() => { // webpackBootstrap
28
28
  /******/ "use strict";
29
29
  /******/ var __webpack_modules__ = ({
30
30
 
31
- /***/ "./dist/browser/index.js"
32
- /*!*******************************!*\
33
- !*** ./dist/browser/index.js ***!
34
- \*******************************/
35
- (__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
36
-
37
- eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ loadThemesPlugin: () => (/* binding */ loadThemesPlugin)\n/* harmony export */ });\nasync function loadThemesPlugin(engine) {\n engine.checkVersion(\"4.0.0-alpha.8\");\n await engine.register(async e => {\n const {\n ThemesPlugin\n } = await __webpack_require__.e(/*! import() */ \"dist_browser_ThemesPlugin_js\").then(__webpack_require__.bind(__webpack_require__, /*! ./ThemesPlugin.js */ \"./dist/browser/ThemesPlugin.js\"));\n e.addPlugin(new ThemesPlugin());\n });\n}\n\n//# sourceURL=webpack://@tsparticles/plugin-themes/./dist/browser/index.js?\n}");
38
-
39
- /***/ },
40
-
41
31
  /***/ "@tsparticles/engine"
42
32
  /*!*********************************************************************************************************************************!*\
43
33
  !*** external {"commonjs":"@tsparticles/engine","commonjs2":"@tsparticles/engine","amd":"@tsparticles/engine","root":"window"} ***!
@@ -46,6 +36,16 @@ eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpa
46
36
 
47
37
  module.exports = __WEBPACK_EXTERNAL_MODULE__tsparticles_engine__;
48
38
 
39
+ /***/ },
40
+
41
+ /***/ "./dist/browser/index.js"
42
+ /*!*******************************!*\
43
+ !*** ./dist/browser/index.js ***!
44
+ \*******************************/
45
+ (__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
46
+
47
+ eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ loadThemesPlugin: () => (/* binding */ loadThemesPlugin)\n/* harmony export */ });\nasync function loadThemesPlugin(engine) {\n engine.checkVersion(\"4.0.0-beta.0\");\n await engine.register(async (e)=>{\n const { ThemesPlugin } = await __webpack_require__.e(/*! import() */ \"dist_browser_ThemesPlugin_js\").then(__webpack_require__.bind(__webpack_require__, /*! ./ThemesPlugin.js */ \"./dist/browser/ThemesPlugin.js\"));\n e.addPlugin(new ThemesPlugin());\n });\n}\n\n\n//# sourceURL=webpack://@tsparticles/plugin-themes/./dist/browser/index.js?\n}");
48
+
49
49
  /***/ }
50
50
 
51
51
  /******/ });
@@ -60,12 +60,6 @@ module.exports = __WEBPACK_EXTERNAL_MODULE__tsparticles_engine__;
60
60
  /******/ if (cachedModule !== undefined) {
61
61
  /******/ return cachedModule.exports;
62
62
  /******/ }
63
- /******/ // Check if module exists (development only)
64
- /******/ if (__webpack_modules__[moduleId] === undefined) {
65
- /******/ var e = new Error("Cannot find module '" + moduleId + "'");
66
- /******/ e.code = 'MODULE_NOT_FOUND';
67
- /******/ throw e;
68
- /******/ }
69
63
  /******/ // Create a new module (and put it into the cache)
70
64
  /******/ var module = __webpack_module_cache__[moduleId] = {
71
65
  /******/ // no module.id needed
@@ -74,6 +68,12 @@ module.exports = __WEBPACK_EXTERNAL_MODULE__tsparticles_engine__;
74
68
  /******/ };
75
69
  /******/
76
70
  /******/ // Execute the module function
71
+ /******/ if (!(moduleId in __webpack_modules__)) {
72
+ /******/ delete __webpack_module_cache__[moduleId];
73
+ /******/ var e = new Error("Cannot find module '" + moduleId + "'");
74
+ /******/ e.code = 'MODULE_NOT_FOUND';
75
+ /******/ throw e;
76
+ /******/ }
77
77
  /******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
78
78
  /******/
79
79
  /******/ // Return the exports of the module
@@ -118,6 +118,18 @@ module.exports = __WEBPACK_EXTERNAL_MODULE__tsparticles_engine__;
118
118
  /******/ };
119
119
  /******/ })();
120
120
  /******/
121
+ /******/ /* webpack/runtime/global */
122
+ /******/ (() => {
123
+ /******/ __webpack_require__.g = (function() {
124
+ /******/ if (typeof globalThis === 'object') return globalThis;
125
+ /******/ try {
126
+ /******/ return this || new Function('return this')();
127
+ /******/ } catch (e) {
128
+ /******/ if (typeof window === 'object') return window;
129
+ /******/ }
130
+ /******/ })();
131
+ /******/ })();
132
+ /******/
121
133
  /******/ /* webpack/runtime/hasOwnProperty shorthand */
122
134
  /******/ (() => {
123
135
  /******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
@@ -182,8 +194,8 @@ module.exports = __WEBPACK_EXTERNAL_MODULE__tsparticles_engine__;
182
194
  /******/ /* webpack/runtime/publicPath */
183
195
  /******/ (() => {
184
196
  /******/ var scriptUrl;
185
- /******/ if (globalThis.importScripts) scriptUrl = globalThis.location + "";
186
- /******/ var document = globalThis.document;
197
+ /******/ if (__webpack_require__.g.importScripts) scriptUrl = __webpack_require__.g.location + "";
198
+ /******/ var document = __webpack_require__.g.document;
187
199
  /******/ if (!scriptUrl && document) {
188
200
  /******/ if (document.currentScript && document.currentScript.tagName.toUpperCase() === 'SCRIPT')
189
201
  /******/ scriptUrl = document.currentScript.src;
@@ -1,2 +1,2 @@
1
- /*! For license information please see tsparticles.plugin.themes.min.js.LICENSE.txt */
2
- !function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t(require("@tsparticles/engine"));else if("function"==typeof define&&define.amd)define(["@tsparticles/engine"],t);else{var r="object"==typeof exports?t(require("@tsparticles/engine")):t(e.window);for(var o in r)("object"==typeof exports?exports:e)[o]=r[o]}}(this,(e=>(()=>{var t,r,o={303(t){t.exports=e}},n={};function i(e){var t=n[e];if(void 0!==t)return t.exports;var r=n[e]={exports:{}};return o[e](r,r.exports,i),r.exports}i.m=o,i.d=(e,t)=>{for(var r in t)i.o(t,r)&&!i.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},i.f={},i.e=e=>Promise.all(Object.keys(i.f).reduce(((t,r)=>(i.f[r](e,t),t)),[])),i.u=e=>e+".min.js",i.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),t={},r="@tsparticles/plugin-themes:",i.l=(e,o,n,a)=>{if(t[e])t[e].push(o);else{var s,l;if(void 0!==n)for(var p=document.getElementsByTagName("script"),c=0;c<p.length;c++){var u=p[c];if(u.getAttribute("src")==e||u.getAttribute("data-webpack")==r+n){s=u;break}}s||(l=!0,(s=document.createElement("script")).charset="utf-8",i.nc&&s.setAttribute("nonce",i.nc),s.setAttribute("data-webpack",r+n),s.src=e),t[e]=[o];var d=(r,o)=>{s.onerror=s.onload=null,clearTimeout(f);var n=t[e];if(delete t[e],s.parentNode&&s.parentNode.removeChild(s),n&&n.forEach((e=>e(o))),r)return r(o)},f=setTimeout(d.bind(null,void 0,{type:"timeout",target:s}),12e4);s.onerror=d.bind(null,s.onerror),s.onload=d.bind(null,s.onload),l&&document.head.appendChild(s)}},i.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{var e;globalThis.importScripts&&(e=globalThis.location+"");var t=globalThis.document;if(!e&&t&&(t.currentScript&&"SCRIPT"===t.currentScript.tagName.toUpperCase()&&(e=t.currentScript.src),!e)){var r=t.getElementsByTagName("script");if(r.length)for(var o=r.length-1;o>-1&&(!e||!/^http(s?):/.test(e));)e=r[o--].src}if(!e)throw new Error("Automatic publicPath is not supported in this browser");e=e.replace(/^blob:/,"").replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),i.p=e})(),(()=>{var e={998:0};i.f.j=(t,r)=>{var o=i.o(e,t)?e[t]:void 0;if(0!==o)if(o)r.push(o[2]);else{var n=new Promise(((r,n)=>o=e[t]=[r,n]));r.push(o[2]=n);var a=i.p+i.u(t),s=new Error;i.l(a,(r=>{if(i.o(e,t)&&(0!==(o=e[t])&&(e[t]=void 0),o)){var n=r&&("load"===r.type?"missing":r.type),a=r&&r.target&&r.target.src;s.message="Loading chunk "+t+" failed.\n("+n+": "+a+")",s.name="ChunkLoadError",s.type=n,s.request=a,o[1](s)}}),"chunk-"+t,t)}};var t=(t,r)=>{var o,n,[a,s,l]=r,p=0;if(a.some((t=>0!==e[t]))){for(o in s)i.o(s,o)&&(i.m[o]=s[o]);if(l)l(i)}for(t&&t(r);p<a.length;p++)n=a[p],i.o(e,n)&&e[n]&&e[n][0](),e[n]=0},r=this.webpackChunk_tsparticles_plugin_themes=this.webpackChunk_tsparticles_plugin_themes||[];r.forEach(t.bind(null,0)),r.push=t.bind(null,r.push.bind(r))})();var a={};async function s(e){e.checkVersion("4.0.0-alpha.8"),await e.register((async e=>{const{ThemesPlugin:t}=await i.e(995).then(i.bind(i,995));e.addPlugin(new t)}))}return i.r(a),i.d(a,{loadThemesPlugin:()=>s}),a})()));
1
+ !function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t(require("@tsparticles/engine"));else if("function"==typeof define&&define.amd)define(["@tsparticles/engine"],t);else{var r="object"==typeof exports?t(require("@tsparticles/engine")):t(e.window);for(var o in r)("object"==typeof exports?exports:e)[o]=r[o]}}(this,e=>(()=>{"use strict";var t,r,o,i={303(t){t.exports=e}},n={};function a(e){var t=n[e];if(void 0!==t)return t.exports;var r=n[e]={exports:{}};return i[e](r,r.exports,a),r.exports}a.m=i,a.d=(e,t)=>{for(var r in t)a.o(t,r)&&!a.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},a.f={},a.e=e=>Promise.all(Object.keys(a.f).reduce((t,r)=>(a.f[r](e,t),t),[])),a.u=e=>""+e+".min.js",a.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||Function("return this")()}catch(e){if("object"==typeof window)return window}}(),a.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),s={},a.l=(e,t,r,o)=>{if(s[e])return void s[e].push(t);if(void 0!==r)for(var i,n,c=document.getElementsByTagName("script"),l=0;l<c.length;l++){var p=c[l];if(p.getAttribute("src")==e||p.getAttribute("data-webpack")=="@tsparticles/plugin-themes:"+r){i=p;break}}i||(n=!0,(i=document.createElement("script")).charset="utf-8",a.nc&&i.setAttribute("nonce",a.nc),i.setAttribute("data-webpack","@tsparticles/plugin-themes:"+r),i.src=e),s[e]=[t];var u=(t,r)=>{i.onerror=i.onload=null,clearTimeout(d);var o=s[e];if(delete s[e],i.parentNode&&i.parentNode.removeChild(i),o&&o.forEach(e=>e(r)),t)return t(r)},d=setTimeout(u.bind(null,void 0,{type:"timeout",target:i}),12e4);i.onerror=u.bind(null,i.onerror),i.onload=u.bind(null,i.onload),n&&document.head.appendChild(i)},a.r=e=>{"u">typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},a.g.importScripts&&(c=a.g.location+"");var s,c,l=a.g.document;if(!c&&l&&(l.currentScript&&"SCRIPT"===l.currentScript.tagName.toUpperCase()&&(c=l.currentScript.src),!c)){var p=l.getElementsByTagName("script");if(p.length)for(var u=p.length-1;u>-1&&(!c||!/^http(s?):/.test(c));)c=p[u--].src}if(!c)throw Error("Automatic publicPath is not supported in this browser");a.p=c=c.replace(/^blob:/,"").replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),t={998:0},a.f.j=(e,r)=>{var o=a.o(t,e)?t[e]:void 0;if(0!==o)if(o)r.push(o[2]);else{var i=new Promise((r,i)=>o=t[e]=[r,i]);r.push(o[2]=i);var n=a.p+a.u(e),s=Error();a.l(n,r=>{if(a.o(t,e)&&(0!==(o=t[e])&&(t[e]=void 0),o)){var i=r&&("load"===r.type?"missing":r.type),n=r&&r.target&&r.target.src;s.message="Loading chunk "+e+` failed.
2
+ (`+i+": "+n+")",s.name="ChunkLoadError",s.type=i,s.request=n,o[1](s)}},"chunk-"+e,e)}},r=(e,r)=>{var o,i,[n,s,c]=r,l=0;if(n.some(e=>0!==t[e])){for(o in s)a.o(s,o)&&(a.m[o]=s[o]);c&&c(a)}for(e&&e(r);l<n.length;l++)i=n[l],a.o(t,i)&&t[i]&&t[i][0](),t[i]=0},(o=this.webpackChunk_tsparticles_plugin_themes=this.webpackChunk_tsparticles_plugin_themes||[]).forEach(r.bind(null,0)),o.push=r.bind(null,o.push.bind(o));var d={};async function f(e){e.checkVersion("4.0.0-beta.0"),await e.register(async e=>{let{ThemesPlugin:t}=await a.e(366).then(a.bind(a,366));e.addPlugin(new t)})}return a.r(d),a.d(d,{loadThemesPlugin:()=>f}),d})());
@@ -1,8 +1,7 @@
1
1
  import { type Container, type IContainerPlugin, type IPlugin, type RecursivePartial } from "@tsparticles/engine";
2
2
  import type { IThemesOptions, ThemesContainer, ThemesOptions } from "./types.js";
3
3
  export declare class ThemesPlugin implements IPlugin {
4
- readonly id: string;
5
- constructor();
4
+ readonly id = "theme";
6
5
  getPlugin(container: ThemesContainer): Promise<IContainerPlugin>;
7
6
  loadOptions(_container: Container, options: ThemesOptions, source?: RecursivePartial<IThemesOptions>): void;
8
7
  needsPlugin(options?: RecursivePartial<IThemesOptions>): boolean;
@@ -13,6 +13,9 @@
13
13
  const engine_1 = require("@tsparticles/engine");
14
14
  const ThemeDefault_js_1 = require("./ThemeDefault.js");
15
15
  class Theme {
16
+ default;
17
+ name;
18
+ options;
16
19
  constructor() {
17
20
  this.name = "";
18
21
  this.default = new ThemeDefault_js_1.ThemeDefault();
@@ -13,6 +13,9 @@
13
13
  const engine_1 = require("@tsparticles/engine");
14
14
  const ThemeMode_js_1 = require("../../ThemeMode.js");
15
15
  class ThemeDefault {
16
+ auto;
17
+ mode;
18
+ value;
16
19
  constructor() {
17
20
  this.auto = false;
18
21
  this.mode = ThemeMode_js_1.ThemeMode.any;
@@ -48,9 +48,7 @@ var __importStar = (this && this.__importStar) || (function () {
48
48
  const Theme_js_1 = require("./Options/Classes/Theme.js");
49
49
  const ThemeMode_js_1 = require("./ThemeMode.js");
50
50
  class ThemesPlugin {
51
- constructor() {
52
- this.id = "theme";
53
- }
51
+ id = "theme";
54
52
  async getPlugin(container) {
55
53
  const { ThemesPluginInstance } = await (__syncRequire ? Promise.resolve().then(() => __importStar(require("./ThemesPluginInstance.js"))) : new Promise((resolve_1, reject_1) => { require(["./ThemesPluginInstance.js"], resolve_1, reject_1); }).then(__importStar));
56
54
  return new ThemesPluginInstance(container);
@@ -12,16 +12,11 @@
12
12
  exports.ThemesPluginInstance = void 0;
13
13
  const engine_1 = require("@tsparticles/engine");
14
14
  class ThemesPluginInstance {
15
+ _container;
15
16
  constructor(container) {
16
- this._handleThemeChange = (e) => {
17
- const mediaEvent = e, container = this._container, options = container.options, defaultThemes = options.defaultThemes, themeName = mediaEvent.matches ? defaultThemes.dark : defaultThemes.light, theme = options.themes?.find(theme => theme.name === themeName);
18
- if (theme?.default.auto) {
19
- void container.loadTheme?.(themeName);
20
- }
21
- };
22
17
  this._container = container;
23
18
  }
24
- async init() {
19
+ init() {
25
20
  const container = this._container;
26
21
  container.themeMatchMedia = (0, engine_1.safeMatchMedia)("(prefers-color-scheme: dark)");
27
22
  const loadTheme = async (name) => {
@@ -50,7 +45,7 @@
50
45
  (0, engine_1.manageListener)(container.themeMatchMedia, "change", handlers.themeChange, add);
51
46
  };
52
47
  container.loadTheme = loadTheme;
53
- await Promise.resolve();
48
+ return Promise.resolve();
54
49
  }
55
50
  manageListeners(add) {
56
51
  const container = this._container;
@@ -58,7 +53,7 @@
58
53
  }
59
54
  async start() {
60
55
  this.manageListeners(true);
61
- await Promise.resolve();
56
+ return Promise.resolve();
62
57
  }
63
58
  stop() {
64
59
  this.manageListeners(false);
@@ -68,6 +63,12 @@
68
63
  container.actualOptions.setTheme?.(container.currentTheme);
69
64
  return false;
70
65
  }
66
+ _handleThemeChange = (e) => {
67
+ const mediaEvent = e, container = this._container, options = container.options, defaultThemes = options.defaultThemes, themeName = mediaEvent.matches ? defaultThemes.dark : defaultThemes.light, theme = options.themes?.find(theme => theme.name === themeName);
68
+ if (theme?.default.auto) {
69
+ void container.loadTheme?.(themeName);
70
+ }
71
+ };
71
72
  }
72
73
  exports.ThemesPluginInstance = ThemesPluginInstance;
73
74
  });
package/umd/index.js CHANGED
@@ -45,7 +45,7 @@ var __importStar = (this && this.__importStar) || (function () {
45
45
  Object.defineProperty(exports, "__esModule", { value: true });
46
46
  exports.loadThemesPlugin = loadThemesPlugin;
47
47
  async function loadThemesPlugin(engine) {
48
- engine.checkVersion("4.0.0-alpha.8");
48
+ engine.checkVersion("4.0.0-beta.0");
49
49
  await engine.register(async (e) => {
50
50
  const { ThemesPlugin } = await (__syncRequire ? Promise.resolve().then(() => __importStar(require("./ThemesPlugin.js"))) : new Promise((resolve_1, reject_1) => { require(["./ThemesPlugin.js"], resolve_1, reject_1); }).then(__importStar));
51
51
  e.addPlugin(new ThemesPlugin());
package/52.min.js DELETED
@@ -1,2 +0,0 @@
1
- /*! For license information please see 52.min.js.LICENSE.txt */
2
- (this.webpackChunk_tsparticles_plugin_themes=this.webpackChunk_tsparticles_plugin_themes||[]).push([[52],{52(e,a,t){t.d(a,{ThemesPluginInstance:()=>n});var s=t(303);class n{constructor(e){this._handleThemeChange=e=>{const a=e,t=this._container,s=t.options,n=s.defaultThemes,h=a.matches?n.dark:n.light,i=s.themes?.find((e=>e.name===h));i?.default.auto&&t.loadTheme?.(h)},this._container=e}async init(){const e=this._container;e.themeMatchMedia=(0,s.safeMatchMedia)("(prefers-color-scheme: dark)");e.themeHandlers={themeChange:e=>{this._handleThemeChange(e)},oldThemeChange:e=>{this._handleThemeChange(e)}},e.manageMediaMatch=a=>{const t=e.themeHandlers;t&&e.themeMatchMedia&&(0,s.manageListener)(e.themeMatchMedia,"change",t.themeChange,a)},e.loadTheme=async a=>{e.destroyed||(e.currentTheme=a,await e.refresh())},await Promise.resolve()}manageListeners(e){const a=this._container;a.manageMediaMatch?.(e)}async start(){this.manageListeners(!0),await Promise.resolve()}stop(){this.manageListeners(!1)}updateActualOptions(){const e=this._container;return e.actualOptions.setTheme?.(e.currentTheme),!1}}}}]);
@@ -1 +0,0 @@
1
- /*! tsParticles Themes Plugin v4.0.0-alpha.8 by Matteo Bruni */
package/995.min.js DELETED
@@ -1,2 +0,0 @@
1
- /*! For license information please see 995.min.js.LICENSE.txt */
2
- (this.webpackChunk_tsparticles_plugin_themes=this.webpackChunk_tsparticles_plugin_themes||[]).push([[995],{995(e,t,s){s.d(t,{ThemesPlugin:()=>h});var n,a=s(303);!function(e){e.any="any",e.dark="dark",e.light="light"}(n||(n={}));class i{constructor(){this.auto=!1,this.mode=n.any,this.value=!1}load(e){(0,a.isNull)(e)||(void 0!==e.auto&&(this.auto=e.auto),void 0!==e.mode&&(this.mode=e.mode),void 0!==e.value&&(this.value=e.value))}}class o{constructor(){this.name="",this.default=new i}load(e){(0,a.isNull)(e)||(void 0!==e.name&&(this.name=e.name),this.default.load(e.default),void 0!==e.options&&(this.options=(0,a.deepExtend)({},e.options)))}}class h{constructor(){this.id="theme"}async getPlugin(e){const{ThemesPluginInstance:t}=await s.e(52).then(s.bind(s,52));return new t(e)}loadOptions(e,t,s){if(!this.needsPlugin(t)&&!this.needsPlugin(s))return;const i=e=>{if(t.themes)return t.themes.find((t=>t.default.value&&t.default.mode===e))??t.themes.find((e=>e.default.value&&e.default.mode===n.any))};if(t.findDefaultTheme=i,t.setTheme=e=>{if(t.themes)if(e){const s=t.themes.find((t=>t.name===e));s&&t.load(s.options)}else{const e=(0,a.safeMatchMedia)("(prefers-color-scheme: dark)"),s=e?.matches,o=i(s?n.dark:n.light);o&&t.load(o.options)}},t.themes??=[],void 0!==s?.themes)for(const e of s.themes){if(!e)continue;const s=t.themes.find((t=>t.name===e.name));if(s)s.load(e);else{const s=new o;s.load(e),t.themes.push(s)}}t.defaultThemes.dark=i(n.dark)?.name,t.defaultThemes.light=i(n.light)?.name}needsPlugin(e){return!!e?.themes?.length}}}}]);
@@ -1 +0,0 @@
1
- /*! tsParticles Themes Plugin v4.0.0-alpha.8 by Matteo Bruni */
@@ -1 +0,0 @@
1
- /*! tsParticles Themes Plugin v4.0.0-alpha.8 by Matteo Bruni */