@primer/view-components 0.31.0-rc.dab49dc3 → 0.31.0-rc.dae1961b

Sign up to get free protection for your applications and to get access to all the features.
@@ -6,6 +6,7 @@ type SelectedItem = {
6
6
  label: string | null | undefined;
7
7
  value: string | null | undefined;
8
8
  inputName: string | null | undefined;
9
+ element: SelectPanelItem;
9
10
  };
10
11
  export type SelectPanelItem = HTMLLIElement;
11
12
  export type FilterFn = (item: SelectPanelItem, query: string) => boolean;