@primer/view-components 0.28.0-rc.22557eac → 0.28.0-rc.538292aa
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 +3 -1
- 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 +3 -1
- package/app/components/primer/alpha/select_panel_element.js +71 -66
- package/package.json +1 -1
- package/static/info_arch.json +1 -27
- package/static/previews.json +0 -26
@@ -20,7 +20,7 @@ export declare class SelectPanelElement extends HTMLElement {
|
|
20
20
|
ariaLiveContainer: HTMLElement;
|
21
21
|
noResults: HTMLElement;
|
22
22
|
fragmentErrorElement: HTMLElement;
|
23
|
-
|
23
|
+
errorBannerElement: HTMLElement;
|
24
24
|
bodySpinner: HTMLElement;
|
25
25
|
filterFn?: FilterFn;
|
26
26
|
get open(): boolean;
|
@@ -52,6 +52,8 @@ export declare class SelectPanelElement extends HTMLElement {
|
|
52
52
|
disableItem(item: SelectPanelItem | null): void;
|
53
53
|
enableItem(item: SelectPanelItem | null): void;
|
54
54
|
isItemHidden(item: SelectPanelItem | null): boolean;
|
55
|
+
hideItem(item: SelectPanelItem | null): void;
|
56
|
+
showItem(item: SelectPanelItem | null): void;
|
55
57
|
isItemChecked(item: SelectPanelItem | null): boolean;
|
56
58
|
checkItem(item: SelectPanelItem | null): void;
|
57
59
|
uncheckItem(item: SelectPanelItem | null): void;
|