@fuentis/phoenix-ui 0.0.9-alpha.449 → 0.0.9-alpha.451
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.
|
@@ -23,6 +23,10 @@ export interface TopbarFooterConfig {
|
|
|
23
23
|
guideUrl: string;
|
|
24
24
|
copyrightText: string;
|
|
25
25
|
}
|
|
26
|
+
export interface UrlConfig {
|
|
27
|
+
url: string | null;
|
|
28
|
+
disabled?: boolean;
|
|
29
|
+
}
|
|
26
30
|
export declare class TopbarComponent {
|
|
27
31
|
sidebarConfig: {
|
|
28
32
|
visible: boolean;
|
|
@@ -36,12 +40,12 @@ export declare class TopbarComponent {
|
|
|
36
40
|
hidelogo?: boolean;
|
|
37
41
|
topbarModulesMenu: any[];
|
|
38
42
|
darkModeSelector: any;
|
|
43
|
+
urlConfig?: UrlConfig;
|
|
39
44
|
footerConfig: TopbarFooterConfig;
|
|
40
45
|
onDarkModeSelect: EventEmitter<void>;
|
|
41
46
|
onUserPopoverAction: EventEmitter<string>;
|
|
42
47
|
closeCallback(event: any): void;
|
|
43
48
|
searchConfig: import("@angular/core").InputSignal<SearchTabs[] | undefined>;
|
|
44
|
-
extIncident: any;
|
|
45
49
|
openSidebarPanel(): void;
|
|
46
50
|
private messageService;
|
|
47
51
|
private translateService;
|
|
@@ -54,5 +58,5 @@ export declare class TopbarComponent {
|
|
|
54
58
|
copyToClipboard($event: any, linkUrl: any): void;
|
|
55
59
|
get bindImageUrl(): string;
|
|
56
60
|
static ɵfac: i0.ɵɵFactoryDeclaration<TopbarComponent, never>;
|
|
57
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TopbarComponent, "pho-topbar", never, { "homeUrl": { "alias": "homeUrl"; "required": false; }; "user": { "alias": "user"; "required": false; }; "shortModuleName": { "alias": "shortModuleName"; "required": false; }; "hidelogo": { "alias": "hidelogo"; "required": false; }; "topbarModulesMenu": { "alias": "topbarModulesMenu"; "required": false; }; "darkModeSelector": { "alias": "darkModeSelector"; "required": false; }; "footerConfig": { "alias": "footerConfig"; "required": false; }; "searchConfig": { "alias": "searchConfig"; "required": false; "isSignal": true; }; }, { "onDarkModeSelect": "onDarkModeSelect"; "onUserPopoverAction": "onUserPopoverAction"; }, never, ["*"], true, never>;
|
|
61
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TopbarComponent, "pho-topbar", never, { "homeUrl": { "alias": "homeUrl"; "required": false; }; "user": { "alias": "user"; "required": false; }; "shortModuleName": { "alias": "shortModuleName"; "required": false; }; "hidelogo": { "alias": "hidelogo"; "required": false; }; "topbarModulesMenu": { "alias": "topbarModulesMenu"; "required": false; }; "darkModeSelector": { "alias": "darkModeSelector"; "required": false; }; "urlConfig": { "alias": "urlConfig"; "required": false; }; "footerConfig": { "alias": "footerConfig"; "required": false; }; "searchConfig": { "alias": "searchConfig"; "required": false; "isSignal": true; }; }, { "onDarkModeSelect": "onDarkModeSelect"; "onUserPopoverAction": "onUserPopoverAction"; }, never, ["*"], true, never>;
|
|
58
62
|
}
|