@symphony-talent/component-library 4.43.0 → 4.45.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 (37) hide show
  1. package/esm2020/lib/pages/feedback-setting-details-page/feedback-setting-details-page.component.mjs +33 -0
  2. package/esm2020/lib/pages/feedback-setting-details-page/feedback-setting-details-page.component.model.mjs +2 -0
  3. package/esm2020/lib/pages/feedback-setting-details-page/feedback-setting-details-page.module.mjs +51 -0
  4. package/esm2020/lib/pages/toggle-list-partial-page/toggle-list-partial-page.component.mjs +23 -0
  5. package/esm2020/lib/pages/toggle-list-partial-page/toggle-list-partial-page.model.mjs +2 -0
  6. package/esm2020/lib/pages/toggle-list-partial-page/toggle-list-partial-page.module.mjs +46 -0
  7. package/esm2020/projects/component-library/lib/pages/feedback-setting-details-page/feedback-setting-details-page.component.mjs +33 -0
  8. package/esm2020/projects/component-library/lib/pages/feedback-setting-details-page/feedback-setting-details-page.component.model.mjs +2 -0
  9. package/esm2020/projects/component-library/lib/pages/feedback-setting-details-page/feedback-setting-details-page.module.mjs +51 -0
  10. package/esm2020/projects/component-library/lib/pages/toggle-list-partial-page/toggle-list-partial-page.component.mjs +23 -0
  11. package/esm2020/projects/component-library/lib/pages/toggle-list-partial-page/toggle-list-partial-page.model.mjs +2 -0
  12. package/esm2020/projects/component-library/lib/pages/toggle-list-partial-page/toggle-list-partial-page.module.mjs +46 -0
  13. package/esm2020/projects/component-library/public-api.mjs +4 -1
  14. package/esm2020/public-api.mjs +4 -1
  15. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +122 -1
  16. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
  17. package/fesm2015/symphony-talent-component-library.mjs +122 -1
  18. package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
  19. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +122 -1
  20. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
  21. package/fesm2020/symphony-talent-component-library.mjs +122 -1
  22. package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
  23. package/lib/pages/feedback-setting-details-page/feedback-setting-details-page.component.d.ts +15 -0
  24. package/lib/pages/feedback-setting-details-page/feedback-setting-details-page.component.model.d.ts +9 -0
  25. package/lib/pages/feedback-setting-details-page/feedback-setting-details-page.module.d.ts +18 -0
  26. package/lib/pages/toggle-list-partial-page/toggle-list-partial-page.component.d.ts +12 -0
  27. package/lib/pages/toggle-list-partial-page/toggle-list-partial-page.model.d.ts +5 -0
  28. package/lib/pages/toggle-list-partial-page/toggle-list-partial-page.module.d.ts +14 -0
  29. package/package.json +1 -1
  30. package/projects/component-library/lib/pages/feedback-setting-details-page/feedback-setting-details-page.component.d.ts +15 -0
  31. package/projects/component-library/lib/pages/feedback-setting-details-page/feedback-setting-details-page.component.model.d.ts +9 -0
  32. package/projects/component-library/lib/pages/feedback-setting-details-page/feedback-setting-details-page.module.d.ts +18 -0
  33. package/projects/component-library/lib/pages/toggle-list-partial-page/toggle-list-partial-page.component.d.ts +12 -0
  34. package/projects/component-library/lib/pages/toggle-list-partial-page/toggle-list-partial-page.model.d.ts +5 -0
  35. package/projects/component-library/lib/pages/toggle-list-partial-page/toggle-list-partial-page.module.d.ts +14 -0
  36. package/projects/component-library/public-api.d.ts +3 -0
  37. package/public-api.d.ts +3 -0
@@ -7780,6 +7780,127 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
7780
7780
  }]
7781
7781
  }] });
7782
7782
 
