Package io.kvision.modal

Classes supporting general purpose Bootstrap modals with convenient helpers for alert and confirm popup dialogs.

Types

Link copied to clipboard
open class Alert(    caption: String? = null,     text: String? = null,     rich: Boolean = false,     align: <Error class: unknown class>? = null,     size: ModalSize? = null,     animation: Boolean = true,     centered: Boolean = false,     callback: () -> Unit? = null) : Modal

Alert window based on Bootstrap modal.

Link copied to clipboard
open class CloseIcon

Helper class for close icon component.

Link copied to clipboard
open class Confirm(    caption: String? = null,     text: String? = null,     rich: Boolean = false,     align: <Error class: unknown class>? = null,     size: ModalSize? = null,     animation: Boolean = true,     centered: Boolean = false,     cancelVisible: Boolean = false,     yesTitle: String = "Yes",     noTitle: String = "No",     cancelTitle: String = "Cancel",     noCallback: () -> Unit? = null,     yesCallback: () -> Unit? = null) : Modal

Confirm window based on Bootstrap modal.

Link copied to clipboard
open class Modal(    caption: String? = null,     closeButton: Boolean = true,     size: ModalSize? = null,     animation: Boolean = true,     centered: Boolean = false,     scrollable: Boolean = false,     escape: Boolean = true,     className: String? = null,     init: Modal.() -> Unit? = null)

Configurable modal window based on Bootstrap modal.

Link copied to clipboard
enum ModalSize : Enum<ModalSize>

Modal window sizes.