Skip to content

Commit

Permalink
fix: add tabindex to TS definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
vursen committed Aug 26, 2021
1 parent 6ba8674 commit acec79c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/field-base/src/tabindex-mixin.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ interface TabindexMixinConstructor {
new (...args: any[]): TabindexMixin;
}

interface TabindexMixin extends DisabledMixin {}
interface TabindexMixin extends DisabledMixin {
/**
* Indicates whether the element can be focused and where it participates in sequential keyboard navigation.
*/
tabindex: number | undefined | null;
}

export { TabindexMixinConstructor, TabindexMixin };

0 comments on commit acec79c

Please sign in to comment.