@symphony-talent/component-library 4.45.0 → 4.47.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 (59) hide show
  1. package/esm2020/lib/atoms/atoms.module.mjs +8 -4
  2. package/esm2020/lib/atoms/input-file-upload/input-file-upload.component.mjs +38 -0
  3. package/esm2020/lib/atoms/input-file-upload/input-file-upload.model.mjs +2 -0
  4. package/esm2020/lib/atoms/input-file-upload/input-file-upload.module.mjs +21 -0
  5. package/esm2020/lib/organisms/addition-modal/addition-modal.component.mjs +36 -0
  6. package/esm2020/lib/organisms/addition-modal/addition-modal.model.mjs +2 -0
  7. package/esm2020/lib/organisms/addition-modal/addition-modal.module.mjs +42 -0
  8. package/esm2020/lib/organisms/organisms.module.mjs +8 -4
  9. package/esm2020/lib/pages/feedback-setting-details-page/feedback-setting-details-page.component.mjs +1 -1
  10. package/esm2020/lib/pages/toggle-list-partial-page/toggle-list-partial-page.component.mjs +13 -4
  11. package/esm2020/lib/pages/toggle-list-partial-page/toggle-list-partial-page.model.mjs +1 -1
  12. package/esm2020/lib/pages/toggle-list-partial-page/toggle-list-partial-page.module.mjs +6 -2
  13. package/esm2020/projects/component-library/lib/atoms/atoms.module.mjs +8 -4
  14. package/esm2020/projects/component-library/lib/atoms/input-file-upload/input-file-upload.component.mjs +38 -0
  15. package/esm2020/projects/component-library/lib/atoms/input-file-upload/input-file-upload.model.mjs +2 -0
  16. package/esm2020/projects/component-library/lib/atoms/input-file-upload/input-file-upload.module.mjs +21 -0
  17. package/esm2020/projects/component-library/lib/organisms/addition-modal/addition-modal.component.mjs +36 -0
  18. package/esm2020/projects/component-library/lib/organisms/addition-modal/addition-modal.model.mjs +2 -0
  19. package/esm2020/projects/component-library/lib/organisms/addition-modal/addition-modal.module.mjs +42 -0
  20. package/esm2020/projects/component-library/lib/organisms/organisms.module.mjs +8 -4
  21. package/esm2020/projects/component-library/lib/pages/feedback-setting-details-page/feedback-setting-details-page.component.mjs +1 -1
  22. package/esm2020/projects/component-library/lib/pages/toggle-list-partial-page/toggle-list-partial-page.component.mjs +13 -4
  23. package/esm2020/projects/component-library/lib/pages/toggle-list-partial-page/toggle-list-partial-page.model.mjs +1 -1
  24. package/esm2020/projects/component-library/lib/pages/toggle-list-partial-page/toggle-list-partial-page.module.mjs +6 -2
  25. package/esm2020/projects/component-library/public-api.mjs +4 -1
  26. package/esm2020/public-api.mjs +4 -1
  27. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +134 -11
  28. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
  29. package/fesm2015/symphony-talent-component-library.mjs +134 -11
  30. package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
  31. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +134 -11
  32. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
  33. package/fesm2020/symphony-talent-component-library.mjs +134 -11
  34. package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
  35. package/lib/atoms/atoms.module.d.ts +2 -1
  36. package/lib/atoms/input-file-upload/input-file-upload.component.d.ts +17 -0
  37. package/lib/atoms/input-file-upload/input-file-upload.model.d.ts +8 -0
  38. package/lib/atoms/input-file-upload/input-file-upload.module.d.ts +11 -0
  39. package/lib/organisms/addition-modal/addition-modal.component.d.ts +15 -0
  40. package/lib/organisms/addition-modal/addition-modal.model.d.ts +6 -0
  41. package/lib/organisms/addition-modal/addition-modal.module.d.ts +13 -0
  42. package/lib/organisms/organisms.module.d.ts +2 -1
  43. package/lib/pages/toggle-list-partial-page/toggle-list-partial-page.component.d.ts +5 -1
  44. package/lib/pages/toggle-list-partial-page/toggle-list-partial-page.model.d.ts +2 -0
  45. package/lib/pages/toggle-list-partial-page/toggle-list-partial-page.module.d.ts +2 -1
  46. package/package.json +1 -1
  47. package/projects/component-library/lib/atoms/atoms.module.d.ts +2 -1
  48. package/projects/component-library/lib/atoms/input-file-upload/input-file-upload.component.d.ts +17 -0
  49. package/projects/component-library/lib/atoms/input-file-upload/input-file-upload.model.d.ts +8 -0
  50. package/projects/component-library/lib/atoms/input-file-upload/input-file-upload.module.d.ts +11 -0
  51. package/projects/component-library/lib/organisms/addition-modal/addition-modal.component.d.ts +15 -0
  52. package/projects/component-library/lib/organisms/addition-modal/addition-modal.model.d.ts +6 -0
  53. package/projects/component-library/lib/organisms/addition-modal/addition-modal.module.d.ts +13 -0
  54. package/projects/component-library/lib/organisms/organisms.module.d.ts +2 -1
  55. package/projects/component-library/lib/pages/toggle-list-partial-page/toggle-list-partial-page.component.d.ts +5 -1
  56. package/projects/component-library/lib/pages/toggle-list-partial-page/toggle-list-partial-page.model.d.ts +2 -0
  57. package/projects/component-library/lib/pages/toggle-list-partial-page/toggle-list-partial-page.module.d.ts +2 -1
  58. package/projects/component-library/public-api.d.ts +3 -0
  59. package/public-api.d.ts +3 -0
