@lowcodeunit/applications-flow-common 1.33.151-angular-13 → 1.33.154-social-ish-angular-13-test
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 +22 -12
- package/esm2020/lib/controls/security-toggle/security-toggle.component.mjs +14 -10
- package/esm2020/lib/elements/form-card/form-card.component.mjs +2 -2
- package/esm2020/lib/elements/project-info-card/project-info-card.component.mjs +10 -4
- package/esm2020/lib/elements/projects/controls/tabs/apps-flow/apps-flow.component.mjs +3 -3
- package/esm2020/lib/elements/projects/controls/tabs/domains/domains.component.mjs +6 -5
- package/esm2020/lib/elements/slotted-card/slotted-card.component.mjs +9 -5
- package/esm2020/lib/services/applications-flow.service.mjs +4 -2
- package/fesm2015/lowcodeunit-applications-flow-common.mjs +47 -21
- package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs +46 -21
- package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/lib/controls/processor-details-form/processor-details-form.component.d.ts +4 -3
- package/lib/controls/security-toggle/security-toggle.component.d.ts +2 -1
- package/lib/elements/project-info-card/project-info-card.component.d.ts +2 -1
- package/lib/elements/slotted-card/slotted-card.component.d.ts +2 -1
- package/package.json +1 -1
|
@@ -2,7 +2,6 @@ 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, EaCSourceControl } from '@semanticjs/common';
|
|
5
|
-
import { SourceControlFormControlsComponent } from '../../elements/projects/controls/forms/source-control/source-control.component';
|
|
6
5
|
import { EaCService } from '../../services/eac.service';
|
|
7
6
|
import * as i0 from "@angular/core";
|
|
8
7
|
export declare class ProcessorDetailsFormComponent implements OnInit {
|
|
@@ -10,9 +9,10 @@ export declare class ProcessorDetailsFormComponent implements OnInit {
|
|
|
10
9
|
protected eacSvc: EaCService;
|
|
11
10
|
EditingApplication: EaCApplicationAsCode;
|
|
12
11
|
EditingApplicationLookup: string;
|
|
12
|
+
Loading: boolean;
|
|
13
|
+
SourceControlLookups: Array<string>;
|
|
13
14
|
ProjectLookup: string;
|
|
14
15
|
SaveFormEvent: EventEmitter<{}>;
|
|
15
|
-
SourceControlFormControls: SourceControlFormControlsComponent;
|
|
16
16
|
get APIRootFormControl(): AbstractControl;
|
|
17
17
|
get BuildFormControl(): AbstractControl;
|
|
18
18
|
get ClientIDFormControl(): AbstractControl;
|
|
@@ -28,6 +28,7 @@ export declare class ProcessorDetailsFormComponent implements OnInit {
|
|
|
28
28
|
get RedirectFormControl(): AbstractControl;
|
|
29
29
|
get ScopesFormControl(): AbstractControl;
|
|
30
30
|
get SecurityFormControl(): AbstractControl;
|
|
31
|
+
get SourceControlFormControl(): AbstractControl;
|
|
31
32
|
get SPARootFormControl(): AbstractControl;
|
|
32
33
|
get TokenLookupFormControl(): AbstractControl;
|
|
33
34
|
get VersionFormControl(): AbstractControl;
|
|
@@ -63,5 +64,5 @@ export declare class ProcessorDetailsFormComponent implements OnInit {
|
|
|
63
64
|
protected setupDfsForm(): void;
|
|
64
65
|
protected setupProcessorTypeSubForm(): void;
|
|
65
66
|
static ɵfac: i0.ɵɵFactoryDeclaration<ProcessorDetailsFormComponent, never>;
|
|
66
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ProcessorDetailsFormComponent, "lcu-processor-details-form", never, { "EditingApplication": "editing-application"; "EditingApplicationLookup": "editing-application-lookup"; "ProjectLookup": "project-lookup"; }, { "SaveFormEvent": "save-form-event"; }, never, never>;
|
|
67
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProcessorDetailsFormComponent, "lcu-processor-details-form", never, { "EditingApplication": "editing-application"; "EditingApplicationLookup": "editing-application-lookup"; "Loading": "loading"; "SourceControlLookups": "source-control-lookups"; "ProjectLookup": "project-lookup"; }, { "SaveFormEvent": "save-form-event"; }, never, never>;
|
|
67
68
|
}
|
|
@@ -5,6 +5,7 @@ import * as i0 from "@angular/core";
|
|
|
5
5
|
export declare class SecurityToggleComponent implements OnInit {
|
|
6
6
|
protected formBldr: FormBuilder;
|
|
7
7
|
EditingApplication: EaCApplicationAsCode;
|
|
8
|
+
Loading: boolean;
|
|
8
9
|
SaveFormEvent: EventEmitter<{}>;
|
|
9
10
|
get IsPrivateFormControl(): AbstractControl;
|
|
10
11
|
get IsTriggerSignInFormControl(): AbstractControl;
|
|
@@ -16,5 +17,5 @@ export declare class SecurityToggleComponent implements OnInit {
|
|
|
16
17
|
protected setupSecurityFormGroup(): void;
|
|
17
18
|
protected setupSecurityForm(): void;
|
|
18
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<SecurityToggleComponent, never>;
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SecurityToggleComponent, "lcu-security-toggle", never, { "EditingApplication": "editing-application"; }, { "SaveFormEvent": "save-form-event"; }, never, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SecurityToggleComponent, "lcu-security-toggle", never, { "EditingApplication": "editing-application"; "Loading": "loading"; }, { "SaveFormEvent": "save-form-event"; }, never, never>;
|
|
20
21
|
}
|
|
@@ -4,6 +4,7 @@ export declare class ProjectInfoCardComponent implements OnInit {
|
|
|
4
4
|
Description: string;
|
|
5
5
|
Image: string;
|
|
6
6
|
IsEditable: boolean;
|
|
7
|
+
IsShareable: boolean;
|
|
7
8
|
Loading: boolean;
|
|
8
9
|
Name: string;
|
|
9
10
|
Subtext: string;
|
|
@@ -14,5 +15,5 @@ export declare class ProjectInfoCardComponent implements OnInit {
|
|
|
14
15
|
LeftIconClicked(): void;
|
|
15
16
|
RightIconClicked(): void;
|
|
16
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<ProjectInfoCardComponent, never>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ProjectInfoCardComponent, "lcu-project-info-card", never, { "Description": "description"; "Image": "image"; "IsEditable": "is-editable"; "Loading": "loading"; "Name": "name"; "Subtext": "subtext"; }, { "LeftClickEvent": "left-click-event"; "RightClickEvent": "right-click-event"; }, never, ["[stats]", "[promo]", "[action]"]>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProjectInfoCardComponent, "lcu-project-info-card", never, { "Description": "description"; "Image": "image"; "IsEditable": "is-editable"; "IsShareable": "is-shareable"; "Loading": "loading"; "Name": "name"; "Subtext": "subtext"; }, { "LeftClickEvent": "left-click-event"; "RightClickEvent": "right-click-event"; }, never, ["[stats]", "[promo]", "[action]"]>;
|
|
18
19
|
}
|
|
@@ -4,6 +4,7 @@ export declare class SlottedCardComponent implements OnInit {
|
|
|
4
4
|
ActionText: string;
|
|
5
5
|
ActionPath: string;
|
|
6
6
|
Icon: string;
|
|
7
|
+
Loading: boolean;
|
|
7
8
|
MainSlotDescription: string;
|
|
8
9
|
Title: string;
|
|
9
10
|
SecondarySlotDescription: string;
|
|
@@ -12,5 +13,5 @@ export declare class SlottedCardComponent implements OnInit {
|
|
|
12
13
|
ngOnInit(): void;
|
|
13
14
|
MainActionClickEvent(): void;
|
|
14
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<SlottedCardComponent, never>;
|
|
15
|
-
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]"]>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SlottedCardComponent, "lcu-slotted-card", never, { "ActionText": "action-text"; "ActionPath": "action-path"; "Icon": "icon"; "Loading": "loading"; "MainSlotDescription": "main-slot-description"; "Title": "title"; "SecondarySlotDescription": "secondary-slot-description"; }, { "MainActionClicked": "main-action-clicked"; }, never, ["*", "[secondary]"]>;
|
|
16
17
|
}
|