@invopop/popui 0.0.77-beta2 → 0.0.77-beta3
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/AlertDialog.svelte
CHANGED
|
@@ -21,7 +21,7 @@ export let cancelActionEl = void 0;
|
|
|
21
21
|
export let okActionEl = void 0;
|
|
22
22
|
</script>
|
|
23
23
|
|
|
24
|
-
<AlertDialog openFocus="[data-alert-dialog-action]" bind:open>
|
|
24
|
+
<AlertDialog openFocus="[data-alert-dialog-action]:nth-of-type(2)" bind:open>
|
|
25
25
|
<AlertDialogTrigger>
|
|
26
26
|
<slot />
|
|
27
27
|
</AlertDialogTrigger>
|
|
@@ -3,8 +3,8 @@ import { buttonVariants } from "../button/index.js";
|
|
|
3
3
|
import { cn } from "../utils.js";
|
|
4
4
|
let className = void 0;
|
|
5
5
|
let destructive = false;
|
|
6
|
-
let el;
|
|
7
|
-
export { className as class, destructive };
|
|
6
|
+
let el = void 0;
|
|
7
|
+
export { className as class, destructive, el };
|
|
8
8
|
$:
|
|
9
9
|
variant = destructive ? "destructive" : "primary";
|
|
10
10
|
</script>
|