@@ -2494,6 +2494,52 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
2494
2494
  }]
2495
2495
  }] });
2496
2496
 
2497
+ class InputFileUploadComponent {
2498
+ constructor() {
2499
+ this.closeButtonClicked = new EventEmitter();
2500
+ this.getFileDetails = new EventEmitter();
2501
+ }
2502
+ ngOnInit() {
2503
+ this.filetypeAccepted = this.inputFileUploadModel.fileFormatAccepted.join(', ');
2504
+ }
2505
+ onCloseButtonClick() {
2506
+ this.closeButtonClicked.emit();
2507
+ }
2508
+ onFileSelect(event) {
2509
+ this.file = event.target.files[0];
2510
+ this.getFileDetails.emit(this.file);
2511
+ }
2512
+ onClick(event) {
2513
+ event.target.value = null;
2514
+ }
2515
+ }
2516
+ InputFileUploadComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputFileUploadComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
2517
+ InputFileUploadComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: InputFileUploadComponent, selector: "symphony-input-file-upload", inputs: { inputFileUploadModel: "inputFileUploadModel" }, outputs: { closeButtonClicked: "closeButtonClicked", getFileDetails: "getFileDetails" }, ngImport: i0, template: "\n<div *ngIf=\"inputFileUploadModel\">\n <!-- File Upload -->\n <div class=\"sfx-input-label\">\n {{inputFileUploadModel.inputLabel}}\n </div>\n <div class=\"sfx-input-file-upload\" [ngClass]=\"{ 'has-Close': inputFileUploadModel.hasClose }\">\n <symphony-tooltip-wrapper\n *ngIf=\"inputFileUploadModel.fileValue\"\n [placement]=\"'top'\"\n [tooltipHtml]=\"inputFileUploadModel.fileValue\"\n >\n <label class=\"sfx-cursor-pointer\" for=\"input-file-Upload\"\n ><span>{{inputFileUploadModel.fileValue}}</span>\n </label>\n <input\n type=\"file\"\n id=\"input-file-Upload\"\n name=\"input-file-Upload\"\n accept=\"{{ filetypeAccepted }}\"\n (change)=\"onFileSelect($event)\"\n (click)=\"onClick($event)\"\n />\n </symphony-tooltip-wrapper>\n <div\n *ngIf=\"!inputFileUploadModel.fileValue\"\n>\n <label class=\"sfx-cursor-pointer\" for=\"input-file-Upload\"\n ><span>{{inputFileUploadModel.fileValue}}</span>\n </label>\n <input\n type=\"file\"\n id=\"input-file-Upload\"\n name=\"input-file-Upload\"\n accept=\"{{ filetypeAccepted }}\"\n (change)=\"onFileSelect($event)\"\n (click)=\"onClick($event)\"\n />\n</div>\n <symphony-icon\n class=\"sfx-cursor-pointer\"\n *ngIf=\"inputFileUploadModel.hasClose\"\n [icon]=\"'si-close-modal'\"\n [size]=\"'20px'\"\n (clicked)=\"onCloseButtonClick()\"\n ></symphony-icon>\n <symphony-paragraph\n *ngIf=\"inputFileUploadModel.hasError\"\n class=\"sfx-txt-red sfx-font-bold sfx-pl-5 sfx-d-flex\"\n [text]=\"inputFileUploadModel.errorText\"\n ></symphony-paragraph>\n </div>\n <!-- File Upload -->\n</div>", styles: [".sfx-input-file-upload{position:relative}.sfx-input-file-upload symphony-tooltip-wrapper .sfx-d-inline-block{width:100%;display:block}.sfx-input-file-upload label{line-height:40px;padding-inline:20px;width:100%;font-weight:400;margin:5px;height:40px;display:block}.sfx-input-file-upload label span{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;position:relative;top:5px}.sfx-input-file-upload label:after{content:\"\";width:100%;height:40px;border:1px solid #d0d0d0;border-radius:4px;position:absolute;top:0;left:0;margin:5px}.sfx-input-file-upload label:before{content:\"\\e957\";font-family:library-icons!important;position:absolute;right:10px;top:5px}.sfx-input-file-upload input[type=file]{visibility:hidden;position:absolute;top:0}.sfx-input-file-upload.has-Close label{width:calc(100% - 35px)}.sfx-input-file-upload.has-Close label:after{width:calc(100% - 35px)}.sfx-input-file-upload.has-Close label:before{right:40px}.sfx-input-file-upload.has-Close symphony-icon{position:absolute;top:15px;right:0px}.sfx-input-label{font-weight:500;margin-left:5px;margin-bottom:5px}\n"], components: [{ type: TooltipWrapperComponent, selector: "symphony-tooltip-wrapper", inputs: ["placement", "tooltipHtml"] }, { type: IconComponent, selector: "symphony-icon", inputs: ["icon", "isSecondary", "size", "iconColor"], outputs: ["clicked"] }, { type: ParagraphComponent, selector: "symphony-paragraph", inputs: ["text", "isSecondary", "isFontBold"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }], encapsulation: i0.ViewEncapsulation.None });
2518
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputFileUploadComponent, decorators: [{
2519
+ type: Component,
2520
+ args: [{ selector: 'symphony-input-file-upload', encapsulation: ViewEncapsulation.None, template: "\n<div *ngIf=\"inputFileUploadModel\">\n <!-- File Upload -->\n <div class=\"sfx-input-label\">\n {{inputFileUploadModel.inputLabel}}\n </div>\n <div class=\"sfx-input-file-upload\" [ngClass]=\"{ 'has-Close': inputFileUploadModel.hasClose }\">\n <symphony-tooltip-wrapper\n *ngIf=\"inputFileUploadModel.fileValue\"\n [placement]=\"'top'\"\n [tooltipHtml]=\"inputFileUploadModel.fileValue\"\n >\n <label class=\"sfx-cursor-pointer\" for=\"input-file-Upload\"\n ><span>{{inputFileUploadModel.fileValue}}</span>\n </label>\n <input\n type=\"file\"\n id=\"input-file-Upload\"\n name=\"input-file-Upload\"\n accept=\"{{ filetypeAccepted }}\"\n (change)=\"onFileSelect($event)\"\n (click)=\"onClick($event)\"\n />\n </symphony-tooltip-wrapper>\n <div\n *ngIf=\"!inputFileUploadModel.fileValue\"\n>\n <label class=\"sfx-cursor-pointer\" for=\"input-file-Upload\"\n ><span>{{inputFileUploadModel.fileValue}}</span>\n </label>\n <input\n type=\"file\"\n id=\"input-file-Upload\"\n name=\"input-file-Upload\"\n accept=\"{{ filetypeAccepted }}\"\n (change)=\"onFileSelect($event)\"\n (click)=\"onClick($event)\"\n />\n</div>\n <symphony-icon\n class=\"sfx-cursor-pointer\"\n *ngIf=\"inputFileUploadModel.hasClose\"\n [icon]=\"'si-close-modal'\"\n [size]=\"'20px'\"\n (clicked)=\"onCloseButtonClick()\"\n ></symphony-icon>\n <symphony-paragraph\n *ngIf=\"inputFileUploadModel.hasError\"\n class=\"sfx-txt-red sfx-font-bold sfx-pl-5 sfx-d-flex\"\n [text]=\"inputFileUploadModel.errorText\"\n ></symphony-paragraph>\n </div>\n <!-- File Upload -->\n</div>", styles: [".sfx-input-file-upload{position:relative}.sfx-input-file-upload symphony-tooltip-wrapper .sfx-d-inline-block{width:100%;display:block}.sfx-input-file-upload label{line-height:40px;padding-inline:20px;width:100%;font-weight:400;margin:5px;height:40px;display:block}.sfx-input-file-upload label span{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;position:relative;top:5px}.sfx-input-file-upload label:after{content:\"\";width:100%;height:40px;border:1px solid #d0d0d0;border-radius:4px;position:absolute;top:0;left:0;margin:5px}.sfx-input-file-upload label:before{content:\"\\e957\";font-family:library-icons!important;position:absolute;right:10px;top:5px}.sfx-input-file-upload input[type=file]{visibility:hidden;position:absolute;top:0}.sfx-input-file-upload.has-Close label{width:calc(100% - 35px)}.sfx-input-file-upload.has-Close label:after{width:calc(100% - 35px)}.sfx-input-file-upload.has-Close label:before{right:40px}.sfx-input-file-upload.has-Close symphony-icon{position:absolute;top:15px;right:0px}.sfx-input-label{font-weight:500;margin-left:5px;margin-bottom:5px}\n"] }]
2521
+ }], ctorParameters: function () { return []; }, propDecorators: { inputFileUploadModel: [{
2522
+ type: Input
2523
+ }], closeButtonClicked: [{
2524
+ type: Output
2525
+ }], getFileDetails: [{
2526
+ type: Output
2527
+ }] } });
2528
+
2529
+ class InputFileUploadModule {
2530
+ }
2531
+ InputFileUploadModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputFileUploadModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2532
+ InputFileUploadModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputFileUploadModule, declarations: [InputFileUploadComponent], imports: [CommonModule, IconModule, TooltipWrapperModule, ParagraphModule], exports: [InputFileUploadComponent] });
2533
+ InputFileUploadModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputFileUploadModule, imports: [[CommonModule, IconModule, TooltipWrapperModule, ParagraphModule]] });
2534
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: InputFileUploadModule, decorators: [{
2535
+ type: NgModule,
2536
+ args: [{
2537
+ declarations: [InputFileUploadComponent],
2538
+ imports: [CommonModule, IconModule, TooltipWrapperModule, ParagraphModule],
2539
+ exports: [InputFileUploadComponent],
2540
+ }]
2541
+ }] });
2542
+
2497
2543
  var ColorNames;
