From 4884a5a825158d260bfed8786bd8cd34ced5107b 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: Wed, 29 Jun 2022 16:48:19 +0300 Subject: [PATCH] remove unnecessary tabindex --- api-generator/components/radiobutton.js | 6 ------ src/components/radiobutton/RadioButton.d.ts | 4 ---- src/components/radiobutton/RadioButton.vue | 3 +-- 3 files changed, 1 insertion(+), 12 deletions(-) diff --git a/api-generator/components/radiobutton.js b/api-generator/components/radiobutton.js index b68952b81..9a4f2aa7c 100644 --- a/api-generator/components/radiobutton.js +++ b/api-generator/components/radiobutton.js @@ -11,12 +11,6 @@ const RadioButtonProps = [ default: "null", description: "Value binding of the checkbox." }, - { - name: "tabindex", - type: "number", - default: "null", - description: "Index of the element in tabbing order." - }, { name: "class", type: "string", diff --git a/src/components/radiobutton/RadioButton.d.ts b/src/components/radiobutton/RadioButton.d.ts index 5dc6b7af7..0b14d5dd8 100755 --- a/src/components/radiobutton/RadioButton.d.ts +++ b/src/components/radiobutton/RadioButton.d.ts @@ -9,10 +9,6 @@ export interface RadioButtonProps { * Value binding of the checkbox. */ modelValue?: any; - /** - * Index of the element in tabbing order. - */ - tabindex?: number; /** * Style class of the component input field. */ diff --git a/src/components/radiobutton/RadioButton.vue b/src/components/radiobutton/RadioButton.vue index 6aa503479..2a3ff17f0 100755 --- a/src/components/radiobutton/RadioButton.vue +++ b/src/components/radiobutton/RadioButton.vue @@ -1,7 +1,7 @@