@symphony-talent/component-library 3.14.0 → 3.15.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 (60) hide show
  1. package/esm2020/lib/atoms/input-dropdown/input-dropdown.module.mjs +2 -2
  2. package/esm2020/lib/molecules/file-upload/file-upload.component.mjs +33 -0
  3. package/esm2020/lib/molecules/file-upload/file-upload.model.mjs +2 -0
  4. package/esm2020/lib/molecules/file-upload/file-upload.module.mjs +38 -0
  5. package/esm2020/lib/molecules/file-upload-status/file-upload-status.component.mjs +28 -0
  6. package/esm2020/lib/molecules/file-upload-status/file-upload-status.model.mjs +2 -0
  7. package/esm2020/lib/molecules/file-upload-status/file-upload-status.module.mjs +38 -0
  8. package/esm2020/lib/molecules/molecules.module.mjs +9 -1
  9. package/esm2020/lib/organisms/organisms.module.mjs +5 -1
  10. package/esm2020/lib/organisms/upload-resume-modal/upload-resume-modal.component.mjs +94 -0
  11. package/esm2020/lib/organisms/upload-resume-modal/upload-resume-modal.model.mjs +2 -0
  12. package/esm2020/lib/organisms/upload-resume-modal/upload-resume-modal.module.mjs +26 -0
  13. package/esm2020/lib/pages/modals/advertise-modal/advertise-modal.component.mjs +6 -3
  14. package/esm2020/projects/component-library/lib/atoms/input-dropdown/input-dropdown.module.mjs +2 -2
  15. package/esm2020/projects/component-library/lib/molecules/file-upload/file-upload.component.mjs +33 -0
  16. package/esm2020/projects/component-library/lib/molecules/file-upload/file-upload.model.mjs +2 -0
  17. package/esm2020/projects/component-library/lib/molecules/file-upload/file-upload.module.mjs +38 -0
  18. package/esm2020/projects/component-library/lib/molecules/file-upload-status/file-upload-status.component.mjs +28 -0
  19. package/esm2020/projects/component-library/lib/molecules/file-upload-status/file-upload-status.model.mjs +2 -0
  20. package/esm2020/projects/component-library/lib/molecules/file-upload-status/file-upload-status.module.mjs +38 -0
  21. package/esm2020/projects/component-library/lib/molecules/molecules.module.mjs +9 -1
  22. package/esm2020/projects/component-library/lib/organisms/organisms.module.mjs +5 -1
  23. package/esm2020/projects/component-library/lib/organisms/upload-resume-modal/upload-resume-modal.component.mjs +94 -0
  24. package/esm2020/projects/component-library/lib/organisms/upload-resume-modal/upload-resume-modal.model.mjs +2 -0
  25. package/esm2020/projects/component-library/lib/organisms/upload-resume-modal/upload-resume-modal.module.mjs +26 -0
  26. package/esm2020/projects/component-library/lib/pages/modals/advertise-modal/advertise-modal.component.mjs +6 -3
  27. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +222 -2
  28. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
  29. package/fesm2015/symphony-talent-component-library.mjs +222 -2
  30. package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
  31. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +221 -2
  32. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
  33. package/fesm2020/symphony-talent-component-library.mjs +221 -2
  34. package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
  35. package/lib/molecules/file-upload/file-upload.component.d.ts +16 -0
  36. package/lib/molecules/file-upload/file-upload.model.d.ts +13 -0
  37. package/lib/molecules/file-upload/file-upload.module.d.ts +12 -0
  38. package/lib/molecules/file-upload-status/file-upload-status.component.d.ts +12 -0
  39. package/lib/molecules/file-upload-status/file-upload-status.model.d.ts +6 -0
  40. package/lib/molecules/file-upload-status/file-upload-status.module.d.ts +12 -0
  41. package/lib/molecules/molecules.module.d.ts +4 -2
  42. package/lib/organisms/organisms.module.d.ts +4 -3
  43. package/lib/organisms/upload-resume-modal/upload-resume-modal.component.d.ts +24 -0
  44. package/lib/organisms/upload-resume-modal/upload-resume-modal.model.d.ts +22 -0
  45. package/lib/organisms/upload-resume-modal/upload-resume-modal.module.d.ts +16 -0
  46. package/lib/pages/modals/advertise-modal/advertise-modal.component.d.ts +3 -2
  47. package/package.json +1 -1
  48. package/projects/component-library/global.scss +5 -0
  49. package/projects/component-library/lib/molecules/file-upload/file-upload.component.d.ts +16 -0
  50. package/projects/component-library/lib/molecules/file-upload/file-upload.model.d.ts +13 -0
  51. package/projects/component-library/lib/molecules/file-upload/file-upload.module.d.ts +12 -0
  52. package/projects/component-library/lib/molecules/file-upload-status/file-upload-status.component.d.ts +12 -0
  53. package/projects/component-library/lib/molecules/file-upload-status/file-upload-status.model.d.ts +6 -0
  54. package/projects/component-library/lib/molecules/file-upload-status/file-upload-status.module.d.ts +12 -0
  55. package/projects/component-library/lib/molecules/molecules.module.d.ts +4 -2
  56. package/projects/component-library/lib/organisms/organisms.module.d.ts +4 -3
  57. package/projects/component-library/lib/organisms/upload-resume-modal/upload-resume-modal.component.d.ts +24 -0
  58. package/projects/component-library/lib/organisms/upload-resume-modal/upload-resume-modal.model.d.ts +22 -0
  59. package/projects/component-library/lib/organisms/upload-resume-modal/upload-resume-modal.module.d.ts +16 -0
  60. package/projects/component-library/lib/pages/modals/advertise-modal/advertise-modal.component.d.ts +3 -2
