monkey-front-core 0.0.389 → 0.0.390
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/esm2020/lib/components/alerts/alerts.component.mjs +7 -4
- package/esm2020/lib/components/alerts/alerts.module.mjs +20 -4
- package/esm2020/lib/core/interfaces/monkeyecx-config.mjs +1 -1
- package/esm2020/lib/core/services/config/monkeyecx-alerts-config.service.mjs +4 -3
- package/fesm2015/monkey-front-core.mjs +43 -25
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +42 -24
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/lib/components/alerts/alerts.component.d.ts +4 -0
- package/lib/components/alerts/alerts.module.d.ts +4 -3
- package/lib/core/interfaces/monkeyecx-config.d.ts +4 -0
- package/monkey-front-core-0.0.390.tgz +0 -0
- package/package.json +1 -1
- package/monkey-front-core-0.0.389.tgz +0 -0
|
@@ -8,6 +8,10 @@ export declare class AlertsComponent implements OnInit {
|
|
|
8
8
|
_img: string;
|
|
9
9
|
_title: string;
|
|
10
10
|
_message: string;
|
|
11
|
+
_action: {
|
|
12
|
+
href: string;
|
|
13
|
+
label: string;
|
|
14
|
+
} | null;
|
|
11
15
|
constructor(modalService: MonkeyStyleGuideModalService);
|
|
12
16
|
ngOnInit(): void;
|
|
13
17
|
onClose(): void;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./alerts.component";
|
|
3
3
|
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "
|
|
5
|
-
import * as i4 from "
|
|
4
|
+
import * as i3 from "@angular/router";
|
|
5
|
+
import * as i4 from "monkey-style-guide";
|
|
6
|
+
import * as i5 from "@ngx-translate/core";
|
|
6
7
|
export declare class AlertsModule {
|
|
7
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<AlertsModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AlertsModule, [typeof i1.AlertsComponent], [typeof i2.CommonModule, typeof i3.MonkeyButtonModule, typeof
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AlertsModule, [typeof i1.AlertsComponent], [typeof i2.CommonModule, typeof i3.RouterModule, typeof i4.MonkeyButtonModule, typeof i4.MonkeyModalModule, typeof i5.TranslateModule], [typeof i1.AlertsComponent]>;
|
|
9
10
|
static ɵinj: i0.ɵɵInjectorDeclaration<AlertsModule>;
|
|
10
11
|
}
|
|
@@ -110,6 +110,10 @@ export interface MonkeyEcxConfigAlert {
|
|
|
110
110
|
message: string;
|
|
111
111
|
endDate: string;
|
|
112
112
|
noEndDate?: boolean;
|
|
113
|
+
action?: {
|
|
114
|
+
href: string;
|
|
115
|
+
label: string;
|
|
116
|
+
};
|
|
113
117
|
}
|
|
114
118
|
export interface MonkeyEcxConfig {
|
|
115
119
|
program?: MonkeyEcxConfigProgram;
|
|
Binary file
|
package/package.json
CHANGED
|
Binary file
|