@lowcodeunit/applications-flow-common 1.33.215-lets-get-social-ish → 1.33.218-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/main-feed-card/main-feed-card.component.mjs +44 -12
- package/fesm2015/lowcodeunit-applications-flow-common.mjs +735 -683
- package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs +728 -681
- 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/main-feed-card/main-feed-card.component.d.ts +11 -2
- 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;
|
|
@@ -1,17 +1,26 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { FeedItem, FeedItemAction } from '../../models/user-feed.model';
|
|
3
3
|
import { EaCService } from '../../services/eac.service';
|
|
4
|
+
import { MatDialog } from '@angular/material/dialog';
|
|
5
|
+
import { EaCEnvironmentAsCode } from '@semanticjs/common';
|
|
6
|
+
import { ApplicationsFlowState } from '../../state/applications-flow.state';
|
|
4
7
|
import * as i0 from "@angular/core";
|
|
5
8
|
export declare class MainFeedCardComponent implements OnInit {
|
|
6
9
|
protected eacSvc: EaCService;
|
|
10
|
+
protected dialog: MatDialog;
|
|
11
|
+
get ActiveEnvironment(): EaCEnvironmentAsCode;
|
|
12
|
+
get ActiveEnvironmentLookup(): string;
|
|
13
|
+
get Environment(): EaCEnvironmentAsCode;
|
|
7
14
|
FeedItem: FeedItem;
|
|
8
15
|
get Icon(): string;
|
|
9
16
|
get IconColor(): string;
|
|
10
|
-
|
|
17
|
+
get State(): ApplicationsFlowState;
|
|
18
|
+
constructor(eacSvc: EaCService, dialog: MatDialog);
|
|
11
19
|
ngOnInit(): void;
|
|
12
20
|
CalculateTimelapse(timestamp: Date): string;
|
|
13
21
|
HandleAction(action: FeedItemAction): void;
|
|
14
|
-
|
|
22
|
+
OpenSourceControlDialog(scLookup: string): void;
|
|
23
|
+
protected handleRefresh(): void;
|
|
15
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<MainFeedCardComponent, never>;
|
|
16
25
|
static ɵcmp: i0.ɵɵComponentDeclaration<MainFeedCardComponent, "lcu-main-feed-card", never, { "FeedItem": "feed-item"; }, {}, never, never>;
|
|
17
26
|
}
|