refactor(dashboard): create dynamic columns for CodePedimentoRegimen with onSuccess callback feat(dashboard): implement create, edit, and delete dialogs for CodePedimentoRegimen feat(dialogs): add reusable dialog components for confirmation and details display style(alert-dialog): improve styling and structure for alert dialog components style(dialog): enhance styling and structure for dialog components
8 lines
251 B
Svelte
8 lines
251 B
Svelte
<script lang="ts">
|
|
import { Dialog as DialogPrimitive } from "bits-ui";
|
|
|
|
let { ref = $bindable(null), ...restProps }: DialogPrimitive.TriggerProps = $props();
|
|
</script>
|
|
|
|
<DialogPrimitive.Trigger bind:ref data-slot="dialog-trigger" {...restProps} />
|