@symphony-talent/component-library 3.50.0 → 3.51.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.
- package/esm2020/lib/atoms/contextual-menu/contextual-menu.component.mjs +4 -3
- package/esm2020/lib/atoms/contextual-menu/contextual-menu.model.mjs +1 -1
- package/esm2020/lib/atoms/filter-area/filter-area.component.mjs +3 -3
- package/esm2020/lib/atoms/grid/framework/framework.module.mjs +8 -4
- package/esm2020/lib/atoms/grid/framework/grid-cell-clickable/grid-cell-clickable.component.mjs +26 -0
- package/esm2020/lib/atoms/grid/framework/grid-cell-clickable/grid-cell-clickable.model.mjs +2 -0
- package/esm2020/lib/atoms/grid/framework/grid-cell-clickable/grid-cell-clickable.module.mjs +24 -0
- package/esm2020/lib/atoms/grid/grid.component.mjs +6 -4
- package/esm2020/lib/organisms/grid-controls/grid-controls.component.mjs +3 -3
- package/esm2020/lib/organisms/grid-controls/grid-controls.model.mjs +1 -1
- package/esm2020/lib/pages/job-list-page/job-list-page.component.mjs +78 -0
- package/esm2020/lib/pages/job-list-page/job-list-page.model.mjs +2 -0
- package/esm2020/lib/pages/job-list-page/job-list-page.module.mjs +66 -0
- package/esm2020/lib/templates/contact-list/contact-list-template.component.mjs +12 -0
- package/esm2020/lib/templates/contact-list/contact-list-template.module.mjs +18 -0
- package/esm2020/projects/component-library/lib/atoms/contextual-menu/contextual-menu.component.mjs +4 -3
- package/esm2020/projects/component-library/lib/atoms/contextual-menu/contextual-menu.model.mjs +1 -1
- package/esm2020/projects/component-library/lib/atoms/filter-area/filter-area.component.mjs +3 -3
- package/esm2020/projects/component-library/lib/atoms/grid/framework/framework.module.mjs +8 -4
- package/esm2020/projects/component-library/lib/atoms/grid/framework/grid-cell-clickable/grid-cell-clickable.component.mjs +26 -0
- package/esm2020/projects/component-library/lib/atoms/grid/framework/grid-cell-clickable/grid-cell-clickable.model.mjs +2 -0
- package/esm2020/projects/component-library/lib/atoms/grid/framework/grid-cell-clickable/grid-cell-clickable.module.mjs +24 -0
- package/esm2020/projects/component-library/lib/atoms/grid/grid.component.mjs +6 -4
- package/esm2020/projects/component-library/lib/organisms/grid-controls/grid-controls.component.mjs +3 -3
- package/esm2020/projects/component-library/lib/organisms/grid-controls/grid-controls.model.mjs +1 -1
- package/esm2020/projects/component-library/lib/pages/job-list-page/job-list-page.component.mjs +78 -0
- package/esm2020/projects/component-library/lib/pages/job-list-page/job-list-page.model.mjs +2 -0
- package/esm2020/projects/component-library/lib/pages/job-list-page/job-list-page.module.mjs +66 -0
- package/esm2020/projects/component-library/lib/templates/contact-list/contact-list-template.component.mjs +12 -0
- package/esm2020/projects/component-library/lib/templates/contact-list/contact-list-template.module.mjs +18 -0
- package/esm2020/projects/component-library/public-api.mjs +7 -1
- package/esm2020/public-api.mjs +7 -1
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +227 -41
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2015/symphony-talent-component-library.mjs +227 -41
- package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +227 -41
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library.mjs +227 -41
- package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
- package/lib/atoms/contextual-menu/contextual-menu.model.d.ts +1 -0
- package/lib/atoms/filter-area/filter-area.component.d.ts +1 -1
- package/lib/atoms/grid/framework/framework.module.d.ts +2 -1
- package/lib/atoms/grid/framework/grid-cell-clickable/grid-cell-clickable.component.d.ts +13 -0
- package/lib/atoms/grid/framework/grid-cell-clickable/grid-cell-clickable.model.d.ts +4 -0
- package/lib/atoms/grid/framework/grid-cell-clickable/grid-cell-clickable.module.d.ts +9 -0
- package/lib/organisms/grid-controls/grid-controls.model.d.ts +1 -0
- package/lib/pages/job-list-page/job-list-page.component.d.ts +27 -0
- package/lib/pages/job-list-page/job-list-page.model.d.ts +18 -0
- package/lib/pages/job-list-page/job-list-page.module.d.ts +19 -0
- package/lib/templates/contact-list/contact-list-template.component.d.ts +6 -0
- package/lib/templates/contact-list/contact-list-template.module.d.ts +8 -0
- package/package.json +1 -1
- package/projects/component-library/lib/atoms/contextual-menu/contextual-menu.model.d.ts +1 -0
- package/projects/component-library/lib/atoms/filter-area/filter-area.component.d.ts +1 -1
- package/projects/component-library/lib/atoms/grid/framework/framework.module.d.ts +2 -1
- package/projects/component-library/lib/atoms/grid/framework/grid-cell-clickable/grid-cell-clickable.component.d.ts +13 -0
- package/projects/component-library/lib/atoms/grid/framework/grid-cell-clickable/grid-cell-clickable.model.d.ts +4 -0
- package/projects/component-library/lib/atoms/grid/framework/grid-cell-clickable/grid-cell-clickable.module.d.ts +9 -0
- package/projects/component-library/lib/organisms/grid-controls/grid-controls.model.d.ts +1 -0
- package/projects/component-library/lib/pages/job-list-page/job-list-page.component.d.ts +27 -0
- package/projects/component-library/lib/pages/job-list-page/job-list-page.model.d.ts +18 -0
- package/projects/component-library/lib/pages/job-list-page/job-list-page.module.d.ts +19 -0
- package/projects/component-library/lib/templates/contact-list/contact-list-template.component.d.ts +6 -0
- package/projects/component-library/lib/templates/contact-list/contact-list-template.module.d.ts +8 -0
- package/projects/component-library/public-api.d.ts +6 -0
- package/public-api.d.ts +6 -0
|
@@ -2,5 +2,5 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
export declare class FilterAreaComponent {
|
|
3
3
|
constructor();
|
|
4
4
|
static ɵfac: i0.ɵɵFactoryDeclaration<FilterAreaComponent, never>;
|
|
5
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FilterAreaComponent, "symphony-filter-area", never, {}, {}, never, ["[title]", "[
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FilterAreaComponent, "symphony-filter-area", never, {}, {}, never, ["[title]", "[more-options]", "[load-last]", "[advance-search-icon]", "[advance-search]", "[filter-1]", "[filter-2]", "[filter-3]", "[filter-4]", "[filter-5]", "[filter-6]", "[filter-7]"]>;
|
|
6
6
|
}
|
|
@@ -6,8 +6,9 @@ import * as i4 from "./grid-cell-loader/grid-cell-loader.module";
|
|
|
6
6
|
import * as i5 from "./event-settings-more-options/event-settings-more-options.module";
|
|
7
7
|
import * as i6 from "./advertised-jobs-cost/advertised-jobs-cost.module";
|
|
8
8
|
import * as i7 from "./overflow-text/overflow-text.module";
|
|
9
|
+
import * as i8 from "./grid-cell-clickable/grid-cell-clickable.module";
|
|
9
10
|
export declare class FrameworkModule {
|
|
10
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<FrameworkModule, never>;
|
|
11
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<FrameworkModule, never, never, [typeof i1.ContactActivityScoreModule, typeof i2.RelevanceScoreModule, typeof i3.GridToggleCellRendererModule, typeof i4.GridCellLoaderModule, typeof i5.EventSettingsMoreOptionsModule, typeof i6.AdvertisedJobsCostModule, typeof i7.OverflowTextModule]>;
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FrameworkModule, never, never, [typeof i1.ContactActivityScoreModule, typeof i2.RelevanceScoreModule, typeof i3.GridToggleCellRendererModule, typeof i4.GridCellLoaderModule, typeof i5.EventSettingsMoreOptionsModule, typeof i6.AdvertisedJobsCostModule, typeof i7.OverflowTextModule, typeof i8.GridCellClickableModule]>;
|
|
12
13
|
static ɵinj: i0.ɵɵInjectorDeclaration<FrameworkModule>;
|
|
13
14
|
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ICellRendererAngularComp } from 'ag-grid-angular';
|
|
2
|
+
import { ICellRendererParams } from 'ag-grid-community';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class GridCellClickableComponent implements ICellRendererAngularComp {
|
|
5
|
+
value: any;
|
|
6
|
+
constructor();
|
|
7
|
+
params: any;
|
|
8
|
+
refresh(params: any): boolean;
|
|
9
|
+
agInit(params: ICellRendererParams): void;
|
|
10
|
+
onCellClick(params: any): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GridCellClickableComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GridCellClickableComponent, "symphony-grid-cell-clickable", never, {}, {}, never, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./grid-cell-clickable.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../../../paragraph/paragraph.module";
|
|
5
|
+
export declare class GridCellClickableModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GridCellClickableModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<GridCellClickableModule, [typeof i1.GridCellClickableComponent], [typeof i2.CommonModule, typeof i3.ParagraphModule], never>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<GridCellClickableModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { GridComponent } from '../../atoms/grid/grid.component';
|
|
3
|
+
import { JobListPageModel } from './job-list-page.model';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class JobListPageComponent {
|
|
6
|
+
jobListModel: JobListPageModel;
|
|
7
|
+
addButtonClicked: EventEmitter<any>;
|
|
8
|
+
advanceSearchClicked: EventEmitter<any>;
|
|
9
|
+
lastLoadClicked: EventEmitter<any>;
|
|
10
|
+
itemClicked: EventEmitter<JobListPageModel>;
|
|
11
|
+
jobCategorySearchChange: EventEmitter<string>;
|
|
12
|
+
gridControlClicked: EventEmitter<JobListPageModel>;
|
|
13
|
+
gridActionClicked: EventEmitter<JobListPageModel>;
|
|
14
|
+
rowChecked: EventEmitter<JobListPageModel>;
|
|
15
|
+
jobTitleclicked: EventEmitter<any>;
|
|
16
|
+
grid: GridComponent;
|
|
17
|
+
constructor();
|
|
18
|
+
onAddButtonClick(): void;
|
|
19
|
+
onAdvanceSearchClick(): void;
|
|
20
|
+
onLoadLastClick(): void;
|
|
21
|
+
onJobCategorySearch(keyword: string): void;
|
|
22
|
+
onGridControlClick(gridControlsModel: any): void;
|
|
23
|
+
onGridActionClick(gridActionModel: any): void;
|
|
24
|
+
onItemClick(JobListPageModel: any): void;
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<JobListPageComponent, never>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<JobListPageComponent, "symphony-job-list-page", never, { "jobListModel": "jobListModel"; }, { "addButtonClicked": "addButtonClicked"; "advanceSearchClicked": "advanceSearchClicked"; "lastLoadClicked": "lastLoadClicked"; "itemClicked": "itemClicked"; "jobCategorySearchChange": "jobCategorySearchChange"; "gridControlClicked": "gridControlClicked"; "gridActionClicked": "gridActionClicked"; "rowChecked": "rowChecked"; "jobTitleclicked": "jobTitleclicked"; }, never, never>;
|
|
27
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { ContextualMenuModel } from '../../atoms/contextual-menu/contextual-menu.model';
|
|
2
|
+
import { GridModel } from '../../atoms/grid/grid.model';
|
|
3
|
+
import { GridActionsModel } from '../../organisms/grid-actions/grid-actions.model';
|
|
4
|
+
import { GridControlsModel } from '../../organisms/grid-controls/grid-controls.model';
|
|
5
|
+
export interface JobListPageModel {
|
|
6
|
+
gridActionModel: GridActionsModel[];
|
|
7
|
+
gridControlsModel: GridControlsModel;
|
|
8
|
+
hasActionToggle: boolean;
|
|
9
|
+
hasAdvanceSearch: boolean;
|
|
10
|
+
hasLoadLast: boolean;
|
|
11
|
+
hasFilterMoreOption: boolean;
|
|
12
|
+
hasCreateJob: boolean;
|
|
13
|
+
hasClearSearch: boolean;
|
|
14
|
+
grid: GridModel;
|
|
15
|
+
moreActions: ContextualMenuModel;
|
|
16
|
+
loadLastSearchTooltip: string;
|
|
17
|
+
clearSearchTooltip: string;
|
|
18
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./job-list-page.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../../templates/contact-list/contact-list-template.module";
|
|
5
|
+
import * as i4 from "../../atoms/h3/h3.module";
|
|
6
|
+
import * as i5 from "../../atoms/h5/h5.module";
|
|
7
|
+
import * as i6 from "../../atoms/grid/grid.module";
|
|
8
|
+
import * as i7 from "../../atoms/contextual-menu/contextual-menu.module";
|
|
9
|
+
import * as i8 from "../../atoms/tooltip-wrapper/tooltip-wrapper.module";
|
|
10
|
+
import * as i9 from "../../atoms/filter-area/filter-area.module";
|
|
11
|
+
import * as i10 from "../../atoms/icon/icon.module";
|
|
12
|
+
import * as i11 from "../../atoms/icon-wrapper/icon-wrapper.module";
|
|
13
|
+
import * as i12 from "../../atoms/input-text/input-text.module";
|
|
14
|
+
import * as i13 from "../../organisms/action-bar-job-list/action-bar-job-list.module";
|
|
15
|
+
export declare class JobListPageModule {
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<JobListPageModule, never>;
|
|
17
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<JobListPageModule, [typeof i1.JobListPageComponent], [typeof i2.CommonModule, typeof i3.ContactListTemplateModule, typeof i4.H3Module, typeof i5.H5Module, typeof i6.GridModule, typeof i7.ContextualMenuModule, typeof i8.TooltipWrapperModule, typeof i9.FilterAreaModule, typeof i10.IconModule, typeof i11.IconWrapperModule, typeof i12.InputTextModule, typeof i13.ActionBarJobListModule], [typeof i1.JobListPageComponent]>;
|
|
18
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<JobListPageModule>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class ContactListTemplateComponent {
|
|
3
|
+
constructor();
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ContactListTemplateComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ContactListTemplateComponent, "symphony-contact-list-template", never, {}, {}, never, ["[sfx-header]", "[sfx-page-action]", "[sfx-filter-area]", "[sfx-actions]", "[sfx-grid]"]>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./contact-list-template.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
export declare class ContactListTemplateModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ContactListTemplateModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ContactListTemplateModule, [typeof i1.ContactListTemplateComponent], [typeof i2.CommonModule], [typeof i1.ContactListTemplateComponent]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ContactListTemplateModule>;
|
|
8
|
+
}
|
package/package.json
CHANGED
|
@@ -2,5 +2,5 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
export declare class FilterAreaComponent {
|
|
3
3
|
constructor();
|
|
4
4
|
static ɵfac: i0.ɵɵFactoryDeclaration<FilterAreaComponent, never>;
|
|
5
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FilterAreaComponent, "symphony-filter-area", never, {}, {}, never, ["[title]", "[
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FilterAreaComponent, "symphony-filter-area", never, {}, {}, never, ["[title]", "[more-options]", "[load-last]", "[advance-search-icon]", "[advance-search]", "[filter-1]", "[filter-2]", "[filter-3]", "[filter-4]", "[filter-5]", "[filter-6]", "[filter-7]"]>;
|
|
6
6
|
}
|
|
@@ -6,8 +6,9 @@ import * as i4 from "./grid-cell-loader/grid-cell-loader.module";
|
|
|
6
6
|
import * as i5 from "./event-settings-more-options/event-settings-more-options.module";
|
|
7
7
|
import * as i6 from "./advertised-jobs-cost/advertised-jobs-cost.module";
|
|
8
8
|
import * as i7 from "./overflow-text/overflow-text.module";
|
|
9
|
+
import * as i8 from "./grid-cell-clickable/grid-cell-clickable.module";
|
|
9
10
|
export declare class FrameworkModule {
|
|
10
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<FrameworkModule, never>;
|
|
11
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<FrameworkModule, never, never, [typeof i1.ContactActivityScoreModule, typeof i2.RelevanceScoreModule, typeof i3.GridToggleCellRendererModule, typeof i4.GridCellLoaderModule, typeof i5.EventSettingsMoreOptionsModule, typeof i6.AdvertisedJobsCostModule, typeof i7.OverflowTextModule]>;
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FrameworkModule, never, never, [typeof i1.ContactActivityScoreModule, typeof i2.RelevanceScoreModule, typeof i3.GridToggleCellRendererModule, typeof i4.GridCellLoaderModule, typeof i5.EventSettingsMoreOptionsModule, typeof i6.AdvertisedJobsCostModule, typeof i7.OverflowTextModule, typeof i8.GridCellClickableModule]>;
|
|
12
13
|
static ɵinj: i0.ɵɵInjectorDeclaration<FrameworkModule>;
|
|
13
14
|
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ICellRendererAngularComp } from 'ag-grid-angular';
|
|
2
|
+
import { ICellRendererParams } from 'ag-grid-community';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class GridCellClickableComponent implements ICellRendererAngularComp {
|
|
5
|
+
value: any;
|
|
6
|
+
constructor();
|
|
7
|
+
params: any;
|
|
8
|
+
refresh(params: any): boolean;
|
|
9
|
+
agInit(params: ICellRendererParams): void;
|
|
10
|
+
onCellClick(params: any): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GridCellClickableComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GridCellClickableComponent, "symphony-grid-cell-clickable", never, {}, {}, never, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./grid-cell-clickable.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../../../paragraph/paragraph.module";
|
|
5
|
+
export declare class GridCellClickableModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GridCellClickableModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<GridCellClickableModule, [typeof i1.GridCellClickableComponent], [typeof i2.CommonModule, typeof i3.ParagraphModule], never>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<GridCellClickableModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { GridComponent } from '../../atoms/grid/grid.component';
|
|
3
|
+
import { JobListPageModel } from './job-list-page.model';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class JobListPageComponent {
|
|
6
|
+
jobListModel: JobListPageModel;
|
|
7
|
+
addButtonClicked: EventEmitter<any>;
|
|
8
|
+
advanceSearchClicked: EventEmitter<any>;
|
|
9
|
+
lastLoadClicked: EventEmitter<any>;
|
|
10
|
+
itemClicked: EventEmitter<JobListPageModel>;
|
|
11
|
+
jobCategorySearchChange: EventEmitter<string>;
|
|
12
|
+
gridControlClicked: EventEmitter<JobListPageModel>;
|
|
13
|
+
gridActionClicked: EventEmitter<JobListPageModel>;
|
|
14
|
+
rowChecked: EventEmitter<JobListPageModel>;
|
|
15
|
+
jobTitleclicked: EventEmitter<any>;
|
|
16
|
+
grid: GridComponent;
|
|
17
|
+
constructor();
|
|
18
|
+
onAddButtonClick(): void;
|
|
19
|
+
onAdvanceSearchClick(): void;
|
|
20
|
+
onLoadLastClick(): void;
|
|
21
|
+
onJobCategorySearch(keyword: string): void;
|
|
22
|
+
onGridControlClick(gridControlsModel: any): void;
|
|
23
|
+
onGridActionClick(gridActionModel: any): void;
|
|
24
|
+
onItemClick(JobListPageModel: any): void;
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<JobListPageComponent, never>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<JobListPageComponent, "symphony-job-list-page", never, { "jobListModel": "jobListModel"; }, { "addButtonClicked": "addButtonClicked"; "advanceSearchClicked": "advanceSearchClicked"; "lastLoadClicked": "lastLoadClicked"; "itemClicked": "itemClicked"; "jobCategorySearchChange": "jobCategorySearchChange"; "gridControlClicked": "gridControlClicked"; "gridActionClicked": "gridActionClicked"; "rowChecked": "rowChecked"; "jobTitleclicked": "jobTitleclicked"; }, never, never>;
|
|
27
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { ContextualMenuModel } from '../../atoms/contextual-menu/contextual-menu.model';
|
|
2
|
+
import { GridModel } from '../../atoms/grid/grid.model';
|
|
3
|
+
import { GridActionsModel } from '../../organisms/grid-actions/grid-actions.model';
|
|
4
|
+
import { GridControlsModel } from '../../organisms/grid-controls/grid-controls.model';
|
|
5
|
+
export interface JobListPageModel {
|
|
6
|
+
gridActionModel: GridActionsModel[];
|
|
7
|
+
gridControlsModel: GridControlsModel;
|
|
8
|
+
hasActionToggle: boolean;
|
|
9
|
+
hasAdvanceSearch: boolean;
|
|
10
|
+
hasLoadLast: boolean;
|
|
11
|
+
hasFilterMoreOption: boolean;
|
|
12
|
+
hasCreateJob: boolean;
|
|
13
|
+
hasClearSearch: boolean;
|
|
14
|
+
grid: GridModel;
|
|
15
|
+
moreActions: ContextualMenuModel;
|
|
16
|
+
loadLastSearchTooltip: string;
|
|
17
|
+
clearSearchTooltip: string;
|
|
18
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./job-list-page.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../../templates/contact-list/contact-list-template.module";
|
|
5
|
+
import * as i4 from "../../atoms/h3/h3.module";
|
|
6
|
+
import * as i5 from "../../atoms/h5/h5.module";
|
|
7
|
+
import * as i6 from "../../atoms/grid/grid.module";
|
|
8
|
+
import * as i7 from "../../atoms/contextual-menu/contextual-menu.module";
|
|
9
|
+
import * as i8 from "../../atoms/tooltip-wrapper/tooltip-wrapper.module";
|
|
10
|
+
import * as i9 from "../../atoms/filter-area/filter-area.module";
|
|
11
|
+
import * as i10 from "../../atoms/icon/icon.module";
|
|
12
|
+
import * as i11 from "../../atoms/icon-wrapper/icon-wrapper.module";
|
|
13
|
+
import * as i12 from "../../atoms/input-text/input-text.module";
|
|
14
|
+
import * as i13 from "../../organisms/action-bar-job-list/action-bar-job-list.module";
|
|
15
|
+
export declare class JobListPageModule {
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<JobListPageModule, never>;
|
|
17
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<JobListPageModule, [typeof i1.JobListPageComponent], [typeof i2.CommonModule, typeof i3.ContactListTemplateModule, typeof i4.H3Module, typeof i5.H5Module, typeof i6.GridModule, typeof i7.ContextualMenuModule, typeof i8.TooltipWrapperModule, typeof i9.FilterAreaModule, typeof i10.IconModule, typeof i11.IconWrapperModule, typeof i12.InputTextModule, typeof i13.ActionBarJobListModule], [typeof i1.JobListPageComponent]>;
|
|
18
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<JobListPageModule>;
|
|
19
|
+
}
|
package/projects/component-library/lib/templates/contact-list/contact-list-template.component.d.ts
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class ContactListTemplateComponent {
|
|
3
|
+
constructor();
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ContactListTemplateComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ContactListTemplateComponent, "symphony-contact-list-template", never, {}, {}, never, ["[sfx-header]", "[sfx-page-action]", "[sfx-filter-area]", "[sfx-actions]", "[sfx-grid]"]>;
|
|
6
|
+
}
|
package/projects/component-library/lib/templates/contact-list/contact-list-template.module.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./contact-list-template.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
export declare class ContactListTemplateModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ContactListTemplateModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ContactListTemplateModule, [typeof i1.ContactListTemplateComponent], [typeof i2.CommonModule], [typeof i1.ContactListTemplateComponent]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ContactListTemplateModule>;
|
|
8
|
+
}
|
|
@@ -27,6 +27,9 @@ export * from './lib/atoms/grid/framework/advertised-jobs-cost/advertised-jobs-c
|
|
|
27
27
|
export * from './lib/atoms/grid/framework/advertised-jobs-cost/advertised-jobs-cost.module';
|
|
28
28
|
export * from './lib/atoms/grid/framework/overflow-text/overflow-text.component';
|
|
29
29
|
export * from './lib/atoms/grid/framework/overflow-text/overflow-text.module';
|
|
30
|
+
export * from './lib/atoms/grid/framework/grid-cell-clickable/grid-cell-clickable.component';
|
|
31
|
+
export * from './lib/atoms/grid/framework/grid-cell-clickable/grid-cell-clickable.model';
|
|
32
|
+
export * from './lib/atoms/grid/framework/grid-cell-clickable/grid-cell-clickable.module';
|
|
30
33
|
export * from './lib/atoms/grid/framework/framework.module';
|
|
31
34
|
export * from './lib/atoms/h1/h1.component';
|
|
32
35
|
export * from './lib/atoms/h1/h1.module';
|
|
@@ -169,5 +172,8 @@ export * from './lib/pages/advertised-job-postings-list-page/advertised-job-post
|
|
|
169
172
|
export * from './lib/pages/modals/advertised-job-postings-modal/advertised-job-postings-modal.component';
|
|
170
173
|
export * from './lib/pages/modals/advertised-job-postings-modal/advertised-job-postings-modal.module';
|
|
171
174
|
export * from './lib/pages/modals/advertised-job-postings-modal/advertised-job-postings-modal.model';
|
|
175
|
+
export * from './lib/pages/job-list-page/job-list-page.component';
|
|
176
|
+
export * from './lib/pages/job-list-page/job-list-page.module';
|
|
177
|
+
export * from './lib/pages/job-list-page/job-list-page.model';
|
|
172
178
|
export * from './lib/pipe/trim-id.pipe';
|
|
173
179
|
export * from './lib/pipe/pipe.module';
|
package/public-api.d.ts
CHANGED
|
@@ -27,6 +27,9 @@ export * from './lib/atoms/grid/framework/advertised-jobs-cost/advertised-jobs-c
|
|
|
27
27
|
export * from './lib/atoms/grid/framework/advertised-jobs-cost/advertised-jobs-cost.module';
|
|
28
28
|
export * from './lib/atoms/grid/framework/overflow-text/overflow-text.component';
|
|
29
29
|
export * from './lib/atoms/grid/framework/overflow-text/overflow-text.module';
|
|
30
|
+
export * from './lib/atoms/grid/framework/grid-cell-clickable/grid-cell-clickable.component';
|
|
31
|
+
export * from './lib/atoms/grid/framework/grid-cell-clickable/grid-cell-clickable.model';
|
|
32
|
+
export * from './lib/atoms/grid/framework/grid-cell-clickable/grid-cell-clickable.module';
|
|
30
33
|
export * from './lib/atoms/grid/framework/framework.module';
|
|
31
34
|
export * from './lib/atoms/h1/h1.component';
|
|
32
35
|
export * from './lib/atoms/h1/h1.module';
|
|
@@ -169,5 +172,8 @@ export * from './lib/pages/advertised-job-postings-list-page/advertised-job-post
|
|
|
169
172
|
export * from './lib/pages/modals/advertised-job-postings-modal/advertised-job-postings-modal.component';
|
|
170
173
|
export * from './lib/pages/modals/advertised-job-postings-modal/advertised-job-postings-modal.module';
|
|
171
174
|
export * from './lib/pages/modals/advertised-job-postings-modal/advertised-job-postings-modal.model';
|
|
175
|
+
export * from './lib/pages/job-list-page/job-list-page.component';
|
|
176
|
+
export * from './lib/pages/job-list-page/job-list-page.module';
|
|
177
|
+
export * from './lib/pages/job-list-page/job-list-page.model';
|
|
172
178
|
export * from './lib/pipe/trim-id.pipe';
|
|
173
179
|
export * from './lib/pipe/pipe.module';
|