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

main.react.select.OptionProps.kt Maven / Gradle / Ivy

package react.select

import react.PropsWithChildren
import react.RefCallback
import react.dom.html.HTMLAttributes
import web.html.HTMLDivElement

external interface OptionProps> : PropsWithChildren {
    /** Reference to the internal element, consumed by the MenuPlacer component */
    var innerRef: RefCallback
    var innerProps: HTMLAttributes?
    var label: String

    /** Type is used by the menu to determine whether this is an option or a group.
    In the case of option this is always `option`. **/
    var type: String
    var data: Option
    var isDisabled: Boolean
    var isFocused: Boolean
    var isSelected: Boolean
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy