@symphony-talent/component-library 3.39.0 → 3.42.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 (65) hide show
  1. package/esm2020/lib/atoms/atoms.module.mjs +8 -4
  2. package/esm2020/lib/atoms/color-sample/color-sample.component.mjs +2 -2
  3. package/esm2020/lib/atoms/color-sample/color-sample.enum.mjs +2 -1
  4. package/esm2020/lib/atoms/phaser/phaser.component.mjs +16 -0
  5. package/esm2020/lib/atoms/phaser/phaser.enum.mjs +14 -0
  6. package/esm2020/lib/atoms/phaser/phaser.module.mjs +18 -0
  7. package/esm2020/lib/molecules/molecules.module.mjs +8 -4
  8. package/esm2020/lib/molecules/phaser-card/phaser-card.component.mjs +23 -0
  9. package/esm2020/lib/molecules/phaser-card/phaser-card.model.mjs +2 -0
  10. package/esm2020/lib/molecules/phaser-card/phaser-card.module.mjs +42 -0
  11. package/esm2020/lib/organisms/invoice-area/invoice-area.component.mjs +7 -8
  12. package/esm2020/lib/organisms/invoice-area/invoice-area.model.mjs +1 -1
  13. package/esm2020/lib/organisms/order-summary/order-summary.component.mjs +4 -4
  14. package/esm2020/lib/organisms/upload-resume-modal/upload-resume-modal.component.mjs +2 -2
  15. package/esm2020/lib/pages/modals/advertise-modal/advertise-modal.component.mjs +50 -32
  16. package/esm2020/projects/component-library/lib/atoms/atoms.module.mjs +8 -4
  17. package/esm2020/projects/component-library/lib/atoms/color-sample/color-sample.component.mjs +2 -2
  18. package/esm2020/projects/component-library/lib/atoms/color-sample/color-sample.enum.mjs +2 -1
  19. package/esm2020/projects/component-library/lib/atoms/phaser/phaser.component.mjs +16 -0
  20. package/esm2020/projects/component-library/lib/atoms/phaser/phaser.enum.mjs +14 -0
  21. package/esm2020/projects/component-library/lib/atoms/phaser/phaser.module.mjs +18 -0
  22. package/esm2020/projects/component-library/lib/molecules/molecules.module.mjs +8 -4
  23. package/esm2020/projects/component-library/lib/molecules/phaser-card/phaser-card.component.mjs +23 -0
  24. package/esm2020/projects/component-library/lib/molecules/phaser-card/phaser-card.model.mjs +2 -0
  25. package/esm2020/projects/component-library/lib/molecules/phaser-card/phaser-card.module.mjs +42 -0
  26. package/esm2020/projects/component-library/lib/organisms/invoice-area/invoice-area.component.mjs +7 -8
  27. package/esm2020/projects/component-library/lib/organisms/invoice-area/invoice-area.model.mjs +1 -1
  28. package/esm2020/projects/component-library/lib/organisms/order-summary/order-summary.component.mjs +4 -4
  29. package/esm2020/projects/component-library/lib/organisms/upload-resume-modal/upload-resume-modal.component.mjs +2 -2
  30. package/esm2020/projects/component-library/lib/pages/modals/advertise-modal/advertise-modal.component.mjs +50 -32
  31. package/esm2020/projects/component-library/public-api.mjs +6 -1
  32. package/esm2020/public-api.mjs +6 -1
  33. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +147 -46
  34. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
  35. package/fesm2015/symphony-talent-component-library.mjs +147 -46
  36. package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
  37. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +147 -46
  38. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
  39. package/fesm2020/symphony-talent-component-library.mjs +147 -46
  40. package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
  41. package/lib/atoms/atoms.module.d.ts +2 -1
  42. package/lib/atoms/color-sample/color-sample.enum.d.ts +1 -0
  43. package/lib/atoms/phaser/phaser.component.d.ts +8 -0
  44. package/lib/atoms/phaser/phaser.enum.d.ts +12 -0
  45. package/lib/atoms/phaser/phaser.module.d.ts +8 -0
  46. package/lib/molecules/molecules.module.d.ts +2 -1
  47. package/lib/molecules/phaser-card/phaser-card.component.d.ts +10 -0
  48. package/lib/molecules/phaser-card/phaser-card.model.d.ts +11 -0
  49. package/lib/molecules/phaser-card/phaser-card.module.d.ts +13 -0
  50. package/lib/organisms/invoice-area/invoice-area.model.d.ts +2 -1
  51. package/lib/organisms/upload-resume-modal/upload-resume-modal.component.d.ts +1 -1
  52. package/package.json +1 -1
  53. package/projects/component-library/lib/atoms/atoms.module.d.ts +2 -1
  54. package/projects/component-library/lib/atoms/color-sample/color-sample.enum.d.ts +1 -0
  55. package/projects/component-library/lib/atoms/phaser/phaser.component.d.ts +8 -0
  56. package/projects/component-library/lib/atoms/phaser/phaser.enum.d.ts +12 -0
  57. package/projects/component-library/lib/atoms/phaser/phaser.module.d.ts +8 -0
  58. package/projects/component-library/lib/molecules/molecules.module.d.ts +2 -1
  59. package/projects/component-library/lib/molecules/phaser-card/phaser-card.component.d.ts +10 -0
  60. package/projects/component-library/lib/molecules/phaser-card/phaser-card.model.d.ts +11 -0
  61. package/projects/component-library/lib/molecules/phaser-card/phaser-card.module.d.ts +13 -0
  62. package/projects/component-library/lib/organisms/invoice-area/invoice-area.model.d.ts +2 -1
  63. package/projects/component-library/lib/organisms/upload-resume-modal/upload-resume-modal.component.d.ts +1 -1
  64. package/projects/component-library/public-api.d.ts +5 -0
  65. package/public-api.d.ts +5 -0
