@lowcodeunit/applications-flow-common 1.33.42-lets-get-social-ish → 1.33.50-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 +32 -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/main-feed-card/main-feed-card.component.js +24 -0
- package/esm2015/lowcodeunit-applications-flow-common.js +2 -1
- package/fesm2015/lowcodeunit-applications-flow-common.js +30 -4
- package/fesm2015/lowcodeunit-applications-flow-common.js.map +1 -1
- package/lib/applications-flow.module.d.ts.map +1 -1
- package/lib/elements/main-feed-card/main-feed-card.component.d.ts +11 -0
- package/lib/elements/main-feed-card/main-feed-card.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
|
@@ -4844,6 +4844,31 @@
|
|
|
4844
4844
|
];
|
|
4845
4845
|
GhControlComponent.ctorParameters = function () { return []; };
|
|
4846
4846
|
|
|
4847
|
+
var MainFeedCardComponent = /** @class */ (function () {
|
|
4848
|
+
function MainFeedCardComponent() {
|
|
4849
|
+
}
|
|
4850
|
+
MainFeedCardComponent.prototype.ngOnInit = function () {
|
|
4851
|
+
};
|
|
4852
|
+
MainFeedCardComponent.prototype.MoreClicked = function () {
|
|
4853
|
+
console.log("More clicked");
|
|
4854
|
+
};
|
|
4855
|
+
return MainFeedCardComponent;
|
|
4856
|
+
}());
|
|
4857
|
+
MainFeedCardComponent.decorators = [
|
|
4858
|
+
{ type: i0.Component, args: [{
|
|
4859
|
+
selector: 'lcu-main-feed-card',
|
|
4860
|
+
template: "<mat-card class=\"social-card\">\n <mat-card-header fxLayout=\"row\">\n <div *ngIf=\"Avatar\" mat-card-avatar class=\"example-header-image\" [style.backgroundImage]=\"Avatar\" fxFlex=\"10%\"></div>\n <div class=\"header-main-content-container\" fxFlex=\"80%\">\n <mat-card-title *ngIf=\"Title\">{{Title}}</mat-card-title>\n <div *ngIf=\"Subtext\">{{Subtext}}</div>\n <div *ngIf=\"TimeAgo\">{{TimeAgo}}</div>\n </div>\n <div fxFlex=\"10%\">\n <button mat-icon-button (click)=\"MoreClicked()\" >\n <mat-icon>more_horiz</mat-icon>\n </button>\n </div>\n\n </mat-card-header>\n \n <div class=\"feed-card-container\" fxLayout=\"row\">\n <div class=\"feed-card-main-content\">\n <ng-content select=\"[tabs]\"></ng-content>\n </div>\n </div>\n\n <mat-card-actions fxLayout=\"row\" fxLayoutAlign=\"space-around center\">\n <ng-content select=\"[actions]\"></ng-content>\n \n\n </mat-card-actions>\n </mat-card>\n",
|
|
4861
|
+
styles: ["@import url(../../../assets/styles/social-card.scss);.example-header-image{background-size:cover}"]
|
|
4862
|
+
},] }
|
|
4863
|
+
];
|
|
4864
|
+
MainFeedCardComponent.ctorParameters = function () { return []; };
|
|
4865
|
+
MainFeedCardComponent.propDecorators = {
|
|
4866
|
+
Avatar: [{ type: i0.Input, args: ['avatar',] }],
|
|
4867
|
+
Title: [{ type: i0.Input, args: ['title',] }],
|
|
4868
|
+
Subtext: [{ type: i0.Input, args: ['subtext',] }],
|
|
4869
|
+
TimeAgo: [{ type: i0.Input, args: ['time-ago',] }]
|
|
4870
|
+
};
|
|
4871
|
+
|
|
4847
4872
|
var ApplicationsFlowModule = /** @class */ (function () {
|
|
4848
4873
|
function ApplicationsFlowModule() {
|
|
4849
4874
|
}
|
|
@@ -4893,7 +4918,8 @@
|
|
|
4893
4918
|
ProjectInfoCardComponent,
|
|
4894
4919
|
AnalyticsCardComponent,
|
|
4895
4920
|
FeedCardSmComponent,
|
|
4896
|
-
GhControlComponent
|
|
4921
|
+
GhControlComponent,
|
|
4922
|
+
MainFeedCardComponent
|
|
4897
4923
|
],
|
|
4898
4924
|
imports: [
|
|
4899
4925
|
i2.FathymSharedModule,
|
|
@@ -4932,7 +4958,8 @@
|
|
|
4932
4958
|
ProjectInfoCardComponent,
|
|
4933
4959
|
AnalyticsCardComponent,
|
|
4934
4960
|
FeedCardSmComponent,
|
|
4935
|
-
GhControlComponent
|
|
4961
|
+
GhControlComponent,
|
|
4962
|
+
MainFeedCardComponent
|
|
4936
4963
|
],
|
|
4937
4964
|
entryComponents: [
|
|
4938
4965
|
ApplicationsFlowProjectsElementComponent,
|
|
@@ -4961,7 +4988,8 @@
|
|
|
4961
4988
|
ProjectInfoCardComponent,
|
|
4962
4989
|
AnalyticsCardComponent,
|
|
4963
4990
|
FeedCardSmComponent,
|
|
4964
|
-
GhControlComponent
|
|
4991
|
+
GhControlComponent,
|
|
4992
|
+
MainFeedCardComponent
|
|
4965
4993
|
],
|
|
4966
4994
|
},] }
|
|
4967
4995
|
];
|
|
@@ -5067,6 +5095,7 @@
|
|
|
5067
5095
|
exports.ɵt = AnalyticsCardComponent;
|
|
5068
5096
|
exports.ɵu = FeedCardSmComponent;
|
|
5069
5097
|
exports.ɵv = GhControlComponent;
|
|
5098
|
+
exports.ɵw = MainFeedCardComponent;
|
|
5070
5099
|
|
|
5071
5100
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
5072
5101
|
|