@@ -0,0 +1,16 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { FileUploadModel } from './file-upload.model';
3
+ import * as i0 from "@angular/core";
4
+ export declare class FileUploadComponent implements OnInit {
5
+ fileUploadModel: FileUploadModel;
6
+ closeUploadComplete: EventEmitter<string>;
7
+ getFileDetails: EventEmitter<File>;
8
+ file: File;
9
+ filetypeAccepted: string;
10
+ constructor();
11
+ ngOnInit(): void;
12
+ oncloseUploadComplete(): void;
13
+ onFileSelect(event: any): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<FileUploadComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<FileUploadComponent, "symphony-file-upload", never, { "fileUploadModel": "fileUploadModel"; }, { "closeUploadComplete": "closeUploadComplete"; "getFileDetails": "getFileDetails"; }, never, never>;
16
+ }
@@ -0,0 +1,13 @@
1
+ import { FileUploadStatusModel } from '../file-upload-status/file-upload-status.model';
2
+ export interface FileUploadModel {
3
+ fileStatus: FileUploadStatusModel;
4
+ navigation: FileUploadNavigationModel;
5
+ fileFormatAccepted: string[];
6
+ }
7
+ export interface FileUploadNavigationModel {
8
+ showUploadFile: boolean;
9
+ showSelectedFile: boolean;
10
+ showUploadProgress: boolean;
11
+ showUploadComplete: boolean;
12
+ showUploadError: boolean;
13
+ }
@@ -0,0 +1,12 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./file-upload.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "../../atoms/h3/h3.module";
5
+ import * as i4 from "../../atoms/icon/icon.module";
6
+ import * as i5 from "../../atoms/paragraph/paragraph.module";
7
+ import * as i6 from "../file-upload-status/file-upload-status.module";
8
+ export declare class FileUploadModule {
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<FileUploadModule, never>;
10
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FileUploadModule, [typeof i1.FileUploadComponent], [typeof i2.CommonModule, typeof i3.H3Module, typeof i4.IconModule, typeof i5.ParagraphModule, typeof i6.FileUploadStatusModule], [typeof i1.FileUploadComponent]>;
11
+ static ɵinj: i0.ɵɵInjectorDeclaration<FileUploadModule>;
12
+ }
@@ -0,0 +1,12 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { FileUploadStatusModel } from './file-upload-status.model';
3
+ import * as i0 from "@angular/core";
4
+ export declare class FileUploadStatusComponent {
5
+ fileUploadStatusModel: FileUploadStatusModel;
6
+ uploadStatus: string;
7
+ closeUploadComplete: EventEmitter<string>;
8
+ constructor();
9
+ oncloseUploadComplete(): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<FileUploadStatusComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<FileUploadStatusComponent, "symphony-file-upload-status", never, { "fileUploadStatusModel": "fileUploadStatusModel"; "uploadStatus": "uploadStatus"; }, { "closeUploadComplete": "closeUploadComplete"; }, never, never>;
12
+ }
@@ -0,0 +1,6 @@
1
+ export interface FileUploadStatusModel {
2
+ fileName: string;
3
+ fileSize: string;
4
+ showProgressBar: boolean;
5
+ progress: number;
6
+ }
@@ -0,0 +1,12 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./file-upload-status.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "../../atoms/icon/icon.module";
5
+ import * as i4 from "../../atoms/h3/h3.module";
6
+ import * as i5 from "../../atoms/paragraph/paragraph.module";
7
+ import * as i6 from "../../atoms/sfx-progress-bar/sfx-progress-bar.module";
8
+ export declare class FileUploadStatusModule {
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<FileUploadStatusModule, never>;
10
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FileUploadStatusModule, [typeof i1.FileUploadStatusComponent], [typeof i2.CommonModule, typeof i3.IconModule, typeof i4.H3Module, typeof i5.ParagraphModule, typeof i6.SfxProgressBarModule], [typeof i1.FileUploadStatusComponent]>;
11
+ static ɵinj: i0.ɵɵInjectorDeclaration<FileUploadStatusModule>;
12
+ }
@@ -8,9 +8,11 @@ import * as i6 from "./icon-swatch/icon-swatch.module";
8
8
  import * as i7 from "./breadcrumb/breadcrumb.module";
