@symphony-talent/component-library 4.228.0 → 4.229.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 (21) hide show
  1. package/esm2020/lib/organisms/candidate-list/candidate-list.component.mjs +84 -0
  2. package/esm2020/lib/organisms/candidate-list/candidate-list.module.mjs +38 -0
  3. package/esm2020/projects/component-library/lib/organisms/candidate-list/candidate-list.component.mjs +84 -0
  4. package/esm2020/projects/component-library/lib/organisms/candidate-list/candidate-list.module.mjs +38 -0
  5. package/esm2020/projects/component-library/public-api.mjs +3 -1
  6. package/esm2020/public-api.mjs +3 -1
  7. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +110 -1
  8. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
  9. package/fesm2015/symphony-talent-component-library.mjs +110 -1
  10. package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
  11. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +108 -1
  12. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
  13. package/fesm2020/symphony-talent-component-library.mjs +108 -1
  14. package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
  15. package/lib/organisms/candidate-list/candidate-list.component.d.ts +26 -0
  16. package/lib/organisms/candidate-list/candidate-list.module.d.ts +12 -0
  17. package/package.json +1 -1
  18. package/projects/component-library/lib/organisms/candidate-list/candidate-list.component.d.ts +26 -0
  19. package/projects/component-library/lib/organisms/candidate-list/candidate-list.module.d.ts +12 -0
  20. package/projects/component-library/public-api.d.ts +2 -0
  21. package/public-api.d.ts +2 -0
@@ -4345,6 +4345,115 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
4345
4345
  }]
4346
4346
  }] });
4347
4347
 
