@symphony-talent/component-library 3.20.0 → 3.21.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 (69) hide show
  1. package/esm2020/lib/molecules/button-with-icon/button-with-icon.component.mjs +27 -0
  2. package/esm2020/lib/molecules/button-with-icon/button-with-icon.module.mjs +19 -0
  3. package/esm2020/lib/molecules/molecules.module.mjs +10 -6
  4. package/esm2020/lib/organisms/action-bar/action-bar.component.mjs +26 -0
  5. package/esm2020/lib/organisms/action-bar/action-bar.module.mjs +21 -0
  6. package/esm2020/lib/organisms/action-bar-job-list/action-bar-job-list.component.mjs +35 -0
  7. package/esm2020/lib/organisms/action-bar-job-list/action-bar-job-list.module.mjs +34 -0
  8. package/esm2020/lib/organisms/grid-actions-job-list/grid-actions-job-list.component.mjs +25 -0
  9. package/esm2020/lib/organisms/grid-actions-job-list/grid-actions-job-list.model.mjs +2 -0
  10. package/esm2020/lib/organisms/grid-actions-job-list/grid-actions-job-list.module.mjs +19 -0
  11. package/esm2020/lib/organisms/grid-controls-job-list/grid-controls-job-list.component.mjs +33 -0
  12. package/esm2020/lib/organisms/grid-controls-job-list/grid-controls-job-list.model.mjs +2 -0
  13. package/esm2020/lib/organisms/grid-controls-job-list/grid-controls-job-list.module.mjs +38 -0
  14. package/esm2020/lib/organisms/organisms.module.mjs +20 -4
  15. package/esm2020/projects/component-library/lib/molecules/button-with-icon/button-with-icon.component.mjs +27 -0
  16. package/esm2020/projects/component-library/lib/molecules/button-with-icon/button-with-icon.module.mjs +19 -0
  17. package/esm2020/projects/component-library/lib/molecules/molecules.module.mjs +10 -6
  18. package/esm2020/projects/component-library/lib/organisms/action-bar/action-bar.component.mjs +26 -0
  19. package/esm2020/projects/component-library/lib/organisms/action-bar/action-bar.module.mjs +21 -0
  20. package/esm2020/projects/component-library/lib/organisms/action-bar-job-list/action-bar-job-list.component.mjs +35 -0
  21. package/esm2020/projects/component-library/lib/organisms/action-bar-job-list/action-bar-job-list.module.mjs +34 -0
  22. package/esm2020/projects/component-library/lib/organisms/grid-actions-job-list/grid-actions-job-list.component.mjs +25 -0
  23. package/esm2020/projects/component-library/lib/organisms/grid-actions-job-list/grid-actions-job-list.model.mjs +2 -0
  24. package/esm2020/projects/component-library/lib/organisms/grid-actions-job-list/grid-actions-job-list.module.mjs +19 -0
  25. package/esm2020/projects/component-library/lib/organisms/grid-controls-job-list/grid-controls-job-list.component.mjs +33 -0
  26. package/esm2020/projects/component-library/lib/organisms/grid-controls-job-list/grid-controls-job-list.model.mjs +2 -0
  27. package/esm2020/projects/component-library/lib/organisms/grid-controls-job-list/grid-controls-job-list.module.mjs +38 -0
  28. package/esm2020/projects/component-library/lib/organisms/organisms.module.mjs +20 -4
  29. package/esm2020/projects/component-library/public-api.mjs +5 -1
  30. package/esm2020/public-api.mjs +5 -1
  31. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +241 -7
  32. package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
  33. package/fesm2015/symphony-talent-component-library.mjs +241 -7
  34. package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
  35. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +241 -7
  36. package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
  37. package/fesm2020/symphony-talent-component-library.mjs +241 -7
  38. package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
  39. package/lib/molecules/button-with-icon/button-with-icon.component.d.ts +13 -0
  40. package/lib/molecules/button-with-icon/button-with-icon.module.d.ts +9 -0
  41. package/lib/molecules/molecules.module.d.ts +2 -1
  42. package/lib/organisms/action-bar/action-bar.component.d.ts +10 -0
  43. package/lib/organisms/action-bar/action-bar.module.d.ts +11 -0
  44. package/lib/organisms/action-bar-job-list/action-bar-job-list.component.d.ts +16 -0
  45. package/lib/organisms/action-bar-job-list/action-bar-job-list.module.d.ts +11 -0
  46. package/lib/organisms/grid-actions-job-list/grid-actions-job-list.component.d.ts +12 -0
  47. package/lib/organisms/grid-actions-job-list/grid-actions-job-list.model.d.ts +6 -0
  48. package/lib/organisms/grid-actions-job-list/grid-actions-job-list.module.d.ts +9 -0
  49. package/lib/organisms/grid-controls-job-list/grid-controls-job-list.component.d.ts +14 -0
  50. package/lib/organisms/grid-controls-job-list/grid-controls-job-list.model.d.ts +5 -0
  51. package/lib/organisms/grid-controls-job-list/grid-controls-job-list.module.d.ts +12 -0
  52. package/lib/organisms/organisms.module.d.ts +5 -1
  53. package/package.json +1 -1
  54. package/projects/component-library/lib/molecules/button-with-icon/button-with-icon.component.d.ts +13 -0
  55. package/projects/component-library/lib/molecules/button-with-icon/button-with-icon.module.d.ts +9 -0
  56. package/projects/component-library/lib/molecules/molecules.module.d.ts +2 -1
  57. package/projects/component-library/lib/organisms/action-bar/action-bar.component.d.ts +10 -0
  58. package/projects/component-library/lib/organisms/action-bar/action-bar.module.d.ts +11 -0
  59. package/projects/component-library/lib/organisms/action-bar-job-list/action-bar-job-list.component.d.ts +16 -0
  60. package/projects/component-library/lib/organisms/action-bar-job-list/action-bar-job-list.module.d.ts +11 -0
  61. package/projects/component-library/lib/organisms/grid-actions-job-list/grid-actions-job-list.component.d.ts +12 -0
  62. package/projects/component-library/lib/organisms/grid-actions-job-list/grid-actions-job-list.model.d.ts +6 -0
  63. package/projects/component-library/lib/organisms/grid-actions-job-list/grid-actions-job-list.module.d.ts +9 -0
  64. package/projects/component-library/lib/organisms/grid-controls-job-list/grid-controls-job-list.component.d.ts +14 -0
  65. package/projects/component-library/lib/organisms/grid-controls-job-list/grid-controls-job-list.model.d.ts +5 -0
  66. package/projects/component-library/lib/organisms/grid-controls-job-list/grid-controls-job-list.module.d.ts +12 -0
  67. package/projects/component-library/lib/organisms/organisms.module.d.ts +5 -1
  68. package/projects/component-library/public-api.d.ts +4 -0
  69. package/public-api.d.ts +4 -0