7783
+ class ToggleListPartialPageComponent {
7784
+ constructor() {
7785
+ this.updateSettingToggle = new EventEmitter();
7786
+ }
7787
+ updateSettingValue(event) {
7788
+ this.updateSettingToggle.emit(event);
7789
+ }
7790
+ }
7791
+ ToggleListPartialPageComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ToggleListPartialPageComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
7792
+ ToggleListPartialPageComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: ToggleListPartialPageComponent, selector: "symphony-toggle-list-partial-page", inputs: { model: "model" }, outputs: { updateSettingToggle: "updateSettingToggle" }, ngImport: i0, template: "<div *ngIf=\"model\">\n <h3 sfx-header>{{ model.PageLabel }}</h3>\n <symphony-labelled-toggle-list\n [modelList]=\"model.toggleModels\"\n (toggleListItemValue)=\"updateSettingValue($event)\"\n >\n </symphony-labelled-toggle-list>\n</div>\n", components: [{ type: LabelledToggleListComponent, selector: "symphony-labelled-toggle-list", inputs: ["modelList"], outputs: ["toggleListItemValue"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
7793
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ToggleListPartialPageComponent, decorators: [{
7794
+ type: Component,
7795
+ args: [{ selector: 'symphony-toggle-list-partial-page', template: "<div *ngIf=\"model\">\n <h3 sfx-header>{{ model.PageLabel }}</h3>\n <symphony-labelled-toggle-list\n [modelList]=\"model.toggleModels\"\n (toggleListItemValue)=\"updateSettingValue($event)\"\n >\n </symphony-labelled-toggle-list>\n</div>\n" }]
7796
+ }], ctorParameters: function () { return []; }, propDecorators: { model: [{
7797
+ type: Input
7798
+ }], updateSettingToggle: [{
7799
+ type: Output
7800
+ }] } });
7801
+
7802
+ class FeedbackSettingDetailsPageComponent {
7803
+ constructor() {
7804
+ this.detailNavigationClicked = new EventEmitter();
7805
+ this.settingToggleClicked = new EventEmitter();
7806
+ }
7807
+ onDetailNavigationClick(event) {
7808
+ this.detailNavigationClicked.emit(event);
7809
+ }
7810
+ onToggleClick(event) {
7811
+ this.settingToggleClicked.emit(event);
7812
+ }
7813
+ }
7814
+ FeedbackSettingDetailsPageComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackSettingDetailsPageComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
7815
+ FeedbackSettingDetailsPageComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: FeedbackSettingDetailsPageComponent, selector: "symphony-feedback-setting-details-page", inputs: { model: "model" }, outputs: { detailNavigationClicked: "detailNavigationClicked", settingToggleClicked: "settingToggleClicked" }, ngImport: i0, template: "<symphony-setting-details-template *ngIf=\"model\">\n <symphony-breadcrumb breadcrumb [breadcrumbs]=\"model.breadcrumbs\">\n </symphony-breadcrumb>\n <symphony-h3 sfx-header [text]=\"model.pageTitle\"></symphony-h3>\n <symphony-settings-detail-navigation-list\n sfx-nav\n [navigationList]=\"model.navigationList\"\n (navigationItemClicked)=\"onDetailNavigationClick($event)\"\n ></symphony-settings-detail-navigation-list>\n\n <section sfx-content>\n <symphony-toggle-list-partial-page\n [model]=\"model.toggleListPartialPageModel\"\n (updateSettingToggle)=\"onToggleClick($event)\"\n >\n </symphony-toggle-list-partial-page>\n </section>\n</symphony-setting-details-template>\n", components: [{ type: SettingDetailsTemplateComponent, selector: "symphony-setting-details-template" }, { type: BreadcrumbComponent, selector: "symphony-breadcrumb", inputs: ["breadcrumbs"], outputs: ["breadcrumbClicked"] }, { type: H3Component, selector: "symphony-h3", inputs: ["text", "isSecondary"] }, { type: SettingsDetailNavigationListComponent, selector: "symphony-settings-detail-navigation-list", inputs: ["navigationList"], outputs: ["navigationItemClicked"] }, { type: ToggleListPartialPageComponent, selector: "symphony-toggle-list-partial-page", inputs: ["model"], outputs: ["updateSettingToggle"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
7816
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackSettingDetailsPageComponent, decorators: [{
7817
+ type: Component,
7818
+ args: [{ selector: 'symphony-feedback-setting-details-page', template: "<symphony-setting-details-template *ngIf=\"model\">\n <symphony-breadcrumb breadcrumb [breadcrumbs]=\"model.breadcrumbs\">\n </symphony-breadcrumb>\n <symphony-h3 sfx-header [text]=\"model.pageTitle\"></symphony-h3>\n <symphony-settings-detail-navigation-list\n sfx-nav\n [navigationList]=\"model.navigationList\"\n (navigationItemClicked)=\"onDetailNavigationClick($event)\"\n ></symphony-settings-detail-navigation-list>\n\n <section sfx-content>\n <symphony-toggle-list-partial-page\n [model]=\"model.toggleListPartialPageModel\"\n (updateSettingToggle)=\"onToggleClick($event)\"\n >\n </symphony-toggle-list-partial-page>\n </section>\n</symphony-setting-details-template>\n" }]
7819
+ }], ctorParameters: function () { return []; }, propDecorators: { model: [{
7820
+ type: Input
7821
+ }], detailNavigationClicked: [{
7822
+ type: Output
7823
+ }], settingToggleClicked: [{
7824
+ type: Output
7825
+ }] } });
7826
+
7827
+ class ToggleListPartialPageModule {
7828
+ }
7829
+ ToggleListPartialPageModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ToggleListPartialPageModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
7830
+ ToggleListPartialPageModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ToggleListPartialPageModule, declarations: [ToggleListPartialPageComponent], imports: [InputToggleModule,
7831
+ LabelledInputToggleModule,
7832
+ BrowserModule,
7833
+ AdminListModule,
7834
+ BreadcrumbModule,
7835
+ H3Module,
7836
+ LabelledToggleListModule], exports: [ToggleListPartialPageComponent] });
7837
+ ToggleListPartialPageModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ToggleListPartialPageModule, imports: [[
7838
+ InputToggleModule,
7839
+ LabelledInputToggleModule,
7840
+ BrowserModule,
7841
+ AdminListModule,
7842
+ BreadcrumbModule,
7843
+ H3Module,
7844
+ LabelledToggleListModule,
7845
+ ]] });
7846
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ToggleListPartialPageModule, decorators: [{
7847
+ type: NgModule,
7848
+ args: [{
7849
+ declarations: [ToggleListPartialPageComponent],
7850
+ exports: [ToggleListPartialPageComponent],
7851
+ imports: [
7852
+ InputToggleModule,
7853
+ LabelledInputToggleModule,
7854
+ BrowserModule,
7855
+ AdminListModule,
7856
+ BreadcrumbModule,
7857
+ H3Module,
7858
+ LabelledToggleListModule,
7859
+ ],
7860
+ }]
7861
+ }] });
7862
+
7863
+ class FeedbackSettingDetailsPageModule {
7864
+ }
7865
+ FeedbackSettingDetailsPageModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackSettingDetailsPageModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
7866
+ FeedbackSettingDetailsPageModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackSettingDetailsPageModule, declarations: [FeedbackSettingDetailsPageComponent], imports: [CommonModule,
7867
+ SettingsDetailNavigationListModule,
7868
+ SettingDetailsTemplateModule,
7869
+ BreadcrumbModule,
7870
+ H3Module,
7871
+ PlaceholderModule,
7872
+ ToggleListPartialPageModule], exports: [FeedbackSettingDetailsPageComponent] });
7873
+ FeedbackSettingDetailsPageModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackSettingDetailsPageModule, imports: [[
7874
+ CommonModule,
7875
+ SettingsDetailNavigationListModule,
7876
+ SettingDetailsTemplateModule,
7877
+ BreadcrumbModule,
7878
+ H3Module,
7879
+ PlaceholderModule,
7880
+ ToggleListPartialPageModule,
7881
+ ]] });
7882
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackSettingDetailsPageModule, decorators: [{
7883
+ type: NgModule,
7884
+ args: [{
7885
+ declarations: [FeedbackSettingDetailsPageComponent],
7886
+ imports: [
7887
+ CommonModule,
7888
+ SettingsDetailNavigationListModule,
7889
+ SettingDetailsTemplateModule,
7890
+ BreadcrumbModule,
7891
+ H3Module,
7892
+ PlaceholderModule,
7893
+ ToggleListPartialPageModule,
7894
+ ],
7895
+ exports: [FeedbackSettingDetailsPageComponent],
7896
+ }]
7897
+ }] });
7898
+ var PartialPages;
7899
+ (function (PartialPages) {
7900
+ PartialPages["EDITABLEPAGE"] = "EDITABLE PAGE";
7901
+ PartialPages["TOGGLELISTPAGE"] = "TOGGLE LIST PAGE";
7902
+ })(PartialPages || (PartialPages = {}));
7903
+
7783
7904
  /*
7784
7905
  * ATOMS
7785
7906
  */