2498
2544
  (function (ColorNames) {
2499
2545
  ColorNames["BLACK"] = "background-color-black";
@@ -2559,7 +2605,8 @@ AtomsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "1
2559
2605
  NotificationsModule,
2560
2606
  CharacterCounterModule,
2561
2607
  InputTextareaModule,
2562
- ColoredTextIndicatorModule] });
2608
+ ColoredTextIndicatorModule,
2609
+ InputFileUploadModule] });
2563
2610
  AtomsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AtomsModule, imports: [[], ButtonModule,
2564
2611
  ContextualMenuModule,
2565
2612
  AvatarModule,
@@ -2595,7 +2642,8 @@ AtomsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "1
2595
2642
  NotificationsModule,
2596
2643
  CharacterCounterModule,
2597
2644
  InputTextareaModule,
2598
- ColoredTextIndicatorModule] });
2645
+ ColoredTextIndicatorModule,
2646
+ InputFileUploadModule] });
2599
2647
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AtomsModule, decorators: [{
2600
2648
  type: NgModule,
2601
2649
  args: [{
@@ -2637,7 +2685,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
2637
2685
  NotificationsModule,
2638
2686
  CharacterCounterModule,
2639
2687
  InputTextareaModule,
2640
- ColoredTextIndicatorModule
2688
+ ColoredTextIndicatorModule,
2689
+ InputFileUploadModule
2641
2690
  ]
2642
2691
  }]
2643
2692
  }] });
