@lowcodeunit/applications-flow-common 1.33.213-lets-get-social-ish → 1.33.216-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/esm2020/lib/controls/processor-details-form/processor-details-form.component.mjs +44 -26
- package/esm2020/lib/dialogs/upgrade-dialog/upgrade-dialog.component.mjs +3 -3
- package/esm2020/lib/elements/slotted-card/slotted-card.component.mjs +11 -3
- package/fesm2015/lowcodeunit-applications-flow-common.mjs +133 -106
- package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs +129 -104
- package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/lib/controls/processor-details-form/processor-details-form.component.d.ts +7 -1
- package/lib/elements/slotted-card/slotted-card.component.d.ts +3 -1
- package/package.json +1 -1
|
@@ -2,10 +2,12 @@ import { EventEmitter, OnInit } from '@angular/core';
|
|
|
2
2
|
import { AbstractControl, FormBuilder, FormGroup } from '@angular/forms';
|
|
3
3
|
import { MatSelectChange } from '@angular/material/select';
|
|
4
4
|
import { EaCApplicationAsCode, EaCEnvironmentAsCode, EaCSourceControl } from '@semanticjs/common';
|
|
5
|
+
import { ApplicationsFlowService } from '../../services/applications-flow.service';
|
|
5
6
|
import { EaCService } from '../../services/eac.service';
|
|
6
7
|
import { ApplicationsFlowState } from '../../state/applications-flow.state';
|
|
7
8
|
import * as i0 from "@angular/core";
|
|
8
9
|
export declare class ProcessorDetailsFormComponent implements OnInit {
|
|
10
|
+
protected appsFlowSvc: ApplicationsFlowService;
|
|
9
11
|
protected formBldr: FormBuilder;
|
|
10
12
|
protected eacSvc: EaCService;
|
|
11
13
|
EditingApplication: EaCApplicationAsCode;
|
|
@@ -17,6 +19,7 @@ export declare class ProcessorDetailsFormComponent implements OnInit {
|
|
|
17
19
|
get APIRootFormControl(): AbstractControl;
|
|
18
20
|
get Environment(): EaCEnvironmentAsCode;
|
|
19
21
|
get BuildFormControl(): AbstractControl;
|
|
22
|
+
get BuildPathFormControl(): AbstractControl;
|
|
20
23
|
get ClientIDFormControl(): AbstractControl;
|
|
21
24
|
get ClientSecretFormControl(): AbstractControl;
|
|
22
25
|
get DefaultFileFormControl(): AbstractControl;
|
|
@@ -39,22 +42,25 @@ export declare class ProcessorDetailsFormComponent implements OnInit {
|
|
|
39
42
|
get TokenLookupFormControl(): AbstractControl;
|
|
40
43
|
get VersionFormControl(): AbstractControl;
|
|
41
44
|
get ZipFileFormControl(): AbstractControl;
|
|
45
|
+
BuildPathOptions: string[];
|
|
42
46
|
IsPermanent: boolean;
|
|
43
47
|
IsPreserve: boolean;
|
|
44
48
|
LCUType: string;
|
|
45
49
|
redirectTooltip: string;
|
|
46
50
|
ProcessorDetailsFormGroup: FormGroup;
|
|
47
51
|
ProcessorType: string;
|
|
48
|
-
constructor(formBldr: FormBuilder, eacSvc: EaCService);
|
|
52
|
+
constructor(appsFlowSvc: ApplicationsFlowService, formBldr: FormBuilder, eacSvc: EaCService);
|
|
49
53
|
ngOnInit(): void;
|
|
50
54
|
CreateNewApplication(): void;
|
|
51
55
|
DetermineTooltipText(): void;
|
|
52
56
|
SaveProcessorDetails(): void;
|
|
53
57
|
SetEditingApplication(appLookup: string): void;
|
|
58
|
+
SourceControlChanged(event: any): void;
|
|
54
59
|
ProcessorTypeChanged(event: MatSelectChange): void;
|
|
55
60
|
LCUTypeChanged(event: MatSelectChange): void;
|
|
56
61
|
protected cleanupLcuTypeSubForm(): void;
|
|
57
62
|
protected cleanupProcessorTypeSubForm(): void;
|
|
63
|
+
protected listBuildPaths(): void;
|
|
58
64
|
protected setupLcuTypeSubForm(): void;
|
|
59
65
|
protected setupProcessorDetailsForm(): void;
|
|
60
66
|
protected setupLCUGitHubForm(): void;
|
|
@@ -8,6 +8,8 @@ export declare class SlottedCardComponent implements OnInit {
|
|
|
8
8
|
ActionPath: string;
|
|
9
9
|
Icon: string;
|
|
10
10
|
MainSlotDescription: string;
|
|
11
|
+
MainIcon: string;
|
|
12
|
+
ShowMainIcon: boolean;
|
|
11
13
|
Title: string;
|
|
12
14
|
SecondarySlotDescription: string;
|
|
13
15
|
MainActionClicked: EventEmitter<{}>;
|
|
@@ -17,5 +19,5 @@ export declare class SlottedCardComponent implements OnInit {
|
|
|
17
19
|
ngOnInit(): void;
|
|
18
20
|
MainActionClickEvent(): void;
|
|
19
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<SlottedCardComponent, never>;
|
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SlottedCardComponent, "lcu-slotted-card", never, { "ActionText": "action-text"; "ActionPath": "action-path"; "Icon": "icon"; "MainSlotDescription": "main-slot-description"; "Title": "title"; "SecondarySlotDescription": "secondary-slot-description"; }, { "MainActionClicked": "main-action-clicked"; }, never, ["*", "*", "[secondary]"]>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SlottedCardComponent, "lcu-slotted-card", never, { "ActionText": "action-text"; "ActionPath": "action-path"; "Icon": "icon"; "MainSlotDescription": "main-slot-description"; "MainIcon": "main-icon"; "ShowMainIcon": "show-main-icon"; "Title": "title"; "SecondarySlotDescription": "secondary-slot-description"; }, { "MainActionClicked": "main-action-clicked"; }, never, ["*", "*", "[secondary]"]>;
|
|
21
23
|
}
|