@@ -1930,6 +1930,34 @@ class MultiselectSearchCheckbox {
1930
1930
  class MultiSelectDataModule {
1931
1931
  }
1932
1932
 
1933
+ class PhaserComponent {
1934
+ constructor() { }
1935
+ }
1936
+ PhaserComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PhaserComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1937
+ PhaserComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: PhaserComponent, selector: "symphony-phaser", inputs: { phaser: "phaser", outlineColor: "outlineColor" }, ngImport: i0, template: "<div>\n <svg\n width=\"140\"\n height=\"140\"\n viewBox=\"0 0 140 140\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <path\n [class]=\"outlineColor\"\n fill-rule=\"evenodd\"\n clip-rule=\"evenodd\"\n [attr.d]=\"phaser\"\n fill=\"black\"\n />\n </svg>\n</div>\n", styles: [".color-sample{float:left;border-radius:50%;height:30px;width:30px;margin-top:10px;margin-right:20px}.background-color-black{background-color:#000}.background-color-grey{background-color:#bababa}.background-color-light-grey-1{background-color:#d0d0d0}.background-color-light-grey-2{background-color:#d9d9d9}.background-color-light-grey-3{background-color:#ebebeb}.background-color-medium-black{background-color:#464646}.background-color-space-grey{background-color:#141414}.background-color-white{background-color:#fff}.background-color-green{background-color:#00d56b}.background-color-ice-blue{background-color:#03bcce}.background-color-lavender{background-color:#af5af9}.background-color-orange{background-color:#ffa700}.background-color-pink{background-color:#ff6cff}.background-color-purple{background-color:#801afc}.background-color-red{background-color:#f0001e}.background-color-skyblue{background-color:#007dbb}.background-color-turquoise{background-color:#00ebb5}.background-color-yellow{background-color:#fde928}.background-color-cyan{background-color:#00ffd8}.background-color-strong-orange{background-color:#ffa700}.background-color-soft-lime-green{background-color:#67f95a}.background-color-bright-violet{background-color:#7428fd}.background-color-lime-green{background-color:#00bb5e}.background-color-black{fill:#000}.background-color-yellow{fill:#fde928}\n"] });
1938
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PhaserComponent, decorators: [{
1939
+ type: Component,
1940
+ args: [{ selector: 'symphony-phaser', template: "<div>\n <svg\n width=\"140\"\n height=\"140\"\n viewBox=\"0 0 140 140\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <path\n [class]=\"outlineColor\"\n fill-rule=\"evenodd\"\n clip-rule=\"evenodd\"\n [attr.d]=\"phaser\"\n fill=\"black\"\n />\n </svg>\n</div>\n", styles: [".color-sample{float:left;border-radius:50%;height:30px;width:30px;margin-top:10px;margin-right:20px}.background-color-black{background-color:#000}.background-color-grey{background-color:#bababa}.background-color-light-grey-1{background-color:#d0d0d0}.background-color-light-grey-2{background-color:#d9d9d9}.background-color-light-grey-3{background-color:#ebebeb}.background-color-medium-black{background-color:#464646}.background-color-space-grey{background-color:#141414}.background-color-white{background-color:#fff}.background-color-green{background-color:#00d56b}.background-color-ice-blue{background-color:#03bcce}.background-color-lavender{background-color:#af5af9}.background-color-orange{background-color:#ffa700}.background-color-pink{background-color:#ff6cff}.background-color-purple{background-color:#801afc}.background-color-red{background-color:#f0001e}.background-color-skyblue{background-color:#007dbb}.background-color-turquoise{background-color:#00ebb5}.background-color-yellow{background-color:#fde928}.background-color-cyan{background-color:#00ffd8}.background-color-strong-orange{background-color:#ffa700}.background-color-soft-lime-green{background-color:#67f95a}.background-color-bright-violet{background-color:#7428fd}.background-color-lime-green{background-color:#00bb5e}.background-color-black{fill:#000}.background-color-yellow{fill:#fde928}\n"] }]
1941
+ }], ctorParameters: function () { return []; }, propDecorators: { phaser: [{
1942
+ type: Input
1943
+ }], outlineColor: [{
1944
+ type: Input
1945
+ }] } });
1946
+
1947
+ class PhaserModule {
1948
+ }
1949
+ PhaserModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PhaserModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1950
+ PhaserModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PhaserModule, declarations: [PhaserComponent], imports: [CommonModule], exports: [PhaserComponent] });
1951
+ PhaserModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PhaserModule, imports: [[CommonModule]] });
1952
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PhaserModule, decorators: [{
1953
+ type: NgModule,
1954
+ args: [{
1955
+ declarations: [PhaserComponent],
1956
+ imports: [CommonModule],
1957
+ exports: [PhaserComponent]
1958
+ }]
1959
+ }] });
1960
+
1933
1961
  class AtomsModule {
1934
1962
  }
1935
1963
  AtomsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AtomsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
@@ -1960,7 +1988,8 @@ AtomsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "1
1960
1988
  SfxProgressBarModule,
1961
1989
  TooltipWrapperModule,
1962
1990
  InputSearchCheckboxDropdownModule,
1963
- InputChipsModule] });
1991
+ InputChipsModule,
1992
+ PhaserModule] });
1964
1993
  AtomsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AtomsModule, imports: [[], ButtonModule,
1965
1994
  ContextualMenuModule,
1966
1995
  AvatarModule,
@@ -1988,7 +2017,8 @@ AtomsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "1
1988
2017
  SfxProgressBarModule,
1989
2018
  TooltipWrapperModule,
1990
2019
  InputSearchCheckboxDropdownModule,
1991
- InputChipsModule] });
2020
+ InputChipsModule,
2021
+ PhaserModule] });
1992
2022
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AtomsModule, decorators: [{
1993
2023
  type: NgModule,
1994
2024
  args: [{
@@ -2022,7 +2052,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
2022
2052
  SfxProgressBarModule,
2023
2053
  TooltipWrapperModule,
2024
2054
  InputSearchCheckboxDropdownModule,
2025
- InputChipsModule
2055
+ InputChipsModule,
2056
+ PhaserModule
2026
2057
  ]
2027
2058
  }]
2028
2059
  }] });
@@ -2471,6 +2502,55 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
2471
2502
  }]
2472
2503
  }] });
2473
2504
 
