@symphony-talent/component-library 4.230.0 → 4.232.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 (29) hide show
  1. package/esm2020/lib/molecules/candidate-item/candidate-item.component.mjs +8 -5
  2. package/esm2020/lib/molecules/candidate-item/candidate-item.model.mjs +1 -1
  3. package/esm2020/lib/pages/modals/invite-candidate-modal/invite-candidate-modal.component.mjs +91 -0
  4. package/esm2020/lib/pages/modals/invite-candidate-modal/invite-candidate-modal.module.mjs +46 -0
  5. package/esm2020/projects/component-library/lib/molecules/candidate-item/candidate-item.component.mjs +8 -5
  6. package/esm2020/projects/component-library/lib/molecules/candidate-item/candidate-item.model.mjs +1 -1
  7. package/esm2020/projects/component-library/lib/pages/modals/invite-candidate-modal/invite-candidate-modal.component.mjs +91 -0
  8. package/esm2020/projects/component-library/lib/pages/modals/invite-candidate-modal/invite-candidate-modal.module.mjs +46 -0
  9. package/esm2020/projects/component-library/public-api.mjs +3 -1
  10. package/esm2020/public-api.mjs +3 -1
  11. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +128 -5
  12. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
  13. package/fesm2015/symphony-talent-component-library.mjs +128 -5
  14. package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
  15. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +127 -5
  16. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
  17. package/fesm2020/symphony-talent-component-library.mjs +127 -5
  18. package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
  19. package/lib/molecules/candidate-item/candidate-item.component.d.ts +1 -0
  20. package/lib/molecules/candidate-item/candidate-item.model.d.ts +1 -0
  21. package/lib/pages/modals/invite-candidate-modal/invite-candidate-modal.component.d.ts +31 -0
  22. package/lib/pages/modals/invite-candidate-modal/invite-candidate-modal.module.d.ts +14 -0
  23. package/package.json +1 -1
  24. package/projects/component-library/lib/molecules/candidate-item/candidate-item.component.d.ts +1 -0
  25. package/projects/component-library/lib/molecules/candidate-item/candidate-item.model.d.ts +1 -0
  26. package/projects/component-library/lib/pages/modals/invite-candidate-modal/invite-candidate-modal.component.d.ts +31 -0
  27. package/projects/component-library/lib/pages/modals/invite-candidate-modal/invite-candidate-modal.module.d.ts +14 -0
  28. package/projects/component-library/public-api.d.ts +2 -0
  29. package/public-api.d.ts +2 -0
