Input Form Properties
This interface offers a convenience property for input form based components.
By setting the readonly property to `true` the component should become readonly.
Example usage:
open class MyComponent : InputFormProperties by InputFormMixin() {
}
// use the property offered by the interface
val readonly = storeOf(true)
myControl {
readonly(readonly.value)
}Content copied to clipboard