Skip to content

Commit 0109290

Browse files
committed
chore: remove tabindex prop from React popover
1 parent 0d339b2 commit 0109290

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

libs/react-components/src/lib/popover/popover.tsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ interface WCProps extends Margins {
88
position?: GoabPopoverPosition;
99
relative?: string;
1010
testid?: string;
11-
tabindex?: number;
1211
}
1312

1413
declare module "react" {
@@ -28,7 +27,6 @@ export interface GoabPopoverProps extends Margins {
2827
padded?: boolean;
2928
position?: GoabPopoverPosition;
3029
children: ReactNode;
31-
tabIndex?: number;
3230
/***
3331
* @deprecated This property has no effect and will be removed in a future version
3432
*/
@@ -44,7 +42,6 @@ export function GoabPopover({
4442
position,
4543
relative,
4644
children,
47-
tabIndex = -1,
4845
mt,
4946
mr,
5047
mb,
@@ -58,7 +55,6 @@ export function GoabPopover({
5855
padded={typeof padded === "undefined" ? undefined : padded ? "true" : "false"}
5956
position={position}
6057
relative={relative ? "true" : undefined}
61-
tabindex={tabIndex}
6258
mt={mt}
6359
mr={mr}
6460
mb={mb}

0 commit comments

Comments
 (0)