@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.
- package/app/assets/javascripts/app/components/primer/alpha/select_panel_element.d.ts +1 -0
- package/app/assets/javascripts/primer_view_components.js +1 -1
- package/app/assets/javascripts/primer_view_components.js.map +1 -1
- package/app/components/primer/alpha/select_panel_element.d.ts +1 -0
- package/app/components/primer/alpha/select_panel_element.js +7 -13
- package/package.json +1 -1
- package/static/info_arch.json +0 -13
- package/static/previews.json +0 -13
@@ -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;
|