From 901bb99dbdd791325b4366f562e0f8f9faa76256 Mon Sep 17 00:00:00 2001 From: tugcekucukoglu Date: Thu, 3 Oct 2024 15:23:32 +0300 Subject: [PATCH] Revert "Fixed #6505" This reverts commit 1016d2df5f0bcec74a8405717b50365c30ed5e25. --- packages/primevue/src/inputmask/BaseInputMask.vue | 4 ---- packages/primevue/src/inputmask/InputMask.d.ts | 5 ----- packages/primevue/src/inputmask/InputMask.vue | 1 - packages/primevue/src/inputtext/BaseInputText.vue | 4 ---- packages/primevue/src/inputtext/InputText.d.ts | 5 ----- packages/primevue/src/inputtext/InputText.vue | 2 +- 6 files changed, 1 insertion(+), 20 deletions(-) diff --git a/packages/primevue/src/inputmask/BaseInputMask.vue b/packages/primevue/src/inputmask/BaseInputMask.vue index 83ba6bb3d..cc451293e 100644 --- a/packages/primevue/src/inputmask/BaseInputMask.vue +++ b/packages/primevue/src/inputmask/BaseInputMask.vue @@ -19,10 +19,6 @@ export default { type: [String, Object], default: null }, - type: { - type: String, - default: null - }, mask: { type: String, default: null diff --git a/packages/primevue/src/inputmask/InputMask.d.ts b/packages/primevue/src/inputmask/InputMask.d.ts index ef40af2a2..9717665d9 100755 --- a/packages/primevue/src/inputmask/InputMask.d.ts +++ b/packages/primevue/src/inputmask/InputMask.d.ts @@ -124,11 +124,6 @@ export interface InputMaskProps { * Style class of the input field. */ class?: string | object | undefined; - /** - * Type of the input field. - * @defaultValue null - */ - type?: string | undefined; /** * Placeholder text for the input. */ diff --git a/packages/primevue/src/inputmask/InputMask.vue b/packages/primevue/src/inputmask/InputMask.vue index 992b7121a..f03c84e25 100755 --- a/packages/primevue/src/inputmask/InputMask.vue +++ b/packages/primevue/src/inputmask/InputMask.vue @@ -2,7 +2,6 @@ ; - /** - * Type of the input field. - * @defaultValue text - */ - type?: string | undefined; /** * Defines the size of the component. */ diff --git a/packages/primevue/src/inputtext/InputText.vue b/packages/primevue/src/inputtext/InputText.vue index 5c3e7a608..9a76a50f7 100755 --- a/packages/primevue/src/inputtext/InputText.vue +++ b/packages/primevue/src/inputtext/InputText.vue @@ -1,5 +1,5 @@