luna-plus 0.0.37 → 0.0.38

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.
@@ -9,11 +9,10 @@
9
9
  import { tick } from "svelte";
10
10
 
11
11
  interface Props {
12
- zIndex?: number;
13
12
  showClose?: boolean;
14
13
  }
15
14
 
16
- let { zIndex = 3000, showClose = true }: Props = $props();
15
+ let { showClose = true }: Props = $props();
17
16
 
18
17
  let visible = $state(false);
19
18
  let options = $state<MessageBoxOptions | null>(null);
@@ -91,7 +90,6 @@
91
90
  {@const opts = options}
92
91
  <div
93
92
  class="lm-messagebox__wrapper"
94
- style="--lm-messagebox-z-index: {zIndex}"
95
93
  use:portal
96
94
  >
97
95
  <Dialog
@@ -1,5 +1,4 @@
1
1
  interface Props {
2
- zIndex?: number;
3
2
  showClose?: boolean;
4
3
  }
5
4
  declare const MessageBox: import("svelte").Component<Props, {}, "">;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "luna-plus",
3
- "version": "0.0.37",
3
+ "version": "0.0.38",
4
4
  "description": "A modern Svelte 5 component library with 60+ components",
5
5
  "type": "module",
6
6
  "svelte": "./dist/index.js",