Input Field Properties
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")
}Content copied to clipboard
Properties
Link copied to clipboard
abstract val size: ComponentProperty<FormSizesStyles.() -> Style<BasicParams>>
Content copied to clipboard
Link copied to clipboard
abstract val variant: ComponentProperty<InputFieldVariants.() -> Style<BasicParams>>
Content copied to clipboard