File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed
libs/react-components/src/lib/popover Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ interface WCProps extends Margins {
88 position ?: GoabPopoverPosition ;
99 relative ?: string ;
1010 testid ?: string ;
11- tabindex ?: number ;
1211}
1312
1413declare 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 }
You can’t perform that action at this time.
0 commit comments