@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
|
@@ -3532,36 +3532,6 @@ ThreeColumnComponent.ctorParameters = () => [
|
|
|
3532
3532
|
{ type: BreakpointObserver }
|
|
3533
3533
|
];
|
|
3534
3534
|
|
|
3535
|
-
class ColumnInfoCardComponent {
|
|
3536
|
-
constructor() { }
|
|
3537
|
-
ngOnInit() {
|
|
3538
|
-
}
|
|
3539
|
-
SlotActionClickEvent(event) {
|
|
3540
|
-
this.SlotActionClicked.emit(event);
|
|
3541
|
-
}
|
|
3542
|
-
MainCardClickEvent(event) {
|
|
3543
|
-
this.MainCardClicked.emit(event);
|
|
3544
|
-
}
|
|
3545
|
-
}
|
|
3546
|
-
ColumnInfoCardComponent.decorators = [
|
|
3547
|
-
{ type: Component, args: [{
|
|
3548
|
-
selector: 'lcu-column-info-card',
|
|
3549
|
-
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>",
|
|
3550
|
-
styles: [""]
|
|
3551
|
-
},] }
|
|
3552
|
-
];
|
|
3553
|
-
ColumnInfoCardComponent.ctorParameters = () => [];
|
|
3554
|
-
ColumnInfoCardComponent.propDecorators = {
|
|
3555
|
-
Title: [{ type: Input, args: ['title',] }],
|
|
3556
|
-
MainIcon: [{ type: Input, args: ['main-icon',] }],
|
|
3557
|
-
MainSlotDescription: [{ type: Input, args: ['main-slot-description',] }],
|
|
3558
|
-
MainSlots: [{ type: Input, args: ['main-slots',] }],
|
|
3559
|
-
SecondarySlots: [{ type: Input, args: ['secondary-slots',] }],
|
|
3560
|
-
MainCardAction: [{ type: Input, args: ['main-card-action',] }],
|
|
3561
|
-
MainCardClicked: [{ type: Output, args: ['main-card-clicked',] }],
|
|
3562
|
-
SlotActionClicked: [{ type: Output, args: ['slot-action-clicked',] }]
|
|
3563
|
-
};
|
|
3564
|
-
|
|
3565
3535
|
class SlottedCardComponent {
|
|
3566
3536
|
constructor() {
|
|
3567
3537
|
this.MainActionClicked = new EventEmitter;
|
|
@@ -3575,8 +3545,8 @@ class SlottedCardComponent {
|
|
|
3575
3545
|
SlottedCardComponent.decorators = [
|
|
3576
3546
|
{ type: Component, args: [{
|
|
3577
3547
|
selector: 'lcu-slotted-card',
|
|
3578
|
-
template: "<mat-card class=\"col-info-card\">\n <mat-card-header
|
|
3579
|
-
styles: [".col-info-card{margin:20px;padding:0}.header-icon{
|
|
3548
|
+
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",
|
|
3549
|
+
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%}"]
|
|
3580
3550
|
},] }
|
|
3581
3551
|
];
|
|
3582
3552
|
SlottedCardComponent.ctorParameters = () => [];
|
|
@@ -3596,6 +3566,7 @@ class ProjectInfoCardComponent {
|
|
|
3596
3566
|
this.RightClickEvent = new EventEmitter();
|
|
3597
3567
|
}
|
|
3598
3568
|
ngOnInit() {
|
|
3569
|
+
console.log("loading = ", this.Loading);
|
|
3599
3570
|
}
|
|
3600
3571
|
LeftIconClicked() {
|
|
3601
3572
|
this.LeftClickEvent.emit({});
|
|
@@ -3607,14 +3578,16 @@ class ProjectInfoCardComponent {
|
|
|
3607
3578
|
ProjectInfoCardComponent.decorators = [
|
|
3608
3579
|
{ type: Component, args: [{
|
|
3609
3580
|
selector: 'lcu-project-info-card',
|
|
3610
|
-
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>
|
|
3611
|
-
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:
|
|
3581
|
+
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",
|
|
3582
|
+
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%}"]
|
|
3612
3583
|
},] }
|
|
3613
3584
|
];
|
|
3614
3585
|
ProjectInfoCardComponent.ctorParameters = () => [];
|
|
3615
3586
|
ProjectInfoCardComponent.propDecorators = {
|
|
3616
3587
|
Description: [{ type: Input, args: ['description',] }],
|
|
3617
3588
|
Image: [{ type: Input, args: ['image',] }],
|
|
3589
|
+
IsEditable: [{ type: Input, args: ['is-editable',] }],
|
|
3590
|
+
Loading: [{ type: Input, args: ['loading',] }],
|
|
3618
3591
|
Name: [{ type: Input, args: ['name',] }],
|
|
3619
3592
|
Subtext: [{ type: Input, args: ['subtext',] }],
|
|
3620
3593
|
LeftClickEvent: [{ type: Output, args: ['left-click-event',] }],
|
|
@@ -3660,7 +3633,7 @@ FeedCardSmComponent.decorators = [
|
|
|
3660
3633
|
{ type: Component, args: [{
|
|
3661
3634
|
selector: 'lcu-feed-card-sm',
|
|
3662
3635
|
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",
|
|
3663
|
-
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:
|
|
3636
|
+
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}"]
|
|
3664
3637
|
},] }
|
|
3665
3638
|
];
|
|
3666
3639
|
FeedCardSmComponent.ctorParameters = () => [];
|
|
@@ -3737,7 +3710,7 @@ GhControlComponent.decorators = [
|
|
|
3737
3710
|
{ type: Component, args: [{
|
|
3738
3711
|
selector: 'lcu-gh-control',
|
|
3739
3712
|
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>",
|
|
3740
|
-
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:
|
|
3713
|
+
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}"]
|
|
3741
3714
|
},] }
|
|
3742
3715
|
];
|
|
3743
3716
|
GhControlComponent.ctorParameters = () => [];
|
|
@@ -3754,7 +3727,7 @@ MainFeedCardComponent.decorators = [
|
|
|
3754
3727
|
{ type: Component, args: [{
|
|
3755
3728
|
selector: 'lcu-main-feed-card',
|
|
3756
3729
|
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",
|
|
3757
|
-
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:
|
|
3730
|
+
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}"]
|
|
3758
3731
|
},] }
|
|
3759
3732
|
];
|
|
3760
3733
|
MainFeedCardComponent.ctorParameters = () => [];
|
|
@@ -5096,6 +5069,62 @@ BreadcrumbComponent.propDecorators = {
|
|
|
5096
5069
|
SelectedRoute: [{ type: Input, args: ['selected-route',] }]
|
|
5097
5070
|
};
|
|
5098
5071
|
|
|
5072
|
+
class CustomDomainDialogComponent {
|
|
5073
|
+
constructor(dialogRef, data) {
|
|
5074
|
+
this.dialogRef = dialogRef;
|
|
5075
|
+
this.data = data;
|
|
5076
|
+
this.DomainData = {
|
|
5077
|
+
Hosts: this.data.hosts,
|
|
5078
|
+
PrimaryHost: this.data.primaryHost,
|
|
5079
|
+
Project: this.data.project,
|
|
5080
|
+
ProjectLookup: this.data.projectLookup
|
|
5081
|
+
};
|
|
5082
|
+
}
|
|
5083
|
+
ngOnInit() {
|
|
5084
|
+
}
|
|
5085
|
+
CloseDialog() {
|
|
5086
|
+
this.dialogRef.close();
|
|
5087
|
+
}
|
|
5088
|
+
}
|
|
5089
|
+
CustomDomainDialogComponent.decorators = [
|
|
5090
|
+
{ type: Component, args: [{
|
|
5091
|
+
selector: 'lcu-custom-domain-dialog',
|
|
5092
|
+
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",
|
|
5093
|
+
styles: [""]
|
|
5094
|
+
},] }
|
|
5095
|
+
];
|
|
5096
|
+
CustomDomainDialogComponent.ctorParameters = () => [
|
|
5097
|
+
{ type: MatDialogRef },
|
|
5098
|
+
{ type: undefined, decorators: [{ type: Inject, args: [MAT_DIALOG_DATA,] }] }
|
|
5099
|
+
];
|
|
5100
|
+
|
|
5101
|
+
class EditApplicationDialogComponent {
|
|
5102
|
+
constructor(dialogRef, data) {
|
|
5103
|
+
this.dialogRef = dialogRef;
|
|
5104
|
+
this.data = data;
|
|
5105
|
+
}
|
|
5106
|
+
ngOnInit() {
|
|
5107
|
+
}
|
|
5108
|
+
CloseDialog() {
|
|
5109
|
+
this.dialogRef.close();
|
|
5110
|
+
}
|
|
5111
|
+
SaveApplication(appEvent) {
|
|
5112
|
+
console.log("event to save: ", appEvent);
|
|
5113
|
+
this.dialogRef.close({ event: appEvent });
|
|
5114
|
+
}
|
|
5115
|
+
}
|
|
5116
|
+
EditApplicationDialogComponent.decorators = [
|
|
5117
|
+
{ type: Component, args: [{
|
|
5118
|
+
selector: 'lcu-edit-application-dialog',
|
|
5119
|
+
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",
|
|
5120
|
+
styles: [""]
|
|
5121
|
+
},] }
|
|
5122
|
+
];
|
|
5123
|
+
EditApplicationDialogComponent.ctorParameters = () => [
|
|
5124
|
+
{ type: MatDialogRef },
|
|
5125
|
+
{ type: undefined, decorators: [{ type: Inject, args: [MAT_DIALOG_DATA,] }] }
|
|
5126
|
+
];
|
|
5127
|
+
|
|
5099
5128
|
class ApplicationsFlowModule {
|
|
5100
5129
|
static forRoot() {
|
|
5101
5130
|
return {
|
|
@@ -5137,7 +5166,6 @@ ApplicationsFlowModule.decorators = [
|
|
|
5137
5166
|
DFSModifiersComponent,
|
|
5138
5167
|
NpmPackageSelectComponent,
|
|
5139
5168
|
ThreeColumnComponent,
|
|
5140
|
-
ColumnInfoCardComponent,
|
|
5141
5169
|
SlottedCardComponent,
|
|
5142
5170
|
ProjectInfoCardComponent,
|
|
5143
5171
|
AnalyticsCardComponent,
|
|
@@ -5154,7 +5182,9 @@ ApplicationsFlowModule.decorators = [
|
|
|
5154
5182
|
SourceControlDialogComponent,
|
|
5155
5183
|
BuildPipelineDialogComponent,
|
|
5156
5184
|
EditApplicationFormComponent,
|
|
5157
|
-
BreadcrumbComponent
|
|
5185
|
+
BreadcrumbComponent,
|
|
5186
|
+
CustomDomainDialogComponent,
|
|
5187
|
+
EditApplicationDialogComponent
|
|
5158
5188
|
],
|
|
5159
5189
|
imports: [
|
|
5160
5190
|
FathymSharedModule,
|
|
@@ -5191,7 +5221,6 @@ ApplicationsFlowModule.decorators = [
|
|
|
5191
5221
|
DFSModifiersComponent,
|
|
5192
5222
|
NpmPackageSelectComponent,
|
|
5193
5223
|
ThreeColumnComponent,
|
|
5194
|
-
ColumnInfoCardComponent,
|
|
5195
5224
|
SlottedCardComponent,
|
|
5196
5225
|
ProjectInfoCardComponent,
|
|
5197
5226
|
AnalyticsCardComponent,
|
|
@@ -5208,7 +5237,9 @@ ApplicationsFlowModule.decorators = [
|
|
|
5208
5237
|
SourceControlDialogComponent,
|
|
5209
5238
|
BuildPipelineDialogComponent,
|
|
5210
5239
|
EditApplicationFormComponent,
|
|
5211
|
-
BreadcrumbComponent
|
|
5240
|
+
BreadcrumbComponent,
|
|
5241
|
+
CustomDomainDialogComponent,
|
|
5242
|
+
EditApplicationDialogComponent
|
|
5212
5243
|
],
|
|
5213
5244
|
entryComponents: [
|
|
5214
5245
|
ApplicationsFlowProjectsElementComponent,
|
|
@@ -5232,7 +5263,6 @@ ApplicationsFlowModule.decorators = [
|
|
|
5232
5263
|
DFSModifiersComponent,
|
|
5233
5264
|
NpmPackageSelectComponent,
|
|
5234
5265
|
ThreeColumnComponent,
|
|
5235
|
-
ColumnInfoCardComponent,
|
|
5236
5266
|
SlottedCardComponent,
|
|
5237
5267
|
ProjectInfoCardComponent,
|
|
5238
5268
|
AnalyticsCardComponent,
|
|
@@ -5249,7 +5279,9 @@ ApplicationsFlowModule.decorators = [
|
|
|
5249
5279
|
SourceControlDialogComponent,
|
|
5250
5280
|
BuildPipelineDialogComponent,
|
|
5251
5281
|
EditApplicationFormComponent,
|
|
5252
|
-
BreadcrumbComponent
|
|
5282
|
+
BreadcrumbComponent,
|
|
5283
|
+
CustomDomainDialogComponent,
|
|
5284
|
+
EditApplicationDialogComponent
|
|
5253
5285
|
],
|
|
5254
5286
|
},] }
|
|
5255
5287
|
];
|
|
@@ -5282,5 +5314,5 @@ class FormModel {
|
|
|
5282
5314
|
* Generated bundle index. Do not edit.
|
|
5283
5315
|
*/
|
|
5284
5316
|
|
|
5285
|
-
export { ActionsModel, ApplicationsFlowModule, ApplicationsFlowProjectsContext, ApplicationsFlowProjectsElementComponent, ApplicationsFlowProjectsElementState, ApplicationsFlowService, ApplicationsFlowState, ApplicationsFlowStateContext, BaseFormConfigModel, CardFormConfigModel, CreateProjectWizardComponent, DevSettingsPresetModel, DomainModel, DynamicTabsModel, EaCService, FormActionsModel, FormModel, FormValuesModel, FormsService, GitAuthComponent, GitHubBranch, GitHubOrganization, GitHubRepository, GitHubSetupState, GitHubWorkflowRun, HostingDetailsFormGroupComponent, NPMService, ProjectActionsModel, ProjectHostingDetails, ProjectHostingOption, ProjectHostingOptionInput, ProjectNameComponent, ProjectService, RootDirectoryComponent, SELECTOR_APPLICATIONS_FLOW_PROJECTS_ELEMENT, SaveApplicationAsCodeEventRequest, SaveDFSModifierEventRequest, SaveEnvironmentAsCodeEventRequest, SaveProjectAsCodeEventRequest, SourceControlFormControlsComponent, ThreeColumnComponent, UnpackLowCodeUnitRequest, DynamicTabsComponent as ɵa, HeaderComponent as ɵb,
|
|
5317
|
+
export { ActionsModel, ApplicationsFlowModule, ApplicationsFlowProjectsContext, ApplicationsFlowProjectsElementComponent, ApplicationsFlowProjectsElementState, ApplicationsFlowService, ApplicationsFlowState, ApplicationsFlowStateContext, BaseFormConfigModel, CardFormConfigModel, CreateProjectWizardComponent, DevSettingsPresetModel, DomainModel, DynamicTabsModel, EaCService, FormActionsModel, FormModel, FormValuesModel, FormsService, GitAuthComponent, GitHubBranch, GitHubOrganization, GitHubRepository, GitHubSetupState, GitHubWorkflowRun, HostingDetailsFormGroupComponent, NPMService, ProjectActionsModel, ProjectHostingDetails, ProjectHostingOption, ProjectHostingOptionInput, ProjectNameComponent, ProjectService, RootDirectoryComponent, SELECTOR_APPLICATIONS_FLOW_PROJECTS_ELEMENT, SaveApplicationAsCodeEventRequest, SaveDFSModifierEventRequest, SaveEnvironmentAsCodeEventRequest, SaveProjectAsCodeEventRequest, SourceControlFormControlsComponent, ThreeColumnComponent, UnpackLowCodeUnitRequest, DynamicTabsComponent as ɵa, HeaderComponent as ɵb, BuildPipelineFormComponent as ɵba, DevopsSourceControlFormComponent as ɵbb, SourceControlDialogComponent as ɵbc, BuildPipelineDialogComponent as ɵbd, EditApplicationFormComponent as ɵbe, BreadcrumbComponent as ɵbf, CustomDomainDialogComponent as ɵbg, EditApplicationDialogComponent as ɵbh, ProjectTabsComponent as ɵc, GeneralComponent as ɵd, DomainsComponent as ɵe, ProjectItemsComponent as ɵf, BuildsComponent as ɵg, RecentActivitiesComponent as ɵh, FormCardComponent as ɵi, BaseFormComponent as ɵj, BaseFormTestComponent as ɵk, AppsFlowComponent as ɵl, DevOpsComponent as ɵm, DFSModifiersComponent as ɵn, NpmPackageSelectComponent as ɵo, SlottedCardComponent as ɵp, ProjectInfoCardComponent as ɵq, AnalyticsCardComponent as ɵr, FeedCardSmComponent as ɵs, GhControlComponent as ɵt, MainFeedCardComponent as ɵu, TwoColumnHeaderComponent as ɵv, CardCarouselComponent as ɵw, SecurityToggleComponent as ɵx, ProcessorDetailsFormComponent as ɵy, SourceControlFormComponent as ɵz };
|
|
5286
5318
|
//# sourceMappingURL=lowcodeunit-applications-flow-common.js.map
|