2505
+ class PhaserCardComponent {
2506
+ constructor() { }
2507
+ }
2508
+ PhaserCardComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PhaserCardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
2509
+ PhaserCardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: PhaserCardComponent, selector: "symphony-phaser-card", inputs: { model: "model", cardHeightPx: "cardHeightPx", cardWidthPx: "cardWidthPx" }, ngImport: i0, template: "<div\n *ngIf=\"model\"\n class=\"card-item-wrapper\"\n [style.height.px]=\"cardHeightPx\"\n [style.width.px]=\"cardWidthPx\"\n>\n <div class=\"card-item\">\n <div class=\"card-phaser-wrapper snapIn\" [class]=\"model.backgroundColor\">\n <symphony-phaser\n [phaser]=\"model.phaserState\"\n [outlineColor]=\"model.phaserOutlineColor\"\n ></symphony-phaser>\n </div>\n\n <div class=\"card-content-wrapper snapInContent\">\n <div class=\"card-title-wrap sfx-d-flex\">\n <div class=\"card-icon\">\n <symphony-icon [icon]=\"'si-info'\"></symphony-icon>\n </div>\n <div class=\"card-title\">\n <symphony-h5\n [text]=\"model.eyebrowText\"\n title=\"{{ model.eyebrowText }}\"\n class=\"sfx-ellipse\"\n ></symphony-h5>\n </div>\n </div>\n <div class=\"card-description\">\n <symphony-h3\n [text]=\"model.messageBody\"\n title=\"{{ model.messageBody }}\"\n ></symphony-h3>\n </div>\n </div>\n </div>\n</div>\n", styles: [".color-sample{float:left;border-radius:50%;height:30px;width:30px;margin-top:10px;margin-right:20px}.background-color-black{background-color:#000}.background-color-grey{background-color:#bababa}.background-color-light-grey-1{background-color:#d0d0d0}.background-color-light-grey-2{background-color:#d9d9d9}.background-color-light-grey-3{background-color:#ebebeb}.background-color-medium-black{background-color:#464646}.background-color-space-grey{background-color:#141414}.background-color-white{background-color:#fff}.background-color-green{background-color:#00d56b}.background-color-ice-blue{background-color:#03bcce}.background-color-lavender{background-color:#af5af9}.background-color-orange{background-color:#ffa700}.background-color-pink{background-color:#ff6cff}.background-color-purple{background-color:#801afc}.background-color-red{background-color:#f0001e}.background-color-skyblue{background-color:#007dbb}.background-color-turquoise{background-color:#00ebb5}.background-color-yellow{background-color:#fde928}.background-color-cyan{background-color:#00ffd8}.background-color-strong-orange{background-color:#ffa700}.background-color-soft-lime-green{background-color:#67f95a}.background-color-bright-violet{background-color:#7428fd}.background-color-lime-green{background-color:#00bb5e}.card-item-wrapper{position:relative;overflow:hidden;box-shadow:0 4px 4px #00000040;height:420px}.card-item-wrapper .card-phaser-wrapper{height:200px;display:flex;justify-content:center;align-items:center}.card-item-wrapper .card-item{transition:.2s;cursor:pointer;transform-origin:bottom;animation-duration:2s;animation-iteration-count:1}.card-item-wrapper .card-item .card-content-wrapper{padding:30px;background-color:#fff}.card-item-wrapper .card-title-wrap{margin-bottom:11px}.card-item-wrapper .card-title-wrap h5{font-family:neuzeit_groteskregular,sans-serif;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical;overflow:hidden;white-space:normal}.card-item-wrapper .card-description h3{display:-webkit-box;-webkit-line-clamp:4;-webkit-box-orient:vertical;overflow:hidden}.card-item-wrapper .card-icon{padding-right:8px}.snapIn{animation:snapIn .75s ease-in-out 0s}@keyframes snapIn{0%{height:420px}25%{height:190px}50%{height:195px}to{height:200px}}.snapInContent{animation:snapInContent .75s ease-in-out 0s}@keyframes snapInContent{0%{transform:translateY(200px);height:0;opacity:0}25%{opacity:1}50%{transform:translateY(-20px);opacity:1}to{transform:translateY(0);height:220px;opacity:1}}\n"], components: [{ type: PhaserComponent, selector: "symphony-phaser", inputs: ["phaser", "outlineColor"] }, { type: IconComponent, selector: "symphony-icon", inputs: ["icon", "isSecondary", "size", "iconColor"], outputs: ["clicked"] }, { type: H5Component, selector: "symphony-h5", inputs: ["text", "isSecondary"] }, { type: H3Component, selector: "symphony-h3", inputs: ["text", "isSecondary"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
2510
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PhaserCardComponent, decorators: [{
2511
+ type: Component,
2512
+ args: [{ selector: 'symphony-phaser-card', encapsulation: ViewEncapsulation.None, template: "<div\n *ngIf=\"model\"\n class=\"card-item-wrapper\"\n [style.height.px]=\"cardHeightPx\"\n [style.width.px]=\"cardWidthPx\"\n>\n <div class=\"card-item\">\n <div class=\"card-phaser-wrapper snapIn\" [class]=\"model.backgroundColor\">\n <symphony-phaser\n [phaser]=\"model.phaserState\"\n [outlineColor]=\"model.phaserOutlineColor\"\n ></symphony-phaser>\n </div>\n\n <div class=\"card-content-wrapper snapInContent\">\n <div class=\"card-title-wrap sfx-d-flex\">\n <div class=\"card-icon\">\n <symphony-icon [icon]=\"'si-info'\"></symphony-icon>\n </div>\n <div class=\"card-title\">\n <symphony-h5\n [text]=\"model.eyebrowText\"\n title=\"{{ model.eyebrowText }}\"\n class=\"sfx-ellipse\"\n ></symphony-h5>\n </div>\n </div>\n <div class=\"card-description\">\n <symphony-h3\n [text]=\"model.messageBody\"\n title=\"{{ model.messageBody }}\"\n ></symphony-h3>\n </div>\n </div>\n </div>\n</div>\n", styles: [".color-sample{float:left;border-radius:50%;height:30px;width:30px;margin-top:10px;margin-right:20px}.background-color-black{background-color:#000}.background-color-grey{background-color:#bababa}.background-color-light-grey-1{background-color:#d0d0d0}.background-color-light-grey-2{background-color:#d9d9d9}.background-color-light-grey-3{background-color:#ebebeb}.background-color-medium-black{background-color:#464646}.background-color-space-grey{background-color:#141414}.background-color-white{background-color:#fff}.background-color-green{background-color:#00d56b}.background-color-ice-blue{background-color:#03bcce}.background-color-lavender{background-color:#af5af9}.background-color-orange{background-color:#ffa700}.background-color-pink{background-color:#ff6cff}.background-color-purple{background-color:#801afc}.background-color-red{background-color:#f0001e}.background-color-skyblue{background-color:#007dbb}.background-color-turquoise{background-color:#00ebb5}.background-color-yellow{background-color:#fde928}.background-color-cyan{background-color:#00ffd8}.background-color-strong-orange{background-color:#ffa700}.background-color-soft-lime-green{background-color:#67f95a}.background-color-bright-violet{background-color:#7428fd}.background-color-lime-green{background-color:#00bb5e}.card-item-wrapper{position:relative;overflow:hidden;box-shadow:0 4px 4px #00000040;height:420px}.card-item-wrapper .card-phaser-wrapper{height:200px;display:flex;justify-content:center;align-items:center}.card-item-wrapper .card-item{transition:.2s;cursor:pointer;transform-origin:bottom;animation-duration:2s;animation-iteration-count:1}.card-item-wrapper .card-item .card-content-wrapper{padding:30px;background-color:#fff}.card-item-wrapper .card-title-wrap{margin-bottom:11px}.card-item-wrapper .card-title-wrap h5{font-family:neuzeit_groteskregular,sans-serif;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical;overflow:hidden;white-space:normal}.card-item-wrapper .card-description h3{display:-webkit-box;-webkit-line-clamp:4;-webkit-box-orient:vertical;overflow:hidden}.card-item-wrapper .card-icon{padding-right:8px}.snapIn{animation:snapIn .75s ease-in-out 0s}@keyframes snapIn{0%{height:420px}25%{height:190px}50%{height:195px}to{height:200px}}.snapInContent{animation:snapInContent .75s ease-in-out 0s}@keyframes snapInContent{0%{transform:translateY(200px);height:0;opacity:0}25%{opacity:1}50%{transform:translateY(-20px);opacity:1}to{transform:translateY(0);height:220px;opacity:1}}\n"] }]
2513
+ }], ctorParameters: function () { return []; }, propDecorators: { model: [{
2514
+ type: Input
2515
+ }], cardHeightPx: [{
2516
+ type: Input
2517
+ }], cardWidthPx: [{
2518
+ type: Input
2519
+ }] } });
2520
+
2521
+ class PhaserCardModule {
2522
+ }
2523
+ PhaserCardModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PhaserCardModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2524
+ PhaserCardModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PhaserCardModule, declarations: [PhaserCardComponent], imports: [CommonModule,
2525
+ IconModule,
2526
+ H3Module,
2527
+ H5Module,
2528
+ ParagraphModule,
2529
+ PhaserModule], exports: [PhaserCardComponent] });
2530
+ PhaserCardModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PhaserCardModule, imports: [[
2531
+ CommonModule,
2532
+ IconModule,
2533
+ H3Module,
2534
+ H5Module,
2535
+ ParagraphModule,
2536
+ PhaserModule
2537
+ ]] });
2538
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: PhaserCardModule, decorators: [{
2539
+ type: NgModule,
2540
+ args: [{
2541
+ declarations: [PhaserCardComponent],
2542
+ imports: [
2543
+ CommonModule,
2544
+ IconModule,
2545
+ H3Module,
2546
+ H5Module,
2547
+ ParagraphModule,
2548
+ PhaserModule
2549
+ ],
2550
+ exports: [PhaserCardComponent]
2551
+ }]
2552
+ }] });
2553
+
2474
2554
  class ColorSampleComponent {
2475
2555
  constructor() { }
2476
2556
  ngOnInit() {
@@ -2478,10 +2558,10 @@ class ColorSampleComponent {
2478
2558
  }
2479
2559
  }
2480
2560
  ColorSampleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSampleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
2481
- ColorSampleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: ColorSampleComponent, selector: "symphony-color-sample", inputs: { color: "color" }, ngImport: i0, template: "<div\n class=\"color-sample\"\n [ngClass]=\"bgColor\"\n [ngStyle]=\"{\n border: color === 'background-color-white' ? '1px solid #000' : 'none'\n }\"\n></div>\n", styles: [".color-sample{float:left;border-radius:50%;height:30px;width:30px;margin-top:10px;margin-right:20px}.background-color-black{background-color:#000}.background-color-grey{background-color:#bababa}.background-color-light-grey-1{background-color:#d0d0d0}.background-color-light-grey-2{background-color:#d9d9d9}.background-color-medium-black{background-color:#464646}.background-color-space-grey{background-color:#141414}.background-color-white{background-color:#fff}.background-color-green{background-color:#00d56b}.background-color-ice-blue{background-color:#03bcce}.background-color-lavender{background-color:#af5af9}.background-color-orange{background-color:#ffa700}.background-color-pink{background-color:#ff6cff}.background-color-purple{background-color:#801afc}.background-color-red{background-color:#f0001e}.background-color-skyblue{background-color:#007dbb}.background-color-turquoise{background-color:#00ebb5}.background-color-yellow{background-color:#fde928}.background-color-cyan{background-color:#00ffd8}.background-color-strong-orange{background-color:#ffa700}.background-color-soft-lime-green{background-color:#67f95a}.background-color-bright-violet{background-color:#7428fd}.background-color-lime-green{background-color:#00bb5e}\n"], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] });
2561
+ ColorSampleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: ColorSampleComponent, selector: "symphony-color-sample", inputs: { color: "color" }, ngImport: i0, template: "<div\n class=\"color-sample\"\n [ngClass]=\"bgColor\"\n [ngStyle]=\"{\n border: color === 'background-color-white' ? '1px solid #000' : 'none'\n }\"\n></div>\n", styles: [".color-sample{float:left;border-radius:50%;height:30px;width:30px;margin-top:10px;margin-right:20px}.background-color-black{background-color:#000}.background-color-grey{background-color:#bababa}.background-color-light-grey-1{background-color:#d0d0d0}.background-color-light-grey-2{background-color:#d9d9d9}.background-color-light-grey-3{background-color:#ebebeb}.background-color-medium-black{background-color:#464646}.background-color-space-grey{background-color:#141414}.background-color-white{background-color:#fff}.background-color-green{background-color:#00d56b}.background-color-ice-blue{background-color:#03bcce}.background-color-lavender{background-color:#af5af9}.background-color-orange{background-color:#ffa700}.background-color-pink{background-color:#ff6cff}.background-color-purple{background-color:#801afc}.background-color-red{background-color:#f0001e}.background-color-skyblue{background-color:#007dbb}.background-color-turquoise{background-color:#00ebb5}.background-color-yellow{background-color:#fde928}.background-color-cyan{background-color:#00ffd8}.background-color-strong-orange{background-color:#ffa700}.background-color-soft-lime-green{background-color:#67f95a}.background-color-bright-violet{background-color:#7428fd}.background-color-lime-green{background-color:#00bb5e}\n"], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] });
2482
2562
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ColorSampleComponent, decorators: [{
2483
2563
  type: Component,
2484
- args: [{ selector: 'symphony-color-sample', template: "<div\n class=\"color-sample\"\n [ngClass]=\"bgColor\"\n [ngStyle]=\"{\n border: color === 'background-color-white' ? '1px solid #000' : 'none'\n }\"\n></div>\n", styles: [".color-sample{float:left;border-radius:50%;height:30px;width:30px;margin-top:10px;margin-right:20px}.background-color-black{background-color:#000}.background-color-grey{background-color:#bababa}.background-color-light-grey-1{background-color:#d0d0d0}.background-color-light-grey-2{background-color:#d9d9d9}.background-color-medium-black{background-color:#464646}.background-color-space-grey{background-color:#141414}.background-color-white{background-color:#fff}.background-color-green{background-color:#00d56b}.background-color-ice-blue{background-color:#03bcce}.background-color-lavender{background-color:#af5af9}.background-color-orange{background-color:#ffa700}.background-color-pink{background-color:#ff6cff}.background-color-purple{background-color:#801afc}.background-color-red{background-color:#f0001e}.background-color-skyblue{background-color:#007dbb}.background-color-turquoise{background-color:#00ebb5}.background-color-yellow{background-color:#fde928}.background-color-cyan{background-color:#00ffd8}.background-color-strong-orange{background-color:#ffa700}.background-color-soft-lime-green{background-color:#67f95a}.background-color-bright-violet{background-color:#7428fd}.background-color-lime-green{background-color:#00bb5e}\n"] }]
2564
+ args: [{ selector: 'symphony-color-sample', template: "<div\n class=\"color-sample\"\n [ngClass]=\"bgColor\"\n [ngStyle]=\"{\n border: color === 'background-color-white' ? '1px solid #000' : 'none'\n }\"\n></div>\n", styles: [".color-sample{float:left;border-radius:50%;height:30px;width:30px;margin-top:10px;margin-right:20px}.background-color-black{background-color:#000}.background-color-grey{background-color:#bababa}.background-color-light-grey-1{background-color:#d0d0d0}.background-color-light-grey-2{background-color:#d9d9d9}.background-color-light-grey-3{background-color:#ebebeb}.background-color-medium-black{background-color:#464646}.background-color-space-grey{background-color:#141414}.background-color-white{background-color:#fff}.background-color-green{background-color:#00d56b}.background-color-ice-blue{background-color:#03bcce}.background-color-lavender{background-color:#af5af9}.background-color-orange{background-color:#ffa700}.background-color-pink{background-color:#ff6cff}.background-color-purple{background-color:#801afc}.background-color-red{background-color:#f0001e}.background-color-skyblue{background-color:#007dbb}.background-color-turquoise{background-color:#00ebb5}.background-color-yellow{background-color:#fde928}.background-color-cyan{background-color:#00ffd8}.background-color-strong-orange{background-color:#ffa700}.background-color-soft-lime-green{background-color:#67f95a}.background-color-bright-violet{background-color:#7428fd}.background-color-lime-green{background-color:#00bb5e}\n"] }]
2485
2565
  }], ctorParameters: function () { return []; }, propDecorators: { color: [{
2486
2566
  type: Input
2487
2567
  }] } });