@@ -1976,6 +1976,43 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
1976
1976
  }]
1977
1977
  }] });
1978
1978
 
1979
+ class ButtonWithIconComponent {
1980
+ constructor() {
1981
+ this.clicked = new EventEmitter();
1982
+ }
1983
+ onClick() {
1984
+ this.clicked.emit(this.text);
1985
+ }
1986
+ }
1987
+ ButtonWithIconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ButtonWithIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1988
+ ButtonWithIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: ButtonWithIconComponent, selector: "symphony-button-with-icon", inputs: { text: "text", icon: "icon", showActionButton: "showActionButton" }, outputs: { clicked: "clicked" }, ngImport: i0, template: "<div class=\"sfx-actions-items-list sfx-mr-30\" *ngIf=\"showActionButton\">\n <button (click)=\"onClick()\">\n <symphony-icon [icon]=\"icon\"></symphony-icon>{{ text }}\n </button>\n</div>\n", styles: [".sfx-actions-items-list button{background:transparent;border:none;outline:none}.sfx-actions-items-list button i{font-size:1.125rem;margin-right:.9375rem;position:relative;top:2px}.sfx-actions-items-list button i.si-edit,.sfx-actions-items-list button i.si-download{font-size:9px!important;height:18px;width:18px;border:0;background:#000;color:#fff;border-radius:50%;padding:6px;position:relative;top:-2px;font-weight:600}\n"], components: [{ type: IconComponent, selector: "symphony-icon", inputs: ["icon", "isSecondary", "size", "iconColor"], outputs: ["clicked"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
1989
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ButtonWithIconComponent, decorators: [{
1990
+ type: Component,
1991
+ args: [{ selector: 'symphony-button-with-icon', encapsulation: ViewEncapsulation.None, template: "<div class=\"sfx-actions-items-list sfx-mr-30\" *ngIf=\"showActionButton\">\n <button (click)=\"onClick()\">\n <symphony-icon [icon]=\"icon\"></symphony-icon>{{ text }}\n </button>\n</div>\n", styles: [".sfx-actions-items-list button{background:transparent;border:none;outline:none}.sfx-actions-items-list button i{font-size:1.125rem;margin-right:.9375rem;position:relative;top:2px}.sfx-actions-items-list button i.si-edit,.sfx-actions-items-list button i.si-download{font-size:9px!important;height:18px;width:18px;border:0;background:#000;color:#fff;border-radius:50%;padding:6px;position:relative;top:-2px;font-weight:600}\n"] }]
1992
+ }], ctorParameters: function () { return []; }, propDecorators: { text: [{
1993
+ type: Input
1994
+ }], icon: [{
1995
+ type: Input
1996
+ }], showActionButton: [{
1997
+ type: Input
1998
+ }], clicked: [{
1999
+ type: Output
2000
+ }] } });
2001
+
2002
+ class ButtonWithIconModule {
2003
+ }
2004
+ ButtonWithIconModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ButtonWithIconModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2005
+ ButtonWithIconModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ButtonWithIconModule, declarations: [ButtonWithIconComponent], imports: [CommonModule, IconModule], exports: [ButtonWithIconComponent] });
2006
+ ButtonWithIconModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ButtonWithIconModule, imports: [[CommonModule, IconModule]] });
2007
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ButtonWithIconModule, decorators: [{
2008
+ type: NgModule,
2009
+ args: [{
2010
+ declarations: [ButtonWithIconComponent],
2011
+ imports: [CommonModule, IconModule],
2012
+ exports: [ButtonWithIconComponent],
2013
+ }]
2014
+ }] });
2015
+
1979
2016
  class MoleculesModule {
1980
2017
  }
