@lowcodeunit/applications-flow-common 1.33.92-lets-get-social-ish → 1.33.93-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 +161 -80
- 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/controls/processor-details-form/processor-details-form.component.js +56 -53
- package/esm2015/lib/controls/security-toggle/security-toggle.component.js +19 -19
- package/esm2015/lib/controls/source-control-form/source-control-form.component.js +59 -0
- package/esm2015/lib/elements/analytics-card/analytics-card.component.js +1 -1
- 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 +1 -1
- package/esm2015/lib/elements/slotted-card/slotted-card.component.js +4 -3
- package/esm2015/lowcodeunit-applications-flow-common.js +2 -1
- package/fesm2015/lowcodeunit-applications-flow-common.js +144 -81
- package/fesm2015/lowcodeunit-applications-flow-common.js.map +1 -1
- package/lib/applications-flow.module.d.ts.map +1 -1
- package/lib/controls/processor-details-form/processor-details-form.component.d.ts +3 -2
- package/lib/controls/processor-details-form/processor-details-form.component.d.ts.map +1 -1
- package/lib/controls/source-control-form/source-control-form.component.d.ts +26 -0
- package/lib/controls/source-control-form/source-control-form.component.d.ts.map +1 -0
- package/lib/elements/slotted-card/slotted-card.component.d.ts +1 -0
- package/lib/elements/slotted-card/slotted-card.component.d.ts.map +1 -1
- 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
|
@@ -3566,8 +3566,8 @@ class SlottedCardComponent {
|
|
|
3566
3566
|
SlottedCardComponent.decorators = [
|
|
3567
3567
|
{ type: Component, args: [{
|
|
3568
3568
|
selector: 'lcu-slotted-card',
|
|
3569
|
-
template: "<mat-card class=\"col-info-card\">\n <mat-card-header fxLayoutAlign=\"space-between center\">\n <mat-card-title class=\"card-title\">{{ Title }}</mat-card-title>\n <mat-icon class=\"header-icon\">{{ Icon }}</mat-icon>\n </mat-card-header>\n \n <mat-card-content>\n\n <div class=\"slot-main-container\">\n\n <div class=\"header-description\">{{ MainSlotDescription }}</div>\n\n <div class=\"slot-main\">\n <ng-content></ng-content>\n </div>\n \n </div>\n\n <div *ngIf=\"SecondarySlotDescription\" class=\"slot-secondary-container\">\n\n <div class=\"header-description\">{{ SecondarySlotDescription }}</div>\n\n <div class=\"slot-secondary\">\n <ng-content select=\"[secondary]\"></ng-content>\n </div>\n \n </div>\n \n </mat-card-content>\n\n <mat-card-actions *ngIf=\"ActionText\" fxLayoutAlign=\"center\">\n <
|
|
3570
|
-
styles: [".col-info-card{
|
|
3569
|
+
template: "<mat-card class=\"col-info-card\">\n <mat-card-header fxLayoutAlign=\"space-between center\">\n <mat-card-title class=\"card-title\">{{ Title }}</mat-card-title>\n <mat-icon class=\"header-icon\">{{ Icon }}</mat-icon>\n </mat-card-header>\n \n <mat-card-content>\n\n <div class=\"slot-main-container\">\n\n <div class=\"header-description\">{{ MainSlotDescription }}</div>\n\n <div class=\"slot-main\">\n <ng-content></ng-content>\n </div>\n \n </div>\n\n <div *ngIf=\"SecondarySlotDescription\" class=\"slot-secondary-container\">\n\n <div class=\"header-description\">{{ SecondarySlotDescription }}</div>\n\n <div class=\"slot-secondary\">\n <ng-content select=\"[secondary]\"></ng-content>\n </div>\n \n </div>\n \n </mat-card-content>\n\n <mat-card-actions *ngIf=\"ActionText\" fxLayoutAlign=\"center\">\n <a mat-button class=\"slotted-card-action-btn\" [href]=\"ActionPath\">{{ ActionText }}</a>\n </mat-card-actions>\n\n </mat-card>\n\n\n",
|
|
3570
|
+
styles: [".col-info-card{border:2px solid #d3d3d3;margin:20px;padding:0}.header-icon{margin-right:10px}.card-title{font-size:30px;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{border-radius:0 0 2px 2px;border-top:1px solid #d3d3d3;width:100%}"]
|
|
3571
3571
|
},] }
|
|
3572
3572
|
];
|
|
3573
3573
|
SlottedCardComponent.ctorParameters = () => [];
|
|
@@ -3577,6 +3577,7 @@ SlottedCardComponent.propDecorators = {
|
|
|
3577
3577
|
MainSlotDescription: [{ type: Input, args: ['main-slot-description',] }],
|
|
3578
3578
|
SecondarySlotDescription: [{ type: Input, args: ['secondary-slot-description',] }],
|
|
3579
3579
|
ActionText: [{ type: Input, args: ['action-text',] }],
|
|
3580
|
+
ActionPath: [{ type: Input, args: ['action-path',] }],
|
|
3580
3581
|
MainActionClicked: [{ type: Output, args: ['main-action-clicked',] }]
|
|
3581
3582
|
};
|
|
3582
3583
|
|
|
@@ -3598,7 +3599,7 @@ ProjectInfoCardComponent.decorators = [
|
|
|
3598
3599
|
{ type: Component, args: [{
|
|
3599
3600
|
selector: 'lcu-project-info-card',
|
|
3600
3601
|
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\" 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 </mat-card>\n \n",
|
|
3601
|
-
styles: [".project-info-card{
|
|
3602
|
+
styles: [".project-info-card{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%}"]
|
|
3602
3603
|
},] }
|
|
3603
3604
|
];
|
|
3604
3605
|
ProjectInfoCardComponent.ctorParameters = () => [];
|
|
@@ -3621,7 +3622,7 @@ AnalyticsCardComponent.decorators = [
|
|
|
3621
3622
|
{ type: Component, args: [{
|
|
3622
3623
|
selector: 'lcu-analytics-card',
|
|
3623
3624
|
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",
|
|
3624
|
-
styles: [".analytics-card{
|
|
3625
|
+
styles: [".analytics-card{border:2px solid #d3d3d3;margin:20px;padding:10px}.increase{color:green}.decrease{color:red}"]
|
|
3625
3626
|
},] }
|
|
3626
3627
|
];
|
|
3627
3628
|
AnalyticsCardComponent.ctorParameters = () => [];
|
|
@@ -3650,7 +3651,7 @@ FeedCardSmComponent.decorators = [
|
|
|
3650
3651
|
{ type: Component, args: [{
|
|
3651
3652
|
selector: 'lcu-feed-card-sm',
|
|
3652
3653
|
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",
|
|
3653
|
-
styles: [".social-card{
|
|
3654
|
+
styles: [".social-card{border:2px solid #d3d3d3;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:22px;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{font-size:25px;height:25px;width:25px}.gold-icon{color:#d4af37}.upgrade-text{cursor:pointer;font-weight:700;margin-left:10px}"]
|
|
3654
3655
|
},] }
|
|
3655
3656
|
];
|
|
3656
3657
|
FeedCardSmComponent.ctorParameters = () => [];
|
|
@@ -3727,7 +3728,7 @@ GhControlComponent.decorators = [
|
|
|
3727
3728
|
{ type: Component, args: [{
|
|
3728
3729
|
selector: 'lcu-gh-control',
|
|
3729
3730
|
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>",
|
|
3730
|
-
styles: [".social-card{
|
|
3731
|
+
styles: [".social-card{border:2px solid #d3d3d3;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:22px;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{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}"]
|
|
3731
3732
|
},] }
|
|
3732
3733
|
];
|
|
3733
3734
|
GhControlComponent.ctorParameters = () => [];
|
|
@@ -3744,7 +3745,7 @@ MainFeedCardComponent.decorators = [
|
|
|
3744
3745
|
{ type: Component, args: [{
|
|
3745
3746
|
selector: 'lcu-main-feed-card',
|
|
3746
3747
|
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",
|
|
3747
|
-
styles: [".social-card{
|
|
3748
|
+
styles: [".social-card{border:2px solid #d3d3d3;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:22px;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{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}"]
|
|
3748
3749
|
},] }
|
|
3749
3750
|
];
|
|
3750
3751
|
MainFeedCardComponent.ctorParameters = () => [];
|
|
@@ -3850,26 +3851,26 @@ class SecurityToggleComponent {
|
|
|
3850
3851
|
console.log("submitting values");
|
|
3851
3852
|
}
|
|
3852
3853
|
setupSecurityFormGroup() {
|
|
3853
|
-
var _a, _b
|
|
3854
|
+
var _a, _b;
|
|
3854
3855
|
this.ProcessorType = ((_b = (_a = this.EditingApplication) === null || _a === void 0 ? void 0 : _a.Processor) === null || _b === void 0 ? void 0 : _b.Type) || '';
|
|
3855
3856
|
if (this.EditingApplication != null) {
|
|
3856
|
-
this.SecurityFormGroup = this.formBldr.group({
|
|
3857
|
-
|
|
3858
|
-
|
|
3859
|
-
|
|
3860
|
-
|
|
3861
|
-
|
|
3862
|
-
|
|
3863
|
-
|
|
3864
|
-
|
|
3865
|
-
|
|
3866
|
-
|
|
3867
|
-
|
|
3868
|
-
|
|
3869
|
-
|
|
3870
|
-
|
|
3871
|
-
|
|
3872
|
-
});
|
|
3857
|
+
// this.SecurityFormGroup = this.formBldr.group({
|
|
3858
|
+
// name: [this.EditingApplication.Application?.Name, Validators.required],
|
|
3859
|
+
// description: [
|
|
3860
|
+
// this.EditingApplication.Application?.Description,
|
|
3861
|
+
// Validators.required,
|
|
3862
|
+
// ],
|
|
3863
|
+
// route: [
|
|
3864
|
+
// this.EditingApplication.LookupConfig?.PathRegex.replace('.*', '') ||
|
|
3865
|
+
// '/',
|
|
3866
|
+
// Validators.required,
|
|
3867
|
+
// ],
|
|
3868
|
+
// // priority: [
|
|
3869
|
+
// // this.EditingApplication.Application?.Priority || 10000,
|
|
3870
|
+
// // Validators.required,
|
|
3871
|
+
// // ],
|
|
3872
|
+
// procType: [this.ProcessorType, [Validators.required]],
|
|
3873
|
+
// });
|
|
3873
3874
|
}
|
|
3874
3875
|
this.setupSecurityForm();
|
|
3875
3876
|
}
|
|
@@ -3901,49 +3902,50 @@ class ProcessorDetailsFormComponent {
|
|
|
3901
3902
|
}
|
|
3902
3903
|
get BuildFormControl() {
|
|
3903
3904
|
var _a;
|
|
3904
|
-
return (_a = this.
|
|
3905
|
+
return (_a = this.ProcessorDetailsFormGroup) === null || _a === void 0 ? void 0 : _a.controls.build;
|
|
3905
3906
|
}
|
|
3906
3907
|
get ClientIDFormControl() {
|
|
3907
3908
|
var _a;
|
|
3908
|
-
return (_a = this.
|
|
3909
|
+
return (_a = this.ProcessorDetailsFormGroup) === null || _a === void 0 ? void 0 : _a.controls.clientId;
|
|
3909
3910
|
}
|
|
3910
3911
|
get DefaultFileFormControl() {
|
|
3911
3912
|
var _a;
|
|
3912
|
-
return (_a = this.
|
|
3913
|
+
return (_a = this.ProcessorDetailsFormGroup) === null || _a === void 0 ? void 0 : _a.controls.defaultFile;
|
|
3913
3914
|
}
|
|
3914
3915
|
get InboundPathFormControl() {
|
|
3915
3916
|
var _a;
|
|
3916
|
-
return (_a = this.
|
|
3917
|
+
return (_a = this.ProcessorDetailsFormGroup) === null || _a === void 0 ? void 0 : _a.controls.inboundPath;
|
|
3917
3918
|
}
|
|
3918
3919
|
get TokenLookupFormControl() {
|
|
3919
3920
|
var _a;
|
|
3920
|
-
return (_a = this.
|
|
3921
|
+
return (_a = this.ProcessorDetailsFormGroup) === null || _a === void 0 ? void 0 : _a.controls.tokenLookup;
|
|
3921
3922
|
}
|
|
3922
3923
|
get RedirectFormControl() {
|
|
3923
3924
|
var _a;
|
|
3924
|
-
return (_a = this.
|
|
3925
|
+
return (_a = this.ProcessorDetailsFormGroup) === null || _a === void 0 ? void 0 : _a.controls.redirect;
|
|
3925
3926
|
}
|
|
3926
3927
|
get ScopesFormControl() {
|
|
3927
3928
|
var _a;
|
|
3928
|
-
return (_a = this.
|
|
3929
|
+
return (_a = this.ProcessorDetailsFormGroup) === null || _a === void 0 ? void 0 : _a.controls.scopes;
|
|
3929
3930
|
}
|
|
3930
3931
|
get SecurityFormControl() {
|
|
3931
3932
|
var _a;
|
|
3932
|
-
return (_a = this.
|
|
3933
|
+
return (_a = this.ProcessorDetailsFormGroup) === null || _a === void 0 ? void 0 : _a.controls.security;
|
|
3933
3934
|
}
|
|
3934
3935
|
get SPARootFormControl() {
|
|
3935
3936
|
var _a;
|
|
3936
|
-
return (_a = this.
|
|
3937
|
+
return (_a = this.ProcessorDetailsFormGroup) === null || _a === void 0 ? void 0 : _a.controls.spaRoot;
|
|
3937
3938
|
}
|
|
3938
3939
|
get PermanentFormControl() {
|
|
3939
3940
|
var _a;
|
|
3940
|
-
return (_a = this.
|
|
3941
|
+
return (_a = this.ProcessorDetailsFormGroup) === null || _a === void 0 ? void 0 : _a.controls.permanent;
|
|
3941
3942
|
}
|
|
3942
3943
|
get PreserveMethodFormControl() {
|
|
3943
3944
|
var _a;
|
|
3944
|
-
return (_a = this.
|
|
3945
|
+
return (_a = this.ProcessorDetailsFormGroup) === null || _a === void 0 ? void 0 : _a.controls.preserveMethod;
|
|
3945
3946
|
}
|
|
3946
3947
|
ngOnInit() {
|
|
3948
|
+
this.setupProcessorDetailsForm();
|
|
3947
3949
|
}
|
|
3948
3950
|
DetermineTooltipText() {
|
|
3949
3951
|
let permanentValue = this.PermanentFormControl.value;
|
|
@@ -3961,6 +3963,8 @@ class ProcessorDetailsFormComponent {
|
|
|
3961
3963
|
this.redirectTooltip = '308 – Permanent and Preserve';
|
|
3962
3964
|
}
|
|
3963
3965
|
}
|
|
3966
|
+
SubmitProcessorDetails() {
|
|
3967
|
+
}
|
|
3964
3968
|
ProcessorTypeChanged(event) {
|
|
3965
3969
|
this.ProcessorType = event.value;
|
|
3966
3970
|
this.setupProcessorTypeSubForm();
|
|
@@ -3971,27 +3975,27 @@ class ProcessorDetailsFormComponent {
|
|
|
3971
3975
|
}
|
|
3972
3976
|
//HELPERS
|
|
3973
3977
|
cleanupLcuTypeSubForm() {
|
|
3974
|
-
this.
|
|
3975
|
-
this.
|
|
3976
|
-
this.
|
|
3977
|
-
this.
|
|
3978
|
-
this.
|
|
3979
|
-
this.
|
|
3980
|
-
this.
|
|
3981
|
-
this.
|
|
3982
|
-
this.
|
|
3978
|
+
this.ProcessorDetailsFormGroup.removeControl('methods');
|
|
3979
|
+
this.ProcessorDetailsFormGroup.removeControl('apiRoot');
|
|
3980
|
+
this.ProcessorDetailsFormGroup.removeControl('security');
|
|
3981
|
+
this.ProcessorDetailsFormGroup.removeControl('spaRoot');
|
|
3982
|
+
this.ProcessorDetailsFormGroup.removeControl('applicationId');
|
|
3983
|
+
this.ProcessorDetailsFormGroup.removeControl('build');
|
|
3984
|
+
this.ProcessorDetailsFormGroup.removeControl('clientId');
|
|
3985
|
+
this.ProcessorDetailsFormGroup.removeControl('clientSecret');
|
|
3986
|
+
this.ProcessorDetailsFormGroup.removeControl('zipFile');
|
|
3983
3987
|
}
|
|
3984
3988
|
cleanupProcessorTypeSubForm() {
|
|
3985
|
-
this.
|
|
3989
|
+
this.ProcessorDetailsFormGroup.removeControl('defaultFile');
|
|
3986
3990
|
// this.ApplicationFormGroup.removeControl('dfsLcuType');
|
|
3987
3991
|
// this.ApplicationFormGroup.removeControl('oauthLcuType');
|
|
3988
|
-
this.
|
|
3989
|
-
this.
|
|
3990
|
-
this.
|
|
3991
|
-
this.
|
|
3992
|
-
this.
|
|
3993
|
-
this.
|
|
3994
|
-
this.
|
|
3992
|
+
this.ProcessorDetailsFormGroup.removeControl('scopes');
|
|
3993
|
+
this.ProcessorDetailsFormGroup.removeControl('tokenLookup');
|
|
3994
|
+
this.ProcessorDetailsFormGroup.removeControl('inboundPath');
|
|
3995
|
+
this.ProcessorDetailsFormGroup.removeControl('proxyLcuType');
|
|
3996
|
+
this.ProcessorDetailsFormGroup.removeControl('redirect');
|
|
3997
|
+
this.ProcessorDetailsFormGroup.removeControl('permanent');
|
|
3998
|
+
this.ProcessorDetailsFormGroup.removeControl('preserveMethod');
|
|
3995
3999
|
this.cleanupLcuTypeSubForm();
|
|
3996
4000
|
}
|
|
3997
4001
|
setupLcuTypeSubForm() {
|
|
@@ -4012,9 +4016,9 @@ class ProcessorDetailsFormComponent {
|
|
|
4012
4016
|
case 'GitHubOAuth':
|
|
4013
4017
|
this.setupLCUGitHubOAuthForm();
|
|
4014
4018
|
break;
|
|
4015
|
-
case 'NPM':
|
|
4016
|
-
|
|
4017
|
-
|
|
4019
|
+
// case 'NPM':
|
|
4020
|
+
// this.setupLCUNPMForm();
|
|
4021
|
+
// break;
|
|
4018
4022
|
case 'SPA':
|
|
4019
4023
|
this.setupLCUSPAForm();
|
|
4020
4024
|
break;
|
|
@@ -4024,11 +4028,11 @@ class ProcessorDetailsFormComponent {
|
|
|
4024
4028
|
}
|
|
4025
4029
|
}
|
|
4026
4030
|
}
|
|
4027
|
-
|
|
4031
|
+
setupProcessorDetailsForm() {
|
|
4028
4032
|
var _a, _b, _c, _d, _e;
|
|
4029
4033
|
this.ProcessorType = ((_b = (_a = this.EditingApplication) === null || _a === void 0 ? void 0 : _a.Processor) === null || _b === void 0 ? void 0 : _b.Type) || '';
|
|
4030
4034
|
if (this.EditingApplication != null) {
|
|
4031
|
-
this.
|
|
4035
|
+
this.ProcessorDetailsFormGroup = this.formBldr.group({
|
|
4032
4036
|
name: [(_c = this.EditingApplication.Application) === null || _c === void 0 ? void 0 : _c.Name, Validators.required],
|
|
4033
4037
|
description: [
|
|
4034
4038
|
(_d = this.EditingApplication.Application) === null || _d === void 0 ? void 0 : _d.Description,
|
|
@@ -4049,11 +4053,11 @@ class ProcessorDetailsFormComponent {
|
|
|
4049
4053
|
}
|
|
4050
4054
|
setupLCUGitHubForm() {
|
|
4051
4055
|
var _a;
|
|
4052
|
-
this.
|
|
4056
|
+
this.ProcessorDetailsFormGroup.addControl('build', this.formBldr.control(((_a = this.EditingApplication.LowCodeUnit) === null || _a === void 0 ? void 0 : _a.Build) || 'latest', [Validators.required]));
|
|
4053
4057
|
}
|
|
4054
4058
|
setupLCUApplicationPointerForm() {
|
|
4055
4059
|
var _a;
|
|
4056
|
-
this.
|
|
4060
|
+
this.ProcessorDetailsFormGroup.addControl('applicationId', this.formBldr.control(((_a = this.EditingApplication.LowCodeUnit) === null || _a === void 0 ? void 0 : _a.ApplicationID) || '', [Validators.required]));
|
|
4057
4061
|
}
|
|
4058
4062
|
setupLCUNPMForm() {
|
|
4059
4063
|
// this.ApplicationFormGroup.addControl(
|
|
@@ -4073,50 +4077,50 @@ class ProcessorDetailsFormComponent {
|
|
|
4073
4077
|
}
|
|
4074
4078
|
setupLCUSPAForm() {
|
|
4075
4079
|
var _a;
|
|
4076
|
-
this.
|
|
4080
|
+
this.ProcessorDetailsFormGroup.addControl('spaRoot', this.formBldr.control(((_a = this.EditingApplication.LowCodeUnit) === null || _a === void 0 ? void 0 : _a.SPARoot) || '', [Validators.required]));
|
|
4077
4081
|
}
|
|
4078
4082
|
setupLCUAPIForm() {
|
|
4079
4083
|
var _a, _b, _c, _d;
|
|
4080
|
-
this.
|
|
4081
|
-
this.
|
|
4082
|
-
this.
|
|
4084
|
+
this.ProcessorDetailsFormGroup.addControl('methods', this.formBldr.control(((_b = (_a = this.EditingApplication.LookupConfig) === null || _a === void 0 ? void 0 : _a.AllowedMethods) === null || _b === void 0 ? void 0 : _b.join(' ')) || '', []));
|
|
4085
|
+
this.ProcessorDetailsFormGroup.addControl('apiRoot', this.formBldr.control(((_c = this.EditingApplication.LowCodeUnit) === null || _c === void 0 ? void 0 : _c.APIRoot) || '', [Validators.required]));
|
|
4086
|
+
this.ProcessorDetailsFormGroup.addControl('security', this.formBldr.control(((_d = this.EditingApplication.LowCodeUnit) === null || _d === void 0 ? void 0 : _d.Security) || '', [Validators.required]));
|
|
4083
4087
|
}
|
|
4084
4088
|
setupLCUGitHubOAuthForm() {
|
|
4085
4089
|
var _a, _b;
|
|
4086
|
-
this.
|
|
4087
|
-
this.
|
|
4090
|
+
this.ProcessorDetailsFormGroup.addControl('clientId', this.formBldr.control(((_a = this.EditingApplication.LowCodeUnit) === null || _a === void 0 ? void 0 : _a.ClientID) || '', [Validators.required]));
|
|
4091
|
+
this.ProcessorDetailsFormGroup.addControl('clientSecret', this.formBldr.control(((_b = this.EditingApplication.LowCodeUnit) === null || _b === void 0 ? void 0 : _b.ClientSecret) || '', [Validators.required]));
|
|
4088
4092
|
}
|
|
4089
4093
|
setupProxyForm() {
|
|
4090
4094
|
var _a, _b;
|
|
4091
4095
|
this.LCUType = ((_a = this.EditingApplication.LowCodeUnit) === null || _a === void 0 ? void 0 : _a.Type) || '';
|
|
4092
|
-
this.
|
|
4093
|
-
this.
|
|
4096
|
+
this.ProcessorDetailsFormGroup.addControl('inboundPath', this.formBldr.control(((_b = this.EditingApplication.Processor) === null || _b === void 0 ? void 0 : _b.InboundPath) || '', [Validators.required]));
|
|
4097
|
+
this.ProcessorDetailsFormGroup.addControl('lcuType', this.formBldr.control(this.LCUType, [Validators.required]));
|
|
4094
4098
|
}
|
|
4095
4099
|
setupRedirectForm() {
|
|
4096
4100
|
var _a, _b, _c;
|
|
4097
|
-
this.
|
|
4101
|
+
this.ProcessorDetailsFormGroup.addControl('redirect', this.formBldr.control(((_a = this.EditingApplication.Processor) === null || _a === void 0 ? void 0 : _a.Redirect) || '', [
|
|
4098
4102
|
Validators.required,
|
|
4099
4103
|
]));
|
|
4100
|
-
this.
|
|
4101
|
-
this.
|
|
4104
|
+
this.ProcessorDetailsFormGroup.addControl('permanent', this.formBldr.control(((_b = this.EditingApplication.Processor) === null || _b === void 0 ? void 0 : _b.Permanent) || false, []));
|
|
4105
|
+
this.ProcessorDetailsFormGroup.addControl('preserveMethod', this.formBldr.control(((_c = this.EditingApplication.Processor) === null || _c === void 0 ? void 0 : _c.PreserveMethod) || false, []));
|
|
4102
4106
|
this.DetermineTooltipText();
|
|
4103
4107
|
}
|
|
4104
4108
|
setupOAuthForm() {
|
|
4105
4109
|
var _a, _b, _c, _d;
|
|
4106
4110
|
this.LCUType = ((_a = this.EditingApplication.LowCodeUnit) === null || _a === void 0 ? void 0 : _a.Type) || '';
|
|
4107
|
-
this.
|
|
4108
|
-
this.
|
|
4109
|
-
this.
|
|
4111
|
+
this.ProcessorDetailsFormGroup.addControl('scopes', this.formBldr.control(((_c = (_b = this.EditingApplication.Processor) === null || _b === void 0 ? void 0 : _b.Scopes) === null || _c === void 0 ? void 0 : _c.Join(' ')) || '', [Validators.required]));
|
|
4112
|
+
this.ProcessorDetailsFormGroup.addControl('tokenLookup', this.formBldr.control(((_d = this.EditingApplication.Processor) === null || _d === void 0 ? void 0 : _d.TokenLookup) || '', [Validators.required]));
|
|
4113
|
+
this.ProcessorDetailsFormGroup.addControl('lcuType', this.formBldr.control(this.LCUType, [Validators.required]));
|
|
4110
4114
|
}
|
|
4111
4115
|
setupLCUZipForm() {
|
|
4112
4116
|
var _a;
|
|
4113
|
-
this.
|
|
4117
|
+
this.ProcessorDetailsFormGroup.addControl('zipFile', this.formBldr.control(((_a = this.EditingApplication.LowCodeUnit) === null || _a === void 0 ? void 0 : _a.ZipFile) || '', [Validators.required]));
|
|
4114
4118
|
}
|
|
4115
4119
|
setupDfsForm() {
|
|
4116
4120
|
var _a, _b;
|
|
4117
4121
|
this.LCUType = ((_a = this.EditingApplication.LowCodeUnit) === null || _a === void 0 ? void 0 : _a.Type) || '';
|
|
4118
|
-
this.
|
|
4119
|
-
this.
|
|
4122
|
+
this.ProcessorDetailsFormGroup.addControl('defaultFile', this.formBldr.control(((_b = this.EditingApplication.Processor) === null || _b === void 0 ? void 0 : _b.DefaultFile) || 'index.html', [Validators.required]));
|
|
4123
|
+
this.ProcessorDetailsFormGroup.addControl('lcuType', this.formBldr.control(this.LCUType, [Validators.required]));
|
|
4120
4124
|
}
|
|
4121
4125
|
setupProcessorTypeSubForm() {
|
|
4122
4126
|
this.cleanupProcessorTypeSubForm();
|
|
@@ -4153,6 +4157,62 @@ ProcessorDetailsFormComponent.propDecorators = {
|
|
|
4153
4157
|
EditingApplication: [{ type: Input, args: ['editing-application',] }]
|
|
4154
4158
|
};
|
|
4155
4159
|
|
|
4160
|
+
class SourceControlFormComponent {
|
|
4161
|
+
constructor(formBldr) {
|
|
4162
|
+
this.formBldr = formBldr;
|
|
4163
|
+
}
|
|
4164
|
+
get HasBuildFormControl() {
|
|
4165
|
+
var _a;
|
|
4166
|
+
return (_a = this.SourceControlFormGroup) === null || _a === void 0 ? void 0 : _a.controls.hasBuild;
|
|
4167
|
+
}
|
|
4168
|
+
get SourceControlLookupFormControl() {
|
|
4169
|
+
var _a;
|
|
4170
|
+
return (_a = this.SourceControlFormGroup) === null || _a === void 0 ? void 0 : _a.controls.sourceControlLookup;
|
|
4171
|
+
}
|
|
4172
|
+
get SourceControlLookups() {
|
|
4173
|
+
return Object.keys(this.SourceControls || {});
|
|
4174
|
+
}
|
|
4175
|
+
get SourceControls() {
|
|
4176
|
+
console.log("Environment: ", this.Environment);
|
|
4177
|
+
return this.Environment.Sources || {};
|
|
4178
|
+
}
|
|
4179
|
+
ngOnInit() {
|
|
4180
|
+
this.setupSourceControlForm();
|
|
4181
|
+
}
|
|
4182
|
+
SourceControlLookupChanged(event) {
|
|
4183
|
+
// TODO: Anything to do here on change?
|
|
4184
|
+
console.log("sourceControlLookupChanged: ", event);
|
|
4185
|
+
}
|
|
4186
|
+
SubmitSourceControl() {
|
|
4187
|
+
}
|
|
4188
|
+
//HELPER
|
|
4189
|
+
setupSourceControlForm() {
|
|
4190
|
+
var _a, _b;
|
|
4191
|
+
this.ProcessorType = ((_b = (_a = this.EditingApplication) === null || _a === void 0 ? void 0 : _a.Processor) === null || _b === void 0 ? void 0 : _b.Type) || '';
|
|
4192
|
+
this.setupBuildForm();
|
|
4193
|
+
}
|
|
4194
|
+
setupBuildForm() {
|
|
4195
|
+
var _a, _b;
|
|
4196
|
+
this.SourceControlFormGroup.addControl('hasBuild', this.formBldr.control(!!((_a = this.EditingApplication.LowCodeUnit) === null || _a === void 0 ? void 0 : _a.SourceControlLookup) || false, [Validators.required]));
|
|
4197
|
+
this.SourceControlFormGroup.addControl('sourceControlLookup', this.formBldr.control(((_b = this.EditingApplication.LowCodeUnit) === null || _b === void 0 ? void 0 : _b.SourceControlLookup) || '', []));
|
|
4198
|
+
}
|
|
4199
|
+
}
|
|
4200
|
+
SourceControlFormComponent.decorators = [
|
|
4201
|
+
{ type: Component, args: [{
|
|
4202
|
+
selector: 'lcu-source-control-form',
|
|
4203
|
+
template: "<form class=\"source-control-form\" [formGroup]=\"SourceControlFormGroup\" (ngSubmit)=\"SubmitSourceControl()\">\n\n<mat-card class=\"spread flow-card\" *ngIf=\"ProcessorType != 'Redirect'\">\n <mat-card-header>\n <mat-card-title *ngIf=\"!HasBuildFormControl.value\">\n Build & Source\n </mat-card-title>\n\n <mat-card-title *ngIf=\"HasBuildFormControl.value\">\n Source Control\n </mat-card-title>\n\n <div fxFlex></div>\n\n <mat-slide-toggle\n formControlName=\"hasBuild\"\n matTooltip=\"Has Build?\"\n >\n </mat-slide-toggle>\n\n <mat-icon\n matSuffix\n matTooltip=\"Configure source control, DevOps CI/CD, and artifacts.\"\n >\n info_outline\n </mat-icon>\n </mat-card-header>\n\n <mat-card-content>\n <mat-form-field\n class=\"mat-full-width\"\n *ngIf=\"\n HasBuildFormControl.value && SourceControlLookups?.length > 0\n \"\n >\n <mat-select\n formControlName=\"sourceControlLookup\"\n placeholder=\"Source Control\"\n (selectionChange)=\"SourceControlLookupChanged($event)\"\n [disabled]=\"\n SourceControlFormControls?.Loading || HostingDetails?.Loading\n \"\n >\n <ng-container\n *ngFor=\"let srcCtrlLookup of SourceControlLookups\"\n >\n <mat-option\n [value]=\"srcCtrlLookup\"\n *ngIf=\"SourceControls[srcCtrlLookup]; let srcCtrl\"\n >\n {{ srcCtrl.Name }}\n </mat-option>\n </ng-container>\n </mat-select>\n\n <div *ngIf=\"HasBuildFormControl?.value\">\n <h3>\n @{{\n SourceControlFormControls?.OrganizationFormControl?.value ||\n SourceControl?.Organization\n }}/{{\n SourceControlFormControls?.RepositoryFormControl?.value ||\n SourceControl?.Repository\n }}\n </h3>\n\n <p>Organization and Repository pulled from build settings</p>\n\n <mat-hint>\n CurrentBuild:\n {{ EditingApplication?.LowCodeUnit?.CurrentBuild }}\n </mat-hint>\n </div>\n </mat-form-field>\n\n <div *ngIf=\"SourceControlLookups?.length < 0\">\n <h3>\n Create source control locations under the DevOps tab above.\n </h3>\n </div>\n </mat-card-content>\n <mat-card-actions>\n <!-- [disabled]=\"!SourceControlFormGroup.valid || !SourceControlFormGroup.dirty\" -->\n <button mat-raised-button type=\"submit\" >Save</button>\n </mat-card-actions>\n </mat-card>\n</form>\n",
|
|
4204
|
+
styles: [""]
|
|
4205
|
+
},] }
|
|
4206
|
+
];
|
|
4207
|
+
SourceControlFormComponent.ctorParameters = () => [
|
|
4208
|
+
{ type: FormBuilder }
|
|
4209
|
+
];
|
|
4210
|
+
SourceControlFormComponent.propDecorators = {
|
|
4211
|
+
EditingApplication: [{ type: Input, args: ['editing-application',] }],
|
|
4212
|
+
Environment: [{ type: Input, args: ['environment',] }],
|
|
4213
|
+
SourceControlFormControls: [{ type: ViewChild, args: [SourceControlFormControlsComponent,] }]
|
|
4214
|
+
};
|
|
4215
|
+
|
|
4156
4216
|
class ApplicationsFlowModule {
|
|
4157
4217
|
static forRoot() {
|
|
4158
4218
|
return {
|
|
@@ -4204,7 +4264,8 @@ ApplicationsFlowModule.decorators = [
|
|
|
4204
4264
|
TwoColumnHeaderComponent,
|
|
4205
4265
|
CardCarouselComponent,
|
|
4206
4266
|
SecurityToggleComponent,
|
|
4207
|
-
ProcessorDetailsFormComponent
|
|
4267
|
+
ProcessorDetailsFormComponent,
|
|
4268
|
+
SourceControlFormComponent
|
|
4208
4269
|
],
|
|
4209
4270
|
imports: [
|
|
4210
4271
|
FathymSharedModule,
|
|
@@ -4251,7 +4312,8 @@ ApplicationsFlowModule.decorators = [
|
|
|
4251
4312
|
TwoColumnHeaderComponent,
|
|
4252
4313
|
CardCarouselComponent,
|
|
4253
4314
|
SecurityToggleComponent,
|
|
4254
|
-
ProcessorDetailsFormComponent
|
|
4315
|
+
ProcessorDetailsFormComponent,
|
|
4316
|
+
SourceControlFormComponent
|
|
4255
4317
|
],
|
|
4256
4318
|
entryComponents: [
|
|
4257
4319
|
ApplicationsFlowProjectsElementComponent,
|
|
@@ -4285,7 +4347,8 @@ ApplicationsFlowModule.decorators = [
|
|
|
4285
4347
|
TwoColumnHeaderComponent,
|
|
4286
4348
|
CardCarouselComponent,
|
|
4287
4349
|
SecurityToggleComponent,
|
|
4288
|
-
ProcessorDetailsFormComponent
|
|
4350
|
+
ProcessorDetailsFormComponent,
|
|
4351
|
+
SourceControlFormComponent
|
|
4289
4352
|
],
|
|
4290
4353
|
},] }
|
|
4291
4354
|
];
|
|
@@ -4318,5 +4381,5 @@ class FormModel {
|
|
|
4318
4381
|
* Generated bundle index. Do not edit.
|
|
4319
4382
|
*/
|
|
4320
4383
|
|
|
4321
|
-
export { ActionsModel, ApplicationsFlowModule, ApplicationsFlowProjectsContext, ApplicationsFlowProjectsElementComponent, ApplicationsFlowProjectsElementState, ApplicationsFlowService, ApplicationsFlowState, ApplicationsFlowStateContext, BaseFormConfigModel, CardFormConfigModel, CreateProjectWizardComponent, DevSettingsPresetModel, DomainModel, DynamicTabsModel, FormActionsModel, FormModel, FormValuesModel, FormsService, GitAuthComponent, GitHubBranch, GitHubOrganization, GitHubRepository, GitHubSetupState, GitHubWorkflowRun, HostingDetailsFormGroupComponent, NPMService, ProjectActionsModel, ProjectHostingDetails, ProjectHostingOption, ProjectHostingOptionInput, ProjectNameComponent, ProjectService, RootDirectoryComponent, SELECTOR_APPLICATIONS_FLOW_PROJECTS_ELEMENT, SourceControlFormControlsComponent, ThreeColumnComponent, UnpackLowCodeUnitRequest, ApplicationsFlowEventsService as ɵa, DynamicTabsComponent as ɵb, ProcessorDetailsFormComponent as ɵba, HeaderComponent as ɵc, ProjectTabsComponent as ɵd, GeneralComponent as ɵe, DomainsComponent as ɵf, ProjectItemsComponent as ɵg, BuildsComponent as ɵh, RecentActivitiesComponent as ɵi, FormCardComponent as ɵj, BaseFormComponent as ɵk, BaseFormTestComponent as ɵl, AppsFlowComponent as ɵm, DevOpsComponent as ɵn, DFSModifiersComponent as ɵo, NpmPackageSelectComponent as ɵp, ColumnInfoCardComponent as ɵq, SlottedCardComponent as ɵr, ProjectInfoCardComponent as ɵs, AnalyticsCardComponent as ɵt, FeedCardSmComponent as ɵu, GhControlComponent as ɵv, MainFeedCardComponent as ɵw, TwoColumnHeaderComponent as ɵx, CardCarouselComponent as ɵy, SecurityToggleComponent as ɵz };
|
|
4384
|
+
export { ActionsModel, ApplicationsFlowModule, ApplicationsFlowProjectsContext, ApplicationsFlowProjectsElementComponent, ApplicationsFlowProjectsElementState, ApplicationsFlowService, ApplicationsFlowState, ApplicationsFlowStateContext, BaseFormConfigModel, CardFormConfigModel, CreateProjectWizardComponent, DevSettingsPresetModel, DomainModel, DynamicTabsModel, FormActionsModel, FormModel, FormValuesModel, FormsService, GitAuthComponent, GitHubBranch, GitHubOrganization, GitHubRepository, GitHubSetupState, GitHubWorkflowRun, HostingDetailsFormGroupComponent, NPMService, ProjectActionsModel, ProjectHostingDetails, ProjectHostingOption, ProjectHostingOptionInput, ProjectNameComponent, ProjectService, RootDirectoryComponent, SELECTOR_APPLICATIONS_FLOW_PROJECTS_ELEMENT, SourceControlFormControlsComponent, ThreeColumnComponent, UnpackLowCodeUnitRequest, ApplicationsFlowEventsService as ɵa, DynamicTabsComponent as ɵb, ProcessorDetailsFormComponent as ɵba, SourceControlFormComponent as ɵbb, HeaderComponent as ɵc, ProjectTabsComponent as ɵd, GeneralComponent as ɵe, DomainsComponent as ɵf, ProjectItemsComponent as ɵg, BuildsComponent as ɵh, RecentActivitiesComponent as ɵi, FormCardComponent as ɵj, BaseFormComponent as ɵk, BaseFormTestComponent as ɵl, AppsFlowComponent as ɵm, DevOpsComponent as ɵn, DFSModifiersComponent as ɵo, NpmPackageSelectComponent as ɵp, ColumnInfoCardComponent as ɵq, SlottedCardComponent as ɵr, ProjectInfoCardComponent as ɵs, AnalyticsCardComponent as ɵt, FeedCardSmComponent as ɵu, GhControlComponent as ɵv, MainFeedCardComponent as ɵw, TwoColumnHeaderComponent as ɵx, CardCarouselComponent as ɵy, SecurityToggleComponent as ɵz };
|
|
4322
4385
|
//# sourceMappingURL=lowcodeunit-applications-flow-common.js.map
|