@lowcodeunit/applications-flow-common 1.33.128-lets-get-social-ish → 1.33.134-angular-13
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 +53 -0
- package/esm2020/lib/applications-flow.module.mjs +248 -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/column-info-card/column-info-card.component.mjs +50 -0
- package/esm2020/lib/elements/dynamic-tabs/dynamic-tabs.component.mjs +74 -0
- package/esm2020/lib/elements/feed-card-sm/feed-card-sm.component.mjs +40 -0
- package/esm2020/lib/elements/flow-tool/flow-tool.component.mjs +77 -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 +34 -0
- package/esm2020/lib/elements/project-info-card/project-info-card.component.mjs +46 -0
- package/esm2020/lib/elements/projects/controls/builds/builds.component.mjs +35 -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 +287 -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 +563 -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 +137 -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 +219 -0
- package/esm2020/lib/elements/slotted-card/slotted-card.component.mjs +40 -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/card-slot.model.mjs +3 -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/slot-action.model.mjs +3 -0
- package/esm2020/lib/services/applications-flow-events.service.mjs +84 -0
- package/esm2020/lib/services/applications-flow.service.mjs +132 -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 +303 -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 +4108 -0
- package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -0
- package/fesm2020/lowcodeunit-applications-flow-common.mjs +4052 -0
- package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -0
- package/lcu.api.d.ts +28 -3
- package/lib/applications-flow.module.d.ts +39 -1
- package/lib/elements/analytics-card/analytics-card.component.d.ts +3 -1
- package/lib/elements/base-form/base-form.component.d.ts +6 -4
- package/lib/elements/column-info-card/column-info-card.component.d.ts +3 -1
- package/lib/elements/dynamic-tabs/dynamic-tabs.component.d.ts +3 -1
- package/lib/elements/feed-card-sm/feed-card-sm.component.d.ts +3 -1
- package/lib/elements/flow-tool/flow-tool.component.d.ts +30 -0
- package/lib/elements/form-card/form-card.component.d.ts +3 -1
- package/lib/elements/gh-control/gh-control.component.d.ts +3 -1
- package/lib/elements/main-feed-card/main-feed-card.component.d.ts +3 -1
- package/lib/elements/project-info-card/project-info-card.component.d.ts +3 -1
- package/lib/elements/projects/controls/builds/builds.component.d.ts +6 -2
- package/lib/elements/projects/controls/create-project-wizard/create-project-wizard.component.d.ts +6 -4
- package/lib/elements/projects/controls/forms/source-control/source-control.component.d.ts +6 -2
- package/lib/elements/projects/controls/git-auth/git-auth.component.d.ts +3 -1
- package/lib/elements/projects/controls/header/header.component.d.ts +6 -4
- package/lib/elements/projects/controls/hosting-details-form-group/hosting-details-form-group.component.d.ts +3 -1
- package/lib/elements/projects/controls/project-items/project-items.component.d.ts +6 -4
- package/lib/elements/projects/controls/project-tabs/project-tabs.component.d.ts +3 -1
- 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 +6 -4
- package/lib/elements/projects/controls/tabs/apps-flow/npm-package-select/npm-package-select.component.d.ts +3 -1
- package/lib/elements/projects/controls/tabs/devops/devops.component.d.ts +6 -4
- package/lib/elements/projects/controls/tabs/dfs-modifiers/dfs-modifiers.component.d.ts +6 -4
- package/lib/elements/projects/controls/tabs/domains/domains.component.d.ts +6 -4
- 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 +6 -4
- package/lib/elements/projects/controls/tabs/general/forms/root-directory/root-directory.component.d.ts +6 -4
- package/lib/elements/projects/controls/tabs/general/general.component.d.ts +3 -1
- package/lib/elements/projects/projects.component.d.ts +14 -5
- package/lib/elements/slotted-card/slotted-card.component.d.ts +5 -4
- package/lib/elements/three-column/three-column.component.d.ts +3 -1
- package/lib/elements/two-column-header/two-column-header.component.d.ts +3 -1
- 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/card-slot.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/slot-action.model.d.ts +0 -1
- package/lib/services/applications-flow-events.service.d.ts +60 -0
- package/lib/services/applications-flow.service.d.ts +3 -3
- package/lib/services/forms.service.d.ts +3 -1
- package/lib/services/npm.service.d.ts +3 -1
- package/lib/services/project.service.d.ts +3 -1
- package/lib/state/applications-flow-state.context.d.ts +3 -1
- package/lib/state/applications-flow.state.d.ts +0 -1
- package/lowcodeunit-applications-flow-common.d.ts +1 -34
- package/package.json +20 -12
- package/bundles/lowcodeunit-applications-flow-common.umd.js +0 -6867
- 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 -27
- package/esm2015/lib/applications-flow.module.js +0 -212
- package/esm2015/lib/controls/build-pipeline-form/build-pipeline-form.component.js +0 -213
- package/esm2015/lib/controls/devops-source-control-form/devops-source-control-form.component.js +0 -412
- package/esm2015/lib/controls/edit-application-form/edit-application-form.component.js +0 -60
- package/esm2015/lib/controls/processor-details-form/processor-details-form.component.js +0 -321
- package/esm2015/lib/controls/security-toggle/security-toggle.component.js +0 -50
- package/esm2015/lib/controls/source-control-form/source-control-form.component.js +0 -61
- package/esm2015/lib/dialogs/build-pipeline-dialog/build-pipeline-dialog.component.js +0 -25
- package/esm2015/lib/dialogs/source-control-dialog/source-control-dialog.component.js +0 -25
- package/esm2015/lib/elements/analytics-card/analytics-card.component.js +0 -21
- package/esm2015/lib/elements/base-form/base-form.component.js +0 -61
- package/esm2015/lib/elements/breadcrumb/breadcrumb.component.js +0 -115
- package/esm2015/lib/elements/card-carousel/card-carousel.component.js +0 -67
- package/esm2015/lib/elements/column-info-card/column-info-card.component.js +0 -31
- package/esm2015/lib/elements/dynamic-tabs/dynamic-tabs.component.js +0 -69
- package/esm2015/lib/elements/feed-card-sm/feed-card-sm.component.js +0 -31
- package/esm2015/lib/elements/form-card/form-card.component.js +0 -22
- package/esm2015/lib/elements/gh-control/gh-control.component.js +0 -72
- package/esm2015/lib/elements/main-feed-card/main-feed-card.component.js +0 -24
- package/esm2015/lib/elements/project-info-card/project-info-card.component.js +0 -32
- package/esm2015/lib/elements/projects/controls/builds/builds.component.js +0 -26
- package/esm2015/lib/elements/projects/controls/create-project-wizard/create-project-wizard.component.js +0 -145
- package/esm2015/lib/elements/projects/controls/forms/source-control/source-control.component.js +0 -262
- package/esm2015/lib/elements/projects/controls/git-auth/git-auth.component.js +0 -25
- package/esm2015/lib/elements/projects/controls/header/header.component.js +0 -75
- package/esm2015/lib/elements/projects/controls/hosting-details-form-group/hosting-details-form-group.component.js +0 -102
- package/esm2015/lib/elements/projects/controls/project-items/project-items.component.js +0 -49
- package/esm2015/lib/elements/projects/controls/project-tabs/project-tabs.component.js +0 -91
- package/esm2015/lib/elements/projects/controls/recent-activities/recent-activities.component.js +0 -15
- package/esm2015/lib/elements/projects/controls/tabs/apps-flow/apps-flow.component.js +0 -590
- package/esm2015/lib/elements/projects/controls/tabs/apps-flow/npm-package-select/npm-package-select.component.js +0 -62
- package/esm2015/lib/elements/projects/controls/tabs/devops/devops.component.js +0 -202
- package/esm2015/lib/elements/projects/controls/tabs/dfs-modifiers/dfs-modifiers.component.js +0 -178
- package/esm2015/lib/elements/projects/controls/tabs/domains/domains.component.js +0 -133
- 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 -129
- package/esm2015/lib/elements/projects/controls/tabs/general/forms/root-directory/root-directory.component.js +0 -113
- package/esm2015/lib/elements/projects/controls/tabs/general/general.component.js +0 -46
- package/esm2015/lib/elements/projects/projects.component.js +0 -99
- package/esm2015/lib/elements/slotted-card/slotted-card.component.js +0 -29
- package/esm2015/lib/elements/three-column/three-column.component.js +0 -32
- package/esm2015/lib/elements/two-column-header/two-column-header.component.js +0 -15
- 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/card-slot.model.js +0 -3
- 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/models/slot-action.model.js +0 -3
- package/esm2015/lib/services/applications-flow.service.js +0 -144
- package/esm2015/lib/services/eac.service.js +0 -218
- package/esm2015/lib/services/forms.service.js +0 -131
- package/esm2015/lib/services/npm.service.js +0 -79
- package/esm2015/lib/services/project.service.js +0 -318
- package/esm2015/lib/state/applications-flow-state.context.js +0 -37
- package/esm2015/lib/state/applications-flow.state.js +0 -72
- package/esm2015/lowcodeunit-applications-flow-common.js +0 -38
- package/fesm2015/lowcodeunit-applications-flow-common.js +0 -5286
- 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/controls/build-pipeline-form/build-pipeline-form.component.d.ts +0 -43
- package/lib/controls/build-pipeline-form/build-pipeline-form.component.d.ts.map +0 -1
- package/lib/controls/devops-source-control-form/devops-source-control-form.component.d.ts +0 -81
- package/lib/controls/devops-source-control-form/devops-source-control-form.component.d.ts.map +0 -1
- package/lib/controls/edit-application-form/edit-application-form.component.d.ts +0 -17
- package/lib/controls/edit-application-form/edit-application-form.component.d.ts.map +0 -1
- package/lib/controls/processor-details-form/processor-details-form.component.d.ts +0 -65
- package/lib/controls/processor-details-form/processor-details-form.component.d.ts.map +0 -1
- package/lib/controls/security-toggle/security-toggle.component.d.ts +0 -18
- package/lib/controls/security-toggle/security-toggle.component.d.ts.map +0 -1
- package/lib/controls/source-control-form/source-control-form.component.d.ts +0 -25
- package/lib/controls/source-control-form/source-control-form.component.d.ts.map +0 -1
- package/lib/dialogs/build-pipeline-dialog/build-pipeline-dialog.component.d.ts +0 -16
- package/lib/dialogs/build-pipeline-dialog/build-pipeline-dialog.component.d.ts.map +0 -1
- package/lib/dialogs/source-control-dialog/source-control-dialog.component.d.ts +0 -16
- package/lib/dialogs/source-control-dialog/source-control-dialog.component.d.ts.map +0 -1
- package/lib/elements/analytics-card/analytics-card.component.d.ts.map +0 -1
- package/lib/elements/base-form/base-form.component.d.ts.map +0 -1
- package/lib/elements/breadcrumb/breadcrumb.component.d.ts +0 -33
- package/lib/elements/breadcrumb/breadcrumb.component.d.ts.map +0 -1
- package/lib/elements/card-carousel/card-carousel.component.d.ts +0 -14
- package/lib/elements/card-carousel/card-carousel.component.d.ts.map +0 -1
- package/lib/elements/column-info-card/column-info-card.component.d.ts.map +0 -1
- package/lib/elements/dynamic-tabs/dynamic-tabs.component.d.ts.map +0 -1
- package/lib/elements/feed-card-sm/feed-card-sm.component.d.ts.map +0 -1
- package/lib/elements/form-card/form-card.component.d.ts.map +0 -1
- package/lib/elements/gh-control/gh-control.component.d.ts.map +0 -1
- package/lib/elements/main-feed-card/main-feed-card.component.d.ts.map +0 -1
- package/lib/elements/project-info-card/project-info-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/forms/source-control/source-control.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-items/project-items.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/apps-flow/apps-flow.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/tabs/apps-flow/npm-package-select/npm-package-select.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/tabs/devops/devops.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/tabs/dfs-modifiers/dfs-modifiers.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/general.component.d.ts.map +0 -1
- package/lib/elements/projects/projects.component.d.ts.map +0 -1
- package/lib/elements/slotted-card/slotted-card.component.d.ts.map +0 -1
- package/lib/elements/three-column/three-column.component.d.ts.map +0 -1
- package/lib/elements/two-column-header/two-column-header.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/card-slot.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/models/slot-action.model.d.ts.map +0 -1
- package/lib/services/applications-flow.service.d.ts.map +0 -1
- package/lib/services/eac.service.d.ts +0 -54
- package/lib/services/eac.service.d.ts.map +0 -1
- package/lib/services/forms.service.d.ts.map +0 -1
- package/lib/services/npm.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
|
@@ -2,11 +2,12 @@ import { FormsService } from './../../../../../services/forms.service';
|
|
|
2
2
|
import { CardFormConfigModel } from './../../../../../models/card-form-config.model';
|
|
3
3
|
import { OnInit } from '@angular/core';
|
|
4
4
|
import { AbstractControl, FormGroup } from '@angular/forms';
|
|
5
|
-
import {
|
|
5
|
+
import { ApplicationsFlowEventsService } from '../../../../../services/applications-flow-events.service';
|
|
6
6
|
import { EaCHost, EaCProjectAsCode } from '@semanticjs/common';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
7
8
|
export declare class DomainsComponent implements OnInit {
|
|
8
9
|
protected formsService: FormsService;
|
|
9
|
-
protected
|
|
10
|
+
protected appsFlowEventsSvc: ApplicationsFlowEventsService;
|
|
10
11
|
/**
|
|
11
12
|
* Card / Form Config
|
|
12
13
|
*/
|
|
@@ -41,7 +42,7 @@ export declare class DomainsComponent implements OnInit {
|
|
|
41
42
|
get PrimaryHost(): string;
|
|
42
43
|
get Project(): EaCProjectAsCode;
|
|
43
44
|
get ProjectLookup(): string;
|
|
44
|
-
constructor(formsService: FormsService,
|
|
45
|
+
constructor(formsService: FormsService, appsFlowEventsSvc: ApplicationsFlowEventsService);
|
|
45
46
|
ngOnInit(): void;
|
|
46
47
|
protected config(): void;
|
|
47
48
|
protected setupForm(): void;
|
|
@@ -54,5 +55,6 @@ export declare class DomainsComponent implements OnInit {
|
|
|
54
55
|
* Save changes
|
|
55
56
|
*/
|
|
56
57
|
protected save(): void;
|
|
58
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DomainsComponent, never>;
|
|
59
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DomainsComponent, "lcu-domains", never, { "Data": "data"; }, {}, never, never>;
|
|
57
60
|
}
|
|
58
|
-
//# sourceMappingURL=domains.component.d.ts.map
|
|
@@ -1,11 +1,12 @@
|
|
|
1
|
+
import { ApplicationsFlowEventsService } from '../../../../../../../services/applications-flow-events.service';
|
|
1
2
|
import { FormsService } from '../../../../../../../services/forms.service';
|
|
2
|
-
import { EaCService } from '../../../../../../../services/eac.service';
|
|
3
3
|
import { BaseFormComponent } from '../../../../../../base-form/base-form.component';
|
|
4
4
|
import { OnInit } from '@angular/core';
|
|
5
5
|
import { AbstractControl } from '@angular/forms';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class BaseFormTestComponent extends BaseFormComponent implements OnInit {
|
|
7
8
|
protected formsService: FormsService;
|
|
8
|
-
protected
|
|
9
|
+
protected appsFlowEventsSvc: ApplicationsFlowEventsService;
|
|
9
10
|
/**
|
|
10
11
|
* Access form control for description
|
|
11
12
|
*/
|
|
@@ -14,10 +15,11 @@ export declare class BaseFormTestComponent extends BaseFormComponent implements
|
|
|
14
15
|
* Access form control for project name
|
|
15
16
|
*/
|
|
16
17
|
get Name(): AbstractControl;
|
|
17
|
-
constructor(formsService: FormsService,
|
|
18
|
+
constructor(formsService: FormsService, appsFlowEventsSvc: ApplicationsFlowEventsService);
|
|
18
19
|
ngOnInit(): void;
|
|
19
20
|
protected setupMyForm(): void;
|
|
20
21
|
protected setupConfig(): void;
|
|
21
22
|
protected save(): void;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseFormTestComponent, never>;
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BaseFormTestComponent, "lcu-base-form-test", never, {}, {}, never, never>;
|
|
22
25
|
}
|
|
23
|
-
//# sourceMappingURL=base-form-test.component.d.ts.map
|
|
@@ -2,11 +2,12 @@ import { OnInit } from '@angular/core';
|
|
|
2
2
|
import { AbstractControl, FormGroup } from '@angular/forms';
|
|
3
3
|
import { FormsService } from '../../../../../../../services/forms.service';
|
|
4
4
|
import { CardFormConfigModel } from '../../../../../../../models/card-form-config.model';
|
|
5
|
-
import {
|
|
5
|
+
import { ApplicationsFlowEventsService } from '../../../../../../../services/applications-flow-events.service';
|
|
6
6
|
import { EaCProjectAsCode } from '@semanticjs/common';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
7
8
|
export declare class ProjectNameComponent implements OnInit {
|
|
8
9
|
protected formsService: FormsService;
|
|
9
|
-
protected
|
|
10
|
+
protected appsFlowEventsSvc: ApplicationsFlowEventsService;
|
|
10
11
|
/**
|
|
11
12
|
* Form button actions
|
|
12
13
|
*/
|
|
@@ -36,7 +37,7 @@ export declare class ProjectNameComponent implements OnInit {
|
|
|
36
37
|
*/
|
|
37
38
|
Project: EaCProjectAsCode;
|
|
38
39
|
ProjectLookup: string;
|
|
39
|
-
constructor(formsService: FormsService,
|
|
40
|
+
constructor(formsService: FormsService, appsFlowEventsSvc: ApplicationsFlowEventsService);
|
|
40
41
|
ngOnInit(): void;
|
|
41
42
|
/**
|
|
42
43
|
* Form configurations
|
|
@@ -58,5 +59,6 @@ export declare class ProjectNameComponent implements OnInit {
|
|
|
58
59
|
* Listen to form changes
|
|
59
60
|
*/
|
|
60
61
|
protected onChange(): void;
|
|
62
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProjectNameComponent, never>;
|
|
63
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProjectNameComponent, "lcu-project-details", never, { "Project": "project"; "ProjectLookup": "project-lookup"; }, {}, never, never>;
|
|
61
64
|
}
|
|
62
|
-
//# sourceMappingURL=project-details.component.d.ts.map
|
|
@@ -3,11 +3,12 @@ import { FormsService } from './../../../../../../../services/forms.service';
|
|
|
3
3
|
import { CardFormConfigModel } from './../../../../../../../models/card-form-config.model';
|
|
4
4
|
import { OnInit } from '@angular/core';
|
|
5
5
|
import { AbstractControl, FormGroup } from '@angular/forms';
|
|
6
|
-
import {
|
|
6
|
+
import { ApplicationsFlowEventsService } from '../../../../../../../services/applications-flow-events.service';
|
|
7
7
|
import { EaCProjectAsCode } from '@semanticjs/common';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
8
9
|
export declare class RootDirectoryComponent implements OnInit {
|
|
9
10
|
protected formsService: FormsService;
|
|
10
|
-
protected
|
|
11
|
+
protected appsFlowEventsSvc: ApplicationsFlowEventsService;
|
|
11
12
|
/**
|
|
12
13
|
* Card / Form Config
|
|
13
14
|
*/
|
|
@@ -30,7 +31,7 @@ export declare class RootDirectoryComponent implements OnInit {
|
|
|
30
31
|
*/
|
|
31
32
|
Project: EaCProjectAsCode;
|
|
32
33
|
ProjectLookup: string;
|
|
33
|
-
constructor(formsService: FormsService,
|
|
34
|
+
constructor(formsService: FormsService, appsFlowEventsSvc: ApplicationsFlowEventsService);
|
|
34
35
|
ngOnInit(): void;
|
|
35
36
|
/**
|
|
36
37
|
* Setup form controls
|
|
@@ -52,5 +53,6 @@ export declare class RootDirectoryComponent implements OnInit {
|
|
|
52
53
|
* Listen to form changes
|
|
53
54
|
*/
|
|
54
55
|
protected onChange(): void;
|
|
56
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RootDirectoryComponent, never>;
|
|
57
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RootDirectoryComponent, "lcu-root-directory", never, { "Project": "project"; "ProjectLookup": "project-lookup"; }, {}, never, never>;
|
|
55
58
|
}
|
|
56
|
-
//# sourceMappingURL=root-directory.component.d.ts.map
|
|
@@ -3,6 +3,7 @@ import { AfterContentChecked, ChangeDetectorRef, Injector, OnDestroy, OnInit } f
|
|
|
3
3
|
import { LcuElementComponent, LCUElementContext } from '@lcu/common';
|
|
4
4
|
import { ApplicationsFlowService } from './../../../../../services/applications-flow.service';
|
|
5
5
|
import { EaCProjectAsCode } from '@semanticjs/common';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class ApplicationsFlowProjectsElementState {
|
|
7
8
|
}
|
|
8
9
|
export declare class ApplicationsFlowProjectsContext extends LCUElementContext<ApplicationsFlowProjectsElementState> {
|
|
@@ -22,5 +23,6 @@ export declare class GeneralComponent extends LcuElementComponent<ApplicationsFl
|
|
|
22
23
|
ngOnDestroy(): void;
|
|
23
24
|
ngOnInit(): void;
|
|
24
25
|
ngAfterContentChecked(): void;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GeneralComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GeneralComponent, "lcu-general", never, { "Data": "data"; }, {}, never, never>;
|
|
25
28
|
}
|
|
26
|
-
//# sourceMappingURL=general.component.d.ts.map
|
|
@@ -4,8 +4,10 @@ import { MatSelectChange } from '@angular/material/select';
|
|
|
4
4
|
import { LCUElementContext, LcuElementComponent } from '@lcu/common';
|
|
5
5
|
import { ApplicationsFlowState } from './../../state/applications-flow.state';
|
|
6
6
|
import { ApplicationsFlowService } from '../../services/applications-flow.service';
|
|
7
|
+
import { ProjectService } from '../../services/project.service';
|
|
8
|
+
import { ApplicationsFlowEventsService, SaveApplicationAsCodeEventRequest, SaveDFSModifierEventRequest, SaveEnvironmentAsCodeEventRequest } from './../../services/applications-flow-events.service';
|
|
7
9
|
import { EaCEnvironmentAsCode, EaCProjectAsCode } from '@semanticjs/common';
|
|
8
|
-
import
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
9
11
|
export declare class ApplicationsFlowProjectsElementState {
|
|
10
12
|
}
|
|
11
13
|
export declare class ApplicationsFlowProjectsContext extends LCUElementContext<ApplicationsFlowProjectsElementState> {
|
|
@@ -14,7 +16,8 @@ export declare const SELECTOR_APPLICATIONS_FLOW_PROJECTS_ELEMENT = "applications
|
|
|
14
16
|
export declare class ApplicationsFlowProjectsElementComponent extends LcuElementComponent<ApplicationsFlowProjectsContext> implements OnDestroy, OnInit {
|
|
15
17
|
protected injector: Injector;
|
|
16
18
|
protected appsFlowSvc: ApplicationsFlowService;
|
|
17
|
-
protected
|
|
19
|
+
protected projectService: ProjectService;
|
|
20
|
+
protected appsFlowEventsSvc: ApplicationsFlowEventsService;
|
|
18
21
|
protected projMon: NodeJS.Timeout;
|
|
19
22
|
get ActiveEnvironment(): EaCEnvironmentAsCode;
|
|
20
23
|
get ActiveEnvironmentLookup(): string;
|
|
@@ -22,12 +25,18 @@ export declare class ApplicationsFlowProjectsElementComponent extends LcuElement
|
|
|
22
25
|
get EditingProject(): EaCProjectAsCode;
|
|
23
26
|
get EditingProjectLookup(): string;
|
|
24
27
|
get ProjectLookups(): Array<string>;
|
|
25
|
-
|
|
26
|
-
constructor(injector: Injector, appsFlowSvc: ApplicationsFlowService,
|
|
28
|
+
State: ApplicationsFlowState;
|
|
29
|
+
constructor(injector: Injector, appsFlowSvc: ApplicationsFlowService, projectService: ProjectService, appsFlowEventsSvc: ApplicationsFlowEventsService);
|
|
27
30
|
ngOnDestroy(): void;
|
|
28
31
|
ngOnInit(): void;
|
|
29
32
|
ActiveEnterpriseChanged(event: MatSelectChange): Promise<void>;
|
|
30
33
|
ConfigureDevOpsAction(devOpsActionLookup: string): void;
|
|
31
34
|
protected handleStateChange(): Promise<void>;
|
|
35
|
+
protected handleSaveApplication(req: SaveApplicationAsCodeEventRequest): Promise<void>;
|
|
36
|
+
protected handleSaveDFSModifier(req: SaveDFSModifierEventRequest): Promise<void>;
|
|
37
|
+
protected handleSaveEnvironment(req: SaveEnvironmentAsCodeEventRequest): Promise<void>;
|
|
38
|
+
protected handleSaveProject(projectLookup: string, project: EaCProjectAsCode): Promise<void>;
|
|
39
|
+
protected setServices(): void;
|
|
40
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ApplicationsFlowProjectsElementComponent, never>;
|
|
41
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ApplicationsFlowProjectsElementComponent, "applications-flow-projects-element", never, {}, {}, never, never>;
|
|
32
42
|
}
|
|
33
|
-
//# sourceMappingURL=projects.component.d.ts.map
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class SlottedCardComponent implements OnInit {
|
|
3
|
-
|
|
4
|
-
ActionPath: string;
|
|
4
|
+
Title: string;
|
|
5
5
|
Icon: string;
|
|
6
6
|
MainSlotDescription: string;
|
|
7
|
-
Title: string;
|
|
8
7
|
SecondarySlotDescription: string;
|
|
8
|
+
ActionText: string;
|
|
9
9
|
MainActionClicked: EventEmitter<{}>;
|
|
10
10
|
constructor();
|
|
11
11
|
ngOnInit(): void;
|
|
12
12
|
MainActionClickEvent(): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SlottedCardComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SlottedCardComponent, "lcu-slotted-card", never, { "Title": "title"; "Icon": "icon"; "MainSlotDescription": "main-slot-description"; "SecondarySlotDescription": "secondary-slot-description"; "ActionText": "action-text"; }, { "MainActionClicked": "main-action-clicked"; }, never, ["*", "[secondary]"]>;
|
|
13
15
|
}
|
|
14
|
-
//# sourceMappingURL=slotted-card.component.d.ts.map
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import { BreakpointObserver } from '@angular/cdk/layout';
|
|
2
2
|
import { OnInit } from '@angular/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class ThreeColumnComponent implements OnInit {
|
|
4
5
|
breakpointObserver: BreakpointObserver;
|
|
5
6
|
SmallScreen: boolean;
|
|
6
7
|
constructor(breakpointObserver: BreakpointObserver);
|
|
7
8
|
ngOnInit(): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ThreeColumnComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ThreeColumnComponent, "lcu-three-column", never, {}, {}, never, ["[left]", "*", "[right]"]>;
|
|
8
11
|
}
|
|
9
|
-
//# sourceMappingURL=three-column.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 TwoColumnHeaderComponent implements OnInit {
|
|
3
4
|
constructor();
|
|
4
5
|
ngOnInit(): void;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TwoColumnHeaderComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TwoColumnHeaderComponent, "lcu-two-column-header", never, {}, {}, never, ["[left]", "*"]>;
|
|
5
8
|
}
|
|
6
|
-
//# sourceMappingURL=two-column-header.component.d.ts.map
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { EaCDFSModifier, EaCEnvironmentAsCode } from '@semanticjs/common';
|
|
3
|
+
import { EaCApplicationAsCode, EaCDataToken, EaCProjectAsCode } from '@semanticjs/common';
|
|
4
|
+
import { EnterpriseAsCode } from '@semanticjs/common';
|
|
5
|
+
import { UnpackLowCodeUnitRequest } from '../state/applications-flow.state';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class SaveApplicationAsCodeEventRequest {
|
|
8
|
+
Application?: EaCApplicationAsCode;
|
|
9
|
+
ApplicationLookup?: string;
|
|
10
|
+
ProjectLookup?: string;
|
|
11
|
+
}
|
|
12
|
+
export declare class SaveDFSModifierEventRequest {
|
|
13
|
+
Modifier: EaCDFSModifier;
|
|
14
|
+
ModifierLookup: string;
|
|
15
|
+
ProjectLookup?: string;
|
|
16
|
+
}
|
|
17
|
+
export declare class SaveEnvironmentAsCodeEventRequest {
|
|
18
|
+
EnterpriseDataTokens?: {
|
|
19
|
+
[lookup: string]: EaCDataToken;
|
|
20
|
+
};
|
|
21
|
+
Environment?: EaCEnvironmentAsCode;
|
|
22
|
+
EnvironmentLookup?: string;
|
|
23
|
+
}
|
|
24
|
+
export declare class SaveProjectAsCodeEventRequest {
|
|
25
|
+
Project?: EaCProjectAsCode;
|
|
26
|
+
ProjectLookup?: string;
|
|
27
|
+
}
|
|
28
|
+
export declare class ApplicationsFlowEventsService {
|
|
29
|
+
DeleteApplicationEvent: EventEmitter<string>;
|
|
30
|
+
DeleteDevOpsActionEvent: EventEmitter<string>;
|
|
31
|
+
DeleteProjectEvent: EventEmitter<string>;
|
|
32
|
+
DeleteSourceControlEvent: EventEmitter<string>;
|
|
33
|
+
EnsureUserEnterpriseEvent: EventEmitter<any>;
|
|
34
|
+
LoadEnterpriseAsCodeEvent: EventEmitter<any>;
|
|
35
|
+
SaveApplicationAsCodeEvent: EventEmitter<SaveApplicationAsCodeEventRequest>;
|
|
36
|
+
SaveDFSModifierEvent: EventEmitter<SaveDFSModifierEventRequest>;
|
|
37
|
+
SaveEnterpriseAsCodeEvent: EventEmitter<EnterpriseAsCode>;
|
|
38
|
+
SaveEnvironmentAsCodeEvent: EventEmitter<SaveEnvironmentAsCodeEventRequest>;
|
|
39
|
+
SaveProjectAsCodeEvent: EventEmitter<SaveProjectAsCodeEventRequest>;
|
|
40
|
+
SetCreatingProjectEvent: EventEmitter<boolean>;
|
|
41
|
+
SetEditProjectSettingsEvent: EventEmitter<string>;
|
|
42
|
+
UnpackLowCodeUnitEvent: EventEmitter<UnpackLowCodeUnitRequest>;
|
|
43
|
+
constructor();
|
|
44
|
+
DeleteApplication(appLookup: string): void;
|
|
45
|
+
DeleteDevOpsAction(doaLookup: string): void;
|
|
46
|
+
DeleteProject(projectLookup: string): void;
|
|
47
|
+
DeleteSourceControl(scLookup: string): void;
|
|
48
|
+
EnsureUserEnterprise(): void;
|
|
49
|
+
LoadEnterpriseAsCode(): void;
|
|
50
|
+
SaveApplicationAsCode(req: SaveApplicationAsCodeEventRequest): void;
|
|
51
|
+
SaveDFSModifier(req: SaveDFSModifierEventRequest): void;
|
|
52
|
+
SaveEnterpriseAsCode(eac: EnterpriseAsCode): void;
|
|
53
|
+
SaveEnvironmentAsCode(req: SaveEnvironmentAsCodeEventRequest): void;
|
|
54
|
+
SaveProjectAsCode(req: SaveProjectAsCodeEventRequest): void;
|
|
55
|
+
SetCreatingProject(creatingProject: boolean): void;
|
|
56
|
+
SetEditProjectSettings(projectLookup: string): void;
|
|
57
|
+
UnpackLowCodeUnit(req: UnpackLowCodeUnitRequest): void;
|
|
58
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ApplicationsFlowEventsService, never>;
|
|
59
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ApplicationsFlowEventsService>;
|
|
60
|
+
}
|
|
@@ -3,6 +3,7 @@ import { LCUServiceSettings } from '@lcu/common';
|
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
4
|
import { EnterpriseAsCode } from '@semanticjs/common';
|
|
5
5
|
import { UnpackLowCodeUnitRequest } from '../state/applications-flow.state';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class ApplicationsFlowService {
|
|
7
8
|
protected http: HttpClient;
|
|
8
9
|
protected settings: LCUServiceSettings;
|
|
@@ -25,13 +26,12 @@ export declare class ApplicationsFlowService {
|
|
|
25
26
|
ListRepositories(organization: string): Observable<object>;
|
|
26
27
|
LoadEnterpriseAsCode(): Observable<object>;
|
|
27
28
|
LoadProjectHostingDetails(organization: string, repository: string, branch: string): Observable<object>;
|
|
28
|
-
NewLoadProjectHostingDetails(): Observable<object>;
|
|
29
29
|
SaveEnterpriseAsCode(eac: EnterpriseAsCode): Observable<object>;
|
|
30
30
|
SetActiveEnterprise(activeEntLookup: string): Observable<object>;
|
|
31
31
|
UnpackLowCodeUnit(req: UnpackLowCodeUnitRequest): Observable<object>;
|
|
32
|
-
UserFeed(page: number, pageSize: number): Observable<object>;
|
|
33
32
|
protected loadHeaders(): {
|
|
34
33
|
[header: string]: string | string[];
|
|
35
34
|
};
|
|
35
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ApplicationsFlowService, never>;
|
|
36
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ApplicationsFlowService>;
|
|
36
37
|
}
|
|
37
|
-
//# sourceMappingURL=applications-flow.service.d.ts.map
|
|
@@ -2,6 +2,7 @@ import { FormValuesModel } from './../models/form.values.model';
|
|
|
2
2
|
import { FormModel } from './../models/form.model';
|
|
3
3
|
import { FormGroup } from '@angular/forms';
|
|
4
4
|
import { Subject } from 'rxjs';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class FormsService {
|
|
6
7
|
/**
|
|
7
8
|
* List of forms
|
|
@@ -64,5 +65,6 @@ export declare class FormsService {
|
|
|
64
65
|
*/
|
|
65
66
|
ForRealThough(id: string, formToCheck: FormGroup): boolean;
|
|
66
67
|
constructor();
|
|
68
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormsService, never>;
|
|
69
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<FormsService>;
|
|
67
70
|
}
|
|
68
|
-
//# sourceMappingURL=forms.service.d.ts.map
|
|
@@ -2,10 +2,12 @@ import { Injector } from '@angular/core';
|
|
|
2
2
|
import { DAFService, BaseModeledResponse, Pageable } from '@lcu/common';
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
4
|
import { HttpBackend } from '@angular/common/http';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class NPMService extends DAFService {
|
|
6
7
|
protected injector: Injector;
|
|
7
8
|
constructor(injector: Injector, handler: HttpBackend);
|
|
8
9
|
Search(search: string): Observable<BaseModeledResponse<Pageable<any>>>;
|
|
9
10
|
Versions(npmPkg: string): Observable<BaseModeledResponse<Pageable<any>>>;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NPMService, never>;
|
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<NPMService>;
|
|
10
13
|
}
|
|
11
|
-
//# sourceMappingURL=npm.service.d.ts.map
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { EnterpriseAsCode } from '@semanticjs/common';
|
|
2
2
|
import { ApplicationsFlowState, UnpackLowCodeUnitRequest } from '../state/applications-flow.state';
|
|
3
3
|
import { ApplicationsFlowService } from './applications-flow.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class ProjectService {
|
|
5
6
|
protected appsFlowSvc: ApplicationsFlowService;
|
|
6
7
|
CreatingProject: boolean;
|
|
@@ -21,5 +22,6 @@ export declare class ProjectService {
|
|
|
21
22
|
SetEditProjectSettings(state: ApplicationsFlowState, projectLookup: string): Promise<any>;
|
|
22
23
|
ToggleCreateProject(): void;
|
|
23
24
|
UnpackLowCodeUnit(state: ApplicationsFlowState, req: UnpackLowCodeUnitRequest): Promise<EnterpriseAsCode>;
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProjectService, never>;
|
|
26
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ProjectService>;
|
|
24
27
|
}
|
|
25
|
-
//# sourceMappingURL=project.service.d.ts.map
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Injector } from '@angular/core';
|
|
2
2
|
import { StateContext } from '@lcu/common';
|
|
3
3
|
import { ApplicationsFlowState } from './applications-flow.state';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class ApplicationsFlowStateContext extends StateContext<ApplicationsFlowState> {
|
|
5
6
|
protected injector: Injector;
|
|
6
7
|
constructor(injector: Injector);
|
|
@@ -8,5 +9,6 @@ export declare class ApplicationsFlowStateContext extends StateContext<Applicati
|
|
|
8
9
|
protected defaultValue(): ApplicationsFlowState;
|
|
9
10
|
protected loadStateKey(): string;
|
|
10
11
|
protected loadStateName(): string;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ApplicationsFlowStateContext, never>;
|
|
13
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ApplicationsFlowStateContext>;
|
|
11
14
|
}
|
|
12
|
-
//# sourceMappingURL=applications-flow-state.context.d.ts.map
|
|
@@ -1,38 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Generated bundle index. Do not edit.
|
|
3
3
|
*/
|
|
4
|
+
/// <amd-module name="@lowcodeunit/applications-flow-common" />
|
|
4
5
|
export * from './lcu.api';
|
|
5
|
-
export { BuildPipelineFormComponent as ɵbb } from './lib/controls/build-pipeline-form/build-pipeline-form.component';
|
|
6
|
-
export { DevopsSourceControlFormComponent as ɵbc } from './lib/controls/devops-source-control-form/devops-source-control-form.component';
|
|
7
|
-
export { EditApplicationFormComponent as ɵbf } from './lib/controls/edit-application-form/edit-application-form.component';
|
|
8
|
-
export { ProcessorDetailsFormComponent as ɵz } from './lib/controls/processor-details-form/processor-details-form.component';
|
|
9
|
-
export { SecurityToggleComponent as ɵy } from './lib/controls/security-toggle/security-toggle.component';
|
|
10
|
-
export { SourceControlFormComponent as ɵba } from './lib/controls/source-control-form/source-control-form.component';
|
|
11
|
-
export { BuildPipelineDialogComponent as ɵbe } from './lib/dialogs/build-pipeline-dialog/build-pipeline-dialog.component';
|
|
12
|
-
export { SourceControlDialogComponent as ɵbd } from './lib/dialogs/source-control-dialog/source-control-dialog.component';
|
|
13
|
-
export { AnalyticsCardComponent as ɵs } from './lib/elements/analytics-card/analytics-card.component';
|
|
14
|
-
export { BaseFormComponent as ɵj } from './lib/elements/base-form/base-form.component';
|
|
15
|
-
export { BreadcrumbComponent as ɵbg } from './lib/elements/breadcrumb/breadcrumb.component';
|
|
16
|
-
export { CardCarouselComponent as ɵx } from './lib/elements/card-carousel/card-carousel.component';
|
|
17
|
-
export { ColumnInfoCardComponent as ɵp } from './lib/elements/column-info-card/column-info-card.component';
|
|
18
|
-
export { DynamicTabsComponent as ɵa } from './lib/elements/dynamic-tabs/dynamic-tabs.component';
|
|
19
|
-
export { FeedCardSmComponent as ɵt } from './lib/elements/feed-card-sm/feed-card-sm.component';
|
|
20
|
-
export { FormCardComponent as ɵi } from './lib/elements/form-card/form-card.component';
|
|
21
|
-
export { GhControlComponent as ɵu } from './lib/elements/gh-control/gh-control.component';
|
|
22
|
-
export { MainFeedCardComponent as ɵv } from './lib/elements/main-feed-card/main-feed-card.component';
|
|
23
|
-
export { ProjectInfoCardComponent as ɵr } from './lib/elements/project-info-card/project-info-card.component';
|
|
24
|
-
export { BuildsComponent as ɵg } from './lib/elements/projects/controls/builds/builds.component';
|
|
25
|
-
export { HeaderComponent as ɵb } from './lib/elements/projects/controls/header/header.component';
|
|
26
|
-
export { ProjectItemsComponent as ɵf } from './lib/elements/projects/controls/project-items/project-items.component';
|
|
27
|
-
export { ProjectTabsComponent as ɵc } from './lib/elements/projects/controls/project-tabs/project-tabs.component';
|
|
28
|
-
export { RecentActivitiesComponent as ɵh } from './lib/elements/projects/controls/recent-activities/recent-activities.component';
|
|
29
|
-
export { AppsFlowComponent as ɵl } from './lib/elements/projects/controls/tabs/apps-flow/apps-flow.component';
|
|
30
|
-
export { NpmPackageSelectComponent as ɵo } from './lib/elements/projects/controls/tabs/apps-flow/npm-package-select/npm-package-select.component';
|
|
31
|
-
export { DevOpsComponent as ɵm } from './lib/elements/projects/controls/tabs/devops/devops.component';
|
|
32
|
-
export { DFSModifiersComponent as ɵn } from './lib/elements/projects/controls/tabs/dfs-modifiers/dfs-modifiers.component';
|
|
33
|
-
export { DomainsComponent as ɵe } from './lib/elements/projects/controls/tabs/domains/domains.component';
|
|
34
|
-
export { BaseFormTestComponent as ɵk } from './lib/elements/projects/controls/tabs/general/forms/base-form-test/base-form-test.component';
|
|
35
|
-
export { GeneralComponent as ɵd } from './lib/elements/projects/controls/tabs/general/general.component';
|
|
36
|
-
export { SlottedCardComponent as ɵq } from './lib/elements/slotted-card/slotted-card.component';
|
|
37
|
-
export { TwoColumnHeaderComponent as ɵw } from './lib/elements/two-column-header/two-column-header.component';
|
|
38
|
-
//# sourceMappingURL=lowcodeunit-applications-flow-common.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,19 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lowcodeunit/applications-flow-common",
|
|
3
|
-
"version": "1.33.
|
|
4
|
-
"peerDependencies": {
|
|
5
|
-
"@angular/common": "^10.2.4",
|
|
6
|
-
"@angular/core": "^10.2.4"
|
|
7
|
-
},
|
|
3
|
+
"version": "1.33.134-angular-13",
|
|
8
4
|
"dependencies": {
|
|
9
5
|
"tslib": "^2.0.0"
|
|
10
6
|
},
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"fesm2015": "fesm2015/lowcodeunit-applications-flow-common.
|
|
7
|
+
"module": "fesm2015/lowcodeunit-applications-flow-common.mjs",
|
|
8
|
+
"es2020": "fesm2020/lowcodeunit-applications-flow-common.mjs",
|
|
9
|
+
"esm2020": "esm2020/lowcodeunit-applications-flow-common.mjs",
|
|
10
|
+
"fesm2020": "fesm2020/lowcodeunit-applications-flow-common.mjs",
|
|
11
|
+
"fesm2015": "fesm2015/lowcodeunit-applications-flow-common.mjs",
|
|
16
12
|
"typings": "lowcodeunit-applications-flow-common.d.ts",
|
|
17
|
-
"
|
|
13
|
+
"exports": {
|
|
14
|
+
"./package.json": {
|
|
15
|
+
"default": "./package.json"
|
|
16
|
+
},
|
|
17
|
+
".": {
|
|
18
|
+
"types": "./lowcodeunit-applications-flow-common.d.ts",
|
|
19
|
+
"esm2020": "./esm2020/lowcodeunit-applications-flow-common.mjs",
|
|
20
|
+
"es2020": "./fesm2020/lowcodeunit-applications-flow-common.mjs",
|
|
21
|
+
"es2015": "./fesm2015/lowcodeunit-applications-flow-common.mjs",
|
|
22
|
+
"node": "./fesm2015/lowcodeunit-applications-flow-common.mjs",
|
|
23
|
+
"default": "./fesm2020/lowcodeunit-applications-flow-common.mjs"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
18
26
|
"sideEffects": false
|
|
19
|
-
}
|
|
27
|
+
}
|