@symphony-talent/component-library 3.13.0 → 3.14.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/organisms/feedback-detail-header/feedback-detail-header.component.mjs +26 -0
- package/esm2020/lib/organisms/feedback-detail-header/feedback-detail-header.model.mjs +2 -0
- package/esm2020/lib/organisms/feedback-detail-header/feedback-detail-header.module.mjs +38 -0
- package/esm2020/lib/organisms/organisms.module.mjs +8 -4
- package/esm2020/projects/component-library/lib/organisms/feedback-detail-header/feedback-detail-header.component.mjs +26 -0
- package/esm2020/projects/component-library/lib/organisms/feedback-detail-header/feedback-detail-header.model.mjs +2 -0
- package/esm2020/projects/component-library/lib/organisms/feedback-detail-header/feedback-detail-header.module.mjs +38 -0
- package/esm2020/projects/component-library/lib/organisms/organisms.module.mjs +8 -4
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +55 -3
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2015/symphony-talent-component-library.mjs +55 -3
- package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +55 -3
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library.mjs +55 -3
- package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
- package/lib/organisms/feedback-detail-header/feedback-detail-header.component.d.ts +11 -0
- package/lib/organisms/feedback-detail-header/feedback-detail-header.model.d.ts +6 -0
- package/lib/organisms/feedback-detail-header/feedback-detail-header.module.d.ts +12 -0
- package/lib/organisms/organisms.module.d.ts +2 -1
- package/package.json +1 -1
- package/projects/component-library/lib/organisms/feedback-detail-header/feedback-detail-header.component.d.ts +11 -0
- package/projects/component-library/lib/organisms/feedback-detail-header/feedback-detail-header.model.d.ts +6 -0
- package/projects/component-library/lib/organisms/feedback-detail-header/feedback-detail-header.module.d.ts +12 -0
- package/projects/component-library/lib/organisms/organisms.module.d.ts +2 -1
|
@@ -2838,6 +2838,55 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
2838
2838
|
}]
|
|
2839
2839
|
}] });
|
|
2840
2840
|
|
|
2841
|
+
class FeedbackDetailHeaderComponent {
|
|
2842
|
+
constructor() {
|
|
2843
|
+
this.previewClicked = new EventEmitter();
|
|
2844
|
+
}
|
|
2845
|
+
onClick() {
|
|
2846
|
+
this.previewClicked.emit('clicked');
|
|
2847
|
+
}
|
|
2848
|
+
}
|
|
2849
|
+
FeedbackDetailHeaderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackDetailHeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2850
|
+
FeedbackDetailHeaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: FeedbackDetailHeaderComponent, selector: "symphony-feedback-detail-header", inputs: { model: "model" }, outputs: { previewClicked: "previewClicked" }, ngImport: i0, template: "<div *ngIf=\"model\" class=\"sfx-d-inline-block sfx-mr-40\">\n <symphony-h3 [text]=\"model.name\"></symphony-h3>\n\n <ul class=\"candidate-details sfx-mt-10 sfx-mb-20 list-unstyled\">\n <li>{{ model.location }}</li>\n <li>{{ model.email }}</li>\n <li>{{ model.phone }}</li>\n </ul>\n</div>\n\n<div class=\"sfx-d-inline-block align-text-bottom\">\n <symphony-icon-wrapper (clicked)=\"onClick()\">\n <symphony-icon [icon]=\"'si-preview'\"></symphony-icon\n ></symphony-icon-wrapper>\n</div>\n\n<a href=\"#review\">\n <symphony-button\n sfx-button-secondary\n [text]=\"'Review'\"\n [isSecondary]=\"true\"\n class=\"sfx-d-none visible-xs-inline-block sfx-ml-20 align-text-bottom review-button\"\n >\n </symphony-button>\n</a>\n", styles: [".candidate-details li{display:inline-block}.candidate-details li:nth-child(2):before,.candidate-details li:nth-child(2):after{content:\"\\a\";width:5px;height:5px;border-radius:50%;background:#000;display:inline-block;margin:2px 6px}.align-text-bottom{vertical-align:text-bottom}.review-button .btn.btn-secondary{min-width:100px;height:40px;padding-left:25px;padding-right:25px}@media (max-width: 320px){.candidate-details li:nth-child(2):after{display:none}}\n"], components: [{ type: H3Component, selector: "symphony-h3", inputs: ["text", "isSecondary"] }, { type: IconWrapperComponent, selector: "symphony-icon-wrapper", inputs: ["isInverse"], outputs: ["clicked"] }, { type: IconComponent, selector: "symphony-icon", inputs: ["icon", "isSecondary", "size", "iconColor"], outputs: ["clicked"] }, { type: ButtonComponent, selector: "symphony-button", inputs: ["text", "disabled", "isSecondary", "isInverse"], outputs: ["clicked"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
2851
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackDetailHeaderComponent, decorators: [{
|
|
2852
|
+
type: Component,
|
|
2853
|
+
args: [{ selector: 'symphony-feedback-detail-header', encapsulation: ViewEncapsulation.None, template: "<div *ngIf=\"model\" class=\"sfx-d-inline-block sfx-mr-40\">\n <symphony-h3 [text]=\"model.name\"></symphony-h3>\n\n <ul class=\"candidate-details sfx-mt-10 sfx-mb-20 list-unstyled\">\n <li>{{ model.location }}</li>\n <li>{{ model.email }}</li>\n <li>{{ model.phone }}</li>\n </ul>\n</div>\n\n<div class=\"sfx-d-inline-block align-text-bottom\">\n <symphony-icon-wrapper (clicked)=\"onClick()\">\n <symphony-icon [icon]=\"'si-preview'\"></symphony-icon\n ></symphony-icon-wrapper>\n</div>\n\n<a href=\"#review\">\n <symphony-button\n sfx-button-secondary\n [text]=\"'Review'\"\n [isSecondary]=\"true\"\n class=\"sfx-d-none visible-xs-inline-block sfx-ml-20 align-text-bottom review-button\"\n >\n </symphony-button>\n</a>\n", styles: [".candidate-details li{display:inline-block}.candidate-details li:nth-child(2):before,.candidate-details li:nth-child(2):after{content:\"\\a\";width:5px;height:5px;border-radius:50%;background:#000;display:inline-block;margin:2px 6px}.align-text-bottom{vertical-align:text-bottom}.review-button .btn.btn-secondary{min-width:100px;height:40px;padding-left:25px;padding-right:25px}@media (max-width: 320px){.candidate-details li:nth-child(2):after{display:none}}\n"] }]
|
|
2854
|
+
}], ctorParameters: function () { return []; }, propDecorators: { model: [{
|
|
2855
|
+
type: Input
|
|
2856
|
+
}], previewClicked: [{
|
|
2857
|
+
type: Output
|
|
2858
|
+
}] } });
|
|
2859
|
+
|
|
2860
|
+
class FeedbackDetailHeaderModule {
|
|
2861
|
+
}
|
|
2862
|
+
FeedbackDetailHeaderModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackDetailHeaderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2863
|
+
FeedbackDetailHeaderModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackDetailHeaderModule, declarations: [FeedbackDetailHeaderComponent], imports: [CommonModule,
|
|
2864
|
+
H3Module,
|
|
2865
|
+
IconModule,
|
|
2866
|
+
IconWrapperModule,
|
|
2867
|
+
ButtonModule], exports: [FeedbackDetailHeaderComponent] });
|
|
2868
|
+
FeedbackDetailHeaderModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackDetailHeaderModule, imports: [[
|
|
2869
|
+
CommonModule,
|
|
2870
|
+
H3Module,
|
|
2871
|
+
IconModule,
|
|
2872
|
+
IconWrapperModule,
|
|
2873
|
+
ButtonModule
|
|
2874
|
+
]] });
|
|
2875
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackDetailHeaderModule, decorators: [{
|
|
2876
|
+
type: NgModule,
|
|
2877
|
+
args: [{
|
|
2878
|
+
declarations: [FeedbackDetailHeaderComponent],
|
|
2879
|
+
imports: [
|
|
2880
|
+
CommonModule,
|
|
2881
|
+
H3Module,
|
|
2882
|
+
IconModule,
|
|
2883
|
+
IconWrapperModule,
|
|
2884
|
+
ButtonModule
|
|
2885
|
+
],
|
|
2886
|
+
exports: [FeedbackDetailHeaderComponent]
|
|
2887
|
+
}]
|
|
2888
|
+
}] });
|
|
2889
|
+
|
|
2841
2890
|
class OrganismsModule {
|
|
2842
2891
|
}
|
|
2843
2892
|
OrganismsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: OrganismsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
@@ -2848,7 +2897,8 @@ OrganismsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version
|
|
|
2848
2897
|
IconExplorerModule,
|
|
2849
2898
|
CardListModule,
|
|
2850
2899
|
CancelModalModule,
|
|
2851
|
-
FeedbackCardListModule
|
|
2900
|
+
FeedbackCardListModule,
|
|
2901
|
+
FeedbackDetailHeaderModule] });
|
|
2852
2902
|
OrganismsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: OrganismsModule, imports: [[
|
|
2853
2903
|
CommonModule,
|
|
2854
2904
|
NoteListModule,
|
|
@@ -2857,7 +2907,8 @@ OrganismsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version
|
|
|
2857
2907
|
IconExplorerModule,
|
|
2858
2908
|
CardListModule,
|
|
2859
2909
|
CancelModalModule,
|
|
2860
|
-
FeedbackCardListModule
|
|
2910
|
+
FeedbackCardListModule,
|
|
2911
|
+
FeedbackDetailHeaderModule
|
|
2861
2912
|
]] });
|
|
2862
2913
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: OrganismsModule, decorators: [{
|
|
2863
2914
|
type: NgModule,
|
|
@@ -2871,7 +2922,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
2871
2922
|
IconExplorerModule,
|
|
2872
2923
|
CardListModule,
|
|
2873
2924
|
CancelModalModule,
|
|
2874
|
-
FeedbackCardListModule
|
|
2925
|
+
FeedbackCardListModule,
|
|
2926
|
+
FeedbackDetailHeaderModule
|
|
2875
2927
|
]
|
|
2876
2928
|
}]
|
|
2877
2929
|
}] });
|