Input Field Properties
interface InputFieldProperties
Content copied to clipboard
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
size
Link copied to clipboard
abstract val size: ComponentProperty<FormSizesStyles.() -> Style<BasicParams>>
Content copied to clipboard
variant
Link copied to clipboard
abstract val variant: ComponentProperty<InputFieldVariants.() -> Style<BasicParams>>
Content copied to clipboard
Inheritors
InputFieldMixin
Link copied to clipboard
InputFieldComponent
Link copied to clipboard
TypeAheadComponent
Link copied to clipboard