@@ -7788,5 +7909,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
7788
7909
  * Generated bundle index. Do not edit.
7789
7910
  */
7790
7911
 
7791
- 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, CharacterCounterComponent, CharacterCounterModule, ColorNames, ColoredTextIndicatorComponent, ColoredTextIndicatorModule, ConfirmationModalComponent, ConfirmationModalModule, ContactActivityScoreComponent, ContactActivityScoreModule, ContextualMenuComponent, ContextualMenuModule, DocumentManagementItemComponent, DocumentManagementItemModule, DocumentManagementListComponent, DocumentManagementListModule, 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, FileUploadComponent, FileUploadModule, FileUploadV2Component, FileUploadV2Module, FilterAreaComponent, FilterAreaModule, FormattedCounterComponent, FormattedCounterModule, FrameworkModule, GridActionsComponent, GridActionsModule, GridCellClickableComponent, GridCellClickableModule, 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, InputCheckboxComponent, InputCheckboxListComponent, InputCheckboxListModule, InputCheckboxModule, InputChipsComponent, InputChipsModule, InputDropdownComponent, InputDropdownList, InputDropdownListItemModel, InputDropdownModule, InputRadioComponent, InputRadioModule, InputSearchCheckboxDropdownComponent, InputSearchCheckboxDropdownModule, InputTextComponent, InputTextModule, InputTextareaComponent, InputTextareaModule, InputToggleComponent, InputToggleModule, JobListPageComponent, JobListPageModule, LibrariesPageComponent, LibrariesPageModule, LinkedinPremiumJobPostingsModalComponent, LinkedinPremiumJobPostingsModalModule, MoleculesModule, MultiSelectDataModule, MultiselectSearchCheckbox, NavigationLinkComponent, NavigationLinkModule, NotificationsComponent, NotificationsModule, OrganismsModule, OverflowTextComponent, OverflowTextModule, OverflowTextTooltipComponent, OverflowTextTooltipModule, ParagraphComponent, ParagraphModule, PhaserCardComponent, PhaserCardModule, PhaserComponent, PhaserModule, PillComponent, PillModule, PillsComponent, PillsModule, PipeModule, RelevanceScoreComponent, RelevanceScoreModule, SettingDetailPageComponent, SettingDetailPageModule, SettingListPageComponent, SettingListPageModule, SettingsDetailNavigationItemComponent, SettingsDetailNavigationItemModule, SettingsDetailNavigationListComponent, SettingsDetailNavigationListModule, SfxLoaderComponent, SfxLoaderModule, SfxPageLoaderComponent, SfxPageLoaderModule, SfxProgressBarComponent, SfxProgressBarModule, SidebarNavigationComponent, SidebarNavigationModule, SidebarNavigationV2Component, SidebarNavigationV2Module, TabsComponent, TabsModules, ToasterAlertComponent, ToasterAlertModel, ToasterAlertModule, ToasterAlertType, TooltipWrapperComponent, TooltipWrapperModule, TrimIdPipe, TwoColumnFilterAreaComponent, TwoColumnFilterAreaModule, UploadResumeModalComponent, UploadResumeModalModule, VerticalSeparatorComponent, VerticalSeparatorModule, gridType };
7912
+ 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, CharacterCounterComponent, CharacterCounterModule, ColorNames, ColoredTextIndicatorComponent, ColoredTextIndicatorModule, ConfirmationModalComponent, ConfirmationModalModule, ContactActivityScoreComponent, ContactActivityScoreModule, ContextualMenuComponent, ContextualMenuModule, DocumentManagementItemComponent, DocumentManagementItemModule, DocumentManagementListComponent, DocumentManagementListModule, 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, FormattedCounterComponent, FormattedCounterModule, FrameworkModule, GridActionsComponent, GridActionsModule, GridCellClickableComponent, GridCellClickableModule, 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, InputCheckboxComponent, InputCheckboxListComponent, InputCheckboxListModule, InputCheckboxModule, InputChipsComponent, InputChipsModule, InputDropdownComponent, InputDropdownList, InputDropdownListItemModel, InputDropdownModule, InputRadioComponent, InputRadioModule, InputSearchCheckboxDropdownComponent, InputSearchCheckboxDropdownModule, InputTextComponent, InputTextModule, InputTextareaComponent, InputTextareaModule, InputToggleComponent, InputToggleModule, JobListPageComponent, JobListPageModule, LibrariesPageComponent, LibrariesPageModule, LinkedinPremiumJobPostingsModalComponent, LinkedinPremiumJobPostingsModalModule, MoleculesModule, MultiSelectDataModule, MultiselectSearchCheckbox, NavigationLinkComponent, NavigationLinkModule, NotificationsComponent, NotificationsModule, OrganismsModule, OverflowTextComponent, OverflowTextModule, OverflowTextTooltipComponent, OverflowTextTooltipModule, ParagraphComponent, ParagraphModule, PartialPages, PhaserCardComponent, PhaserCardModule, PhaserComponent, PhaserModule, PillComponent, PillModule, PillsComponent, PillsModule, PipeModule, RelevanceScoreComponent, RelevanceScoreModule, SettingDetailPageComponent, SettingDetailPageModule, SettingListPageComponent, SettingListPageModule, SettingsDetailNavigationItemComponent, SettingsDetailNavigationItemModule, SettingsDetailNavigationListComponent, SettingsDetailNavigationListModule, SfxLoaderComponent, SfxLoaderModule, SfxPageLoaderComponent, SfxPageLoaderModule, SfxProgressBarComponent, SfxProgressBarModule, SidebarNavigationComponent, SidebarNavigationModule, SidebarNavigationV2Component, SidebarNavigationV2Module, TabsComponent, TabsModules, ToasterAlertComponent, ToasterAlertModel, ToasterAlertModule, ToasterAlertType, TooltipWrapperComponent, TooltipWrapperModule, TrimIdPipe, TwoColumnFilterAreaComponent, TwoColumnFilterAreaModule, UploadResumeModalComponent, UploadResumeModalModule, VerticalSeparatorComponent, VerticalSeparatorModule, gridType };
7792
7913
  //# sourceMappingURL=symphony-talent-component-library-projects-component-library.mjs.map