1981
2018
  MoleculesModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: MoleculesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
@@ -1992,7 +2029,8 @@ MoleculesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version
1992
2029
  SfxAccordionHeaderModule,
1993
2030
  FileUploadModule,
1994
2031
  FileUploadStatusModule,
1995
- FeedbackCardModule], exports: [PillsModule, BreadcrumbModule, FeedbackCardModule] });
2032
+ FeedbackCardModule,
2033
+ ButtonWithIconModule], exports: [PillsModule, BreadcrumbModule, FeedbackCardModule] });
1996
2034
  MoleculesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: MoleculesModule, imports: [[
1997
2035
  CommonModule,
1998
2036
  AvatarModule,
@@ -2007,7 +2045,8 @@ MoleculesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version
2007
2045
  SfxAccordionHeaderModule,
2008
2046
  FileUploadModule,
2009
2047
  FileUploadStatusModule,
2010
- FeedbackCardModule
2048
+ FeedbackCardModule,
2049
+ ButtonWithIconModule,
2011
2050
  ], PillsModule, BreadcrumbModule, FeedbackCardModule] });
2012
2051
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: MoleculesModule, decorators: [{
2013
2052
  type: NgModule,
@@ -2027,7 +2066,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
2027
2066
  SfxAccordionHeaderModule,
2028
2067
  FileUploadModule,
2029
2068
  FileUploadStatusModule,
2030
- FeedbackCardModule
2069
+ FeedbackCardModule,
2070
+ ButtonWithIconModule,
2031
2071
  ],
2032
2072
  exports: [PillsModule, BreadcrumbModule, FeedbackCardModule]
2033
2073
  }]
@@ -2275,6 +2315,188 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
2275
2315
  }]
2276
2316
  }] });
2277
2317
 
