2018-12-22 22:09:27 +01:00
|
|
|
|
<script>
|
2019-02-09 02:58:18 +01:00
|
|
|
|
import Modal from './Modal.svelte';
|
2018-12-22 22:09:27 +01:00
|
|
|
|
|
2019-05-05 11:52:00 +02:00
|
|
|
|
let showModal = false;
|
2018-12-22 22:09:27 +01:00
|
|
|
|
</script>
|
|
|
|
|
|
2023-05-14 07:50:43 +02:00
|
|
|
|
<button on:click={() => (showModal = true)}> show modal </button>
|
2019-05-05 11:52:00 +02:00
|
|
|
|
|
2023-02-21 12:07:33 +01:00
|
|
|
|
<Modal bind:showModal>
|
|
|
|
|
<h2 slot="header">
|
|
|
|
|
modal
|
|
|
|
|
<small><em>adjective</em> mod·al \ˈmō-dəl\</small>
|
|
|
|
|
</h2>
|
2018-12-22 22:09:27 +01:00
|
|
|
|
|
2023-02-21 12:07:33 +01:00
|
|
|
|
<ol class="definition-list">
|
|
|
|
|
<li>of or relating to modality in logic</li>
|
|
|
|
|
<li>
|
2023-05-14 07:50:43 +02:00
|
|
|
|
containing provisions as to the mode of procedure or the manner of taking effect —used of a
|
|
|
|
|
contract or legacy
|
2023-02-21 12:07:33 +01:00
|
|
|
|
</li>
|
|
|
|
|
<li>of or relating to a musical mode</li>
|
|
|
|
|
<li>of or relating to structure as opposed to substance</li>
|
2023-05-14 07:50:43 +02:00
|
|
|
|
<li>
|
|
|
|
|
of, relating to, or constituting a grammatical form or category characteristically indicating
|
|
|
|
|
predication
|
|
|
|
|
</li>
|
2023-02-21 12:07:33 +01:00
|
|
|
|
<li>of or relating to a statistical mode</li>
|
|
|
|
|
</ol>
|
2018-12-22 22:09:27 +01:00
|
|
|
|
|
2023-02-21 12:07:33 +01:00
|
|
|
|
<a href="https://www.merriam-webster.com/dictionary/modal">merriam-webster.com</a>
|
|
|
|
|
</Modal>
|