@@ -2718,7 +2798,8 @@ MoleculesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version
2718
2798
  DocumentManagementItemModule], exports: [PillsModule,
2719
2799
  BreadcrumbModule,
2720
2800
  FeedbackCardModule,
2721
- DocumentManagementItemModule] });
2801
+ DocumentManagementItemModule,
2802
+ PhaserCardModule] });
2722
2803
  MoleculesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: MoleculesModule, imports: [[
2723
2804
  CommonModule,
2724
2805
  AvatarModule,
@@ -2740,7 +2821,8 @@ MoleculesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version
2740
2821
  ], PillsModule,
2741
2822
  BreadcrumbModule,
2742
2823
  FeedbackCardModule,
2743
- DocumentManagementItemModule] });
2824
+ DocumentManagementItemModule,
2825
+ PhaserCardModule] });
2744
2826
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: MoleculesModule, decorators: [{
2745
2827
  type: NgModule,
2746
2828
  args: [{
@@ -2768,7 +2850,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
2768
2850
  PillsModule,
2769
2851
  BreadcrumbModule,
2770
2852
  FeedbackCardModule,
2771
- DocumentManagementItemModule
2853
+ DocumentManagementItemModule,
2854
+ PhaserCardModule
2772
2855
  ]
2773
2856
  }]
2774
2857
  }] });
