@skysoftware-co/bayan-core-widgets-ui 0.0.2 → 0.0.4
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 +215 -183
- package/fesm2022/skysoftware-co-bayan-core-widgets-ui.mjs.map +1 -1
- package/lib/shared/menu.service.d.ts.map +1 -1
- package/lib/top-menu-widget/components/global-search-widget/global-search-widget.component.d.ts +17 -7
- package/lib/top-menu-widget/components/global-search-widget/global-search-widget.component.d.ts.map +1 -1
- package/lib/top-menu-widget/components/item-widget/item-widget.component.d.ts +12 -7
- package/lib/top-menu-widget/components/item-widget/item-widget.component.d.ts.map +1 -1
- package/lib/top-menu-widget/components/notifications-widget/notifications-widget.component.d.ts +0 -1
- package/lib/top-menu-widget/components/notifications-widget/notifications-widget.component.d.ts.map +1 -1
- package/lib/top-menu-widget/top-menu-widget.component.d.ts +10 -9
- package/lib/top-menu-widget/top-menu-widget.component.d.ts.map +1 -1
- package/lib/top-menu-widget/top-menu-widget.models.d.ts +0 -14
- package/lib/top-menu-widget/top-menu-widget.models.d.ts.map +1 -1
- package/package.json +36 -47
package/lib/top-menu-widget/components/global-search-widget/global-search-widget.component.d.ts
CHANGED
|
@@ -1,17 +1,26 @@
|
|
|
1
1
|
import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { DxAutocompleteComponent } from 'devextreme-angular';
|
|
3
|
-
import {
|
|
3
|
+
import { GlobalSearchMenu } from '../../../shared/menu.dtos';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class BayanCoreGlobalSearchWidgetComponent implements OnChanges {
|
|
6
|
+
private readonly menuService;
|
|
6
7
|
private readonly document;
|
|
7
8
|
private readonly router;
|
|
8
9
|
searchAutoComplete?: DxAutocompleteComponent;
|
|
9
10
|
baseUrl: string;
|
|
10
11
|
ActivePropertyChanged: boolean;
|
|
12
|
+
ActivePropertyId: number;
|
|
11
13
|
placeholder: string;
|
|
12
|
-
|
|
14
|
+
searchMode: 'contains' | 'startswith';
|
|
15
|
+
stylingMode: 'filled' | 'outlined' | 'underlined';
|
|
16
|
+
searchWrapperClass: string;
|
|
17
|
+
searchItemClass: string;
|
|
18
|
+
searchItemTitleClass: string;
|
|
19
|
+
searchItemSubtitleClass: string;
|
|
20
|
+
iconClass: string;
|
|
13
21
|
search: EventEmitter<string>;
|
|
14
|
-
itemNavigate: EventEmitter<
|
|
22
|
+
itemNavigate: EventEmitter<GlobalSearchMenu>;
|
|
23
|
+
dataSource: GlobalSearchMenu[];
|
|
15
24
|
readonly toolsIcon: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
16
25
|
readonly gridIcon: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
17
26
|
readonly creditIcon: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
@@ -20,6 +29,8 @@ export declare class BayanCoreGlobalSearchWidgetComponent implements OnChanges {
|
|
|
20
29
|
readonly swapIcon: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
21
30
|
readonly medalIcon: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
22
31
|
readonly graduateIcon: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
32
|
+
ngOnInit(): void;
|
|
33
|
+
private loadMenus;
|
|
23
34
|
ngOnChanges(changes: SimpleChanges): void;
|
|
24
35
|
onInput(event: {
|
|
25
36
|
event?: {
|
|
@@ -38,12 +49,11 @@ export declare class BayanCoreGlobalSearchWidgetComponent implements OnChanges {
|
|
|
38
49
|
};
|
|
39
50
|
};
|
|
40
51
|
} | any): void;
|
|
41
|
-
onItemSelected(event: Event, item:
|
|
52
|
+
onItemSelected(event: Event, item: GlobalSearchMenu): void;
|
|
42
53
|
reset(): void;
|
|
43
54
|
getText(text: string, isTranslatable?: boolean): string;
|
|
44
|
-
|
|
45
|
-
private navigateToUrl;
|
|
55
|
+
getIconForClass(iconClass: string): import("@fortawesome/fontawesome-common-types").IconDefinition;
|
|
46
56
|
static ɵfac: i0.ɵɵFactoryDeclaration<BayanCoreGlobalSearchWidgetComponent, never>;
|
|
47
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BayanCoreGlobalSearchWidgetComponent, "bayan-core-global-search-widget", never, { "baseUrl": { "alias": "baseUrl"; "required": false; }; "ActivePropertyChanged": { "alias": "ActivePropertyChanged"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "
|
|
57
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BayanCoreGlobalSearchWidgetComponent, "bayan-core-global-search-widget", never, { "baseUrl": { "alias": "baseUrl"; "required": false; }; "ActivePropertyChanged": { "alias": "ActivePropertyChanged"; "required": false; }; "ActivePropertyId": { "alias": "ActivePropertyId"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "searchMode": { "alias": "searchMode"; "required": false; }; "stylingMode": { "alias": "stylingMode"; "required": false; }; "searchWrapperClass": { "alias": "searchWrapperClass"; "required": false; }; "searchItemClass": { "alias": "searchItemClass"; "required": false; }; "searchItemTitleClass": { "alias": "searchItemTitleClass"; "required": false; }; "searchItemSubtitleClass": { "alias": "searchItemSubtitleClass"; "required": false; }; "iconClass": { "alias": "iconClass"; "required": false; }; }, { "search": "search"; "itemNavigate": "itemNavigate"; }, never, never, true, never>;
|
|
48
58
|
}
|
|
49
59
|
//# sourceMappingURL=global-search-widget.component.d.ts.map
|
package/lib/top-menu-widget/components/global-search-widget/global-search-widget.component.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"global-search-widget.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/bayan-core-ui/src/lib/top-menu-widget/components/global-search-widget/global-search-widget.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAsC,YAAY,EAAS,SAAS,EAAU,aAAa,EAAqB,MAAM,eAAe,CAAC;AAa7I,OAAO,EAAE,uBAAuB,EAAwB,MAAM,oBAAoB,CAAC;AAEnF,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"global-search-widget.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/bayan-core-ui/src/lib/top-menu-widget/components/global-search-widget/global-search-widget.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAsC,YAAY,EAAS,SAAS,EAAU,aAAa,EAAqB,MAAM,eAAe,CAAC;AAa7I,OAAO,EAAE,uBAAuB,EAAwB,MAAM,oBAAoB,CAAC;AAEnF,OAAO,EAAE,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;;AAI7D,qBASa,oCAAqC,YAAW,SAAS;IACpE,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAmC;IAC/D,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAoB;IAC7C,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAkB;IAER,kBAAkB,CAAC,EAAE,uBAAuB,CAAC;IAErE,OAAO,SAAM;IACb,qBAAqB,UAAS;IAC9B,gBAAgB,EAAE,MAAM,CAAK;IAC7B,WAAW,SAAoB;IAE/B,UAAU,EAAE,UAAU,GAAG,YAAY,CAAc;IACnD,WAAW,EAAE,QAAQ,GAAG,UAAU,GAAG,YAAY,CAAY;IAC7D,kBAAkB,SAA6B;IAC/C,eAAe,SAA0E;IACzF,oBAAoB,SAA0F;IAC9G,uBAAuB,SAAqE;IAC5F,SAAS,SAA0B;IAElC,MAAM,uBAA8B;IACpC,YAAY,iCAAwC;IAE9D,UAAU,EAAE,gBAAgB,EAAE,CAAM;IACpC,QAAQ,CAAC,SAAS,iEAAW;IAC7B,QAAQ,CAAC,QAAQ,iEAAU;IAC3B,QAAQ,CAAC,UAAU,iEAAY;IAC/B,QAAQ,CAAC,SAAS,iEAAW;IAC7B,QAAQ,CAAC,SAAS,iEAAW;IAC7B,QAAQ,CAAC,QAAQ,iEAAe;IAChC,QAAQ,CAAC,SAAS,iEAAW;IAC7B,QAAQ,CAAC,YAAY,iEAAmB;IAExC,QAAQ,IAAI,IAAI;IAMhB,OAAO,CAAC,SAAS;IASjB,WAAW,CAAC,OAAO,EAAE,aAAa,GAAG,IAAI;IAWzC,OAAO,CAAC,KAAK,EAAE;QAAE,KAAK,CAAC,EAAE;YAAE,MAAM,CAAC,EAAE;gBAAE,KAAK,CAAC,EAAE,MAAM,CAAA;aAAE,CAAA;SAAE,CAAC;QAAC,SAAS,CAAC,EAAE;YAAE,MAAM,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,KAAK,IAAI,CAAA;SAAE,CAAA;KAAE,GAAG,GAAG,GAAG,IAAI;IAOtI,UAAU,CAAC,KAAK,EAAE;QAAE,KAAK,CAAC,EAAE;YAAE,MAAM,CAAC,EAAE;gBAAE,KAAK,CAAC,EAAE,MAAM,CAAA;aAAE,CAAA;SAAE,CAAA;KAAE,GAAG,GAAG,GAAG,IAAI;IAmB1E,cAAc,CAAC,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE,gBAAgB,GAAG,IAAI;IAQ1D,KAAK,IAAI,IAAI;IAIb,OAAO,CAAC,IAAI,EAAE,MAAM,EAAE,cAAc,UAAQ,GAAG,MAAM;IAIrD,eAAe,CAAC,SAAS,EAAE,MAAM;yCArGtB,oCAAoC;2CAApC,oCAAoC;CA2HhD"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ElementRef, EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { TopMenuShortcut } from '../../../shared/menu.dtos';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class BayanCoreItemWidgetComponent implements OnChanges {
|
|
5
5
|
private readonly elementRef;
|
|
@@ -7,18 +7,23 @@ export declare class BayanCoreItemWidgetComponent implements OnChanges {
|
|
|
7
7
|
private readonly router;
|
|
8
8
|
baseUrl: string;
|
|
9
9
|
ActivePropertyChanged: boolean;
|
|
10
|
-
item:
|
|
11
|
-
|
|
10
|
+
item: TopMenuShortcut;
|
|
11
|
+
navItemClass: string;
|
|
12
|
+
navLinkClass: string;
|
|
13
|
+
dropdownClass: string;
|
|
14
|
+
dropdownOpenClass: string;
|
|
15
|
+
dropdownToggleClass: string;
|
|
16
|
+
caretClass: string;
|
|
17
|
+
dropdownMenuClass: string;
|
|
18
|
+
itemClick: EventEmitter<TopMenuShortcut>;
|
|
12
19
|
readonly open: import("@angular/core").WritableSignal<boolean>;
|
|
13
20
|
constructor(elementRef: ElementRef<HTMLElement>);
|
|
14
21
|
ngOnChanges(changes: SimpleChanges): void;
|
|
15
22
|
onDocumentClick(event: MouseEvent): void;
|
|
16
23
|
hasChildren(): boolean;
|
|
17
|
-
hasNavigationUrl(url: string | null | undefined): boolean;
|
|
18
24
|
onItemActivated(event: Event): void;
|
|
19
|
-
onChildItemClick(item:
|
|
20
|
-
private navigateToUrl;
|
|
25
|
+
onChildItemClick(item: TopMenuShortcut): void;
|
|
21
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<BayanCoreItemWidgetComponent, never>;
|
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BayanCoreItemWidgetComponent, "bayan-core-item-widget", never, { "baseUrl": { "alias": "baseUrl"; "required": false; }; "ActivePropertyChanged": { "alias": "ActivePropertyChanged"; "required": false; }; "item": { "alias": "item"; "required": true; }; }, { "itemClick": "itemClick"; }, never, never, true, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BayanCoreItemWidgetComponent, "bayan-core-item-widget", never, { "baseUrl": { "alias": "baseUrl"; "required": false; }; "ActivePropertyChanged": { "alias": "ActivePropertyChanged"; "required": false; }; "item": { "alias": "item"; "required": true; }; "navItemClass": { "alias": "navItemClass"; "required": false; }; "navLinkClass": { "alias": "navLinkClass"; "required": false; }; "dropdownClass": { "alias": "dropdownClass"; "required": false; }; "dropdownOpenClass": { "alias": "dropdownOpenClass"; "required": false; }; "dropdownToggleClass": { "alias": "dropdownToggleClass"; "required": false; }; "caretClass": { "alias": "caretClass"; "required": false; }; "dropdownMenuClass": { "alias": "dropdownMenuClass"; "required": false; }; }, { "itemClick": "itemClick"; }, never, never, true, never>;
|
|
23
28
|
}
|
|
24
29
|
//# sourceMappingURL=item-widget.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"item-widget.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/bayan-core-ui/src/lib/top-menu-widget/components/item-widget/item-widget.component.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"item-widget.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/bayan-core-ui/src/lib/top-menu-widget/components/item-widget/item-widget.component.ts"],"names":[],"mappings":"AAEA,OAAO,EAGL,UAAU,EACV,YAAY,EAGZ,SAAS,EAET,aAAa,EAGd,MAAM,eAAe,CAAC;AAGvB,OAAO,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAC;;AAG5D,qBASa,4BAA6B,YAAW,SAAS;IAoBhD,OAAO,CAAC,QAAQ,CAAC,UAAU;IAnBvC,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAoB;IAC7C,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAkB;IAEhC,OAAO,SAAM;IACb,qBAAqB,UAAS;IACZ,IAAI,EAAG,eAAe,CAAC;IAEzC,YAAY,SAAc;IAC1B,YAAY,SAAc;IAC1B,aAAa,SAAuB;IACpC,iBAAiB,SAAU;IAC3B,mBAAmB,SAA8B;IACjD,UAAU,SAAW;IACrB,iBAAiB,SAAuC;IAEvD,SAAS,gCAAuC;IAE1D,QAAQ,CAAC,IAAI,kDAAiB;gBAED,UAAU,EAAE,UAAU,CAAC,WAAW,CAAC;IAEhE,WAAW,CAAC,OAAO,EAAE,aAAa,GAAG,IAAI;IAWzC,eAAe,CAAC,KAAK,EAAE,UAAU,GAAG,IAAI;IAOxC,WAAW,IAAI,OAAO;IAItB,eAAe,CAAC,KAAK,EAAE,KAAK,GAAG,IAAI;IAiBnC,gBAAgB,CAAC,IAAI,EAAE,eAAe,GAAG,IAAI;yCA7DlC,4BAA4B;2CAA5B,4BAA4B;CAiExC"}
|
package/lib/top-menu-widget/components/notifications-widget/notifications-widget.component.d.ts
CHANGED
|
@@ -3,7 +3,6 @@ import { NotificationsSummary } from '../../../shared/menu.dtos';
|
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class BayanCoreNotificationsWidgetComponent implements OnInit, OnChanges {
|
|
5
5
|
private readonly document;
|
|
6
|
-
private readonly router;
|
|
7
6
|
private readonly topMenuService;
|
|
8
7
|
baseUrl: string;
|
|
9
8
|
title: string;
|
package/lib/top-menu-widget/components/notifications-widget/notifications-widget.component.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"notifications-widget.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/bayan-core-ui/src/lib/top-menu-widget/components/notifications-widget/notifications-widget.component.ts"],"names":[],"mappings":"AACA,OAAO,EAIL,SAAS,EACT,MAAM,EACN,aAAa,EAGd,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"notifications-widget.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/bayan-core-ui/src/lib/top-menu-widget/components/notifications-widget/notifications-widget.component.ts"],"names":[],"mappings":"AACA,OAAO,EAIL,SAAS,EACT,MAAM,EACN,aAAa,EAGd,MAAM,eAAe,CAAC;AAKvB,OAAO,EAAE,oBAAoB,EAAE,MAAM,2BAA2B,CAAC;;AAGjE,qBASa,qCAAsC,YAAW,MAAM,EAAE,SAAS;IAC7E,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAoB;IAC7C,OAAO,CAAC,QAAQ,CAAC,cAAc,CAAmC;IAEzD,OAAO,SAAM;IACb,KAAK,SAAmB;IACxB,YAAY,SAAgD;IAC5D,SAAS,SAAyD;IAClE,SAAS,SAAU;IACnB,UAAU,SAAyB;IAE5C,QAAQ,CAAC,QAAQ,iEAAU;IAC3B,QAAQ,CAAC,oBAAoB,+DAG1B;IAEH,QAAQ,IAAI,IAAI;IAIhB,WAAW,CAAC,OAAO,EAAE,aAAa,GAAG,IAAI;IAMzC,mBAAmB,CAAC,KAAK,CAAC,EAAE,KAAK,GAAG,IAAI;IASxC,OAAO,CAAC,wBAAwB;IAmBhC,OAAO,CAAC,sBAAsB;yCAvDnB,qCAAqC;2CAArC,qCAAqC;CA6DjD"}
|
|
@@ -1,21 +1,22 @@
|
|
|
1
|
+
import { TopMenuShortcut } from '../shared/menu.dtos';
|
|
1
2
|
import { PropertyOption, SystemModule } from '../shared/menu.dtos';
|
|
2
3
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
3
4
|
import { IconDefinition } from '@fortawesome/fontawesome-svg-core';
|
|
4
|
-
import { TopMenuWidgetAboutDialogConfig, TopMenuWidgetChangePasswordDialogConfig, TopMenuWidgetChangePasswordPayload,
|
|
5
|
+
import { TopMenuWidgetAboutDialogConfig, TopMenuWidgetChangePasswordDialogConfig, TopMenuWidgetChangePasswordPayload, TopMenuWidgetNameModeItem } from './top-menu-widget.models';
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class BayanCoreTopMenuWidgetComponent implements OnInit {
|
|
7
8
|
private readonly document;
|
|
8
9
|
private readonly router;
|
|
10
|
+
private readonly menuService;
|
|
9
11
|
baseUrl: string;
|
|
10
12
|
systemModule: SystemModule | null;
|
|
13
|
+
ShowShourtcutMenus: boolean;
|
|
14
|
+
menuItems: TopMenuShortcut[];
|
|
11
15
|
sidebarCollapsed: boolean;
|
|
12
16
|
homeUrl: string | null;
|
|
13
17
|
logoUrl: string;
|
|
14
18
|
collapsedLogoUrl: string;
|
|
15
19
|
logoClick: EventEmitter<void>;
|
|
16
|
-
searchPlaceholder: string;
|
|
17
|
-
menuItems: TopMenuWidgetItem[];
|
|
18
|
-
searchItems: TopMenuWidgetSearchItem[];
|
|
19
20
|
isSsoLogin: boolean;
|
|
20
21
|
useAlternateNames: boolean;
|
|
21
22
|
displayAlternateNames: boolean;
|
|
@@ -41,9 +42,8 @@ export declare class BayanCoreTopMenuWidgetComponent implements OnInit {
|
|
|
41
42
|
helpAnchorClass: string;
|
|
42
43
|
helpUrlTarget: '_self' | '_blank' | string;
|
|
43
44
|
helpClick: EventEmitter<void>;
|
|
44
|
-
menuItemClick: EventEmitter<
|
|
45
|
+
menuItemClick: EventEmitter<TopMenuShortcut>;
|
|
45
46
|
searchSubmit: EventEmitter<string>;
|
|
46
|
-
searchItemNavigate: EventEmitter<TopMenuWidgetSearchItem>;
|
|
47
47
|
propertyChanged: EventEmitter<PropertyOption>;
|
|
48
48
|
signOutClick: EventEmitter<void>;
|
|
49
49
|
alternateNamesChange: EventEmitter<void>;
|
|
@@ -61,15 +61,16 @@ export declare class BayanCoreTopMenuWidgetComponent implements OnInit {
|
|
|
61
61
|
readonly aboutVisible: import("@angular/core").WritableSignal<boolean>;
|
|
62
62
|
readonly changePasswordVisible: import("@angular/core").WritableSignal<boolean>;
|
|
63
63
|
ActivePropertyChanged: boolean;
|
|
64
|
-
|
|
65
|
-
hasNavigationUrl(url: string | null): boolean;
|
|
64
|
+
ActivePropertyId: number;
|
|
66
65
|
getLogoSrc(): string | null;
|
|
67
66
|
onLogoClicked(event?: Event): void;
|
|
68
67
|
onHelpClicked(event?: Event): void;
|
|
69
68
|
onChangePasswordRequested(): void;
|
|
70
69
|
onAboutRequested(): void;
|
|
71
70
|
onPropertyChanged(property: PropertyOption): void;
|
|
71
|
+
ngOnInit(): void;
|
|
72
|
+
private loadShortcutMenus;
|
|
72
73
|
static ɵfac: i0.ɵɵFactoryDeclaration<BayanCoreTopMenuWidgetComponent, never>;
|
|
73
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BayanCoreTopMenuWidgetComponent, "bayan-core-top-menu-widget", never, { "baseUrl": { "alias": "baseUrl"; "required": false; }; "systemModule": { "alias": "systemModule"; "required": false; }; "
|
|
74
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BayanCoreTopMenuWidgetComponent, "bayan-core-top-menu-widget", never, { "baseUrl": { "alias": "baseUrl"; "required": false; }; "systemModule": { "alias": "systemModule"; "required": false; }; "ShowShourtcutMenus": { "alias": "ShowShourtcutMenus"; "required": false; }; "sidebarCollapsed": { "alias": "sidebarCollapsed"; "required": false; }; "homeUrl": { "alias": "homeUrl"; "required": false; }; "logoUrl": { "alias": "logoUrl"; "required": false; }; "collapsedLogoUrl": { "alias": "collapsedLogoUrl"; "required": false; }; "isSsoLogin": { "alias": "isSsoLogin"; "required": false; }; "useAlternateNames": { "alias": "useAlternateNames"; "required": false; }; "displayAlternateNames": { "alias": "displayAlternateNames"; "required": false; }; "hrBlocked": { "alias": "hrBlocked"; "required": false; }; "hrCanBlock": { "alias": "hrCanBlock"; "required": false; }; "tkBlocked": { "alias": "tkBlocked"; "required": false; }; "tkCanBlock": { "alias": "tkCanBlock"; "required": false; }; "nameModeItems": { "alias": "nameModeItems"; "required": false; }; "settingsEnabled": { "alias": "settingsEnabled"; "required": false; }; "useInternalDialogs": { "alias": "useInternalDialogs"; "required": false; }; "changePasswordLoading": { "alias": "changePasswordLoading"; "required": false; }; "changePasswordDialog": { "alias": "changePasswordDialog"; "required": false; }; "aboutDialog": { "alias": "aboutDialog"; "required": false; }; "showGlobalSearch": { "alias": "showGlobalSearch"; "required": false; }; "showUserPanel": { "alias": "showUserPanel"; "required": false; }; "showSettings": { "alias": "showSettings"; "required": false; }; "showNotifications": { "alias": "showNotifications"; "required": false; }; "notificationsTitle": { "alias": "notificationsTitle"; "required": false; }; "showHelp": { "alias": "showHelp"; "required": false; }; "helpTitle": { "alias": "helpTitle"; "required": false; }; "helpUrl": { "alias": "helpUrl"; "required": false; }; "helpIcon": { "alias": "helpIcon"; "required": false; }; "helpAnchorClass": { "alias": "helpAnchorClass"; "required": false; }; "helpUrlTarget": { "alias": "helpUrlTarget"; "required": false; }; }, { "logoClick": "logoClick"; "helpClick": "helpClick"; "menuItemClick": "menuItemClick"; "searchSubmit": "searchSubmit"; "propertyChanged": "propertyChanged"; "signOutClick": "signOutClick"; "alternateNamesChange": "alternateNamesChange"; "nameModeChange": "nameModeChange"; "blockHrClick": "blockHrClick"; "releaseHrClick": "releaseHrClick"; "blockTkClick": "blockTkClick"; "releaseTkClick": "releaseTkClick"; "changePasswordClick": "changePasswordClick"; "openAboutClick": "openAboutClick"; "aboutLicenseClick": "aboutLicenseClick"; "aboutReleaseNotesClick": "aboutReleaseNotesClick"; "aboutSupportClick": "aboutSupportClick"; "submitPasswordChange": "submitPasswordChange"; }, never, never, true, never>;
|
|
74
75
|
}
|
|
75
76
|
//# sourceMappingURL=top-menu-widget.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"top-menu-widget.component.d.ts","sourceRoot":"","sources":["../../../../projects/bayan-core-ui/src/lib/top-menu-widget/top-menu-widget.component.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"top-menu-widget.component.d.ts","sourceRoot":"","sources":["../../../../projects/bayan-core-ui/src/lib/top-menu-widget/top-menu-widget.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AACtD,OAAO,EAAE,cAAc,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAEnE,OAAO,EAAsC,YAAY,EAAS,MAAM,EAA0B,MAAM,eAAe,CAAC;AAExH,OAAO,EAAE,cAAc,EAAE,MAAM,mCAAmC,CAAC;AAMnE,OAAO,EACL,8BAA8B,EAC9B,uCAAuC,EACvC,kCAAkC,EAClC,yBAAyB,EAC1B,MAAM,0BAA0B,CAAC;;AASlC,qBAoBa,+BAAgC,YAAW,MAAM;IAC5D,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAoB;IAC7C,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAkB;IACzC,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAmC;IAEtD,OAAO,SAAM;IACb,YAAY,EAAG,YAAY,GAAG,IAAI,CAAO;IAEzC,kBAAkB,UAAQ;IACnC,SAAS,EAAE,eAAe,EAAE,CAAM;IAEzB,gBAAgB,UAAS;IACzB,OAAO,EAAE,MAAM,GAAG,IAAI,CAAQ;IAC9B,OAAO,SAA6E;IACpF,gBAAgB,SAAuE;IACtF,SAAS,qBAA4B;IAEtC,UAAU,UAAS;IACnB,iBAAiB,UAAS;IAC1B,qBAAqB,UAAS;IAC9B,SAAS,UAAS;IAClB,UAAU,UAAS;IACnB,SAAS,UAAS;IAClB,UAAU,UAAS;IAEnB,aAAa,EAAE,yBAAyB,EAAE,CAAM;IAChD,eAAe,UAAQ;IACvB,kBAAkB,UAAS;IAE3B,qBAAqB,UAAS;IAC9B,oBAAoB,EAAE,uCAAuC,CAMpE;IAEO,WAAW,EAAE,8BAA8B,CAYlD;IAEO,gBAAgB,UAAQ;IACxB,aAAa,UAAQ;IACrB,YAAY,UAAS;IAErB,iBAAiB,UAAQ;IACzB,kBAAkB,SAAmB;IAErC,QAAQ,UAAQ;IAChB,SAAS,SAAU;IACnB,OAAO,EAAE,MAAM,GAAG,IAAI,CAAmD;IACzE,QAAQ,EAAE,cAAc,CAAoB;IAC5C,eAAe,SAAmB;IAClC,aAAa,EAAE,OAAO,GAAG,QAAQ,GAAG,MAAM,CAAY;IACrD,SAAS,qBAA4B;IAErC,aAAa,gCAAuC;IACpD,YAAY,uBAA8B;IAC1C,eAAe,+BAAsC;IACrD,YAAY,qBAA4B;IACxC,oBAAoB,qBAA4B;IAChD,cAAc,uBAA8B;IAC5C,YAAY,qBAA4B;IACxC,cAAc,qBAA4B;IAC1C,YAAY,qBAA4B;IACxC,cAAc,qBAA4B;IAC1C,mBAAmB,qBAA4B;IAC/C,cAAc,qBAA4B;IAC1C,iBAAiB,qBAA4B;IAC7C,sBAAsB,qBAA4B;IAClD,iBAAiB,qBAA4B;IAC7C,oBAAoB,mDAA0D;IAExF,QAAQ,CAAC,YAAY,kDAAiB;IACtC,QAAQ,CAAC,qBAAqB,kDAAiB;IAE/C,qBAAqB,UAAS;IAC9B,gBAAgB,EAAE,MAAM,CAAK;IAE7B,UAAU,IAAI,MAAM,GAAG,IAAI;IAQ3B,aAAa,CAAC,KAAK,CAAC,EAAE,KAAK,GAAG,IAAI;IAUlC,aAAa,CAAC,KAAK,CAAC,EAAE,KAAK,GAAG,IAAI;IASlC,yBAAyB,IAAI,IAAI;IAOjC,gBAAgB,IAAI,IAAI;IAOxB,iBAAiB,CAAC,QAAQ,EAAE,cAAc,GAAG,IAAI;IAOjD,QAAQ,IAAI,IAAI;IAIhB,OAAO,CAAC,iBAAiB;yCA9Id,+BAA+B;2CAA/B,+BAA+B;CAyJ3C"}
|
|
@@ -1,18 +1,4 @@
|
|
|
1
1
|
import { SystemModule } from '../shared/menu.dtos';
|
|
2
|
-
export interface TopMenuWidgetItem {
|
|
3
|
-
id?: string | number;
|
|
4
|
-
menuName: string;
|
|
5
|
-
menuUrl?: string | null;
|
|
6
|
-
children?: TopMenuWidgetItem[];
|
|
7
|
-
}
|
|
8
|
-
export interface TopMenuWidgetSearchItem {
|
|
9
|
-
id?: string | number;
|
|
10
|
-
menuTitle: string;
|
|
11
|
-
menuSubTitle: string;
|
|
12
|
-
menuUrl?: string | null;
|
|
13
|
-
iconClass?: string | null;
|
|
14
|
-
isTranslatable?: boolean;
|
|
15
|
-
}
|
|
16
2
|
export interface TopMenuWidgetNameModeItem {
|
|
17
3
|
id: string;
|
|
18
4
|
text: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"top-menu-widget.models.d.ts","sourceRoot":"","sources":["../../../../projects/bayan-core-ui/src/lib/top-menu-widget/top-menu-widget.models.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAEnD,MAAM,WAAW,
|
|
1
|
+
{"version":3,"file":"top-menu-widget.models.d.ts","sourceRoot":"","sources":["../../../../projects/bayan-core-ui/src/lib/top-menu-widget/top-menu-widget.models.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAEnD,MAAM,WAAW,yBAAyB;IACxC,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,OAAO,CAAC;CACnB;AAED,MAAM,WAAW,8BAA8B;IAC7C,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,uBAAuB,CAAC,EAAE,MAAM,CAAC;IACjC,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,gBAAgB,CAAC,EAAE,MAAM,CAAC;CAC3B;AAED,MAAM,WAAW,kCAAkC;IACjD,eAAe,EAAE,MAAM,CAAC;IACxB,WAAW,EAAE,MAAM,CAAC;IACpB,kBAAkB,EAAE,MAAM,CAAC;CAC5B;AAED,MAAM,WAAW,uCAAuC;IACtD,KAAK,EAAE,MAAM,CAAC;IACd,oBAAoB,EAAE,MAAM,CAAC;IAC7B,gBAAgB,EAAE,MAAM,CAAC;IACzB,uBAAuB,EAAE,MAAM,CAAC;IAChC,iBAAiB,EAAE,MAAM,CAAC;CAC3B;AAED,MAAM,WAAW,0BAA0B;IACzC,OAAO,EAAE,OAAO,CAAC;IACjB,YAAY,EAAE,YAAY,CAAC;IAC3B,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC5B"}
|
package/package.json
CHANGED
|
@@ -1,47 +1,36 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@skysoftware-co/bayan-core-widgets-ui",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"peerDependencies": {
|
|
5
|
-
"@angular/common": "19.2.14",
|
|
6
|
-
"@angular/core": "19.2.14",
|
|
7
|
-
"@ngx-translate/core": ">=15.0.0",
|
|
8
|
-
"@skysoftware-co/bayan-components-ui": ">=1.1.0",
|
|
9
|
-
"@skysoftware-co/sky-components-ui": ">=1.3.3",
|
|
10
|
-
"devextreme-angular": ">=23.0.0",
|
|
11
|
-
"@fortawesome/angular-fontawesome": ">=0.14.0",
|
|
12
|
-
"@fortawesome/pro-light-svg-icons": ">=6.0.0",
|
|
13
|
-
"@fortawesome/pro-solid-svg-icons": ">=6.0.0"
|
|
14
|
-
},
|
|
15
|
-
"
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
},
|
|
38
|
-
".": {
|
|
39
|
-
"types": "./index.d.ts",
|
|
40
|
-
"default": "./fesm2022/skysoftware-co-bayan-core-widgets-ui.mjs"
|
|
41
|
-
}
|
|
42
|
-
},
|
|
43
|
-
"sideEffects": false,
|
|
44
|
-
"dependencies": {
|
|
45
|
-
"tslib": "^2.3.0"
|
|
46
|
-
}
|
|
47
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@skysoftware-co/bayan-core-widgets-ui",
|
|
3
|
+
"version": "0.0.4",
|
|
4
|
+
"peerDependencies": {
|
|
5
|
+
"@angular/common": "19.2.14",
|
|
6
|
+
"@angular/core": "19.2.14",
|
|
7
|
+
"@ngx-translate/core": ">=15.0.0",
|
|
8
|
+
"@skysoftware-co/bayan-components-ui": ">=1.1.0",
|
|
9
|
+
"@skysoftware-co/sky-components-ui": ">=1.3.3",
|
|
10
|
+
"devextreme-angular": ">=23.0.0",
|
|
11
|
+
"@fortawesome/angular-fontawesome": ">=0.14.0",
|
|
12
|
+
"@fortawesome/pro-light-svg-icons": ">=6.0.0",
|
|
13
|
+
"@fortawesome/pro-solid-svg-icons": ">=6.0.0"
|
|
14
|
+
},
|
|
15
|
+
"main": "fesm2022/skysoftware-co-bayan-core-widgets-ui.mjs",
|
|
16
|
+
"module": "fesm2022/skysoftware-co-bayan-core-widgets-ui.mjs",
|
|
17
|
+
"typings": "index.d.ts",
|
|
18
|
+
"sideEffects": false,
|
|
19
|
+
"peerDependenciesMeta": {
|
|
20
|
+
"@ngx-translate/core": {
|
|
21
|
+
"optional": true
|
|
22
|
+
},
|
|
23
|
+
"devextreme-angular": {
|
|
24
|
+
"optional": true
|
|
25
|
+
},
|
|
26
|
+
"@fortawesome/angular-fontawesome": {
|
|
27
|
+
"optional": true
|
|
28
|
+
},
|
|
29
|
+
"@fortawesome/pro-light-svg-icons": {
|
|
30
|
+
"optional": true
|
|
31
|
+
},
|
|
32
|
+
"@fortawesome/pro-solid-svg-icons": {
|
|
33
|
+
"optional": true
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|