@lowcodeunit/applications-flow-common 1.33.176-lets-get-social-ish → 1.33.177-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/security-toggle/security-toggle.component.mjs +21 -19
- package/esm2020/lib/elements/project-info-card/project-info-card.component.mjs +17 -15
- package/fesm2015/lowcodeunit-applications-flow-common.mjs +105 -103
- package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs +105 -103
- package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/lib/controls/security-toggle/security-toggle.component.d.ts +6 -3
- package/lib/elements/project-info-card/project-info-card.component.d.ts +6 -3
- package/package.json +1 -1
|
@@ -1,22 +1,25 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { AbstractControl, FormBuilder, FormGroup } from '@angular/forms';
|
|
3
3
|
import { EaCApplicationAsCode } from '@semanticjs/common';
|
|
4
|
+
import { EaCService } from '../../services/eac.service';
|
|
5
|
+
import { ApplicationsFlowState } from '../../state/applications-flow.state';
|
|
4
6
|
import * as i0 from "@angular/core";
|
|
5
7
|
export declare class SecurityToggleComponent implements OnInit {
|
|
8
|
+
protected eacSvc: EaCService;
|
|
6
9
|
protected formBldr: FormBuilder;
|
|
7
10
|
EditingApplication: EaCApplicationAsCode;
|
|
8
|
-
Loading: boolean;
|
|
9
11
|
SaveFormEvent: EventEmitter<{}>;
|
|
10
12
|
get IsPrivateFormControl(): AbstractControl;
|
|
11
13
|
get IsTriggerSignInFormControl(): AbstractControl;
|
|
14
|
+
get State(): ApplicationsFlowState;
|
|
12
15
|
SecurityFormGroup: FormGroup;
|
|
13
16
|
ProcessorType: string;
|
|
14
17
|
SkeletonEffect: string;
|
|
15
|
-
constructor(formBldr: FormBuilder);
|
|
18
|
+
constructor(eacSvc: EaCService, formBldr: FormBuilder);
|
|
16
19
|
ngOnInit(): void;
|
|
17
20
|
SecuritySubmit(): void;
|
|
18
21
|
protected setupSecurityFormGroup(): void;
|
|
19
22
|
protected setupSecurityForm(): void;
|
|
20
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<SecurityToggleComponent, never>;
|
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SecurityToggleComponent, "lcu-security-toggle", never, { "EditingApplication": "editing-application";
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SecurityToggleComponent, "lcu-security-toggle", never, { "EditingApplication": "editing-application"; }, { "SaveFormEvent": "save-form-event"; }, never, never>;
|
|
22
25
|
}
|
|
@@ -1,20 +1,23 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { EaCService } from '../../services/eac.service';
|
|
3
|
+
import { ApplicationsFlowState } from '../../state/applications-flow.state';
|
|
2
4
|
import * as i0 from "@angular/core";
|
|
3
5
|
export declare class ProjectInfoCardComponent implements OnInit {
|
|
6
|
+
protected eacSvc: EaCService;
|
|
4
7
|
Description: string;
|
|
5
8
|
Image: string;
|
|
6
9
|
IsEditable: boolean;
|
|
7
10
|
IsShareable: boolean;
|
|
8
|
-
Loading: boolean;
|
|
9
11
|
Name: string;
|
|
10
12
|
Subtext: string;
|
|
11
13
|
LeftClickEvent: EventEmitter<{}>;
|
|
12
14
|
RightClickEvent: EventEmitter<{}>;
|
|
15
|
+
get State(): ApplicationsFlowState;
|
|
13
16
|
SkeletonEffect: string;
|
|
14
|
-
constructor();
|
|
17
|
+
constructor(eacSvc: EaCService);
|
|
15
18
|
ngOnInit(): void;
|
|
16
19
|
LeftIconClicked(): void;
|
|
17
20
|
RightIconClicked(): void;
|
|
18
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<ProjectInfoCardComponent, never>;
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ProjectInfoCardComponent, "lcu-project-info-card", never, { "Description": "description"; "Image": "image"; "IsEditable": "is-editable"; "IsShareable": "is-shareable"; "
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProjectInfoCardComponent, "lcu-project-info-card", never, { "Description": "description"; "Image": "image"; "IsEditable": "is-editable"; "IsShareable": "is-shareable"; "Name": "name"; "Subtext": "subtext"; }, { "LeftClickEvent": "left-click-event"; "RightClickEvent": "right-click-event"; }, never, ["[stats]", "[action]"]>;
|
|
20
23
|
}
|