From 0ef32fccb389488bab1b08908766a0dd7f1455b6 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:26:48 +0300 Subject: [PATCH] remove unnecessary tabindex --- api-generator/components/inputswitch.js | 6 ------ src/components/inputswitch/InputSwitch.d.ts | 4 ---- src/components/inputswitch/InputSwitch.vue | 6 +----- src/views/inputswitch/InputSwitchDoc.vue | 6 ------ 4 files changed, 1 insertion(+), 21 deletions(-) diff --git a/api-generator/components/inputswitch.js b/api-generator/components/inputswitch.js index 39e95c9a3..b05d8b32d 100644 --- a/api-generator/components/inputswitch.js +++ b/api-generator/components/inputswitch.js @@ -17,12 +17,6 @@ const InputSwitchProps = [ default: "null", description: "Inline of the component." }, - { - name: "tabindex", - type: "number", - default: "null", - description: "Index of the element in tabbing order." - }, { name: "trueValue", type: "any", diff --git a/src/components/inputswitch/InputSwitch.d.ts b/src/components/inputswitch/InputSwitch.d.ts index 546a7b516..a4723b9ac 100755 --- a/src/components/inputswitch/InputSwitch.d.ts +++ b/src/components/inputswitch/InputSwitch.d.ts @@ -13,10 +13,6 @@ export interface InputSwitchProps { * Style class of the component input field. */ style?: any; - /** - * Index of the element in tabbing order. - */ - tabindex?: number; /** * Value in checked state. */ diff --git a/src/components/inputswitch/InputSwitch.vue b/src/components/inputswitch/InputSwitch.vue index b4e288b95..7e5e7675b 100755 --- a/src/components/inputswitch/InputSwitch.vue +++ b/src/components/inputswitch/InputSwitch.vue @@ -1,7 +1,7 @@