@@ -5604,6 +5653,67 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
5604
5653
  }]
5605
5654
  }] });
5606
5655
 
5656
+ class AdditionModalComponent {
5657
+ constructor() {
5658
+ this.buttonClicked = new EventEmitter();
5659
+ this.closeButtonClicked = new EventEmitter();
5660
+ }
5661
+ onButtonClick() {
5662
+ this.buttonClicked.emit(this.valueToAdd);
5663
+ }
5664
+ onCloseButtonClick() {
5665
+ this.closeButtonClicked.emit();
5666
+ }
5667
+ onInputValueChange(value) {
5668
+ this.valueToAdd = value;
5669
+ }
5670
+ }
5671
+ AdditionModalComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdditionModalComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
5672
+ AdditionModalComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: AdditionModalComponent, selector: "symphony-addition-modal", inputs: { model: "model" }, outputs: { buttonClicked: "buttonClicked", closeButtonClicked: "closeButtonClicked" }, ngImport: i0, template: "<div *ngIf=\"model\" class=\"sfx sfx-modal\">\n <section class=\"modal-header sfx-p-30 sfx-pt-40\">\n <div class=\"modal-title\">\n <div class=\"row\">\n <div class=\"col-xs-8 col-sm-8 col-md-8 col-lg-8\">\n <symphony-h4 [text]=\"model.title\"></symphony-h4>\n </div>\n <div class=\"col-xs-4 col-sm-4 col-md-4 col-lg-4\">\n <symphony-icon\n class=\"pull-right\"\n [icon]=\"'si-close-modal'\"\n (clicked)=\"onCloseButtonClick()\"\n ></symphony-icon>\n </div>\n </div>\n </div>\n </section>\n <section class=\"modal-body sfx-p-30\">\n <symphony-paragraph>{{ model.content }}</symphony-paragraph>\n <symphony-input-text\n (textChange)=\"onInputValueChange($event)\"\n ></symphony-input-text>\n </section>\n <section class=\"modal-footer sfx-pt-30 sfx-pb-40\">\n <symphony-button\n *ngIf=\"model.btnSecondary\"\n [text]=\"model.btnSecondary\"\n [isSecondary]=\"true\"\n (clicked)=\"onButtonClick()\"\n ></symphony-button>\n <symphony-button\n class=\"sfx-ml-20\"\n [text]=\"model.btnPrimary\"\n [disabled]=\"false\"\n (clicked)=\"onButtonClick()\"\n ></symphony-button>\n </section>\n</div>\n", components: [{ type: H4Component, selector: "symphony-h4", inputs: ["text", "isSecondary"] }, { type: IconComponent, selector: "symphony-icon", inputs: ["icon", "isSecondary", "size", "iconColor"], outputs: ["clicked"] }, { type: ParagraphComponent, selector: "symphony-paragraph", inputs: ["text", "isSecondary", "isFontBold"] }, { type: InputTextComponent, selector: "symphony-input-text", inputs: ["placeholder", "icon", "label", "isInverse", "size"], outputs: ["textChange"] }, { type: ButtonComponent, selector: "symphony-button", inputs: ["text", "disabled", "isSecondary", "isInverse"], outputs: ["clicked"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
5673
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdditionModalComponent, decorators: [{
5674
+ type: Component,
5675
+ args: [{ selector: 'symphony-addition-modal', template: "<div *ngIf=\"model\" class=\"sfx sfx-modal\">\n <section class=\"modal-header sfx-p-30 sfx-pt-40\">\n <div class=\"modal-title\">\n <div class=\"row\">\n <div class=\"col-xs-8 col-sm-8 col-md-8 col-lg-8\">\n <symphony-h4 [text]=\"model.title\"></symphony-h4>\n </div>\n <div class=\"col-xs-4 col-sm-4 col-md-4 col-lg-4\">\n <symphony-icon\n class=\"pull-right\"\n [icon]=\"'si-close-modal'\"\n (clicked)=\"onCloseButtonClick()\"\n ></symphony-icon>\n </div>\n </div>\n </div>\n </section>\n <section class=\"modal-body sfx-p-30\">\n <symphony-paragraph>{{ model.content }}</symphony-paragraph>\n <symphony-input-text\n (textChange)=\"onInputValueChange($event)\"\n ></symphony-input-text>\n </section>\n <section class=\"modal-footer sfx-pt-30 sfx-pb-40\">\n <symphony-button\n *ngIf=\"model.btnSecondary\"\n [text]=\"model.btnSecondary\"\n [isSecondary]=\"true\"\n (clicked)=\"onButtonClick()\"\n ></symphony-button>\n <symphony-button\n class=\"sfx-ml-20\"\n [text]=\"model.btnPrimary\"\n [disabled]=\"false\"\n (clicked)=\"onButtonClick()\"\n ></symphony-button>\n </section>\n</div>\n" }]
5676
+ }], ctorParameters: function () { return []; }, propDecorators: { model: [{
5677
+ type: Input
5678
+ }], buttonClicked: [{
5679
+ type: Output
5680
+ }], closeButtonClicked: [{
5681
+ type: Output
5682
+ }] } });
5683
+
5684
+ class AdditionModalModule {
5685
+ }
5686
+ AdditionModalModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdditionModalModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
5687
+ AdditionModalModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdditionModalModule, declarations: [AdditionModalComponent], imports: [CommonModule,
5688
+ H4Module,
5689
+ ParagraphModule,
5690
+ IconModule,
5691
+ ButtonModule,
5692
+ InputTextModule], exports: [AdditionModalComponent] });
5693
+ AdditionModalModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdditionModalModule, imports: [[
5694
+ CommonModule,
5695
+ H4Module,
5696
+ ParagraphModule,
5697
+ IconModule,
5698
+ ButtonModule,
5699
+ InputTextModule,
5700
+ ]] });
5701
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdditionModalModule, decorators: [{
5702
+ type: NgModule,
5703
+ args: [{
5704
+ declarations: [AdditionModalComponent],
5705
+ exports: [AdditionModalComponent],
5706
+ imports: [
5707
+ CommonModule,
5708
+ H4Module,
5709
+ ParagraphModule,
5710
+ IconModule,
5711
+ ButtonModule,
5712
+ InputTextModule,
5713
+ ],
5714
+ }]
5715
+ }] });
5716
+
5607
5717
  class OrganismsModule {
5608
5718
  }
