29 lines
581 B
Svelte
29 lines
581 B
Svelte
<script>
|
|
import { Modal, ModalContent, Body } 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>
|
|
<Body s>
|
|
{body}
|
|
<slot />
|
|
</Body>
|
|
</ModalContent>
|
|
</Modal>
|