Fixed #6100
parent
6edb7a3eab
commit
978e704733
|
@ -11,6 +11,10 @@ export default {
|
|||
type: String,
|
||||
default: '_'
|
||||
},
|
||||
id: {
|
||||
type: String,
|
||||
default: null
|
||||
},
|
||||
class: {
|
||||
type: [String, Object],
|
||||
default: null
|
||||
|
@ -43,6 +47,10 @@ export default {
|
|||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
name: {
|
||||
type: String,
|
||||
default: null
|
||||
},
|
||||
variant: {
|
||||
type: String,
|
||||
default: null
|
||||
|
|
|
@ -116,6 +116,10 @@ export interface InputMaskProps {
|
|||
* Mask pattern.
|
||||
*/
|
||||
mask?: string | undefined;
|
||||
/**
|
||||
* Identifier of the element.
|
||||
*/
|
||||
id?: string | undefined;
|
||||
/**
|
||||
* Style class of the input field.
|
||||
*/
|
||||
|
@ -144,6 +148,10 @@ export interface InputMaskProps {
|
|||
* @defaultValue false
|
||||
*/
|
||||
invalid?: boolean | undefined;
|
||||
/**
|
||||
* Name of the input element.
|
||||
*/
|
||||
name?: string | undefined;
|
||||
/**
|
||||
* Specifies the input variant of the component.
|
||||
* @defaultValue outlined
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
<template>
|
||||
<InputText
|
||||
:id="id"
|
||||
:value="modelValue"
|
||||
:class="inputClass"
|
||||
:readonly="readonly"
|
||||
|
|
Loading…
Reference in New Issue