@lowcodeunit/applications-flow-common 1.33.143-lets-get-social-ish → 1.33.147-lets-get-social-ish
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/bundles/lowcodeunit-applications-flow-common.umd.js +5 -4
- package/bundles/lowcodeunit-applications-flow-common.umd.js.map +1 -1
- package/bundles/lowcodeunit-applications-flow-common.umd.min.js +1 -1
- package/bundles/lowcodeunit-applications-flow-common.umd.min.js.map +1 -1
- package/esm2015/lib/elements/project-info-card/project-info-card.component.js +6 -5
- package/fesm2015/lowcodeunit-applications-flow-common.js +5 -4
- package/fesm2015/lowcodeunit-applications-flow-common.js.map +1 -1
- package/lib/elements/project-info-card/project-info-card.component.d.ts.map +1 -1
- package/lowcodeunit-applications-flow-common.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -5,8 +5,9 @@ export class ProjectInfoCardComponent {
|
|
|
5
5
|
this.RightClickEvent = new EventEmitter();
|
|
6
6
|
}
|
|
7
7
|
ngOnInit() {
|
|
8
|
-
console.log("loading = ", this.Loading)
|
|
9
|
-
console.log("is shareable: ", this.IsShareable);
|
|
8
|
+
// console.log("loading = ", this.Loading)
|
|
9
|
+
// console.log("is shareable: ", this.IsShareable);
|
|
10
|
+
// console.log("is editable: ", this.IsEditable);
|
|
10
11
|
}
|
|
11
12
|
LeftIconClicked() {
|
|
12
13
|
this.LeftClickEvent.emit({});
|
|
@@ -19,8 +20,8 @@ export class ProjectInfoCardComponent {
|
|
|
19
20
|
ProjectInfoCardComponent.decorators = [
|
|
20
21
|
{ type: Component, args: [{
|
|
21
22
|
selector: 'lcu-project-info-card',
|
|
22
|
-
template: "<mat-card class=\"project-info-card\">\n\n <lcu-loader [loading]=\"Loading\"></lcu-loader>\n\n<ng-container *ngIf=\"!Loading\">\n\n <div class=\"header-img-container\" fxLayout=\"row\" >\n <div class=\"round-project-img\" fxLayoutAlign=\"center center\">\n <mat-icon *ngIf=\"!Image\" class=\"temp-icon\">flutter_dash</mat-icon>\n <img *ngIf=\"Image\" [src]=\"Image\" [alt]=\"Name\" style=\"width:75px; height:75px\">\n </div>\n </div>\n\n <div class=\"icon-btn-container\" fxLayout=\"row\" fxLayoutAlign=\"space-between center\" >\n <button *ngIf=\"IsEditable
|
|
23
|
-
styles: [".project-info-card{margin:20px;padding:0}.round-project-img{background-color:#dfeff2;border:2px solid #fff;border-radius:40px;height:75px;margin-top:20px;text-align:center;width:75px}.temp-icon{font-size:50px;height:50px;width:50px}.icon-btn-container{margin:5px}.project-card-header{margin-top:50px;text-align:center}.host-anchor{color:#4a918e;text-decoration:none}.header-img-container{background-color:#a4bab3;border-radius:2px 2px 0 0;height:60px;justify-content:center;margin-right:-.5px;margin-top:-.5px!important}.project-card-name{font-size:17px;font-weight:600}.card-content-container{margin-bottom:0!important}.stats-container{border-top:1px solid #d3d3d3}mat-card-actions{margin-bottom:-1px!important;margin-left:0!important;margin-right:-.5px!important}.actions-container{padding:0!important}.info-card-btn{border-radius:0 0 2px 2px;border-top:1px solid #d3d3d3;width:100%}"]
|
|
23
|
+
template: "<mat-card class=\"project-info-card\">\n\n <lcu-loader [loading]=\"Loading\"></lcu-loader>\n\n<ng-container *ngIf=\"!Loading\">\n\n <div class=\"header-img-container\" fxLayout=\"row\" >\n <div class=\"round-project-img\" fxLayoutAlign=\"center center\">\n <mat-icon *ngIf=\"!Image\" class=\"temp-icon\">flutter_dash</mat-icon>\n <img *ngIf=\"Image\" [src]=\"Image\" [alt]=\"Name\" style=\"width:75px; height:75px\">\n </div>\n </div>\n\n <div class=\"icon-btn-container\" fxLayout=\"row\" fxLayoutAlign=\"space-between center\" >\n <button *ngIf=\"IsEditable\" mat-icon-button id=\"left-icon\" (click)=\"LeftIconClicked()\">\n <mat-icon>edit</mat-icon>\n </button>\n <button *ngIf=\"IsShareable\" mat-icon-button id=\"right-icon\" (click)=\"RightIconClicked()\">\n <mat-icon>share</mat-icon>\n </button>\n </div>\n\n <mat-card-header class=\"project-card-header\" fxLayoutAlign=\"center center\">\n\n <mat-card-title class=\"project-card-name\" *ngIf=\"Name\">{{Name}}</mat-card-title>\n\n <mat-card-subtitle class=\"project-card-description\" *ngIf=\"Description\">{{Description}}</mat-card-subtitle>\n\n <mat-card-subtitle class=\"project-card-host\">\n <a class=\"host-anchor\" *ngIf=\"Subtext\" [href]=\"'https://'+Subtext\" target=\"_blank\">{{Subtext}}</a>\n </mat-card-subtitle>\n\n </mat-card-header>\n <mat-card-content class=\"card-content-container\">\n <div class=\"stats-container\">\n <ng-content select=\"[stats]\"></ng-content>\n </div>\n\n <div class=\"promo-container\">\n <ng-content select=\"[promo]\"></ng-content>\n </div>\n\n </mat-card-content>\n <mat-card-actions class=\"actions-container\">\n <ng-content select=\"[action]\"></ng-content>\n \n </mat-card-actions>\n </ng-container>\n </mat-card>\n \n",
|
|
24
|
+
styles: [".project-info-card{margin:32px 20px;padding:0}.round-project-img{background-color:#dfeff2;border:2px solid #fff;border-radius:40px;height:75px;margin-top:20px;text-align:center;width:75px}.temp-icon{font-size:50px;height:50px;width:50px}.icon-btn-container{margin:5px}.project-card-header{margin-top:50px;text-align:center}.host-anchor{color:#4a918e;text-decoration:none}.header-img-container{background-color:#a4bab3;border-radius:2px 2px 0 0;height:60px;justify-content:center;margin-right:-.5px;margin-top:-.5px!important}.project-card-name{font-size:17px;font-weight:600}.card-content-container{margin-bottom:0!important}.stats-container{border-top:1px solid #d3d3d3}mat-card-actions{margin-bottom:-1px!important;margin-left:0!important;margin-right:-.5px!important}.actions-container{padding:0!important}.info-card-btn{border-radius:0 0 2px 2px;border-top:1px solid #d3d3d3;width:100%}"]
|
|
24
25
|
},] }
|
|
25
26
|
];
|
|
26
27
|
ProjectInfoCardComponent.ctorParameters = () => [];
|
|
@@ -35,4 +36,4 @@ ProjectInfoCardComponent.propDecorators = {
|
|
|
35
36
|
LeftClickEvent: [{ type: Output, args: ['left-click-event',] }],
|
|
36
37
|
RightClickEvent: [{ type: Output, args: ['right-click-event',] }]
|
|
37
38
|
};
|
|
38
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
39
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJvamVjdC1pbmZvLWNhcmQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6Ii9ob21lL3J1bm5lci93b3JrL2FwcGxpY2F0aW9ucy1mbG93L2FwcGxpY2F0aW9ucy1mbG93L3Byb2plY3RzL2NvbW1vbi9zcmMvIiwic291cmNlcyI6WyJsaWIvZWxlbWVudHMvcHJvamVjdC1pbmZvLWNhcmQvcHJvamVjdC1pbmZvLWNhcmQuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsWUFBWSxFQUFFLEtBQUssRUFBVSxNQUFNLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFPL0UsTUFBTSxPQUFPLHdCQUF3QjtJQThCbkM7UUFDRSxJQUFJLENBQUMsY0FBYyxHQUFHLElBQUksWUFBWSxFQUFFLENBQUM7UUFFekMsSUFBSSxDQUFDLGVBQWUsR0FBRyxJQUFJLFlBQVksRUFBRSxDQUFDO0lBQzNDLENBQUM7SUFFSyxRQUFRO1FBQ2IsMENBQTBDO1FBQzFDLG1EQUFtRDtRQUNuRCxpREFBaUQ7SUFDbkQsQ0FBQztJQUlNLGVBQWU7UUFDcEIsSUFBSSxDQUFDLGNBQWMsQ0FBQyxJQUFJLENBQUMsRUFBRSxDQUFDLENBQUM7SUFDL0IsQ0FBQztJQUVNLGdCQUFnQjtRQUNyQixPQUFPLENBQUMsR0FBRyxDQUFDLGVBQWUsQ0FBQyxDQUFBO1FBQzVCLElBQUksQ0FBQyxlQUFlLENBQUMsSUFBSSxDQUFDLEVBQUUsQ0FBQyxDQUFDO0lBQ2hDLENBQUM7OztZQXhERixTQUFTLFNBQUM7Z0JBQ1QsUUFBUSxFQUFFLHVCQUF1QjtnQkFDakMsKzNEQUFpRDs7YUFFbEQ7Ozs7MEJBR0UsS0FBSyxTQUFDLGFBQWE7b0JBR25CLEtBQUssU0FBQyxPQUFPO3lCQUdiLEtBQUssU0FBQyxhQUFhOzBCQUduQixLQUFLLFNBQUMsY0FBYztzQkFHcEIsS0FBSyxTQUFDLFNBQVM7bUJBR2YsS0FBSyxTQUFDLE1BQU07c0JBR1osS0FBSyxTQUFDLFNBQVM7NkJBR2YsTUFBTSxTQUFDLGtCQUFrQjs4QkFHekIsTUFBTSxTQUFDLG1CQUFtQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgRXZlbnRFbWl0dGVyLCBJbnB1dCwgT25Jbml0LCBPdXRwdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnbGN1LXByb2plY3QtaW5mby1jYXJkJyxcbiAgdGVtcGxhdGVVcmw6ICcuL3Byb2plY3QtaW5mby1jYXJkLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vcHJvamVjdC1pbmZvLWNhcmQuY29tcG9uZW50LnNjc3MnXVxufSlcbmV4cG9ydCBjbGFzcyBQcm9qZWN0SW5mb0NhcmRDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xuICBcbiAgQElucHV0KCdkZXNjcmlwdGlvbicpXG4gIHB1YmxpYyBEZXNjcmlwdGlvbjogc3RyaW5nO1xuICBcbiAgQElucHV0KCdpbWFnZScpXG4gIHB1YmxpYyBJbWFnZTogc3RyaW5nO1xuXG4gIEBJbnB1dCgnaXMtZWRpdGFibGUnKVxuICBwdWJsaWMgSXNFZGl0YWJsZTogYm9vbGVhbjtcblxuICBASW5wdXQoJ2lzLXNoYXJlYWJsZScpXG4gIHB1YmxpYyBJc1NoYXJlYWJsZTogYm9vbGVhbjtcblxuICBASW5wdXQoJ2xvYWRpbmcnKVxuICBwdWJsaWMgTG9hZGluZzogYm9vbGVhbjtcblxuICBASW5wdXQoJ25hbWUnKVxuICBwdWJsaWMgTmFtZTogc3RyaW5nO1xuXG4gIEBJbnB1dCgnc3VidGV4dCcpXG4gIHB1YmxpYyBTdWJ0ZXh0OiBzdHJpbmc7XG5cbiAgQE91dHB1dCgnbGVmdC1jbGljay1ldmVudCcpXG4gIHB1YmxpYyBMZWZ0Q2xpY2tFdmVudDogRXZlbnRFbWl0dGVyPHt9PjtcblxuICBAT3V0cHV0KCdyaWdodC1jbGljay1ldmVudCcpXG4gIHB1YmxpYyBSaWdodENsaWNrRXZlbnQ6IEV2ZW50RW1pdHRlcjx7fT47XG5cblxuICBjb25zdHJ1Y3RvcigpIHtcbiAgICB0aGlzLkxlZnRDbGlja0V2ZW50ID0gbmV3IEV2ZW50RW1pdHRlcigpO1xuXG4gICAgdGhpcy5SaWdodENsaWNrRXZlbnQgPSBuZXcgRXZlbnRFbWl0dGVyKCk7XG4gICB9XG5cbiAgcHVibGljIG5nT25Jbml0KCk6IHZvaWQge1xuICAgIC8vIGNvbnNvbGUubG9nKFwibG9hZGluZyA9IFwiLCB0aGlzLkxvYWRpbmcpXG4gICAgLy8gY29uc29sZS5sb2coXCJpcyBzaGFyZWFibGU6IFwiLCB0aGlzLklzU2hhcmVhYmxlKTtcbiAgICAvLyBjb25zb2xlLmxvZyhcImlzIGVkaXRhYmxlOiBcIiwgdGhpcy5Jc0VkaXRhYmxlKTtcbiAgfVxuXG5cblxuICBwdWJsaWMgTGVmdEljb25DbGlja2VkKCl7XG4gICAgdGhpcy5MZWZ0Q2xpY2tFdmVudC5lbWl0KHt9KTtcbiAgfVxuXG4gIHB1YmxpYyBSaWdodEljb25DbGlja2VkKCl7XG4gICAgY29uc29sZS5sb2coXCJzaGFyZSBjbGlja2VkXCIpXG4gICAgdGhpcy5SaWdodENsaWNrRXZlbnQuZW1pdCh7fSk7XG4gIH1cblxufVxuIl19
|
|
@@ -3568,8 +3568,9 @@ class ProjectInfoCardComponent {
|
|
|
3568
3568
|
this.RightClickEvent = new EventEmitter();
|
|
3569
3569
|
}
|
|
3570
3570
|
ngOnInit() {
|
|
3571
|
-
console.log("loading = ", this.Loading)
|
|
3572
|
-
console.log("is shareable: ", this.IsShareable);
|
|
3571
|
+
// console.log("loading = ", this.Loading)
|
|
3572
|
+
// console.log("is shareable: ", this.IsShareable);
|
|
3573
|
+
// console.log("is editable: ", this.IsEditable);
|
|
3573
3574
|
}
|
|
3574
3575
|
LeftIconClicked() {
|
|
3575
3576
|
this.LeftClickEvent.emit({});
|
|
@@ -3582,8 +3583,8 @@ class ProjectInfoCardComponent {
|
|
|
3582
3583
|
ProjectInfoCardComponent.decorators = [
|
|
3583
3584
|
{ type: Component, args: [{
|
|
3584
3585
|
selector: 'lcu-project-info-card',
|
|
3585
|
-
template: "<mat-card class=\"project-info-card\">\n\n <lcu-loader [loading]=\"Loading\"></lcu-loader>\n\n<ng-container *ngIf=\"!Loading\">\n\n <div class=\"header-img-container\" fxLayout=\"row\" >\n <div class=\"round-project-img\" fxLayoutAlign=\"center center\">\n <mat-icon *ngIf=\"!Image\" class=\"temp-icon\">flutter_dash</mat-icon>\n <img *ngIf=\"Image\" [src]=\"Image\" [alt]=\"Name\" style=\"width:75px; height:75px\">\n </div>\n </div>\n\n <div class=\"icon-btn-container\" fxLayout=\"row\" fxLayoutAlign=\"space-between center\" >\n <button *ngIf=\"IsEditable
|
|
3586
|
-
styles: [".project-info-card{margin:20px;padding:0}.round-project-img{background-color:#dfeff2;border:2px solid #fff;border-radius:40px;height:75px;margin-top:20px;text-align:center;width:75px}.temp-icon{font-size:50px;height:50px;width:50px}.icon-btn-container{margin:5px}.project-card-header{margin-top:50px;text-align:center}.host-anchor{color:#4a918e;text-decoration:none}.header-img-container{background-color:#a4bab3;border-radius:2px 2px 0 0;height:60px;justify-content:center;margin-right:-.5px;margin-top:-.5px!important}.project-card-name{font-size:17px;font-weight:600}.card-content-container{margin-bottom:0!important}.stats-container{border-top:1px solid #d3d3d3}mat-card-actions{margin-bottom:-1px!important;margin-left:0!important;margin-right:-.5px!important}.actions-container{padding:0!important}.info-card-btn{border-radius:0 0 2px 2px;border-top:1px solid #d3d3d3;width:100%}"]
|
|
3586
|
+
template: "<mat-card class=\"project-info-card\">\n\n <lcu-loader [loading]=\"Loading\"></lcu-loader>\n\n<ng-container *ngIf=\"!Loading\">\n\n <div class=\"header-img-container\" fxLayout=\"row\" >\n <div class=\"round-project-img\" fxLayoutAlign=\"center center\">\n <mat-icon *ngIf=\"!Image\" class=\"temp-icon\">flutter_dash</mat-icon>\n <img *ngIf=\"Image\" [src]=\"Image\" [alt]=\"Name\" style=\"width:75px; height:75px\">\n </div>\n </div>\n\n <div class=\"icon-btn-container\" fxLayout=\"row\" fxLayoutAlign=\"space-between center\" >\n <button *ngIf=\"IsEditable\" mat-icon-button id=\"left-icon\" (click)=\"LeftIconClicked()\">\n <mat-icon>edit</mat-icon>\n </button>\n <button *ngIf=\"IsShareable\" mat-icon-button id=\"right-icon\" (click)=\"RightIconClicked()\">\n <mat-icon>share</mat-icon>\n </button>\n </div>\n\n <mat-card-header class=\"project-card-header\" fxLayoutAlign=\"center center\">\n\n <mat-card-title class=\"project-card-name\" *ngIf=\"Name\">{{Name}}</mat-card-title>\n\n <mat-card-subtitle class=\"project-card-description\" *ngIf=\"Description\">{{Description}}</mat-card-subtitle>\n\n <mat-card-subtitle class=\"project-card-host\">\n <a class=\"host-anchor\" *ngIf=\"Subtext\" [href]=\"'https://'+Subtext\" target=\"_blank\">{{Subtext}}</a>\n </mat-card-subtitle>\n\n </mat-card-header>\n <mat-card-content class=\"card-content-container\">\n <div class=\"stats-container\">\n <ng-content select=\"[stats]\"></ng-content>\n </div>\n\n <div class=\"promo-container\">\n <ng-content select=\"[promo]\"></ng-content>\n </div>\n\n </mat-card-content>\n <mat-card-actions class=\"actions-container\">\n <ng-content select=\"[action]\"></ng-content>\n \n </mat-card-actions>\n </ng-container>\n </mat-card>\n \n",
|
|
3587
|
+
styles: [".project-info-card{margin:32px 20px;padding:0}.round-project-img{background-color:#dfeff2;border:2px solid #fff;border-radius:40px;height:75px;margin-top:20px;text-align:center;width:75px}.temp-icon{font-size:50px;height:50px;width:50px}.icon-btn-container{margin:5px}.project-card-header{margin-top:50px;text-align:center}.host-anchor{color:#4a918e;text-decoration:none}.header-img-container{background-color:#a4bab3;border-radius:2px 2px 0 0;height:60px;justify-content:center;margin-right:-.5px;margin-top:-.5px!important}.project-card-name{font-size:17px;font-weight:600}.card-content-container{margin-bottom:0!important}.stats-container{border-top:1px solid #d3d3d3}mat-card-actions{margin-bottom:-1px!important;margin-left:0!important;margin-right:-.5px!important}.actions-container{padding:0!important}.info-card-btn{border-radius:0 0 2px 2px;border-top:1px solid #d3d3d3;width:100%}"]
|
|
3587
3588
|
},] }
|
|
3588
3589
|
];
|
|
3589
3590
|
ProjectInfoCardComponent.ctorParameters = () => [];
|