@lowcodeunit/applications-flow-common 1.33.26-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.
@@ -4715,21 +4715,55 @@
4715
4715
 
4716
4716
  var ProjectInfoCardComponent = /** @class */ (function () {
4717
4717
  function ProjectInfoCardComponent() {
4718
+ this.LeftClickEvent = new i0.EventEmitter();
4719
+ this.RightClickEvent = new i0.EventEmitter();
4718
4720
  }
4719
4721
  ProjectInfoCardComponent.prototype.ngOnInit = function () {
4720
4722
  };
4723
+ ProjectInfoCardComponent.prototype.LeftIconClicked = function () {
4724
+ this.LeftClickEvent.emit({});
4725
+ };
4726
+ ProjectInfoCardComponent.prototype.RightIconClicked = function () {
4727
+ this.RightClickEvent.emit({});
4728
+ };
4721
4729
  return ProjectInfoCardComponent;
4722
4730
  }());
4723
4731
  ProjectInfoCardComponent.decorators = [
4724
4732
  { type: i0.Component, args: [{
4725
4733
  selector: 'lcu-project-info-card',
4726
- template: "<mat-card class=\"project-info-card\">\n <div class=\"header-img-container\" fxLayout=\"row\" >\n <div class=\"round-project-img\" fxlayoutAlign=\"center center\">\n <mat-icon class=\"temp-icon\">flutter_dash</mat-icon>\n </div>\n </div>\n <mat-card-header class=\"project-card-header\">\n \n <mat-card-title class=\"project-card-name\">{{Project.Project.Name}}</mat-card-title>\n <mat-card-subtitle class=\"project-card-description\" *ngIf=\"Project.Description\">{{Project.Description}}</mat-card-subtitle>\n <mat-card-subtitle class=\"project-card-description\" *ngIf=\"!Project.Description\">This is a test description for formatting purposes</mat-card-subtitle>\n\n <mat-card-subtitle class=\"project-card-host\">\n <a class=\"host-anchor\" [href]=\"Project.Hosts\" target=\"_blank\">{{Project.Hosts}}</a>\n </mat-card-subtitle>\n\n </mat-card-header>\n <mat-card-content >\n\n <div class=\"carousel-container\">\n Carousel will go here\n </div>\n\n <div class=\"promo-container\">\n <div>Access exclusive tools & insights</div>\n <div>Upgrade to premium now</div>\n\n </div>\n </mat-card-content>\n <mat-card-actions>\n <button mat-button class=\"info-card-btn\">\n <mat-icon>settings</mat-icon>\n Project Settings\n </button>\n \n </mat-card-actions>\n </mat-card>\n \n",
4727
- styles: [".project-info-card{background-color:#fff;border:2px solid #d3d3d3;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;margin-top:10px;width:50px}.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:-1px}.project-card-name{font-size:30px;font-weight:600}.carousel-container{border-top:1px solid #d3d3d3;height:75px;text-align:center}.carousel-container,.promo-container{border-bottom:1px solid #d3d3d3}mat-card-actions{margin-bottom:-1px!important;margin-left:0!important;margin-right:-.5px!important}.info-card-btn{border-radius:0 0 2px 2px;border-top:1px solid #d3d3d3;width:100%}"]
4734
+ template: "<mat-card class=\"project-info-card\">\n\n <div class=\"header-img-container\" fxLayout=\"row\" >\n <div class=\"round-project-img\" fxLayoutAlign=\"center center\">\n <mat-icon class=\"temp-icon\">flutter_dash</mat-icon>\n </div>\n </div>\n\n <div class=\"icon-btn-container\" fxLayout=\"row\" fxLayoutAlign=\"space-between center\" >\n <button mat-icon-button id=\"left-icon\" (click)=\"LeftIconClicked()\">\n <mat-icon>settings</mat-icon>\n </button>\n <button 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\">\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]=\"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 </mat-card>\n \n",
4735
+ styles: [".project-info-card{background-color:#fff;border:2px solid #d3d3d3;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:30px;font-weight:600}.card-content-container{margin-bottom:0!important}.stats-container{border-bottom:1px solid #d3d3d3;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%}"]
4728
4736
  },] }
4729
4737
  ];
4730
4738
  ProjectInfoCardComponent.ctorParameters = function () { return []; };
4731
4739
  ProjectInfoCardComponent.propDecorators = {
4732
- Project: [{ type: i0.Input, args: ['project',] }]
4740
+ Description: [{ type: i0.Input, args: ['description',] }],
4741
+ Image: [{ type: i0.Input, args: ['image',] }],
4742
+ Name: [{ type: i0.Input, args: ['name',] }],
4743
+ Subtext: [{ type: i0.Input, args: ['subtext',] }],
4744
+ LeftClickEvent: [{ type: i0.Output, args: ['left-click-event',] }],
4745
+ RightClickEvent: [{ type: i0.Output, args: ['right-click-event',] }]
4746
+ };
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',] }]
4733
4767
  };
4734
4768
 
4735
4769
  var ApplicationsFlowModule = /** @class */ (function () {
@@ -4778,7 +4812,8 @@
4778
4812
  ThreeColumnComponent,
4779
4813
  ColumnInfoCardComponent,
4780
4814
  SlottedCardComponent,
4781
- ProjectInfoCardComponent
4815
+ ProjectInfoCardComponent,
4816
+ AnalyticsCardComponent
4782
4817
  ],
4783
4818
  imports: [
4784
4819
  i2.FathymSharedModule,
@@ -4814,7 +4849,8 @@
4814
4849
  ThreeColumnComponent,
4815
4850
  ColumnInfoCardComponent,
4816
4851
  SlottedCardComponent,
4817
- ProjectInfoCardComponent
4852
+ ProjectInfoCardComponent,
4853
+ AnalyticsCardComponent
4818
4854
  ],
4819
4855
  entryComponents: [
4820
4856
  ApplicationsFlowProjectsElementComponent,
@@ -4840,7 +4876,8 @@
4840
4876
  ThreeColumnComponent,
4841
4877
  ColumnInfoCardComponent,
4842
4878
  SlottedCardComponent,
4843
- ProjectInfoCardComponent
4879
+ ProjectInfoCardComponent,
4880
+ AnalyticsCardComponent
4844
4881
  ],
4845
4882
  },] }
4846
4883
  ];
@@ -4943,6 +4980,7 @@
4943
4980
  exports.ɵq = ColumnInfoCardComponent;
4944
4981
  exports.ɵr = SlottedCardComponent;
4945
4982
  exports.ɵs = ProjectInfoCardComponent;
4983
+ exports.ɵt = AnalyticsCardComponent;
4946
4984
 
4947
4985
  Object.defineProperty(exports, '__esModule', { value: true });
4948
4986