32 lines
624 B
Svelte
32 lines
624 B
Svelte
<script>
|
|
import { Modal, ModalContent } from "@budibase/bbui"
|
|
|
|
export let title = ""
|
|
export let body = ""
|
|
export let okText = "Confirm"
|
|
export let cancelText = "Cancel"
|
|
export let onOk = undefined
|
|
export let onCancel = undefined
|
|
|
|
let modal
|
|
|
|
export const show = () => {
|
|
modal.show()
|
|
}
|
|
export const hide = () => {
|
|
modal.hide()
|
|
}
|
|
</script>
|
|
|
|
<Modal bind:this={modal} on:hide={onCancel}>
|
|
<ModalContent onConfirm={onOk} {title} confirmText={okText} {cancelText} red>
|
|
<div class="body">{body}</div>
|
|
</ModalContent>
|
|
</Modal>
|
|
|
|
<style>
|
|
.body {
|
|
font-size: var(--font-size-s);
|
|
}
|
|
</style>
|