From 3a2dd2f159f92743ec3147c93248b905e0d63dc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tu=C4=9F=C3=A7e=20K=C3=BC=C3=A7=C3=BCko=C4=9Flu?= Date: Tue, 5 Jul 2022 15:18:05 +0300 Subject: [PATCH] Accessibility for Password --- api-generator/components/password.js | 6 ------ src/components/password/Password.d.ts | 4 ---- src/components/password/Password.vue | 9 ++++++--- src/views/password/PasswordDoc.vue | 8 +------- 4 files changed, 7 insertions(+), 20 deletions(-) diff --git a/api-generator/components/password.js b/api-generator/components/password.js index fd3c77456..0cb122793 100644 --- a/api-generator/components/password.js +++ b/api-generator/components/password.js @@ -5,12 +5,6 @@ const PasswordProps = [ default: "null", description: "Value of the component." }, - { - name: "id", - type: "string", - default: "null", - description: "Unique identifier of the element." - }, { name: "inputId", type: "string", diff --git a/src/components/password/Password.d.ts b/src/components/password/Password.d.ts index 458fec443..5b0ecf340 100755 --- a/src/components/password/Password.d.ts +++ b/src/components/password/Password.d.ts @@ -8,10 +8,6 @@ export interface PasswordProps extends InputHTMLAttributes { * Value of the component. */ modelValue?: Nullable; - /** - * Unique identifier of the element. - */ - id?: string | undefined; /** * Identifier of the underlying input element. */ diff --git a/src/components/password/Password.vue b/src/components/password/Password.vue index 5d4a5bcd6..cf5b38167 100755 --- a/src/components/password/Password.vue +++ b/src/components/password/Password.vue @@ -1,6 +1,6 @@