@dev-tcloud/tcloud-ui 0.0.82 → 0.0.83
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/_modules/tcloud-ui-welcome/tcloud-ui-welcome.component.mjs +9 -3
- package/fesm2015/dev-tcloud-tcloud-ui.mjs +8 -2
- package/fesm2015/dev-tcloud-tcloud-ui.mjs.map +1 -1
- package/fesm2020/dev-tcloud-tcloud-ui.mjs +8 -2
- package/fesm2020/dev-tcloud-tcloud-ui.mjs.map +1 -1
- package/lib/_modules/tcloud-ui-welcome/tcloud-ui-welcome.component.d.ts +3 -1
- package/package.json +1 -1
|
@@ -6,20 +6,26 @@ export class TCloudUiWelcomeComponent {
|
|
|
6
6
|
this.imgSrc = '';
|
|
7
7
|
this.title = '';
|
|
8
8
|
this.description = '';
|
|
9
|
+
this.size = 'small';
|
|
10
|
+
this.font = 'normal';
|
|
9
11
|
}
|
|
10
12
|
ngOnInit() {
|
|
11
13
|
}
|
|
12
14
|
}
|
|
13
15
|
TCloudUiWelcomeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: TCloudUiWelcomeComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
14
|
-
TCloudUiWelcomeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: TCloudUiWelcomeComponent, selector: "tcloud-ui-welcome", inputs: { imgSrc: "imgSrc", title: "title", description: "description" }, ngImport: i0, template: "<div class=\"tcloud-ui-welcome\">\n <div class=\"row\">\n\n <div class=\"col-md-5 text-center\" *ngIf=\"imgSrc !== ''\" >\n <img class=\"containt-img\" src=\"{{ imgSrc }}\">\n </div>\n\n <div class=\"{{ (imgSrc === '') ? 'col-md-12' : 'col-md-7' }} text-center\">\n <div class=\"info-new-window\">\n\n <h2 *ngIf=\"title !== ''\" [innerHTML]=\"title\" ></h2>\n \n <div *ngIf=\"description !== ''\" [innerHTML]=\"description\"></div>\n \n <div class=\"mt-5 text-center\">\n <ng-content></ng-content>\n </div>\n \n </div>\n </div>\n </div>\n</div>", styles: [".containt-img{text-align:center;width:100%;max-width:540px;max-height:345px}.info-new-window{position:relative;top:50%;transform:translateY(-50%)}.top-info{font-size:15px}h2{color:var(--tc-primary)}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
16
|
+
TCloudUiWelcomeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: TCloudUiWelcomeComponent, selector: "tcloud-ui-welcome", inputs: { imgSrc: "imgSrc", title: "title", description: "description", size: "size", font: "font" }, ngImport: i0, template: "<div class=\"tcloud-ui-welcome\">\n <div class=\"row\">\n\n <div class=\"col-md-5 text-center\" *ngIf=\"imgSrc !== ''\" >\n <img class=\"containt-img-{{ size }}\" src=\"{{ imgSrc }}\">\n </div>\n\n <div class=\"{{ (imgSrc === '') ? 'col-md-12' : 'col-md-7' }} text-center\">\n <div class=\"info-new-window\">\n\n <h2 *ngIf=\"title !== ''\" [innerHTML]=\"title\" ></h2>\n \n <div class=\"info-{{ font }}\" *ngIf=\"description !== ''\" [innerHTML]=\"description\"></div>\n \n <div class=\"mt-5 text-center\">\n <ng-content></ng-content>\n </div>\n \n </div>\n </div>\n </div>\n</div>", styles: [".containt-img-small{text-align:center;width:100%;max-width:370px;max-height:310px;padding:10px}.containt-img-normal{text-align:center;width:100%;max-width:540px;max-height:345px;padding:10px}.containt-img-big{text-align:center;width:100%;max-width:640px;max-height:425px;padding:10px}.info-new-window{position:relative;top:50%;transform:translateY(-50%)}.info-small{font-size:.7rem}.info-normal{font-size:.8rem}.info-big{font-size:1rem}.top-info{font-size:15px}h2{color:var(--tc-primary)}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
15
17
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: TCloudUiWelcomeComponent, decorators: [{
|
|
16
18
|
type: Component,
|
|
17
|
-
args: [{ selector: 'tcloud-ui-welcome', template: "<div class=\"tcloud-ui-welcome\">\n <div class=\"row\">\n\n <div class=\"col-md-5 text-center\" *ngIf=\"imgSrc !== ''\" >\n <img class=\"containt-img\" src=\"{{ imgSrc }}\">\n </div>\n\n <div class=\"{{ (imgSrc === '') ? 'col-md-12' : 'col-md-7' }} text-center\">\n <div class=\"info-new-window\">\n\n <h2 *ngIf=\"title !== ''\" [innerHTML]=\"title\" ></h2>\n \n <div *ngIf=\"description !== ''\" [innerHTML]=\"description\"></div>\n \n <div class=\"mt-5 text-center\">\n <ng-content></ng-content>\n </div>\n \n </div>\n </div>\n </div>\n</div>", styles: [".containt-img{text-align:center;width:100%;max-width:540px;max-height:345px}.info-new-window{position:relative;top:50%;transform:translateY(-50%)}.top-info{font-size:15px}h2{color:var(--tc-primary)}\n"] }]
|
|
19
|
+
args: [{ selector: 'tcloud-ui-welcome', template: "<div class=\"tcloud-ui-welcome\">\n <div class=\"row\">\n\n <div class=\"col-md-5 text-center\" *ngIf=\"imgSrc !== ''\" >\n <img class=\"containt-img-{{ size }}\" src=\"{{ imgSrc }}\">\n </div>\n\n <div class=\"{{ (imgSrc === '') ? 'col-md-12' : 'col-md-7' }} text-center\">\n <div class=\"info-new-window\">\n\n <h2 *ngIf=\"title !== ''\" [innerHTML]=\"title\" ></h2>\n \n <div class=\"info-{{ font }}\" *ngIf=\"description !== ''\" [innerHTML]=\"description\"></div>\n \n <div class=\"mt-5 text-center\">\n <ng-content></ng-content>\n </div>\n \n </div>\n </div>\n </div>\n</div>", styles: [".containt-img-small{text-align:center;width:100%;max-width:370px;max-height:310px;padding:10px}.containt-img-normal{text-align:center;width:100%;max-width:540px;max-height:345px;padding:10px}.containt-img-big{text-align:center;width:100%;max-width:640px;max-height:425px;padding:10px}.info-new-window{position:relative;top:50%;transform:translateY(-50%)}.info-small{font-size:.7rem}.info-normal{font-size:.8rem}.info-big{font-size:1rem}.top-info{font-size:15px}h2{color:var(--tc-primary)}\n"] }]
|
|
18
20
|
}], ctorParameters: function () { return []; }, propDecorators: { imgSrc: [{
|
|
19
21
|
type: Input
|
|
20
22
|
}], title: [{
|
|
21
23
|
type: Input
|
|
22
24
|
}], description: [{
|
|
23
25
|
type: Input
|
|
26
|
+
}], size: [{
|
|
27
|
+
type: Input
|
|
28
|
+
}], font: [{
|
|
29
|
+
type: Input
|
|
24
30
|
}] } });
|
|
25
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
31
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGNsb3VkLXVpLXdlbGNvbWUuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdGNsb3VkLXVpL3NyYy9saWIvX21vZHVsZXMvdGNsb3VkLXVpLXdlbGNvbWUvdGNsb3VkLXVpLXdlbGNvbWUuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdGNsb3VkLXVpL3NyYy9saWIvX21vZHVsZXMvdGNsb3VkLXVpLXdlbGNvbWUvdGNsb3VkLXVpLXdlbGNvbWUuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQVUsTUFBTSxlQUFlLENBQUM7OztBQU96RCxNQUFNLE9BQU8sd0JBQXdCO0lBU25DO1FBUFMsV0FBTSxHQUFXLEVBQUUsQ0FBQztRQUNwQixVQUFLLEdBQVcsRUFBRSxDQUFDO1FBQ25CLGdCQUFXLEdBQVcsRUFBRSxDQUFDO1FBQ3pCLFNBQUksR0FBMkIsT0FBTyxDQUFDO1FBQ3ZDLFNBQUksR0FBMkIsUUFBUSxDQUFDO0lBR2pDLENBQUM7SUFFakIsUUFBUTtJQUNSLENBQUM7O3NIQVpVLHdCQUF3QjswR0FBeEIsd0JBQXdCLCtKQ1ByQyxzdEJBcUJNOzRGRGRPLHdCQUF3QjtrQkFMcEMsU0FBUzsrQkFDRSxtQkFBbUI7MEVBTXBCLE1BQU07c0JBQWQsS0FBSztnQkFDRyxLQUFLO3NCQUFiLEtBQUs7Z0JBQ0csV0FBVztzQkFBbkIsS0FBSztnQkFDRyxJQUFJO3NCQUFaLEtBQUs7Z0JBQ0csSUFBSTtzQkFBWixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBJbnB1dCwgT25Jbml0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ3RjbG91ZC11aS13ZWxjb21lJyxcbiAgdGVtcGxhdGVVcmw6ICcuL3RjbG91ZC11aS13ZWxjb21lLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vdGNsb3VkLXVpLXdlbGNvbWUuY29tcG9uZW50LnNjc3MnXVxufSlcbmV4cG9ydCBjbGFzcyBUQ2xvdWRVaVdlbGNvbWVDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xuXG4gIEBJbnB1dCgpIGltZ1NyYzogc3RyaW5nID0gJyc7XG4gIEBJbnB1dCgpIHRpdGxlOiBzdHJpbmcgPSAnJzsgXG4gIEBJbnB1dCgpIGRlc2NyaXB0aW9uOiBzdHJpbmcgPSAnJzsgXG4gIEBJbnB1dCgpIHNpemU6ICdzbWFsbCd8J25vcm1hbCd8J2JpZycgPSAnc21hbGwnO1xuICBASW5wdXQoKSBmb250OiAnc21hbGwnfCdub3JtYWwnfCdiaWcnID0gJ25vcm1hbCc7XG5cblxuICBjb25zdHJ1Y3RvcigpIHsgfVxuXG4gIG5nT25Jbml0KCk6IHZvaWQge1xuICB9XG5cbn1cbiIsIjxkaXYgY2xhc3M9XCJ0Y2xvdWQtdWktd2VsY29tZVwiPlxuICAgIDxkaXYgY2xhc3M9XCJyb3dcIj5cblxuICAgICAgICA8ZGl2IGNsYXNzPVwiY29sLW1kLTUgdGV4dC1jZW50ZXJcIiAqbmdJZj1cImltZ1NyYyAhPT0gJydcIiA+XG4gICAgICAgICAgICA8aW1nIGNsYXNzPVwiY29udGFpbnQtaW1nLXt7IHNpemUgfX1cIiBzcmM9XCJ7eyBpbWdTcmMgfX1cIj5cbiAgICAgICAgPC9kaXY+XG5cbiAgICAgICAgPGRpdiBjbGFzcz1cInt7IChpbWdTcmMgPT09ICcnKSA/ICdjb2wtbWQtMTInIDogJ2NvbC1tZC03JyB9fSB0ZXh0LWNlbnRlclwiPlxuICAgICAgICA8ZGl2IGNsYXNzPVwiaW5mby1uZXctd2luZG93XCI+XG5cbiAgICAgICAgICAgIDxoMiAqbmdJZj1cInRpdGxlICE9PSAnJ1wiIFtpbm5lckhUTUxdPVwidGl0bGVcIiA+PC9oMj5cbiAgICAgICAgICAgIFxuICAgICAgICAgICAgPGRpdiBjbGFzcz1cImluZm8te3sgZm9udCB9fVwiICpuZ0lmPVwiZGVzY3JpcHRpb24gIT09ICcnXCIgW2lubmVySFRNTF09XCJkZXNjcmlwdGlvblwiPjwvZGl2PlxuICAgICAgICAgICAgXG4gICAgICAgICAgICA8ZGl2IGNsYXNzPVwibXQtNSB0ZXh0LWNlbnRlclwiPlxuICAgICAgICAgICAgICAgIDxuZy1jb250ZW50PjwvbmctY29udGVudD5cbiAgICAgICAgICAgIDwvZGl2PlxuICAgIFxuICAgICAgICA8L2Rpdj5cbiAgICAgICAgPC9kaXY+XG4gICAgPC9kaXY+XG48L2Rpdj4iXX0=
|
|
@@ -4939,21 +4939,27 @@ class TCloudUiWelcomeComponent {
|
|
|
4939
4939
|
this.imgSrc = '';
|
|
4940
4940
|
this.title = '';
|
|
4941
4941
|
this.description = '';
|
|
4942
|
+
this.size = 'small';
|
|
4943
|
+
this.font = 'normal';
|
|
4942
4944
|
}
|
|
4943
4945
|
ngOnInit() {
|
|
4944
4946
|
}
|
|
4945
4947
|
}
|
|
4946
4948
|
TCloudUiWelcomeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: TCloudUiWelcomeComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
4947
|
-
TCloudUiWelcomeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: TCloudUiWelcomeComponent, selector: "tcloud-ui-welcome", inputs: { imgSrc: "imgSrc", title: "title", description: "description" }, ngImport: i0, template: "<div class=\"tcloud-ui-welcome\">\n <div class=\"row\">\n\n <div class=\"col-md-5 text-center\" *ngIf=\"imgSrc !== ''\" >\n <img class=\"containt-img\" src=\"{{ imgSrc }}\">\n </div>\n\n <div class=\"{{ (imgSrc === '') ? 'col-md-12' : 'col-md-7' }} text-center\">\n <div class=\"info-new-window\">\n\n <h2 *ngIf=\"title !== ''\" [innerHTML]=\"title\" ></h2>\n \n <div *ngIf=\"description !== ''\" [innerHTML]=\"description\"></div>\n \n <div class=\"mt-5 text-center\">\n <ng-content></ng-content>\n </div>\n \n </div>\n </div>\n </div>\n</div>", styles: [".containt-img{text-align:center;width:100%;max-width:540px;max-height:345px}.info-new-window{position:relative;top:50%;transform:translateY(-50%)}.top-info{font-size:15px}h2{color:var(--tc-primary)}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
4949
|
+
TCloudUiWelcomeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: TCloudUiWelcomeComponent, selector: "tcloud-ui-welcome", inputs: { imgSrc: "imgSrc", title: "title", description: "description", size: "size", font: "font" }, ngImport: i0, template: "<div class=\"tcloud-ui-welcome\">\n <div class=\"row\">\n\n <div class=\"col-md-5 text-center\" *ngIf=\"imgSrc !== ''\" >\n <img class=\"containt-img-{{ size }}\" src=\"{{ imgSrc }}\">\n </div>\n\n <div class=\"{{ (imgSrc === '') ? 'col-md-12' : 'col-md-7' }} text-center\">\n <div class=\"info-new-window\">\n\n <h2 *ngIf=\"title !== ''\" [innerHTML]=\"title\" ></h2>\n \n <div class=\"info-{{ font }}\" *ngIf=\"description !== ''\" [innerHTML]=\"description\"></div>\n \n <div class=\"mt-5 text-center\">\n <ng-content></ng-content>\n </div>\n \n </div>\n </div>\n </div>\n</div>", styles: [".containt-img-small{text-align:center;width:100%;max-width:370px;max-height:310px;padding:10px}.containt-img-normal{text-align:center;width:100%;max-width:540px;max-height:345px;padding:10px}.containt-img-big{text-align:center;width:100%;max-width:640px;max-height:425px;padding:10px}.info-new-window{position:relative;top:50%;transform:translateY(-50%)}.info-small{font-size:.7rem}.info-normal{font-size:.8rem}.info-big{font-size:1rem}.top-info{font-size:15px}h2{color:var(--tc-primary)}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
4948
4950
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: TCloudUiWelcomeComponent, decorators: [{
|
|
4949
4951
|
type: Component,
|
|
4950
|
-
args: [{ selector: 'tcloud-ui-welcome', template: "<div class=\"tcloud-ui-welcome\">\n <div class=\"row\">\n\n <div class=\"col-md-5 text-center\" *ngIf=\"imgSrc !== ''\" >\n <img class=\"containt-img\" src=\"{{ imgSrc }}\">\n </div>\n\n <div class=\"{{ (imgSrc === '') ? 'col-md-12' : 'col-md-7' }} text-center\">\n <div class=\"info-new-window\">\n\n <h2 *ngIf=\"title !== ''\" [innerHTML]=\"title\" ></h2>\n \n <div *ngIf=\"description !== ''\" [innerHTML]=\"description\"></div>\n \n <div class=\"mt-5 text-center\">\n <ng-content></ng-content>\n </div>\n \n </div>\n </div>\n </div>\n</div>", styles: [".containt-img{text-align:center;width:100%;max-width:540px;max-height:345px}.info-new-window{position:relative;top:50%;transform:translateY(-50%)}.top-info{font-size:15px}h2{color:var(--tc-primary)}\n"] }]
|
|
4952
|
+
args: [{ selector: 'tcloud-ui-welcome', template: "<div class=\"tcloud-ui-welcome\">\n <div class=\"row\">\n\n <div class=\"col-md-5 text-center\" *ngIf=\"imgSrc !== ''\" >\n <img class=\"containt-img-{{ size }}\" src=\"{{ imgSrc }}\">\n </div>\n\n <div class=\"{{ (imgSrc === '') ? 'col-md-12' : 'col-md-7' }} text-center\">\n <div class=\"info-new-window\">\n\n <h2 *ngIf=\"title !== ''\" [innerHTML]=\"title\" ></h2>\n \n <div class=\"info-{{ font }}\" *ngIf=\"description !== ''\" [innerHTML]=\"description\"></div>\n \n <div class=\"mt-5 text-center\">\n <ng-content></ng-content>\n </div>\n \n </div>\n </div>\n </div>\n</div>", styles: [".containt-img-small{text-align:center;width:100%;max-width:370px;max-height:310px;padding:10px}.containt-img-normal{text-align:center;width:100%;max-width:540px;max-height:345px;padding:10px}.containt-img-big{text-align:center;width:100%;max-width:640px;max-height:425px;padding:10px}.info-new-window{position:relative;top:50%;transform:translateY(-50%)}.info-small{font-size:.7rem}.info-normal{font-size:.8rem}.info-big{font-size:1rem}.top-info{font-size:15px}h2{color:var(--tc-primary)}\n"] }]
|
|
4951
4953
|
}], ctorParameters: function () { return []; }, propDecorators: { imgSrc: [{
|
|
4952
4954
|
type: Input
|
|
4953
4955
|
}], title: [{
|
|
4954
4956
|
type: Input
|
|
4955
4957
|
}], description: [{
|
|
4956
4958
|
type: Input
|
|
4959
|
+
}], size: [{
|
|
4960
|
+
type: Input
|
|
4961
|
+
}], font: [{
|
|
4962
|
+
type: Input
|
|
4957
4963
|
}] } });
|
|
4958
4964
|
|
|
4959
4965
|
class TCloudUiWelcomeModule {
|