9
9
  import * as i8 from "./h5-with-icon/h5-with-icon.module";
10
10
  import * as i9 from "./invoice-line-item/invoice-line-item.module";
11
- import * as i10 from "./feedback-card/feedback-card.module";
11
+ import * as i10 from "./file-upload/file-upload.module";
12
+ import * as i11 from "./file-upload-status/file-upload-status.module";
13
+ import * as i12 from "./feedback-card/feedback-card.module";
12
14
  export declare class MoleculesModule {
13
15
  static ɵfac: i0.ɵɵFactoryDeclaration<MoleculesModule, never>;
14
- static ɵmod: i0.ɵɵNgModuleDeclaration<MoleculesModule, never, [typeof i1.CommonModule, typeof i2.AvatarModule, typeof i3.ContextualMenuModule, typeof i4.PillsModule, typeof i5.ColorSwatchModule, typeof i6.IconSwatchModule, typeof i7.BreadcrumbModule, typeof i8.H5WithIconModule, typeof i9.InvoiceLineItemModule, typeof i10.FeedbackCardModule], [typeof i4.PillsModule, typeof i7.BreadcrumbModule, typeof i10.FeedbackCardModule]>;
16
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MoleculesModule, never, [typeof i1.CommonModule, typeof i2.AvatarModule, typeof i3.ContextualMenuModule, typeof i4.PillsModule, typeof i5.ColorSwatchModule, typeof i6.IconSwatchModule, typeof i7.BreadcrumbModule, typeof i8.H5WithIconModule, typeof i9.InvoiceLineItemModule, typeof i10.FileUploadModule, typeof i11.FileUploadStatusModule, typeof i12.FeedbackCardModule], [typeof i4.PillsModule, typeof i7.BreadcrumbModule, typeof i12.FeedbackCardModule]>;
15
17
  static ɵinj: i0.ɵɵInjectorDeclaration<MoleculesModule>;
16
18
  }
@@ -6,10 +6,11 @@ import * as i4 from "../design-guide/typography/typography.module";
6
6
  import * as i5 from "../design-guide/icon-explorer/icon-explorer.module";
7
7
  import * as i6 from "./card-list/card-list.module";
8
8
  import * as i7 from "./cancel-modal/cancel-modal.module";
