barsa-sap-ui 2.3.25 → 2.3.26
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 +10 -4
- package/fesm2022/barsa-sap-ui.mjs.map +1 -1
- package/index.d.ts +7 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -5010,14 +5010,20 @@ declare class BarsaMegamenuComponent extends BaseComponent {
|
|
|
5010
5010
|
menuGroups: MegaMenuGroup[];
|
|
5011
5011
|
titleKey: string;
|
|
5012
5012
|
iconKey: string;
|
|
5013
|
+
visibilityChange: EventEmitter<{
|
|
5014
|
+
visibility: string;
|
|
5015
|
+
menu: MegaMenuGroup;
|
|
5016
|
+
}>;
|
|
5013
5017
|
private _router;
|
|
5014
5018
|
onMainGroupClick(group: MegaMenuGroup): void;
|
|
5019
|
+
onPopoverBeforeOpen(group: MegaMenuGroup): void;
|
|
5015
5020
|
static ɵfac: i0.ɵɵFactoryDeclaration<BarsaMegamenuComponent, never>;
|
|
5016
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BarsaMegamenuComponent, "bsu-barsa-megamenu", never, { "menuGroups": { "alias": "menuGroups"; "required": false; }; "titleKey": { "alias": "titleKey"; "required": false; }; "iconKey": { "alias": "iconKey"; "required": false; }; }, {}, never, never, false, never>;
|
|
5021
|
+
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>;
|
|
5017
5022
|
}
|
|
5018
5023
|
interface MegaMenuGroup {
|
|
5019
5024
|
id: string;
|
|
5020
5025
|
title: string;
|
|
5026
|
+
data: any;
|
|
5021
5027
|
routePath?: string;
|
|
5022
5028
|
icon?: string;
|
|
5023
5029
|
color?: string;
|