@symphony-talent/component-library 4.112.0 → 4.113.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/additional-information-card-list/additional-information-card-list.component.mjs +12 -5
- package/esm2020/projects/component-library/lib/organisms/additional-information-card-list/additional-information-card-list.component.mjs +12 -5
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +10 -3
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2015/symphony-talent-component-library.mjs +10 -3
- package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +10 -3
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library.mjs +10 -3
- package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
- package/lib/organisms/additional-information-card-list/additional-information-card-list.component.d.ts +4 -1
- package/package.json +1 -1
- package/projects/component-library/lib/organisms/additional-information-card-list/additional-information-card-list.component.d.ts +4 -1
|
@@ -4975,15 +4975,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
4975
4975
|
}] } });
|
|
4976
4976
|
|
|
4977
4977
|
class AdditionalInformationCardListComponent {
|
|
4978
|
-
constructor() {
|
|
4978
|
+
constructor() {
|
|
4979
|
+
this.cancelInterviewLinkClicked = new EventEmitter();
|
|
4980
|
+
}
|
|
4981
|
+
onCancelInterviewLinkClicked() {
|
|
4982
|
+
this.cancelInterviewLinkClicked.emit();
|
|
4983
|
+
}
|
|
4979
4984
|
}
|
|
4980
4985
|
AdditionalInformationCardListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdditionalInformationCardListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
4981
|
-
AdditionalInformationCardListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: AdditionalInformationCardListComponent, selector: "symphony-additional-information-card-list", inputs: { model: "model" }, ngImport: i0, template: "<section *ngIf=\"model\" class=\"sfx-pb-30 sfx-border-bottom-black-5\">\n <div class=\"sfx-mb-20\">\n <symphony-h4>{{ model.title }}</symphony-h4>\n </div>\n <ul\n *ngIf=\"!model.isLoading && model.additionalInformationList.length > 0\"\n class=\"list-unstyled sfx-mb-0 additional-information-list-section\"\n >\n <li *ngFor=\"let card of model.additionalInformationList\">\n <symphony-additional-information-card\n [additionalInformationModel]=\"card\"\n ></symphony-additional-information-card>\n </li>\n </ul>\n <div\n *ngIf=\"!model.isLoading && model.additionalInformationList.length === 0\"\n class=\"sfx-pt-40 sfx-pb-40 sfx-txt-center\"\n >\n {{ model.message }}\n </div>\n <div *ngIf=\"model.isLoading\" class=\"sfx-mt-80 sfx-mb-40\">\n <symphony-sfx-loader></symphony-sfx-loader>\n </div>\n</section>\n", styles: [".additional-information-list-section{max-height:320px;overflow-y:auto}li{border-bottom:1px solid #bababa}li:last-child{border-color:transparent}\n"], components: [{ type: H4Component, selector: "symphony-h4", inputs: ["text", "isSecondary"] }, { type: AdditionalInformationCardComponent, selector: "symphony-additional-information-card", inputs: ["additionalInformationModel"], outputs: ["cancelInterviewLinkClicked"] }, { type: SfxLoaderComponent, selector: "symphony-sfx-loader", inputs: ["leftStyle", "message", "hasCustomMessage"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
|
|
4986
|
+
AdditionalInformationCardListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: AdditionalInformationCardListComponent, selector: "symphony-additional-information-card-list", inputs: { model: "model" }, outputs: { cancelInterviewLinkClicked: "cancelInterviewLinkClicked" }, ngImport: i0, template: "<section *ngIf=\"model\" class=\"sfx-pb-30 sfx-border-bottom-black-5\">\n <div class=\"sfx-mb-20\">\n <symphony-h4>{{ model.title }}</symphony-h4>\n </div>\n <ul\n *ngIf=\"!model.isLoading && model.additionalInformationList.length > 0\"\n class=\"list-unstyled sfx-mb-0 additional-information-list-section\"\n >\n <li *ngFor=\"let card of model.additionalInformationList\">\n <symphony-additional-information-card\n [additionalInformationModel]=\"card\"\n (cancelInterviewLinkClicked)=\"onCancelInterviewLinkClicked()\"\n ></symphony-additional-information-card>\n </li>\n </ul>\n <div\n *ngIf=\"!model.isLoading && model.additionalInformationList.length === 0\"\n class=\"sfx-pt-40 sfx-pb-40 sfx-txt-center\"\n >\n {{ model.message }}\n </div>\n <div *ngIf=\"model.isLoading\" class=\"sfx-mt-80 sfx-mb-40\">\n <symphony-sfx-loader></symphony-sfx-loader>\n </div>\n</section>\n", styles: [".additional-information-list-section{max-height:320px;overflow-y:auto}li{border-bottom:1px solid #bababa}li:last-child{border-color:transparent}\n"], components: [{ type: H4Component, selector: "symphony-h4", inputs: ["text", "isSecondary"] }, { type: AdditionalInformationCardComponent, selector: "symphony-additional-information-card", inputs: ["additionalInformationModel"], outputs: ["cancelInterviewLinkClicked"] }, { type: SfxLoaderComponent, selector: "symphony-sfx-loader", inputs: ["leftStyle", "message", "hasCustomMessage"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
|
|
4982
4987
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdditionalInformationCardListComponent, decorators: [{
|
|
4983
4988
|
type: Component,
|
|
4984
|
-
args: [{ selector: 'symphony-additional-information-card-list', template: "<section *ngIf=\"model\" class=\"sfx-pb-30 sfx-border-bottom-black-5\">\n <div class=\"sfx-mb-20\">\n <symphony-h4>{{ model.title }}</symphony-h4>\n </div>\n <ul\n *ngIf=\"!model.isLoading && model.additionalInformationList.length > 0\"\n class=\"list-unstyled sfx-mb-0 additional-information-list-section\"\n >\n <li *ngFor=\"let card of model.additionalInformationList\">\n <symphony-additional-information-card\n [additionalInformationModel]=\"card\"\n ></symphony-additional-information-card>\n </li>\n </ul>\n <div\n *ngIf=\"!model.isLoading && model.additionalInformationList.length === 0\"\n class=\"sfx-pt-40 sfx-pb-40 sfx-txt-center\"\n >\n {{ model.message }}\n </div>\n <div *ngIf=\"model.isLoading\" class=\"sfx-mt-80 sfx-mb-40\">\n <symphony-sfx-loader></symphony-sfx-loader>\n </div>\n</section>\n", styles: [".additional-information-list-section{max-height:320px;overflow-y:auto}li{border-bottom:1px solid #bababa}li:last-child{border-color:transparent}\n"] }]
|
|
4989
|
+
args: [{ selector: 'symphony-additional-information-card-list', template: "<section *ngIf=\"model\" class=\"sfx-pb-30 sfx-border-bottom-black-5\">\n <div class=\"sfx-mb-20\">\n <symphony-h4>{{ model.title }}</symphony-h4>\n </div>\n <ul\n *ngIf=\"!model.isLoading && model.additionalInformationList.length > 0\"\n class=\"list-unstyled sfx-mb-0 additional-information-list-section\"\n >\n <li *ngFor=\"let card of model.additionalInformationList\">\n <symphony-additional-information-card\n [additionalInformationModel]=\"card\"\n (cancelInterviewLinkClicked)=\"onCancelInterviewLinkClicked()\"\n ></symphony-additional-information-card>\n </li>\n </ul>\n <div\n *ngIf=\"!model.isLoading && model.additionalInformationList.length === 0\"\n class=\"sfx-pt-40 sfx-pb-40 sfx-txt-center\"\n >\n {{ model.message }}\n </div>\n <div *ngIf=\"model.isLoading\" class=\"sfx-mt-80 sfx-mb-40\">\n <symphony-sfx-loader></symphony-sfx-loader>\n </div>\n</section>\n", styles: [".additional-information-list-section{max-height:320px;overflow-y:auto}li{border-bottom:1px solid #bababa}li:last-child{border-color:transparent}\n"] }]
|
|
4985
4990
|
}], ctorParameters: function () { return []; }, propDecorators: { model: [{
|
|
4986
4991
|
type: Input
|
|
4992
|
+
}], cancelInterviewLinkClicked: [{
|
|
4993
|
+
type: Output
|
|
4987
4994
|
}] } });
|
|
4988
4995
|
|
|
4989
4996
|
class AdditionalInformationCardModule {
|