@symphony-talent/component-library 3.82.0 → 3.84.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 (35) hide show
  1. package/esm2020/lib/atoms/navigation-link-v2/navigation-link-v2.module.mjs +20 -0
  2. package/esm2020/lib/atoms/navigation-link-v2/navigation-link.component.mjs +18 -0
  3. package/esm2020/lib/molecules/file-upload/file-upload.component.mjs +1 -4
  4. package/esm2020/lib/organisms/sidebar-navigation-v2/sidebar-navigation.component.mjs +18 -0
  5. package/esm2020/lib/organisms/sidebar-navigation-v2/sidebar-navigation.module.mjs +34 -0
  6. package/esm2020/lib/organisms/upload-resume-modal/upload-resume-modal.component.mjs +1 -23
  7. package/esm2020/projects/component-library/lib/atoms/navigation-link-v2/navigation-link-v2.module.mjs +20 -0
  8. package/esm2020/projects/component-library/lib/atoms/navigation-link-v2/navigation-link.component.mjs +18 -0
  9. package/esm2020/projects/component-library/lib/molecules/file-upload/file-upload.component.mjs +1 -4
  10. package/esm2020/projects/component-library/lib/organisms/sidebar-navigation-v2/sidebar-navigation.component.mjs +18 -0
  11. package/esm2020/projects/component-library/lib/organisms/sidebar-navigation-v2/sidebar-navigation.module.mjs +34 -0
  12. package/esm2020/projects/component-library/lib/organisms/upload-resume-modal/upload-resume-modal.component.mjs +1 -23
  13. package/esm2020/projects/component-library/public-api.mjs +3 -1
  14. package/esm2020/public-api.mjs +3 -1
  15. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +67 -26
  16. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
  17. package/fesm2015/symphony-talent-component-library.mjs +67 -26
  18. package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
  19. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +67 -26
  20. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
  21. package/fesm2020/symphony-talent-component-library.mjs +67 -26
  22. package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
  23. package/lib/atoms/navigation-link-v2/navigation-link-v2.module.d.ts +10 -0
  24. package/lib/atoms/navigation-link-v2/navigation-link.component.d.ts +7 -0
  25. package/lib/molecules/file-upload/file-upload.component.d.ts +2 -3
  26. package/lib/organisms/sidebar-navigation-v2/sidebar-navigation.component.d.ts +9 -0
  27. package/lib/organisms/sidebar-navigation-v2/sidebar-navigation.module.d.ts +11 -0
  28. package/package.json +1 -1
  29. package/projects/component-library/lib/atoms/navigation-link-v2/navigation-link-v2.module.d.ts +10 -0
  30. package/projects/component-library/lib/atoms/navigation-link-v2/navigation-link.component.d.ts +7 -0
  31. package/projects/component-library/lib/molecules/file-upload/file-upload.component.d.ts +2 -3
  32. package/projects/component-library/lib/organisms/sidebar-navigation-v2/sidebar-navigation.component.d.ts +9 -0
  33. package/projects/component-library/lib/organisms/sidebar-navigation-v2/sidebar-navigation.module.d.ts +11 -0
  34. package/projects/component-library/public-api.d.ts +2 -0
  35. package/public-api.d.ts +2 -0
@@ -2601,9 +2601,6 @@ class FileUploadComponent {
2601
2601
  ngOnInit() {
2602
2602
  this.filetypeAccepted = this.fileUploadModel.fileFormatAccepted.join(', ');
2603
2603
  }
2604
- ngDoCheck() {
2605
- this.filetypeAccepted = this.fileUploadModel.fileFormatAccepted.join(', ');
2606
- }
2607
2604
  onCloseClick() {
2608
2605
  this.closeClick.emit();
2609
2606
  }
@@ -3385,11 +3382,6 @@ class UploadResumeModalComponent {
3385
3382
  name: 'Document',
3386
3383
  value: 'Document',
3387
3384
  },
3388
- {
3389
- id: 4,
3390
- name: 'Image',
3391
- value: 'Image',
3392
- },
3393
3385
  ],