2318
+ class ActionBarComponent {
2319
+ constructor() {
2320
+ this.toggleClick = new EventEmitter();
2321
+ }
2322
+ toggleClicked() {
2323
+ this.isToggled = !this.isToggled;
2324
+ this.toggleClick.emit(this.isToggled);
2325
+ }
2326
+ }
2327
+ ActionBarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ActionBarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
2328
+ ActionBarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: ActionBarComponent, selector: "symphony-action-bar", inputs: { isToggled: "isToggled" }, outputs: { toggleClick: "toggleClick" }, ngImport: i0, template: "<div class=\"sfx-title-wrap sfx-mt-30 sfx-pb-30 sfx-action-bar\">\n <div class=\"col-xs-12 col-sm-6 col-md-4 col-lg-3 sfx-p-0 sfx-action-button\">\n <div class=\"max-contentwidth\" (click)=\"toggleClicked()\">\n <symphony-icon-wrapper\n [ngClass]=\"{ 'action-arrow-down': isToggled }\"\n class=\"sfx-d-inline-block sfx-actions\"\n ><symphony-icon [icon]=\"'si-arrow-next'\"></symphony-icon>\n </symphony-icon-wrapper>\n <symphony-h5 class=\"sfx-d-inline-block sfx-ml-20\">Actions</symphony-h5>\n </div>\n </div>\n <div class=\"col-xs-12 col-sm-6 col-md-8 col-lg-9 sfx-p-0\">\n <div class=\"pull-right sfx-actions-controls\">\n <ng-content select=\"[grid-controls]\"></ng-content>\n </div>\n </div>\n</div>\n<div\n *ngIf=\"isToggled\"\n class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12 sfx-border-bottom-gray-1 sfx-pr-0\"\n>\n <div\n class=\"col-xs-11 col-sm-11 col-md-11 col-lg-11 sfx-actions-items sfx-pt-40 sfx-pb-40\"\n >\n <ng-content select=\"[grid-actions]\"></ng-content>\n </div>\n</div>\n", styles: [".sfx-action-bar{display:inline-block;width:100%;border-bottom:5px solid #000000}.sfx-action-bar .sfx-action-button .max-contentwidth{width:max-content}.sfx-action-bar .sfx-action-button .icon-wrapper i{font-weight:600}.sfx-action-bar .sfx-action-button .action-arrow-down{transform:rotate(90deg)}\n"], components: [{ type: IconWrapperComponent, selector: "symphony-icon-wrapper", inputs: ["isInverse"], outputs: ["clicked"] }, { type: IconComponent, selector: "symphony-icon", inputs: ["icon", "isSecondary", "size", "iconColor"], outputs: ["clicked"] }, { type: H5Component, selector: "symphony-h5", inputs: ["text", "isSecondary"] }], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
2329
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ActionBarComponent, decorators: [{
2330
+ type: Component,
2331
+ args: [{ selector: 'symphony-action-bar', encapsulation: ViewEncapsulation.None, template: "<div class=\"sfx-title-wrap sfx-mt-30 sfx-pb-30 sfx-action-bar\">\n <div class=\"col-xs-12 col-sm-6 col-md-4 col-lg-3 sfx-p-0 sfx-action-button\">\n <div class=\"max-contentwidth\" (click)=\"toggleClicked()\">\n <symphony-icon-wrapper\n [ngClass]=\"{ 'action-arrow-down': isToggled }\"\n class=\"sfx-d-inline-block sfx-actions\"\n ><symphony-icon [icon]=\"'si-arrow-next'\"></symphony-icon>\n </symphony-icon-wrapper>\n <symphony-h5 class=\"sfx-d-inline-block sfx-ml-20\">Actions</symphony-h5>\n </div>\n </div>\n <div class=\"col-xs-12 col-sm-6 col-md-8 col-lg-9 sfx-p-0\">\n <div class=\"pull-right sfx-actions-controls\">\n <ng-content select=\"[grid-controls]\"></ng-content>\n </div>\n </div>\n</div>\n<div\n *ngIf=\"isToggled\"\n class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12 sfx-border-bottom-gray-1 sfx-pr-0\"\n>\n <div\n class=\"col-xs-11 col-sm-11 col-md-11 col-lg-11 sfx-actions-items sfx-pt-40 sfx-pb-40\"\n >\n <ng-content select=\"[grid-actions]\"></ng-content>\n </div>\n</div>\n", styles: [".sfx-action-bar{display:inline-block;width:100%;border-bottom:5px solid #000000}.sfx-action-bar .sfx-action-button .max-contentwidth{width:max-content}.sfx-action-bar .sfx-action-button .icon-wrapper i{font-weight:600}.sfx-action-bar .sfx-action-button .action-arrow-down{transform:rotate(90deg)}\n"] }]
2332
+ }], ctorParameters: function () { return []; }, propDecorators: { isToggled: [{
2333
+ type: Input
2334
+ }], toggleClick: [{
2335
+ type: Output
2336
+ }] } });
2337
+
2338
+ class GridControlsJobListComponent {
2339
+ constructor() {
2340
+ this.Clicked = new EventEmitter();
2341
+ this.gridMoreActions = {
2342
+ hasBorder: false,
2343
+ items: [],
2344
+ };
2345
+ }
2346
+ onClick() {
2347
+ this.Clicked.emit();
2348
+ }
2349
+ ngOnInit() {
2350
+ this.gridMoreActions.items = this.model.gridActions;
2351
+ }
2352
+ }
2353
+ GridControlsJobListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridControlsJobListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
2354
+ GridControlsJobListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: GridControlsJobListComponent, selector: "symphony-grid-controls-job-list", inputs: { model: "model" }, outputs: { Clicked: "Clicked" }, ngImport: i0, template: "<div class=\"sfx-actions\">\n <div\n class=\"sfx-d-inline-block pull-left sfx-mt-10 sfx-pr-30\"\n *ngIf=\"model.gridRowCount\"\n >\n <strong class=\"text-label\">{{ model.gridRowCount }}</strong>\n </div>\n <div\n class=\"sfx-d-inline-block pull-left sfx-pr-20\"\n *ngIf=\"model.showCustomiseColumns\"\n >\n <symphony-tooltip-wrapper\n [tooltipHtml]=\"'Customise Columns'\"\n [placement]=\"'top'\"\n class=\"actionIcon-tooltip\"\n >\n <symphony-icon-wrapper (click)=\"onClick()\"\n ><symphony-icon [icon]=\"'si-organize-columns'\"></symphony-icon>\n </symphony-icon-wrapper>\n </symphony-tooltip-wrapper>\n </div>\n <div class=\"sfx-d-inline-block pull-left\">\n <symphony-contextual-menu\n class=\"task-more-option\"\n *ngIf=\"gridMoreActions && gridMoreActions.items.length > 0\"\n [model]=\"gridMoreActions\"\n >\n </symphony-contextual-menu>\n </div>\n</div>\n", styles: [".task-more-option .btn-group .dropdown-menu{min-width:200px!important}.actionIcon-tooltip .tooltip{min-width:160px}.actionIcon-tooltip .tooltip .tooltip-inner{background-color:#565656;padding:8px 15px;border-radius:.625rem;max-width:250px;font-size:12px;color:#fff}.actionIcon-tooltip .sfx-info-tooltip.item-tooltip.top .tooltip-arrow.arrow{border-top-color:#565656}.actionIcon-tooltip .sfx-info-tooltip.item-tooltip.right{left:5px!important}.actionIcon-tooltip .sfx-info-tooltip.item-tooltip.right .tooltip-arrow.arrow{border-right-color:#565656}.actionIcon-tooltip .sfx-info-tooltip.item-tooltip.bottom .tooltip-arrow.arrow{border-bottom-color:#565656}.actionIcon-tooltip .sfx-info-tooltip.item-tooltip.left{left:-5px!important}.actionIcon-tooltip .sfx-info-tooltip.item-tooltip.left .tooltip-arrow.arrow{border-left-color:#565656}\n"], components: [{ type: TooltipWrapperComponent, selector: "symphony-tooltip-wrapper", inputs: ["placement", "tooltipHtml"] }, { type: IconWrapperComponent, selector: "symphony-icon-wrapper", inputs: ["isInverse"], outputs: ["clicked"] }, { type: IconComponent, selector: "symphony-icon", inputs: ["icon", "isSecondary", "size", "iconColor"], outputs: ["clicked"] }, { type: ContextualMenuComponent, selector: "symphony-contextual-menu", inputs: ["model"], outputs: ["itemClick"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
2355
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridControlsJobListComponent, decorators: [{
2356
+ type: Component,
2357
+ args: [{ selector: 'symphony-grid-controls-job-list', encapsulation: ViewEncapsulation.None, template: "<div class=\"sfx-actions\">\n <div\n class=\"sfx-d-inline-block pull-left sfx-mt-10 sfx-pr-30\"\n *ngIf=\"model.gridRowCount\"\n >\n <strong class=\"text-label\">{{ model.gridRowCount }}</strong>\n </div>\n <div\n class=\"sfx-d-inline-block pull-left sfx-pr-20\"\n *ngIf=\"model.showCustomiseColumns\"\n >\n <symphony-tooltip-wrapper\n [tooltipHtml]=\"'Customise Columns'\"\n [placement]=\"'top'\"\n class=\"actionIcon-tooltip\"\n >\n <symphony-icon-wrapper (click)=\"onClick()\"\n ><symphony-icon [icon]=\"'si-organize-columns'\"></symphony-icon>\n </symphony-icon-wrapper>\n </symphony-tooltip-wrapper>\n </div>\n <div class=\"sfx-d-inline-block pull-left\">\n <symphony-contextual-menu\n class=\"task-more-option\"\n *ngIf=\"gridMoreActions && gridMoreActions.items.length > 0\"\n [model]=\"gridMoreActions\"\n >\n </symphony-contextual-menu>\n </div>\n</div>\n", styles: [".task-more-option .btn-group .dropdown-menu{min-width:200px!important}.actionIcon-tooltip .tooltip{min-width:160px}.actionIcon-tooltip .tooltip .tooltip-inner{background-color:#565656;padding:8px 15px;border-radius:.625rem;max-width:250px;font-size:12px;color:#fff}.actionIcon-tooltip .sfx-info-tooltip.item-tooltip.top .tooltip-arrow.arrow{border-top-color:#565656}.actionIcon-tooltip .sfx-info-tooltip.item-tooltip.right{left:5px!important}.actionIcon-tooltip .sfx-info-tooltip.item-tooltip.right .tooltip-arrow.arrow{border-right-color:#565656}.actionIcon-tooltip .sfx-info-tooltip.item-tooltip.bottom .tooltip-arrow.arrow{border-bottom-color:#565656}.actionIcon-tooltip .sfx-info-tooltip.item-tooltip.left{left:-5px!important}.actionIcon-tooltip .sfx-info-tooltip.item-tooltip.left .tooltip-arrow.arrow{border-left-color:#565656}\n"] }]
2358
+ }], ctorParameters: function () { return []; }, propDecorators: { model: [{
2359
+ type: Input
2360
+ }], Clicked: [{
2361
+ type: Output
2362
+ }] } });
2363
+
2364
+ class GridActionsJobListComponent {
2365
+ constructor() {
2366
+ this.buttonClicked = new EventEmitter();
2367
+ }
2368
+ onButtonClick(text) {
2369
+ this.buttonClicked.emit(text);
2370
+ }
2371
+ }
2372
+ GridActionsJobListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridActionsJobListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
2373
+ GridActionsJobListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: GridActionsJobListComponent, selector: "symphony-grid-actions-job-list", inputs: { model: "model", isInverse: "isInverse" }, outputs: { buttonClicked: "buttonClicked" }, ngImport: i0, template: "<div class=\"sfx-d-inline-block\" *ngFor=\"let actionButton of model\">\n <symphony-button-with-icon\n (clicked)=\"onButtonClick($event)\"\n [icon]=\"actionButton.icon\"\n [text]=\"actionButton.text\"\n [showActionButton]=\"actionButton.showActionButton\"\n ></symphony-button-with-icon>\n</div>\n", styles: [""], components: [{ type: ButtonWithIconComponent, selector: "symphony-button-with-icon", inputs: ["text", "icon", "showActionButton"], outputs: ["clicked"] }], directives: [{ type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], encapsulation: i0.ViewEncapsulation.None });
2374
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridActionsJobListComponent, decorators: [{
2375
+ type: Component,
2376
+ args: [{ selector: 'symphony-grid-actions-job-list', encapsulation: ViewEncapsulation.None, template: "<div class=\"sfx-d-inline-block\" *ngFor=\"let actionButton of model\">\n <symphony-button-with-icon\n (clicked)=\"onButtonClick($event)\"\n [icon]=\"actionButton.icon\"\n [text]=\"actionButton.text\"\n [showActionButton]=\"actionButton.showActionButton\"\n ></symphony-button-with-icon>\n</div>\n", styles: [""] }]
2377
+ }], ctorParameters: function () { return []; }, propDecorators: { model: [{
2378
+ type: Input
2379
+ }], buttonClicked: [{
2380
+ type: Output
2381
+ }], isInverse: [{
2382
+ type: Input
2383
+ }] } });
2384
+
2385
+ class ActionBarJobListComponent {
2386
+ constructor() {
2387
+ this.ContactOrganizeClicked = new EventEmitter();
2388
+ this.ColumnOrganizeClicked = new EventEmitter();
2389
+ this.IconButtonClicked = new EventEmitter();
2390
+ }
2391
+ OrganizeContactClick() {
2392
+ this.ContactOrganizeClicked.emit();
2393
+ }
2394
+ IconButtonClick(text) {
2395
+ this.IconButtonClicked.emit(text);
2396
+ }
2397
+ }
2398
+ ActionBarJobListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ActionBarJobListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
2399
+ ActionBarJobListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: ActionBarJobListComponent, selector: "symphony-action-bar-job-list", inputs: { gridActionJobListModel: "gridActionJobListModel", gridControlsJobListModel: "gridControlsJobListModel" }, outputs: { ContactOrganizeClicked: "ContactOrganizeClicked", ColumnOrganizeClicked: "ColumnOrganizeClicked", IconButtonClicked: "IconButtonClicked" }, ngImport: i0, template: "<symphony-action-bar>\n <symphony-grid-controls-job-list\n (Clicked)=\"OrganizeContactClick()\"\n [model]=\"gridControlsJobListModel\"\n grid-controls\n ></symphony-grid-controls-job-list>\n <symphony-grid-actions-job-list\n (buttonClicked)=\"IconButtonClick($event)\"\n [model]=\"gridActionJobListModel\"\n grid-actions\n ></symphony-grid-actions-job-list>\n</symphony-action-bar>\n", styles: [""], components: [{ type: ActionBarComponent, selector: "symphony-action-bar", inputs: ["isToggled"], outputs: ["toggleClick"] }, { type: GridControlsJobListComponent, selector: "symphony-grid-controls-job-list", inputs: ["model"], outputs: ["Clicked"] }, { type: GridActionsJobListComponent, selector: "symphony-grid-actions-job-list", inputs: ["model", "isInverse"], outputs: ["buttonClicked"] }] });
2400
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ActionBarJobListComponent, decorators: [{
2401
+ type: Component,
2402
+ args: [{ selector: 'symphony-action-bar-job-list', template: "<symphony-action-bar>\n <symphony-grid-controls-job-list\n (Clicked)=\"OrganizeContactClick()\"\n [model]=\"gridControlsJobListModel\"\n grid-controls\n ></symphony-grid-controls-job-list>\n <symphony-grid-actions-job-list\n (buttonClicked)=\"IconButtonClick($event)\"\n [model]=\"gridActionJobListModel\"\n grid-actions\n ></symphony-grid-actions-job-list>\n</symphony-action-bar>\n", styles: [""] }]
2403
+ }], ctorParameters: function () { return []; }, propDecorators: { gridActionJobListModel: [{
2404
+ type: Input
2405
+ }], gridControlsJobListModel: [{
2406
+ type: Input
2407
+ }], ContactOrganizeClicked: [{
2408
+ type: Output
2409
+ }], ColumnOrganizeClicked: [{
2410
+ type: Output
2411
+ }], IconButtonClicked: [{
2412
+ type: Output
2413
+ }] } });
2414
+
2415
+ class GridActionsJobListModule {
2416
+ }
2417
+ GridActionsJobListModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridActionsJobListModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2418
+ GridActionsJobListModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridActionsJobListModule, declarations: [GridActionsJobListComponent], imports: [CommonModule, ButtonWithIconModule], exports: [GridActionsJobListComponent] });
2419
+ GridActionsJobListModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridActionsJobListModule, imports: [[CommonModule, ButtonWithIconModule]] });
2420
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridActionsJobListModule, decorators: [{
2421
+ type: NgModule,
2422
+ args: [{
2423
+ declarations: [GridActionsJobListComponent],
2424
+ imports: [CommonModule, ButtonWithIconModule],
2425
+ exports: [GridActionsJobListComponent],
2426
+ }]
2427
+ }] });
2428
+
2429
+ class ActionBarModule {
2430
+ }
2431
+ ActionBarModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ActionBarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2432
+ ActionBarModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ActionBarModule, declarations: [ActionBarComponent], imports: [CommonModule, IconModule, IconWrapperModule, H5Module], exports: [ActionBarComponent] });
2433
+ ActionBarModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ActionBarModule, imports: [[CommonModule, IconModule, IconWrapperModule, H5Module]] });
2434
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ActionBarModule, decorators: [{
2435
+ type: NgModule,
2436
+ args: [{
2437
+ declarations: [ActionBarComponent],
2438
+ imports: [CommonModule, IconModule, IconWrapperModule, H5Module],
2439
+ exports: [ActionBarComponent],
2440
+ }]
2441
+ }] });
2442
+
2443
+ class GridControlsJobListModule {
2444
+ }
2445
+ GridControlsJobListModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridControlsJobListModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2446
+ GridControlsJobListModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridControlsJobListModule, declarations: [GridControlsJobListComponent], imports: [CommonModule,
2447
+ IconModule,
2448
+ IconWrapperModule,
2449
+ ContextualMenuModule,
2450
+ TooltipWrapperModule], exports: [GridControlsJobListComponent] });
2451
+ GridControlsJobListModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridControlsJobListModule, imports: [[
2452
+ CommonModule,
2453
+ IconModule,
2454
+ IconWrapperModule,
2455
+ ContextualMenuModule,
2456
+ TooltipWrapperModule,
2457
+ ]] });
2458
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: GridControlsJobListModule, decorators: [{
2459
+ type: NgModule,
2460
+ args: [{
2461
+ declarations: [GridControlsJobListComponent],
2462
+ imports: [
2463
+ CommonModule,
2464
+ IconModule,
2465
+ IconWrapperModule,
2466
+ ContextualMenuModule,
2467
+ TooltipWrapperModule,
2468
+ ],
2469
+ exports: [GridControlsJobListComponent],
2470
+ }]
2471
+ }] });
2472
+
2473
+ class ActionBarJobListModule {
2474
+ }
2475
+ ActionBarJobListModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ActionBarJobListModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2476
+ ActionBarJobListModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ActionBarJobListModule, declarations: [ActionBarJobListComponent], imports: [CommonModule,
2477
+ GridActionsJobListModule,
2478
+ ActionBarModule,
2479
+ GridControlsJobListModule], exports: [ActionBarJobListComponent] });
2480
+ ActionBarJobListModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ActionBarJobListModule, imports: [[
2481
+ CommonModule,
2482
+ GridActionsJobListModule,
2483
+ ActionBarModule,
2484
+ GridControlsJobListModule,
2485
+ ]] });
2486
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: ActionBarJobListModule, decorators: [{
2487
+ type: NgModule,
2488
+ args: [{
2489
+ declarations: [ActionBarJobListComponent],
2490
+ imports: [
2491
+ CommonModule,
2492
+ GridActionsJobListModule,
2493
+ ActionBarModule,
2494
+ GridControlsJobListModule,
2495
+ ],
2496
+ exports: [ActionBarJobListComponent],
2497
+ }]
2498
+ }] });
2499
+
2278
2500
  class NoteComponent {
2279
2501
  constructor() {
2280
2502
  this.noteModel = {
@@ -3399,7 +3621,11 @@ OrganismsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version
3399
3621
  FeedbackCardListModule,
3400
3622
  FeedbackDetailHeaderModule,
3401
3623
  FeedbackDetailCandidateInfoModule,
3402
- FeedbackLoginModalModule] });
3624
+ FeedbackLoginModalModule,
3625
+ GridActionsJobListModule,
3626
+ GridControlsJobListModule,
3627
+ ActionBarModule,
3628
+ ActionBarJobListModule] });
3403
3629
  OrganismsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: OrganismsModule, imports: [[
3404
3630
  CommonModule,
3405
3631
  NoteListModule,
@@ -3412,7 +3638,11 @@ OrganismsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version
3412
3638
  FeedbackCardListModule,
3413
3639
  FeedbackDetailHeaderModule,
3414
3640
  FeedbackDetailCandidateInfoModule,
3415
- FeedbackLoginModalModule
3641
+ FeedbackLoginModalModule,
3642
+ GridActionsJobListModule,
3643
+ GridControlsJobListModule,
3644
+ ActionBarModule,
3645
+ ActionBarJobListModule
3416
3646
  ]] });
