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, type: String,
default: '_' default: '_'
}, },
id: {
type: String,
default: null
},
class: { class: {
type: [String, Object], type: [String, Object],
default: null default: null
@ -43,6 +47,10 @@ export default {
type: Boolean, type: Boolean,
default: false default: false
}, },
name: {
type: String,
default: null
},
variant: { variant: {
type: String, type: String,
default: null default: null

View File

@ -116,6 +116,10 @@ export interface InputMaskProps {
* Mask pattern. * Mask pattern.
*/ */
mask?: string | undefined; mask?: string | undefined;
/**
* Identifier of the element.
*/
id?: string | undefined;
/** /**
* Style class of the input field. * Style class of the input field.
*/ */
@ -144,6 +148,10 @@ export interface InputMaskProps {
* @defaultValue false * @defaultValue false
*/ */
invalid?: boolean | undefined; invalid?: boolean | undefined;
/**
* Name of the input element.
*/
name?: string | undefined;
/** /**
* Specifies the input variant of the component. * Specifies the input variant of the component.
* @defaultValue outlined * @defaultValue outlined

View File

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