@lowcodeunit/applications-flow-common 1.33.39-lets-get-social-ish → 1.33.40-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 +39 -3
- 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/applications-flow.module.js +8 -4
- package/esm2015/lib/elements/feed-card-sm/feed-card-sm.component.js +31 -0
- package/esm2015/lowcodeunit-applications-flow-common.js +2 -1
- package/fesm2015/lowcodeunit-applications-flow-common.js +37 -4
- package/fesm2015/lowcodeunit-applications-flow-common.js.map +1 -1
- package/lib/applications-flow.module.d.ts.map +1 -1
- package/lib/elements/feed-card-sm/feed-card-sm.component.d.ts +12 -0
- package/lib/elements/feed-card-sm/feed-card-sm.component.d.ts.map +1 -0
- package/lowcodeunit-applications-flow-common.d.ts +1 -0
- package/lowcodeunit-applications-flow-common.d.ts.map +1 -1
- package/lowcodeunit-applications-flow-common.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -4767,6 +4767,38 @@
|
|
|
4767
4767
|
Analytics: [{ type: i0.Input, args: ['analytics',] }]
|
|
4768
4768
|
};
|
|
4769
4769
|
|
|
4770
|
+
var FeedCardSmComponent = /** @class */ (function () {
|
|
4771
|
+
function FeedCardSmComponent() {
|
|
4772
|
+
}
|
|
4773
|
+
FeedCardSmComponent.prototype.ngOnInit = function () {
|
|
4774
|
+
this.determineIconColor();
|
|
4775
|
+
};
|
|
4776
|
+
//HELPERS
|
|
4777
|
+
FeedCardSmComponent.prototype.determineIconColor = function () {
|
|
4778
|
+
if (this.Icon === "check_circle") {
|
|
4779
|
+
this.IconColor = "green";
|
|
4780
|
+
}
|
|
4781
|
+
else if (this.Icon === "cancel") {
|
|
4782
|
+
this.IconColor = "red";
|
|
4783
|
+
}
|
|
4784
|
+
};
|
|
4785
|
+
return FeedCardSmComponent;
|
|
4786
|
+
}());
|
|
4787
|
+
FeedCardSmComponent.decorators = [
|
|
4788
|
+
{ type: i0.Component, args: [{
|
|
4789
|
+
selector: 'lcu-feed-card-sm',
|
|
4790
|
+
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",
|
|
4791
|
+
styles: ["@import url(../../../assets/styles/social-card.scss);.feed-card-container{padding:10px 0 0 10px}mat-card-actions{padding:0 10px 10px 0!important}"]
|
|
4792
|
+
},] }
|
|
4793
|
+
];
|
|
4794
|
+
FeedCardSmComponent.ctorParameters = function () { return []; };
|
|
4795
|
+
FeedCardSmComponent.propDecorators = {
|
|
4796
|
+
Icon: [{ type: i0.Input, args: ["icon",] }],
|
|
4797
|
+
Title: [{ type: i0.Input, args: ["title",] }],
|
|
4798
|
+
Subtext: [{ type: i0.Input, args: ["subtext",] }],
|
|
4799
|
+
Description: [{ type: i0.Input, args: ["description",] }]
|
|
4800
|
+
};
|
|
4801
|
+
|
|
4770
4802
|
var ApplicationsFlowModule = /** @class */ (function () {
|
|
4771
4803
|
function ApplicationsFlowModule() {
|
|
4772
4804
|
}
|
|
@@ -4814,7 +4846,8 @@
|
|
|
4814
4846
|
ColumnInfoCardComponent,
|
|
4815
4847
|
SlottedCardComponent,
|
|
4816
4848
|
ProjectInfoCardComponent,
|
|
4817
|
-
AnalyticsCardComponent
|
|
4849
|
+
AnalyticsCardComponent,
|
|
4850
|
+
FeedCardSmComponent
|
|
4818
4851
|
],
|
|
4819
4852
|
imports: [
|
|
4820
4853
|
i2.FathymSharedModule,
|
|
@@ -4851,7 +4884,8 @@
|
|
|
4851
4884
|
ColumnInfoCardComponent,
|
|
4852
4885
|
SlottedCardComponent,
|
|
4853
4886
|
ProjectInfoCardComponent,
|
|
4854
|
-
AnalyticsCardComponent
|
|
4887
|
+
AnalyticsCardComponent,
|
|
4888
|
+
FeedCardSmComponent
|
|
4855
4889
|
],
|
|
4856
4890
|
entryComponents: [
|
|
4857
4891
|
ApplicationsFlowProjectsElementComponent,
|
|
@@ -4878,7 +4912,8 @@
|
|
|
4878
4912
|
ColumnInfoCardComponent,
|
|
4879
4913
|
SlottedCardComponent,
|
|
4880
4914
|
ProjectInfoCardComponent,
|
|
4881
|
-
AnalyticsCardComponent
|
|
4915
|
+
AnalyticsCardComponent,
|
|
4916
|
+
FeedCardSmComponent
|
|
4882
4917
|
],
|
|
4883
4918
|
},] }
|
|
4884
4919
|
];
|
|
@@ -4982,6 +5017,7 @@
|
|
|
4982
5017
|
exports.ɵr = SlottedCardComponent;
|
|
4983
5018
|
exports.ɵs = ProjectInfoCardComponent;
|
|
4984
5019
|
exports.ɵt = AnalyticsCardComponent;
|
|
5020
|
+
exports.ɵu = FeedCardSmComponent;
|
|
4985
5021
|
|
|
4986
5022
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4987
5023
|
|