5609
5719
  OrganismsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: OrganismsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
@@ -5627,7 +5737,8 @@ OrganismsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version
5627
5737
  DocumentManagementListModule,
5628
5738
  InputCheckboxListModule,
5629
5739
  SettingsDetailNavigationListModule,
5630
- EditableSettingItemListModule] });
5740
+ EditableSettingItemListModule,
5741
+ AdditionModalModule] });
5631
5742
  OrganismsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: OrganismsModule, imports: [[
5632
5743
  CommonModule,
5633
5744
  NoteListModule,
@@ -5649,7 +5760,8 @@ OrganismsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version
5649
5760
  DocumentManagementListModule,
5650
5761
  InputCheckboxListModule,
5651
5762
  SettingsDetailNavigationListModule,
5652
- EditableSettingItemListModule
5763
+ EditableSettingItemListModule,
5764
+ AdditionModalModule
5653
5765
  ]] });
5654
5766
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: OrganismsModule, decorators: [{
5655
5767
  type: NgModule,
@@ -5676,7 +5788,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
5676
5788
  DocumentManagementListModule,
5677
5789
  InputCheckboxListModule,
5678
5790
  SettingsDetailNavigationListModule,
5679
- EditableSettingItemListModule
5791
+ EditableSettingItemListModule,
5792
+ AdditionModalModule
5680
5793
  ]
5681
5794
  }]
