@lowcodeunit/applications-flow-common 1.33.29-lets-get-social-ish → 1.33.30-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 +28 -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/analytics-card/analytics-card.component.js +21 -0
- package/esm2015/lowcodeunit-applications-flow-common.js +2 -1
- package/fesm2015/lowcodeunit-applications-flow-common.js +27 -4
- package/fesm2015/lowcodeunit-applications-flow-common.js.map +1 -1
- package/lib/applications-flow.module.d.ts.map +1 -1
- package/lib/elements/analytics-card/analytics-card.component.d.ts +9 -0
- package/lib/elements/analytics-card/analytics-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
|
@@ -4745,6 +4745,27 @@
|
|
|
4745
4745
|
RightClickEvent: [{ type: i0.Output, args: ['right-click-event',] }]
|
|
4746
4746
|
};
|
|
4747
4747
|
|
|
4748
|
+
var AnalyticsCardComponent = /** @class */ (function () {
|
|
4749
|
+
function AnalyticsCardComponent() {
|
|
4750
|
+
}
|
|
4751
|
+
AnalyticsCardComponent.prototype.ngOnInit = function () {
|
|
4752
|
+
};
|
|
4753
|
+
return AnalyticsCardComponent;
|
|
4754
|
+
}());
|
|
4755
|
+
AnalyticsCardComponent.decorators = [
|
|
4756
|
+
{ type: i0.Component, args: [{
|
|
4757
|
+
selector: 'lcu-analytics-card',
|
|
4758
|
+
template: "<mat-card class=\"analytics-card\">\n <mat-card-header>\n <mat-card-title *ngIf=\"Title\">{{Title}}</mat-card-title>\n <mat-card-subtitle *ngIf=\"Subtext\">{{Subtext}}</mat-card-subtitle>\n </mat-card-header>\n <mat-card-content>\n <!-- <ng-container *ngFor=\"let atics of analytics \"> -->\n \n <div class=\"analytic-container\" fxLayout=\"row\" fxLayoutAlign=\"space-between center\">\n <div fxLayout=\"column\">\n <div class=\"analytic-number\">57</div>\n <div class=\"analytic-name\">Unique Visitors</div>\n </div>\n\n <div class=\"percent-change increase\" fxLayout=\"row\" fxLayoutAlign=\"space-around center\">\n <mat-icon>arrow_drop_up</mat-icon>\n <div>{{ .16 | percent}}</div>\n </div>\n\n <!-- <div class=\"percent-change decrease\" fxLayout=\"row\" fxLayoutAlign=\"space-around center\">\n <mat-icon>arrow_drop_down</mat-icon>\n <div>16</div>\n </div> -->\n </div>\n\n <!-- </ng-container> -->\n </mat-card-content>\n <!-- <mat-card-actions>\n <button mat-button>LIKE</button>\n <button mat-button>SHARE</button>\n </mat-card-actions> -->\n </mat-card>\n",
|
|
4759
|
+
styles: [".analytics-card{background-color:#fff;border:2px solid #d3d3d3;margin:20px;padding:10px}.increase{color:green}.decrease{color:red}"]
|
|
4760
|
+
},] }
|
|
4761
|
+
];
|
|
4762
|
+
AnalyticsCardComponent.ctorParameters = function () { return []; };
|
|
4763
|
+
AnalyticsCardComponent.propDecorators = {
|
|
4764
|
+
Title: [{ type: i0.Input, args: ['title',] }],
|
|
4765
|
+
Subtext: [{ type: i0.Input, args: ['subtext',] }],
|
|
4766
|
+
Analytics: [{ type: i0.Input, args: ['analytics',] }]
|
|
4767
|
+
};
|
|
4768
|
+
|
|
4748
4769
|
var ApplicationsFlowModule = /** @class */ (function () {
|
|
4749
4770
|
function ApplicationsFlowModule() {
|
|
4750
4771
|
}
|
|
@@ -4791,7 +4812,8 @@
|
|
|
4791
4812
|
ThreeColumnComponent,
|
|
4792
4813
|
ColumnInfoCardComponent,
|
|
4793
4814
|
SlottedCardComponent,
|
|
4794
|
-
ProjectInfoCardComponent
|
|
4815
|
+
ProjectInfoCardComponent,
|
|
4816
|
+
AnalyticsCardComponent
|
|
4795
4817
|
],
|
|
4796
4818
|
imports: [
|
|
4797
4819
|
i2.FathymSharedModule,
|
|
@@ -4827,7 +4849,8 @@
|
|
|
4827
4849
|
ThreeColumnComponent,
|
|
4828
4850
|
ColumnInfoCardComponent,
|
|
4829
4851
|
SlottedCardComponent,
|
|
4830
|
-
ProjectInfoCardComponent
|
|
4852
|
+
ProjectInfoCardComponent,
|
|
4853
|
+
AnalyticsCardComponent
|
|
4831
4854
|
],
|
|
4832
4855
|
entryComponents: [
|
|
4833
4856
|
ApplicationsFlowProjectsElementComponent,
|
|
@@ -4853,7 +4876,8 @@
|
|
|
4853
4876
|
ThreeColumnComponent,
|
|
4854
4877
|
ColumnInfoCardComponent,
|
|
4855
4878
|
SlottedCardComponent,
|
|
4856
|
-
ProjectInfoCardComponent
|
|
4879
|
+
ProjectInfoCardComponent,
|
|
4880
|
+
AnalyticsCardComponent
|
|
4857
4881
|
],
|
|
4858
4882
|
},] }
|
|
4859
4883
|
];
|
|
@@ -4956,6 +4980,7 @@
|
|
|
4956
4980
|
exports.ɵq = ColumnInfoCardComponent;
|
|
4957
4981
|
exports.ɵr = SlottedCardComponent;
|
|
4958
4982
|
exports.ɵs = ProjectInfoCardComponent;
|
|
4983
|
+
exports.ɵt = AnalyticsCardComponent;
|
|
4959
4984
|
|
|
4960
4985
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4961
4986
|
|