@@ -2978,7 +3061,7 @@ class UploadResumeModalComponent {
2978
3061
  this.docTypeDropdowChange.emit(selectedModel.value);
2979
3062
  }
2980
3063
  onResumeCheckSelect(updateResumeCheckEvent) {
2981
- this.updateResumeChecked.emit(updateResumeCheckEvent.label);
3064
+ this.updateResumeChecked.emit(updateResumeCheckEvent);
2982
3065
  }
2983
3066
  }
2984
3067
  UploadResumeModalComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: UploadResumeModalComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
@@ -4965,15 +5048,15 @@ class InvoiceAreaComponent {
4965
5048
  constructor() {
4966
5049
  this.model = {
4967
5050
  lineItems: [],
4968
- title: '',
5051
+ jobsToAdvertise: '',
4969
5052
  };
4970
5053
  }
4971
5054
  }
4972
5055
  InvoiceAreaComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InvoiceAreaComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
4973
- InvoiceAreaComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: InvoiceAreaComponent, selector: "symphony-invoice-area", inputs: { model: "model" }, ngImport: i0, template: "<div class=\"job-type-summary sfx-px-20\">\n <div class=\"job-type-title\">\n <symphony-h5 [text]=\"model.title\"></symphony-h5>\n </div>\n <ul class=\"invoice-list list-unstyled sfx-mb-20\">\n <li class=\"invoice-line-item\" *ngFor=\"let lineItem of model.lineItems\">\n <symphony-invoice-line-item\n [model]=\"lineItem\"\n ></symphony-invoice-line-item>\n </li>\n </ul>\n <symphony-invoice-line-item\n [model]=\"model.total\"\n ></symphony-invoice-line-item>\n</div>\n", styles: [".job-type-summary{border-bottom:1px solid #d9d9d9}\n"], components: [{ type: H5Component, selector: "symphony-h5", inputs: ["text", "isSecondary"] }, { type: InvoiceLineItemComponent, selector: "symphony-invoice-line-item", inputs: ["model"] }], directives: [{ type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
5056
+ InvoiceAreaComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: InvoiceAreaComponent, selector: "symphony-invoice-area", inputs: { model: "model" }, ngImport: i0, template: "<div class=\"job-type-summary sfx-px-20\">\n <ul class=\"invoice-list list-unstyled sfx-mb-20\">\n <li class=\"invoice-line-item\" *ngFor=\"let lineItem of model.lineItems\">\n <symphony-invoice-line-item\n [model]=\"lineItem\"\n ></symphony-invoice-line-item>\n </li>\n </ul>\n <div class=\"sfx-mb-20\">\n <symphony-invoice-line-item\n [model]=\"model.total\"\n ></symphony-invoice-line-item>\n </div>\n <span>{{model.jobsToAdvertise}}</span>\n <div class=\"job-bold-txt\">\n <symphony-invoice-line-item\n [model]=\"model.subTotal\"\n ></symphony-invoice-line-item>\n </div>\n</div>", styles: [".job-type-summary{border-bottom:1px solid #d9d9d9;padding-bottom:.3rem}.job-bold-txt .body-copy-primary{font-family:neuzeit_groteskbold,sans-serif}\n"], components: [{ type: InvoiceLineItemComponent, selector: "symphony-invoice-line-item", inputs: ["model"] }], directives: [{ type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], encapsulation: i0.ViewEncapsulation.None });
4974
5057
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InvoiceAreaComponent, decorators: [{
4975
5058
  type: Component,
4976
- args: [{ selector: 'symphony-invoice-area', template: "<div class=\"job-type-summary sfx-px-20\">\n <div class=\"job-type-title\">\n <symphony-h5 [text]=\"model.title\"></symphony-h5>\n </div>\n <ul class=\"invoice-list list-unstyled sfx-mb-20\">\n <li class=\"invoice-line-item\" *ngFor=\"let lineItem of model.lineItems\">\n <symphony-invoice-line-item\n [model]=\"lineItem\"\n ></symphony-invoice-line-item>\n </li>\n </ul>\n <symphony-invoice-line-item\n [model]=\"model.total\"\n ></symphony-invoice-line-item>\n</div>\n", styles: [".job-type-summary{border-bottom:1px solid #d9d9d9}\n"] }]
5059
+ args: [{ selector: 'symphony-invoice-area', encapsulation: ViewEncapsulation.None, template: "<div class=\"job-type-summary sfx-px-20\">\n <ul class=\"invoice-list list-unstyled sfx-mb-20\">\n <li class=\"invoice-line-item\" *ngFor=\"let lineItem of model.lineItems\">\n <symphony-invoice-line-item\n [model]=\"lineItem\"\n ></symphony-invoice-line-item>\n </li>\n </ul>\n <div class=\"sfx-mb-20\">\n <symphony-invoice-line-item\n [model]=\"model.total\"\n ></symphony-invoice-line-item>\n </div>\n <span>{{model.jobsToAdvertise}}</span>\n <div class=\"job-bold-txt\">\n <symphony-invoice-line-item\n [model]=\"model.subTotal\"\n ></symphony-invoice-line-item>\n </div>\n</div>", styles: [".job-type-summary{border-bottom:1px solid #d9d9d9;padding-bottom:.3rem}.job-bold-txt .body-copy-primary{font-family:neuzeit_groteskbold,sans-serif}\n"] }]
4977
5060
  }], ctorParameters: function () { return []; }, propDecorators: { model: [{
4978
5061
  type: Input
4979
5062
  }] } });
