barsa-sap-ui 2.3.27 → 2.3.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/barsa-sap-ui.mjs +33 -2
- package/fesm2022/barsa-sap-ui.mjs.map +1 -1
- package/index.d.ts +9 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -5014,9 +5014,17 @@ declare class BarsaMegamenuComponent extends BaseComponent {
|
|
|
5014
5014
|
visibility: string;
|
|
5015
5015
|
menu: MegaMenuGroup;
|
|
5016
5016
|
}>;
|
|
5017
|
+
sideNavScroll: ElementRef;
|
|
5018
|
+
rtl: i0.WritableSignal<boolean>;
|
|
5019
|
+
showScrollButtons: i0.WritableSignal<boolean>;
|
|
5017
5020
|
private _router;
|
|
5021
|
+
private _portalService;
|
|
5022
|
+
ngAfterViewInit(): void;
|
|
5018
5023
|
onMainGroupClick(group: MegaMenuGroup): void;
|
|
5019
5024
|
onPopoverBeforeOpen(group: MegaMenuGroup): void;
|
|
5025
|
+
checkScrollVisibility(): void;
|
|
5026
|
+
onScrollSideNavLeft(): void;
|
|
5027
|
+
onScrollSideNavRight(): void;
|
|
5020
5028
|
static ɵfac: i0.ɵɵFactoryDeclaration<BarsaMegamenuComponent, never>;
|
|
5021
5029
|
static ɵcmp: i0.ɵɵComponentDeclaration<BarsaMegamenuComponent, "bsu-barsa-megamenu", never, { "menuGroups": { "alias": "menuGroups"; "required": false; }; "titleKey": { "alias": "titleKey"; "required": false; }; "iconKey": { "alias": "iconKey"; "required": false; }; }, { "visibilityChange": "visibilityChange"; }, never, never, false, never>;
|
|
5022
5030
|
}
|
|
@@ -5026,6 +5034,7 @@ interface MegaMenuGroup {
|
|
|
5026
5034
|
data: any;
|
|
5027
5035
|
routePath?: string;
|
|
5028
5036
|
icon?: string;
|
|
5037
|
+
iconImage?: string;
|
|
5029
5038
|
color?: string;
|
|
5030
5039
|
children?: MegaMenuGroup[];
|
|
5031
5040
|
items?: MegaMenuItem[];
|