@lowcodeunit/applications-flow-common 1.33.68-lets-get-social-ish → 1.33.69-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 +43 -0
- package/esm2020/lib/applications-flow.module.mjs +194 -0
- package/esm2020/lib/elements/base-form/base-form.component.mjs +57 -0
- package/esm2020/lib/elements/dynamic-tabs/dynamic-tabs.component.mjs +74 -0
- package/esm2020/lib/elements/flow-tool/flow-tool.component.mjs +30 -0
- package/esm2020/lib/elements/form-card/form-card.component.mjs +33 -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/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/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 +3712 -0
- package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -0
- package/fesm2020/lowcodeunit-applications-flow-common.mjs +3659 -0
- package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -0
- package/lcu.api.d.ts +19 -3
- package/lib/applications-flow.module.d.ts +30 -1
- package/lib/elements/base-form/base-form.component.d.ts +3 -1
- package/lib/elements/dynamic-tabs/dynamic-tabs.component.d.ts +3 -1
- package/lib/elements/flow-tool/flow-tool.component.d.ts +17 -0
- package/lib/elements/form-card/form-card.component.d.ts +3 -1
- package/lib/elements/projects/controls/builds/builds.component.d.ts +3 -1
- package/lib/elements/projects/controls/create-project-wizard/create-project-wizard.component.d.ts +3 -1
- package/lib/elements/projects/controls/forms/source-control/source-control.component.d.ts +3 -1
- package/lib/elements/projects/controls/git-auth/git-auth.component.d.ts +3 -1
- package/lib/elements/projects/controls/header/header.component.d.ts +3 -1
- 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 +3 -1
- 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 +3 -1
- 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 +3 -1
- package/lib/elements/projects/controls/tabs/dfs-modifiers/dfs-modifiers.component.d.ts +3 -1
- package/lib/elements/projects/controls/tabs/domains/domains.component.d.ts +3 -1
- package/lib/elements/projects/controls/tabs/general/forms/base-form-test/base-form-test.component.d.ts +3 -1
- package/lib/elements/projects/controls/tabs/general/forms/project-details/project-details.component.d.ts +3 -1
- package/lib/elements/projects/controls/tabs/general/forms/root-directory/root-directory.component.d.ts +3 -1
- package/lib/elements/projects/controls/tabs/general/general.component.d.ts +3 -1
- package/lib/elements/projects/projects.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/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/services/applications-flow-events.service.d.ts +3 -1
- package/lib/services/applications-flow.service.d.ts +3 -1
- 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 +4 -2
- 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 -26
- package/package.json +20 -12
- package/bundles/lowcodeunit-applications-flow-common.umd.js +0 -5237
- 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 -26
- package/esm2015/lib/applications-flow.module.js +0 -171
- 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/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 -31
- 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 -265
- 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 -592
- 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 -225
- package/esm2015/lib/elements/slotted-card/slotted-card.component.js +0 -26
- 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-events.service.js +0 -83
- package/esm2015/lib/services/applications-flow.service.js +0 -136
- 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 -30
- package/fesm2015/lowcodeunit-applications-flow-common.js +0 -3992
- 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/analytics-card/analytics-card.component.d.ts +0 -9
- 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/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 +0 -18
- 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 +0 -12
- 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 +0 -17
- 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 +0 -11
- 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 +0 -14
- 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 +0 -13
- package/lib/elements/slotted-card/slotted-card.component.d.ts.map +0 -1
- package/lib/elements/three-column/three-column.component.d.ts +0 -9
- 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 +0 -6
- 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 +0 -8
- 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 +0 -9
- package/lib/models/slot-action.model.d.ts.map +0 -1
- 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/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
package/lcu.api.d.ts
CHANGED
|
@@ -2,7 +2,6 @@ export * from './lib/applications-flow.module';
|
|
|
2
2
|
export * from './lib/services/applications-flow.service';
|
|
3
3
|
export * from './lib/state/applications-flow-state.context';
|
|
4
4
|
export * from './lib/state/applications-flow.state';
|
|
5
|
-
export * from './lib/elements/projects/projects.component';
|
|
6
5
|
export * from './lib/elements/projects/controls/forms/source-control/source-control.component';
|
|
7
6
|
export * from './lib/elements/projects/controls/create-project-wizard/create-project-wizard.component';
|
|
8
7
|
export * from './lib/elements/projects/controls/hosting-details-form-group/hosting-details-form-group.component';
|
|
@@ -22,5 +21,22 @@ export * from './lib/models/form.model';
|
|
|
22
21
|
export * from './lib/models/form.values.model';
|
|
23
22
|
export * from './lib/models/base-form-config.model';
|
|
24
23
|
export * from './lib/elements/projects/controls/git-auth/git-auth.component';
|
|
25
|
-
export * from './lib/elements/
|
|
26
|
-
|
|
24
|
+
export * from './lib/elements/dynamic-tabs/dynamic-tabs.component';
|
|
25
|
+
export * from './lib/elements/projects/controls/project-items/project-items.component';
|
|
26
|
+
export * from './lib/elements/projects/controls/header/header.component';
|
|
27
|
+
export * from './lib/elements/projects/controls/tabs/domains/domains.component';
|
|
28
|
+
export * from './lib/elements/projects/controls/tabs/apps-flow/apps-flow.component';
|
|
29
|
+
export * from './lib/elements/projects/controls/tabs/dfs-modifiers/dfs-modifiers.component';
|
|
30
|
+
export * from './lib/elements/projects/controls/builds/builds.component';
|
|
31
|
+
export * from './lib/elements/projects/controls/tabs/apps-flow/apps-flow.component';
|
|
32
|
+
export * from './lib/elements/projects/controls/tabs/apps-flow/npm-package-select/npm-package-select.component';
|
|
33
|
+
export * from './lib/elements/projects/controls/tabs/general/forms/base-form-test/base-form-test.component';
|
|
34
|
+
export * from './lib/elements/projects/controls/tabs/general/forms/project-details/project-details.component';
|
|
35
|
+
export * from './lib/elements/projects/controls/tabs/general/forms/root-directory/root-directory.component';
|
|
36
|
+
export * from './lib/elements/projects/controls/tabs/devops/devops.component';
|
|
37
|
+
export * from './lib/elements/projects/controls/project-tabs/project-tabs.component';
|
|
38
|
+
export * from './lib/elements/form-card/form-card.component';
|
|
39
|
+
export * from './lib/elements/base-form/base-form.component';
|
|
40
|
+
export * from './lib/elements/projects/controls/recent-activities/recent-activities.component';
|
|
41
|
+
export * from './lib/elements/projects/projects.component';
|
|
42
|
+
export * from './lib/elements/flow-tool/flow-tool.component';
|
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
import { ModuleWithProviders } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "./elements/projects/projects.component";
|
|
4
|
+
import * as i2 from "./elements/projects/controls/hosting-details-form-group/hosting-details-form-group.component";
|
|
5
|
+
import * as i3 from "./elements/projects/controls/create-project-wizard/create-project-wizard.component";
|
|
6
|
+
import * as i4 from "./elements/dynamic-tabs/dynamic-tabs.component";
|
|
7
|
+
import * as i5 from "./elements/projects/controls/header/header.component";
|
|
8
|
+
import * as i6 from "./elements/projects/controls/project-tabs/project-tabs.component";
|
|
9
|
+
import * as i7 from "./elements/projects/controls/tabs/domains/domains.component";
|
|
10
|
+
import * as i8 from "./elements/projects/controls/project-items/project-items.component";
|
|
11
|
+
import * as i9 from "./elements/projects/controls/builds/builds.component";
|
|
12
|
+
import * as i10 from "./elements/projects/controls/recent-activities/recent-activities.component";
|
|
13
|
+
import * as i11 from "./elements/form-card/form-card.component";
|
|
14
|
+
import * as i12 from "./elements/projects/controls/tabs/general/forms/project-details/project-details.component";
|
|
15
|
+
import * as i13 from "./elements/projects/controls/tabs/general/forms/root-directory/root-directory.component";
|
|
16
|
+
import * as i14 from "./elements/base-form/base-form.component";
|
|
17
|
+
import * as i15 from "./elements/projects/controls/tabs/general/forms/base-form-test/base-form-test.component";
|
|
18
|
+
import * as i16 from "./elements/projects/controls/git-auth/git-auth.component";
|
|
19
|
+
import * as i17 from "./elements/projects/controls/forms/source-control/source-control.component";
|
|
20
|
+
import * as i18 from "./elements/projects/controls/tabs/apps-flow/apps-flow.component";
|
|
21
|
+
import * as i19 from "./elements/projects/controls/tabs/devops/devops.component";
|
|
22
|
+
import * as i20 from "./elements/projects/controls/tabs/dfs-modifiers/dfs-modifiers.component";
|
|
23
|
+
import * as i21 from "./elements/projects/controls/tabs/apps-flow/npm-package-select/npm-package-select.component";
|
|
24
|
+
import * as i22 from "./elements/flow-tool/flow-tool.component";
|
|
25
|
+
import * as i23 from "@lcu/common";
|
|
26
|
+
import * as i24 from "@angular/forms";
|
|
27
|
+
import * as i25 from "@angular/flex-layout";
|
|
28
|
+
import * as i26 from "@lowcodeunit/app-host-common";
|
|
2
29
|
export declare class ApplicationsFlowModule {
|
|
3
30
|
static forRoot(): ModuleWithProviders<ApplicationsFlowModule>;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ApplicationsFlowModule, never>;
|
|
32
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ApplicationsFlowModule, [typeof i1.ApplicationsFlowProjectsElementComponent, typeof i2.HostingDetailsFormGroupComponent, typeof i3.CreateProjectWizardComponent, typeof i4.DynamicTabsComponent, typeof i5.HeaderComponent, typeof i6.ProjectTabsComponent, typeof i7.DomainsComponent, typeof i8.ProjectItemsComponent, typeof i9.BuildsComponent, typeof i10.RecentActivitiesComponent, typeof i11.FormCardComponent, typeof i12.ProjectNameComponent, typeof i13.RootDirectoryComponent, typeof i14.BaseFormComponent, typeof i15.BaseFormTestComponent, typeof i16.GitAuthComponent, typeof i17.SourceControlFormControlsComponent, typeof i18.AppsFlowComponent, typeof i19.DevOpsComponent, typeof i20.DFSModifiersComponent, typeof i21.NpmPackageSelectComponent, typeof i22.FlowToolComponent], [typeof i23.FathymSharedModule, typeof i24.FormsModule, typeof i24.ReactiveFormsModule, typeof i25.FlexLayoutModule, typeof i23.MaterialModule, typeof i26.AppHostModule], [typeof i1.ApplicationsFlowProjectsElementComponent, typeof i2.HostingDetailsFormGroupComponent, typeof i3.CreateProjectWizardComponent, typeof i4.DynamicTabsComponent, typeof i5.HeaderComponent, typeof i6.ProjectTabsComponent, typeof i7.DomainsComponent, typeof i8.ProjectItemsComponent, typeof i9.BuildsComponent, typeof i10.RecentActivitiesComponent, typeof i11.FormCardComponent, typeof i12.ProjectNameComponent, typeof i13.RootDirectoryComponent, typeof i14.BaseFormComponent, typeof i15.BaseFormTestComponent, typeof i16.GitAuthComponent, typeof i17.SourceControlFormControlsComponent, typeof i18.AppsFlowComponent, typeof i19.DevOpsComponent, typeof i20.DFSModifiersComponent, typeof i21.NpmPackageSelectComponent, typeof i22.FlowToolComponent]>;
|
|
33
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ApplicationsFlowModule>;
|
|
4
34
|
}
|
|
5
|
-
//# sourceMappingURL=applications-flow.module.d.ts.map
|
|
@@ -2,6 +2,7 @@ import { BaseFormConfigModel } from './../../models/base-form-config.model';
|
|
|
2
2
|
import { OnInit } from '@angular/core';
|
|
3
3
|
import { ApplicationsFlowEventsService } from '../../services/applications-flow-events.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
8
|
protected appsFlowEventsSvc: ApplicationsFlowEventsService;
|
|
@@ -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
|
|
@@ -3,6 +3,7 @@ import { Subscription } from 'rxjs';
|
|
|
3
3
|
import { DynamicTabsModel } from './../../models/dynamic-tabs.model';
|
|
4
4
|
import { AfterViewInit, ComponentFactoryResolver, 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
8
|
protected componentFactoryResolver: ComponentFactoryResolver;
|
|
8
9
|
protected formsService: FormsService;
|
|
@@ -39,5 +40,6 @@ export declare class DynamicTabsComponent implements OnInit, AfterViewInit {
|
|
|
39
40
|
* @param index TabComponents index position
|
|
40
41
|
*/
|
|
41
42
|
protected renderComponent(index: number): void;
|
|
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,17 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import '@semanticjs/krakyn';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class FlowToolComponent implements OnInit {
|
|
5
|
+
Data: any;
|
|
6
|
+
SideMenuItems: any;
|
|
7
|
+
Title: string;
|
|
8
|
+
TabMenuItems: Array<{
|
|
9
|
+
Label: string;
|
|
10
|
+
Target: string;
|
|
11
|
+
Class?: string;
|
|
12
|
+
}>;
|
|
13
|
+
constructor();
|
|
14
|
+
ngOnInit(): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FlowToolComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FlowToolComponent, "lcu-flow-tool", never, {}, {}, never, never>;
|
|
17
|
+
}
|
|
@@ -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
|
|
@@ -2,6 +2,7 @@ import { GitHubWorkflowRun } from './../../../../state/applications-flow.state';
|
|
|
2
2
|
import { OnInit, OnDestroy } from '@angular/core';
|
|
3
3
|
import { ApplicationsFlowEventsService } from './../../../../services/applications-flow-events.service';
|
|
4
4
|
import { EaCLowCodeUnit, EaCProjectAsCode } from '@semanticjs/common';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class BuildsComponent implements OnInit, OnDestroy {
|
|
6
7
|
protected appsFlowEventsSvc: ApplicationsFlowEventsService;
|
|
7
8
|
Projects: Array<EaCProjectAsCode>;
|
|
@@ -13,5 +14,6 @@ export declare class BuildsComponent implements OnInit, OnDestroy {
|
|
|
13
14
|
project: EaCProjectAsCode;
|
|
14
15
|
lcuID: string;
|
|
15
16
|
}): EaCLowCodeUnit;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BuildsComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BuildsComponent, "lcu-builds", never, { "Projects": "projects"; }, {}, never, never>;
|
|
16
19
|
}
|
|
17
|
-
//# sourceMappingURL=builds.component.d.ts.map
|
package/lib/elements/projects/controls/create-project-wizard/create-project-wizard.component.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ import { ApplicationsFlowService } from '../../../../services/applications-flow.
|
|
|
5
5
|
import { ProjectHostingDetails } from '../../../../state/applications-flow.state';
|
|
6
6
|
import { SourceControlFormControlsComponent } from '../forms/source-control/source-control.component';
|
|
7
7
|
import { ApplicationsFlowEventsService } from './../../../../services/applications-flow-events.service';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
8
9
|
export declare class CreateProjectWizardComponent implements AfterViewInit, OnInit {
|
|
9
10
|
protected formBuilder: FormBuilder;
|
|
10
11
|
protected appsFlowSvc: ApplicationsFlowService;
|
|
@@ -30,5 +31,6 @@ export declare class CreateProjectWizardComponent implements AfterViewInit, OnIn
|
|
|
30
31
|
protected determineStep(): void;
|
|
31
32
|
protected handleStateChange(): void;
|
|
32
33
|
protected loadProjectHostingDetails(): void;
|
|
34
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CreateProjectWizardComponent, never>;
|
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CreateProjectWizardComponent, "lcu-create-project-wizard", never, {}, {}, never, never>;
|
|
33
36
|
}
|
|
34
|
-
//# sourceMappingURL=create-project-wizard.component.d.ts.map
|
|
@@ -7,6 +7,7 @@ import { GitHubBranch, GitHubOrganization, GitHubRepository } from '../../../../
|
|
|
7
7
|
import { ApplicationsFlowService } from '../../../../../services/applications-flow.service';
|
|
8
8
|
import { ApplicationsFlowEventsService } from '../../../../../services/applications-flow-events.service';
|
|
9
9
|
import { EaCSourceControl } from '@semanticjs/common';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
10
11
|
export declare class SourceControlFormControlsComponent implements AfterViewInit, OnDestroy, OnInit {
|
|
11
12
|
protected formBuilder: FormBuilder;
|
|
12
13
|
protected appsFlowSvc: ApplicationsFlowService;
|
|
@@ -59,5 +60,6 @@ export declare class SourceControlFormControlsComponent implements AfterViewInit
|
|
|
59
60
|
protected listOrganizations(): void;
|
|
60
61
|
protected listRepositories(activeRepo?: string): void;
|
|
61
62
|
protected setupFormControls(): void;
|
|
63
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SourceControlFormControlsComponent, never>;
|
|
64
|
+
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>;
|
|
62
65
|
}
|
|
63
|
-
//# sourceMappingURL=source-control.component.d.ts.map
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { OnInit, AfterViewInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class GitAuthComponent implements OnInit, AfterViewInit {
|
|
3
4
|
ConnectClicked: boolean;
|
|
4
5
|
constructor();
|
|
@@ -8,5 +9,6 @@ export declare class GitAuthComponent implements OnInit, AfterViewInit {
|
|
|
8
9
|
* Connect Github Provider
|
|
9
10
|
*/
|
|
10
11
|
ConnectGitHubProvider(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GitAuthComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GitAuthComponent, "lcu-git-auth", never, {}, {}, never, never>;
|
|
11
14
|
}
|
|
12
|
-
//# sourceMappingURL=git-auth.component.d.ts.map
|
|
@@ -3,6 +3,7 @@ import { ApplicationsFlowEventsService } from './../../../../services/applicatio
|
|
|
3
3
|
import { EaCProjectAsCode } from '@semanticjs/common';
|
|
4
4
|
import { AbstractControl, FormBuilder, FormGroup } from '@angular/forms';
|
|
5
5
|
import { LCUServiceSettings } from '@lcu/common';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class HeaderComponent implements OnInit {
|
|
7
8
|
protected formBuilder: FormBuilder;
|
|
8
9
|
protected lcuSettings: LCUServiceSettings;
|
|
@@ -20,5 +21,6 @@ export declare class HeaderComponent implements OnInit {
|
|
|
20
21
|
ngOnInit(): void;
|
|
21
22
|
CreateProject(): void;
|
|
22
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>;
|
|
23
26
|
}
|
|
24
|
-
//# sourceMappingURL=header.component.d.ts.map
|
|
@@ -2,6 +2,7 @@ import { OnChanges, OnInit } from '@angular/core';
|
|
|
2
2
|
import { AbstractControl, FormBuilder, FormGroup } from '@angular/forms';
|
|
3
3
|
import { EaCDevOpsAction, EaCArtifact } from '@semanticjs/common';
|
|
4
4
|
import { ProjectHostingDetails, ProjectHostingOption } from '../../../../state/applications-flow.state';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class HostingDetailsFormGroupComponent implements OnChanges, OnInit {
|
|
6
7
|
protected formBuilder: FormBuilder;
|
|
7
8
|
Artifact: EaCArtifact;
|
|
@@ -24,5 +25,6 @@ export declare class HostingDetailsFormGroupComponent implements OnChanges, OnIn
|
|
|
24
25
|
ngOnInit(): void;
|
|
25
26
|
BuildPipelineChanged(): void;
|
|
26
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>;
|
|
27
30
|
}
|
|
28
|
-
//# sourceMappingURL=hosting-details-form-group.component.d.ts.map
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { ApplicationsFlowEventsService } from '../../../../services/applications-flow-events.service';
|
|
3
3
|
import { EaCProjectAsCode } from '@semanticjs/common';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class ProjectItemsComponent implements OnInit {
|
|
5
6
|
protected appsFlowEventsSvc: ApplicationsFlowEventsService;
|
|
6
7
|
get ProjectLookups(): Array<string>;
|
|
@@ -23,5 +24,6 @@ export declare class ProjectItemsComponent implements OnInit {
|
|
|
23
24
|
* Event to edit project settings
|
|
24
25
|
*/
|
|
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>;
|
|
26
29
|
}
|
|
27
|
-
//# sourceMappingURL=project-items.component.d.ts.map
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { DynamicTabsModel } from './../../../../models/dynamic-tabs.model';
|
|
2
2
|
import { OnInit } from '@angular/core';
|
|
3
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
|
get ApplicationLookups(): Array<string>;
|
|
6
7
|
Applications: {
|
|
@@ -21,5 +22,6 @@ export declare class ProjectTabsComponent implements OnInit {
|
|
|
21
22
|
constructor();
|
|
22
23
|
ngOnInit(): void;
|
|
23
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>;
|
|
24
27
|
}
|
|
25
|
-
//# 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
|
|
@@ -5,6 +5,7 @@ import { EaCApplicationAsCode, EaCEnvironmentAsCode, EaCProjectAsCode, EaCSource
|
|
|
5
5
|
import { MatSelectChange } from '@angular/material/select';
|
|
6
6
|
import { SourceControlFormControlsComponent } from '../../forms/source-control/source-control.component';
|
|
7
7
|
import { ApplicationsFlowService } from '../../../../../services/applications-flow.service';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
8
9
|
export declare class AppsFlowComponent implements OnInit {
|
|
9
10
|
protected formBldr: FormBuilder;
|
|
10
11
|
protected appsFlowSvc: ApplicationsFlowService;
|
|
@@ -107,5 +108,6 @@ export declare class AppsFlowComponent implements OnInit {
|
|
|
107
108
|
protected setupProcessorTypeSubForm(): void;
|
|
108
109
|
protected setupRedirectForm(): void;
|
|
109
110
|
protected setupSecurityForm(): void;
|
|
111
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AppsFlowComponent, never>;
|
|
112
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AppsFlowComponent, "lcu-apps-flow", never, { "Data": "data"; }, {}, never, never>;
|
|
110
113
|
}
|
|
111
|
-
//# sourceMappingURL=apps-flow.component.d.ts.map
|
|
@@ -2,6 +2,7 @@ import { OnInit } from '@angular/core';
|
|
|
2
2
|
import { FormGroup } from '@angular/forms';
|
|
3
3
|
import { MatAutocompleteSelectedEvent } from '@angular/material/autocomplete';
|
|
4
4
|
import { NPMService } from '../../../../../../services/npm.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class NpmPackageSelectComponent implements OnInit {
|
|
6
7
|
protected npm: NPMService;
|
|
7
8
|
NPMPackage: string;
|
|
@@ -17,5 +18,6 @@ export declare class NpmPackageSelectComponent implements OnInit {
|
|
|
17
18
|
ngOnDestroy(): void;
|
|
18
19
|
ngOnInit(): void;
|
|
19
20
|
PackageSelected(event: MatAutocompleteSelectedEvent): void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NpmPackageSelectComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NpmPackageSelectComponent, "lcu-npm-package-select", never, { "NPMPackage": "npm-package"; "NPMPackageVersion": "npm-package-version"; "FormGroup": "form-group"; }, {}, never, never>;
|
|
20
23
|
}
|
|
21
|
-
//# sourceMappingURL=npm-package-select.component.d.ts.map
|
|
@@ -7,6 +7,7 @@ import { SourceControlFormControlsComponent } from '../../forms/source-control/s
|
|
|
7
7
|
import { ProjectHostingDetails } from '../../../../../state/applications-flow.state';
|
|
8
8
|
import { ApplicationsFlowService } from '../../../../../services/applications-flow.service';
|
|
9
9
|
import { HostingDetailsFormGroupComponent } from '../../hosting-details-form-group/hosting-details-form-group.component';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
10
11
|
export declare class DevOpsComponent implements OnInit {
|
|
11
12
|
protected formBldr: FormBuilder;
|
|
12
13
|
protected appsFlowSvc: ApplicationsFlowService;
|
|
@@ -47,5 +48,6 @@ export declare class DevOpsComponent implements OnInit {
|
|
|
47
48
|
protected loadProjectHostingDetails(): void;
|
|
48
49
|
protected setupDevOpsForm(): void;
|
|
49
50
|
protected setupBuildForm(): void;
|
|
51
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DevOpsComponent, never>;
|
|
52
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DevOpsComponent, "lcu-devops", never, { "Data": "data"; }, {}, never, never>;
|
|
50
53
|
}
|
|
51
|
-
//# sourceMappingURL=devops.component.d.ts.map
|
|
@@ -5,6 +5,7 @@ import { ApplicationsFlowEventsService } from '../../../../../services/applicati
|
|
|
5
5
|
import { EaCDFSModifier, EaCProjectAsCode } from '@semanticjs/common';
|
|
6
6
|
import { MatSelectChange } from '@angular/material/select';
|
|
7
7
|
import { ApplicationsFlowService } from '../../../../../services/applications-flow.service';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
8
9
|
export declare class DFSModifiersComponent implements OnInit {
|
|
9
10
|
protected formBldr: FormBuilder;
|
|
10
11
|
protected appsFlowSvc: ApplicationsFlowService;
|
|
@@ -45,5 +46,6 @@ export declare class DFSModifiersComponent implements OnInit {
|
|
|
45
46
|
TypeChanged(event: MatSelectChange): void;
|
|
46
47
|
protected setupModifierForm(): void;
|
|
47
48
|
protected setupTypeForm(): void;
|
|
49
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DFSModifiersComponent, never>;
|
|
50
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DFSModifiersComponent, "lcu-dfs-modifiers", never, { "Data": "data"; }, {}, never, never>;
|
|
48
51
|
}
|
|
49
|
-
//# sourceMappingURL=dfs-modifiers.component.d.ts.map
|
|
@@ -4,6 +4,7 @@ import { OnInit } from '@angular/core';
|
|
|
4
4
|
import { AbstractControl, FormGroup } from '@angular/forms';
|
|
5
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
10
|
protected appsFlowEventsSvc: ApplicationsFlowEventsService;
|
|
@@ -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
|
|
@@ -3,6 +3,7 @@ import { FormsService } from '../../../../../../../services/forms.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
9
|
protected appsFlowEventsSvc: ApplicationsFlowEventsService;
|
|
@@ -19,5 +20,6 @@ export declare class BaseFormTestComponent extends BaseFormComponent implements
|
|
|
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
|
|
@@ -4,6 +4,7 @@ import { FormsService } from '../../../../../../../services/forms.service';
|
|
|
4
4
|
import { CardFormConfigModel } from '../../../../../../../models/card-form-config.model';
|
|
5
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
10
|
protected appsFlowEventsSvc: ApplicationsFlowEventsService;
|
|
@@ -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
|
|
@@ -5,6 +5,7 @@ import { OnInit } from '@angular/core';
|
|
|
5
5
|
import { AbstractControl, FormGroup } from '@angular/forms';
|
|
6
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
11
|
protected appsFlowEventsSvc: ApplicationsFlowEventsService;
|
|
@@ -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
|
|
@@ -7,6 +7,7 @@ import { ApplicationsFlowService } from '../../services/applications-flow.servic
|
|
|
7
7
|
import { ProjectService } from '../../services/project.service';
|
|
8
8
|
import { ApplicationsFlowEventsService, SaveApplicationAsCodeEventRequest, SaveDFSModifierEventRequest, SaveEnvironmentAsCodeEventRequest } from './../../services/applications-flow-events.service';
|
|
9
9
|
import { EaCEnvironmentAsCode, EaCProjectAsCode } from '@semanticjs/common';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
10
11
|
export declare class ApplicationsFlowProjectsElementState {
|
|
11
12
|
}
|
|
12
13
|
export declare class ApplicationsFlowProjectsContext extends LCUElementContext<ApplicationsFlowProjectsElementState> {
|
|
@@ -36,5 +37,6 @@ export declare class ApplicationsFlowProjectsElementComponent extends LcuElement
|
|
|
36
37
|
protected handleSaveEnvironment(req: SaveEnvironmentAsCodeEventRequest): Promise<void>;
|
|
37
38
|
protected handleSaveProject(projectLookup: string, project: EaCProjectAsCode): Promise<void>;
|
|
38
39
|
protected setServices(): void;
|
|
40
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ApplicationsFlowProjectsElementComponent, never>;
|
|
41
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ApplicationsFlowProjectsElementComponent, "applications-flow-projects-element", never, {}, {}, never, never>;
|
|
39
42
|
}
|
|
40
|
-
//# sourceMappingURL=projects.component.d.ts.map
|
|
@@ -3,6 +3,7 @@ import { EaCDFSModifier, EaCEnvironmentAsCode } from '@semanticjs/common';
|
|
|
3
3
|
import { EaCApplicationAsCode, EaCDataToken, EaCProjectAsCode } from '@semanticjs/common';
|
|
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 SaveApplicationAsCodeEventRequest {
|
|
7
8
|
Application?: EaCApplicationAsCode;
|
|
8
9
|
ApplicationLookup?: string;
|
|
@@ -54,5 +55,6 @@ export declare class ApplicationsFlowEventsService {
|
|
|
54
55
|
SetCreatingProject(creatingProject: boolean): void;
|
|
55
56
|
SetEditProjectSettings(projectLookup: string): void;
|
|
56
57
|
UnpackLowCodeUnit(req: UnpackLowCodeUnitRequest): void;
|
|
58
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ApplicationsFlowEventsService, never>;
|
|
59
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ApplicationsFlowEventsService>;
|
|
57
60
|
}
|
|
58
|
-
//# sourceMappingURL=applications-flow-events.service.d.ts.map
|
|
@@ -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;
|
|
@@ -31,5 +32,6 @@ export declare class ApplicationsFlowService {
|
|
|
31
32
|
protected loadHeaders(): {
|
|
32
33
|
[header: string]: string | string[];
|
|
33
34
|
};
|
|
35
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ApplicationsFlowService, never>;
|
|
36
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ApplicationsFlowService>;
|
|
34
37
|
}
|
|
35
|
-
//# 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;
|
|
@@ -12,7 +13,7 @@ export declare class ProjectService {
|
|
|
12
13
|
DeleteSourceControl(state: ApplicationsFlowState, scLookup: string): Promise<EnterpriseAsCode>;
|
|
13
14
|
EnsureUserEnterprise(state: ApplicationsFlowState): Promise<EnterpriseAsCode>;
|
|
14
15
|
GetActiveEnterprise(state: ApplicationsFlowState): Promise<void>;
|
|
15
|
-
HasValidConnection(state: ApplicationsFlowState
|
|
16
|
+
HasValidConnection(state: ApplicationsFlowState): Promise<EnterpriseAsCode>;
|
|
16
17
|
ListEnterprises(state: ApplicationsFlowState): Promise<any[]>;
|
|
17
18
|
LoadEnterpriseAsCode(state: ApplicationsFlowState): Promise<EnterpriseAsCode>;
|
|
18
19
|
SetActiveEnterprise(state: ApplicationsFlowState, activeEntLookup: string): Promise<EnterpriseAsCode>;
|
|
@@ -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
|