5682
5795
  }] });
@@ -7787,20 +7900,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
7787
7900
  class ToggleListPartialPageComponent {
7788
7901
  constructor() {
7789
7902
  this.updateSettingToggle = new EventEmitter();
7903
+ this.addButtonClick = new EventEmitter();
7904
+ this.icon = Icons.INCLUDE;
7790
7905
  }
7791
7906
  updateSettingValue(event) {
7792
7907
  this.updateSettingToggle.emit(event);
7793
7908
  }
7909
+ onAddButtonClick(event) {
7910
+ this.addButtonClick.emit(event);
7911
+ }
7794
7912
  }
7795
7913
  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"] }] });
7914
+ 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", addButtonClick: "addButtonClick" }, 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 <symphony-button-with-icon *ngIf=\"model.enableAddButton\"\n class=\"add-button sfx-font-bold\"\n (clicked)=\"onAddButtonClick($event)\"\n [icon]=\"icon\"\n [text]=\"model.addButtonText\"\n [showActionButton]=\"true\"\n [showPopover]=\"true\"\n [isDisabled]=\"false\"\n ></symphony-button-with-icon>\n</div>\n", styles: [".add-button{color:#712ace}\n"], components: [{ type: LabelledToggleListComponent, selector: "symphony-labelled-toggle-list", inputs: ["modelList"], outputs: ["toggleListItemValue"] }, { type: ButtonWithIconComponent, selector: "symphony-button-with-icon", inputs: ["text", "icon", "showActionButton", "showPopover", "isDisabled"], outputs: ["clicked"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
7797
7915
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ToggleListPartialPageComponent, decorators: [{
7798
7916
  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" }]
7917
+ 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 <symphony-button-with-icon *ngIf=\"model.enableAddButton\"\n class=\"add-button sfx-font-bold\"\n (clicked)=\"onAddButtonClick($event)\"\n [icon]=\"icon\"\n [text]=\"model.addButtonText\"\n [showActionButton]=\"true\"\n [showPopover]=\"true\"\n [isDisabled]=\"false\"\n ></symphony-button-with-icon>\n</div>\n", styles: [".add-button{color:#712ace}\n"] }]
7800
7918
  }], ctorParameters: function () { return []; }, propDecorators: { model: [{
7801
7919
  type: Input
7802
7920
  }], updateSettingToggle: [{
7803
7921
  type: Output
7922
+ }], addButtonClick: [{
7923
+ type: Output
7804
7924
  }] } });
