@symphony-talent/component-library 4.197.0 → 4.198.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/input-radio/input-radio.component.mjs +5 -3
- package/esm2020/lib/organisms/merge-contacts-modal/merge-contacts-modal.component.mjs +3 -3
- package/esm2020/lib/organisms/merge-contacts-modal/merge-contacts-modal.model.mjs +1 -1
- package/esm2020/projects/component-library/lib/atoms/input-radio/input-radio.component.mjs +5 -3
- package/esm2020/projects/component-library/lib/organisms/merge-contacts-modal/merge-contacts-modal.component.mjs +3 -3
- package/esm2020/projects/component-library/lib/organisms/merge-contacts-modal/merge-contacts-modal.model.mjs +1 -1
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +6 -4
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2015/symphony-talent-component-library.mjs +6 -4
- package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +6 -4
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library.mjs +6 -4
- package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
- package/lib/atoms/input-radio/input-radio.component.d.ts +2 -1
- package/lib/organisms/merge-contacts-modal/merge-contacts-modal.model.d.ts +15 -1
- package/package.json +1 -1
- package/projects/component-library/global.scss +16 -0
- package/projects/component-library/lib/atoms/input-radio/input-radio.component.d.ts +2 -1
- package/projects/component-library/lib/organisms/merge-contacts-modal/merge-contacts-modal.model.d.ts +15 -1
|
@@ -5,9 +5,10 @@ export declare class InputRadioComponent {
|
|
|
5
5
|
name?: string;
|
|
6
6
|
label: string;
|
|
7
7
|
isRequired: boolean;
|
|
8
|
+
radioID: string;
|
|
8
9
|
clicked: EventEmitter<any>;
|
|
9
10
|
constructor();
|
|
10
11
|
onClick(): void;
|
|
11
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputRadioComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputRadioComponent, "symphony-input-radio", never, { "isActive": "isActive"; "name": "name"; "label": "label"; "isRequired": "isRequired"; }, { "clicked": "clicked"; }, never, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputRadioComponent, "symphony-input-radio", never, { "isActive": "isActive"; "name": "name"; "label": "label"; "isRequired": "isRequired"; "radioID": "radioID"; }, { "clicked": "clicked"; }, never, never>;
|
|
13
14
|
}
|
|
@@ -1,8 +1,22 @@
|
|
|
1
|
+
export interface MergeContactCriterion {
|
|
2
|
+
/**
|
|
3
|
+
* Display value for the criterion (e.g. phone number or zip code).
|
|
4
|
+
*/
|
|
5
|
+
value: string;
|
|
6
|
+
/**
|
|
7
|
+
* Optional icon class representing the criterion type.
|
|
8
|
+
*/
|
|
9
|
+
iconClass?: string;
|
|
10
|
+
}
|
|
1
11
|
export interface MergeContactDetail {
|
|
2
12
|
id: string;
|
|
3
13
|
name: string;
|
|
4
14
|
email: string;
|
|
5
|
-
|
|
15
|
+
atsId?: string;
|
|
16
|
+
/**
|
|
17
|
+
* Additional criteria to display for the contact.
|
|
18
|
+
*/
|
|
19
|
+
criteria: MergeContactCriterion[];
|
|
6
20
|
}
|
|
7
21
|
export interface MergeContactSuggestion extends MergeContactDetail {
|
|
8
22
|
statuses: string[];
|
package/package.json
CHANGED
|
@@ -5,9 +5,10 @@ export declare class InputRadioComponent {
|
|
|
5
5
|
name?: string;
|
|
6
6
|
label: string;
|
|
7
7
|
isRequired: boolean;
|
|
8
|
+
radioID: string;
|
|
8
9
|
clicked: EventEmitter<any>;
|
|
9
10
|
constructor();
|
|
10
11
|
onClick(): void;
|
|
11
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputRadioComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputRadioComponent, "symphony-input-radio", never, { "isActive": "isActive"; "name": "name"; "label": "label"; "isRequired": "isRequired"; }, { "clicked": "clicked"; }, never, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputRadioComponent, "symphony-input-radio", never, { "isActive": "isActive"; "name": "name"; "label": "label"; "isRequired": "isRequired"; "radioID": "radioID"; }, { "clicked": "clicked"; }, never, never>;
|
|
13
14
|
}
|
|
@@ -1,8 +1,22 @@
|
|
|
1
|
+
export interface MergeContactCriterion {
|
|
2
|
+
/**
|
|
3
|
+
* Display value for the criterion (e.g. phone number or zip code).
|
|
4
|
+
*/
|
|
5
|
+
value: string;
|
|
6
|
+
/**
|
|
7
|
+
* Optional icon class representing the criterion type.
|
|
8
|
+
*/
|
|
9
|
+
iconClass?: string;
|
|
10
|
+
}
|
|
1
11
|
export interface MergeContactDetail {
|
|
2
12
|
id: string;
|
|
3
13
|
name: string;
|
|
4
14
|
email: string;
|
|
5
|
-
|
|
15
|
+
atsId?: string;
|
|
16
|
+
/**
|
|
17
|
+
* Additional criteria to display for the contact.
|
|
18
|
+
*/
|
|
19
|
+
criteria: MergeContactCriterion[];
|
|
6
20
|
}
|
|
7
21
|
export interface MergeContactSuggestion extends MergeContactDetail {
|
|
8
22
|
statuses: string[];
|