removed prop

This commit is contained in:
Harsh Mahajan
2025-10-01 15:42:41 +05:30
parent 7331e0c09b
commit ea7cba366b
@@ -12,7 +12,6 @@
show = $bindable(false),
title,
closeOnBlur = false,
autoCloseOnNavigate = true,
submit,
cancel,
children = null,
@@ -25,7 +24,6 @@
title: string;
titleBadge?: string;
closeOnBlur?: boolean;
autoCloseOnNavigate?: boolean;
topAction?:
| {
text: string;
@@ -58,7 +56,7 @@
let copyText = $state(undefined);
beforeNavigate(() => {
if (autoCloseOnNavigate) show = false;
show = false;
});
</script>