7805
7925
 
7806
7926
  class FeedbackSettingDetailsPageComponent {
@@ -7816,7 +7936,7 @@ class FeedbackSettingDetailsPageComponent {
7816
7936
  }
7817
7937
  }
7818
7938
  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"] }] });
7939
+ 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", "addButtonClick"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
7820
7940
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackSettingDetailsPageComponent, decorators: [{
7821
7941
  type: Component,
7822
7942
  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" }]
@@ -7837,7 +7957,8 @@ ToggleListPartialPageModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0
7837
7957
  AdminListModule,
7838
7958
  BreadcrumbModule,
7839
7959
  H3Module,
7840
- LabelledToggleListModule], exports: [ToggleListPartialPageComponent] });
7960
+ LabelledToggleListModule,
7961
+ ButtonWithIconModule], exports: [ToggleListPartialPageComponent] });
7841
7962
  ToggleListPartialPageModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ToggleListPartialPageModule, imports: [[
7842
7963
  InputToggleModule,
7843
7964
  LabelledInputToggleModule,
@@ -7846,6 +7967,7 @@ ToggleListPartialPageModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0
7846
7967
  BreadcrumbModule,
7847
7968
  H3Module,
7848
7969
  LabelledToggleListModule,
7970
+ ButtonWithIconModule,
7849
7971
  ]] });
7850
7972
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ToggleListPartialPageModule, decorators: [{
7851
7973
  type: NgModule,
@@ -7860,6 +7982,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
7860
7982
  BreadcrumbModule,
7861
7983
  H3Module,
7862
7984
  LabelledToggleListModule,
7985
+ ButtonWithIconModule,
7863
7986
  ],
7864
7987
  }]
7865
7988
  }] });
@@ -7913,5 +8036,5 @@ var PartialPages;
7913
8036
  * Generated bundle index. Do not edit.
7914
8037
  */
7915
8038
 
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 };
8039
+ 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, InputFileUploadComponent, InputFileUploadModule, 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 };
7917
8040
  //# sourceMappingURL=symphony-talent-component-library.mjs.map