@@ -4277,14 +4277,17 @@ class CandidateItemComponent {
4277
4277
  get candidate() {
4278
4278
  return this.candidateValue;
4279
4279
  }
4280
+ get isRowDisabled() {
4281
+ return !!this.candidate?.isRowDisabled;
4282
+ }
4280
4283
  handleRowClick() {
4281
- if (!this.candidate) {
4284
+ if (!this.candidate || this.isRowDisabled) {
4282
4285
  return;
4283
4286
  }
4284
4287
  this.setSelection(!this.isSelected);
4285
4288
  }
4286
4289
  handleCheckboxClicked(event) {
4287
- if (!this.candidate) {
4290
+ if (!this.candidate || this.isRowDisabled) {
4288
4291
  return;
4289
4292
  }
4290
4293
  this.setSelection(event.isActive);
@@ -4304,10 +4307,10 @@ class CandidateItemComponent {
4304
4307
  }
4305
4308
  }
4306
4309
  CandidateItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: CandidateItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
4307
- CandidateItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: CandidateItemComponent, selector: "symphony-candidate-item", inputs: { candidate: "candidate" }, outputs: { selectionChanged: "selectionChanged" }, ngImport: i0, template: "<div class=\"sfx-candidate-item\" (click)=\"handleRowClick()\">\n <div class=\"sfx-candidate-item__checkbox\" (click)=\"$event.stopPropagation()\">\n <symphony-input-checkbox\n [isActive]=\"isSelected\"\n [isRequired]=\"false\"\n (clicked)=\"handleCheckboxClicked($event)\"\n ></symphony-input-checkbox>\n </div>\n\n <div class=\"sfx-candidate-item__details\">\n <symphony-paragraph\n class=\"sfx-candidate-item__name\"\n [text]=\"candidate?.name\"\n [fontSize]=\"'14px'\"\n [fontWeight]=\"500\"\n ></symphony-paragraph>\n <symphony-paragraph\n class=\"sfx-candidate-item__subtext\"\n [fontSize]=\"'13px'\"\n >\n <span class=\"sfx-candidate-item__email\">{{ candidate?.email }}</span>\n <span\n class=\"sfx-candidate-item__separator\"\n *ngIf=\"candidate?.email && candidate?.title\"\n >&nbsp;&middot;&nbsp;</span>\n <span class=\"sfx-candidate-item__title\">{{ candidate?.title }}</span>\n </symphony-paragraph>\n </div>\n\n <div class=\"sfx-candidate-item__status\" *ngIf=\"candidate?.status\">\n <symphony-status-pill [statusPillModel]=\"candidate.status\"></symphony-status-pill>\n </div>\n</div>\n", styles: [".sfx-candidate-item{display:flex;align-items:center;gap:12px;padding:12px 16px;cursor:pointer}.sfx-candidate-item__checkbox{flex-shrink:0;display:flex;align-items:center}.sfx-candidate-item__details{flex:1;min-width:0}.sfx-candidate-item__details .sfx-candidate-item__name,.sfx-candidate-item__details .sfx-candidate-item__subtext{display:block}.sfx-candidate-item__status{flex-shrink:0;margin-left:auto}.sfx-candidate-item:hover{background-color:#f9fafb}\n"], components: [{ type: InputCheckboxComponent, selector: "symphony-input-checkbox", inputs: ["isActive", "label", "isRequired"], outputs: ["clicked"] }, { type: ParagraphComponent, selector: "symphony-paragraph", inputs: ["text", "isSecondary", "isFontBold", "fontSize", "fontWeight"] }, { type: StatusPillComponent, selector: "symphony-status-pill", inputs: ["statusPillModel"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
4310
+ CandidateItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: CandidateItemComponent, selector: "symphony-candidate-item", inputs: { candidate: "candidate" }, outputs: { selectionChanged: "selectionChanged" }, ngImport: i0, template: "<div\n class=\"sfx-candidate-item\"\n [class.sfx-candidate-item--disabled]=\"isRowDisabled\"\n (click)=\"handleRowClick()\"\n>\n <div class=\"sfx-candidate-item__checkbox\" (click)=\"$event.stopPropagation()\">\n <symphony-input-checkbox\n [isActive]=\"isSelected\"\n [isRequired]=\"false\"\n (clicked)=\"handleCheckboxClicked($event)\"\n ></symphony-input-checkbox>\n </div>\n\n <div class=\"sfx-candidate-item__details\">\n <symphony-paragraph\n class=\"sfx-candidate-item__name\"\n [text]=\"candidate?.name\"\n [fontSize]=\"'14px'\"\n [fontWeight]=\"500\"\n ></symphony-paragraph>\n <symphony-paragraph\n class=\"sfx-candidate-item__subtext\"\n [fontSize]=\"'13px'\"\n >\n <span class=\"sfx-candidate-item__email\">{{ candidate?.email }}</span>\n <span\n class=\"sfx-candidate-item__separator\"\n *ngIf=\"candidate?.email && candidate?.title\"\n >&nbsp;&middot;&nbsp;</span>\n <span class=\"sfx-candidate-item__title\">{{ candidate?.title }}</span>\n </symphony-paragraph>\n </div>\n\n <div class=\"sfx-candidate-item__status\" *ngIf=\"candidate?.status\">\n <symphony-status-pill [statusPillModel]=\"candidate.status\"></symphony-status-pill>\n </div>\n</div>\n", styles: [".sfx-candidate-item{display:flex;align-items:center;gap:12px;padding:12px 16px;cursor:pointer}.sfx-candidate-item__checkbox{flex-shrink:0;display:flex;align-items:center}.sfx-candidate-item__details{flex:1;min-width:0}.sfx-candidate-item__details .sfx-candidate-item__name,.sfx-candidate-item__details .sfx-candidate-item__subtext{display:block}.sfx-candidate-item__status{flex-shrink:0;margin-left:auto}.sfx-candidate-item:hover{background-color:#f9fafb}.sfx-candidate-item--disabled{opacity:.5;cursor:default}.sfx-candidate-item--disabled .sfx-candidate-item__checkbox{pointer-events:none}.sfx-candidate-item--disabled:hover{background-color:transparent}\n"], components: [{ type: InputCheckboxComponent, selector: "symphony-input-checkbox", inputs: ["isActive", "label", "isRequired"], outputs: ["clicked"] }, { type: ParagraphComponent, selector: "symphony-paragraph", inputs: ["text", "isSecondary", "isFontBold", "fontSize", "fontWeight"] }, { type: StatusPillComponent, selector: "symphony-status-pill", inputs: ["statusPillModel"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
4308
4311
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: CandidateItemComponent, decorators: [{
4309
4312
  type: Component,
4310
- args: [{ selector: 'symphony-candidate-item', template: "<div class=\"sfx-candidate-item\" (click)=\"handleRowClick()\">\n <div class=\"sfx-candidate-item__checkbox\" (click)=\"$event.stopPropagation()\">\n <symphony-input-checkbox\n [isActive]=\"isSelected\"\n [isRequired]=\"false\"\n (clicked)=\"handleCheckboxClicked($event)\"\n ></symphony-input-checkbox>\n </div>\n\n <div class=\"sfx-candidate-item__details\">\n <symphony-paragraph\n class=\"sfx-candidate-item__name\"\n [text]=\"candidate?.name\"\n [fontSize]=\"'14px'\"\n [fontWeight]=\"500\"\n ></symphony-paragraph>\n <symphony-paragraph\n class=\"sfx-candidate-item__subtext\"\n [fontSize]=\"'13px'\"\n >\n <span class=\"sfx-candidate-item__email\">{{ candidate?.email }}</span>\n <span\n class=\"sfx-candidate-item__separator\"\n *ngIf=\"candidate?.email && candidate?.title\"\n >&nbsp;&middot;&nbsp;</span>\n <span class=\"sfx-candidate-item__title\">{{ candidate?.title }}</span>\n </symphony-paragraph>\n </div>\n\n <div class=\"sfx-candidate-item__status\" *ngIf=\"candidate?.status\">\n <symphony-status-pill [statusPillModel]=\"candidate.status\"></symphony-status-pill>\n </div>\n</div>\n", styles: [".sfx-candidate-item{display:flex;align-items:center;gap:12px;padding:12px 16px;cursor:pointer}.sfx-candidate-item__checkbox{flex-shrink:0;display:flex;align-items:center}.sfx-candidate-item__details{flex:1;min-width:0}.sfx-candidate-item__details .sfx-candidate-item__name,.sfx-candidate-item__details .sfx-candidate-item__subtext{display:block}.sfx-candidate-item__status{flex-shrink:0;margin-left:auto}.sfx-candidate-item:hover{background-color:#f9fafb}\n"] }]
4313
+ args: [{ selector: 'symphony-candidate-item', template: "<div\n class=\"sfx-candidate-item\"\n [class.sfx-candidate-item--disabled]=\"isRowDisabled\"\n (click)=\"handleRowClick()\"\n>\n <div class=\"sfx-candidate-item__checkbox\" (click)=\"$event.stopPropagation()\">\n <symphony-input-checkbox\n [isActive]=\"isSelected\"\n [isRequired]=\"false\"\n (clicked)=\"handleCheckboxClicked($event)\"\n ></symphony-input-checkbox>\n </div>\n\n <div class=\"sfx-candidate-item__details\">\n <symphony-paragraph\n class=\"sfx-candidate-item__name\"\n [text]=\"candidate?.name\"\n [fontSize]=\"'14px'\"\n [fontWeight]=\"500\"\n ></symphony-paragraph>\n <symphony-paragraph\n class=\"sfx-candidate-item__subtext\"\n [fontSize]=\"'13px'\"\n >\n <span class=\"sfx-candidate-item__email\">{{ candidate?.email }}</span>\n <span\n class=\"sfx-candidate-item__separator\"\n *ngIf=\"candidate?.email && candidate?.title\"\n >&nbsp;&middot;&nbsp;</span>\n <span class=\"sfx-candidate-item__title\">{{ candidate?.title }}</span>\n </symphony-paragraph>\n </div>\n\n <div class=\"sfx-candidate-item__status\" *ngIf=\"candidate?.status\">\n <symphony-status-pill [statusPillModel]=\"candidate.status\"></symphony-status-pill>\n </div>\n</div>\n", styles: [".sfx-candidate-item{display:flex;align-items:center;gap:12px;padding:12px 16px;cursor:pointer}.sfx-candidate-item__checkbox{flex-shrink:0;display:flex;align-items:center}.sfx-candidate-item__details{flex:1;min-width:0}.sfx-candidate-item__details .sfx-candidate-item__name,.sfx-candidate-item__details .sfx-candidate-item__subtext{display:block}.sfx-candidate-item__status{flex-shrink:0;margin-left:auto}.sfx-candidate-item:hover{background-color:#f9fafb}.sfx-candidate-item--disabled{opacity:.5;cursor:default}.sfx-candidate-item--disabled .sfx-candidate-item__checkbox{pointer-events:none}.sfx-candidate-item--disabled:hover{background-color:transparent}\n"] }]
4311
4314
  }], propDecorators: { candidate: [{
4312
4315
  type: Input
4313
4316
  }], selectionChanged: [{
@@ -10991,6 +10994,125 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
10991
10994
  }]
10992
10995
  }] });
10993
10996
 
10997
+ class InviteCandidateModalComponent {
10998
+ constructor() {
10999
+ this.modalTitle = 'Invite Contacts';
11000
+ this.modalSubtitle = 'to Technical Interview - Round 1';
11001
+ this.bodyText = 'Choose contacts. Please note the contact must be associated with this job';
11002
+ this.confirmButtonText = 'Send Invitations';
11003
+ this.cancelButtonText = 'Cancel';
11004
+ this.confirmButtonDisabled = false;
11005
+ this.candidates = [];
11006
+ this.candidateListMaxHeight = '380px';
11007
+ this.searchPlaceholder = 'Search by Name, Email or Title';
11008
+ this.noMatchText = 'No matches found';
11009
+ this.errorText = 'Something went wrong. Please try again.';
11010
+ this.isLoading = false;
11011
+ this.hasError = false;
11012
+ this.showSearch = true;
11013
+ this.confirmClicked = new EventEmitter();
11014
+ this.cancelClicked = new EventEmitter();
11015
+ this.closeButtonClicked = new EventEmitter();
11016
+ this.selectionChanged = new EventEmitter();
11017
+ this.searchChanged = new EventEmitter();
11018
+ }
11019
+ onConfirm() {
11020
+ this.confirmClicked.emit();
11021
+ }
11022
+ onCancel() {
11023
+ this.cancelClicked.emit();
11024
+ }
11025
+ onCloseButtonClick() {
11026
+ this.closeButtonClicked.emit();
11027
+ }
11028
+ onSelectionChanged(event) {
11029
+ this.selectionChanged.emit(event);
11030
+ }
11031
+ onSearchChanged(value) {
11032
+ this.searchChanged.emit(value);
11033
+ }
11034
+ }
11035
+ InviteCandidateModalComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InviteCandidateModalComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
11036
+ InviteCandidateModalComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: InviteCandidateModalComponent, selector: "symphony-invite-candidate-modal", inputs: { modalTitle: "modalTitle", modalSubtitle: "modalSubtitle", bodyText: "bodyText", confirmButtonText: "confirmButtonText", cancelButtonText: "cancelButtonText", confirmButtonDisabled: "confirmButtonDisabled", candidates: "candidates", candidateListMaxHeight: "candidateListMaxHeight", searchPlaceholder: "searchPlaceholder", noMatchText: "noMatchText", errorText: "errorText", isLoading: "isLoading", hasError: "hasError", showSearch: "showSearch" }, outputs: { confirmClicked: "confirmClicked", cancelClicked: "cancelClicked", closeButtonClicked: "closeButtonClicked", selectionChanged: "selectionChanged", searchChanged: "searchChanged" }, ngImport: i0, template: "<symphony-two-column-modal-template [hideSubtitle]=\"false\">\n <symphony-h4 sfx-modal-title>{{ modalTitle }}</symphony-h4>\n <symphony-icon\n sfx-close-button\n [icon]=\"'si-close-modal'\"\n (clicked)=\"onCloseButtonClick()\"\n ></symphony-icon>\n <symphony-paragraph sfx-modal-subtitle>{{ modalSubtitle }}</symphony-paragraph>\n\n <section class=\"sfx-p-30 invite-candidate-modal__body\" sfx-modal-body-area>\n <symphony-paragraph\n class=\"invite-candidate-modal__body-text sfx-mb-20\"\n >{{ bodyText }}</symphony-paragraph>\n <symphony-candidate-list\n [candidates]=\"candidates\"\n [maxHeight]=\"candidateListMaxHeight\"\n [searchPlaceholder]=\"searchPlaceholder\"\n [noMatchText]=\"noMatchText\"\n [errorText]=\"errorText\"\n [isLoading]=\"isLoading\"\n [hasError]=\"hasError\"\n [showSearch]=\"showSearch\"\n (selectionChanged)=\"onSelectionChanged($event)\"\n (searchChanged)=\"onSearchChanged($event)\"\n ></symphony-candidate-list>\n </section>\n\n <symphony-button-v2\n sfx-button-secondary\n id=\"button-invite-candidate-modal-cancel\"\n class=\"pull-right sfx-d-flex\"\n [text]=\"cancelButtonText\"\n [isSecondary]=\"true\"\n (clicked)=\"onCancel()\"\n ></symphony-button-v2>\n <symphony-button-v2\n sfx-button-primary\n id=\"button-invite-candidate-modal-confirm\"\n class=\"pull-right sfx-d-flex\"\n [text]=\"confirmButtonText\"\n [disabled]=\"confirmButtonDisabled\"\n (clicked)=\"onConfirm()\"\n ></symphony-button-v2>\n</symphony-two-column-modal-template>\n", styles: [".invite-candidate-modal__body,.invite-candidate-modal__body-text{display:block}\n"], components: [{ type: TwoColumnModalTemplateComponent, selector: "symphony-two-column-modal-template", inputs: ["hideFooter", "hideSubtitle"] }, { type: H4Component, selector: "symphony-h4", inputs: ["text", "isSecondary"] }, { type: IconComponent, selector: "symphony-icon", inputs: ["icon", "isSecondary", "size", "iconColor"], outputs: ["clicked"] }, { type: ParagraphComponent, selector: "symphony-paragraph", inputs: ["text", "isSecondary", "isFontBold", "fontSize", "fontWeight"] }, { type: CandidateListComponent, selector: "symphony-candidate-list", inputs: ["candidates", "maxHeight", "label", "searchPlaceholder", "noMatchText", "errorText", "isLoading", "hasError", "showSearch"], outputs: ["selectionChanged", "searchChanged"] }, { type: ButtonV2Component, selector: "symphony-button-v2" }] });
11037
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InviteCandidateModalComponent, decorators: [{
11038
+ type: Component,
11039
+ args: [{ selector: 'symphony-invite-candidate-modal', template: "<symphony-two-column-modal-template [hideSubtitle]=\"false\">\n <symphony-h4 sfx-modal-title>{{ modalTitle }}</symphony-h4>\n <symphony-icon\n sfx-close-button\n [icon]=\"'si-close-modal'\"\n (clicked)=\"onCloseButtonClick()\"\n ></symphony-icon>\n <symphony-paragraph sfx-modal-subtitle>{{ modalSubtitle }}</symphony-paragraph>\n\n <section class=\"sfx-p-30 invite-candidate-modal__body\" sfx-modal-body-area>\n <symphony-paragraph\n class=\"invite-candidate-modal__body-text sfx-mb-20\"\n >{{ bodyText }}</symphony-paragraph>\n <symphony-candidate-list\n [candidates]=\"candidates\"\n [maxHeight]=\"candidateListMaxHeight\"\n [searchPlaceholder]=\"searchPlaceholder\"\n [noMatchText]=\"noMatchText\"\n [errorText]=\"errorText\"\n [isLoading]=\"isLoading\"\n [hasError]=\"hasError\"\n [showSearch]=\"showSearch\"\n (selectionChanged)=\"onSelectionChanged($event)\"\n (searchChanged)=\"onSearchChanged($event)\"\n ></symphony-candidate-list>\n </section>\n\n <symphony-button-v2\n sfx-button-secondary\n id=\"button-invite-candidate-modal-cancel\"\n class=\"pull-right sfx-d-flex\"\n [text]=\"cancelButtonText\"\n [isSecondary]=\"true\"\n (clicked)=\"onCancel()\"\n ></symphony-button-v2>\n <symphony-button-v2\n sfx-button-primary\n id=\"button-invite-candidate-modal-confirm\"\n class=\"pull-right sfx-d-flex\"\n [text]=\"confirmButtonText\"\n [disabled]=\"confirmButtonDisabled\"\n (clicked)=\"onConfirm()\"\n ></symphony-button-v2>\n</symphony-two-column-modal-template>\n", styles: [".invite-candidate-modal__body,.invite-candidate-modal__body-text{display:block}\n"] }]
11040
+ }], propDecorators: { modalTitle: [{
11041
+ type: Input
11042
+ }], modalSubtitle: [{
11043
+ type: Input
11044
+ }], bodyText: [{
11045
+ type: Input
11046
+ }], confirmButtonText: [{
11047
+ type: Input
11048
+ }], cancelButtonText: [{
11049
+ type: Input
11050
+ }], confirmButtonDisabled: [{
11051
+ type: Input
11052
+ }], candidates: [{
11053
+ type: Input
11054
+ }], candidateListMaxHeight: [{
11055
+ type: Input
11056
+ }], searchPlaceholder: [{
11057
+ type: Input
11058
+ }], noMatchText: [{
11059
+ type: Input
11060
+ }], errorText: [{
11061
+ type: Input
11062
+ }], isLoading: [{
11063
+ type: Input
11064
+ }], hasError: [{
11065
+ type: Input
11066
+ }], showSearch: [{
11067
+ type: Input
11068
+ }], confirmClicked: [{
11069
+ type: Output
11070
+ }], cancelClicked: [{
11071
+ type: Output
11072
+ }], closeButtonClicked: [{
11073
+ type: Output
11074
+ }], selectionChanged: [{
11075
+ type: Output
11076
+ }], searchChanged: [{
11077
+ type: Output
11078
+ }] } });
11079
+
11080
+ class InviteCandidateModalModule {
11081
+ }
11082
+ InviteCandidateModalModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InviteCandidateModalModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
11083
+ InviteCandidateModalModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InviteCandidateModalModule, declarations: [InviteCandidateModalComponent], imports: [CommonModule,
11084
+ TwoColumnModalModule,
11085
+ IconModule,
11086
+ H4Module,
11087
+ ParagraphModule,
11088
+ ButtonV2Module,
11089
+ CandidateListModule], exports: [InviteCandidateModalComponent] });
11090
+ InviteCandidateModalModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InviteCandidateModalModule, imports: [[
11091
+ CommonModule,
11092
+ TwoColumnModalModule,
11093
+ IconModule,
11094
+ H4Module,
11095
+ ParagraphModule,
11096
+ ButtonV2Module,
11097
+ CandidateListModule,
11098
+ ]] });
11099
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InviteCandidateModalModule, decorators: [{
11100
+ type: NgModule,
11101
+ args: [{
11102
+ declarations: [InviteCandidateModalComponent],
11103
+ imports: [
11104
+ CommonModule,
11105
+ TwoColumnModalModule,
11106
+ IconModule,
11107
+ H4Module,
11108
+ ParagraphModule,
11109
+ ButtonV2Module,
11110
+ CandidateListModule,
11111
+ ],
11112
+ exports: [InviteCandidateModalComponent],
11113
+ }]
11114
+ }] });
11115
+
10994
11116
  class EditableSettingPartialPageComponent {
10995
11117
  constructor() {
10996
11118
  this.editableSettingValueChanged = new EventEmitter();
@@ -11880,5 +12002,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
11880
12002
  * Generated bundle index. Do not edit.
11881
12003
  */
11882
12004
 
11883
- export { AISearchAssistantDrawerComponent, AISearchAssistantDrawerModule, ActionBarComponent, ActionBarJobListComponent, ActionBarJobListModule, ActionBarModule, ActionBarSelectionCounterComponent, ActionBarSelectionCounterModule, ActivityScoreLevel, AdditionModalComponent, AdditionModalModule, AdditionalInformationCardListComponent, AdditionalInformationCardListModule, AdvanceFilterSelectedCounterComponent, AdvanceFilterSelectedCounterModule, AdvanceSearchModalComponent, AdvanceSearchModalModule, AdvertiseModalComponent, AdvertiseModalModule, AdvertisedJobPostingsListPageComponent, AdvertisedJobPostingsListPageModule, AdvertisedJobPostingsModalComponent, AdvertisedJobPostingsModalModule, AdvertisedJobsCostComponent, AdvertisedJobsCostModule, AlertDuration, AssignToUserModalComponent, AssignToUserModalModule, AssignedToWidgetComponent, AssignedToWidgetModule, AtomsModule, AvatarComponent, AvatarModule, BreadcrumbComponent, BreadcrumbModule, BulkImportAdminListPageComponent, BulkImportAdminListPageModule, ButtonComponent, ButtonDropdownComponent, ButtonDropdownModule, ButtonModule, ButtonV2Component, ButtonV2Module, ButtonWithIconComponent, ButtonWithIconModule, CalendarAvailabilityModalComponent, CalendarAvailabilityModalModule, CandidateCardComponent, CandidateCardModule, CandidateItemComponent, CandidateItemModule, CandidateListComponent, CandidateListModule, CapitalizeFirstCharacterPipe, CardComponent, CardListComponent, CardListModule, CardModule, CharacterCounterComponent, CharacterCounterModule, ChatHistoryDateStampComponent, ChatHistoryDateStampModule, ChatHistoryMessageAvatarComponent, ChatHistoryMessageAvatarModule, ChatHistoryMessageBubbleComponent, ChatHistoryMessageBubbleModule, ChatHistoryMessageItemComponent, ChatHistoryMessageItemModule, ChatHistoryMessageListComponent, ChatHistoryMessageListModule, ChatbotHistoryModalComponent, ChatbotHistoryModalModule, ColorNames, ColoredTextIndicatorComponent, ColoredTextIndicatorModule, ConfirmationModalComponent, ConfirmationModalModule, ContactActivityScoreComponent, ContactActivityScoreModule, ContextualMenuComponent, ContextualMenuModule, CreateSessionPageTemplateComponent, CreateSessionPageTemplateModule, CustomDetailWithGridComponent, CustomDetailWithGridModule, DocumentManagementItemComponent, DocumentManagementItemModule, DocumentManagementListComponent, DocumentManagementListModule, DomainWhitelistingPartialPageComponent, DomainWhitelistingPartialPageModule, EditableSettingItemComponent, EditableSettingItemListComponent, EditableSettingItemListModule, EditableSettingItemModule, EditableSettingKey, EditableSettingPartialPageComponent, EditableSettingPartialPageModule, EmailValidator, EventSettingsMoreOptionsComponent, EventSettingsMoreOptionsModule, EventsSettingsPageComponent, EventsSettingsPageModule, FeedbackCardComponent, FeedbackCardListComponent, FeedbackCardListModule, FeedbackCardModule, FeedbackCardState, FeedbackDetailPageComponent, FeedbackDetailPageModule, FeedbackListPageComponent, FeedbackListPageModule, FeedbackLoginModalComponent, FeedbackLoginModalModule, FeedbackRequestListPageComponent, FeedbackRequestListPageModule, FeedbackSettingDetailsPageComponent, FeedbackSettingDetailsPageModule, FileUploadComponent, FileUploadModule, FileUploadV2Component, FileUploadV2Module, FilterAreaComponent, FilterAreaModule, FilterDetailComponent, FilterDetailModule, FilterDetailTreeComponent, FilterDetailTreeModule, FilterTabsComponent, FilterTabsModule, FilterTabsV2Component, FilterTabsV2Module, FormattedCounterComponent, FormattedCounterModule, FrameworkModule, GenerateLicenseModalComponent, GenerateLicenseModalModule, GridActionBarV2Component, GridActionBarV2Module, GridActionsComponent, GridActionsModule, GridCellClickableComponent, GridCellClickableModule, GridCellClickedOpenNewTabComponent, GridCellClickedOpenNewTabModule, GridCellLoaderModule, GridComponent, GridControlsComponent, GridControlsModule, GridDownloadComponent, GridDownloadModule, GridLoadingCellComponent, GridModule, GridNoRowsOverlayComponent, GridNoRowsOverlayModule, GridToggleCellRendererComponent, GridToggleCellRendererModule, H1Component, H1Module, H2Component, H2Module, H3Component, H3Module, H4Component, H4Module, H5Component, H5Module, H5WithIconComponent, H5WithIconModule, IconComponent, IconModule, IconWithTooltipComponent, IconWithTooltipModule, IconWrapperComponent, IconWrapperModule, Icons, InformationModalComponent, InformationModalModule, InputCheckboxComponent, InputCheckboxListComponent, InputCheckboxListModule, InputCheckboxModule, InputChipsComponent, InputChipsModule, InputDropdownComponent, InputDropdownList, InputDropdownListItemModel, InputDropdownModule, InputFileUploadComponent, InputFileUploadModule, InputLimitedTextComponent, InputLimitedTextModule, InputNumberComponent, InputNumberModule, InputRadioComponent, InputRadioModule, InputRadioToggleComponent, InputRadioToggleModule, InputSearchCheckboxDropdownComponent, InputSearchCheckboxDropdownModule, InputTextComponent, InputTextModule, InputTextareaComponent, InputTextareaModule, InputTextareaWithSendComponent, InputTextareaWithSendModule, InputToggleComponent, InputToggleModule, JobListPageComponent, JobListPageModule, LibrariesPageComponent, LibrariesPageModule, LinkedinPremiumJobPostingsModalComponent, LinkedinPremiumJobPostingsModalModule, MergeContactClickedOpenModalComponent, MergeContactClickedOpenModalModule, MergeContactsModalComponent, MergeContactsModalModule, MoleculesModule, MultiSelectDataModule, MultiselectSearchCheckbox, NavigationLinkComponent, NavigationLinkModule, NotificationModalComponent, NotificationModalModule, NotificationsComponent, NotificationsModule, OrganismsModule, OverflowTextComponent, OverflowTextModule, OverflowTextTooltipComponent, OverflowTextTooltipModule, ParagraphComponent, ParagraphModule, PartialPages, PhaserCardComponent, PhaserCardModule, PhaserComponent, PhaserModule, PillComponent, PillModule, PillsComponent, PillsModule, PipeModule, RelevanceScoreComponent, RelevanceScoreModule, ReportLicenseDetailsPageComponent, ReportLicenseDetailsPageModule, ReportsCardComponent, ReportsCardListComponent, ReportsCardListModule, ReportsCardModule, ReportsPageComponent, ReportsPageModule, SaveSearchModalComponent, SaveSearchModalModule, ScheduleInterviewModalComponent, ScheduleInterviewModalModule, SettingDetailPageComponent, SettingDetailPageModule, SettingListPageComponent, SettingListPageModule, SettingsDetailNavigationItemComponent, SettingsDetailNavigationItemModule, SettingsDetailNavigationListComponent, SettingsDetailNavigationListModule, SettingsLicenseManagementComponent, SettingsLicenseManagementModule, SettingsReportManagementComponent, SettingsReportManagementModule, SfxLoaderComponent, SfxLoaderModule, SfxPageLoaderComponent, SfxPageLoaderModule, SfxProgressBarComponent, SfxProgressBarModule, SidebarNavigationComponent, SidebarNavigationModule, SidebarNavigationV2Component, SidebarNavigationV2Module, SmsUsageReportPageComponent, SmsUsageReportPageModule, StatusCardComponent, StatusCardModule, StatusIndicatorComponent, StatusIndicatorModule, StatusPillComponent, StatusPillModule, SymphonyModalComponent, SymphonyModalModule, TabsComponent, TabsModules, TaskStatusComponent, TaskStatusModule, TemplatesModule, ToasterAlertComponent, ToasterAlertModel, ToasterAlertModule, ToasterAlertType, TooltipWrapperComponent, TooltipWrapperModule, TrimIdPipe, TwoColumnFilterAreaComponent, TwoColumnFilterAreaModule, UploadResumeModalComponent, UploadResumeModalModule, VerticalSeparatorComponent, VerticalSeparatorModule, gridType };
12005
+ export { AISearchAssistantDrawerComponent, AISearchAssistantDrawerModule, ActionBarComponent, ActionBarJobListComponent, ActionBarJobListModule, ActionBarModule, ActionBarSelectionCounterComponent, ActionBarSelectionCounterModule, ActivityScoreLevel, AdditionModalComponent, AdditionModalModule, AdditionalInformationCardListComponent, AdditionalInformationCardListModule, AdvanceFilterSelectedCounterComponent, AdvanceFilterSelectedCounterModule, AdvanceSearchModalComponent, AdvanceSearchModalModule, AdvertiseModalComponent, AdvertiseModalModule, AdvertisedJobPostingsListPageComponent, AdvertisedJobPostingsListPageModule, AdvertisedJobPostingsModalComponent, AdvertisedJobPostingsModalModule, AdvertisedJobsCostComponent, AdvertisedJobsCostModule, AlertDuration, AssignToUserModalComponent, AssignToUserModalModule, AssignedToWidgetComponent, AssignedToWidgetModule, AtomsModule, AvatarComponent, AvatarModule, BreadcrumbComponent, BreadcrumbModule, BulkImportAdminListPageComponent, BulkImportAdminListPageModule, ButtonComponent, ButtonDropdownComponent, ButtonDropdownModule, ButtonModule, ButtonV2Component, ButtonV2Module, ButtonWithIconComponent, ButtonWithIconModule, CalendarAvailabilityModalComponent, CalendarAvailabilityModalModule, CandidateCardComponent, CandidateCardModule, CandidateItemComponent, CandidateItemModule, CandidateListComponent, CandidateListModule, CapitalizeFirstCharacterPipe, CardComponent, CardListComponent, CardListModule, CardModule, CharacterCounterComponent, CharacterCounterModule, ChatHistoryDateStampComponent, ChatHistoryDateStampModule, ChatHistoryMessageAvatarComponent, ChatHistoryMessageAvatarModule, ChatHistoryMessageBubbleComponent, ChatHistoryMessageBubbleModule, ChatHistoryMessageItemComponent, ChatHistoryMessageItemModule, ChatHistoryMessageListComponent, ChatHistoryMessageListModule, ChatbotHistoryModalComponent, ChatbotHistoryModalModule, ColorNames, ColoredTextIndicatorComponent, ColoredTextIndicatorModule, ConfirmationModalComponent, ConfirmationModalModule, ContactActivityScoreComponent, ContactActivityScoreModule, ContextualMenuComponent, ContextualMenuModule, CreateSessionPageTemplateComponent, CreateSessionPageTemplateModule, CustomDetailWithGridComponent, CustomDetailWithGridModule, DocumentManagementItemComponent, DocumentManagementItemModule, DocumentManagementListComponent, DocumentManagementListModule, DomainWhitelistingPartialPageComponent, DomainWhitelistingPartialPageModule, EditableSettingItemComponent, EditableSettingItemListComponent, EditableSettingItemListModule, EditableSettingItemModule, EditableSettingKey, EditableSettingPartialPageComponent, EditableSettingPartialPageModule, EmailValidator, EventSettingsMoreOptionsComponent, EventSettingsMoreOptionsModule, EventsSettingsPageComponent, EventsSettingsPageModule, FeedbackCardComponent, FeedbackCardListComponent, FeedbackCardListModule, FeedbackCardModule, FeedbackCardState, FeedbackDetailPageComponent, FeedbackDetailPageModule, FeedbackListPageComponent, FeedbackListPageModule, FeedbackLoginModalComponent, FeedbackLoginModalModule, FeedbackRequestListPageComponent, FeedbackRequestListPageModule, FeedbackSettingDetailsPageComponent, FeedbackSettingDetailsPageModule, FileUploadComponent, FileUploadModule, FileUploadV2Component, FileUploadV2Module, FilterAreaComponent, FilterAreaModule, FilterDetailComponent, FilterDetailModule, FilterDetailTreeComponent, FilterDetailTreeModule, FilterTabsComponent, FilterTabsModule, FilterTabsV2Component, FilterTabsV2Module, FormattedCounterComponent, FormattedCounterModule, FrameworkModule, GenerateLicenseModalComponent, GenerateLicenseModalModule, GridActionBarV2Component, GridActionBarV2Module, GridActionsComponent, GridActionsModule, GridCellClickableComponent, GridCellClickableModule, GridCellClickedOpenNewTabComponent, GridCellClickedOpenNewTabModule, GridCellLoaderModule, GridComponent, GridControlsComponent, GridControlsModule, GridDownloadComponent, GridDownloadModule, GridLoadingCellComponent, GridModule, GridNoRowsOverlayComponent, GridNoRowsOverlayModule, GridToggleCellRendererComponent, GridToggleCellRendererModule, H1Component, H1Module, H2Component, H2Module, H3Component, H3Module, H4Component, H4Module, H5Component, H5Module, H5WithIconComponent, H5WithIconModule, IconComponent, IconModule, IconWithTooltipComponent, IconWithTooltipModule, IconWrapperComponent, IconWrapperModule, Icons, InformationModalComponent, InformationModalModule, InputCheckboxComponent, InputCheckboxListComponent, InputCheckboxListModule, InputCheckboxModule, InputChipsComponent, InputChipsModule, InputDropdownComponent, InputDropdownList, InputDropdownListItemModel, InputDropdownModule, InputFileUploadComponent, InputFileUploadModule, InputLimitedTextComponent, InputLimitedTextModule, InputNumberComponent, InputNumberModule, InputRadioComponent, InputRadioModule, InputRadioToggleComponent, InputRadioToggleModule, InputSearchCheckboxDropdownComponent, InputSearchCheckboxDropdownModule, InputTextComponent, InputTextModule, InputTextareaComponent, InputTextareaModule, InputTextareaWithSendComponent, InputTextareaWithSendModule, InputToggleComponent, InputToggleModule, InviteCandidateModalComponent, InviteCandidateModalModule, JobListPageComponent, JobListPageModule, LibrariesPageComponent, LibrariesPageModule, LinkedinPremiumJobPostingsModalComponent, LinkedinPremiumJobPostingsModalModule, MergeContactClickedOpenModalComponent, MergeContactClickedOpenModalModule, MergeContactsModalComponent, MergeContactsModalModule, MoleculesModule, MultiSelectDataModule, MultiselectSearchCheckbox, NavigationLinkComponent, NavigationLinkModule, NotificationModalComponent, NotificationModalModule, NotificationsComponent, NotificationsModule, OrganismsModule, OverflowTextComponent, OverflowTextModule, OverflowTextTooltipComponent, OverflowTextTooltipModule, ParagraphComponent, ParagraphModule, PartialPages, PhaserCardComponent, PhaserCardModule, PhaserComponent, PhaserModule, PillComponent, PillModule, PillsComponent, PillsModule, PipeModule, RelevanceScoreComponent, RelevanceScoreModule, ReportLicenseDetailsPageComponent, ReportLicenseDetailsPageModule, ReportsCardComponent, ReportsCardListComponent, ReportsCardListModule, ReportsCardModule, ReportsPageComponent, ReportsPageModule, SaveSearchModalComponent, SaveSearchModalModule, ScheduleInterviewModalComponent, ScheduleInterviewModalModule, SettingDetailPageComponent, SettingDetailPageModule, SettingListPageComponent, SettingListPageModule, SettingsDetailNavigationItemComponent, SettingsDetailNavigationItemModule, SettingsDetailNavigationListComponent, SettingsDetailNavigationListModule, SettingsLicenseManagementComponent, SettingsLicenseManagementModule, SettingsReportManagementComponent, SettingsReportManagementModule, SfxLoaderComponent, SfxLoaderModule, SfxPageLoaderComponent, SfxPageLoaderModule, SfxProgressBarComponent, SfxProgressBarModule, SidebarNavigationComponent, SidebarNavigationModule, SidebarNavigationV2Component, SidebarNavigationV2Module, SmsUsageReportPageComponent, SmsUsageReportPageModule, StatusCardComponent, StatusCardModule, StatusIndicatorComponent, StatusIndicatorModule, StatusPillComponent, StatusPillModule, SymphonyModalComponent, SymphonyModalModule, TabsComponent, TabsModules, TaskStatusComponent, TaskStatusModule, TemplatesModule, ToasterAlertComponent, ToasterAlertModel, ToasterAlertModule, ToasterAlertType, TooltipWrapperComponent, TooltipWrapperModule, TrimIdPipe, TwoColumnFilterAreaComponent, TwoColumnFilterAreaModule, UploadResumeModalComponent, UploadResumeModalModule, VerticalSeparatorComponent, VerticalSeparatorModule, gridType };
11884
12006
  //# sourceMappingURL=symphony-talent-component-library-projects-component-library.mjs.map