@lowcodeunit/applications-flow-common 1.33.135-lets-get-social-ish → 1.33.140-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 +96 -63
- 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 +12 -8
- package/esm2015/lib/dialogs/custom-domain-dialog/custom-domain-dialog.component.js +31 -0
- package/esm2015/lib/dialogs/edit-application-dialog/edit-application-dialog.component.js +29 -0
- package/esm2015/lib/elements/feed-card-sm/feed-card-sm.component.js +1 -1
- package/esm2015/lib/elements/gh-control/gh-control.component.js +1 -1
- package/esm2015/lib/elements/main-feed-card/main-feed-card.component.js +1 -1
- package/esm2015/lib/elements/project-info-card/project-info-card.component.js +6 -3
- package/esm2015/lib/elements/slotted-card/slotted-card.component.js +3 -3
- package/esm2015/lowcodeunit-applications-flow-common.js +20 -19
- package/fesm2015/lowcodeunit-applications-flow-common.js +76 -44
- package/fesm2015/lowcodeunit-applications-flow-common.js.map +1 -1
- package/lib/applications-flow.module.d.ts.map +1 -1
- package/lib/dialogs/custom-domain-dialog/custom-domain-dialog.component.d.ts +20 -0
- package/lib/dialogs/custom-domain-dialog/custom-domain-dialog.component.d.ts.map +1 -0
- package/lib/dialogs/edit-application-dialog/edit-application-dialog.component.d.ts +15 -0
- package/lib/dialogs/edit-application-dialog/edit-application-dialog.component.d.ts.map +1 -0
- package/lib/elements/project-info-card/project-info-card.component.d.ts +2 -0
- package/lib/elements/project-info-card/project-info-card.component.d.ts.map +1 -1
- package/lowcodeunit-applications-flow-common.d.ts +19 -18
- package/lowcodeunit-applications-flow-common.d.ts.map +1 -1
- package/lowcodeunit-applications-flow-common.metadata.json +1 -1
- package/package.json +1 -1
- package/esm2015/lib/elements/column-info-card/column-info-card.component.js +0 -31
- package/esm2015/lib/models/card-slot.model.js +0 -3
- package/esm2015/lib/models/slot-action.model.js +0 -3
- package/lib/elements/column-info-card/column-info-card.component.d.ts +0 -18
- package/lib/elements/column-info-card/column-info-card.component.d.ts.map +0 -1
- package/lib/models/card-slot.model.d.ts +0 -8
- package/lib/models/card-slot.model.d.ts.map +0 -1
- package/lib/models/slot-action.model.d.ts +0 -9
- package/lib/models/slot-action.model.d.ts.map +0 -1
|
@@ -4721,38 +4721,6 @@
|
|
|
4721
4721
|
{ type: layout.BreakpointObserver }
|
|
4722
4722
|
]; };
|
|
4723
4723
|
|
|
4724
|
-
var ColumnInfoCardComponent = /** @class */ (function () {
|
|
4725
|
-
function ColumnInfoCardComponent() {
|
|
4726
|
-
}
|
|
4727
|
-
ColumnInfoCardComponent.prototype.ngOnInit = function () {
|
|
4728
|
-
};
|
|
4729
|
-
ColumnInfoCardComponent.prototype.SlotActionClickEvent = function (event) {
|
|
4730
|
-
this.SlotActionClicked.emit(event);
|
|
4731
|
-
};
|
|
4732
|
-
ColumnInfoCardComponent.prototype.MainCardClickEvent = function (event) {
|
|
4733
|
-
this.MainCardClicked.emit(event);
|
|
4734
|
-
};
|
|
4735
|
-
return ColumnInfoCardComponent;
|
|
4736
|
-
}());
|
|
4737
|
-
ColumnInfoCardComponent.decorators = [
|
|
4738
|
-
{ type: i0.Component, args: [{
|
|
4739
|
-
selector: 'lcu-column-info-card',
|
|
4740
|
-
template: "<mat-card class=\"col-info-card\">\n <mat-card-header>\n <mat-card-title>{{ Title }}</mat-card-title>\n <mat-icon>{{ MainIcon }}</mat-icon>\n </mat-card-header>\n \n <mat-card-content>\n <div class=\"header-description\">{{ MainSlotDescription }}</div>\n <div class=\"main-slot\" fxLayout=\"row\" *ngFor=\"let slot of MainSlots\">\n\n <img [src]=\"slot.imgUrl\" [alt]=\"slot.Name\">\n\n <div fxLayout=\"column\">\n <h3>{{slot.Name}}</h3>\n <p>{{slot.Description}}</p>\n </div>\n\n <ng-container *ngIf=\"slot.actions\">\n \n <div class=\"slot-actions\" *ngFor=\"let action of slot.actions\">\n\n <ng-container *ngIf=\"action.ButtonType === ICON\">\n <mat-icon [matTooltip]=\"action.Label\" click=\"SlotActionClickEvent(action.ClickEventName)\">{{ action.Icon }}</mat-icon>\n </ng-container>\n\n <ng-container *ngIf=\"action.ButtonType === BUTTON\">\n <button mat-button click=\"SlotActionClickEvent(action.ClickEventName)\">{{ action.Label }}</button>\n </ng-container>\n\n </div>\n </ng-container>\n\n \n\n </div>\n \n </mat-card-content>\n <mat-card-actions>\n <button mat-button click=\"MainCardClickEvent(MainCardAction.ClickEventName)\">{{ MainCardAction.Label }}</button>\n </mat-card-actions>\n </mat-card>",
|
|
4741
|
-
styles: [""]
|
|
4742
|
-
},] }
|
|
4743
|
-
];
|
|
4744
|
-
ColumnInfoCardComponent.ctorParameters = function () { return []; };
|
|
4745
|
-
ColumnInfoCardComponent.propDecorators = {
|
|
4746
|
-
Title: [{ type: i0.Input, args: ['title',] }],
|
|
4747
|
-
MainIcon: [{ type: i0.Input, args: ['main-icon',] }],
|
|
4748
|
-
MainSlotDescription: [{ type: i0.Input, args: ['main-slot-description',] }],
|
|
4749
|
-
MainSlots: [{ type: i0.Input, args: ['main-slots',] }],
|
|
4750
|
-
SecondarySlots: [{ type: i0.Input, args: ['secondary-slots',] }],
|
|
4751
|
-
MainCardAction: [{ type: i0.Input, args: ['main-card-action',] }],
|
|
4752
|
-
MainCardClicked: [{ type: i0.Output, args: ['main-card-clicked',] }],
|
|
4753
|
-
SlotActionClicked: [{ type: i0.Output, args: ['slot-action-clicked',] }]
|
|
4754
|
-
};
|
|
4755
|
-
|
|
4756
4724
|
var SlottedCardComponent = /** @class */ (function () {
|
|
4757
4725
|
function SlottedCardComponent() {
|
|
4758
4726
|
this.MainActionClicked = new i0.EventEmitter;
|
|
@@ -4767,8 +4735,8 @@
|
|
|
4767
4735
|
SlottedCardComponent.decorators = [
|
|
4768
4736
|
{ type: i0.Component, args: [{
|
|
4769
4737
|
selector: 'lcu-slotted-card',
|
|
4770
|
-
template: "<mat-card class=\"col-info-card\">\n <mat-card-header
|
|
4771
|
-
styles: [".col-info-card{margin:20px;padding:0}.header-icon{
|
|
4738
|
+
template: "<mat-card class=\"col-info-card\">\n <mat-card-header >\n <!-- How are these two getting switched?? -->\n <mat-icon class=\"header-icon\">{{ Icon }}</mat-icon>\n <mat-card-title class=\"card-title\">{{ Title }}</mat-card-title>\n \n </mat-card-header>\n\n <mat-card-content>\n <div class=\"slot-main-container\">\n <div class=\"header-description\">{{ MainSlotDescription }}</div>\n\n <div class=\"slot-main\">\n <ng-content></ng-content>\n </div>\n </div>\n\n <div *ngIf=\"SecondarySlotDescription\" class=\"slot-secondary-container\">\n <div class=\"header-description\">{{ SecondarySlotDescription }}</div>\n\n <div class=\"slot-secondary\">\n <ng-content select=\"[secondary]\"></ng-content>\n </div>\n </div>\n </mat-card-content>\n\n <mat-card-actions *ngIf=\"ActionText\" fxLayoutAlign=\"center\">\n <a\n mat-button\n *ngIf=\"ActionPath\"\n class=\"slotted-card-action-btn\"\n [href]=\"ActionPath\"\n color=\"primary\"\n >{{ ActionText }}\n </a>\n\n <a\n mat-button\n *ngIf=\"!ActionPath\"\n class=\"slotted-card-action-btn\"\n (click)=\"MainActionClickEvent()\"\n color=\"primary\"\n >\n {{ ActionText }}\n </a>\n </mat-card-actions>\n</mat-card>\n",
|
|
4739
|
+
styles: [".col-info-card{margin:20px;padding:0}.header-icon{font-size:30px;height:30px;width:30px}.card-title{font-size:25px;margin-bottom:0}.header-description{background-color:#d3d3d3;margin-left:-2px;padding:10px}mat-card-actions{margin-bottom:0!important;margin-left:-1px!important;margin-right:0!important}.slotted-card-action-btn{width:100%}"]
|
|
4772
4740
|
},] }
|
|
4773
4741
|
];
|
|
4774
4742
|
SlottedCardComponent.ctorParameters = function () { return []; };
|
|
@@ -4788,6 +4756,7 @@
|
|
|
4788
4756
|
this.RightClickEvent = new i0.EventEmitter();
|
|
4789
4757
|
}
|
|
4790
4758
|
ProjectInfoCardComponent.prototype.ngOnInit = function () {
|
|
4759
|
+
console.log("loading = ", this.Loading);
|
|
4791
4760
|
};
|
|
4792
4761
|
ProjectInfoCardComponent.prototype.LeftIconClicked = function () {
|
|
4793
4762
|
this.LeftClickEvent.emit({});
|
|
@@ -4800,14 +4769,16 @@
|
|
|
4800
4769
|
ProjectInfoCardComponent.decorators = [
|
|
4801
4770
|
{ type: i0.Component, args: [{
|
|
4802
4771
|
selector: 'lcu-project-info-card',
|
|
4803
|
-
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>
|
|
4804
|
-
styles: [".project-info-card{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:
|
|
4772
|
+
template: "<mat-card class=\"project-info-card\">\n\n <lcu-loader [loading]=\"Loading\"></lcu-loader>\n\n<ng-container *ngIf=\"!Loading\">\n\n <div class=\"header-img-container\" fxLayout=\"row\" >\n <div class=\"round-project-img\" fxLayoutAlign=\"center center\">\n <mat-icon *ngIf=\"!Image\" class=\"temp-icon\">flutter_dash</mat-icon>\n <img [src]=\"Image\" [alt]=\"Name\">\n </div>\n </div>\n\n <div class=\"icon-btn-container\" fxLayout=\"row\" fxLayoutAlign=\"space-between center\" >\n <button *ngIf=\"IsEditable\" mat-icon-button id=\"left-icon\" (click)=\"LeftIconClicked()\">\n <mat-icon>edit</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\" fxLayoutAlign=\"center center\">\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 </ng-container>\n </mat-card>\n \n",
|
|
4773
|
+
styles: [".project-info-card{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:25px;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%}"]
|
|
4805
4774
|
},] }
|
|
4806
4775
|
];
|
|
4807
4776
|
ProjectInfoCardComponent.ctorParameters = function () { return []; };
|
|
4808
4777
|
ProjectInfoCardComponent.propDecorators = {
|
|
4809
4778
|
Description: [{ type: i0.Input, args: ['description',] }],
|
|
4810
4779
|
Image: [{ type: i0.Input, args: ['image',] }],
|
|
4780
|
+
IsEditable: [{ type: i0.Input, args: ['is-editable',] }],
|
|
4781
|
+
Loading: [{ type: i0.Input, args: ['loading',] }],
|
|
4811
4782
|
Name: [{ type: i0.Input, args: ['name',] }],
|
|
4812
4783
|
Subtext: [{ type: i0.Input, args: ['subtext',] }],
|
|
4813
4784
|
LeftClickEvent: [{ type: i0.Output, args: ['left-click-event',] }],
|
|
@@ -4856,7 +4827,7 @@
|
|
|
4856
4827
|
{ type: i0.Component, args: [{
|
|
4857
4828
|
selector: 'lcu-feed-card-sm',
|
|
4858
4829
|
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",
|
|
4859
|
-
styles: [".social-card{margin:20px;padding:15px 5px}mat-card-actions{margin-bottom:-1px!important;margin-left:0!important;margin-right:-.5px!important}.main-slot-container{padding:10px}.slot-header{align-items:center}.slot-content{width:100%}.slot-name{font-size:
|
|
4830
|
+
styles: [".social-card{margin:20px;padding:15px 5px}mat-card-actions{margin-bottom:-1px!important;margin-left:0!important;margin-right:-.5px!important}.main-slot-container{padding:10px}.slot-header{align-items:center}.slot-content{width:100%}.slot-name{font-size:13px;font-weight:600;padding-left:5px}.slot-description{font-size:12px;margin-right:10px}.slot-action-anchor{color:#000;font-size:10px;text-decoration:none}.action-icon{cursor:pointer;font-size:25px;height:25px;width:25px}.gold-icon{color:#d4af37}.upgrade-text{cursor:pointer;font-weight:700;margin-left:10px}"]
|
|
4860
4831
|
},] }
|
|
4861
4832
|
];
|
|
4862
4833
|
FeedCardSmComponent.ctorParameters = function () { return []; };
|
|
@@ -4934,7 +4905,7 @@
|
|
|
4934
4905
|
{ type: i0.Component, args: [{
|
|
4935
4906
|
selector: 'lcu-gh-control',
|
|
4936
4907
|
template: "<mat-card class=\"social-card\">\n <div class=\"gh-card-container\" fxLayout=\"row\" fxLayoutAlign=\"center center\">\n <mat-icon fxFlex=\"15%\" class=\"gh-icon\">error_outline</mat-icon>\n <div fxFlex=\"70%\"class=\"gh-card-main-content\">\n <mat-form-field appearance=\"fill\" class=\"gh-input\">\n <mat-label>{{InputLabel}}</mat-label>\n <input matInput type=\"text\" [(ngModel)]=\"value\">\n <!-- <button *ngIf=\"value\" matSuffix mat-icon-button aria-label=\"Clear\" (click)=\"value=''\">\n <mat-icon>close</mat-icon>\n </button> -->\n </mat-form-field>\n </div>\n <button fxFlex=\"15%\" mat-button (click)=\"Submit()\" id=\"submit-btn\">Submit</button>\n </div>\n\n <mat-card-actions fxLayout=\"row\" fxLayoutAlign=\"space-around center\">\n <button mat-button (click)=\"CreatePullRequest()\" id=\"pr-btn\">Pull Request</button>\n <button mat-button (click)=\"OpenIssue()\" id=\"oi-btn\">Open Issue</button>\n <button mat-button (click)=\"CreateFeatureBranch()\" id=\"fb-btn\">Feature Branch</button>\n <button mat-icon-button (click)=\"OpenMoreInfo()\">\n <mat-icon>more_horiz</mat-icon>\n </button>\n </mat-card-actions>\n </mat-card>",
|
|
4937
|
-
styles: [".social-card{margin:20px;padding:15px 5px}mat-card-actions{margin-bottom:-1px!important;margin-left:0!important;margin-right:-.5px!important}.main-slot-container{padding:10px}.slot-header{align-items:center}.slot-content{width:100%}.slot-name{font-size:
|
|
4908
|
+
styles: [".social-card{margin:20px;padding:15px 5px}mat-card-actions{margin-bottom:-1px!important;margin-left:0!important;margin-right:-.5px!important}.main-slot-container{padding:10px}.slot-header{align-items:center}.slot-content{width:100%}.slot-name{font-size:13px;font-weight:600;padding-left:5px}.slot-description{font-size:12px;margin-right:10px}.slot-action-anchor{color:#000;font-size:10px;text-decoration:none}.action-icon{cursor:pointer;font-size:25px;height:25px;width:25px}.gold-icon{color:#d4af37}.upgrade-text{cursor:pointer;font-weight:700;margin-left:10px}.gh-icon{font-size:60px;height:60px;text-align:center;width:60px}.gh-input{width:90%}.selected{border:1px solid green}::ng-deep .mat-form-field-flex{border:1px solid;border-radius:30px!important}::ng-deep .mat-form-field-wrapper{padding-bottom:0!important}"]
|
|
4938
4909
|
},] }
|
|
4939
4910
|
];
|
|
4940
4911
|
GhControlComponent.ctorParameters = function () { return []; };
|
|
@@ -4953,7 +4924,7 @@
|
|
|
4953
4924
|
{ type: i0.Component, args: [{
|
|
4954
4925
|
selector: 'lcu-main-feed-card',
|
|
4955
4926
|
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",
|
|
4956
|
-
styles: [".social-card{margin:20px;padding:15px 5px}mat-card-actions{margin-bottom:-1px!important;margin-left:0!important;margin-right:-.5px!important}.main-slot-container{padding:10px}.slot-header{align-items:center}.slot-content{width:100%}.slot-name{font-size:
|
|
4927
|
+
styles: [".social-card{margin:20px;padding:15px 5px}mat-card-actions{margin-bottom:-1px!important;margin-left:0!important;margin-right:-.5px!important}.main-slot-container{padding:10px}.slot-header{align-items:center}.slot-content{width:100%}.slot-name{font-size:13px;font-weight:600;padding-left:5px}.slot-description{font-size:12px;margin-right:10px}.slot-action-anchor{color:#000;font-size:10px;text-decoration:none}.action-icon{cursor:pointer;font-size:25px;height:25px;width:25px}.gold-icon{color:#d4af37}.upgrade-text{cursor:pointer;font-weight:700;margin-left:10px}.example-header-image{background-size:cover}"]
|
|
4957
4928
|
},] }
|
|
4958
4929
|
];
|
|
4959
4930
|
MainFeedCardComponent.ctorParameters = function () { return []; };
|
|
@@ -6582,6 +6553,64 @@
|
|
|
6582
6553
|
SelectedRoute: [{ type: i0.Input, args: ['selected-route',] }]
|
|
6583
6554
|
};
|
|
6584
6555
|
|
|
6556
|
+
var CustomDomainDialogComponent = /** @class */ (function () {
|
|
6557
|
+
function CustomDomainDialogComponent(dialogRef, data) {
|
|
6558
|
+
this.dialogRef = dialogRef;
|
|
6559
|
+
this.data = data;
|
|
6560
|
+
this.DomainData = {
|
|
6561
|
+
Hosts: this.data.hosts,
|
|
6562
|
+
PrimaryHost: this.data.primaryHost,
|
|
6563
|
+
Project: this.data.project,
|
|
6564
|
+
ProjectLookup: this.data.projectLookup
|
|
6565
|
+
};
|
|
6566
|
+
}
|
|
6567
|
+
CustomDomainDialogComponent.prototype.ngOnInit = function () {
|
|
6568
|
+
};
|
|
6569
|
+
CustomDomainDialogComponent.prototype.CloseDialog = function () {
|
|
6570
|
+
this.dialogRef.close();
|
|
6571
|
+
};
|
|
6572
|
+
return CustomDomainDialogComponent;
|
|
6573
|
+
}());
|
|
6574
|
+
CustomDomainDialogComponent.decorators = [
|
|
6575
|
+
{ type: i0.Component, args: [{
|
|
6576
|
+
selector: 'lcu-custom-domain-dialog',
|
|
6577
|
+
template: "<div class=\"dialog-header\" fxLayoutAlign=\"end center\">\n <button mat-icon-button (click)=\"CloseDialog()\">\n <mat-icon>cancel</mat-icon>\n </button>\n</div>\n\n<lcu-domains\n[data]=\"DomainData\"\n>\n\n</lcu-domains>\n",
|
|
6578
|
+
styles: [""]
|
|
6579
|
+
},] }
|
|
6580
|
+
];
|
|
6581
|
+
CustomDomainDialogComponent.ctorParameters = function () { return [
|
|
6582
|
+
{ type: dialog.MatDialogRef },
|
|
6583
|
+
{ type: undefined, decorators: [{ type: i0.Inject, args: [dialog.MAT_DIALOG_DATA,] }] }
|
|
6584
|
+
]; };
|
|
6585
|
+
|
|
6586
|
+
var EditApplicationDialogComponent = /** @class */ (function () {
|
|
6587
|
+
function EditApplicationDialogComponent(dialogRef, data) {
|
|
6588
|
+
this.dialogRef = dialogRef;
|
|
6589
|
+
this.data = data;
|
|
6590
|
+
}
|
|
6591
|
+
EditApplicationDialogComponent.prototype.ngOnInit = function () {
|
|
6592
|
+
};
|
|
6593
|
+
EditApplicationDialogComponent.prototype.CloseDialog = function () {
|
|
6594
|
+
this.dialogRef.close();
|
|
6595
|
+
};
|
|
6596
|
+
EditApplicationDialogComponent.prototype.SaveApplication = function (appEvent) {
|
|
6597
|
+
console.log("event to save: ", appEvent);
|
|
6598
|
+
this.dialogRef.close({ event: appEvent });
|
|
6599
|
+
};
|
|
6600
|
+
return EditApplicationDialogComponent;
|
|
6601
|
+
}());
|
|
6602
|
+
EditApplicationDialogComponent.decorators = [
|
|
6603
|
+
{ type: i0.Component, args: [{
|
|
6604
|
+
selector: 'lcu-edit-application-dialog',
|
|
6605
|
+
template: "<div class=\"dialog-header\" fxLayoutAlign=\"end center\">\n <button mat-icon-button (click)=\"CloseDialog()\">\n <mat-icon>cancel</mat-icon>\n </button>\n</div>\n\n<lcu-edit-application-form \n [editing-application]=\"data.application\"\n (save-form-event)=\"SaveApplication($event)\">\n</lcu-edit-application-form>\n",
|
|
6606
|
+
styles: [""]
|
|
6607
|
+
},] }
|
|
6608
|
+
];
|
|
6609
|
+
EditApplicationDialogComponent.ctorParameters = function () { return [
|
|
6610
|
+
{ type: dialog.MatDialogRef },
|
|
6611
|
+
{ type: undefined, decorators: [{ type: i0.Inject, args: [dialog.MAT_DIALOG_DATA,] }] }
|
|
6612
|
+
]; };
|
|
6613
|
+
|
|
6585
6614
|
var ApplicationsFlowModule = /** @class */ (function () {
|
|
6586
6615
|
function ApplicationsFlowModule() {
|
|
6587
6616
|
}
|
|
@@ -6626,7 +6655,6 @@
|
|
|
6626
6655
|
DFSModifiersComponent,
|
|
6627
6656
|
NpmPackageSelectComponent,
|
|
6628
6657
|
ThreeColumnComponent,
|
|
6629
|
-
ColumnInfoCardComponent,
|
|
6630
6658
|
SlottedCardComponent,
|
|
6631
6659
|
ProjectInfoCardComponent,
|
|
6632
6660
|
AnalyticsCardComponent,
|
|
@@ -6643,7 +6671,9 @@
|
|
|
6643
6671
|
SourceControlDialogComponent,
|
|
6644
6672
|
BuildPipelineDialogComponent,
|
|
6645
6673
|
EditApplicationFormComponent,
|
|
6646
|
-
BreadcrumbComponent
|
|
6674
|
+
BreadcrumbComponent,
|
|
6675
|
+
CustomDomainDialogComponent,
|
|
6676
|
+
EditApplicationDialogComponent
|
|
6647
6677
|
],
|
|
6648
6678
|
imports: [
|
|
6649
6679
|
i2.FathymSharedModule,
|
|
@@ -6680,7 +6710,6 @@
|
|
|
6680
6710
|
DFSModifiersComponent,
|
|
6681
6711
|
NpmPackageSelectComponent,
|
|
6682
6712
|
ThreeColumnComponent,
|
|
6683
|
-
ColumnInfoCardComponent,
|
|
6684
6713
|
SlottedCardComponent,
|
|
6685
6714
|
ProjectInfoCardComponent,
|
|
6686
6715
|
AnalyticsCardComponent,
|
|
@@ -6697,7 +6726,9 @@
|
|
|
6697
6726
|
SourceControlDialogComponent,
|
|
6698
6727
|
BuildPipelineDialogComponent,
|
|
6699
6728
|
EditApplicationFormComponent,
|
|
6700
|
-
BreadcrumbComponent
|
|
6729
|
+
BreadcrumbComponent,
|
|
6730
|
+
CustomDomainDialogComponent,
|
|
6731
|
+
EditApplicationDialogComponent
|
|
6701
6732
|
],
|
|
6702
6733
|
entryComponents: [
|
|
6703
6734
|
ApplicationsFlowProjectsElementComponent,
|
|
@@ -6721,7 +6752,6 @@
|
|
|
6721
6752
|
DFSModifiersComponent,
|
|
6722
6753
|
NpmPackageSelectComponent,
|
|
6723
6754
|
ThreeColumnComponent,
|
|
6724
|
-
ColumnInfoCardComponent,
|
|
6725
6755
|
SlottedCardComponent,
|
|
6726
6756
|
ProjectInfoCardComponent,
|
|
6727
6757
|
AnalyticsCardComponent,
|
|
@@ -6738,7 +6768,9 @@
|
|
|
6738
6768
|
SourceControlDialogComponent,
|
|
6739
6769
|
BuildPipelineDialogComponent,
|
|
6740
6770
|
EditApplicationFormComponent,
|
|
6741
|
-
BreadcrumbComponent
|
|
6771
|
+
BreadcrumbComponent,
|
|
6772
|
+
CustomDomainDialogComponent,
|
|
6773
|
+
EditApplicationDialogComponent
|
|
6742
6774
|
],
|
|
6743
6775
|
},] }
|
|
6744
6776
|
];
|
|
@@ -6829,13 +6861,14 @@
|
|
|
6829
6861
|
exports.UnpackLowCodeUnitRequest = UnpackLowCodeUnitRequest;
|
|
6830
6862
|
exports.ɵa = DynamicTabsComponent;
|
|
6831
6863
|
exports.ɵb = HeaderComponent;
|
|
6832
|
-
exports.ɵba =
|
|
6833
|
-
exports.ɵbb =
|
|
6834
|
-
exports.ɵbc =
|
|
6835
|
-
exports.ɵbd =
|
|
6836
|
-
exports.ɵbe =
|
|
6837
|
-
exports.ɵbf =
|
|
6838
|
-
exports.ɵbg =
|
|
6864
|
+
exports.ɵba = BuildPipelineFormComponent;
|
|
6865
|
+
exports.ɵbb = DevopsSourceControlFormComponent;
|
|
6866
|
+
exports.ɵbc = SourceControlDialogComponent;
|
|
6867
|
+
exports.ɵbd = BuildPipelineDialogComponent;
|
|
6868
|
+
exports.ɵbe = EditApplicationFormComponent;
|
|
6869
|
+
exports.ɵbf = BreadcrumbComponent;
|
|
6870
|
+
exports.ɵbg = CustomDomainDialogComponent;
|
|
6871
|
+
exports.ɵbh = EditApplicationDialogComponent;
|
|
6839
6872
|
exports.ɵc = ProjectTabsComponent;
|
|
6840
6873
|
exports.ɵd = GeneralComponent;
|
|
6841
6874
|
exports.ɵe = DomainsComponent;
|
|
@@ -6849,17 +6882,17 @@
|
|
|
6849
6882
|
exports.ɵm = DevOpsComponent;
|
|
6850
6883
|
exports.ɵn = DFSModifiersComponent;
|
|
6851
6884
|
exports.ɵo = NpmPackageSelectComponent;
|
|
6852
|
-
exports.ɵp =
|
|
6853
|
-
exports.ɵq =
|
|
6854
|
-
exports.ɵr =
|
|
6855
|
-
exports.ɵs =
|
|
6856
|
-
exports.ɵt =
|
|
6857
|
-
exports.ɵu =
|
|
6858
|
-
exports.ɵv =
|
|
6859
|
-
exports.ɵw =
|
|
6860
|
-
exports.ɵx =
|
|
6861
|
-
exports.ɵy =
|
|
6862
|
-
exports.ɵz =
|
|
6885
|
+
exports.ɵp = SlottedCardComponent;
|
|
6886
|
+
exports.ɵq = ProjectInfoCardComponent;
|
|
6887
|
+
exports.ɵr = AnalyticsCardComponent;
|
|
6888
|
+
exports.ɵs = FeedCardSmComponent;
|
|
6889
|
+
exports.ɵt = GhControlComponent;
|
|
6890
|
+
exports.ɵu = MainFeedCardComponent;
|
|
6891
|
+
exports.ɵv = TwoColumnHeaderComponent;
|
|
6892
|
+
exports.ɵw = CardCarouselComponent;
|
|
6893
|
+
exports.ɵx = SecurityToggleComponent;
|
|
6894
|
+
exports.ɵy = ProcessorDetailsFormComponent;
|
|
6895
|
+
exports.ɵz = SourceControlFormComponent;
|
|
6863
6896
|
|
|
6864
6897
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
6865
6898
|
|