@lowcodeunit/applications-flow-common 1.39.62-integration → 1.39.64-exceptions
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/esm2020/lib/controls/devops-source-control-form/devops-source-control-form.component.mjs +15 -8
- package/esm2020/lib/controls/processor-details-form/processor-details-form.component.mjs +27 -4
- package/esm2020/lib/dialogs/source-control-dialog/source-control-dialog.component.mjs +3 -3
- package/fesm2015/lowcodeunit-applications-flow-common.mjs +53 -23
- package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs +42 -12
- package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/lib/controls/devops-source-control-form/devops-source-control-form.component.d.ts +2 -3
- package/lib/controls/processor-details-form/processor-details-form.component.d.ts +2 -0
- package/package.json +1 -1
@@ -1,4 +1,4 @@
|
|
1
|
-
import {
|
1
|
+
import { ElementRef, EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
2
2
|
import { AbstractControl, FormBuilder, FormGroup } from '@angular/forms';
|
3
3
|
import { MatAutocompleteSelectedEvent } from '@angular/material/autocomplete';
|
4
4
|
import { MatChipInputEvent } from '@angular/material/chips';
|
@@ -9,7 +9,7 @@ import { ApplicationsFlowService } from '../../services/applications-flow.servic
|
|
9
9
|
import { EaCService } from '../../services/eac.service';
|
10
10
|
import { GitHubBranch, GitHubOrganization, GitHubRepository, ProjectHostingDetails } from '../../state/applications-flow.state';
|
11
11
|
import * as i0 from "@angular/core";
|
12
|
-
export declare class DevopsSourceControlFormComponent implements
|
12
|
+
export declare class DevopsSourceControlFormComponent implements OnDestroy, OnInit {
|
13
13
|
protected appsFlowSvc: ApplicationsFlowService;
|
14
14
|
protected eacSvc: EaCService;
|
15
15
|
protected formBuilder: FormBuilder;
|
@@ -51,7 +51,6 @@ export declare class DevopsSourceControlFormComponent implements AfterViewInit,
|
|
51
51
|
SkeletonEffect: string;
|
52
52
|
readonly SeparatorKeysCodes: readonly [13, 188];
|
53
53
|
constructor(appsFlowSvc: ApplicationsFlowService, eacSvc: EaCService, formBuilder: FormBuilder);
|
54
|
-
ngAfterViewInit(): void;
|
55
54
|
ngOnDestroy(): void;
|
56
55
|
ngOnInit(): void;
|
57
56
|
ngOnChanges(): void;
|
@@ -46,6 +46,7 @@ export declare class ProcessorDetailsFormComponent implements OnInit {
|
|
46
46
|
IsSourceControlValid: boolean;
|
47
47
|
LCUType: string;
|
48
48
|
redirectTooltip: string;
|
49
|
+
RedirectError: string;
|
49
50
|
SourceControls: {
|
50
51
|
[lookup: string]: EaCSourceControl;
|
51
52
|
};
|
@@ -61,6 +62,7 @@ export declare class ProcessorDetailsFormComponent implements OnInit {
|
|
61
62
|
SourceControlChanged(event: any): void;
|
62
63
|
ProcessorTypeChanged(event: MatSelectChange): void;
|
63
64
|
LCUTypeChanged(event: MatSelectChange): void;
|
65
|
+
VerifyRedirect(): void;
|
64
66
|
protected cleanupLcuTypeSubForm(): void;
|
65
67
|
protected cleanupProcessorTypeSubForm(): void;
|
66
68
|
protected listBuildPaths(): void;
|