@invopop/popui 0.0.77-beta1 → 0.0.77-beta2
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
|
@@ -17,8 +17,8 @@ export let title = "";
|
|
|
17
17
|
export let description = "";
|
|
18
18
|
export let cancelText = "Cancel";
|
|
19
19
|
export let actionText = "OK";
|
|
20
|
-
export let cancelActionEl;
|
|
21
|
-
export let okActionEl;
|
|
20
|
+
export let cancelActionEl = void 0;
|
|
21
|
+
export let okActionEl = void 0;
|
|
22
22
|
</script>
|
|
23
23
|
|
|
24
24
|
<AlertDialog openFocus="[data-alert-dialog-action]" bind:open>
|
|
@@ -7,8 +7,8 @@ declare const __propDef: {
|
|
|
7
7
|
description?: string | undefined;
|
|
8
8
|
cancelText?: string | undefined;
|
|
9
9
|
actionText?: string | undefined;
|
|
10
|
-
cancelActionEl
|
|
11
|
-
okActionEl
|
|
10
|
+
cancelActionEl?: HTMLButtonElement | undefined;
|
|
11
|
+
okActionEl?: HTMLButtonElement | undefined;
|
|
12
12
|
};
|
|
13
13
|
events: {
|
|
14
14
|
cancel: CustomEvent<any>;
|