@symphony-talent/component-library 4.61.0 → 4.62.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 +3 -3
- package/esm2020/projects/component-library/lib/organisms/additional-information-card-list/additional-information-card-list.component.mjs +3 -3
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +2 -2
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2015/symphony-talent-component-library.mjs +2 -2
- package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +2 -2
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library.mjs +2 -2
- package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -4575,10 +4575,10 @@ class AdditionalInformationCardListComponent {
|
|
|
4575
4575
|
constructor() { }
|
|
4576
4576
|
}
|
|
4577
4577
|
AdditionalInformationCardListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdditionalInformationCardListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
4578
|
-
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
|
|
4578
|
+
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"] }, { 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"] }] });
|
|
4579
4579
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: AdditionalInformationCardListComponent, decorators: [{
|
|
4580
4580
|
type: Component,
|
|
4581
|
-
args: [{ selector: 'symphony-additional-information-card-list', template: "<section *ngIf=\"model\" class=\"sfx-pb-30 sfx-border-bottom-black-5
|
|
4581
|
+
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"] }]
|
|
4582
4582
|
}], ctorParameters: function () { return []; }, propDecorators: { model: [{
|
|
4583
4583
|
type: Input
|
|
4584
4584
|
}] } });
|