9
- import * as i8 from "./feedback-card-list/feedback-card-list.module";
10
- import * as i9 from "./feedback-detail-header/feedback-detail-header.module";
9
+ import * as i8 from "./upload-resume-modal/upload-resume-modal.module";
10
+ import * as i9 from "./feedback-card-list/feedback-card-list.module";
11
+ import * as i10 from "./feedback-detail-header/feedback-detail-header.module";
11
12
  export declare class OrganismsModule {
12
13
  static ɵfac: i0.ɵɵFactoryDeclaration<OrganismsModule, never>;
13
- static ɵmod: i0.ɵɵNgModuleDeclaration<OrganismsModule, never, [typeof i1.CommonModule, typeof i2.NoteListModule, typeof i3.TaskListModule, typeof i4.TypographyModule, typeof i5.IconExplorerModule, typeof i6.CardListModule, typeof i7.CancelModalModule, typeof i8.FeedbackCardListModule, typeof i9.FeedbackDetailHeaderModule], never>;
14
+ static ɵmod: i0.ɵɵNgModuleDeclaration<OrganismsModule, never, [typeof i1.CommonModule, typeof i2.NoteListModule, typeof i3.TaskListModule, typeof i4.TypographyModule, typeof i5.IconExplorerModule, typeof i6.CardListModule, typeof i7.CancelModalModule, typeof i8.UploadResumeModalModule, typeof i9.FeedbackCardListModule, typeof i10.FeedbackDetailHeaderModule], never>;
14
15
  static ɵinj: i0.ɵɵInjectorDeclaration<OrganismsModule>;
15
16
  }
@@ -0,0 +1,24 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { InputCheckboxModel } from '../../atoms/input-checkbox/input-checkbox.model';
3
+ import { InputDropdownListItemModel } from '../../atoms/input-dropdown/input-dropdown-list-item.model';
4
+ import { UploadResumeModalModel } from './upload-resume-modal.model';
5
+ import * as i0 from "@angular/core";
6
+ export declare class UploadResumeModalComponent implements OnInit {
7
+ uploadResumeModel: UploadResumeModalModel;
8
+ isLoading: boolean;
9
+ closeUploadComplete: EventEmitter<string>;
10
+ buttonClicked: EventEmitter<string>;
11
+ closeButtonClicked: EventEmitter<string>;
12
+ docTypeDropdowChange: EventEmitter<string>;
13
+ updateResumeChecked: EventEmitter<string>;
14
+ model: any;
15
+ isResumeSelected: boolean;
16
+ constructor();
17
+ ngOnInit(): void;
18
+ onButtonClick(text: string): void;
19
+ onCloseButtonClick(): void;
20
+ onDocTypeSelect(selectedModel: InputDropdownListItemModel): void;
21
+ onResumeCheckSelect(updateResumeCheckEvent: InputCheckboxModel): void;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<UploadResumeModalComponent, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<UploadResumeModalComponent, "symphony-upload-resume-modal", never, { "uploadResumeModel": "uploadResumeModel"; "isLoading": "isLoading"; }, { "closeUploadComplete": "closeUploadComplete"; "buttonClicked": "buttonClicked"; "closeButtonClicked": "closeButtonClicked"; "docTypeDropdowChange": "docTypeDropdowChange"; "updateResumeChecked": "updateResumeChecked"; }, never, never>;
24
+ }
@@ -0,0 +1,22 @@
1
+ import { InputDropdownList } from '../../atoms/input-dropdown/input-dropdown-list.model';
2
+ import { FileUploadModel } from '../../molecules/file-upload/file-upload.model';
3
+ export interface UploadResumeModal {
4
+ title: string;
5
+ subTitle: string;
6
+ content?: string;
7
+ btnPrimary: string;
8
+ btnSecondary: string;
9
+ documentTypeDropdown: InputDropdownList;
10
+ }
11
+ export interface UploadResumeModalModel {
12
+ isResume: boolean;
13
+ isLoading: boolean;
14
+ fileUploadModel: FileUploadModel;
15
+ }
16
+ export interface UploadResumeModalNavigationModel {
17
+ showUploadFile: boolean;
18
+ showSelectedFile: boolean;
19
+ showUploadProgress: boolean;
20
+ showUploadComplete: boolean;
21
+ showUploadError: boolean;
22
+ }
@@ -0,0 +1,16 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./upload-resume-modal.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "../../atoms/h4/h4.module";
5
+ import * as i4 from "../../atoms/paragraph/paragraph.module";
6
+ import * as i5 from "../../atoms/icon/icon.module";
7
+ import * as i6 from "../../atoms/button/button.module";
8
+ import * as i7 from "../../atoms/input-dropdown/input-dropdown.module";
9
+ import * as i8 from "../../molecules/file-upload/file-upload.module";
10
+ import * as i9 from "../../atoms/sfx-loader/sfx-loader.module";
11
+ import * as i10 from "../../atoms/input-checkbox/input-checkbox.module";
12
+ export declare class UploadResumeModalModule {
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<UploadResumeModalModule, never>;
14
+ static ɵmod: i0.ɵɵNgModuleDeclaration<UploadResumeModalModule, [typeof i1.UploadResumeModalComponent], [typeof i2.CommonModule, typeof i3.H4Module, typeof i4.ParagraphModule, typeof i5.IconModule, typeof i6.ButtonModule, typeof i7.InputDropdownModule, typeof i8.FileUploadModule, typeof i9.SfxLoaderModule, typeof i10.InputCheckboxModule], [typeof i1.UploadResumeModalComponent]>;
15
+ static ɵinj: i0.ɵɵInjectorDeclaration<UploadResumeModalModule>;
16
+ }
@@ -1,11 +1,11 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
1
+ import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
2
2
  import { OrderSummaryModel } from '../../../organisms/order-summary/order-summary.model';
