Package io. kvision. form. text
Text input components, with password, text area, rich text area and typeahead support.
Types
Link copied to clipboard
Link copied to clipboard
data class ImaskOptions( val pattern: PatternMask? = null, val range: RangeMask? = null, val enum: EnumMask? = null, val number: NumberMask? = null, val regExp: <ERROR CLASS>? = null, val function: (String) -> Boolean? = null, val list: List<ImaskOptions>? = null, val overwrite: MaskOverwrite? = null)
Content copied to clipboard
A text input mask configuration.
Link copied to clipboard
Text input number mask autofix modes.
Link copied to clipboard
Text input mask overwrite modes.
Link copied to clipboard
data class NumberMask( val scale: Int? = null, val signed: Boolean? = null, val thousandsSeparator: Char? = null, val padFractionalZeros: Boolean? = null, val normalizeZeros: Boolean? = null, val radix: Char? = null, val mapToRadix: List<Char>? = null, val min: Number? = null, val max: Number? = null)
Content copied to clipboard
A text input mask configuration for a number value.
Link copied to clipboard
data class PatternMask( val pattern: String, val lazy: Boolean? = null, val eager: Boolean? = null, val placeholderChar: Char? = null, val definitions: dynamic = null, val blocks: Map<String, ImaskOptions>? = null)
Content copied to clipboard
A text input mask configuration with a pattern.
Link copied to clipboard