3394
3386
  componentHeading: 'Document Type',
3395
3387
  },
@@ -3424,23 +3416,6 @@ class UploadResumeModalComponent {
3424
3416
  else {
3425
3417
  this.uploadResumeModel.isResume = false;
3426
3418
  }
3427
- if (selectedModel.value == 'Image') {
3428
- this.model.subTitle = 'Attach a .jpeg, .jpg or .png file upto 2MB';
3429
- this.uploadResumeModel.fileUploadModel.fileFormatAccepted = [
3430
- '.jpeg',
3431
- '.jpg',
3432
- '.png',
3433
- ];
3434
- }
3435
- else {
3436
- this.model.subTitle = 'Attach a .rtf, .docx, .txt or .pdf file upto 2MB';
3437
- this.uploadResumeModel.fileUploadModel.fileFormatAccepted = [
3438
- '.rtf',
3439
- '.docx',
3440
- '.txt',
3441
- '.pdf',
3442
- ];
3443
- }
3444
3419
  this.docTypeDropdowChange.emit(selectedModel.value);
3445
3420
  }
3446
3421
  onResumeCheckSelect(updateResumeCheckEvent) {
@@ -3903,6 +3878,72 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
3903
3878
  }]
3904
3879
  }] });
3905
3880
 
3881
+ class NavigationLinkV2Component extends NavigationLinkComponent {
3882
+ constructor() {
3883
+ super();
3884
+ }
3885
+ }
3886
+ NavigationLinkV2Component.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: NavigationLinkV2Component, deps: [], target: i0.ɵɵFactoryTarget.Component });
3887
+ NavigationLinkV2Component.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: NavigationLinkV2Component, selector: "symphony-navigation-link-v2", usesInheritance: true, ngImport: i0, template: "<div class=\"v2\">\n <symphony-tooltip-wrapper\n *ngIf=\"!isMenuOpen\"\n [placement]=\"'right'\"\n [tooltipHtml]=\"navigationLinkModel.linkText\"\n [ngClass]=\"{ 'sfx-menu-open': isMenuOpen }\"\n >\n <div class=\"nav-link\">\n <a\n [href]=\"navigationLinkModel.href\"\n [ngClass]=\"{ 'sfx-menu-active': navigationLinkModel.isActive }\"\n (click)=\"onClick()\"\n ><symphony-icon\n [icon]=\"navigationLinkModel.iconClass\"\n [size]=\"'24px'\"\n ></symphony-icon>\n <span>{{ navigationLinkModel.linkText }}</span>\n </a>\n </div>\n </symphony-tooltip-wrapper>\n\n <div\n class=\"nav-link\"\n *ngIf=\"isMenuOpen\"\n [ngClass]=\"{ 'sfx-menu-open': isMenuOpen }\"\n >\n <a\n [href]=\"navigationLinkModel.href\"\n [ngClass]=\"{ 'sfx-menu-active': navigationLinkModel.isActive }\"\n (click)=\"onClick()\"\n ><symphony-icon\n [icon]=\"navigationLinkModel.iconClass\"\n [size]=\"'24px'\"\n ></symphony-icon>\n <span>{{ navigationLinkModel.linkText }}</span>\n </a>\n </div>\n</div>\n", styles: [".v2 .nav-link a{color:#82919f;display:block;text-align:left;text-decoration:none;padding:16px 10px 16px 40px;border-left:5px solid white;transition:all .3s linear 0s}.v2 .nav-link a i{display:inline-block;vertical-align:middle}.v2 .nav-link a span{margin-left:30px;font-size:12px;line-height:1;text-transform:uppercase;vertical-align:middle;font-weight:600;display:none;opacity:0;transition:opacity 1s;font-family:neuzeit_groteskbold,sans-serif}.v2 .nav-link a.sfx-menu-active{color:#814dff;border-left:5px solid #814DFF}.v2 .nav-link a:hover{color:#334860}.v2 symphony-icon{display:inline-block;line-height:.6;vertical-align:middle}.v2 .sfx-menu-open.nav-link{width:280px}.v2 .sfx-menu-open a span{display:inline-block;animation:fade-in .5s forwards}.v2 .sfx-menu-open a:hover{background:#814DFF;color:#fff;border-left-color:#814dff}.v2 .sfx-menu-open a.sfx-menu-active{background:#814DFF;color:#fff}@keyframes fade-in{0%{opacity:0;transform:translate(-20px)}to{opacity:1;transform:translate(0)}}\n"], components: [{ type: TooltipWrapperComponent, selector: "symphony-tooltip-wrapper", inputs: ["placement", "tooltipHtml"] }, { type: IconComponent, selector: "symphony-icon", inputs: ["icon", "isSecondary", "size", "iconColor"], outputs: ["clicked"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
3888
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: NavigationLinkV2Component, decorators: [{
3889
+ type: Component,
3890
+ args: [{ selector: 'symphony-navigation-link-v2', template: "<div class=\"v2\">\n <symphony-tooltip-wrapper\n *ngIf=\"!isMenuOpen\"\n [placement]=\"'right'\"\n [tooltipHtml]=\"navigationLinkModel.linkText\"\n [ngClass]=\"{ 'sfx-menu-open': isMenuOpen }\"\n >\n <div class=\"nav-link\">\n <a\n [href]=\"navigationLinkModel.href\"\n [ngClass]=\"{ 'sfx-menu-active': navigationLinkModel.isActive }\"\n (click)=\"onClick()\"\n ><symphony-icon\n [icon]=\"navigationLinkModel.iconClass\"\n [size]=\"'24px'\"\n ></symphony-icon>\n <span>{{ navigationLinkModel.linkText }}</span>\n </a>\n </div>\n </symphony-tooltip-wrapper>\n\n <div\n class=\"nav-link\"\n *ngIf=\"isMenuOpen\"\n [ngClass]=\"{ 'sfx-menu-open': isMenuOpen }\"\n >\n <a\n [href]=\"navigationLinkModel.href\"\n [ngClass]=\"{ 'sfx-menu-active': navigationLinkModel.isActive }\"\n (click)=\"onClick()\"\n ><symphony-icon\n [icon]=\"navigationLinkModel.iconClass\"\n [size]=\"'24px'\"\n ></symphony-icon>\n <span>{{ navigationLinkModel.linkText }}</span>\n </a>\n </div>\n</div>\n", styles: [".v2 .nav-link a{color:#82919f;display:block;text-align:left;text-decoration:none;padding:16px 10px 16px 40px;border-left:5px solid white;transition:all .3s linear 0s}.v2 .nav-link a i{display:inline-block;vertical-align:middle}.v2 .nav-link a span{margin-left:30px;font-size:12px;line-height:1;text-transform:uppercase;vertical-align:middle;font-weight:600;display:none;opacity:0;transition:opacity 1s;font-family:neuzeit_groteskbold,sans-serif}.v2 .nav-link a.sfx-menu-active{color:#814dff;border-left:5px solid #814DFF}.v2 .nav-link a:hover{color:#334860}.v2 symphony-icon{display:inline-block;line-height:.6;vertical-align:middle}.v2 .sfx-menu-open.nav-link{width:280px}.v2 .sfx-menu-open a span{display:inline-block;animation:fade-in .5s forwards}.v2 .sfx-menu-open a:hover{background:#814DFF;color:#fff;border-left-color:#814dff}.v2 .sfx-menu-open a.sfx-menu-active{background:#814DFF;color:#fff}@keyframes fade-in{0%{opacity:0;transform:translate(-20px)}to{opacity:1;transform:translate(0)}}\n"] }]
3891
+ }], ctorParameters: function () { return []; } });
3892
+
3893
+ class SidebarNavigationV2Component extends SidebarNavigationComponent {
3894
+ constructor(cdRef) {
3895
+ super(cdRef);
3896
+ this.cdRef = cdRef;
3897
+ }
3898
+ }
3899
+ SidebarNavigationV2Component.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SidebarNavigationV2Component, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
3900
+ SidebarNavigationV2Component.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: SidebarNavigationV2Component, selector: "symphony-sidebar-navigation-v2", usesInheritance: true, ngImport: i0, template: "<div class=\"v2\">\n <nav\n class=\"sfx-sidebar-parent sfx-bg-white\"\n [ngClass]=\"{ 'sfx-menu-open': isMenuOpen }\"\n role=\"navigation\"\n >\n <div class=\"nav-link-list\">\n <symphony-navigation-link-v2\n *ngFor=\"let navLink of navLinks; index as i\"\n [navigationLinkModel]=\"navLink\"\n [isMenuOpen]=\"isMenuOpen\"\n (linkClick)=\"onLinkClick($event)\"\n ></symphony-navigation-link-v2>\n </div>\n </nav>\n</div>\n", styles: [".v2 .sfx-sidebar-parent{z-index:99999999;top:0;left:0;width:110px;height:100%;position:fixed;transition:width .5s;padding-top:.625rem}.v2 .sfx-sidebar-parent .menu-collapse{cursor:pointer}.v2 .sfx-sidebar-parent .back-btn{display:flex}.v2 .sfx-sidebar-parent .back-button-text{padding-top:20px;margin-left:20px;font-size:12px;text-transform:uppercase;vertical-align:middle;font-weight:600;font-family:neuzeit_groteskbold,sans-serif;animation:fade-in .5s forwards}.v2 .sfx-sidebar-parent .nav-link-list{overflow:hidden}.v2 .sfx-sidebar-parent .nav-link-list symphony-navigation-link-v2{display:block}.v2 .sfx-sidebar-parent .nav-link-list symphony-navigation-link-v2:hover{color:#334860}.v2 .sfx-sidebar-parent symphony-icon{display:inline-block;line-height:.6;vertical-align:middle;padding:17px 10px 17px 46px;color:#82919f}.v2 .sfx-sidebar-parent.sfx-menu-open{width:280px}.v2 .sfx-sidebar-parent.sfx-menu-open .menu-collapse:hover{background:#814DFF;color:#fff;border-left-color:#814dff}\n"], components: [{ type: NavigationLinkV2Component, selector: "symphony-navigation-link-v2" }], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
3901
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SidebarNavigationV2Component, decorators: [{
3902
+ type: Component,
3903
+ args: [{ selector: 'symphony-sidebar-navigation-v2', template: "<div class=\"v2\">\n <nav\n class=\"sfx-sidebar-parent sfx-bg-white\"\n [ngClass]=\"{ 'sfx-menu-open': isMenuOpen }\"\n role=\"navigation\"\n >\n <div class=\"nav-link-list\">\n <symphony-navigation-link-v2\n *ngFor=\"let navLink of navLinks; index as i\"\n [navigationLinkModel]=\"navLink\"\n [isMenuOpen]=\"isMenuOpen\"\n (linkClick)=\"onLinkClick($event)\"\n ></symphony-navigation-link-v2>\n </div>\n </nav>\n</div>\n", styles: [".v2 .sfx-sidebar-parent{z-index:99999999;top:0;left:0;width:110px;height:100%;position:fixed;transition:width .5s;padding-top:.625rem}.v2 .sfx-sidebar-parent .menu-collapse{cursor:pointer}.v2 .sfx-sidebar-parent .back-btn{display:flex}.v2 .sfx-sidebar-parent .back-button-text{padding-top:20px;margin-left:20px;font-size:12px;text-transform:uppercase;vertical-align:middle;font-weight:600;font-family:neuzeit_groteskbold,sans-serif;animation:fade-in .5s forwards}.v2 .sfx-sidebar-parent .nav-link-list{overflow:hidden}.v2 .sfx-sidebar-parent .nav-link-list symphony-navigation-link-v2{display:block}.v2 .sfx-sidebar-parent .nav-link-list symphony-navigation-link-v2:hover{color:#334860}.v2 .sfx-sidebar-parent symphony-icon{display:inline-block;line-height:.6;vertical-align:middle;padding:17px 10px 17px 46px;color:#82919f}.v2 .sfx-sidebar-parent.sfx-menu-open{width:280px}.v2 .sfx-sidebar-parent.sfx-menu-open .menu-collapse:hover{background:#814DFF;color:#fff;border-left-color:#814dff}\n"] }]
3904
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; } });
3905
+
3906
+ class NavigationLinkV2Module {
3907
+ }
3908
+ NavigationLinkV2Module.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: NavigationLinkV2Module, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
3909
+ NavigationLinkV2Module.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: NavigationLinkV2Module, declarations: [NavigationLinkV2Component], imports: [CommonModule, TooltipWrapperModule, IconModule], exports: [NavigationLinkV2Component] });
3910
+ NavigationLinkV2Module.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: NavigationLinkV2Module, imports: [[CommonModule, TooltipWrapperModule, IconModule]] });
3911
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: NavigationLinkV2Module, decorators: [{
3912
+ type: NgModule,
3913
+ args: [{
3914
+ declarations: [NavigationLinkV2Component],
3915
+ imports: [CommonModule, TooltipWrapperModule, IconModule],
3916
+ exports: [NavigationLinkV2Component],
3917
+ }]
3918
+ }] });
3919
+
3920
+ class SidebarNavigationV2Module {
3921
+ }
3922
+ SidebarNavigationV2Module.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SidebarNavigationV2Module, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
3923
+ SidebarNavigationV2Module.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SidebarNavigationV2Module, declarations: [SidebarNavigationV2Component], imports: [CommonModule,
3924
+ NavigationLinkV2Module,
3925
+ IconModule,
3926
+ TooltipWrapperModule], exports: [SidebarNavigationV2Component] });
3927
+ SidebarNavigationV2Module.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SidebarNavigationV2Module, imports: [[
3928
+ CommonModule,
3929
+ NavigationLinkV2Module,
3930
+ IconModule,
3931
+ TooltipWrapperModule,
3932
+ ]] });
3933
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: SidebarNavigationV2Module, decorators: [{
3934
+ type: NgModule,
3935
+ args: [{
3936
+ declarations: [SidebarNavigationV2Component],
3937
+ imports: [
3938
+ CommonModule,
3939
+ NavigationLinkV2Module,
3940
+ IconModule,
3941
+ TooltipWrapperModule,
3942
+ ],
3943
+ exports: [SidebarNavigationV2Component],
3944
+ }]
3945
+ }] });
3946
+
3906
3947
  class InputCheckboxListComponent {
3907
3948
  constructor() {
3908
3949
  this.checkboxClicked = new EventEmitter();
@@ -6905,5 +6946,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
6905
6946
  * Generated bundle index. Do not edit.
6906
6947
  */
6907
6948
 
6908
- export { ActionBarComponent, ActionBarJobListComponent, ActionBarJobListModule, ActionBarModule, ActionBarSelectionCounterComponent, ActionBarSelectionCounterModule, ActivityScoreLevel, AdvanceFilterSelectedCounterComponent, AdvanceFilterSelectedCounterModule, AdvanceSearchModalComponent, AdvanceSearchModalModule, AdvertiseModalComponent, AdvertiseModalModule, AdvertisedJobPostingsListPageComponent, AdvertisedJobPostingsListPageModule, AdvertisedJobPostingsModalComponent, AdvertisedJobPostingsModalModule, AdvertisedJobsCostComponent, AdvertisedJobsCostModule, AlertDuration, AtomsModule, AvatarComponent, AvatarModule, BreadcrumbComponent, BreadcrumbModule, ButtonComponent, ButtonModule, ButtonV2Component, ButtonV2Module, CapitalizeFirstCharacterPipe, CardComponent, CardListComponent, CardListModule, CardModule, ConfirmationModalComponent, ConfirmationModalModule, ContactActivityScoreComponent, ContactActivityScoreModule, ContextualMenuComponent, ContextualMenuModule, DocumentManagementItemComponent, DocumentManagementItemModule, DocumentManagementListComponent, DocumentManagementListModule, EmailValidator, EventSettingsMoreOptionsComponent, EventSettingsMoreOptionsModule, EventsSettingsPageComponent, EventsSettingsPageModule, FeedbackCardComponent, FeedbackCardListComponent, FeedbackCardListModule, FeedbackCardModule, FeedbackCardState, FeedbackDetailPageComponent, FeedbackDetailPageModule, FeedbackListPageComponent, FeedbackListPageModule, FeedbackLoginModalComponent, FeedbackLoginModalModule, FileUploadComponent, FileUploadModule, FileUploadV2Component, FileUploadV2Module, FilterAreaComponent, FilterAreaModule, FormattedCounterComponent, FormattedCounterModule, FrameworkModule, GridActionsComponent, GridActionsModule, GridCellClickableComponent, GridCellClickableModule, GridCellLoaderModule, GridComponent, GridControlsComponent, GridControlsModule, GridDownloadComponent, GridDownloadModule, GridLoadingCellComponent, GridModule, GridToggleCellRendererComponent, GridToggleCellRendererModule, H1Component, H1Module, H2Component, H2Module, H3Component, H3Module, H4Component, H4Module, H5Component, H5Module, H5WithIconComponent, H5WithIconModule, IconComponent, IconModule, IconWithTooltipComponent, IconWithTooltipModule, IconWrapperComponent, IconWrapperModule, Icons, InputCheckboxComponent, InputCheckboxListComponent, InputCheckboxListModule, InputCheckboxModule, InputChipsComponent, InputChipsModule, InputDropdownComponent, InputDropdownList, InputDropdownListItemModel, InputDropdownModule, InputRadioComponent, InputRadioModule, InputSearchCheckboxDropdownComponent, InputSearchCheckboxDropdownModule, InputTextComponent, InputTextModule, InputToggleComponent, InputToggleModule, JobListPageComponent, JobListPageModule, LibrariesPageComponent, LibrariesPageModule, LinkedinPremiumJobPostingsModalComponent, LinkedinPremiumJobPostingsModalModule, MoleculesModule, MultiSelectDataModule, MultiselectSearchCheckbox, NavigationLinkComponent, NavigationLinkModule, NotificationsComponent, NotificationsModule, OrganismsModule, OverflowTextComponent, OverflowTextModule, ParagraphComponent, ParagraphModule, PhaserCardComponent, PhaserCardModule, PhaserComponent, PhaserModule, PillComponent, PillModule, PillsComponent, PillsModule, PipeModule, RelevanceScoreComponent, RelevanceScoreModule, SettingListPageComponent, SettingListPageModule, SfxLoaderComponent, SfxLoaderModule, SfxPageLoaderComponent, SfxPageLoaderModule, SfxProgressBarComponent, SfxProgressBarModule, SidebarNavigationComponent, SidebarNavigationModule, ToasterAlertComponent, ToasterAlertModel, ToasterAlertModule, ToasterAlertType, TooltipWrapperComponent, TooltipWrapperModule, TrimIdPipe, TwoColumnFilterAreaComponent, TwoColumnFilterAreaModule, UploadResumeModalComponent, UploadResumeModalModule, VerticalSeparatorComponent, VerticalSeparatorModule, gridType };
6949
+ export { ActionBarComponent, ActionBarJobListComponent, ActionBarJobListModule, ActionBarModule, ActionBarSelectionCounterComponent, ActionBarSelectionCounterModule, ActivityScoreLevel, AdvanceFilterSelectedCounterComponent, AdvanceFilterSelectedCounterModule, AdvanceSearchModalComponent, AdvanceSearchModalModule, AdvertiseModalComponent, AdvertiseModalModule, AdvertisedJobPostingsListPageComponent, AdvertisedJobPostingsListPageModule, AdvertisedJobPostingsModalComponent, AdvertisedJobPostingsModalModule, AdvertisedJobsCostComponent, AdvertisedJobsCostModule, AlertDuration, AtomsModule, AvatarComponent, AvatarModule, BreadcrumbComponent, BreadcrumbModule, ButtonComponent, ButtonModule, ButtonV2Component, ButtonV2Module, CapitalizeFirstCharacterPipe, CardComponent, CardListComponent, CardListModule, CardModule, ConfirmationModalComponent, ConfirmationModalModule, ContactActivityScoreComponent, ContactActivityScoreModule, ContextualMenuComponent, ContextualMenuModule, DocumentManagementItemComponent, DocumentManagementItemModule, DocumentManagementListComponent, DocumentManagementListModule, EmailValidator, EventSettingsMoreOptionsComponent, EventSettingsMoreOptionsModule, EventsSettingsPageComponent, EventsSettingsPageModule, FeedbackCardComponent, FeedbackCardListComponent, FeedbackCardListModule, FeedbackCardModule, FeedbackCardState, FeedbackDetailPageComponent, FeedbackDetailPageModule, FeedbackListPageComponent, FeedbackListPageModule, FeedbackLoginModalComponent, FeedbackLoginModalModule, FileUploadComponent, FileUploadModule, FileUploadV2Component, FileUploadV2Module, FilterAreaComponent, FilterAreaModule, FormattedCounterComponent, FormattedCounterModule, FrameworkModule, GridActionsComponent, GridActionsModule, GridCellClickableComponent, GridCellClickableModule, GridCellLoaderModule, GridComponent, GridControlsComponent, GridControlsModule, GridDownloadComponent, GridDownloadModule, GridLoadingCellComponent, GridModule, GridToggleCellRendererComponent, GridToggleCellRendererModule, H1Component, H1Module, H2Component, H2Module, H3Component, H3Module, H4Component, H4Module, H5Component, H5Module, H5WithIconComponent, H5WithIconModule, IconComponent, IconModule, IconWithTooltipComponent, IconWithTooltipModule, IconWrapperComponent, IconWrapperModule, Icons, InputCheckboxComponent, InputCheckboxListComponent, InputCheckboxListModule, InputCheckboxModule, InputChipsComponent, InputChipsModule, InputDropdownComponent, InputDropdownList, InputDropdownListItemModel, InputDropdownModule, InputRadioComponent, InputRadioModule, InputSearchCheckboxDropdownComponent, InputSearchCheckboxDropdownModule, InputTextComponent, InputTextModule, InputToggleComponent, InputToggleModule, JobListPageComponent, JobListPageModule, LibrariesPageComponent, LibrariesPageModule, LinkedinPremiumJobPostingsModalComponent, LinkedinPremiumJobPostingsModalModule, MoleculesModule, MultiSelectDataModule, MultiselectSearchCheckbox, NavigationLinkComponent, NavigationLinkModule, NotificationsComponent, NotificationsModule, OrganismsModule, OverflowTextComponent, OverflowTextModule, ParagraphComponent, ParagraphModule, PhaserCardComponent, PhaserCardModule, PhaserComponent, PhaserModule, PillComponent, PillModule, PillsComponent, PillsModule, PipeModule, RelevanceScoreComponent, RelevanceScoreModule, SettingListPageComponent, SettingListPageModule, SfxLoaderComponent, SfxLoaderModule, SfxPageLoaderComponent, SfxPageLoaderModule, SfxProgressBarComponent, SfxProgressBarModule, SidebarNavigationComponent, SidebarNavigationModule, SidebarNavigationV2Component, SidebarNavigationV2Module, ToasterAlertComponent, ToasterAlertModel, ToasterAlertModule, ToasterAlertType, TooltipWrapperComponent, TooltipWrapperModule, TrimIdPipe, TwoColumnFilterAreaComponent, TwoColumnFilterAreaModule, UploadResumeModalComponent, UploadResumeModalModule, VerticalSeparatorComponent, VerticalSeparatorModule, gridType };
6909
6950
  //# sourceMappingURL=symphony-talent-component-library.mjs.map