3
3
  import { H5WithIconModel } from '../../../molecules/h5-with-icon/h5-with-icon.model';
4
4
  import { AdvertiseModalModel, PostingBoardsSelectionModel } from './advertise-modal.model';
5
5
  import { InvoiceModel } from '../../../molecules/invoice-line-item/invoice-line-item.model';
6
6
  import { CancelModel } from '../../../organisms/cancel-modal/cancel-modal.model';
7
7
  import * as i0 from "@angular/core";
8
- export declare class AdvertiseModalComponent implements OnInit {
8
+ export declare class AdvertiseModalComponent implements OnInit, OnChanges {
9
9
  model: Partial<AdvertiseModalModel>;
10
10
  buttonClicked: EventEmitter<string>;
11
11
  closeButtonClicked: EventEmitter<string>;
@@ -21,6 +21,7 @@ export declare class AdvertiseModalComponent implements OnInit {
21
21
  isJobBoardNextButtonDisabled: boolean;
22
22
  constructor();
23
23
  ngOnInit(): void;
24
+ ngOnChanges(changes: SimpleChanges): void;
24
25
  initialiseDefaultValues(): void;
25
26
  updateModalHeader(): void;
26
27
  onKeywordSearch(keyword: string): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@symphony-talent/component-library",
3
- "version": "3.14.0",
3
+ "version": "3.15.0",
4
4
  "private": false,
5
5
  "dependencies": {
6
6
  "tslib": "^1.10.0"
@@ -558,3 +558,8 @@ body {
558
558
  }
559
559
  }
560
560
  // End Spinner
561
+
562
+ // Bootstrap Overrides
563
+ .progress {
564
+ margin-bottom: 0px !important;
565
+ }
@@ -0,0 +1,16 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { FileUploadModel } from './file-upload.model';
3
+ import * as i0 from "@angular/core";
4
+ export declare class FileUploadComponent implements OnInit {
5
+ fileUploadModel: FileUploadModel;
6
+ closeUploadComplete: EventEmitter<string>;
7
+ getFileDetails: EventEmitter<File>;
8
+ file: File;
9
+ filetypeAccepted: string;
10
+ constructor();
11
+ ngOnInit(): void;
12
+ oncloseUploadComplete(): void;
13
+ onFileSelect(event: any): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<FileUploadComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<FileUploadComponent, "symphony-file-upload", never, { "fileUploadModel": "fileUploadModel"; }, { "closeUploadComplete": "closeUploadComplete"; "getFileDetails": "getFileDetails"; }, never, never>;
16
+ }
@@ -0,0 +1,13 @@
1
+ import { FileUploadStatusModel } from '../file-upload-status/file-upload-status.model';
2
+ export interface FileUploadModel {
3
+ fileStatus: FileUploadStatusModel;
4
+ navigation: FileUploadNavigationModel;
5
+ fileFormatAccepted: string[];
6
+ }
7
+ export interface FileUploadNavigationModel {
8
+ showUploadFile: boolean;
9
+ showSelectedFile: boolean;
10
+ showUploadProgress: boolean;
11
+ showUploadComplete: boolean;
12
+ showUploadError: boolean;
13
+ }
@@ -0,0 +1,12 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./file-upload.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "../../atoms/h3/h3.module";
5
+ import * as i4 from "../../atoms/icon/icon.module";
6
+ import * as i5 from "../../atoms/paragraph/paragraph.module";
7
+ import * as i6 from "../file-upload-status/file-upload-status.module";
8
+ export declare class FileUploadModule {
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<FileUploadModule, never>;
10
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FileUploadModule, [typeof i1.FileUploadComponent], [typeof i2.CommonModule, typeof i3.H3Module, typeof i4.IconModule, typeof i5.ParagraphModule, typeof i6.FileUploadStatusModule], [typeof i1.FileUploadComponent]>;
11
+ static ɵinj: i0.ɵɵInjectorDeclaration<FileUploadModule>;
12
+ }
@@ -0,0 +1,12 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { FileUploadStatusModel } from './file-upload-status.model';
3
+ import * as i0 from "@angular/core";
4
+ export declare class FileUploadStatusComponent {
5
+ fileUploadStatusModel: FileUploadStatusModel;
6
+ uploadStatus: string;
7
+ closeUploadComplete: EventEmitter<string>;
8
+ constructor();
9
+ oncloseUploadComplete(): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<FileUploadStatusComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<FileUploadStatusComponent, "symphony-file-upload-status", never, { "fileUploadStatusModel": "fileUploadStatusModel"; "uploadStatus": "uploadStatus"; }, { "closeUploadComplete": "closeUploadComplete"; }, never, never>;
12
+ }
@@ -0,0 +1,6 @@
1
+ export interface FileUploadStatusModel {
2
+ fileName: string;
3
+ fileSize: string;
4
+ showProgressBar: boolean;
5
+ progress: number;
6
+ }
@@ -0,0 +1,12 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./file-upload-status.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "../../atoms/icon/icon.module";
5
+ import * as i4 from "../../atoms/h3/h3.module";
6
+ import * as i5 from "../../atoms/paragraph/paragraph.module";
7
+ import * as i6 from "../../atoms/sfx-progress-bar/sfx-progress-bar.module";
8
+ export declare class FileUploadStatusModule {
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<FileUploadStatusModule, never>;
10
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FileUploadStatusModule, [typeof i1.FileUploadStatusComponent], [typeof i2.CommonModule, typeof i3.IconModule, typeof i4.H3Module, typeof i5.ParagraphModule, typeof i6.SfxProgressBarModule], [typeof i1.FileUploadStatusComponent]>;
11
+ static ɵinj: i0.ɵɵInjectorDeclaration<FileUploadStatusModule>;
12
+ }
@@ -8,9 +8,11 @@ import * as i6 from "./icon-swatch/icon-swatch.module";
8
8
  import * as i7 from "./breadcrumb/breadcrumb.module";
9
9
  import * as i8 from "./h5-with-icon/h5-with-icon.module";
10
10
  import * as i9 from "./invoice-line-item/invoice-line-item.module";
11
- import * as i10 from "./feedback-card/feedback-card.module";
11
+ import * as i10 from "./file-upload/file-upload.module";
12
+ import * as i11 from "./file-upload-status/file-upload-status.module";
13
+ import * as i12 from "./feedback-card/feedback-card.module";
12
14
  export declare class MoleculesModule {
13
15
  static ɵfac: i0.ɵɵFactoryDeclaration<MoleculesModule, never>;
14
- static ɵmod: i0.ɵɵNgModuleDeclaration<MoleculesModule, never, [typeof i1.CommonModule, typeof i2.AvatarModule, typeof i3.ContextualMenuModule, typeof i4.PillsModule, typeof i5.ColorSwatchModule, typeof i6.IconSwatchModule, typeof i7.BreadcrumbModule, typeof i8.H5WithIconModule, typeof i9.InvoiceLineItemModule, typeof i10.FeedbackCardModule], [typeof i4.PillsModule, typeof i7.BreadcrumbModule, typeof i10.FeedbackCardModule]>;
16
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MoleculesModule, never, [typeof i1.CommonModule, typeof i2.AvatarModule, typeof i3.ContextualMenuModule, typeof i4.PillsModule, typeof i5.ColorSwatchModule, typeof i6.IconSwatchModule, typeof i7.BreadcrumbModule, typeof i8.H5WithIconModule, typeof i9.InvoiceLineItemModule, typeof i10.FileUploadModule, typeof i11.FileUploadStatusModule, typeof i12.FeedbackCardModule], [typeof i4.PillsModule, typeof i7.BreadcrumbModule, typeof i12.FeedbackCardModule]>;
15
17
  static ɵinj: i0.ɵɵInjectorDeclaration<MoleculesModule>;
16
18
  }
@@ -6,10 +6,11 @@ import * as i4 from "../design-guide/typography/typography.module";
6
6
  import * as i5 from "../design-guide/icon-explorer/icon-explorer.module";
7
7
  import * as i6 from "./card-list/card-list.module";
8
8
  import * as i7 from "./cancel-modal/cancel-modal.module";
9
- import * as i8 from "./feedback-card-list/feedback-card-list.module";
10
- import * as i9 from "./feedback-detail-header/feedback-detail-header.module";
9
+ import * as i8 from "./upload-resume-modal/upload-resume-modal.module";
10
+ import * as i9 from "./feedback-card-list/feedback-card-list.module";
11
+ import * as i10 from "./feedback-detail-header/feedback-detail-header.module";
11
12
  export declare class OrganismsModule {
12
13
  static ɵfac: i0.ɵɵFactoryDeclaration<OrganismsModule, never>;
13
- static ɵmod: i0.ɵɵNgModuleDeclaration<OrganismsModule, never, [typeof i1.CommonModule, typeof i2.NoteListModule, typeof i3.TaskListModule, typeof i4.TypographyModule, typeof i5.IconExplorerModule, typeof i6.CardListModule, typeof i7.CancelModalModule, typeof i8.FeedbackCardListModule, typeof i9.FeedbackDetailHeaderModule], never>;
14
+ static ɵmod: i0.ɵɵNgModuleDeclaration<OrganismsModule, never, [typeof i1.CommonModule, typeof i2.NoteListModule, typeof i3.TaskListModule, typeof i4.TypographyModule, typeof i5.IconExplorerModule, typeof i6.CardListModule, typeof i7.CancelModalModule, typeof i8.UploadResumeModalModule, typeof i9.FeedbackCardListModule, typeof i10.FeedbackDetailHeaderModule], never>;
14
15
  static ɵinj: i0.ɵɵInjectorDeclaration<OrganismsModule>;
15
16
  }
@@ -0,0 +1,24 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { InputCheckboxModel } from '../../atoms/input-checkbox/input-checkbox.model';
3
+ import { InputDropdownListItemModel } from '../../atoms/input-dropdown/input-dropdown-list-item.model';
4
+ import { UploadResumeModalModel } from './upload-resume-modal.model';
5
+ import * as i0 from "@angular/core";
6
+ export declare class UploadResumeModalComponent implements OnInit {
7
+ uploadResumeModel: UploadResumeModalModel;
8
+ isLoading: boolean;
9
+ closeUploadComplete: EventEmitter<string>;
10
+ buttonClicked: EventEmitter<string>;
11
+ closeButtonClicked: EventEmitter<string>;
12
+ docTypeDropdowChange: EventEmitter<string>;
13
+ updateResumeChecked: EventEmitter<string>;
14
+ model: any;
15
+ isResumeSelected: boolean;
16
+ constructor();
17
+ ngOnInit(): void;
18
+ onButtonClick(text: string): void;
19
+ onCloseButtonClick(): void;
20
+ onDocTypeSelect(selectedModel: InputDropdownListItemModel): void;
21
+ onResumeCheckSelect(updateResumeCheckEvent: InputCheckboxModel): void;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<UploadResumeModalComponent, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<UploadResumeModalComponent, "symphony-upload-resume-modal", never, { "uploadResumeModel": "uploadResumeModel"; "isLoading": "isLoading"; }, { "closeUploadComplete": "closeUploadComplete"; "buttonClicked": "buttonClicked"; "closeButtonClicked": "closeButtonClicked"; "docTypeDropdowChange": "docTypeDropdowChange"; "updateResumeChecked": "updateResumeChecked"; }, never, never>;
24
+ }
@@ -0,0 +1,22 @@
1
+ import { InputDropdownList } from '../../atoms/input-dropdown/input-dropdown-list.model';
2
+ import { FileUploadModel } from '../../molecules/file-upload/file-upload.model';
3
+ export interface UploadResumeModal {
4
+ title: string;
5
+ subTitle: string;
6
+ content?: string;
7
+ btnPrimary: string;
8
+ btnSecondary: string;
9
+ documentTypeDropdown: InputDropdownList;
10
+ }
11
+ export interface UploadResumeModalModel {
12
+ isResume: boolean;
13
+ isLoading: boolean;
14
+ fileUploadModel: FileUploadModel;
15
+ }
16
+ export interface UploadResumeModalNavigationModel {
17
+ showUploadFile: boolean;
18
+ showSelectedFile: boolean;
19
+ showUploadProgress: boolean;
20
+ showUploadComplete: boolean;
21
+ showUploadError: boolean;
22
+ }
@@ -0,0 +1,16 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./upload-resume-modal.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "../../atoms/h4/h4.module";
5
+ import * as i4 from "../../atoms/paragraph/paragraph.module";
6
+ import * as i5 from "../../atoms/icon/icon.module";
7
+ import * as i6 from "../../atoms/button/button.module";
8
+ import * as i7 from "../../atoms/input-dropdown/input-dropdown.module";
9
+ import * as i8 from "../../molecules/file-upload/file-upload.module";
10
+ import * as i9 from "../../atoms/sfx-loader/sfx-loader.module";
11
+ import * as i10 from "../../atoms/input-checkbox/input-checkbox.module";
12
+ export declare class UploadResumeModalModule {
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<UploadResumeModalModule, never>;
14
+ static ɵmod: i0.ɵɵNgModuleDeclaration<UploadResumeModalModule, [typeof i1.UploadResumeModalComponent], [typeof i2.CommonModule, typeof i3.H4Module, typeof i4.ParagraphModule, typeof i5.IconModule, typeof i6.ButtonModule, typeof i7.InputDropdownModule, typeof i8.FileUploadModule, typeof i9.SfxLoaderModule, typeof i10.InputCheckboxModule], [typeof i1.UploadResumeModalComponent]>;
15
+ static ɵinj: i0.ɵɵInjectorDeclaration<UploadResumeModalModule>;
16
+ }
@@ -1,11 +1,11 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
1
+ import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
2
2
  import { OrderSummaryModel } from '../../../organisms/order-summary/order-summary.model';
3
3
  import { H5WithIconModel } from '../../../molecules/h5-with-icon/h5-with-icon.model';
4
4
  import { AdvertiseModalModel, PostingBoardsSelectionModel } from './advertise-modal.model';
5
5
  import { InvoiceModel } from '../../../molecules/invoice-line-item/invoice-line-item.model';
6
6
  import { CancelModel } from '../../../organisms/cancel-modal/cancel-modal.model';
7
7
  import * as i0 from "@angular/core";
8
- export declare class AdvertiseModalComponent implements OnInit {
8
+ export declare class AdvertiseModalComponent implements OnInit, OnChanges {
9
9
  model: Partial<AdvertiseModalModel>;
10
10
  buttonClicked: EventEmitter<string>;
11
11
  closeButtonClicked: EventEmitter<string>;
@@ -21,6 +21,7 @@ export declare class AdvertiseModalComponent implements OnInit {
21
21
  isJobBoardNextButtonDisabled: boolean;
22
22
  constructor();
23
23
  ngOnInit(): void;
24
+ ngOnChanges(changes: SimpleChanges): void;
24
25
  initialiseDefaultValues(): void;
25
26
  updateModalHeader(): void;
26
27
  onKeywordSearch(keyword: string): void;