pull/6161/head
tugcekucukoglu 2024-08-01 12:03:31 +03:00
parent 6edb7a3eab
commit 978e704733
3 changed files with 17 additions and 0 deletions

View File

@ -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

View File

@ -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

View File

@ -1,5 +1,6 @@
<template>
<InputText
:id="id"
:value="modelValue"
:class="inputClass"
:readonly="readonly"