@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
@@ -7784,6 +7784,127 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
7784
7784
  }]
7785
7785
  }] });
7786
7786
 
7787
+ class ToggleListPartialPageComponent {
7788
+ constructor() {
7789
+ this.updateSettingToggle = new EventEmitter();
7790
+ }
7791
+ updateSettingValue(event) {
7792
+ this.updateSettingToggle.emit(event);
7793
+ }
7794
+ }
7795
+ ToggleListPartialPageComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ToggleListPartialPageComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
7796
+ 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"] }] });
7797
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ToggleListPartialPageComponent, decorators: [{
7798
+ type: Component,
7799
+ 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" }]
7800
+ }], ctorParameters: function () { return []; }, propDecorators: { model: [{
7801
+ type: Input
7802
+ }], updateSettingToggle: [{
7803
+ type: Output
7804
+ }] } });
7805
+
7806
+ class FeedbackSettingDetailsPageComponent {
7807
+ constructor() {
7808
+ this.detailNavigationClicked = new EventEmitter();
7809
+ this.settingToggleClicked = new EventEmitter();
7810
+ }
7811
+ onDetailNavigationClick(event) {
7812
+ this.detailNavigationClicked.emit(event);
7813
+ }
7814
+ onToggleClick(event) {
7815
+ this.settingToggleClicked.emit(event);
7816
+ }
7817
+ }
7818
+ FeedbackSettingDetailsPageComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackSettingDetailsPageComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
7819
+ 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"] }] });
7820
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackSettingDetailsPageComponent, decorators: [{
7821
+ type: Component,
7822
+ 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" }]
7823
+ }], ctorParameters: function () { return []; }, propDecorators: { model: [{
7824
+ type: Input
7825
+ }], detailNavigationClicked: [{
7826
+ type: Output
7827
+ }], settingToggleClicked: [{
7828
+ type: Output
7829
+ }] } });
7830
+
7831
+ class ToggleListPartialPageModule {
7832
+ }
7833
+ ToggleListPartialPageModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ToggleListPartialPageModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
7834
+ ToggleListPartialPageModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ToggleListPartialPageModule, declarations: [ToggleListPartialPageComponent], imports: [InputToggleModule,
7835
+ LabelledInputToggleModule,
7836
+ BrowserModule,
7837
+ AdminListModule,
7838
+ BreadcrumbModule,
7839
+ H3Module,
7840
+ LabelledToggleListModule], exports: [ToggleListPartialPageComponent] });
7841
+ ToggleListPartialPageModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ToggleListPartialPageModule, imports: [[
7842
+ InputToggleModule,
7843
+ LabelledInputToggleModule,
7844
+ BrowserModule,
7845
+ AdminListModule,
7846
+ BreadcrumbModule,
7847
+ H3Module,
7848
+ LabelledToggleListModule,
7849
+ ]] });
7850
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ToggleListPartialPageModule, decorators: [{
7851
+ type: NgModule,
7852
+ args: [{
7853
+ declarations: [ToggleListPartialPageComponent],
7854
+ exports: [ToggleListPartialPageComponent],
7855
+ imports: [
7856
+ InputToggleModule,
7857
+ LabelledInputToggleModule,
7858
+ BrowserModule,
7859
+ AdminListModule,
7860
+ BreadcrumbModule,
7861
+ H3Module,
7862
+ LabelledToggleListModule,
7863
+ ],
7864
+ }]
7865
+ }] });
7866
+
7867
+ class FeedbackSettingDetailsPageModule {
7868
+ }
7869
+ FeedbackSettingDetailsPageModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackSettingDetailsPageModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
7870
+ FeedbackSettingDetailsPageModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackSettingDetailsPageModule, declarations: [FeedbackSettingDetailsPageComponent], imports: [CommonModule,
7871
+ SettingsDetailNavigationListModule,
7872
+ SettingDetailsTemplateModule,
7873
+ BreadcrumbModule,
7874
+ H3Module,
7875
+ PlaceholderModule,
7876
+ ToggleListPartialPageModule], exports: [FeedbackSettingDetailsPageComponent] });
7877
+ FeedbackSettingDetailsPageModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackSettingDetailsPageModule, imports: [[
7878
+ CommonModule,
7879
+ SettingsDetailNavigationListModule,
7880
+ SettingDetailsTemplateModule,
7881
+ BreadcrumbModule,
7882
+ H3Module,
7883
+ PlaceholderModule,
7884
+ ToggleListPartialPageModule,
7885
+ ]] });
7886
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackSettingDetailsPageModule, decorators: [{
7887
+ type: NgModule,
7888
+ args: [{
7889
+ declarations: [FeedbackSettingDetailsPageComponent],
7890
+ imports: [
7891
+ CommonModule,
7892
+ SettingsDetailNavigationListModule,
7893
+ SettingDetailsTemplateModule,
7894
+ BreadcrumbModule,
7895
+ H3Module,
7896
+ PlaceholderModule,
7897
+ ToggleListPartialPageModule,
7898
+ ],
7899
+ exports: [FeedbackSettingDetailsPageComponent],
7900
+ }]
7901
+ }] });
7902
+ var PartialPages;
7903
+ (function (PartialPages) {
7904
+ PartialPages["EDITABLEPAGE"] = "EDITABLE PAGE";
7905
+ PartialPages["TOGGLELISTPAGE"] = "TOGGLE LIST PAGE";
7906
+ })(PartialPages || (PartialPages = {}));
7907
+
7787
7908
  /*
7788
7909
  * ATOMS
7789
7910
  */
@@ -7792,5 +7913,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
7792
7913
  * Generated bundle index. Do not edit.
7793
7914
  */
7794
7915
 
7795
- 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 };
7916
+ 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 };
7796
7917
  //# sourceMappingURL=symphony-talent-component-library.mjs.map