4348
+ class CandidateListComponent {
4349
+ constructor() {
4350
+ this.candidatesValue = [];
4351
+ this.maxHeight = '380px';
4352
+ this.label = '';
4353
+ this.searchPlaceholder = 'Search by Name, Email or Title';
4354
+ this.noMatchText = 'No matches found';
4355
+ this.errorText = 'Something went wrong. Please try again.';
4356
+ this.isLoading = false;
4357
+ this.hasError = false;
4358
+ this.showSearch = true;
4359
+ this.selectionChanged = new EventEmitter();
4360
+ this.searchChanged = new EventEmitter();
4361
+ this.searchTerm = '';
4362
+ this.filteredCandidates = [];
4363
+ }
4364
+ set candidates(candidates) {
4365
+ this.candidatesValue = Array.isArray(candidates) ? candidates : [];
4366
+ this.applyFilter();
4367
+ }
4368
+ get candidates() {
4369
+ return this.candidatesValue;
4370
+ }
4371
+ trackByCandidate(index, candidate) {
4372
+ var _a;
4373
+ return (_a = candidate === null || candidate === void 0 ? void 0 : candidate.id) !== null && _a !== void 0 ? _a : index;
4374
+ }
4375
+ handleSelectionChanged(event) {
4376
+ this.selectionChanged.emit(event);
4377
+ }
4378
+ handleSearchChange(value) {
4379
+ this.searchTerm = value !== null && value !== void 0 ? value : '';
4380
+ this.applyFilter();
4381
+ this.searchChanged.emit(this.searchTerm);
4382
+ }
4383
+ applyFilter() {
4384
+ const term = this.searchTerm.trim().toLowerCase();
4385
+ if (!term) {
4386
+ this.filteredCandidates = [...this.candidatesValue];
4387
+ return;
4388
+ }
4389
+ this.filteredCandidates = this.candidatesValue.filter((candidate) => {
4390
+ var _a, _b, _c, _d, _e, _f;
4391
+ const name = (_b = (_a = candidate === null || candidate === void 0 ? void 0 : candidate.name) === null || _a === void 0 ? void 0 : _a.toLowerCase()) !== null && _b !== void 0 ? _b : '';
4392
+ const email = (_d = (_c = candidate === null || candidate === void 0 ? void 0 : candidate.email) === null || _c === void 0 ? void 0 : _c.toLowerCase()) !== null && _d !== void 0 ? _d : '';
4393
+ const title = (_f = (_e = candidate === null || candidate === void 0 ? void 0 : candidate.title) === null || _e === void 0 ? void 0 : _e.toLowerCase()) !== null && _f !== void 0 ? _f : '';
4394
+ return name.includes(term) || email.includes(term) || title.includes(term);
4395
+ });
4396
+ }
4397
+ }
4398
+ CandidateListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: CandidateListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
4399
+ CandidateListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: CandidateListComponent, selector: "symphony-candidate-list", inputs: { candidates: "candidates", maxHeight: "maxHeight", label: "label", searchPlaceholder: "searchPlaceholder", noMatchText: "noMatchText", errorText: "errorText", isLoading: "isLoading", hasError: "hasError", showSearch: "showSearch" }, outputs: { selectionChanged: "selectionChanged", searchChanged: "searchChanged" }, ngImport: i0, template: "<div class=\"sfx-candidate-list\">\n <div class=\"sfx-candidate-list__search\" *ngIf=\"showSearch\">\n <symphony-input-text\n [placeholder]=\"searchPlaceholder\"\n icon=\"si-search-new\"\n [label]=\"label\"\n [isInverse]=\"false\"\n [value]=\"searchTerm\"\n [isDisabled]=\"false\"\n [isLabelView]=\"false\"\n (textChange)=\"handleSearchChange($event)\"\n ></symphony-input-text>\n </div>\n\n <div class=\"sfx-candidate-list__wrapper\" [style.maxHeight]=\"maxHeight\">\n <ng-container *ngIf=\"isLoading; else loadedState\">\n <div class=\"sfx-candidate-list__state sfx-candidate-list__state--loading\">\n <symphony-sfx-loader></symphony-sfx-loader>\n </div>\n </ng-container>\n\n <ng-template #loadedState>\n <ng-container *ngIf=\"hasError; else readyState\">\n <div class=\"sfx-candidate-list__state sfx-candidate-list__state--error\">\n <symphony-paragraph\n class=\"sfx-candidate-list__state-message\"\n [fontSize]=\"'14px'\"\n >\n {{ errorText }}\n </symphony-paragraph>\n </div>\n </ng-container>\n </ng-template>\n\n <ng-template #readyState>\n <ng-container *ngIf=\"filteredCandidates?.length; else emptyState\">\n <ul class=\"sfx-candidate-list__items list-unstyled\">\n <li\n class=\"sfx-candidate-list__item\"\n *ngFor=\"let candidate of filteredCandidates; trackBy: trackByCandidate\"\n >\n <symphony-candidate-item\n [candidate]=\"candidate\"\n (selectionChanged)=\"handleSelectionChanged($event)\"\n ></symphony-candidate-item>\n </li>\n </ul>\n </ng-container>\n </ng-template>\n\n <ng-template #emptyState>\n <div class=\"sfx-candidate-list__state sfx-candidate-list__state--empty\">\n <symphony-paragraph\n class=\"sfx-candidate-list__state-message\"\n [fontSize]=\"'14px'\"\n >\n {{ noMatchText }}\n </symphony-paragraph>\n </div>\n </ng-template>\n </div>\n</div>\n", styles: [".sfx-candidate-list{display:flex;flex-direction:column;gap:12px}.sfx-candidate-list__search{width:100%}.sfx-candidate-list__wrapper{border:1px solid #e5e7eb;border-radius:10px;overflow-y:auto}.sfx-candidate-list__items{margin:0;padding:0}.sfx-candidate-list__item{border-bottom:1px solid #e5e7eb}.sfx-candidate-list__item:last-child{border-bottom:none}.sfx-candidate-list__state{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:12px;padding:32px 16px;text-align:center;min-height:160px}.sfx-candidate-list__state-message{color:#4b5563}\n"], components: [{ type: InputTextComponent, selector: "symphony-input-text", inputs: ["placeholder", "icon", "label", "isInverse", "size", "value", "maxlength", "isDisabled", "textInfo", "textLink", "textClick", "isLabelView"], outputs: ["textChange"] }, { type: SfxLoaderComponent, selector: "symphony-sfx-loader", inputs: ["leftStyle", "message", "hasCustomMessage"] }, { type: ParagraphComponent, selector: "symphony-paragraph", inputs: ["text", "isSecondary", "isFontBold", "fontSize", "fontWeight"] }, { type: CandidateItemComponent, selector: "symphony-candidate-item", inputs: ["candidate"], outputs: ["selectionChanged"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
4400
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: CandidateListComponent, decorators: [{
4401
+ type: Component,
4402
+ args: [{ selector: 'symphony-candidate-list', template: "<div class=\"sfx-candidate-list\">\n <div class=\"sfx-candidate-list__search\" *ngIf=\"showSearch\">\n <symphony-input-text\n [placeholder]=\"searchPlaceholder\"\n icon=\"si-search-new\"\n [label]=\"label\"\n [isInverse]=\"false\"\n [value]=\"searchTerm\"\n [isDisabled]=\"false\"\n [isLabelView]=\"false\"\n (textChange)=\"handleSearchChange($event)\"\n ></symphony-input-text>\n </div>\n\n <div class=\"sfx-candidate-list__wrapper\" [style.maxHeight]=\"maxHeight\">\n <ng-container *ngIf=\"isLoading; else loadedState\">\n <div class=\"sfx-candidate-list__state sfx-candidate-list__state--loading\">\n <symphony-sfx-loader></symphony-sfx-loader>\n </div>\n </ng-container>\n\n <ng-template #loadedState>\n <ng-container *ngIf=\"hasError; else readyState\">\n <div class=\"sfx-candidate-list__state sfx-candidate-list__state--error\">\n <symphony-paragraph\n class=\"sfx-candidate-list__state-message\"\n [fontSize]=\"'14px'\"\n >\n {{ errorText }}\n </symphony-paragraph>\n </div>\n </ng-container>\n </ng-template>\n\n <ng-template #readyState>\n <ng-container *ngIf=\"filteredCandidates?.length; else emptyState\">\n <ul class=\"sfx-candidate-list__items list-unstyled\">\n <li\n class=\"sfx-candidate-list__item\"\n *ngFor=\"let candidate of filteredCandidates; trackBy: trackByCandidate\"\n >\n <symphony-candidate-item\n [candidate]=\"candidate\"\n (selectionChanged)=\"handleSelectionChanged($event)\"\n ></symphony-candidate-item>\n </li>\n </ul>\n </ng-container>\n </ng-template>\n\n <ng-template #emptyState>\n <div class=\"sfx-candidate-list__state sfx-candidate-list__state--empty\">\n <symphony-paragraph\n class=\"sfx-candidate-list__state-message\"\n [fontSize]=\"'14px'\"\n >\n {{ noMatchText }}\n </symphony-paragraph>\n </div>\n </ng-template>\n </div>\n</div>\n", styles: [".sfx-candidate-list{display:flex;flex-direction:column;gap:12px}.sfx-candidate-list__search{width:100%}.sfx-candidate-list__wrapper{border:1px solid #e5e7eb;border-radius:10px;overflow-y:auto}.sfx-candidate-list__items{margin:0;padding:0}.sfx-candidate-list__item{border-bottom:1px solid #e5e7eb}.sfx-candidate-list__item:last-child{border-bottom:none}.sfx-candidate-list__state{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:12px;padding:32px 16px;text-align:center;min-height:160px}.sfx-candidate-list__state-message{color:#4b5563}\n"] }]
4403
+ }], propDecorators: { candidates: [{
4404
+ type: Input
4405
+ }], maxHeight: [{
4406
+ type: Input
4407
+ }], label: [{
4408
+ type: Input
4409
+ }], searchPlaceholder: [{
4410
+ type: Input
4411
+ }], noMatchText: [{
4412
+ type: Input
4413
+ }], errorText: [{
4414
+ type: Input
4415
+ }], isLoading: [{
4416
+ type: Input
4417
+ }], hasError: [{
4418
+ type: Input
4419
+ }], showSearch: [{
4420
+ type: Input
4421
+ }], selectionChanged: [{
4422
+ type: Output
4423
+ }], searchChanged: [{
4424
+ type: Output
4425
+ }] } });
4426
+
4427
+ class CandidateListModule {
4428
+ }
4429
+ CandidateListModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: CandidateListModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
4430
+ CandidateListModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: CandidateListModule, declarations: [CandidateListComponent], imports: [CommonModule,
4431
+ CandidateItemModule,
4432
+ InputTextModule,
4433
+ SfxLoaderModule,
4434
+ ParagraphModule], exports: [CandidateListComponent] });
4435
+ CandidateListModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: CandidateListModule, imports: [[
4436
+ CommonModule,
4437
+ CandidateItemModule,
4438
+ InputTextModule,
4439
+ SfxLoaderModule,
4440
+ ParagraphModule,
4441
+ ]] });
4442
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: CandidateListModule, decorators: [{
4443
+ type: NgModule,
4444
+ args: [{
4445
+ declarations: [CandidateListComponent],
4446
+ imports: [
4447
+ CommonModule,
4448
+ CandidateItemModule,
4449
+ InputTextModule,
4450
+ SfxLoaderModule,
4451
+ ParagraphModule,
4452
+ ],
4453
+ exports: [CandidateListComponent],
4454
+ }]
4455
+ }] });
4456
+
4348
4457
  class PhaserCardComponent {
4349
4458
  constructor() {
4350
4459
  this.cardClicked = new EventEmitter();
@@ -11785,5 +11894,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
11785
11894
  * Generated bundle index. Do not edit.
11786
11895
  */
11787
11896
 
11788
- 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, 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 };
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 };
11789
11898
  //# sourceMappingURL=symphony-talent-component-library.mjs.map