InputFieldProperties

interface InputFieldProperties

This interface offers a convenience property for inputField based components.

Example usage:

open class MyComponent : InputFieldProperties by InputFieldMixin() {
}

// use the property offered by the interface
myControl {
variant { outline }
size { small }
placeholder("Password")
}

Properties

placeholder
Link copied to clipboard
js
abstract val placeholder: DynamicComponentProperty<String>
size
Link copied to clipboard
js
abstract val size: ComponentProperty<FormSizesStyles.() -> Style<BasicParams>>
variant
Link copied to clipboard
js
abstract val variant: ComponentProperty<InputFieldVariants.() -> Style<BasicParams>>

Inheritors

InputFieldMixin
Link copied to clipboard
InputFieldComponent
Link copied to clipboard
TypeAheadComponent
Link copied to clipboard