@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.
Files changed (30) hide show
  1. package/esm2020/lib/atoms/grid/grid.component.mjs +2 -2
  2. package/esm2020/lib/atoms/toaster-alert/toaster-alert.component.mjs +9 -8
  3. package/esm2020/lib/atoms/toaster-alert/toaster-alert.model.mjs +1 -1
  4. package/esm2020/lib/atoms/toaster-alert/toaster-alert.module.mjs +5 -4
  5. package/esm2020/lib/organisms/action-bar/action-bar.component.mjs +3 -3
  6. package/esm2020/lib/pages/job-list-page/job-list-page.component.mjs +3 -3
  7. package/esm2020/lib/templates/contact-list/contact-list-template.component.mjs +3 -3
  8. package/esm2020/projects/component-library/lib/atoms/grid/grid.component.mjs +2 -2
  9. package/esm2020/projects/component-library/lib/atoms/toaster-alert/toaster-alert.component.mjs +9 -8
  10. package/esm2020/projects/component-library/lib/atoms/toaster-alert/toaster-alert.model.mjs +1 -1
  11. package/esm2020/projects/component-library/lib/atoms/toaster-alert/toaster-alert.module.mjs +5 -4
  12. package/esm2020/projects/component-library/lib/organisms/action-bar/action-bar.component.mjs +3 -3
  13. package/esm2020/projects/component-library/lib/pages/job-list-page/job-list-page.component.mjs +3 -3
  14. package/esm2020/projects/component-library/lib/templates/contact-list/contact-list-template.component.mjs +3 -3
  15. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +17 -17
  16. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
  17. package/fesm2015/symphony-talent-component-library.mjs +17 -17
  18. package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
  19. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +17 -17
  20. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
  21. package/fesm2020/symphony-talent-component-library.mjs +17 -17
  22. package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
  23. package/lib/atoms/toaster-alert/toaster-alert.component.d.ts +4 -4
  24. package/lib/atoms/toaster-alert/toaster-alert.model.d.ts +3 -0
  25. package/lib/atoms/toaster-alert/toaster-alert.module.d.ts +2 -1
  26. package/package.json +1 -1
  27. package/projects/component-library/global.scss +1 -0
  28. package/projects/component-library/lib/atoms/toaster-alert/toaster-alert.component.d.ts +4 -4
  29. package/projects/component-library/lib/atoms/toaster-alert/toaster-alert.model.d.ts +3 -0
  30. 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<void>;
9
- checkBulkStatus: EventEmitter<void>;
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
- onCheckBulkStatus(): void;
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"; "checkBulkStatus": "checkBulkStatus"; }, never, never>;
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@symphony-talent/component-library",
3
- "version": "3.51.0",
3
+ "version": "3.52.0",
4
4
  "private": false,
5
5
  "dependencies": {
6
6
  "tslib": "^1.10.0"
@@ -403,6 +403,7 @@ body {
403
403
  font-size: $font-14;
404
404
  font-family: $font-bold;
405
405
  background-color: $color-white;
406
+ border-color: $color-light-gray2;
406
407
  .ag-header-cell-text {
407
408
  color: $color-black;
408
409
  }
@@ -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<void>;
9
- checkBulkStatus: EventEmitter<void>;
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
- onCheckBulkStatus(): void;
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"; "checkBulkStatus": "checkBulkStatus"; }, never, never>;
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
  }