@stubber/ui 1.0.16 → 1.0.18

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.
@@ -13,8 +13,8 @@ export { className as class };
13
13
  {transition}
14
14
  {transitionConfig}
15
15
  class={cn(
16
- "bg-background fixed left-[50%] top-[50%] z-50 grid w-full max-w-lg translate-x-[-50%] translate-y-[-50%] gap-4 border p-6 shadow-lg sm:rounded-lg md:w-full",
17
- className
16
+ "bg-background fixed left-[50%] top-[50%] z-[100] grid w-full max-w-lg translate-x-[-50%] translate-y-[-50%] gap-4 border p-6 shadow-lg sm:rounded-lg md:w-full",
17
+ className,
18
18
  )}
19
19
  {...$$restProps}
20
20
  >
@@ -12,6 +12,6 @@ export { className as class };
12
12
  <AlertDialogPrimitive.Overlay
13
13
  {transition}
14
14
  {transitionConfig}
15
- class={cn("bg-background/80 fixed inset-0 z-50 backdrop-blur-sm ", className)}
15
+ class={cn("bg-background/80 fixed inset-0 z-[100] backdrop-blur-sm ", className)}
16
16
  {...$$restProps}
17
17
  />
@@ -24,8 +24,8 @@ export { className as class };
24
24
  on:touchmove|nonpassive
25
25
  on:touchstart|nonpassive
26
26
  class={cn(
27
- "bg-background fixed left-[50%] top-[50%] z-50 grid translate-x-[-50%] translate-y-[-50%] gap-4 border p-6 shadow-lg sm:rounded-lg ",
28
- className
27
+ "bg-background fixed left-[50%] top-[50%] z-[100] grid translate-x-[-50%] translate-y-[-50%] gap-4 border p-6 shadow-lg sm:rounded-lg ",
28
+ className,
29
29
  )}
30
30
  >
31
31
  <slot />
@@ -12,6 +12,6 @@ export { className as class };
12
12
  <DialogPrimitive.Overlay
13
13
  {transition}
14
14
  {transitionConfig}
15
- class={cn("bg-background/80 fixed inset-0 z-50 backdrop-blur-sm", className)}
15
+ class={cn("bg-background/80 fixed inset-0 z-[100] backdrop-blur-sm", className)}
16
16
  {...$$restProps}
17
17
  />
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stubber/ui",
3
- "version": "1.0.16",
3
+ "version": "1.0.18",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "build": "vite build && pnpm run package && node ./fix_dts_imports.js",