@timus-networks/theme 2.4.57 → 2.4.58

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/dist/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@timus-networks/theme",
3
3
  "configKey": "themeOptions",
4
- "version": "2.4.57",
4
+ "version": "2.4.58",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "0.8.4",
7
7
  "unbuild": "2.0.0"
package/dist/module.mjs CHANGED
@@ -11,7 +11,7 @@ const __filename = __cjs_url__.fileURLToPath(import.meta.url);
11
11
  const __dirname = __cjs_path__.dirname(__filename);
12
12
  const require = __cjs_mod__.createRequire(import.meta.url);
13
13
  const name = "@timus-networks/theme";
14
- const version = "2.4.57";
14
+ const version = "2.4.58";
15
15
  const description = "A comprehensive Nuxt.js module providing a tailored theme experience with integrated TailwindCSS support for applications.";
16
16
  const type = "module";
17
17
  const exports = {
@@ -1,5 +1,6 @@
1
1
  import { defineNuxtPlugin } from "#app";
2
2
  import PackageJson from "../../../package.json";
3
3
  export default defineNuxtPlugin((nuxtApp) => {
4
- nuxtApp.provide("module.theme", { version: PackageJson.version, name: PackageJson.name, description: PackageJson.description });
4
+ const modules = nuxtApp.$modules ?? {};
5
+ nuxtApp.provide("modules", { ...modules, utils: { version: PackageJson.version, name: PackageJson.name, description: PackageJson.description } });
5
6
  });
@@ -1,5 +1,6 @@
1
1
  import { defineNuxtPlugin } from "#app";
2
2
  import PackageJson from "../../../package.json";
3
3
  export default defineNuxtPlugin((nuxtApp) => {
4
- nuxtApp.provide("module.theme", { version: PackageJson.version, name: PackageJson.name, description: PackageJson.description });
4
+ const modules = nuxtApp.$modules ?? {};
5
+ nuxtApp.provide("modules", { ...modules, utils: { version: PackageJson.version, name: PackageJson.name, description: PackageJson.description } });
5
6
  });
@@ -10608,6 +10608,7 @@ heights > $common-component-size
10608
10608
  gap: 4px;
10609
10609
  color: var(--el-message-text-color);
10610
10610
  box-shadow: var(--el-box-shadow-light);
10611
+ z-index: 99999;
10611
10612
  }
10612
10613
  .el-message.is-center {
10613
10614
  justify-content: center;
@@ -331,6 +331,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
331
331
  gap: 4px;
332
332
  color: var(--el-message-text-color);
333
333
  box-shadow: var(--el-box-shadow-light);
334
+ z-index: 99999;
334
335
  }
335
336
  .el-message.is-center {
336
337
  justify-content: center;
@@ -29,6 +29,7 @@
29
29
  gap: 4px;
30
30
  color: getCssVar('message', 'text-color');
31
31
  box-shadow: getCssVar('box-shadow-light');
32
+ z-index: 99999;
32
33
 
33
34
  @include when(center) {
34
35
  justify-content: center;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@timus-networks/theme",
3
- "version": "2.4.57",
3
+ "version": "2.4.58",
4
4
  "description": "A comprehensive Nuxt.js module providing a tailored theme experience with integrated TailwindCSS support for applications.",
5
5
  "type": "module",
6
6
  "exports": {