@symphony-talent/component-library 4.228.0 → 4.230.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/README.md +5 -5
- package/esm2020/lib/organisms/candidate-list/candidate-list.component.mjs +84 -0
- package/esm2020/lib/organisms/candidate-list/candidate-list.module.mjs +38 -0
- package/esm2020/projects/component-library/lib/organisms/candidate-list/candidate-list.component.mjs +84 -0
- package/esm2020/projects/component-library/lib/organisms/candidate-list/candidate-list.module.mjs +38 -0
- package/esm2020/projects/component-library/public-api.mjs +3 -1
- package/esm2020/public-api.mjs +3 -1
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +110 -1
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2015/symphony-talent-component-library.mjs +110 -1
- package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +108 -1
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library.mjs +108 -1
- package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
- package/lib/organisms/candidate-list/candidate-list.component.d.ts +26 -0
- package/lib/organisms/candidate-list/candidate-list.module.d.ts +12 -0
- package/package.json +64 -2
- package/projects/component-library/lib/organisms/candidate-list/candidate-list.component.d.ts +26 -0
- package/projects/component-library/lib/organisms/candidate-list/candidate-list.module.d.ts +12 -0
- package/projects/component-library/public-api.d.ts +2 -0
- package/public-api.d.ts +2 -0
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { CandidateItemModel, CandidateItemSelectionEvent } from '../../molecules/candidate-item/candidate-item.model';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CandidateListComponent {
|
|
5
|
+
private candidatesValue;
|
|
6
|
+
set candidates(candidates: CandidateItemModel[]);
|
|
7
|
+
get candidates(): CandidateItemModel[];
|
|
8
|
+
maxHeight: string;
|
|
9
|
+
label: string;
|
|
10
|
+
searchPlaceholder: string;
|
|
11
|
+
noMatchText: string;
|
|
12
|
+
errorText: string;
|
|
13
|
+
isLoading: boolean;
|
|
14
|
+
hasError: boolean;
|
|
15
|
+
showSearch: boolean;
|
|
16
|
+
selectionChanged: EventEmitter<CandidateItemSelectionEvent>;
|
|
17
|
+
searchChanged: EventEmitter<string>;
|
|
18
|
+
searchTerm: string;
|
|
19
|
+
filteredCandidates: CandidateItemModel[];
|
|
20
|
+
trackByCandidate(index: number, candidate: CandidateItemModel): string | number;
|
|
21
|
+
handleSelectionChanged(event: CandidateItemSelectionEvent): void;
|
|
22
|
+
handleSearchChange(value: string): void;
|
|
23
|
+
private applyFilter;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CandidateListComponent, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CandidateListComponent, "symphony-candidate-list", never, { "candidates": "candidates"; "maxHeight": "maxHeight"; "label": "label"; "searchPlaceholder": "searchPlaceholder"; "noMatchText": "noMatchText"; "errorText": "errorText"; "isLoading": "isLoading"; "hasError": "hasError"; "showSearch": "showSearch"; }, { "selectionChanged": "selectionChanged"; "searchChanged": "searchChanged"; }, never, never>;
|
|
26
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./candidate-list.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../../molecules/candidate-item/candidate-item.module";
|
|
5
|
+
import * as i4 from "../../atoms/input-text/input-text.module";
|
|
6
|
+
import * as i5 from "../../atoms/sfx-loader/sfx-loader.module";
|
|
7
|
+
import * as i6 from "../../atoms/paragraph/paragraph.module";
|
|
8
|
+
export declare class CandidateListModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CandidateListModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CandidateListModule, [typeof i1.CandidateListComponent], [typeof i2.CommonModule, typeof i3.CandidateItemModule, typeof i4.InputTextModule, typeof i5.SfxLoaderModule, typeof i6.ParagraphModule], [typeof i1.CandidateListComponent]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<CandidateListModule>;
|
|
12
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@symphony-talent/component-library",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.230.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"ag-grid-angular": "^24.0.0",
|
|
@@ -29,7 +29,69 @@
|
|
|
29
29
|
},
|
|
30
30
|
"overrides": {
|
|
31
31
|
"jsprim": "1.4.2",
|
|
32
|
-
"json-schema": "0.4.0"
|
|
32
|
+
"json-schema": "0.4.0",
|
|
33
|
+
"@babel/traverse": "7.29.0",
|
|
34
|
+
"body-parser": "1.20.5",
|
|
35
|
+
"browserify-sign": "4.2.6",
|
|
36
|
+
"cipher-base": "1.0.7",
|
|
37
|
+
"cross-spawn": "7.0.6",
|
|
38
|
+
"express": "4.22.2",
|
|
39
|
+
"fast-loops": "1.1.4",
|
|
40
|
+
"flatted": "3.4.2",
|
|
41
|
+
"follow-redirects": "1.16.0",
|
|
42
|
+
"handlebars": "4.7.9",
|
|
43
|
+
"http-cache-semantics": "4.2.0",
|
|
44
|
+
"http-proxy-middleware": "2.0.9",
|
|
45
|
+
"immutable": "4.3.8",
|
|
46
|
+
"lodash": "4.18.1",
|
|
47
|
+
"nanoid": "3.3.12",
|
|
48
|
+
"node-fetch": "2.7.0",
|
|
49
|
+
"node-forge": "1.4.0",
|
|
50
|
+
"path-to-regexp": "0.1.13",
|
|
51
|
+
"pbkdf2": "3.1.5",
|
|
52
|
+
"qs": "6.15.2",
|
|
53
|
+
"rollup": "2.80.0",
|
|
54
|
+
"sha.js": "2.4.12",
|
|
55
|
+
"socket.io-parser": "4.2.6",
|
|
56
|
+
"tar": "6.2.1",
|
|
57
|
+
"trim": "1.0.1",
|
|
58
|
+
"trim-newlines": "3.0.1",
|
|
59
|
+
"word-wrap": "1.2.5",
|
|
60
|
+
"ws": "8.21.0",
|
|
61
|
+
"socks": "2.8.9",
|
|
62
|
+
"css-loader": {
|
|
63
|
+
"loader-utils": "2.0.4"
|
|
64
|
+
},
|
|
65
|
+
"sass-loader": {
|
|
66
|
+
"loader-utils": "2.0.4"
|
|
67
|
+
},
|
|
68
|
+
"style-loader": {
|
|
69
|
+
"loader-utils": "2.0.4"
|
|
70
|
+
},
|
|
71
|
+
"babel-loader": {
|
|
72
|
+
"loader-utils": "2.0.4"
|
|
73
|
+
},
|
|
74
|
+
"adjust-sourcemap-loader": {
|
|
75
|
+
"loader-utils": "2.0.4"
|
|
76
|
+
},
|
|
77
|
+
"file-loader": {
|
|
78
|
+
"loader-utils": "2.0.4"
|
|
79
|
+
},
|
|
80
|
+
"raw-loader": {
|
|
81
|
+
"loader-utils": "2.0.4"
|
|
82
|
+
},
|
|
83
|
+
"resolve-url-loader": {
|
|
84
|
+
"loader-utils": "2.0.4"
|
|
85
|
+
},
|
|
86
|
+
"ts-loader": {
|
|
87
|
+
"loader-utils": "2.0.4"
|
|
88
|
+
},
|
|
89
|
+
"url-loader": {
|
|
90
|
+
"loader-utils": "2.0.4"
|
|
91
|
+
},
|
|
92
|
+
"@mdx-js/loader": {
|
|
93
|
+
"loader-utils": "2.0.4"
|
|
94
|
+
}
|
|
33
95
|
},
|
|
34
96
|
"module": "fesm2015/symphony-talent-component-library.mjs",
|
|
35
97
|
"es2020": "fesm2020/symphony-talent-component-library.mjs",
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { CandidateItemModel, CandidateItemSelectionEvent } from '../../molecules/candidate-item/candidate-item.model';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CandidateListComponent {
|
|
5
|
+
private candidatesValue;
|
|
6
|
+
set candidates(candidates: CandidateItemModel[]);
|
|
7
|
+
get candidates(): CandidateItemModel[];
|
|
8
|
+
maxHeight: string;
|
|
9
|
+
label: string;
|
|
10
|
+
searchPlaceholder: string;
|
|
11
|
+
noMatchText: string;
|
|
12
|
+
errorText: string;
|
|
13
|
+
isLoading: boolean;
|
|
14
|
+
hasError: boolean;
|
|
15
|
+
showSearch: boolean;
|
|
16
|
+
selectionChanged: EventEmitter<CandidateItemSelectionEvent>;
|
|
17
|
+
searchChanged: EventEmitter<string>;
|
|
18
|
+
searchTerm: string;
|
|
19
|
+
filteredCandidates: CandidateItemModel[];
|
|
20
|
+
trackByCandidate(index: number, candidate: CandidateItemModel): string | number;
|
|
21
|
+
handleSelectionChanged(event: CandidateItemSelectionEvent): void;
|
|
22
|
+
handleSearchChange(value: string): void;
|
|
23
|
+
private applyFilter;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CandidateListComponent, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CandidateListComponent, "symphony-candidate-list", never, { "candidates": "candidates"; "maxHeight": "maxHeight"; "label": "label"; "searchPlaceholder": "searchPlaceholder"; "noMatchText": "noMatchText"; "errorText": "errorText"; "isLoading": "isLoading"; "hasError": "hasError"; "showSearch": "showSearch"; }, { "selectionChanged": "selectionChanged"; "searchChanged": "searchChanged"; }, never, never>;
|
|
26
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./candidate-list.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../../molecules/candidate-item/candidate-item.module";
|
|
5
|
+
import * as i4 from "../../atoms/input-text/input-text.module";
|
|
6
|
+
import * as i5 from "../../atoms/sfx-loader/sfx-loader.module";
|
|
7
|
+
import * as i6 from "../../atoms/paragraph/paragraph.module";
|
|
8
|
+
export declare class CandidateListModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CandidateListModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CandidateListModule, [typeof i1.CandidateListComponent], [typeof i2.CommonModule, typeof i3.CandidateItemModule, typeof i4.InputTextModule, typeof i5.SfxLoaderModule, typeof i6.ParagraphModule], [typeof i1.CandidateListComponent]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<CandidateListModule>;
|
|
12
|
+
}
|
|
@@ -182,6 +182,8 @@ export * from './lib/molecules/document-management-item/document-management-item
|
|
|
182
182
|
export * from './lib/molecules/candidate-item/candidate-item.model';
|
|
183
183
|
export * from './lib/molecules/candidate-item/candidate-item.component';
|
|
184
184
|
export * from './lib/molecules/candidate-item/candidate-item.module';
|
|
185
|
+
export * from './lib/organisms/candidate-list/candidate-list.component';
|
|
186
|
+
export * from './lib/organisms/candidate-list/candidate-list.module';
|
|
185
187
|
export * from './lib/molecules/phaser-card/phaser-card.model';
|
|
186
188
|
export * from './lib/molecules/phaser-card/phaser-card.component';
|
|
187
189
|
export * from './lib/molecules/phaser-card/phaser-card.module';
|
package/public-api.d.ts
CHANGED
|
@@ -182,6 +182,8 @@ export * from './lib/molecules/document-management-item/document-management-item
|
|
|
182
182
|
export * from './lib/molecules/candidate-item/candidate-item.model';
|
|
183
183
|
export * from './lib/molecules/candidate-item/candidate-item.component';
|
|
184
184
|
export * from './lib/molecules/candidate-item/candidate-item.module';
|
|
185
|
+
export * from './lib/organisms/candidate-list/candidate-list.component';
|
|
186
|
+
export * from './lib/organisms/candidate-list/candidate-list.module';
|
|
185
187
|
export * from './lib/molecules/phaser-card/phaser-card.model';
|
|
186
188
|
export * from './lib/molecules/phaser-card/phaser-card.component';
|
|
187
189
|
export * from './lib/molecules/phaser-card/phaser-card.module';
|