@skysoftware-co/bayan-core-widgets-ui 0.0.13 → 0.0.14
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/skysoftware-co-bayan-core-widgets-ui.mjs +29 -39
- package/fesm2022/skysoftware-co-bayan-core-widgets-ui.mjs.map +1 -1
- package/lib/top-menu-widget/components/item-widget/item-widget.component.d.ts +2 -3
- package/lib/top-menu-widget/components/settings-widget/settings-widget.component.d.ts +1 -0
- package/lib/top-menu-widget/top-menu-widget.component.d.ts +0 -2
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ElementRef, EventEmitter
|
|
1
|
+
import { ElementRef, EventEmitter } from '@angular/core';
|
|
2
2
|
import { TopMenuShortcut } from '../../../shared/menu.dtos';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class BayanCoreItemWidgetComponent
|
|
4
|
+
export declare class BayanCoreItemWidgetComponent {
|
|
5
5
|
private readonly elementRef;
|
|
6
6
|
private readonly document;
|
|
7
7
|
private readonly router;
|
|
@@ -19,7 +19,6 @@ export declare class BayanCoreItemWidgetComponent implements OnChanges {
|
|
|
19
19
|
open: boolean;
|
|
20
20
|
toggleOpen: EventEmitter<void>;
|
|
21
21
|
constructor(elementRef: ElementRef<HTMLElement>);
|
|
22
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
23
22
|
hasChildren(): boolean;
|
|
24
23
|
onItemActivated(event: Event): void;
|
|
25
24
|
onChildItemClick(item: TopMenuShortcut): void;
|
|
@@ -6,6 +6,7 @@ export declare class BayanCoreSettingsWidgetComponent implements OnInit, OnChang
|
|
|
6
6
|
private readonly menuService;
|
|
7
7
|
private readonly alertToastService;
|
|
8
8
|
private readonly translateService;
|
|
9
|
+
private readonly translatePipe;
|
|
9
10
|
baseUrl: string;
|
|
10
11
|
licenseUrl: string;
|
|
11
12
|
releaseNotesUrl: string;
|
|
@@ -7,12 +7,10 @@ import * as i0 from "@angular/core";
|
|
|
7
7
|
export declare class BayanCoreTopMenuWidgetComponent implements OnInit {
|
|
8
8
|
private elementRef;
|
|
9
9
|
constructor(elementRef: ElementRef);
|
|
10
|
-
onDocumentClick(event: MouseEvent): void;
|
|
11
10
|
globalSearchWidget?: BayanCoreGlobalSearchWidgetComponent;
|
|
12
11
|
private readonly document;
|
|
13
12
|
private readonly router;
|
|
14
13
|
private readonly menuService;
|
|
15
|
-
openDropdownIndex: number | null;
|
|
16
14
|
baseUrl: string;
|
|
17
15
|
systemModule: SystemModule | null;
|
|
18
16
|
menuItems: TopMenuShortcut[];
|