
main.react.select.ControlProps.kt Maven / Gradle / Ivy
package react.select
import react.PropsWithChildren
import react.Ref
import react.dom.html.HTMLAttributes
import web.html.HTMLDivElement
external interface ControlProps : PropsWithChildren {
var innerRef: Ref
/** The mouse down event and the innerRef to pass down to the controller element. */
var innerProps: HTMLAttributes
/** Whether the select is disabled. */
var isDisabled: Boolean
/** Whether the select is focused. */
var isFocused: Boolean
/** Whether the select is expanded. */
var menuIsOpen: Boolean
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy