All Downloads are FREE. Search and download functionalities are using the official Maven repository.

main.uikit.components.Offcanvas.kt Maven / Gradle / Ivy

There is a newer version: 3.5.7-pre.11-kotlin-1.5.21
Show newest version
package uikit.components

import uikit.*

external interface OffcanvasComponent : Component {
    fun show()
    fun hide()
}

external interface OffcanvasOptions {
    var mode: String?
    var flip: Boolean?
    var overlay: Boolean?
    var escClose: Boolean?
    var bgClose: Boolean?
    var container: String?
}

object OffcanvasEvents {
    const val beforeShow = "beforeshow"
    const val show = "show"
    const val shown = "shown"
    const val beforeHide = "beforehide"
    const val hide = "hide"
    const val hidden = "hidden"
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy