@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
@@ -4284,14 +4284,18 @@ class CandidateItemComponent {
4284
4284
  get candidate() {
4285
4285
  return this.candidateValue;
4286
4286
  }
4287
+ get isRowDisabled() {
4288
+ var _a;
4289
+ return !!((_a = this.candidate) === null || _a === void 0 ? void 0 : _a.isRowDisabled);
4290
+ }
4287
4291
  handleRowClick() {
4288
- if (!this.candidate) {
4292
+ if (!this.candidate || this.isRowDisabled) {
4289
4293
  return;
4290
4294
  }
4291
4295
  this.setSelection(!this.isSelected);
4292
4296
  }
4293
4297
  handleCheckboxClicked(event) {
4294
- if (!this.candidate) {
4298
+ if (!this.candidate || this.isRowDisabled) {
4295
4299
  return;
4296
4300
  }
4297
4301
  this.setSelection(event.isActive);
@@ -4308,10 +4312,10 @@ class CandidateItemComponent {
4308
4312
  }
4309
4313
  }
4310
4314
  CandidateItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: CandidateItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
4311
- 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"] }] });
4315
+ 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"] }] });
4312
4316
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: CandidateItemComponent, decorators: [{
4313
4317
  type: Component,
4314
- 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"] }]
4318
+ 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"] }]
4315
4319
  }], propDecorators: { candidate: [{
4316
4320
  type: Input
4317
4321
  }], selectionChanged: [{
@@ -11005,6 +11009,125 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
11005
11009
  }]
11006
11010
  }] });
11007
11011
 
11012
+ class InviteCandidateModalComponent {
11013
+ constructor() {
11014
+ this.modalTitle = 'Invite Contacts';
11015
+ this.modalSubtitle = 'to Technical Interview - Round 1';
11016
+ this.bodyText = 'Choose contacts. Please note the contact must be associated with this job';
11017
+ this.confirmButtonText = 'Send Invitations';
11018
+ this.cancelButtonText = 'Cancel';
11019
+ this.confirmButtonDisabled = false;
11020
+ this.candidates = [];
11021
+ this.candidateListMaxHeight = '380px';
11022
+ this.searchPlaceholder = 'Search by Name, Email or Title';
11023
+ this.noMatchText = 'No matches found';
11024
+ this.errorText = 'Something went wrong. Please try again.';
11025
+ this.isLoading = false;
11026
+ this.hasError = false;
11027
+ this.showSearch = true;
11028
+ this.confirmClicked = new EventEmitter();
11029
+ this.cancelClicked = new EventEmitter();
11030
+ this.closeButtonClicked = new EventEmitter();
11031
+ this.selectionChanged = new EventEmitter();
11032
+ this.searchChanged = new EventEmitter();
11033
+ }
11034
+ onConfirm() {
11035
+ this.confirmClicked.emit();
11036
+ }
11037
+ onCancel() {
11038
+ this.cancelClicked.emit();
11039
+ }
11040
+ onCloseButtonClick() {
11041
+ this.closeButtonClicked.emit();
11042
+ }
11043
+ onSelectionChanged(event) {
11044
+ this.selectionChanged.emit(event);
11045
+ }
11046
+ onSearchChanged(value) {
11047
+ this.searchChanged.emit(value);
11048
+ }
11049
+ }
11050
+ InviteCandidateModalComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InviteCandidateModalComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
11051
+ 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" }] });
11052
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InviteCandidateModalComponent, decorators: [{
11053
+ type: Component,
11054
+ 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"] }]
11055
+ }], propDecorators: { modalTitle: [{
11056
+ type: Input
11057
+ }], modalSubtitle: [{
11058
+ type: Input
11059
+ }], bodyText: [{
11060
+ type: Input
11061
+ }], confirmButtonText: [{
11062
+ type: Input
11063
+ }], cancelButtonText: [{
11064
+ type: Input
11065
+ }], confirmButtonDisabled: [{
11066
+ type: Input
11067
+ }], candidates: [{
11068
+ type: Input
11069
+ }], candidateListMaxHeight: [{
11070
+ type: Input
11071
+ }], searchPlaceholder: [{
11072
+ type: Input
11073
+ }], noMatchText: [{
11074
+ type: Input
11075
+ }], errorText: [{
11076
+ type: Input
11077
+ }], isLoading: [{
11078
+ type: Input
11079
+ }], hasError: [{
11080
+ type: Input
11081
+ }], showSearch: [{
11082
+ type: Input
11083
+ }], confirmClicked: [{
11084
+ type: Output
11085
+ }], cancelClicked: [{
11086
+ type: Output
11087
+ }], closeButtonClicked: [{
11088
+ type: Output
11089
+ }], selectionChanged: [{
11090
+ type: Output
11091
+ }], searchChanged: [{
11092
+ type: Output
11093
+ }] } });
11094
+
11095
+ class InviteCandidateModalModule {
11096
+ }
11097
+ InviteCandidateModalModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InviteCandidateModalModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
11098
+ InviteCandidateModalModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InviteCandidateModalModule, declarations: [InviteCandidateModalComponent], imports: [CommonModule,
11099
+ TwoColumnModalModule,
11100
+ IconModule,
11101
+ H4Module,
11102
+ ParagraphModule,
11103
+ ButtonV2Module,
11104
+ CandidateListModule], exports: [InviteCandidateModalComponent] });
11105
+ InviteCandidateModalModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InviteCandidateModalModule, imports: [[
11106
+ CommonModule,
11107
+ TwoColumnModalModule,
11108
+ IconModule,
11109
+ H4Module,
11110
+ ParagraphModule,
11111
+ ButtonV2Module,
11112
+ CandidateListModule,
11113
+ ]] });
11114
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InviteCandidateModalModule, decorators: [{
11115
+ type: NgModule,
11116
+ args: [{
11117
+ declarations: [InviteCandidateModalComponent],
11118
+ imports: [
11119
+ CommonModule,
11120
+ TwoColumnModalModule,
11121
+ IconModule,
11122
+ H4Module,
11123
+ ParagraphModule,
11124
+ ButtonV2Module,
11125
+ CandidateListModule,
11126
+ ],
11127
+ exports: [InviteCandidateModalComponent],
11128
+ }]
11129
+ }] });
11130
+
11008
11131
  class EditableSettingPartialPageComponent {
11009
11132
  constructor() {
11010
11133
  this.editableSettingValueChanged = new EventEmitter();
@@ -11894,5 +12017,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
11894
12017
  * Generated bundle index. Do not edit.
11895
12018
  */
11896
12019
 
11897
- 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 };
12020
+ 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 };
11898
12021
  //# sourceMappingURL=symphony-talent-component-library.mjs.map