@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
|
@@ -2836,6 +2836,55 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
2836
2836
|
}]
|
|
2837
2837
|
}] });
|
|
2838
2838
|
|
|
2839
|
+
class FeedbackDetailHeaderComponent {
|
|
2840
|
+
constructor() {
|
|
2841
|
+
this.previewClicked = new EventEmitter();
|
|
2842
|
+
}
|
|
2843
|
+
onClick() {
|
|
2844
|
+
this.previewClicked.emit('clicked');
|
|
2845
|
+
}
|
|
2846
|
+
}
|
|
2847
|
+
FeedbackDetailHeaderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackDetailHeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2848
|
+
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 });
|
|
2849
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackDetailHeaderComponent, decorators: [{
|
|
2850
|
+
type: Component,
|
|
2851
|
+
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"] }]
|
|
2852
|
+
}], ctorParameters: function () { return []; }, propDecorators: { model: [{
|
|
2853
|
+
type: Input
|
|
2854
|
+
}], previewClicked: [{
|
|
2855
|
+
type: Output
|
|
2856
|
+
}] } });
|
|
2857
|
+
|
|
2858
|
+
class FeedbackDetailHeaderModule {
|
|
2859
|
+
}
|
|
2860
|
+
FeedbackDetailHeaderModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackDetailHeaderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2861
|
+
FeedbackDetailHeaderModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackDetailHeaderModule, declarations: [FeedbackDetailHeaderComponent], imports: [CommonModule,
|
|
2862
|
+
H3Module,
|
|
2863
|
+
IconModule,
|
|
2864
|
+
IconWrapperModule,
|
|
2865
|
+
ButtonModule], exports: [FeedbackDetailHeaderComponent] });
|
|
2866
|
+
FeedbackDetailHeaderModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackDetailHeaderModule, imports: [[
|
|
2867
|
+
CommonModule,
|
|
2868
|
+
H3Module,
|
|
2869
|
+
IconModule,
|
|
2870
|
+
IconWrapperModule,
|
|
2871
|
+
ButtonModule
|
|
2872
|
+
]] });
|
|
2873
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: FeedbackDetailHeaderModule, decorators: [{
|
|
2874
|
+
type: NgModule,
|
|
2875
|
+
args: [{
|
|
2876
|
+
declarations: [FeedbackDetailHeaderComponent],
|
|
2877
|
+
imports: [
|
|
2878
|
+
CommonModule,
|
|
2879
|
+
H3Module,
|
|
2880
|
+
IconModule,
|
|
2881
|
+
IconWrapperModule,
|
|
2882
|
+
ButtonModule
|
|
2883
|
+
],
|
|
2884
|
+
exports: [FeedbackDetailHeaderComponent]
|
|
2885
|
+
}]
|
|
2886
|
+
}] });
|
|
2887
|
+
|
|
2839
2888
|
class OrganismsModule {
|
|
2840
2889
|
}
|
|
2841
2890
|
OrganismsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: OrganismsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
@@ -2846,7 +2895,8 @@ OrganismsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version
|
|
|
2846
2895
|
IconExplorerModule,
|
|
2847
2896
|
CardListModule,
|
|
2848
2897
|
CancelModalModule,
|
|
2849
|
-
FeedbackCardListModule
|
|
2898
|
+
FeedbackCardListModule,
|
|
2899
|
+
FeedbackDetailHeaderModule] });
|
|
2850
2900
|
OrganismsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: OrganismsModule, imports: [[
|
|
2851
2901
|
CommonModule,
|
|
2852
2902
|
NoteListModule,
|
|
@@ -2855,7 +2905,8 @@ OrganismsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version
|
|
|
2855
2905
|
IconExplorerModule,
|
|
2856
2906
|
CardListModule,
|
|
2857
2907
|
CancelModalModule,
|
|
2858
|
-
FeedbackCardListModule
|
|
2908
|
+
FeedbackCardListModule,
|
|
2909
|
+
FeedbackDetailHeaderModule
|
|
2859
2910
|
]] });
|
|
2860
2911
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: OrganismsModule, decorators: [{
|
|
2861
2912
|
type: NgModule,
|
|
@@ -2869,7 +2920,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
2869
2920
|
IconExplorerModule,
|
|
2870
2921
|
CardListModule,
|
|
2871
2922
|
CancelModalModule,
|
|
2872
|
-
FeedbackCardListModule
|
|
2923
|
+
FeedbackCardListModule,
|
|
2924
|
+
FeedbackDetailHeaderModule
|
|
2873
2925
|
]
|
|
2874
2926
|
}]
|
|
2875
2927
|
}] });
|