3417
3647
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: OrganismsModule, decorators: [{
3418
3648
  type: NgModule,
@@ -3430,7 +3660,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
3430
3660
  FeedbackCardListModule,
3431
3661
  FeedbackDetailHeaderModule,
3432
3662
  FeedbackDetailCandidateInfoModule,
3433
- FeedbackLoginModalModule
3663
+ FeedbackLoginModalModule,
3664
+ GridActionsJobListModule,
3665
+ GridControlsJobListModule,
3666
+ ActionBarModule,
3667
+ ActionBarJobListModule
3434
3668
  ]
3435
3669
  }]
3436
3670
  }] });
@@ -4498,5 +4732,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
4498
4732
  * Generated bundle index. Do not edit.
4499
4733
  */
4500
4734
 
4501
- export { ActivityScoreLevel, AdvertiseModalComponent, AlertDuration, AtomsModule, AvatarComponent, AvatarModule, BreadcrumbComponent, BreadcrumbModule, ButtonComponent, ButtonModule, CardComponent, CardListComponent, CardListModule, CardModule, ContactActivityScoreComponent, ContactActivityScoreModule, ContextualMenuComponent, ContextualMenuModule, EventSettingsMoreOptionsComponent, EventSettingsMoreOptionsModule, EventsSettingsPageComponent, EventsSettingsPageModule, FeedbackCardComponent, FeedbackCardListComponent, FeedbackCardListModule, FeedbackCardModule, FeedbackCardState, FeedbackDetailPageComponent, FeedbackDetailPageModule, FeedbackListPageComponent, FeedbackListPageModule, FeedbackLoginModalComponent, FeedbackLoginModalModule, FileUploadComponent, FileUploadModule, FilterAreaComponent, FilterAreaModule, FrameworkModule, GridCellLoaderModule, GridComponent, GridLoadingCellComponent, GridModule, GridToggleCellRendererComponent, GridToggleCellRendererModule, H1Component, H1Module, H2Component, H2Module, H3Component, H3Module, H4Component, H4Module, H5Component, H5Module, H5WithIconComponent, H5WithIconModule, IconComponent, IconModule, IconWrapperComponent, IconWrapperModule, Icons, InputCheckboxComponent, InputCheckboxModule, InputDropdownComponent, InputDropdownList, InputDropdownListItemModel, InputDropdownModule, InputRadioComponent, InputRadioModule, InputTextComponent, InputTextModule, InputToggleComponent, InputToggleModule, LibrariesPageComponent, LibrariesPageModule, ModalModule, MoleculesModule, OrganismsModule, ParagraphComponent, ParagraphModule, PillComponent, PillModule, PillsComponent, PillsModule, RelevanceScoreComponent, RelevanceScoreModule, SettingListPageComponent, SettingListPageModule, SfxLoaderComponent, SfxLoaderModule, SfxPageLoaderComponent, SfxPageLoaderModule, SfxProgressBarComponent, SfxProgressBarModule, ToasterAlertComponent, ToasterAlertModel, ToasterAlertModule, ToasterAlertType, TooltipWrapperComponent, TooltipWrapperModule, TwoColumnFilterAreaComponent, TwoColumnFilterAreaModule, UploadResumeModalComponent, UploadResumeModalModule, gridType };
4735
+ export { ActionBarComponent, ActionBarJobListComponent, ActionBarJobListModule, ActionBarModule, ActivityScoreLevel, AdvertiseModalComponent, AlertDuration, AtomsModule, AvatarComponent, AvatarModule, BreadcrumbComponent, BreadcrumbModule, ButtonComponent, ButtonModule, CardComponent, CardListComponent, CardListModule, CardModule, ContactActivityScoreComponent, ContactActivityScoreModule, ContextualMenuComponent, ContextualMenuModule, EventSettingsMoreOptionsComponent, EventSettingsMoreOptionsModule, EventsSettingsPageComponent, EventsSettingsPageModule, FeedbackCardComponent, FeedbackCardListComponent, FeedbackCardListModule, FeedbackCardModule, FeedbackCardState, FeedbackDetailPageComponent, FeedbackDetailPageModule, FeedbackListPageComponent, FeedbackListPageModule, FeedbackLoginModalComponent, FeedbackLoginModalModule, FileUploadComponent, FileUploadModule, FilterAreaComponent, FilterAreaModule, FrameworkModule, GridCellLoaderModule, GridComponent, GridLoadingCellComponent, GridModule, GridToggleCellRendererComponent, GridToggleCellRendererModule, H1Component, H1Module, H2Component, H2Module, H3Component, H3Module, H4Component, H4Module, H5Component, H5Module, H5WithIconComponent, H5WithIconModule, IconComponent, IconModule, IconWrapperComponent, IconWrapperModule, Icons, InputCheckboxComponent, InputCheckboxModule, InputDropdownComponent, InputDropdownList, InputDropdownListItemModel, InputDropdownModule, InputRadioComponent, InputRadioModule, InputTextComponent, InputTextModule, InputToggleComponent, InputToggleModule, LibrariesPageComponent, LibrariesPageModule, ModalModule, MoleculesModule, OrganismsModule, ParagraphComponent, ParagraphModule, PillComponent, PillModule, PillsComponent, PillsModule, RelevanceScoreComponent, RelevanceScoreModule, SettingListPageComponent, SettingListPageModule, SfxLoaderComponent, SfxLoaderModule, SfxPageLoaderComponent, SfxPageLoaderModule, SfxProgressBarComponent, SfxProgressBarModule, ToasterAlertComponent, ToasterAlertModel, ToasterAlertModule, ToasterAlertType, TooltipWrapperComponent, TooltipWrapperModule, TwoColumnFilterAreaComponent, TwoColumnFilterAreaModule, UploadResumeModalComponent, UploadResumeModalModule, gridType };
4502
4736
  //# sourceMappingURL=symphony-talent-component-library.mjs.map