UNPKG
@jsonforms/vue-vuetify
Version:
latest (3.7.0)
next (3.8.0-alpha.0)
3.8.0-alpha.0
3.7.0
3.7.0-beta.0
3.7.0-alpha.3
3.7.0-alpha.2
3.7.0-alpha.1
3.7.0-alpha.0
3.6.0
3.6.0-beta.0
3.6.0-alpha.1
3.6.0-alpha.0
3.5.1
3.5.0
3.5.0-beta.2
3.5.0-beta.1
3.5.0-beta.0
3.4.1
3.4.1-beta.0
3.4.0
3.4.0-beta.0
3.4.0-alpha.3
3.3.0-preview.0
3.2.0-preview-alpha.3
3.1.0-preview.0
Vue Vuetify renderers for JSON Forms
jsonforms.io
eclipsesource/jsonforms
@jsonforms/vue-vuetify
/
src
/
controls
/
directives
/
DisabledIconFocus.ts
10 lines
(8 loc)
•
224 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
export
const
DisabledIconFocus
= {
updated
(
el
:
HTMLElement
):
void
{ el.
querySelectorAll
(
'.v-field__clearable i'
).
forEach
(
(
x
) =>
x.
setAttribute
(
'tabindex'
,
'-1'
), ); }, };
export
default
DisabledIconFocus
;