@symphony-talent/component-library 3.51.0 → 3.52.0
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/atoms/grid/grid.component.mjs +2 -2
- package/esm2020/lib/atoms/toaster-alert/toaster-alert.component.mjs +9 -8
- package/esm2020/lib/atoms/toaster-alert/toaster-alert.model.mjs +1 -1
- package/esm2020/lib/atoms/toaster-alert/toaster-alert.module.mjs +5 -4
- package/esm2020/lib/organisms/action-bar/action-bar.component.mjs +3 -3
- package/esm2020/lib/pages/job-list-page/job-list-page.component.mjs +3 -3
- package/esm2020/lib/templates/contact-list/contact-list-template.component.mjs +3 -3
- package/esm2020/projects/component-library/lib/atoms/grid/grid.component.mjs +2 -2
- package/esm2020/projects/component-library/lib/atoms/toaster-alert/toaster-alert.component.mjs +9 -8
- package/esm2020/projects/component-library/lib/atoms/toaster-alert/toaster-alert.model.mjs +1 -1
- package/esm2020/projects/component-library/lib/atoms/toaster-alert/toaster-alert.module.mjs +5 -4
- package/esm2020/projects/component-library/lib/organisms/action-bar/action-bar.component.mjs +3 -3
- package/esm2020/projects/component-library/lib/pages/job-list-page/job-list-page.component.mjs +3 -3
- package/esm2020/projects/component-library/lib/templates/contact-list/contact-list-template.component.mjs +3 -3
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +17 -17
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2015/symphony-talent-component-library.mjs +17 -17
- package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +17 -17
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library.mjs +17 -17
- package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
- package/lib/atoms/toaster-alert/toaster-alert.component.d.ts +4 -4
- package/lib/atoms/toaster-alert/toaster-alert.model.d.ts +3 -0
- package/lib/atoms/toaster-alert/toaster-alert.module.d.ts +2 -1
- package/package.json +1 -1
- package/projects/component-library/global.scss +1 -0
- package/projects/component-library/lib/atoms/toaster-alert/toaster-alert.component.d.ts +4 -4
- package/projects/component-library/lib/atoms/toaster-alert/toaster-alert.model.d.ts +3 -0
- package/projects/component-library/lib/atoms/toaster-alert/toaster-alert.module.d.ts +2 -1
|
@@ -5,15 +5,15 @@ import * as i0 from "@angular/core";
|
|
|
5
5
|
export declare class ToasterAlertComponent implements OnInit, OnDestroy {
|
|
6
6
|
alertModel: ToasterAlertModel;
|
|
7
7
|
showAlert: boolean;
|
|
8
|
-
hideAlert: EventEmitter<
|
|
9
|
-
|
|
8
|
+
hideAlert: EventEmitter<any>;
|
|
9
|
+
refreshClicked: EventEmitter<void>;
|
|
10
10
|
alertTimerSubscription: Subscription;
|
|
11
11
|
timeToShowSubscription: Subscription;
|
|
12
12
|
constructor();
|
|
13
13
|
ngOnInit(): void;
|
|
14
14
|
hideToasterAlert(): void;
|
|
15
|
-
|
|
15
|
+
onRefreshClick(): void;
|
|
16
16
|
ngOnDestroy(): void;
|
|
17
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToasterAlertComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ToasterAlertComponent, "symphony-toaster-alert", never, { "alertModel": "alertModel"; "showAlert": "showAlert"; }, { "hideAlert": "hideAlert"; "
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToasterAlertComponent, "symphony-toaster-alert", never, { "alertModel": "alertModel"; "showAlert": "showAlert"; }, { "hideAlert": "hideAlert"; "refreshClicked": "refreshClicked"; }, never, never>;
|
|
19
19
|
}
|
|
@@ -3,7 +3,10 @@ export declare class ToasterAlertModel {
|
|
|
3
3
|
message: string;
|
|
4
4
|
duration?: number;
|
|
5
5
|
showRefreshIcon?: boolean;
|
|
6
|
+
showCloseIcon?: boolean;
|
|
6
7
|
delay?: number;
|
|
8
|
+
showLoaderIcon?: boolean;
|
|
9
|
+
isFontBold?: boolean;
|
|
7
10
|
}
|
|
8
11
|
export declare enum ToasterAlertType {
|
|
9
12
|
Success = 1,
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./toaster-alert.component";
|
|
3
3
|
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../icon/icon.module";
|
|
4
5
|
export declare class ToasterAlertModule {
|
|
5
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToasterAlertModule, never>;
|
|
6
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ToasterAlertModule, [typeof i1.ToasterAlertComponent], [typeof i2.CommonModule], [typeof i1.ToasterAlertComponent]>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ToasterAlertModule, [typeof i1.ToasterAlertComponent], [typeof i2.CommonModule, typeof i3.IconModule], [typeof i1.ToasterAlertComponent]>;
|
|
7
8
|
static ɵinj: i0.ɵɵInjectorDeclaration<ToasterAlertModule>;
|
|
8
9
|
}
|
package/package.json
CHANGED
|
@@ -5,15 +5,15 @@ import * as i0 from "@angular/core";
|
|
|
5
5
|
export declare class ToasterAlertComponent implements OnInit, OnDestroy {
|
|
6
6
|
alertModel: ToasterAlertModel;
|
|
7
7
|
showAlert: boolean;
|
|
8
|
-
hideAlert: EventEmitter<
|
|
9
|
-
|
|
8
|
+
hideAlert: EventEmitter<any>;
|
|
9
|
+
refreshClicked: EventEmitter<void>;
|
|
10
10
|
alertTimerSubscription: Subscription;
|
|
11
11
|
timeToShowSubscription: Subscription;
|
|
12
12
|
constructor();
|
|
13
13
|
ngOnInit(): void;
|
|
14
14
|
hideToasterAlert(): void;
|
|
15
|
-
|
|
15
|
+
onRefreshClick(): void;
|
|
16
16
|
ngOnDestroy(): void;
|
|
17
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToasterAlertComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ToasterAlertComponent, "symphony-toaster-alert", never, { "alertModel": "alertModel"; "showAlert": "showAlert"; }, { "hideAlert": "hideAlert"; "
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToasterAlertComponent, "symphony-toaster-alert", never, { "alertModel": "alertModel"; "showAlert": "showAlert"; }, { "hideAlert": "hideAlert"; "refreshClicked": "refreshClicked"; }, never, never>;
|
|
19
19
|
}
|
|
@@ -3,7 +3,10 @@ export declare class ToasterAlertModel {
|
|
|
3
3
|
message: string;
|
|
4
4
|
duration?: number;
|
|
5
5
|
showRefreshIcon?: boolean;
|
|
6
|
+
showCloseIcon?: boolean;
|
|
6
7
|
delay?: number;
|
|
8
|
+
showLoaderIcon?: boolean;
|
|
9
|
+
isFontBold?: boolean;
|
|
7
10
|
}
|
|
8
11
|
export declare enum ToasterAlertType {
|
|
9
12
|
Success = 1,
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./toaster-alert.component";
|
|
3
3
|
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../icon/icon.module";
|
|
4
5
|
export declare class ToasterAlertModule {
|
|
5
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToasterAlertModule, never>;
|
|
6
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ToasterAlertModule, [typeof i1.ToasterAlertComponent], [typeof i2.CommonModule], [typeof i1.ToasterAlertComponent]>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ToasterAlertModule, [typeof i1.ToasterAlertComponent], [typeof i2.CommonModule, typeof i3.IconModule], [typeof i1.ToasterAlertComponent]>;
|
|
7
8
|
static ɵinj: i0.ɵɵInjectorDeclaration<ToasterAlertModule>;
|
|
8
9
|
}
|