@@ -4987,10 +5070,10 @@ class OrderSummaryComponent {
4987
5070
  }
4988
5071
  }
4989
5072
  OrderSummaryComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: OrderSummaryComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
4990
- OrderSummaryComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: OrderSummaryComponent, selector: "symphony-order-summary", inputs: { model: "model" }, ngImport: i0, template: "<section class=\"order-summary\">\n <symphony-h4>{{ model.title }}</symphony-h4>\n <ul class=\"invoice-area-list list-unstyled sfx-mb-20\">\n <li\n class=\"invoice-area-item\"\n *ngFor=\"let invoiceArea of model.invoiceAreas\"\n >\n <symphony-invoice-area [model]=\"invoiceArea\"></symphony-invoice-area>\n </li>\n </ul>\n <symphony-invoice-line-item\n [model]=\"model.total\"\n ></symphony-invoice-line-item>\n</section>\n", styles: [""], components: [{ type: H4Component, selector: "symphony-h4", inputs: ["text", "isSecondary"] }, { type: InvoiceAreaComponent, selector: "symphony-invoice-area", inputs: ["model"] }, { type: InvoiceLineItemComponent, selector: "symphony-invoice-line-item", inputs: ["model"] }], directives: [{ type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
5073
+ OrderSummaryComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: OrderSummaryComponent, selector: "symphony-order-summary", inputs: { model: "model" }, ngImport: i0, template: "<section class=\"order-summary\">\n <symphony-h4>{{ model.title }}</symphony-h4>\n <ul class=\"invoice-area-list list-unstyled sfx-mb-20\">\n <li\n class=\"invoice-area-item\"\n *ngFor=\"let invoiceArea of model.invoiceAreas\"\n >\n <symphony-invoice-area [model]=\"invoiceArea\"></symphony-invoice-area>\n </li>\n </ul>\n <div class=\"total-wrap sfx-pb-10\" *ngIf=\"model.invoiceAreas.length > 0\">\n <symphony-invoice-line-item\n [model]=\"model.total\"\n ></symphony-invoice-line-item>\n </div>\n</section>\n", styles: [".total-wrap{border-bottom:1px solid #000}.total-wrap .text-right p{font-family:neuzeit_groteskbold,sans-serif}\n"], components: [{ type: H4Component, selector: "symphony-h4", inputs: ["text", "isSecondary"] }, { type: InvoiceAreaComponent, selector: "symphony-invoice-area", inputs: ["model"] }, { type: InvoiceLineItemComponent, selector: "symphony-invoice-line-item", inputs: ["model"] }], directives: [{ type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
4991
5074
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: OrderSummaryComponent, decorators: [{
4992
5075
  type: Component,
4993
- args: [{ selector: 'symphony-order-summary', template: "<section class=\"order-summary\">\n <symphony-h4>{{ model.title }}</symphony-h4>\n <ul class=\"invoice-area-list list-unstyled sfx-mb-20\">\n <li\n class=\"invoice-area-item\"\n *ngFor=\"let invoiceArea of model.invoiceAreas\"\n >\n <symphony-invoice-area [model]=\"invoiceArea\"></symphony-invoice-area>\n </li>\n </ul>\n <symphony-invoice-line-item\n [model]=\"model.total\"\n ></symphony-invoice-line-item>\n</section>\n", styles: [""] }]
5076
+ args: [{ selector: 'symphony-order-summary', encapsulation: ViewEncapsulation.None, template: "<section class=\"order-summary\">\n <symphony-h4>{{ model.title }}</symphony-h4>\n <ul class=\"invoice-area-list list-unstyled sfx-mb-20\">\n <li\n class=\"invoice-area-item\"\n *ngFor=\"let invoiceArea of model.invoiceAreas\"\n >\n <symphony-invoice-area [model]=\"invoiceArea\"></symphony-invoice-area>\n </li>\n </ul>\n <div class=\"total-wrap sfx-pb-10\" *ngIf=\"model.invoiceAreas.length > 0\">\n <symphony-invoice-line-item\n [model]=\"model.total\"\n ></symphony-invoice-line-item>\n </div>\n</section>\n", styles: [".total-wrap{border-bottom:1px solid #000}.total-wrap .text-right p{font-family:neuzeit_groteskbold,sans-serif}\n"] }]
4994
5077
  }], ctorParameters: function () { return []; }, propDecorators: { model: [{
4995
5078
  type: Input
4996
5079
  }] } });
@@ -5025,12 +5108,15 @@ class AdvertiseModalComponent {
5025
5108
  ngOnInit() {
5026
5109
  this.initialiseDefaultValues();
5027
5110
  this.updateModalHeader();
5028
- this.updateOrderSummary();
5111
+ const selectedJobBoards = this.model.jobBoards.filter((jb) => jb.isSelected).length;
5112
+ if (selectedJobBoards > 0) {
5113
+ this.updateOrderSummary();
5114
+ }
5029
5115
  this.cancelContent = {
5030
5116
  title: 'Are you sure you want to abandon your order?',
5031
5117
  content: 'All selections will be deleted and you will have to start over.',
5032
5118
  btnPrimary: 'Continue Order',
5033
- btnSecondary: 'Abandon Order'
5119
+ btnSecondary: 'Abandon Order',
5034
5120
  };
5035
5121
  }
5036
5122
  ngOnChanges(changes) {
@@ -5041,29 +5127,8 @@ class AdvertiseModalComponent {
5041
5127
  this.jobCount = this.model.jobsToAdvertise.length;
5042
5128
  this.orderSummary = {
5043
5129
  title: 'Your Order',
5044
- invoiceAreas: [
5045
- {
5046
- lineItems: [],
5047
- title: 'Pay-Per-Click',
5048
- total: {
5049
- textLeft: 'Cost Programatic Boards',
5050
- textRight: `x (${this.jobCount}) Jobs = $0`
5051
- }
5052
- },
5053
- {
5054
- lineItems: [],
5055
- title: 'Job Boards',
5056
- total: {
5057
- textLeft: 'Cost Job Boards',
5058
- textRight: `x (${this.jobCount}) Jobs = $0`
5059
- }
5060
- }
5061
- ],
5062
- total: {
5063
- textLeft: '',
5064
- textRight: '$0',
5065
- label: 'Total:'
5066
- }
5130
+ invoiceAreas: [],
5131
+ total: {},
5067
5132
  };
5068
5133
  }
5069
5134
  updateModalHeader() {
@@ -5094,7 +5159,10 @@ class AdvertiseModalComponent {
5094
5159
  this.closeButtonClicked.emit();
5095
5160
  }
5096
5161
  onPostingBoardChange(selectedBoard) {
5097
- this.updateOrderSummary();
5162
+ const selectedJobBoards = this.model.jobBoards.filter((jb) => jb.isSelected).length;
5163
+ if (selectedJobBoards > 0) {
5164
+ this.updateOrderSummary();
5165
+ }
5098
5166
  }
5099
5167
  addLineItem(invoiceAreaIndex, selectedBoard) {
5100
5168
  this.orderSummary.invoiceAreas[invoiceAreaIndex].lineItems.push({
@@ -5107,7 +5175,8 @@ class AdvertiseModalComponent {
5107
5175
  this.orderSummary.invoiceAreas[invoiceAreaIndex].lineItems.forEach(li => {
5108
5176
  invoiceAreaTotal = invoiceAreaTotal + +li.textRight.replace('$', '');
5109
5177
  });
5110
- this.orderSummary.invoiceAreas[invoiceAreaIndex].total.textRight = `x (${this.model.jobsToAdvertise.length}) Jobs = $${invoiceAreaTotal * this.model.jobsToAdvertise.length}`;
5178
+ this.orderSummary.invoiceAreas[invoiceAreaIndex].subTotal.textRight = `$${invoiceAreaTotal * this.model.jobsToAdvertise.length}`;
5179
+ this.orderSummary.invoiceAreas[invoiceAreaIndex].total.textRight = `$${invoiceAreaTotal}`;
5111
5180
  return invoiceAreaTotal * this.model.jobsToAdvertise.length;
5112
5181
  }
5113
5182
  calculateOrderTotal(payPerClickAreaTotal, jobBoardAreaTotal) {
@@ -5116,14 +5185,46 @@ class AdvertiseModalComponent {
5116
5185
  const jobToAdvertiseCount = this.model.jobsToAdvertise.length;
5117
5186
  const orderSummaryText = `(${selectedJobBoards}) Boards x ${this.model.jobsToAdvertise.length} Jobs = (${selectedJobBoards * jobToAdvertiseCount}) Ads`;
5118
5187
  this.orderSummary.total = {
5119
- label: 'Total:',
5120
- textLeft: orderSummaryText,
5188
+ label: 'Current Total',
5189
+ textLeft: '',
5121
5190
  textRight: `$${payPerClickAreaTotal + jobBoardAreaTotal}`
5122
5191
  };
5123
5192
  }
5124
5193
  updateOrderSummary() {
5125
- this.orderSummary.invoiceAreas[0].lineItems = [];
5126
- this.orderSummary.invoiceAreas[1].lineItems = [];
5194
+ this.orderSummary = {
5195
+ title: 'Your Order',
5196
+ invoiceAreas: [
5197
+ {
5198
+ lineItems: [],
5199
+ total: {
5200
+ textLeft: 'Pay-Per-Click Sites, Subtotal Per Job:',
5201
+ textRight: ``
5202
+ },
5203
+ subTotal: {
5204
+ textLeft: 'Pay-Per-Click Sites Subtotal',
5205
+ textRight: `x (${this.jobCount}) Jobs = $0`
5206
+ },
5207
+ jobsToAdvertise: `x (${this.model.jobsToAdvertise.length}) Jobs Selected`
5208
+ },
5209
+ {
5210
+ lineItems: [],
5211
+ subTotal: {
5212
+ textLeft: 'Job Boards Subtotal',
5213
+ textRight: `x (${this.jobCount}) Jobs = $0`
5214
+ },
5215
+ total: {
5216
+ textLeft: 'Duration Job Boards, Subtotal Per Job:',
5217
+ textRight: ``
5218
+ },
5219
+ jobsToAdvertise: `x (${this.model.jobsToAdvertise.length}) Jobs Selected`
5220
+ }
5221
+ ],
5222
+ total: {
5223
+ textLeft: '',
5224
+ textRight: '',
5225
+ label: 'Current Total'
5226
+ },
5227
+ };
5127
5228
  this.model.jobBoards.forEach(jb => {
5128
5229
  if (jb.isSelected) {
5129
5230
  if (jb.isPayPerClick) {
@@ -5949,5 +6050,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
5949
6050
  * Generated bundle index. Do not edit.
5950
6051
  */
5951
6052
 
5952
- export { ActionBarComponent, ActionBarJobListComponent, ActionBarJobListModule, ActionBarModule, ActivityScoreLevel, AdvertiseModalComponent, AdvertisedJobPostingsListPageComponent, AdvertisedJobPostingsListPageModule, AdvertisedJobPostingsModalComponent, AdvertisedJobPostingsModalModule, AdvertisedJobsCostComponent, AdvertisedJobsCostModule, AlertDuration, AtomsModule, AvatarComponent, AvatarModule, BreadcrumbComponent, BreadcrumbModule, ButtonComponent, ButtonModule, CapitalizeFirstCharacterPipe, CardComponent, CardListComponent, CardListModule, CardModule, ConfirmationModalComponent, ConfirmationModalModule, ContactActivityScoreComponent, ContactActivityScoreModule, ContextualMenuComponent, ContextualMenuModule, DocumentManagementItemComponent, DocumentManagementItemModule, DocumentManagementListComponent, DocumentManagementListModule, EmailValidator, EventSettingsMoreOptionsComponent, EventSettingsMoreOptionsModule, EventsSettingsPageComponent, EventsSettingsPageModule, FeedbackCardComponent, FeedbackCardListComponent, FeedbackCardListModule, FeedbackCardModule, FeedbackCardState, FeedbackDetailPageComponent, FeedbackDetailPageModule, FeedbackListPageComponent, FeedbackListPageModule, FeedbackLoginModalComponent, FeedbackLoginModalModule, FileUploadComponent, FileUploadModule, FileUploadV2Component, FileUploadV2Module, FilterAreaComponent, FilterAreaModule, FrameworkModule, GridActionsComponent, GridActionsModule, GridCellLoaderModule, GridComponent, GridControlsComponent, GridControlsModule, GridDownloadComponent, GridDownloadModule, GridLoadingCellComponent, GridModule, GridToggleCellRendererComponent, GridToggleCellRendererModule, H1Component, H1Module, H2Component, H2Module, H3Component, H3Module, H4Component, H4Module, H5Component, H5Module, H5WithIconComponent, H5WithIconModule, IconComponent, IconModule, IconWithTooltipComponent, IconWithTooltipModule, IconWrapperComponent, IconWrapperModule, Icons, InputCheckboxComponent, InputCheckboxModule, InputChipsComponent, InputChipsModule, InputDropdownComponent, InputDropdownList, InputDropdownListItemModel, InputDropdownModule, InputRadioComponent, InputRadioModule, InputSearchCheckboxDropdownComponent, InputSearchCheckboxDropdownModule, InputTextComponent, InputTextModule, InputToggleComponent, InputToggleModule, LibrariesPageComponent, LibrariesPageModule, ModalModule, MoleculesModule, MultiSelectDataModule, MultiselectSearchCheckbox, NavigationLinkComponent, NavigationLinkModule, OrganismsModule, OverflowTextComponent, OverflowTextModule, ParagraphComponent, ParagraphModule, PillComponent, PillModule, PillsComponent, PillsModule, RelevanceScoreComponent, RelevanceScoreModule, SettingListPageComponent, SettingListPageModule, SfxLoaderComponent, SfxLoaderModule, SfxPageLoaderComponent, SfxPageLoaderModule, SfxProgressBarComponent, SfxProgressBarModule, SidebarNavigationComponent, SidebarNavigationModule, ToasterAlertComponent, ToasterAlertModel, ToasterAlertModule, ToasterAlertType, TooltipWrapperComponent, TooltipWrapperModule, TwoColumnFilterAreaComponent, TwoColumnFilterAreaModule, UploadResumeModalComponent, UploadResumeModalModule, gridType };
6053
+ export { ActionBarComponent, ActionBarJobListComponent, ActionBarJobListModule, ActionBarModule, ActivityScoreLevel, AdvertiseModalComponent, AdvertisedJobPostingsListPageComponent, AdvertisedJobPostingsListPageModule, AdvertisedJobPostingsModalComponent, AdvertisedJobPostingsModalModule, AdvertisedJobsCostComponent, AdvertisedJobsCostModule, AlertDuration, AtomsModule, AvatarComponent, AvatarModule, BreadcrumbComponent, BreadcrumbModule, ButtonComponent, ButtonModule, CapitalizeFirstCharacterPipe, CardComponent, CardListComponent, CardListModule, CardModule, ConfirmationModalComponent, ConfirmationModalModule, ContactActivityScoreComponent, ContactActivityScoreModule, ContextualMenuComponent, ContextualMenuModule, DocumentManagementItemComponent, DocumentManagementItemModule, DocumentManagementListComponent, DocumentManagementListModule, EmailValidator, EventSettingsMoreOptionsComponent, EventSettingsMoreOptionsModule, EventsSettingsPageComponent, EventsSettingsPageModule, FeedbackCardComponent, FeedbackCardListComponent, FeedbackCardListModule, FeedbackCardModule, FeedbackCardState, FeedbackDetailPageComponent, FeedbackDetailPageModule, FeedbackListPageComponent, FeedbackListPageModule, FeedbackLoginModalComponent, FeedbackLoginModalModule, FileUploadComponent, FileUploadModule, FileUploadV2Component, FileUploadV2Module, FilterAreaComponent, FilterAreaModule, FrameworkModule, GridActionsComponent, GridActionsModule, GridCellLoaderModule, GridComponent, GridControlsComponent, GridControlsModule, GridDownloadComponent, GridDownloadModule, GridLoadingCellComponent, GridModule, GridToggleCellRendererComponent, GridToggleCellRendererModule, H1Component, H1Module, H2Component, H2Module, H3Component, H3Module, H4Component, H4Module, H5Component, H5Module, H5WithIconComponent, H5WithIconModule, IconComponent, IconModule, IconWithTooltipComponent, IconWithTooltipModule, IconWrapperComponent, IconWrapperModule, Icons, InputCheckboxComponent, InputCheckboxModule, InputChipsComponent, InputChipsModule, InputDropdownComponent, InputDropdownList, InputDropdownListItemModel, InputDropdownModule, InputRadioComponent, InputRadioModule, InputSearchCheckboxDropdownComponent, InputSearchCheckboxDropdownModule, InputTextComponent, InputTextModule, InputToggleComponent, InputToggleModule, LibrariesPageComponent, LibrariesPageModule, ModalModule, MoleculesModule, MultiSelectDataModule, MultiselectSearchCheckbox, NavigationLinkComponent, NavigationLinkModule, OrganismsModule, OverflowTextComponent, OverflowTextModule, ParagraphComponent, ParagraphModule, PhaserCardComponent, PhaserCardModule, PhaserComponent, PhaserModule, PillComponent, PillModule, PillsComponent, PillsModule, RelevanceScoreComponent, RelevanceScoreModule, SettingListPageComponent, SettingListPageModule, SfxLoaderComponent, SfxLoaderModule, SfxPageLoaderComponent, SfxPageLoaderModule, SfxProgressBarComponent, SfxProgressBarModule, SidebarNavigationComponent, SidebarNavigationModule, ToasterAlertComponent, ToasterAlertModel, ToasterAlertModule, ToasterAlertType, TooltipWrapperComponent, TooltipWrapperModule, TwoColumnFilterAreaComponent, TwoColumnFilterAreaModule, UploadResumeModalComponent, UploadResumeModalModule, gridType };
5953
6054
  //# sourceMappingURL=symphony-talent-component-library-projects-component-library.mjs.map