Modal
Setup
<script lang="ts">
import { Modal, Button, uiHelpers } from 'svelte-5-ui-lib';
const modalExample = uiHelpers();
let modalStatus = $state(false);
const closeModal = modalExample.close;
$effect(() => {
modalStatus = modalExample.isOpen;
});
</script>
<div class="flex justify-center">
<Button onclick={modalExample.toggle}>Default modal</Button>
</div>
Interactive Modal Bilder
<Modal title="Terms of Service" {modalStatus} {closeModal}>
Modal content
</Modal>
Examples
<script lang="ts">
import { Modal, Button, uiHelpers } from 'svelte-5-ui-lib';
const modalExample = uiHelpers();
let modalStatus = $state(false);
const closeModal = modalExample.close;
$effect(() => {
modalStatus = modalExample.isOpen;
});
</script>
<div class="flex justify-center">
<Button onclick={modalExample.toggle}>Default modal</Button>
</div>
<Modal title="Terms of Service" {modalStatus} {closeModal}>
<p class="text-base leading-relaxed text-gray-500 dark:text-gray-400">With less than a month to go before the European Union enacts new consumer privacy laws for its citizens, companies around the world are updating their terms of service agreements to comply.</p>
<p class="text-base leading-relaxed text-gray-500 dark:text-gray-400">The European Union’s General Data Protection Regulation (G.D.P.R.) goes into effect on May 25 and is meant to ensure a common set of data rights in the European Union. It requires organizations to notify users as soon as possible of high-risk data breaches that could personally affect them.</p>
</Modal>