@lowcodeunit/applications-flow-common 0.0.2 → 0.0.4
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/lcu.api.mjs +80 -0
- package/esm2020/lib/applications-flow.module.mjs +352 -0
- package/esm2020/lib/controls/build-pipeline-form/build-pipeline-form.component.mjs +251 -0
- package/esm2020/lib/controls/devops-source-control-form/devops-source-control-form.component.mjs +432 -0
- package/esm2020/lib/controls/edit-application-form/edit-application-form.component.mjs +110 -0
- package/esm2020/lib/controls/processor-details-form/processor-details-form.component.mjs +432 -0
- package/esm2020/lib/controls/security-toggle/security-toggle.component.mjs +61 -0
- package/esm2020/lib/controls/source-control-form/source-control-form.component.mjs +69 -0
- package/esm2020/lib/dialogs/build-pipeline-dialog/build-pipeline-dialog.component.mjs +32 -0
- package/esm2020/lib/dialogs/custom-domain-dialog/custom-domain-dialog.component.mjs +35 -0
- package/esm2020/lib/dialogs/edit-application-dialog/edit-application-dialog.component.mjs +33 -0
- package/esm2020/lib/dialogs/new-application-dialog/new-application-dialog.component.mjs +170 -0
- package/esm2020/lib/dialogs/processor-details-dialog/processor-details-dialog.component.mjs +53 -0
- package/esm2020/lib/dialogs/source-control-dialog/source-control-dialog.component.mjs +29 -0
- package/esm2020/lib/dialogs/upgrade-dialog/upgrade-dialog.component.mjs +23 -0
- package/esm2020/lib/elements/analytics-card/analytics-card.component.mjs +28 -0
- package/esm2020/lib/elements/base-form/base-form.component.mjs +57 -0
- package/esm2020/lib/elements/breadcrumb/breadcrumb.component.mjs +124 -0
- package/esm2020/lib/elements/card-carousel/card-carousel.component.mjs +70 -0
- package/esm2020/lib/elements/dynamic-tabs/dynamic-tabs.component.mjs +75 -0
- package/esm2020/lib/elements/feed-card-sm/feed-card-sm.component.mjs +42 -0
- package/esm2020/lib/elements/flow-tool/flow-tool.component.mjs +75 -0
- package/esm2020/lib/elements/form-card/form-card.component.mjs +33 -0
- package/esm2020/lib/elements/gh-control/gh-control.component.mjs +78 -0
- package/esm2020/lib/elements/main-feed-card/main-feed-card.component.mjs +128 -0
- package/esm2020/lib/elements/project-info-card/project-info-card.component.mjs +76 -0
- package/esm2020/lib/elements/projects/controls/builds/builds.component.mjs +32 -0
- package/esm2020/lib/elements/projects/controls/create-project-wizard/create-project-wizard.component.mjs +145 -0
- package/esm2020/lib/elements/projects/controls/forms/source-control/source-control.component.mjs +285 -0
- package/esm2020/lib/elements/projects/controls/git-auth/git-auth.component.mjs +26 -0
- package/esm2020/lib/elements/projects/controls/header/header.component.mjs +83 -0
- package/esm2020/lib/elements/projects/controls/hosting-details-form-group/hosting-details-form-group.component.mjs +118 -0
- package/esm2020/lib/elements/projects/controls/project-items/project-items.component.mjs +54 -0
- package/esm2020/lib/elements/projects/controls/project-tabs/project-tabs.component.mjs +103 -0
- package/esm2020/lib/elements/projects/controls/recent-activities/recent-activities.component.mjs +14 -0
- package/esm2020/lib/elements/projects/controls/tabs/apps-flow/apps-flow.component.mjs +561 -0
- package/esm2020/lib/elements/projects/controls/tabs/apps-flow/npm-package-select/npm-package-select.component.mjs +72 -0
- package/esm2020/lib/elements/projects/controls/tabs/devops/devops.component.mjs +242 -0
- package/esm2020/lib/elements/projects/controls/tabs/dfs-modifiers/dfs-modifiers.component.mjs +179 -0
- package/esm2020/lib/elements/projects/controls/tabs/domains/domains.component.mjs +140 -0
- package/esm2020/lib/elements/projects/controls/tabs/general/forms/base-form-test/base-form-test.component.mjs +90 -0
- package/esm2020/lib/elements/projects/controls/tabs/general/forms/project-details/project-details.component.mjs +142 -0
- package/esm2020/lib/elements/projects/controls/tabs/general/forms/root-directory/root-directory.component.mjs +124 -0
- package/esm2020/lib/elements/projects/controls/tabs/general/general.component.mjs +40 -0
- package/esm2020/lib/elements/projects/projects.component.mjs +91 -0
- package/esm2020/lib/elements/skeleton-feed-card/skeleton-feed-card.component.mjs +20 -0
- package/esm2020/lib/elements/slotted-card/slotted-card.component.mjs +60 -0
- package/esm2020/lib/elements/three-column/three-column.component.mjs +30 -0
- package/esm2020/lib/elements/two-column-header/two-column-header.component.mjs +15 -0
- package/esm2020/lib/models/actions.model.mjs +3 -0
- package/esm2020/lib/models/base-form-config.model.mjs +6 -0
- package/esm2020/lib/models/card-form-config.model.mjs +6 -0
- package/esm2020/lib/models/dev-settings-preset.model.mjs +3 -0
- package/esm2020/lib/models/domain.model.mjs +3 -0
- package/esm2020/lib/models/dynamic-tabs.model.mjs +6 -0
- package/esm2020/lib/models/form-actions.model.mjs +3 -0
- package/esm2020/lib/models/form.model.mjs +6 -0
- package/esm2020/lib/models/form.values.model.mjs +11 -0
- package/esm2020/lib/models/project-actions.model.mjs +6 -0
- package/esm2020/lib/models/user-feed.model.mjs +12 -0
- package/esm2020/lib/services/applications-flow.service.mjs +142 -0
- package/esm2020/lib/services/eac.service.mjs +183 -0
- package/esm2020/lib/services/forms.service.mjs +132 -0
- package/esm2020/lib/services/npm.service.mjs +77 -0
- package/esm2020/lib/services/project.service.mjs +326 -0
- package/esm2020/lib/state/applications-flow-state.context.mjs +36 -0
- package/esm2020/lib/state/applications-flow.state.mjs +72 -0
- package/esm2020/lowcodeunit-applications-flow-common.mjs +5 -0
- package/fesm2015/lowcodeunit-applications-flow-common.mjs +6156 -0
- package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -0
- package/fesm2020/lowcodeunit-applications-flow-common.mjs +6009 -0
- package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -0
- package/lcu.api.d.ts +58 -4
- package/lib/applications-flow.module.d.ts +58 -1
- package/lib/controls/build-pipeline-form/build-pipeline-form.component.d.ts +47 -0
- package/lib/controls/devops-source-control-form/devops-source-control-form.component.d.ts +86 -0
- package/lib/controls/edit-application-form/edit-application-form.component.d.ts +27 -0
- package/lib/controls/processor-details-form/processor-details-form.component.d.ts +80 -0
- package/lib/controls/security-toggle/security-toggle.component.d.ts +25 -0
- package/lib/controls/source-control-form/source-control-form.component.d.ts +27 -0
- package/lib/dialogs/build-pipeline-dialog/build-pipeline-dialog.component.d.ts +19 -0
- package/lib/dialogs/custom-domain-dialog/custom-domain-dialog.component.d.ts +22 -0
- package/lib/dialogs/edit-application-dialog/edit-application-dialog.component.d.ts +17 -0
- package/lib/dialogs/new-application-dialog/new-application-dialog.component.d.ts +35 -0
- package/lib/dialogs/processor-details-dialog/processor-details-dialog.component.d.ts +31 -0
- package/lib/dialogs/source-control-dialog/source-control-dialog.component.d.ts +18 -0
- package/lib/dialogs/upgrade-dialog/upgrade-dialog.component.d.ts +11 -0
- package/lib/elements/analytics-card/analytics-card.component.d.ts +11 -0
- package/lib/elements/base-form/base-form.component.d.ts +6 -4
- package/lib/elements/breadcrumb/breadcrumb.component.d.ts +38 -0
- package/lib/elements/card-carousel/card-carousel.component.d.ts +16 -0
- package/lib/elements/dynamic-tabs/dynamic-tabs.component.d.ts +7 -5
- package/lib/elements/feed-card-sm/feed-card-sm.component.d.ts +14 -0
- package/lib/elements/flow-tool/flow-tool.component.d.ts +28 -0
- package/lib/elements/form-card/form-card.component.d.ts +3 -1
- package/lib/elements/gh-control/gh-control.component.d.ts +19 -0
- package/lib/elements/main-feed-card/main-feed-card.component.d.ts +26 -0
- package/lib/elements/project-info-card/project-info-card.component.d.ts +26 -0
- package/lib/elements/projects/controls/builds/builds.component.d.ts +9 -13
- package/lib/elements/projects/controls/create-project-wizard/create-project-wizard.component.d.ts +15 -14
- package/lib/elements/projects/controls/forms/source-control/source-control.component.d.ts +63 -0
- package/lib/elements/projects/controls/git-auth/git-auth.component.d.ts +4 -1
- package/lib/elements/projects/controls/header/header.component.d.ts +22 -4
- package/lib/elements/projects/controls/hosting-details-form-group/hosting-details-form-group.component.d.ts +22 -4
- package/lib/elements/projects/controls/project-items/project-items.component.d.ts +29 -0
- package/lib/elements/projects/controls/project-tabs/project-tabs.component.d.ts +19 -4
- package/lib/elements/projects/controls/recent-activities/recent-activities.component.d.ts +3 -1
- package/lib/elements/projects/controls/tabs/apps-flow/apps-flow.component.d.ts +113 -0
- package/lib/elements/projects/controls/tabs/apps-flow/npm-package-select/npm-package-select.component.d.ts +23 -0
- package/lib/elements/projects/controls/tabs/devops/devops.component.d.ts +53 -0
- package/lib/elements/projects/controls/tabs/dfs-modifiers/dfs-modifiers.component.d.ts +51 -0
- package/lib/elements/projects/controls/tabs/domains/domains.component.d.ts +18 -8
- package/lib/elements/projects/controls/tabs/general/forms/base-form-test/base-form-test.component.d.ts +6 -4
- package/lib/elements/projects/controls/tabs/general/forms/project-details/project-details.component.d.ts +9 -6
- package/lib/elements/projects/controls/tabs/general/forms/root-directory/root-directory.component.d.ts +9 -6
- package/lib/elements/projects/controls/tabs/general/general.component.d.ts +8 -4
- package/lib/elements/projects/projects.component.d.ts +18 -22
- package/lib/elements/skeleton-feed-card/skeleton-feed-card.component.d.ts +9 -0
- package/lib/elements/slotted-card/slotted-card.component.d.ts +23 -0
- package/lib/elements/three-column/three-column.component.d.ts +11 -0
- package/lib/elements/two-column-header/two-column-header.component.d.ts +8 -0
- package/lib/models/actions.model.d.ts +0 -1
- package/lib/models/base-form-config.model.d.ts +0 -1
- package/lib/models/card-form-config.model.d.ts +0 -1
- package/lib/models/dev-settings-preset.model.d.ts +0 -1
- package/lib/models/domain.model.d.ts +0 -1
- package/lib/models/dynamic-tabs.model.d.ts +0 -1
- package/lib/models/form-actions.model.d.ts +0 -1
- package/lib/models/form.model.d.ts +0 -1
- package/lib/models/form.values.model.d.ts +0 -1
- package/lib/models/project-actions.model.d.ts +0 -1
- package/lib/models/user-feed.model.d.ts +42 -0
- package/lib/services/applications-flow.service.d.ts +20 -8
- package/lib/services/eac.service.d.ts +63 -0
- package/lib/services/forms.service.d.ts +3 -1
- package/lib/services/npm.service.d.ts +13 -0
- package/lib/services/project.service.d.ts +23 -7
- package/lib/state/applications-flow-state.context.d.ts +3 -1
- package/lib/state/applications-flow.state.d.ts +29 -38
- package/lowcodeunit-applications-flow-common.d.ts +1 -13
- package/package.json +20 -12
- package/bundles/lowcodeunit-applications-flow-common.umd.js +0 -2571
- package/bundles/lowcodeunit-applications-flow-common.umd.js.map +0 -1
- package/bundles/lowcodeunit-applications-flow-common.umd.min.js +0 -16
- package/bundles/lowcodeunit-applications-flow-common.umd.min.js.map +0 -1
- package/esm2015/lcu.api.js +0 -25
- package/esm2015/lib/applications-flow.module.js +0 -116
- package/esm2015/lib/elements/base-form/base-form.component.js +0 -61
- package/esm2015/lib/elements/dynamic-tabs/dynamic-tabs.component.js +0 -69
- package/esm2015/lib/elements/form-card/form-card.component.js +0 -22
- package/esm2015/lib/elements/projects/controls/builds/builds.component.js +0 -37
- package/esm2015/lib/elements/projects/controls/create-project-wizard/create-project-wizard.component.js +0 -207
- package/esm2015/lib/elements/projects/controls/git-auth/git-auth.component.js +0 -26
- package/esm2015/lib/elements/projects/controls/header/header.component.js +0 -19
- package/esm2015/lib/elements/projects/controls/hosting-details-form-group/hosting-details-form-group.component.js +0 -55
- package/esm2015/lib/elements/projects/controls/project-item/project-item.component.js +0 -39
- package/esm2015/lib/elements/projects/controls/project-settings/project-settings.component.js +0 -44
- package/esm2015/lib/elements/projects/controls/project-tabs/project-tabs.component.js +0 -39
- package/esm2015/lib/elements/projects/controls/recent-activities/recent-activities.component.js +0 -15
- package/esm2015/lib/elements/projects/controls/tabs/domains/domains.component.js +0 -108
- package/esm2015/lib/elements/projects/controls/tabs/general/forms/base-form-test/base-form-test.component.js +0 -86
- package/esm2015/lib/elements/projects/controls/tabs/general/forms/project-details/project-details.component.js +0 -122
- package/esm2015/lib/elements/projects/controls/tabs/general/forms/root-directory/root-directory.component.js +0 -109
- package/esm2015/lib/elements/projects/controls/tabs/general/forms/settings/settings.component.js +0 -238
- package/esm2015/lib/elements/projects/controls/tabs/general/general.component.js +0 -44
- package/esm2015/lib/elements/projects/projects.component.js +0 -145
- package/esm2015/lib/models/actions.model.js +0 -3
- package/esm2015/lib/models/base-form-config.model.js +0 -6
- package/esm2015/lib/models/card-form-config.model.js +0 -6
- package/esm2015/lib/models/dev-settings-preset.model.js +0 -3
- package/esm2015/lib/models/domain.model.js +0 -3
- package/esm2015/lib/models/dynamic-tabs.model.js +0 -6
- package/esm2015/lib/models/form-actions.model.js +0 -3
- package/esm2015/lib/models/form.model.js +0 -6
- package/esm2015/lib/models/form.values.model.js +0 -11
- package/esm2015/lib/models/project-actions.model.js +0 -6
- package/esm2015/lib/services/applications-flow-events.service.js +0 -28
- package/esm2015/lib/services/applications-flow.service.js +0 -96
- package/esm2015/lib/services/forms.service.js +0 -131
- package/esm2015/lib/services/project.service.js +0 -85
- package/esm2015/lib/state/applications-flow-state.context.js +0 -37
- package/esm2015/lib/state/applications-flow.state.js +0 -31
- package/esm2015/lowcodeunit-applications-flow-common.js +0 -17
- package/fesm2015/lowcodeunit-applications-flow-common.js +0 -1966
- package/fesm2015/lowcodeunit-applications-flow-common.js.map +0 -1
- package/lcu.api.d.ts.map +0 -1
- package/lib/applications-flow.module.d.ts.map +0 -1
- package/lib/elements/base-form/base-form.component.d.ts.map +0 -1
- package/lib/elements/dynamic-tabs/dynamic-tabs.component.d.ts.map +0 -1
- package/lib/elements/form-card/form-card.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/builds/builds.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/create-project-wizard/create-project-wizard.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/git-auth/git-auth.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/header/header.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/hosting-details-form-group/hosting-details-form-group.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/project-item/project-item.component.d.ts +0 -23
- package/lib/elements/projects/controls/project-item/project-item.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/project-settings/project-settings.component.d.ts +0 -16
- package/lib/elements/projects/controls/project-settings/project-settings.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/project-tabs/project-tabs.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/recent-activities/recent-activities.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/tabs/domains/domains.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/tabs/general/forms/base-form-test/base-form-test.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/tabs/general/forms/project-details/project-details.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/tabs/general/forms/root-directory/root-directory.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/tabs/general/forms/settings/settings.component.d.ts +0 -116
- package/lib/elements/projects/controls/tabs/general/forms/settings/settings.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/tabs/general/general.component.d.ts.map +0 -1
- package/lib/elements/projects/projects.component.d.ts.map +0 -1
- package/lib/models/actions.model.d.ts.map +0 -1
- package/lib/models/base-form-config.model.d.ts.map +0 -1
- package/lib/models/card-form-config.model.d.ts.map +0 -1
- package/lib/models/dev-settings-preset.model.d.ts.map +0 -1
- package/lib/models/domain.model.d.ts.map +0 -1
- package/lib/models/dynamic-tabs.model.d.ts.map +0 -1
- package/lib/models/form-actions.model.d.ts.map +0 -1
- package/lib/models/form.model.d.ts.map +0 -1
- package/lib/models/form.values.model.d.ts.map +0 -1
- package/lib/models/project-actions.model.d.ts.map +0 -1
- package/lib/services/applications-flow-events.service.d.ts +0 -13
- package/lib/services/applications-flow-events.service.d.ts.map +0 -1
- package/lib/services/applications-flow.service.d.ts.map +0 -1
- package/lib/services/forms.service.d.ts.map +0 -1
- package/lib/services/project.service.d.ts.map +0 -1
- package/lib/state/applications-flow-state.context.d.ts.map +0 -1
- package/lib/state/applications-flow.state.d.ts.map +0 -1
- package/lowcodeunit-applications-flow-common.d.ts.map +0 -1
- package/lowcodeunit-applications-flow-common.metadata.json +0 -1
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { BaseFormConfigModel } from './../../models/base-form-config.model';
|
|
2
2
|
import { OnInit } from '@angular/core';
|
|
3
|
-
import {
|
|
3
|
+
import { EaCService } from '../../services/eac.service';
|
|
4
4
|
import { FormsService } from '../../services/forms.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class BaseFormComponent implements OnInit {
|
|
6
7
|
protected formsService: FormsService;
|
|
7
|
-
protected
|
|
8
|
+
protected eac: EaCService;
|
|
8
9
|
/**
|
|
9
10
|
* FormGroup for project name card
|
|
10
11
|
*/
|
|
@@ -15,7 +16,7 @@ export declare class BaseFormComponent implements OnInit {
|
|
|
15
16
|
* When form is dirty, ties into formsService.DisableForms
|
|
16
17
|
*/
|
|
17
18
|
FormConfig: BaseFormConfigModel;
|
|
18
|
-
constructor(formsService: FormsService,
|
|
19
|
+
constructor(formsService: FormsService, eac: EaCService);
|
|
19
20
|
ngOnInit(): void;
|
|
20
21
|
protected setupForm(): void;
|
|
21
22
|
/**
|
|
@@ -29,5 +30,6 @@ export declare class BaseFormComponent implements OnInit {
|
|
|
29
30
|
protected updateValueRef(): void;
|
|
30
31
|
protected save(): void;
|
|
31
32
|
protected resetForm(): void;
|
|
33
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseFormComponent, never>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BaseFormComponent, "lcu-base-form", never, {}, {}, never, never>;
|
|
32
35
|
}
|
|
33
|
-
//# sourceMappingURL=base-form.component.d.ts.map
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { EaCApplicationAsCode } from '@semanticjs/common';
|
|
3
|
+
import { EaCService } from '../../services/eac.service';
|
|
4
|
+
import { ApplicationsFlowState } from '../../state/applications-flow.state';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class BreadcrumbComponent implements OnInit {
|
|
7
|
+
protected eacSvc: EaCService;
|
|
8
|
+
get Enterprise(): any;
|
|
9
|
+
ApplicationLookup: string;
|
|
10
|
+
ProjectLookup: string;
|
|
11
|
+
SelectedRoute: string;
|
|
12
|
+
get ApplicationsBank(): {
|
|
13
|
+
[lookup: string]: EaCApplicationAsCode;
|
|
14
|
+
};
|
|
15
|
+
get Applications(): {
|
|
16
|
+
[lookup: string]: EaCApplicationAsCode;
|
|
17
|
+
};
|
|
18
|
+
get SelectedApplication(): EaCApplicationAsCode;
|
|
19
|
+
get CurrentRouteApplicationLookups(): Array<string>;
|
|
20
|
+
get Loading(): boolean;
|
|
21
|
+
get Projects(): any;
|
|
22
|
+
get ProjectLookups(): string[];
|
|
23
|
+
get Routes(): Array<string>;
|
|
24
|
+
get RoutedApplications(): {
|
|
25
|
+
[route: string]: {
|
|
26
|
+
[lookup: string]: EaCApplicationAsCode;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
get SelectedProject(): any;
|
|
30
|
+
get State(): ApplicationsFlowState;
|
|
31
|
+
SkeletonEffect: string;
|
|
32
|
+
constructor(eacSvc: EaCService);
|
|
33
|
+
ngOnInit(): void;
|
|
34
|
+
SetActiveEnterprise(entLookup: string): void;
|
|
35
|
+
protected handleStateChange(): Promise<void>;
|
|
36
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbComponent, never>;
|
|
37
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbComponent, "lcu-breadcrumb", never, { "ApplicationLookup": "application-lookup"; "ProjectLookup": "project-lookup"; "SelectedRoute": "selected-route"; }, {}, never, never>;
|
|
38
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class CardCarouselComponent implements OnInit {
|
|
4
|
+
Stats: any[];
|
|
5
|
+
protected carouselIndex: number;
|
|
6
|
+
constructor();
|
|
7
|
+
ngOnInit(): void;
|
|
8
|
+
ngAfterViewInit(): void;
|
|
9
|
+
LeftChevronClicked(): void;
|
|
10
|
+
MoreDetailsClicked(): void;
|
|
11
|
+
RightChevronClicked(): void;
|
|
12
|
+
protected removeCarouselClasses(): void;
|
|
13
|
+
protected assignCarouselClass(): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CardCarouselComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CardCarouselComponent, "lcu-card-carousel", never, { "Stats": "stats"; }, {}, never, never>;
|
|
16
|
+
}
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { FormsService } from './../../services/forms.service';
|
|
2
2
|
import { Subscription } from 'rxjs';
|
|
3
3
|
import { DynamicTabsModel } from './../../models/dynamic-tabs.model';
|
|
4
|
-
import { AfterViewInit,
|
|
4
|
+
import { AfterViewInit, OnInit, ViewContainerRef } from '@angular/core';
|
|
5
5
|
import { MatTabChangeEvent } from '@angular/material/tabs';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class DynamicTabsComponent implements OnInit, AfterViewInit {
|
|
7
|
-
protected
|
|
8
|
+
protected viewContainerRef: ViewContainerRef;
|
|
8
9
|
protected formsService: FormsService;
|
|
9
10
|
/**
|
|
10
11
|
* Container used to display dynamic components
|
|
@@ -24,7 +25,7 @@ export declare class DynamicTabsComponent implements OnInit, AfterViewInit {
|
|
|
24
25
|
* Components loaded as dynamic components
|
|
25
26
|
*/
|
|
26
27
|
TabComponents: Array<DynamicTabsModel>;
|
|
27
|
-
constructor(
|
|
28
|
+
constructor(viewContainerRef: ViewContainerRef, formsService: FormsService);
|
|
28
29
|
ngOnInit(): void;
|
|
29
30
|
ngAfterViewInit(): void;
|
|
30
31
|
/**
|
|
@@ -38,6 +39,7 @@ export declare class DynamicTabsComponent implements OnInit, AfterViewInit {
|
|
|
38
39
|
*
|
|
39
40
|
* @param index TabComponents index position
|
|
40
41
|
*/
|
|
41
|
-
protected renderComponent(index: number):
|
|
42
|
+
protected renderComponent(index: number): any;
|
|
43
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicTabsComponent, never>;
|
|
44
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicTabsComponent, "lcu-dynamic-tabs", never, { "BackgroundColor": "background-color"; "Color": "color"; "TabComponents": "tab-components"; }, {}, never, never>;
|
|
42
45
|
}
|
|
43
|
-
//# sourceMappingURL=dynamic-tabs.component.d.ts.map
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { FeedItem, FeedItemAction } from '../../models/user-feed.model';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class FeedCardSmComponent implements OnInit {
|
|
5
|
+
FeedItem: FeedItem;
|
|
6
|
+
IconColor: string;
|
|
7
|
+
Icon: string;
|
|
8
|
+
constructor();
|
|
9
|
+
ngOnInit(): void;
|
|
10
|
+
HandleAction(action: FeedItemAction): void;
|
|
11
|
+
protected determineIcon(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FeedCardSmComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FeedCardSmComponent, "lcu-feed-card-sm", never, { "FeedItem": "feed-item"; }, {}, never, ["[more-details]", "[actions]"]>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { Injector, OnInit } from '@angular/core';
|
|
2
|
+
import { ApplicationsFlowState } from '../../state/applications-flow.state';
|
|
3
|
+
import { ApplicationsFlowService } from '../../services/applications-flow.service';
|
|
4
|
+
import { ProjectService } from '../../services/project.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class FlowToolComponent implements OnInit {
|
|
7
|
+
protected injector: Injector;
|
|
8
|
+
protected appsFlowSvc: ApplicationsFlowService;
|
|
9
|
+
protected projectService: ProjectService;
|
|
10
|
+
State: ApplicationsFlowState;
|
|
11
|
+
KrakynData: any;
|
|
12
|
+
SideMenuItems: any;
|
|
13
|
+
Title: string;
|
|
14
|
+
TabMenuItems: Array<{
|
|
15
|
+
Label: string;
|
|
16
|
+
Target: string;
|
|
17
|
+
Class?: string;
|
|
18
|
+
}>;
|
|
19
|
+
constructor(injector: Injector, appsFlowSvc: ApplicationsFlowService, projectService: ProjectService);
|
|
20
|
+
ngOnInit(): void;
|
|
21
|
+
/**
|
|
22
|
+
* Import tool data
|
|
23
|
+
*/
|
|
24
|
+
protected importData(): void;
|
|
25
|
+
protected handleStateChange(): Promise<void>;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FlowToolComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FlowToolComponent, "lcu-flow-tool", never, {}, {}, never, never>;
|
|
28
|
+
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { FormGroup } from '@angular/forms';
|
|
2
2
|
import { OnInit } from '@angular/core';
|
|
3
3
|
import { CardFormConfigModel } from '../../models/card-form-config.model';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class FormCardComponent implements OnInit {
|
|
5
6
|
/**
|
|
6
7
|
* Values for building out the card
|
|
@@ -17,5 +18,6 @@ export declare class FormCardComponent implements OnInit {
|
|
|
17
18
|
Form: FormGroup;
|
|
18
19
|
constructor();
|
|
19
20
|
ngOnInit(): void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormCardComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormCardComponent, "lcu-form-card", never, { "Config": "config"; "Disabled": "disabled"; "IsDirty": "is-dirty"; "Form": "form"; }, {}, never, ["*"]>;
|
|
20
23
|
}
|
|
21
|
-
//# sourceMappingURL=form-card.component.d.ts.map
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class GhControlComponent implements OnInit {
|
|
4
|
+
InputLabel: string;
|
|
5
|
+
protected selectedBtn: string;
|
|
6
|
+
value: string;
|
|
7
|
+
constructor();
|
|
8
|
+
ngOnInit(): void;
|
|
9
|
+
ngAfterViewInit(): void;
|
|
10
|
+
CreateFeatureBranch(): void;
|
|
11
|
+
OpenIssue(): void;
|
|
12
|
+
CreatePullRequest(): void;
|
|
13
|
+
OpenMoreInfo(): void;
|
|
14
|
+
Submit(): void;
|
|
15
|
+
protected addSelectBtn(): void;
|
|
16
|
+
protected removeSelectedBtn(): void;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GhControlComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GhControlComponent, "lcu-gh-control", never, {}, {}, never, never>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { FeedItem, FeedItemAction } from '../../models/user-feed.model';
|
|
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';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class MainFeedCardComponent implements OnInit {
|
|
9
|
+
protected eacSvc: EaCService;
|
|
10
|
+
protected dialog: MatDialog;
|
|
11
|
+
get ActiveEnvironment(): EaCEnvironmentAsCode;
|
|
12
|
+
get ActiveEnvironmentLookup(): string;
|
|
13
|
+
get Environment(): EaCEnvironmentAsCode;
|
|
14
|
+
FeedItem: FeedItem;
|
|
15
|
+
get Icon(): string;
|
|
16
|
+
get IconColor(): string;
|
|
17
|
+
get State(): ApplicationsFlowState;
|
|
18
|
+
constructor(eacSvc: EaCService, dialog: MatDialog);
|
|
19
|
+
ngOnInit(): void;
|
|
20
|
+
CalculateTimelapse(timestamp: Date): string;
|
|
21
|
+
HandleAction(action: FeedItemAction): void;
|
|
22
|
+
OpenSourceControlDialog(scLookup: string): void;
|
|
23
|
+
protected handleRefresh(): void;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MainFeedCardComponent, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MainFeedCardComponent, "lcu-main-feed-card", never, { "FeedItem": "feed-item"; }, {}, never, never>;
|
|
26
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { MatDialog } from '@angular/material/dialog';
|
|
3
|
+
import { EaCService } from '../../services/eac.service';
|
|
4
|
+
import { ApplicationsFlowState } from '../../state/applications-flow.state';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class ProjectInfoCardComponent implements OnInit {
|
|
7
|
+
protected eacSvc: EaCService;
|
|
8
|
+
protected dialog: MatDialog;
|
|
9
|
+
Description: string;
|
|
10
|
+
Image: string;
|
|
11
|
+
IsEditable: boolean;
|
|
12
|
+
IsShareable: boolean;
|
|
13
|
+
Name: string;
|
|
14
|
+
Subtext: string;
|
|
15
|
+
LeftClickEvent: EventEmitter<{}>;
|
|
16
|
+
RightClickEvent: EventEmitter<{}>;
|
|
17
|
+
get State(): ApplicationsFlowState;
|
|
18
|
+
SkeletonEffect: string;
|
|
19
|
+
constructor(eacSvc: EaCService, dialog: MatDialog);
|
|
20
|
+
ngOnInit(): void;
|
|
21
|
+
LeftIconClicked(): void;
|
|
22
|
+
RightIconClicked(): void;
|
|
23
|
+
UpgradeClicked(): void;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProjectInfoCardComponent, never>;
|
|
25
|
+
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]"]>;
|
|
26
|
+
}
|
|
@@ -1,21 +1,17 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { GitHubWorkflowRun } from './../../../../state/applications-flow.state';
|
|
2
2
|
import { OnInit, OnDestroy } from '@angular/core';
|
|
3
|
-
import {
|
|
3
|
+
import { EaCLowCodeUnit, EaCProjectAsCode } from '@semanticjs/common';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class BuildsComponent implements OnInit, OnDestroy {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
* List of projects
|
|
8
|
-
*/
|
|
9
|
-
private _projects;
|
|
10
|
-
set Projects(val: Array<ProjectState>);
|
|
11
|
-
get Projects(): Array<ProjectState>;
|
|
12
|
-
constructor(appsFlowEventsSvc: ApplicationsFlowEventsService);
|
|
6
|
+
Projects: Array<EaCProjectAsCode>;
|
|
7
|
+
constructor();
|
|
13
8
|
ngOnInit(): void;
|
|
14
9
|
ngOnDestroy(): void;
|
|
15
10
|
DeployRun(lastrun: GitHubWorkflowRun): void;
|
|
16
11
|
RetrieveLCU(val: {
|
|
17
|
-
project:
|
|
12
|
+
project: EaCProjectAsCode;
|
|
18
13
|
lcuID: string;
|
|
19
|
-
}):
|
|
14
|
+
}): EaCLowCodeUnit;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BuildsComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BuildsComponent, "lcu-builds", never, { "Projects": "projects"; }, {}, never, never>;
|
|
20
17
|
}
|
|
21
|
-
//# sourceMappingURL=builds.component.d.ts.map
|
package/lib/elements/projects/controls/create-project-wizard/create-project-wizard.component.d.ts
CHANGED
|
@@ -1,35 +1,36 @@
|
|
|
1
1
|
import { AfterViewInit, OnInit } from '@angular/core';
|
|
2
2
|
import { FormGroup, FormBuilder } from '@angular/forms';
|
|
3
|
-
import { MatSelectChange } from '@angular/material/select';
|
|
4
3
|
import { MatStepper } from '@angular/material/stepper';
|
|
4
|
+
import { EaCService } from '../../../../services/eac.service';
|
|
5
5
|
import { ApplicationsFlowService } from '../../../../services/applications-flow.service';
|
|
6
|
-
import {
|
|
6
|
+
import { ProjectHostingDetails } from '../../../../state/applications-flow.state';
|
|
7
|
+
import { SourceControlFormControlsComponent } from '../forms/source-control/source-control.component';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
7
9
|
export declare class CreateProjectWizardComponent implements AfterViewInit, OnInit {
|
|
8
10
|
protected formBuilder: FormBuilder;
|
|
9
11
|
protected appsFlowSvc: ApplicationsFlowService;
|
|
12
|
+
protected eacSvc: EaCService;
|
|
10
13
|
get AreProjectDetailsValid(): boolean;
|
|
14
|
+
HostingDetails: ProjectHostingDetails;
|
|
11
15
|
get IsBranchValid(): boolean;
|
|
12
16
|
get IsOrganizationValid(): boolean;
|
|
13
17
|
get IsRepositoryValid(): boolean;
|
|
18
|
+
Loading?: boolean;
|
|
19
|
+
get ProjectDetailsFormGroup(): FormGroup;
|
|
14
20
|
ProjectFormGroup: FormGroup;
|
|
15
|
-
|
|
21
|
+
get RepoDetailsFormGroup(): FormGroup;
|
|
22
|
+
SourceControl: SourceControlFormControlsComponent;
|
|
16
23
|
Stepper: MatStepper;
|
|
17
|
-
constructor(formBuilder: FormBuilder, appsFlowSvc: ApplicationsFlowService);
|
|
24
|
+
constructor(formBuilder: FormBuilder, appsFlowSvc: ApplicationsFlowService, eacSvc: EaCService);
|
|
18
25
|
ngAfterViewInit(): void;
|
|
19
26
|
ngOnInit(): void;
|
|
20
|
-
|
|
21
|
-
|
|
27
|
+
Cancel(): void;
|
|
28
|
+
ConfigureRepository(): void;
|
|
22
29
|
CreateProject(): void;
|
|
23
|
-
OrganizationChanged(event: MatSelectChange): void;
|
|
24
|
-
RefreshOrganizations(): void;
|
|
25
|
-
RepositoryChanged(event: MatSelectChange): void;
|
|
26
|
-
SaveRepository(): void;
|
|
27
30
|
SetupRepository(): void;
|
|
28
31
|
protected determineStep(): void;
|
|
29
32
|
protected handleStateChange(): void;
|
|
30
|
-
protected listBranches(): void;
|
|
31
|
-
protected listOrganizations(): void;
|
|
32
|
-
protected listRepositories(activeRepo?: string): void;
|
|
33
33
|
protected loadProjectHostingDetails(): void;
|
|
34
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CreateProjectWizardComponent, never>;
|
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CreateProjectWizardComponent, "lcu-create-project-wizard", never, {}, {}, never, never>;
|
|
34
36
|
}
|
|
35
|
-
//# sourceMappingURL=create-project-wizard.component.d.ts.map
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import { AfterViewInit, ElementRef, EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { FormGroup, FormBuilder, AbstractControl } from '@angular/forms';
|
|
3
|
+
import { MatAutocompleteSelectedEvent } from '@angular/material/autocomplete';
|
|
4
|
+
import { MatChipInputEvent } from '@angular/material/chips';
|
|
5
|
+
import { MatSelectChange } from '@angular/material/select';
|
|
6
|
+
import { GitHubBranch, GitHubOrganization, GitHubRepository } from '../../../../../state/applications-flow.state';
|
|
7
|
+
import { ApplicationsFlowService } from '../../../../../services/applications-flow.service';
|
|
8
|
+
import { EaCSourceControl } from '@semanticjs/common';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export declare class SourceControlFormControlsComponent implements AfterViewInit, OnDestroy, OnInit {
|
|
11
|
+
protected formBuilder: FormBuilder;
|
|
12
|
+
protected appsFlowSvc: ApplicationsFlowService;
|
|
13
|
+
get BranchesFormControl(): AbstractControl;
|
|
14
|
+
BranchesChanged: EventEmitter<Array<string>>;
|
|
15
|
+
BranchesDisabled: boolean;
|
|
16
|
+
BranchesInput: ElementRef<HTMLInputElement>;
|
|
17
|
+
BranchOptions: GitHubBranch[];
|
|
18
|
+
BuildPath: string;
|
|
19
|
+
BuildPathDisabled: boolean;
|
|
20
|
+
get BuildPathFormControl(): AbstractControl;
|
|
21
|
+
BuildPathOptions: string[];
|
|
22
|
+
CreatingRepository: boolean;
|
|
23
|
+
FormGroup: FormGroup;
|
|
24
|
+
Loading: boolean;
|
|
25
|
+
get MainBranchFormControl(): AbstractControl;
|
|
26
|
+
OrganizationDisabled: boolean;
|
|
27
|
+
get OrganizationFormControl(): AbstractControl;
|
|
28
|
+
OrganizationOptions: GitHubOrganization[];
|
|
29
|
+
get RepositoryFormControl(): AbstractControl;
|
|
30
|
+
RepositoryDisabled: boolean;
|
|
31
|
+
RepositoryOptions: GitHubRepository[];
|
|
32
|
+
SelectedBranches: string[];
|
|
33
|
+
readonly SeparatorKeysCodes: readonly [13, 188];
|
|
34
|
+
SourceControl: EaCSourceControl;
|
|
35
|
+
SourceControlRoot: string;
|
|
36
|
+
UseBranches: boolean;
|
|
37
|
+
UseBuildPath: boolean;
|
|
38
|
+
constructor(formBuilder: FormBuilder, appsFlowSvc: ApplicationsFlowService);
|
|
39
|
+
ngAfterViewInit(): void;
|
|
40
|
+
ngOnDestroy(): void;
|
|
41
|
+
ngOnInit(): void;
|
|
42
|
+
AddBranchOption(event: MatChipInputEvent): void;
|
|
43
|
+
BranchOptionSelected(event: MatAutocompleteSelectedEvent): void;
|
|
44
|
+
BuildPathChanged(event: MatSelectChange): void;
|
|
45
|
+
CreateRepository(): void;
|
|
46
|
+
CancelCreateRepository(): void;
|
|
47
|
+
MainBranchChanged(event: MatSelectChange): void;
|
|
48
|
+
OrganizationChanged(event: MatSelectChange): void;
|
|
49
|
+
RefreshOrganizations(): void;
|
|
50
|
+
RemoveBranchOption(option: string): void;
|
|
51
|
+
RepositoryChanged(event: MatSelectChange): void;
|
|
52
|
+
SaveRepository(): void;
|
|
53
|
+
protected addBranchOption(value: string): void;
|
|
54
|
+
protected destroyFormControls(): void;
|
|
55
|
+
protected emitBranchesChanged(): void;
|
|
56
|
+
protected listBranches(): void;
|
|
57
|
+
protected listBuildPaths(): void;
|
|
58
|
+
protected listOrganizations(): void;
|
|
59
|
+
protected listRepositories(activeRepo?: string): void;
|
|
60
|
+
protected setupFormControls(): void;
|
|
61
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SourceControlFormControlsComponent, never>;
|
|
62
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SourceControlFormControlsComponent, "lcu-source-control-form-controls", never, { "BranchesDisabled": "branches-disabled"; "BuildPath": "build-path"; "BuildPathDisabled": "build-path-disabled"; "FormGroup": "form-group"; "OrganizationDisabled": "org-disabled"; "RepositoryDisabled": "repo-disabled"; "SourceControl": "source-control"; "SourceControlRoot": "source-control-root"; "UseBranches": "use-branches"; "UseBuildPath": "use-build-path"; }, { "BranchesChanged": "branches-changed"; }, never, never>;
|
|
63
|
+
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { OnInit, AfterViewInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class GitAuthComponent implements OnInit, AfterViewInit {
|
|
4
|
+
ConnectClicked: boolean;
|
|
3
5
|
constructor();
|
|
4
6
|
ngAfterViewInit(): void;
|
|
5
7
|
ngOnInit(): void;
|
|
@@ -7,5 +9,6 @@ export declare class GitAuthComponent implements OnInit, AfterViewInit {
|
|
|
7
9
|
* Connect Github Provider
|
|
8
10
|
*/
|
|
9
11
|
ConnectGitHubProvider(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GitAuthComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GitAuthComponent, "lcu-git-auth", never, {}, {}, never, never>;
|
|
10
14
|
}
|
|
11
|
-
//# sourceMappingURL=git-auth.component.d.ts.map
|
|
@@ -1,8 +1,26 @@
|
|
|
1
|
-
import { ProjectState } from './../../../../state/applications-flow.state';
|
|
2
1
|
import { OnInit } from '@angular/core';
|
|
2
|
+
import { EaCService } from './../../../../services/eac.service';
|
|
3
|
+
import { EaCProjectAsCode } from '@semanticjs/common';
|
|
4
|
+
import { AbstractControl, FormBuilder, FormGroup } from '@angular/forms';
|
|
5
|
+
import { LCUServiceSettings } from '@lcu/common';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
3
7
|
export declare class HeaderComponent implements OnInit {
|
|
4
|
-
|
|
5
|
-
|
|
8
|
+
protected formBuilder: FormBuilder;
|
|
9
|
+
protected lcuSettings: LCUServiceSettings;
|
|
10
|
+
protected eacSvc: EaCService;
|
|
11
|
+
CreatingProject: boolean;
|
|
12
|
+
get HasProjects(): boolean;
|
|
13
|
+
ProjectFormGroup: FormGroup;
|
|
14
|
+
get ProjectLookups(): Array<string>;
|
|
15
|
+
get ProjectName(): AbstractControl;
|
|
16
|
+
Projects: {
|
|
17
|
+
[lookup: string]: EaCProjectAsCode;
|
|
18
|
+
};
|
|
19
|
+
SelectedProjectLookup: string;
|
|
20
|
+
constructor(formBuilder: FormBuilder, lcuSettings: LCUServiceSettings, eacSvc: EaCService);
|
|
6
21
|
ngOnInit(): void;
|
|
22
|
+
CreateProject(): void;
|
|
23
|
+
EnableCreatingProject(): void;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HeaderComponent, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HeaderComponent, "lcu-projects-header", never, { "CreatingProject": "creating-project"; "Projects": "projects"; "SelectedProjectLookup": "selected-project-lookup"; }, {}, never, never>;
|
|
7
26
|
}
|
|
8
|
-
//# sourceMappingURL=header.component.d.ts.map
|
|
@@ -1,12 +1,30 @@
|
|
|
1
1
|
import { OnChanges, OnInit } from '@angular/core';
|
|
2
|
-
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
-
import {
|
|
2
|
+
import { AbstractControl, FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
+
import { EaCDevOpsAction, EaCArtifact } from '@semanticjs/common';
|
|
4
|
+
import { ProjectHostingDetails, ProjectHostingOption } from '../../../../state/applications-flow.state';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
4
6
|
export declare class HostingDetailsFormGroupComponent implements OnChanges, OnInit {
|
|
5
7
|
protected formBuilder: FormBuilder;
|
|
8
|
+
Artifact: EaCArtifact;
|
|
9
|
+
BuildPipeline: string;
|
|
10
|
+
get BuildPipelineFormControl(): AbstractControl;
|
|
6
11
|
Details: ProjectHostingDetails;
|
|
7
|
-
|
|
12
|
+
DevOpsAction: EaCDevOpsAction;
|
|
13
|
+
get DevOpsActionNameFormControl(): AbstractControl;
|
|
14
|
+
Disabled: boolean;
|
|
15
|
+
get FormGroup(): FormGroup;
|
|
16
|
+
get NPMTokenFormControl(): AbstractControl;
|
|
17
|
+
Organization: string;
|
|
18
|
+
ParentFormGroup: FormGroup;
|
|
19
|
+
get SelectedHostingOption(): ProjectHostingOption;
|
|
20
|
+
get SelectedHostingOptionInputControlValues(): {
|
|
21
|
+
[lookup: string]: any;
|
|
22
|
+
};
|
|
8
23
|
constructor(formBuilder: FormBuilder);
|
|
9
24
|
ngOnChanges(): void;
|
|
10
25
|
ngOnInit(): void;
|
|
26
|
+
BuildPipelineChanged(): void;
|
|
27
|
+
protected setupControlsForForm(): void;
|
|
28
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HostingDetailsFormGroupComponent, never>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HostingDetailsFormGroupComponent, "lcu-hosting-details-form-group", never, { "Artifact": "artifact"; "BuildPipeline": "build-pipeline"; "Details": "details"; "DevOpsAction": "devops-action"; "Disabled": "disabled"; "Organization": "organization"; "ParentFormGroup": "formGroup"; }, {}, never, never>;
|
|
11
30
|
}
|
|
12
|
-
//# sourceMappingURL=hosting-details-form-group.component.d.ts.map
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { EaCService } from '../../../../services/eac.service';
|
|
3
|
+
import { EaCProjectAsCode } from '@semanticjs/common';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class ProjectItemsComponent implements OnInit {
|
|
6
|
+
protected eacSvc: EaCService;
|
|
7
|
+
get ProjectLookups(): Array<string>;
|
|
8
|
+
/**
|
|
9
|
+
* List of projects
|
|
10
|
+
*/
|
|
11
|
+
Projects: {
|
|
12
|
+
[lookup: string]: EaCProjectAsCode;
|
|
13
|
+
};
|
|
14
|
+
PanelOpenState: boolean;
|
|
15
|
+
SelectedProjectLookup: string;
|
|
16
|
+
constructor(eacSvc: EaCService);
|
|
17
|
+
ngOnInit(): void;
|
|
18
|
+
DeleteProject(projectLookup: string, projectName: string): void;
|
|
19
|
+
GetPrimaryHost(project: EaCProjectAsCode): string;
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @param project Current project object
|
|
23
|
+
*
|
|
24
|
+
* Event to edit project settings
|
|
25
|
+
*/
|
|
26
|
+
ProjectSettings(projectLookup: string): void;
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProjectItemsComponent, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProjectItemsComponent, "lcu-project-items", never, { "Projects": "projects"; "SelectedProjectLookup": "selected-project-lookup"; }, {}, never, never>;
|
|
29
|
+
}
|
|
@@ -1,12 +1,27 @@
|
|
|
1
1
|
import { DynamicTabsModel } from './../../../../models/dynamic-tabs.model';
|
|
2
2
|
import { OnInit } from '@angular/core';
|
|
3
|
-
import {
|
|
3
|
+
import { EaCApplicationAsCode, EaCDFSModifier, EaCEnvironmentAsCode, EaCHost, EaCProjectAsCode } from '@semanticjs/common';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class ProjectTabsComponent implements OnInit {
|
|
5
|
-
|
|
6
|
-
|
|
6
|
+
get ApplicationLookups(): Array<string>;
|
|
7
|
+
Applications: {
|
|
8
|
+
[lookup: string]: EaCApplicationAsCode;
|
|
9
|
+
};
|
|
10
|
+
DFSModifiers: {
|
|
11
|
+
[lookup: string]: EaCDFSModifier;
|
|
12
|
+
};
|
|
13
|
+
Environment: EaCEnvironmentAsCode;
|
|
14
|
+
EnvironmentLookup: string;
|
|
15
|
+
Hosts: {
|
|
16
|
+
[lookup: string]: EaCHost;
|
|
17
|
+
};
|
|
18
|
+
get PrimaryHost(): string;
|
|
19
|
+
Project: EaCProjectAsCode;
|
|
20
|
+
ProjectLookup: string;
|
|
7
21
|
TabComponents: Array<DynamicTabsModel>;
|
|
8
22
|
constructor();
|
|
9
23
|
ngOnInit(): void;
|
|
10
24
|
protected tabsComponents(): void;
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProjectTabsComponent, never>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProjectTabsComponent, "lcu-project-tabs", never, { "Applications": "applications"; "DFSModifiers": "dfs-modifiers"; "Environment": "environment"; "EnvironmentLookup": "environment-lookup"; "Hosts": "hosts"; "Project": "project"; "ProjectLookup": "project-lookup"; }, {}, never, never>;
|
|
11
27
|
}
|
|
12
|
-
//# sourceMappingURL=project-tabs.component.d.ts.map
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class RecentActivitiesComponent implements OnInit {
|
|
3
4
|
constructor();
|
|
4
5
|
ngOnInit(): void;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RecentActivitiesComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RecentActivitiesComponent, "lcu-recent-activities", never, {}, {}, never, never>;
|
|
5
8
|
}
|
|
6
|
-
//# sourceMappingURL=recent-activities.component.d.ts.map
|