@symphony-talent/component-library 3.27.0 → 3.27.1
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/organisms/grid-download/grid-download.component.mjs +3 -3
- package/esm2020/lib/pages/modals/advertised-job-postings-modal/advertised-job-postings-modal.component.mjs +2 -8
- package/esm2020/lib/pages/modals/advertised-job-postings-modal/advertised-job-postings-modal.model.mjs +1 -1
- package/esm2020/lib/templates/modal-templates/one-column-with-filter-modal-template/one-column-with-filter-modal-template.component.mjs +3 -3
- package/esm2020/projects/component-library/lib/organisms/grid-download/grid-download.component.mjs +3 -3
- package/esm2020/projects/component-library/lib/pages/modals/advertised-job-postings-modal/advertised-job-postings-modal.component.mjs +2 -8
- package/esm2020/projects/component-library/lib/pages/modals/advertised-job-postings-modal/advertised-job-postings-modal.model.mjs +1 -1
- package/esm2020/projects/component-library/lib/templates/modal-templates/one-column-with-filter-modal-template/one-column-with-filter-modal-template.component.mjs +3 -3
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +5 -11
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2015/symphony-talent-component-library.mjs +5 -11
- package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +5 -11
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library.mjs +5 -11
- package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
- package/lib/pages/modals/advertised-job-postings-modal/advertised-job-postings-modal.component.d.ts +1 -4
- package/lib/pages/modals/advertised-job-postings-modal/advertised-job-postings-modal.model.d.ts +0 -2
- package/package.json +1 -1
- package/projects/component-library/lib/pages/modals/advertised-job-postings-modal/advertised-job-postings-modal.component.d.ts +1 -4
- package/projects/component-library/lib/pages/modals/advertised-job-postings-modal/advertised-job-postings-modal.model.d.ts +0 -2
package/lib/pages/modals/advertised-job-postings-modal/advertised-job-postings-modal.component.d.ts
CHANGED
|
@@ -1,23 +1,20 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import { AdvertisedJobPostingsModalModel } from './advertised-job-postings-modal.model';
|
|
3
3
|
import { GridComponent } from '../../../atoms/grid/grid.component';
|
|
4
|
-
import { InputDropdownListItemModel } from '../../../atoms/input-dropdown/input-dropdown-list-item.model';
|
|
5
4
|
import { GridDownloadModel } from '../../../organisms/grid-download/grid-download.model';
|
|
6
5
|
import * as i0 from "@angular/core";
|
|
7
6
|
export declare class AdvertisedJobPostingsModalComponent {
|
|
8
7
|
model: AdvertisedJobPostingsModalModel;
|
|
9
8
|
gridDownloadModel: GridDownloadModel;
|
|
10
9
|
keywordSearchChange: EventEmitter<string>;
|
|
11
|
-
filterChange: EventEmitter<string>;
|
|
12
10
|
downloadClicked: EventEmitter<string>;
|
|
13
11
|
closeButtonClicked: EventEmitter<string>;
|
|
14
12
|
grid: GridComponent;
|
|
15
13
|
constructor();
|
|
16
14
|
onKeywordSearch(keyword: string): void;
|
|
17
|
-
onFilterChange(selectedModel: InputDropdownListItemModel): void;
|
|
18
15
|
onDownloadClick(): void;
|
|
19
16
|
onCloseButtonClick(): void;
|
|
20
17
|
refreshGrid(): void;
|
|
21
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdvertisedJobPostingsModalComponent, never>;
|
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AdvertisedJobPostingsModalComponent, "symphony-advertised-job-postings-modal", never, { "model": "model"; "gridDownloadModel": "gridDownloadModel"; }, { "keywordSearchChange": "keywordSearchChange"; "
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AdvertisedJobPostingsModalComponent, "symphony-advertised-job-postings-modal", never, { "model": "model"; "gridDownloadModel": "gridDownloadModel"; }, { "keywordSearchChange": "keywordSearchChange"; "downloadClicked": "downloadClicked"; "closeButtonClicked": "closeButtonClicked"; }, never, never>;
|
|
23
20
|
}
|
package/lib/pages/modals/advertised-job-postings-modal/advertised-job-postings-modal.model.d.ts
CHANGED
|
@@ -1,9 +1,7 @@
|
|
|
1
|
-
import { InputDropdownList } from '../../../atoms/input-dropdown/input-dropdown-list.model';
|
|
2
1
|
import { GridModel } from '../../../atoms/grid/grid.model';
|
|
3
2
|
import { GridDownloadModel } from '../../../organisms/grid-download/grid-download.model';
|
|
4
3
|
export interface AdvertisedJobPostingsModalModel {
|
|
5
4
|
gridDownloadModel: GridDownloadModel;
|
|
6
|
-
settingTypeDropdown: InputDropdownList;
|
|
7
5
|
grid: GridModel;
|
|
8
6
|
gridTitle: string;
|
|
9
7
|
}
|
package/package.json
CHANGED
|
@@ -1,23 +1,20 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import { AdvertisedJobPostingsModalModel } from './advertised-job-postings-modal.model';
|
|
3
3
|
import { GridComponent } from '../../../atoms/grid/grid.component';
|
|
4
|
-
import { InputDropdownListItemModel } from '../../../atoms/input-dropdown/input-dropdown-list-item.model';
|
|
5
4
|
import { GridDownloadModel } from '../../../organisms/grid-download/grid-download.model';
|
|
6
5
|
import * as i0 from "@angular/core";
|
|
7
6
|
export declare class AdvertisedJobPostingsModalComponent {
|
|
8
7
|
model: AdvertisedJobPostingsModalModel;
|
|
9
8
|
gridDownloadModel: GridDownloadModel;
|
|
10
9
|
keywordSearchChange: EventEmitter<string>;
|
|
11
|
-
filterChange: EventEmitter<string>;
|
|
12
10
|
downloadClicked: EventEmitter<string>;
|
|
13
11
|
closeButtonClicked: EventEmitter<string>;
|
|
14
12
|
grid: GridComponent;
|
|
15
13
|
constructor();
|
|
16
14
|
onKeywordSearch(keyword: string): void;
|
|
17
|
-
onFilterChange(selectedModel: InputDropdownListItemModel): void;
|
|
18
15
|
onDownloadClick(): void;
|
|
19
16
|
onCloseButtonClick(): void;
|
|
20
17
|
refreshGrid(): void;
|
|
21
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdvertisedJobPostingsModalComponent, never>;
|
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AdvertisedJobPostingsModalComponent, "symphony-advertised-job-postings-modal", never, { "model": "model"; "gridDownloadModel": "gridDownloadModel"; }, { "keywordSearchChange": "keywordSearchChange"; "
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AdvertisedJobPostingsModalComponent, "symphony-advertised-job-postings-modal", never, { "model": "model"; "gridDownloadModel": "gridDownloadModel"; }, { "keywordSearchChange": "keywordSearchChange"; "downloadClicked": "downloadClicked"; "closeButtonClicked": "closeButtonClicked"; }, never, never>;
|
|
23
20
|
}
|
|
@@ -1,9 +1,7 @@
|
|
|
1
|
-
import { InputDropdownList } from '../../../atoms/input-dropdown/input-dropdown-list.model';
|
|
2
1
|
import { GridModel } from '../../../atoms/grid/grid.model';
|
|
3
2
|
import { GridDownloadModel } from '../../../organisms/grid-download/grid-download.model';
|
|
4
3
|
export interface AdvertisedJobPostingsModalModel {
|
|
5
4
|
gridDownloadModel: GridDownloadModel;
|
|
6
|
-
settingTypeDropdown: InputDropdownList;
|
|
7
5
|
grid: GridModel;
|
|
8
6
|
gridTitle: string;
|
|
9
7
|
}
|