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

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

There is a newer version: 3.13.7-pre.21
Show newest version
package uikit.components

import uikit.*

external interface SwitcherComponent : Component {
    fun show(index: Any /* String | Int | Element */ = definedExternally)
}

external interface SwitcherOptions {
    var connect: String?
    var toggle: String?
    var active: Number?
    var animation: String?
    var duration: Number?
    var swiping: Boolean?
}

object SwitcherEvents {
    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