@lowcodeunit/applications-flow-common 1.33.71-lets-get-social-ish → 1.33.75-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 +11 -11
- 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/feed-card-sm/feed-card-sm.component.js +2 -2
- package/esm2015/lib/elements/three-column/three-column.component.js +3 -3
- package/esm2015/lib/services/project.service.js +3 -3
- package/fesm2015/lowcodeunit-applications-flow-common.js +5 -5
- package/fesm2015/lowcodeunit-applications-flow-common.js.map +1 -1
- package/lowcodeunit-applications-flow-common.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -823,17 +823,17 @@
|
|
|
823
823
|
switch (_b.label) {
|
|
824
824
|
case 0:
|
|
825
825
|
state.GitHub.HasConnection = response.Status.Code === 0;
|
|
826
|
-
if (!(state.GitHub.HasConnection || forceEnsureUser)) return [3 /*break*/, 2];
|
|
827
826
|
return [4 /*yield*/, this.EnsureUserEnterprise(state)];
|
|
828
827
|
case 1:
|
|
829
828
|
eac = _b.sent();
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
829
|
+
if (state.GitHub.HasConnection || forceEnsureUser) {
|
|
830
|
+
resolve(eac);
|
|
831
|
+
}
|
|
832
|
+
else {
|
|
833
|
+
window.location.href = '/dashboard/create-project';
|
|
834
|
+
resolve({});
|
|
835
|
+
}
|
|
836
|
+
return [2 /*return*/];
|
|
837
837
|
}
|
|
838
838
|
});
|
|
839
839
|
}); }, function (err) {
|
|
@@ -4651,14 +4651,14 @@
|
|
|
4651
4651
|
this.breakpointObserver
|
|
4652
4652
|
.observe(['(max-width: 850px)'])
|
|
4653
4653
|
.subscribe(function (state) {
|
|
4654
|
-
console.log("Breakpoint: ", state.matches)
|
|
4654
|
+
// console.log("Breakpoint: ", state.matches)
|
|
4655
4655
|
if (state.matches) {
|
|
4656
4656
|
_this.SmallScreen = true;
|
|
4657
4657
|
}
|
|
4658
4658
|
else {
|
|
4659
4659
|
_this.SmallScreen = false;
|
|
4660
4660
|
}
|
|
4661
|
-
console.log("SmallScrren = ",
|
|
4661
|
+
// console.log("SmallScrren = " ,this.SmallScreen);
|
|
4662
4662
|
});
|
|
4663
4663
|
};
|
|
4664
4664
|
return ThreeColumnComponent;
|
|
@@ -4806,7 +4806,7 @@
|
|
|
4806
4806
|
FeedCardSmComponent.decorators = [
|
|
4807
4807
|
{ type: i0.Component, args: [{
|
|
4808
4808
|
selector: 'lcu-feed-card-sm',
|
|
4809
|
-
template: "<mat-card class=\"social-card\">\n <div class=\"feed-card-container\" fxLayout=\"row\">\n <mat-icon *ngIf=\"Icon\" [style.color]=\"IconColor\">{{Icon}}</mat-icon>\n <div class=\"feed-card-main-content\">\n <mat-card-title *ngIf=\"Title\">{{Title}}</mat-card-title>\n <div *ngIf=\"Subtext\">{{Subtext}}</div>\n <div *ngIf=\"Description\">{{Description}}</div>\n </div>\n </div>\n\n <mat-card-actions fxLayout=\"row\" fxLayoutAlign=\"end\">\n <ng-content select=\"[actions]\"></ng-content>\n </mat-card-actions>\n </mat-card>\n",
|
|
4809
|
+
template: "<mat-card class=\"social-card\">\n <div class=\"feed-card-container\" fxLayout=\"row\">\n <mat-icon *ngIf=\"Icon\" [style.color]=\"IconColor\">{{Icon}}</mat-icon>\n <div class=\"feed-card-main-content\">\n <mat-card-title *ngIf=\"Title\">{{Title}}</mat-card-title>\n <div *ngIf=\"Subtext\">{{Subtext}}</div>\n <div *ngIf=\"Description\">{{Description}}</div>\n <ng-content select=\"[more-details]\"></ng-content>\n </div>\n </div>\n\n <mat-card-actions fxLayout=\"row\" fxLayoutAlign=\"end\">\n <ng-content select=\"[actions]\"></ng-content>\n </mat-card-actions>\n </mat-card>\n",
|
|
4810
4810
|
styles: [".social-card{background-color:#fff;border:2px solid #d3d3d3;margin:20px;padding:15px 5px}mat-card-actions{margin-bottom:-1px!important;margin-left:0!important;margin-right:-.5px!important}"]
|
|
4811
4811
|
},] }
|
|
4812
4812
|
];
|