@symphony-talent/component-library 4.228.0 → 4.230.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 (22) hide show
  1. package/README.md +5 -5
  2. package/esm2020/lib/organisms/candidate-list/candidate-list.component.mjs +84 -0
  3. package/esm2020/lib/organisms/candidate-list/candidate-list.module.mjs +38 -0
  4. package/esm2020/projects/component-library/lib/organisms/candidate-list/candidate-list.component.mjs +84 -0
  5. package/esm2020/projects/component-library/lib/organisms/candidate-list/candidate-list.module.mjs +38 -0
  6. package/esm2020/projects/component-library/public-api.mjs +3 -1
  7. package/esm2020/public-api.mjs +3 -1
  8. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +110 -1
  9. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
  10. package/fesm2015/symphony-talent-component-library.mjs +110 -1
  11. package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
  12. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +108 -1
  13. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
  14. package/fesm2020/symphony-talent-component-library.mjs +108 -1
  15. package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
  16. package/lib/organisms/candidate-list/candidate-list.component.d.ts +26 -0
  17. package/lib/organisms/candidate-list/candidate-list.module.d.ts +12 -0
  18. package/package.json +64 -2
  19. package/projects/component-library/lib/organisms/candidate-list/candidate-list.component.d.ts +26 -0
  20. package/projects/component-library/lib/organisms/candidate-list/candidate-list.module.d.ts +12 -0
  21. package/projects/component-library/public-api.d.ts +2 -0
  22. package/public-api.d.ts +2 -0
@@ -4341,6 +4341,113 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
4341
4341
  }]
4342
4342
  }] });
4343
4343
 
4344
+ class CandidateListComponent {
4345
+ constructor() {
4346
+ this.candidatesValue = [];
4347
+ this.maxHeight = '380px';
4348
+ this.label = '';
4349
+ this.searchPlaceholder = 'Search by Name, Email or Title';
4350
+ this.noMatchText = 'No matches found';
4351
+ this.errorText = 'Something went wrong. Please try again.';
4352
+ this.isLoading = false;
4353
+ this.hasError = false;
4354
+ this.showSearch = true;
4355
+ this.selectionChanged = new EventEmitter();
4356
+ this.searchChanged = new EventEmitter();
4357
+ this.searchTerm = '';
4358
+ this.filteredCandidates = [];
4359
+ }
4360
+ set candidates(candidates) {
4361
+ this.candidatesValue = Array.isArray(candidates) ? candidates : [];
4362
+ this.applyFilter();
4363
+ }
4364
+ get candidates() {
4365
+ return this.candidatesValue;
4366
+ }
4367
+ trackByCandidate(index, candidate) {
4368
+ return candidate?.id ?? index;
4369
+ }
4370
+ handleSelectionChanged(event) {
4371
+ this.selectionChanged.emit(event);
4372
+ }
4373
+ handleSearchChange(value) {
4374
+ this.searchTerm = value ?? '';
4375
+ this.applyFilter();
4376
+ this.searchChanged.emit(this.searchTerm);
4377
+ }
4378
+ applyFilter() {
4379
+ const term = this.searchTerm.trim().toLowerCase();
4380
+ if (!term) {
4381
+ this.filteredCandidates = [...this.candidatesValue];
4382
+ return;
4383
+ }
4384
+ this.filteredCandidates = this.candidatesValue.filter((candidate) => {
4385
+ const name = candidate?.name?.toLowerCase() ?? '';
4386
+ const email = candidate?.email?.toLowerCase() ?? '';
4387
+ const title = candidate?.title?.toLowerCase() ?? '';
4388
+ return name.includes(term) || email.includes(term) || title.includes(term);
4389
+ });
4390
+ }
4391
+ }
4392
+ CandidateListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: CandidateListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
4393
+ 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"] }] });
4394
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: CandidateListComponent, decorators: [{
4395
+ type: Component,
4396
+ 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"] }]
4397
+ }], propDecorators: { candidates: [{
4398
+ type: Input
4399
+ }], maxHeight: [{
4400
+ type: Input
4401
+ }], label: [{
4402
+ type: Input
4403
+ }], searchPlaceholder: [{
4404
+ type: Input
4405
+ }], noMatchText: [{
4406
+ type: Input
4407
+ }], errorText: [{
4408
+ type: Input
4409
+ }], isLoading: [{
4410
+ type: Input
4411
+ }], hasError: [{
4412
+ type: Input
4413
+ }], showSearch: [{
4414
+ type: Input
4415
+ }], selectionChanged: [{
4416
+ type: Output
4417
+ }], searchChanged: [{
4418
+ type: Output
4419
+ }] } });
4420
+
4421
+ class CandidateListModule {
4422
+ }
4423
+ CandidateListModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: CandidateListModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
4424
+ CandidateListModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: CandidateListModule, declarations: [CandidateListComponent], imports: [CommonModule,
4425
+ CandidateItemModule,
4426
+ InputTextModule,
4427
+ SfxLoaderModule,
4428
+ ParagraphModule], exports: [CandidateListComponent] });
4429
+ CandidateListModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: CandidateListModule, imports: [[
4430
+ CommonModule,
4431
+ CandidateItemModule,
4432
+ InputTextModule,
4433
+ SfxLoaderModule,
4434
+ ParagraphModule,
4435
+ ]] });
4436
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: CandidateListModule, decorators: [{
4437
+ type: NgModule,
4438
+ args: [{
4439
+ declarations: [CandidateListComponent],
4440
+ imports: [
4441
+ CommonModule,
4442
+ CandidateItemModule,
4443
+ InputTextModule,
4444
+ SfxLoaderModule,
4445
+ ParagraphModule,
4446
+ ],
4447
+ exports: [CandidateListComponent],
4448
+ }]
4449
+ }] });
4450
+
4344
4451
  class PhaserCardComponent {
4345
4452
  constructor() {
4346
4453
  this.cardClicked = new EventEmitter();
@@ -11773,5 +11880,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
11773
11880
  * Generated bundle index. Do not edit.
11774
11881
  */
11775
11882
 
11776
- 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 };
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 };
11777
11884
  //# sourceMappingURL=symphony-talent-component-library-projects-component-library.mjs.map