Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions dist/gooey.js
Original file line number Diff line number Diff line change
Expand Up @@ -13505,7 +13505,6 @@ const Og = /* @__PURE__ */ b({
return (u, d) => (h(), x(s(Og), { open: s(t) }, {
default: y(() => [
F(s(Sg), {
onClose: s(n),
onEscapeKeyDown: s(n),
onPointerDownOutside: s(n)
}, {
Expand Down Expand Up @@ -13551,7 +13550,7 @@ const Og = /* @__PURE__ */ b({
})
]),
_: 1
}, 8, ["onClose", "onEscapeKeyDown", "onPointerDownOutside"])
}, 8, ["onEscapeKeyDown", "onPointerDownOutside"])
]),
_: 1
}, 8, ["open"]));
Expand Down
2 changes: 1 addition & 1 deletion dist/gooey.umd.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/components/confirm-dialog/ConfirmDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const { isOpen, close, cancelButton, actionButton, title, description, variant }

<template>
<AlertDialog :open="isOpen">
<AlertDialogContent @close="close" @escape-key-down="close" @pointer-down-outside="close">
<AlertDialogContent @escape-key-down="close" @pointer-down-outside="close">
<AlertDialogHeader>
<AlertDialogTitle>
{{ title }}
Expand Down