@lowcodeunit/applications-flow-common 1.36.10-krakyn-app → 1.36.13-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/state-config-form/state-config-form.component.mjs +22 -8
- package/esm2020/lib/dialogs/build-pipeline-dialog/build-pipeline-dialog.component.mjs +1 -1
- package/esm2020/lib/dialogs/feed-header-dialog/feed-header-dialog.component.mjs +7 -6
- package/esm2020/lib/dialogs/source-control-dialog/source-control-dialog.component.mjs +1 -1
- package/esm2020/lib/dialogs/state-config-dialog/state-config-dialog.component.mjs +2 -2
- package/esm2020/lib/elements/feed-header/feed-header.component.mjs +10 -6
- package/esm2020/lib/elements/projects/controls/git-auth/git-auth.component.mjs +14 -7
- package/fesm2015/lowcodeunit-applications-flow-common.mjs +54 -30
- package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs +50 -29
- package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/lib/controls/state-config-form/state-config-form.component.d.ts +6 -3
- package/lib/elements/feed-header/feed-header.component.d.ts +1 -0
- package/lib/elements/projects/controls/git-auth/git-auth.component.d.ts +2 -1
- package/package.json +1 -1
|
@@ -1,14 +1,17 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { AbstractControl, FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
+
import { EaCDataToken } from '@semanticjs/common';
|
|
3
4
|
import { EaCService } from '../../services/eac.service';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class StateConfigFormComponent implements OnInit {
|
|
6
7
|
protected eacSvc: EaCService;
|
|
7
8
|
formbldr: FormBuilder;
|
|
8
9
|
AppLookup: string;
|
|
9
|
-
Config:
|
|
10
|
-
get
|
|
11
|
-
|
|
10
|
+
Config: EaCDataToken;
|
|
11
|
+
get StateConfigNameFormControl(): AbstractControl;
|
|
12
|
+
get StateConfigDescriptionFormControl(): AbstractControl;
|
|
13
|
+
get StateConfigValueFormControl(): AbstractControl;
|
|
14
|
+
StateConfigForm: FormGroup;
|
|
12
15
|
constructor(eacSvc: EaCService, formbldr: FormBuilder);
|
|
13
16
|
ngOnInit(): void;
|
|
14
17
|
SaveStateConfig(): void;
|
|
@@ -10,6 +10,7 @@ export declare class FeedHeaderComponent implements OnInit {
|
|
|
10
10
|
SourceControlLookup: string;
|
|
11
11
|
get ActiveEnvironmentLookup(): string;
|
|
12
12
|
get FeedHeaderActions(): Array<FeedItemAction>;
|
|
13
|
+
get HasGHConnection(): boolean;
|
|
13
14
|
get State(): ApplicationsFlowState;
|
|
14
15
|
ModalHeader: string;
|
|
15
16
|
SkeletonEffect: string;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { OnInit, AfterViewInit } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class GitAuthComponent implements OnInit, AfterViewInit {
|
|
4
|
+
Size: string;
|
|
4
5
|
ConnectClicked: boolean;
|
|
5
6
|
constructor();
|
|
6
7
|
ngAfterViewInit(): void;
|
|
@@ -10,5 +11,5 @@ export declare class GitAuthComponent implements OnInit, AfterViewInit {
|
|
|
10
11
|
*/
|
|
11
12
|
ConnectGitHubProvider(): void;
|
|
12
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<GitAuthComponent, never>;
|
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GitAuthComponent, "lcu-git-auth", never, {}, {}, never, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GitAuthComponent, "lcu-git-auth", never, { "Size": "size"; }, {}, never, never>;
|
|
14
15
|
}
|