@tilde-nlp/ngx-menu 8.1.12 → 8.1.13
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/tilde-nlp-ngx-menu.mjs +187 -50
- package/fesm2022/tilde-nlp-ngx-menu.mjs.map +1 -1
- package/index.d.ts +10 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -410,10 +410,19 @@ declare class MenuItemWithChildrenComponent {
|
|
|
410
410
|
static ɵcmp: i0.ɵɵComponentDeclaration<MenuItemWithChildrenComponent, "lib-menu-item-with-children", never, { "menuItem": { "alias": "menuItem"; "required": false; }; "labelsVisible": { "alias": "labelsVisible"; "required": false; }; "showIcons": { "alias": "showIcons"; "required": false; }; "menuLayoutDirection": { "alias": "menuLayoutDirection"; "required": false; }; "menuItemLayout": { "alias": "menuItemLayout"; "required": false; }; "activeItem": { "alias": "activeItem"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; "expandableMenuChildren": { "alias": "expandableMenuChildren"; "required": false; }; }, { "openMenu": "openMenu"; "toggleExpand": "toggleExpand"; }, never, never, false, never>;
|
|
411
411
|
}
|
|
412
412
|
|
|
413
|
+
declare class MenuAccessibilityComponent implements OnInit {
|
|
414
|
+
#private;
|
|
415
|
+
isCollapsed: boolean;
|
|
416
|
+
ngOnInit(): void;
|
|
417
|
+
openAccessibilitySettings(): void;
|
|
418
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MenuAccessibilityComponent, never>;
|
|
419
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MenuAccessibilityComponent, "lib-menu-accessibility", never, { "isCollapsed": { "alias": "isCollapsed"; "required": false; }; }, {}, never, never, true, never>;
|
|
420
|
+
}
|
|
421
|
+
|
|
413
422
|
declare class MenuModule {
|
|
414
423
|
static forRoot(config: MenuSharedConfig): ModuleWithProviders<MenuModule>;
|
|
415
424
|
static ɵfac: i0.ɵɵFactoryDeclaration<MenuModule, never>;
|
|
416
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MenuModule, [typeof SideNavMenuComponent, typeof NavBaseComponent, typeof MenuItemListComponent, typeof MenuColumnsComponent, typeof MenuIconComponent, typeof MenuItemLinkComponent, typeof MenuItemBtnComponent, typeof MenuProfileComponent, typeof MenuLangSwitcherComponent, typeof MenuItemWithChildrenComponent], [typeof i11.FlexLayoutModule, typeof i12.RouterModule, typeof i13.CommonModule, typeof i14.MatTooltipModule, typeof i15.MatDialogModule, typeof i16.MatIconModule, typeof i17.MatButtonModule, typeof i18.MatListModule, typeof i19.MatMenuModule, typeof i16.MatIconModule, typeof i20.TranslateModule, typeof i21.PlausibleModule, typeof i22.MatProgressSpinnerModule], [typeof SideNavMenuComponent, typeof MenuColumnsComponent]>;
|
|
425
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MenuModule, [typeof SideNavMenuComponent, typeof NavBaseComponent, typeof MenuItemListComponent, typeof MenuColumnsComponent, typeof MenuIconComponent, typeof MenuItemLinkComponent, typeof MenuItemBtnComponent, typeof MenuProfileComponent, typeof MenuLangSwitcherComponent, typeof MenuItemWithChildrenComponent], [typeof i11.FlexLayoutModule, typeof i12.RouterModule, typeof i13.CommonModule, typeof i14.MatTooltipModule, typeof i15.MatDialogModule, typeof i16.MatIconModule, typeof i17.MatButtonModule, typeof i18.MatListModule, typeof i19.MatMenuModule, typeof i16.MatIconModule, typeof i20.TranslateModule, typeof i21.PlausibleModule, typeof i22.MatProgressSpinnerModule, typeof MenuAccessibilityComponent], [typeof SideNavMenuComponent, typeof MenuColumnsComponent]>;
|
|
417
426
|
static ɵinj: i0.ɵɵInjectorDeclaration<MenuModule>;
|
|
418
427
|
}
|
|
419
428
|
|