Skip to content

Commit c3e1532

Browse files
feat(popover): changes after review
1 parent f3581fb commit c3e1532

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

packages/kit-headless/src/components/popover/popover-trigger.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,11 @@ import { PopoverContext } from './popover-context';
1313
import styles from './popover-trigger.css?inline';
1414

1515
export const PopoverTrigger = component$(
16-
(props: AriaKeysOnlyKebab<QwikIntrinsicElements['span']>) => {
16+
(
17+
props: AriaKeysOnlyKebab<QwikIntrinsicElements['span']> & {
18+
tabIndex?: number;
19+
}
20+
) => {
1721
const ref = useSignal<HTMLElement>();
1822
const contextService = useContext(PopoverContext);
1923
useStylesScoped$(styles);
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
export * from './aria-attributes-helper';
21
export * from './aria-attributes.type';
32
export * from './key-code.type';

0 commit comments

Comments
 (0)