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

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

Inheritors

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard