@lowcodeunit/applications-flow-common 0.0.2 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lcu.api.mjs +80 -0
- package/esm2020/lib/applications-flow.module.mjs +352 -0
- package/esm2020/lib/controls/build-pipeline-form/build-pipeline-form.component.mjs +251 -0
- package/esm2020/lib/controls/devops-source-control-form/devops-source-control-form.component.mjs +432 -0
- package/esm2020/lib/controls/edit-application-form/edit-application-form.component.mjs +110 -0
- package/esm2020/lib/controls/processor-details-form/processor-details-form.component.mjs +432 -0
- package/esm2020/lib/controls/security-toggle/security-toggle.component.mjs +61 -0
- package/esm2020/lib/controls/source-control-form/source-control-form.component.mjs +69 -0
- package/esm2020/lib/dialogs/build-pipeline-dialog/build-pipeline-dialog.component.mjs +32 -0
- package/esm2020/lib/dialogs/custom-domain-dialog/custom-domain-dialog.component.mjs +35 -0
- package/esm2020/lib/dialogs/edit-application-dialog/edit-application-dialog.component.mjs +33 -0
- package/esm2020/lib/dialogs/new-application-dialog/new-application-dialog.component.mjs +170 -0
- package/esm2020/lib/dialogs/processor-details-dialog/processor-details-dialog.component.mjs +53 -0
- package/esm2020/lib/dialogs/source-control-dialog/source-control-dialog.component.mjs +29 -0
- package/esm2020/lib/dialogs/upgrade-dialog/upgrade-dialog.component.mjs +23 -0
- package/esm2020/lib/elements/analytics-card/analytics-card.component.mjs +28 -0
- package/esm2020/lib/elements/base-form/base-form.component.mjs +57 -0
- package/esm2020/lib/elements/breadcrumb/breadcrumb.component.mjs +124 -0
- package/esm2020/lib/elements/card-carousel/card-carousel.component.mjs +70 -0
- package/esm2020/lib/elements/dynamic-tabs/dynamic-tabs.component.mjs +75 -0
- package/esm2020/lib/elements/feed-card-sm/feed-card-sm.component.mjs +42 -0
- package/esm2020/lib/elements/flow-tool/flow-tool.component.mjs +75 -0
- package/esm2020/lib/elements/form-card/form-card.component.mjs +33 -0
- package/esm2020/lib/elements/gh-control/gh-control.component.mjs +78 -0
- package/esm2020/lib/elements/main-feed-card/main-feed-card.component.mjs +128 -0
- package/esm2020/lib/elements/project-info-card/project-info-card.component.mjs +76 -0
- package/esm2020/lib/elements/projects/controls/builds/builds.component.mjs +32 -0
- package/esm2020/lib/elements/projects/controls/create-project-wizard/create-project-wizard.component.mjs +145 -0
- package/esm2020/lib/elements/projects/controls/forms/source-control/source-control.component.mjs +285 -0
- package/esm2020/lib/elements/projects/controls/git-auth/git-auth.component.mjs +26 -0
- package/esm2020/lib/elements/projects/controls/header/header.component.mjs +83 -0
- package/esm2020/lib/elements/projects/controls/hosting-details-form-group/hosting-details-form-group.component.mjs +118 -0
- package/esm2020/lib/elements/projects/controls/project-items/project-items.component.mjs +54 -0
- package/esm2020/lib/elements/projects/controls/project-tabs/project-tabs.component.mjs +103 -0
- package/esm2020/lib/elements/projects/controls/recent-activities/recent-activities.component.mjs +14 -0
- package/esm2020/lib/elements/projects/controls/tabs/apps-flow/apps-flow.component.mjs +561 -0
- package/esm2020/lib/elements/projects/controls/tabs/apps-flow/npm-package-select/npm-package-select.component.mjs +72 -0
- package/esm2020/lib/elements/projects/controls/tabs/devops/devops.component.mjs +242 -0
- package/esm2020/lib/elements/projects/controls/tabs/dfs-modifiers/dfs-modifiers.component.mjs +179 -0
- package/esm2020/lib/elements/projects/controls/tabs/domains/domains.component.mjs +140 -0
- package/esm2020/lib/elements/projects/controls/tabs/general/forms/base-form-test/base-form-test.component.mjs +90 -0
- package/esm2020/lib/elements/projects/controls/tabs/general/forms/project-details/project-details.component.mjs +142 -0
- package/esm2020/lib/elements/projects/controls/tabs/general/forms/root-directory/root-directory.component.mjs +124 -0
- package/esm2020/lib/elements/projects/controls/tabs/general/general.component.mjs +40 -0
- package/esm2020/lib/elements/projects/projects.component.mjs +91 -0
- package/esm2020/lib/elements/skeleton-feed-card/skeleton-feed-card.component.mjs +20 -0
- package/esm2020/lib/elements/slotted-card/slotted-card.component.mjs +60 -0
- package/esm2020/lib/elements/three-column/three-column.component.mjs +30 -0
- package/esm2020/lib/elements/two-column-header/two-column-header.component.mjs +15 -0
- package/esm2020/lib/models/actions.model.mjs +3 -0
- package/esm2020/lib/models/base-form-config.model.mjs +6 -0
- package/esm2020/lib/models/card-form-config.model.mjs +6 -0
- package/esm2020/lib/models/dev-settings-preset.model.mjs +3 -0
- package/esm2020/lib/models/domain.model.mjs +3 -0
- package/esm2020/lib/models/dynamic-tabs.model.mjs +6 -0
- package/esm2020/lib/models/form-actions.model.mjs +3 -0
- package/esm2020/lib/models/form.model.mjs +6 -0
- package/esm2020/lib/models/form.values.model.mjs +11 -0
- package/esm2020/lib/models/project-actions.model.mjs +6 -0
- package/esm2020/lib/models/user-feed.model.mjs +12 -0
- package/esm2020/lib/services/applications-flow.service.mjs +142 -0
- package/esm2020/lib/services/eac.service.mjs +183 -0
- package/esm2020/lib/services/forms.service.mjs +132 -0
- package/esm2020/lib/services/npm.service.mjs +77 -0
- package/esm2020/lib/services/project.service.mjs +326 -0
- package/esm2020/lib/state/applications-flow-state.context.mjs +36 -0
- package/esm2020/lib/state/applications-flow.state.mjs +72 -0
- package/esm2020/lowcodeunit-applications-flow-common.mjs +5 -0
- package/fesm2015/lowcodeunit-applications-flow-common.mjs +6156 -0
- package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -0
- package/fesm2020/lowcodeunit-applications-flow-common.mjs +6009 -0
- package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -0
- package/lcu.api.d.ts +58 -4
- package/lib/applications-flow.module.d.ts +58 -1
- package/lib/controls/build-pipeline-form/build-pipeline-form.component.d.ts +47 -0
- package/lib/controls/devops-source-control-form/devops-source-control-form.component.d.ts +86 -0
- package/lib/controls/edit-application-form/edit-application-form.component.d.ts +27 -0
- package/lib/controls/processor-details-form/processor-details-form.component.d.ts +80 -0
- package/lib/controls/security-toggle/security-toggle.component.d.ts +25 -0
- package/lib/controls/source-control-form/source-control-form.component.d.ts +27 -0
- package/lib/dialogs/build-pipeline-dialog/build-pipeline-dialog.component.d.ts +19 -0
- package/lib/dialogs/custom-domain-dialog/custom-domain-dialog.component.d.ts +22 -0
- package/lib/dialogs/edit-application-dialog/edit-application-dialog.component.d.ts +17 -0
- package/lib/dialogs/new-application-dialog/new-application-dialog.component.d.ts +35 -0
- package/lib/dialogs/processor-details-dialog/processor-details-dialog.component.d.ts +31 -0
- package/lib/dialogs/source-control-dialog/source-control-dialog.component.d.ts +18 -0
- package/lib/dialogs/upgrade-dialog/upgrade-dialog.component.d.ts +11 -0
- package/lib/elements/analytics-card/analytics-card.component.d.ts +11 -0
- package/lib/elements/base-form/base-form.component.d.ts +6 -4
- package/lib/elements/breadcrumb/breadcrumb.component.d.ts +38 -0
- package/lib/elements/card-carousel/card-carousel.component.d.ts +16 -0
- package/lib/elements/dynamic-tabs/dynamic-tabs.component.d.ts +7 -5
- package/lib/elements/feed-card-sm/feed-card-sm.component.d.ts +14 -0
- package/lib/elements/flow-tool/flow-tool.component.d.ts +28 -0
- package/lib/elements/form-card/form-card.component.d.ts +3 -1
- package/lib/elements/gh-control/gh-control.component.d.ts +19 -0
- package/lib/elements/main-feed-card/main-feed-card.component.d.ts +26 -0
- package/lib/elements/project-info-card/project-info-card.component.d.ts +26 -0
- package/lib/elements/projects/controls/builds/builds.component.d.ts +9 -13
- package/lib/elements/projects/controls/create-project-wizard/create-project-wizard.component.d.ts +15 -14
- package/lib/elements/projects/controls/forms/source-control/source-control.component.d.ts +63 -0
- package/lib/elements/projects/controls/git-auth/git-auth.component.d.ts +4 -1
- package/lib/elements/projects/controls/header/header.component.d.ts +22 -4
- package/lib/elements/projects/controls/hosting-details-form-group/hosting-details-form-group.component.d.ts +22 -4
- package/lib/elements/projects/controls/project-items/project-items.component.d.ts +29 -0
- package/lib/elements/projects/controls/project-tabs/project-tabs.component.d.ts +19 -4
- package/lib/elements/projects/controls/recent-activities/recent-activities.component.d.ts +3 -1
- package/lib/elements/projects/controls/tabs/apps-flow/apps-flow.component.d.ts +113 -0
- package/lib/elements/projects/controls/tabs/apps-flow/npm-package-select/npm-package-select.component.d.ts +23 -0
- package/lib/elements/projects/controls/tabs/devops/devops.component.d.ts +53 -0
- package/lib/elements/projects/controls/tabs/dfs-modifiers/dfs-modifiers.component.d.ts +51 -0
- package/lib/elements/projects/controls/tabs/domains/domains.component.d.ts +18 -8
- package/lib/elements/projects/controls/tabs/general/forms/base-form-test/base-form-test.component.d.ts +6 -4
- package/lib/elements/projects/controls/tabs/general/forms/project-details/project-details.component.d.ts +9 -6
- package/lib/elements/projects/controls/tabs/general/forms/root-directory/root-directory.component.d.ts +9 -6
- package/lib/elements/projects/controls/tabs/general/general.component.d.ts +8 -4
- package/lib/elements/projects/projects.component.d.ts +18 -22
- package/lib/elements/skeleton-feed-card/skeleton-feed-card.component.d.ts +9 -0
- package/lib/elements/slotted-card/slotted-card.component.d.ts +23 -0
- package/lib/elements/three-column/three-column.component.d.ts +11 -0
- package/lib/elements/two-column-header/two-column-header.component.d.ts +8 -0
- package/lib/models/actions.model.d.ts +0 -1
- package/lib/models/base-form-config.model.d.ts +0 -1
- package/lib/models/card-form-config.model.d.ts +0 -1
- package/lib/models/dev-settings-preset.model.d.ts +0 -1
- package/lib/models/domain.model.d.ts +0 -1
- package/lib/models/dynamic-tabs.model.d.ts +0 -1
- package/lib/models/form-actions.model.d.ts +0 -1
- package/lib/models/form.model.d.ts +0 -1
- package/lib/models/form.values.model.d.ts +0 -1
- package/lib/models/project-actions.model.d.ts +0 -1
- package/lib/models/user-feed.model.d.ts +42 -0
- package/lib/services/applications-flow.service.d.ts +20 -8
- package/lib/services/eac.service.d.ts +63 -0
- package/lib/services/forms.service.d.ts +3 -1
- package/lib/services/npm.service.d.ts +13 -0
- package/lib/services/project.service.d.ts +23 -7
- package/lib/state/applications-flow-state.context.d.ts +3 -1
- package/lib/state/applications-flow.state.d.ts +29 -38
- package/lowcodeunit-applications-flow-common.d.ts +1 -13
- package/package.json +20 -12
- package/bundles/lowcodeunit-applications-flow-common.umd.js +0 -2571
- package/bundles/lowcodeunit-applications-flow-common.umd.js.map +0 -1
- package/bundles/lowcodeunit-applications-flow-common.umd.min.js +0 -16
- package/bundles/lowcodeunit-applications-flow-common.umd.min.js.map +0 -1
- package/esm2015/lcu.api.js +0 -25
- package/esm2015/lib/applications-flow.module.js +0 -116
- package/esm2015/lib/elements/base-form/base-form.component.js +0 -61
- package/esm2015/lib/elements/dynamic-tabs/dynamic-tabs.component.js +0 -69
- package/esm2015/lib/elements/form-card/form-card.component.js +0 -22
- package/esm2015/lib/elements/projects/controls/builds/builds.component.js +0 -37
- package/esm2015/lib/elements/projects/controls/create-project-wizard/create-project-wizard.component.js +0 -207
- package/esm2015/lib/elements/projects/controls/git-auth/git-auth.component.js +0 -26
- package/esm2015/lib/elements/projects/controls/header/header.component.js +0 -19
- package/esm2015/lib/elements/projects/controls/hosting-details-form-group/hosting-details-form-group.component.js +0 -55
- package/esm2015/lib/elements/projects/controls/project-item/project-item.component.js +0 -39
- package/esm2015/lib/elements/projects/controls/project-settings/project-settings.component.js +0 -44
- package/esm2015/lib/elements/projects/controls/project-tabs/project-tabs.component.js +0 -39
- package/esm2015/lib/elements/projects/controls/recent-activities/recent-activities.component.js +0 -15
- package/esm2015/lib/elements/projects/controls/tabs/domains/domains.component.js +0 -108
- package/esm2015/lib/elements/projects/controls/tabs/general/forms/base-form-test/base-form-test.component.js +0 -86
- package/esm2015/lib/elements/projects/controls/tabs/general/forms/project-details/project-details.component.js +0 -122
- package/esm2015/lib/elements/projects/controls/tabs/general/forms/root-directory/root-directory.component.js +0 -109
- package/esm2015/lib/elements/projects/controls/tabs/general/forms/settings/settings.component.js +0 -238
- package/esm2015/lib/elements/projects/controls/tabs/general/general.component.js +0 -44
- package/esm2015/lib/elements/projects/projects.component.js +0 -145
- package/esm2015/lib/models/actions.model.js +0 -3
- package/esm2015/lib/models/base-form-config.model.js +0 -6
- package/esm2015/lib/models/card-form-config.model.js +0 -6
- package/esm2015/lib/models/dev-settings-preset.model.js +0 -3
- package/esm2015/lib/models/domain.model.js +0 -3
- package/esm2015/lib/models/dynamic-tabs.model.js +0 -6
- package/esm2015/lib/models/form-actions.model.js +0 -3
- package/esm2015/lib/models/form.model.js +0 -6
- package/esm2015/lib/models/form.values.model.js +0 -11
- package/esm2015/lib/models/project-actions.model.js +0 -6
- package/esm2015/lib/services/applications-flow-events.service.js +0 -28
- package/esm2015/lib/services/applications-flow.service.js +0 -96
- package/esm2015/lib/services/forms.service.js +0 -131
- package/esm2015/lib/services/project.service.js +0 -85
- package/esm2015/lib/state/applications-flow-state.context.js +0 -37
- package/esm2015/lib/state/applications-flow.state.js +0 -31
- package/esm2015/lowcodeunit-applications-flow-common.js +0 -17
- package/fesm2015/lowcodeunit-applications-flow-common.js +0 -1966
- package/fesm2015/lowcodeunit-applications-flow-common.js.map +0 -1
- package/lcu.api.d.ts.map +0 -1
- package/lib/applications-flow.module.d.ts.map +0 -1
- package/lib/elements/base-form/base-form.component.d.ts.map +0 -1
- package/lib/elements/dynamic-tabs/dynamic-tabs.component.d.ts.map +0 -1
- package/lib/elements/form-card/form-card.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/builds/builds.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/create-project-wizard/create-project-wizard.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/git-auth/git-auth.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/header/header.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/hosting-details-form-group/hosting-details-form-group.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/project-item/project-item.component.d.ts +0 -23
- package/lib/elements/projects/controls/project-item/project-item.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/project-settings/project-settings.component.d.ts +0 -16
- package/lib/elements/projects/controls/project-settings/project-settings.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/project-tabs/project-tabs.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/recent-activities/recent-activities.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/tabs/domains/domains.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/tabs/general/forms/base-form-test/base-form-test.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/tabs/general/forms/project-details/project-details.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/tabs/general/forms/root-directory/root-directory.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/tabs/general/forms/settings/settings.component.d.ts +0 -116
- package/lib/elements/projects/controls/tabs/general/forms/settings/settings.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/tabs/general/general.component.d.ts.map +0 -1
- package/lib/elements/projects/projects.component.d.ts.map +0 -1
- package/lib/models/actions.model.d.ts.map +0 -1
- package/lib/models/base-form-config.model.d.ts.map +0 -1
- package/lib/models/card-form-config.model.d.ts.map +0 -1
- package/lib/models/dev-settings-preset.model.d.ts.map +0 -1
- package/lib/models/domain.model.d.ts.map +0 -1
- package/lib/models/dynamic-tabs.model.d.ts.map +0 -1
- package/lib/models/form-actions.model.d.ts.map +0 -1
- package/lib/models/form.model.d.ts.map +0 -1
- package/lib/models/form.values.model.d.ts.map +0 -1
- package/lib/models/project-actions.model.d.ts.map +0 -1
- package/lib/services/applications-flow-events.service.d.ts +0 -13
- package/lib/services/applications-flow-events.service.d.ts.map +0 -1
- package/lib/services/applications-flow.service.d.ts.map +0 -1
- package/lib/services/forms.service.d.ts.map +0 -1
- package/lib/services/project.service.d.ts.map +0 -1
- package/lib/state/applications-flow-state.context.d.ts.map +0 -1
- package/lib/state/applications-flow.state.d.ts.map +0 -1
- package/lowcodeunit-applications-flow-common.d.ts.map +0 -1
- package/lowcodeunit-applications-flow-common.metadata.json +0 -1
package/lcu.api.d.ts
CHANGED
|
@@ -2,24 +2,78 @@ 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/
|
|
5
|
+
export * from './lib/elements/projects/controls/forms/source-control/source-control.component';
|
|
6
6
|
export * from './lib/elements/projects/controls/create-project-wizard/create-project-wizard.component';
|
|
7
7
|
export * from './lib/elements/projects/controls/hosting-details-form-group/hosting-details-form-group.component';
|
|
8
|
-
export * from './lib/elements/projects/controls/project-settings/project-settings.component';
|
|
9
8
|
export * from './lib/models/dynamic-tabs.model';
|
|
10
9
|
export * from './lib/models/project-actions.model';
|
|
10
|
+
export * from './lib/models/user-feed.model';
|
|
11
|
+
export * from './lib/controls/build-pipeline-form/build-pipeline-form.component';
|
|
12
|
+
export * from './lib/controls/devops-source-control-form/devops-source-control-form.component';
|
|
13
|
+
export * from './lib/controls/edit-application-form/edit-application-form.component';
|
|
14
|
+
export * from './lib/controls/processor-details-form/processor-details-form.component';
|
|
15
|
+
export * from './lib/controls/security-toggle/security-toggle.component';
|
|
16
|
+
export * from './lib/controls/source-control-form/source-control-form.component';
|
|
17
|
+
export * from './lib/dialogs/build-pipeline-dialog/build-pipeline-dialog.component';
|
|
18
|
+
export * from './lib/dialogs/custom-domain-dialog/custom-domain-dialog.component';
|
|
19
|
+
export * from './lib/dialogs/new-application-dialog/new-application-dialog.component';
|
|
20
|
+
export * from './lib/dialogs/edit-application-dialog/edit-application-dialog.component';
|
|
21
|
+
export * from './lib/dialogs/source-control-dialog/source-control-dialog.component';
|
|
22
|
+
export * from './lib/dialogs/processor-details-dialog/processor-details-dialog.component';
|
|
23
|
+
export * from './lib/dialogs/upgrade-dialog/upgrade-dialog.component';
|
|
11
24
|
export * from './lib/services/project.service';
|
|
25
|
+
export * from './lib/services/npm.service';
|
|
12
26
|
export * from './lib/models/actions.model';
|
|
13
27
|
export * from './lib/models/form-actions.model';
|
|
14
28
|
export * from './lib/models/dev-settings-preset.model';
|
|
15
29
|
export * from './lib/models/domain.model';
|
|
16
30
|
export * from './lib/elements/projects/controls/tabs/general/forms/project-details/project-details.component';
|
|
17
31
|
export * from './lib/elements/projects/controls/tabs/general/forms/root-directory/root-directory.component';
|
|
18
|
-
export * from './lib/elements/
|
|
32
|
+
export * from './lib/elements/skeleton-feed-card/skeleton-feed-card.component';
|
|
19
33
|
export * from './lib/models/card-form-config.model';
|
|
20
34
|
export * from './lib/services/forms.service';
|
|
35
|
+
export * from './lib/services/eac.service';
|
|
21
36
|
export * from './lib/models/form.model';
|
|
22
37
|
export * from './lib/models/form.values.model';
|
|
23
38
|
export * from './lib/models/base-form-config.model';
|
|
24
39
|
export * from './lib/elements/projects/controls/git-auth/git-auth.component';
|
|
25
|
-
|
|
40
|
+
export * from './lib/elements/dynamic-tabs/dynamic-tabs.component';
|
|
41
|
+
export * from './lib/elements/projects/controls/project-items/project-items.component';
|
|
42
|
+
export * from './lib/elements/projects/controls/header/header.component';
|
|
43
|
+
export * from './lib/elements/projects/controls/tabs/domains/domains.component';
|
|
44
|
+
export * from './lib/elements/projects/controls/tabs/apps-flow/apps-flow.component';
|
|
45
|
+
export * from './lib/elements/projects/controls/tabs/dfs-modifiers/dfs-modifiers.component';
|
|
46
|
+
export * from './lib/elements/projects/controls/builds/builds.component';
|
|
47
|
+
export * from './lib/elements/projects/controls/tabs/apps-flow/apps-flow.component';
|
|
48
|
+
export * from './lib/elements/projects/controls/tabs/apps-flow/npm-package-select/npm-package-select.component';
|
|
49
|
+
export * from './lib/elements/projects/controls/tabs/general/forms/base-form-test/base-form-test.component';
|
|
50
|
+
export * from './lib/elements/projects/controls/tabs/general/forms/project-details/project-details.component';
|
|
51
|
+
export * from './lib/elements/projects/controls/tabs/general/forms/root-directory/root-directory.component';
|
|
52
|
+
export * from './lib/elements/projects/controls/tabs/devops/devops.component';
|
|
53
|
+
export * from './lib/elements/projects/controls/project-tabs/project-tabs.component';
|
|
54
|
+
export * from './lib/elements/form-card/form-card.component';
|
|
55
|
+
export * from './lib/elements/base-form/base-form.component';
|
|
56
|
+
export * from './lib/elements/projects/controls/recent-activities/recent-activities.component';
|
|
57
|
+
export * from './lib/elements/projects/projects.component';
|
|
58
|
+
export * from './lib/elements/flow-tool/flow-tool.component';
|
|
59
|
+
export * from './lib/elements/slotted-card/slotted-card.component';
|
|
60
|
+
export * from './lib/elements/analytics-card/analytics-card.component';
|
|
61
|
+
export * from './lib/elements/feed-card-sm/feed-card-sm.component';
|
|
62
|
+
export * from './lib/elements/three-column/three-column.component';
|
|
63
|
+
export * from './lib/elements/gh-control/gh-control.component';
|
|
64
|
+
export * from './lib/elements/gh-control/gh-control.component';
|
|
65
|
+
export * from './lib/elements/main-feed-card/main-feed-card.component';
|
|
66
|
+
export * from './lib/elements/project-info-card/project-info-card.component';
|
|
67
|
+
export * from './lib/elements/two-column-header/two-column-header.component';
|
|
68
|
+
export * from './lib/dialogs/custom-domain-dialog/custom-domain-dialog.component';
|
|
69
|
+
export * from './lib/dialogs/edit-application-dialog/edit-application-dialog.component';
|
|
70
|
+
export * from './lib/elements/card-carousel/card-carousel.component';
|
|
71
|
+
export * from './lib/controls/security-toggle/security-toggle.component';
|
|
72
|
+
export * from './lib/controls/processor-details-form/processor-details-form.component';
|
|
73
|
+
export * from './lib/controls/source-control-form/source-control-form.component';
|
|
74
|
+
export * from './lib/controls/build-pipeline-form/build-pipeline-form.component';
|
|
75
|
+
export * from './lib/controls/devops-source-control-form/devops-source-control-form.component';
|
|
76
|
+
export * from './lib/dialogs/source-control-dialog/source-control-dialog.component';
|
|
77
|
+
export * from './lib/dialogs/build-pipeline-dialog/build-pipeline-dialog.component';
|
|
78
|
+
export * from './lib/controls/edit-application-form/edit-application-form.component';
|
|
79
|
+
export * from './lib/elements/breadcrumb/breadcrumb.component';
|
|
@@ -1,5 +1,62 @@
|
|
|
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 "./elements/three-column/three-column.component";
|
|
26
|
+
import * as i24 from "./elements/slotted-card/slotted-card.component";
|
|
27
|
+
import * as i25 from "./elements/project-info-card/project-info-card.component";
|
|
28
|
+
import * as i26 from "./elements/analytics-card/analytics-card.component";
|
|
29
|
+
import * as i27 from "./elements/feed-card-sm/feed-card-sm.component";
|
|
30
|
+
import * as i28 from "./elements/gh-control/gh-control.component";
|
|
31
|
+
import * as i29 from "./elements/main-feed-card/main-feed-card.component";
|
|
32
|
+
import * as i30 from "./elements/two-column-header/two-column-header.component";
|
|
33
|
+
import * as i31 from "./elements/card-carousel/card-carousel.component";
|
|
34
|
+
import * as i32 from "./controls/security-toggle/security-toggle.component";
|
|
35
|
+
import * as i33 from "./controls/processor-details-form/processor-details-form.component";
|
|
36
|
+
import * as i34 from "./controls/source-control-form/source-control-form.component";
|
|
37
|
+
import * as i35 from "./controls/build-pipeline-form/build-pipeline-form.component";
|
|
38
|
+
import * as i36 from "./controls/devops-source-control-form/devops-source-control-form.component";
|
|
39
|
+
import * as i37 from "./dialogs/source-control-dialog/source-control-dialog.component";
|
|
40
|
+
import * as i38 from "./dialogs/build-pipeline-dialog/build-pipeline-dialog.component";
|
|
41
|
+
import * as i39 from "./controls/edit-application-form/edit-application-form.component";
|
|
42
|
+
import * as i40 from "./elements/breadcrumb/breadcrumb.component";
|
|
43
|
+
import * as i41 from "./dialogs/custom-domain-dialog/custom-domain-dialog.component";
|
|
44
|
+
import * as i42 from "./dialogs/edit-application-dialog/edit-application-dialog.component";
|
|
45
|
+
import * as i43 from "./dialogs/new-application-dialog/new-application-dialog.component";
|
|
46
|
+
import * as i44 from "./dialogs/processor-details-dialog/processor-details-dialog.component";
|
|
47
|
+
import * as i45 from "./elements/skeleton-feed-card/skeleton-feed-card.component";
|
|
48
|
+
import * as i46 from "./dialogs/upgrade-dialog/upgrade-dialog.component";
|
|
49
|
+
import * as i47 from "@angular/cdk/clipboard";
|
|
50
|
+
import * as i48 from "@lcu/common";
|
|
51
|
+
import * as i49 from "@angular/forms";
|
|
52
|
+
import * as i50 from "@angular/flex-layout";
|
|
53
|
+
import * as i51 from "@lowcodeunit/app-host-common";
|
|
54
|
+
import * as i52 from "@angular/material/tooltip";
|
|
55
|
+
import * as i53 from "@angular/material/slide-toggle";
|
|
56
|
+
import * as i54 from "skeleton-elements/angular";
|
|
2
57
|
export declare class ApplicationsFlowModule {
|
|
3
58
|
static forRoot(): ModuleWithProviders<ApplicationsFlowModule>;
|
|
59
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ApplicationsFlowModule, never>;
|
|
60
|
+
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.ThreeColumnComponent, typeof i24.SlottedCardComponent, typeof i25.ProjectInfoCardComponent, typeof i26.AnalyticsCardComponent, typeof i27.FeedCardSmComponent, typeof i28.GhControlComponent, typeof i29.MainFeedCardComponent, typeof i30.TwoColumnHeaderComponent, typeof i31.CardCarouselComponent, typeof i32.SecurityToggleComponent, typeof i33.ProcessorDetailsFormComponent, typeof i34.SourceControlFormComponent, typeof i35.BuildPipelineFormComponent, typeof i36.DevopsSourceControlFormComponent, typeof i37.SourceControlDialogComponent, typeof i38.BuildPipelineDialogComponent, typeof i39.EditApplicationFormComponent, typeof i40.BreadcrumbComponent, typeof i41.CustomDomainDialogComponent, typeof i42.EditApplicationDialogComponent, typeof i43.NewApplicationDialogComponent, typeof i44.ProcessorDetailsDialogComponent, typeof i45.SkeletonFeedCardComponent, typeof i46.UpgradeDialogComponent], [typeof i47.ClipboardModule, typeof i48.FathymSharedModule, typeof i49.FormsModule, typeof i49.ReactiveFormsModule, typeof i50.FlexLayoutModule, typeof i48.MaterialModule, typeof i51.AppHostModule, typeof i52.MatTooltipModule, typeof i53.MatSlideToggleModule, typeof i54.SkeletonElementsModule], [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.ThreeColumnComponent, typeof i24.SlottedCardComponent, typeof i25.ProjectInfoCardComponent, typeof i26.AnalyticsCardComponent, typeof i27.FeedCardSmComponent, typeof i28.GhControlComponent, typeof i29.MainFeedCardComponent, typeof i30.TwoColumnHeaderComponent, typeof i31.CardCarouselComponent, typeof i32.SecurityToggleComponent, typeof i33.ProcessorDetailsFormComponent, typeof i34.SourceControlFormComponent, typeof i35.BuildPipelineFormComponent, typeof i36.DevopsSourceControlFormComponent, typeof i37.SourceControlDialogComponent, typeof i38.BuildPipelineDialogComponent, typeof i39.EditApplicationFormComponent, typeof i40.BreadcrumbComponent, typeof i41.CustomDomainDialogComponent, typeof i42.EditApplicationDialogComponent, typeof i43.NewApplicationDialogComponent, typeof i44.ProcessorDetailsDialogComponent, typeof i45.SkeletonFeedCardComponent, typeof i46.UpgradeDialogComponent]>;
|
|
61
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ApplicationsFlowModule>;
|
|
4
62
|
}
|
|
5
|
-
//# sourceMappingURL=applications-flow.module.d.ts.map
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { AbstractControl, FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
+
import { EaCArtifact, EaCDevOpsAction, EaCEnvironmentAsCode, EaCSourceControl } from '@semanticjs/common';
|
|
4
|
+
import { ApplicationsFlowService } from '../../services/applications-flow.service';
|
|
5
|
+
import { EaCService } from '../../services/eac.service';
|
|
6
|
+
import { ApplicationsFlowState, ProjectHostingDetails, ProjectHostingOption } from '../../state/applications-flow.state';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class BuildPipelineFormComponent implements OnInit {
|
|
9
|
+
protected eacSvc: EaCService;
|
|
10
|
+
protected formBuilder: FormBuilder;
|
|
11
|
+
protected appsFlowSvc: ApplicationsFlowService;
|
|
12
|
+
BuildPipeline: string;
|
|
13
|
+
DevOpsActionLookup: string;
|
|
14
|
+
Disabled: boolean;
|
|
15
|
+
Environment: EaCEnvironmentAsCode;
|
|
16
|
+
EnvironmentLookup: string;
|
|
17
|
+
HostingDetails: ProjectHostingDetails;
|
|
18
|
+
ResponseEvent: EventEmitter<any>;
|
|
19
|
+
get Artifact(): EaCArtifact;
|
|
20
|
+
get ArtifactLookup(): string;
|
|
21
|
+
get BuildPipelineFormControl(): AbstractControl;
|
|
22
|
+
get DevOpsAction(): EaCDevOpsAction;
|
|
23
|
+
get DevOpsActions(): {
|
|
24
|
+
[lookup: string]: EaCDevOpsAction;
|
|
25
|
+
};
|
|
26
|
+
get DevOpsActionNameFormControl(): AbstractControl;
|
|
27
|
+
get NPMTokenFormControl(): AbstractControl;
|
|
28
|
+
get SelectedHostingOption(): ProjectHostingOption;
|
|
29
|
+
get SelectedHostingOptionInputControlValues(): {
|
|
30
|
+
[lookup: string]: any;
|
|
31
|
+
};
|
|
32
|
+
get SourceControlLookups(): Array<string>;
|
|
33
|
+
get SourceControls(): {
|
|
34
|
+
[lookup: string]: EaCSourceControl;
|
|
35
|
+
};
|
|
36
|
+
get State(): ApplicationsFlowState;
|
|
37
|
+
BuildPipelineFormGroup: FormGroup;
|
|
38
|
+
constructor(eacSvc: EaCService, formBuilder: FormBuilder, appsFlowSvc: ApplicationsFlowService);
|
|
39
|
+
ngOnInit(): void;
|
|
40
|
+
BuildPipelineChanged(): void;
|
|
41
|
+
SubmitBuildPipeline(): void;
|
|
42
|
+
SaveEnvironment(): void;
|
|
43
|
+
protected setupControlsForForm(): void;
|
|
44
|
+
protected loadProjectHostingDetails(): void;
|
|
45
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BuildPipelineFormComponent, never>;
|
|
46
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BuildPipelineFormComponent, "lcu-build-pipeline-form", never, { "DevOpsActionLookup": "devops-action-lookup"; "Disabled": "disabled"; "Environment": "environment"; "EnvironmentLookup": "environment-lookup"; "HostingDetails": "hosting-details"; }, { "ResponseEvent": "response-event"; }, never, never>;
|
|
47
|
+
}
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
import { AfterViewInit, ElementRef, EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { AbstractControl, FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
+
import { MatAutocompleteSelectedEvent } from '@angular/material/autocomplete';
|
|
4
|
+
import { MatChipInputEvent } from '@angular/material/chips';
|
|
5
|
+
import { MatSelectChange } from '@angular/material/select';
|
|
6
|
+
import { Status } from '@lcu/common';
|
|
7
|
+
import { EaCArtifact, EaCDevOpsAction, EaCEnvironmentAsCode, EaCSourceControl } from '@semanticjs/common';
|
|
8
|
+
import { ApplicationsFlowService } from '../../services/applications-flow.service';
|
|
9
|
+
import { EaCService } from '../../services/eac.service';
|
|
10
|
+
import { ApplicationsFlowState, GitHubBranch, GitHubOrganization, GitHubRepository, ProjectHostingDetails } from '../../state/applications-flow.state';
|
|
11
|
+
import * as i0 from "@angular/core";
|
|
12
|
+
export declare class DevopsSourceControlFormComponent implements AfterViewInit, OnDestroy, OnInit {
|
|
13
|
+
protected appsFlowSvc: ApplicationsFlowService;
|
|
14
|
+
protected eacSvc: EaCService;
|
|
15
|
+
protected formBuilder: FormBuilder;
|
|
16
|
+
EditingSourceControlLookup: string;
|
|
17
|
+
Environment: EaCEnvironmentAsCode;
|
|
18
|
+
EnvironmentLookup: string;
|
|
19
|
+
SaveStatusEvent: EventEmitter<Status>;
|
|
20
|
+
BranchesInput: ElementRef<HTMLInputElement>;
|
|
21
|
+
BuildPath: string;
|
|
22
|
+
BuildPathDisabled: boolean;
|
|
23
|
+
SourceControlRoot: string;
|
|
24
|
+
UseBranches: boolean;
|
|
25
|
+
UseBuildPath: boolean;
|
|
26
|
+
get ArtifactLookups(): Array<string>;
|
|
27
|
+
get ArtifactLookup(): string;
|
|
28
|
+
get Artifact(): EaCArtifact;
|
|
29
|
+
get BranchesFormControl(): AbstractControl;
|
|
30
|
+
get BuildPathFormControl(): AbstractControl;
|
|
31
|
+
get DevOpsActionLookups(): Array<string>;
|
|
32
|
+
get DevOpsAction(): any;
|
|
33
|
+
get DevOpsActionLookup(): string;
|
|
34
|
+
get DevOpsActionLookupFormControl(): AbstractControl;
|
|
35
|
+
get DevOpsActions(): {
|
|
36
|
+
[lookup: string]: EaCDevOpsAction;
|
|
37
|
+
};
|
|
38
|
+
get EditingSourceControl(): EaCSourceControl;
|
|
39
|
+
get MainBranchFormControl(): AbstractControl;
|
|
40
|
+
get OrganizationFormControl(): AbstractControl;
|
|
41
|
+
get RepositoryFormControl(): AbstractControl;
|
|
42
|
+
get State(): ApplicationsFlowState;
|
|
43
|
+
BranchOptions: GitHubBranch[];
|
|
44
|
+
BuildPathOptions: string[];
|
|
45
|
+
CreatingRepository: boolean;
|
|
46
|
+
DevOpsSourceControlFormGroup: FormGroup;
|
|
47
|
+
HostingDetails: ProjectHostingDetails;
|
|
48
|
+
Loading: boolean;
|
|
49
|
+
OrganizationOptions: GitHubOrganization[];
|
|
50
|
+
RepositoryOptions: GitHubRepository[];
|
|
51
|
+
SelectedBranches: string[];
|
|
52
|
+
readonly SeparatorKeysCodes: readonly [13, 188];
|
|
53
|
+
constructor(appsFlowSvc: ApplicationsFlowService, eacSvc: EaCService, formBuilder: FormBuilder);
|
|
54
|
+
ngAfterViewInit(): void;
|
|
55
|
+
ngOnDestroy(): void;
|
|
56
|
+
ngOnInit(): void;
|
|
57
|
+
AddBranchOption(event: MatChipInputEvent): void;
|
|
58
|
+
BranchOptionSelected(event: MatAutocompleteSelectedEvent): void;
|
|
59
|
+
BranchesChanged(branches: string[]): void;
|
|
60
|
+
BuildPathChanged(event: MatSelectChange): void;
|
|
61
|
+
CreateNewSourceControl(): void;
|
|
62
|
+
CreateRepository(): void;
|
|
63
|
+
CancelCreateRepository(): void;
|
|
64
|
+
DevOpsActionLookupChanged(event: MatSelectChange): void;
|
|
65
|
+
MainBranchChanged(event: MatSelectChange): void;
|
|
66
|
+
OrganizationChanged(event: MatSelectChange): void;
|
|
67
|
+
RefreshOrganizations(): void;
|
|
68
|
+
RemoveBranchOption(option: string): void;
|
|
69
|
+
RepositoryChanged(event: MatSelectChange): void;
|
|
70
|
+
SaveRepository(): void;
|
|
71
|
+
SetEditingSourceControl(scLookup: string): void;
|
|
72
|
+
SubmitSourceControl(): void;
|
|
73
|
+
SaveSourceControl(): void;
|
|
74
|
+
protected addBranchOption(value: string): void;
|
|
75
|
+
protected configureDevOpsAction(): void;
|
|
76
|
+
protected destroyFormControls(): void;
|
|
77
|
+
protected emitBranchesChanged(): void;
|
|
78
|
+
protected listBranches(): void;
|
|
79
|
+
protected listBuildPaths(): void;
|
|
80
|
+
protected listOrganizations(): void;
|
|
81
|
+
protected listRepositories(activeRepo?: string): void;
|
|
82
|
+
protected loadProjectHostingDetails(): void;
|
|
83
|
+
protected setupFormControls(): void;
|
|
84
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DevopsSourceControlFormComponent, never>;
|
|
85
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DevopsSourceControlFormComponent, "lcu-devops-source-control-form", never, { "EditingSourceControlLookup": "editing-source-control-lookup"; "Environment": "environment"; "EnvironmentLookup": "environment-lookup"; }, { "SaveStatusEvent": "save-status-event"; }, never, never>;
|
|
86
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { AbstractControl, FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
+
import { EaCApplicationAsCode } from '@semanticjs/common';
|
|
4
|
+
import { EaCService } from '../../services/eac.service';
|
|
5
|
+
import { ApplicationsFlowState } from '../../state/applications-flow.state';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class EditApplicationFormComponent implements OnInit {
|
|
8
|
+
protected formBldr: FormBuilder;
|
|
9
|
+
protected eacSvc: EaCService;
|
|
10
|
+
ApplicationLookup: string;
|
|
11
|
+
EditingApplication: EaCApplicationAsCode;
|
|
12
|
+
HasSaveButton: boolean;
|
|
13
|
+
ProjectLookup: string;
|
|
14
|
+
SaveFormEvent: EventEmitter<{}>;
|
|
15
|
+
get DescriptionFormControl(): AbstractControl;
|
|
16
|
+
get NameFormControl(): AbstractControl;
|
|
17
|
+
get RouteFormControl(): AbstractControl;
|
|
18
|
+
get State(): ApplicationsFlowState;
|
|
19
|
+
ApplicationFormGroup: FormGroup;
|
|
20
|
+
constructor(formBldr: FormBuilder, eacSvc: EaCService);
|
|
21
|
+
ngOnInit(): void;
|
|
22
|
+
SubmitApplicationControl(): void;
|
|
23
|
+
SaveApplication(): void;
|
|
24
|
+
protected setupApplicationForm(): void;
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EditApplicationFormComponent, never>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EditApplicationFormComponent, "lcu-edit-application-form", never, { "ApplicationLookup": "application-lookup"; "EditingApplication": "editing-application"; "HasSaveButton": "has-save-button"; "ProjectLookup": "project-lookup"; }, { "SaveFormEvent": "save-form-event"; }, never, never>;
|
|
27
|
+
}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { AbstractControl, FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
+
import { MatSelectChange } from '@angular/material/select';
|
|
4
|
+
import { EaCApplicationAsCode, EaCEnvironmentAsCode, EaCSourceControl } from '@semanticjs/common';
|
|
5
|
+
import { ApplicationsFlowService } from '../../services/applications-flow.service';
|
|
6
|
+
import { EaCService } from '../../services/eac.service';
|
|
7
|
+
import { ApplicationsFlowState } from '../../state/applications-flow.state';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class ProcessorDetailsFormComponent implements OnInit {
|
|
10
|
+
protected appsFlowSvc: ApplicationsFlowService;
|
|
11
|
+
protected formBldr: FormBuilder;
|
|
12
|
+
protected eacSvc: EaCService;
|
|
13
|
+
EditingApplication: EaCApplicationAsCode;
|
|
14
|
+
EditingApplicationLookup: string;
|
|
15
|
+
HasSaveButton: boolean;
|
|
16
|
+
SourceControlLookups: Array<string>;
|
|
17
|
+
ProjectLookup: string;
|
|
18
|
+
SaveFormEvent: EventEmitter<{}>;
|
|
19
|
+
get APIRootFormControl(): AbstractControl;
|
|
20
|
+
get Environment(): EaCEnvironmentAsCode;
|
|
21
|
+
get BuildFormControl(): AbstractControl;
|
|
22
|
+
get BuildPathFormControl(): AbstractControl;
|
|
23
|
+
get ClientIDFormControl(): AbstractControl;
|
|
24
|
+
get ClientSecretFormControl(): AbstractControl;
|
|
25
|
+
get DefaultFileFormControl(): AbstractControl;
|
|
26
|
+
get DefaultSourceControl(): EaCSourceControl;
|
|
27
|
+
get InboundPathFormControl(): AbstractControl;
|
|
28
|
+
get IncludeRequestFormControl(): AbstractControl;
|
|
29
|
+
get MethodsFormControl(): AbstractControl;
|
|
30
|
+
get PackageFormControl(): AbstractControl;
|
|
31
|
+
get PermanentFormControl(): AbstractControl;
|
|
32
|
+
get PreserveMethodFormControl(): AbstractControl;
|
|
33
|
+
get RedirectFormControl(): AbstractControl;
|
|
34
|
+
get ScopesFormControl(): AbstractControl;
|
|
35
|
+
get SecurityFormControl(): AbstractControl;
|
|
36
|
+
get State(): ApplicationsFlowState;
|
|
37
|
+
get SourceControls(): {
|
|
38
|
+
[lookup: string]: EaCSourceControl;
|
|
39
|
+
};
|
|
40
|
+
get SourceControlFormControl(): AbstractControl;
|
|
41
|
+
get SPARootFormControl(): AbstractControl;
|
|
42
|
+
get TokenLookupFormControl(): AbstractControl;
|
|
43
|
+
get VersionFormControl(): AbstractControl;
|
|
44
|
+
get ZipFileFormControl(): AbstractControl;
|
|
45
|
+
BuildPathOptions: string[];
|
|
46
|
+
IsPermanent: boolean;
|
|
47
|
+
IsPreserve: boolean;
|
|
48
|
+
LCUType: string;
|
|
49
|
+
redirectTooltip: string;
|
|
50
|
+
ProcessorDetailsFormGroup: FormGroup;
|
|
51
|
+
ProcessorType: string;
|
|
52
|
+
constructor(appsFlowSvc: ApplicationsFlowService, formBldr: FormBuilder, eacSvc: EaCService);
|
|
53
|
+
ngOnInit(): void;
|
|
54
|
+
CreateNewApplication(): void;
|
|
55
|
+
DetermineTooltipText(): void;
|
|
56
|
+
SaveProcessorDetails(): void;
|
|
57
|
+
SetEditingApplication(appLookup: string): void;
|
|
58
|
+
SourceControlChanged(event: any): void;
|
|
59
|
+
ProcessorTypeChanged(event: MatSelectChange): void;
|
|
60
|
+
LCUTypeChanged(event: MatSelectChange): void;
|
|
61
|
+
protected cleanupLcuTypeSubForm(): void;
|
|
62
|
+
protected cleanupProcessorTypeSubForm(): void;
|
|
63
|
+
protected listBuildPaths(): void;
|
|
64
|
+
protected setupLcuTypeSubForm(): void;
|
|
65
|
+
protected setupProcessorDetailsForm(): void;
|
|
66
|
+
protected setupLCUGitHubForm(): void;
|
|
67
|
+
protected setupLCUApplicationPointerForm(): void;
|
|
68
|
+
protected setupLCUSPAForm(): void;
|
|
69
|
+
protected setupLCUAPIForm(): void;
|
|
70
|
+
protected setupLCUGitHubOAuthForm(): void;
|
|
71
|
+
protected setupLCUWordPressForm(): void;
|
|
72
|
+
protected setupProxyForm(): void;
|
|
73
|
+
protected setupRedirectForm(): void;
|
|
74
|
+
protected setupOAuthForm(): void;
|
|
75
|
+
protected setupLCUZipForm(): void;
|
|
76
|
+
protected setupDfsForm(): void;
|
|
77
|
+
protected setupProcessorTypeSubForm(): void;
|
|
78
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProcessorDetailsFormComponent, never>;
|
|
79
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProcessorDetailsFormComponent, "lcu-processor-details-form", never, { "EditingApplication": "editing-application"; "EditingApplicationLookup": "editing-application-lookup"; "HasSaveButton": "has-save-button"; "SourceControlLookups": "source-control-lookups"; "ProjectLookup": "project-lookup"; }, { "SaveFormEvent": "save-form-event"; }, never, never>;
|
|
80
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { AbstractControl, FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
+
import { EaCApplicationAsCode } from '@semanticjs/common';
|
|
4
|
+
import { EaCService } from '../../services/eac.service';
|
|
5
|
+
import { ApplicationsFlowState } from '../../state/applications-flow.state';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class SecurityToggleComponent implements OnInit {
|
|
8
|
+
protected eacSvc: EaCService;
|
|
9
|
+
protected formBldr: FormBuilder;
|
|
10
|
+
EditingApplication: EaCApplicationAsCode;
|
|
11
|
+
SaveFormEvent: EventEmitter<{}>;
|
|
12
|
+
get IsPrivateFormControl(): AbstractControl;
|
|
13
|
+
get IsTriggerSignInFormControl(): AbstractControl;
|
|
14
|
+
get State(): ApplicationsFlowState;
|
|
15
|
+
SecurityFormGroup: FormGroup;
|
|
16
|
+
ProcessorType: string;
|
|
17
|
+
SkeletonEffect: string;
|
|
18
|
+
constructor(eacSvc: EaCService, formBldr: FormBuilder);
|
|
19
|
+
ngOnInit(): void;
|
|
20
|
+
SecuritySubmit(): void;
|
|
21
|
+
protected setupSecurityFormGroup(): void;
|
|
22
|
+
protected setupSecurityForm(): void;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SecurityToggleComponent, never>;
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SecurityToggleComponent, "lcu-security-toggle", never, { "EditingApplication": "editing-application"; }, { "SaveFormEvent": "save-form-event"; }, never, never>;
|
|
25
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { AbstractControl, FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
+
import { MatSelectChange } from '@angular/material/select';
|
|
4
|
+
import { EaCApplicationAsCode, EaCEnvironmentAsCode, EaCSourceControl } from '@semanticjs/common';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class SourceControlFormComponent implements OnInit {
|
|
7
|
+
protected formBldr: FormBuilder;
|
|
8
|
+
EditingApplication: EaCApplicationAsCode;
|
|
9
|
+
Environment: EaCEnvironmentAsCode;
|
|
10
|
+
SaveFormEvent: EventEmitter<{}>;
|
|
11
|
+
get HasBuildFormControl(): AbstractControl;
|
|
12
|
+
get SourceControlLookupFormControl(): AbstractControl;
|
|
13
|
+
get SourceControlLookups(): Array<string>;
|
|
14
|
+
get SourceControls(): {
|
|
15
|
+
[lookup: string]: EaCSourceControl;
|
|
16
|
+
};
|
|
17
|
+
SourceControlFormGroup: FormGroup;
|
|
18
|
+
ProcessorType: string;
|
|
19
|
+
constructor(formBldr: FormBuilder);
|
|
20
|
+
ngOnInit(): void;
|
|
21
|
+
SourceControlLookupChanged(event: MatSelectChange): void;
|
|
22
|
+
SubmitSourceControl(): void;
|
|
23
|
+
protected setupSourceControlForm(): void;
|
|
24
|
+
protected setupBuildForm(): void;
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SourceControlFormComponent, never>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SourceControlFormComponent, "lcu-source-control-form", never, { "EditingApplication": "editing-application"; "Environment": "environment"; }, { "SaveFormEvent": "save-form-event"; }, never, never>;
|
|
27
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
|
+
import { EaCEnvironmentAsCode } from '@semanticjs/common';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export interface BPDialogData {
|
|
6
|
+
devopsActionLookup: string;
|
|
7
|
+
environment: EaCEnvironmentAsCode;
|
|
8
|
+
environmentLookup: string;
|
|
9
|
+
}
|
|
10
|
+
export declare class BuildPipelineDialogComponent implements OnInit {
|
|
11
|
+
dialogRef: MatDialogRef<BuildPipelineDialogComponent>;
|
|
12
|
+
data: BPDialogData;
|
|
13
|
+
constructor(dialogRef: MatDialogRef<BuildPipelineDialogComponent>, data: BPDialogData);
|
|
14
|
+
ngOnInit(): void;
|
|
15
|
+
CloseDialog(): void;
|
|
16
|
+
HandleResponseEvent(event: any): void;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BuildPipelineDialogComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BuildPipelineDialogComponent, "lcu-build-pipeline-dialog", never, {}, {}, never, never>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
|
+
import { EaCHost, EaCProjectAsCode } from '@semanticjs/common';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export interface CDDialogData {
|
|
6
|
+
hosts: {
|
|
7
|
+
[lookup: string]: EaCHost;
|
|
8
|
+
};
|
|
9
|
+
primaryHost: string;
|
|
10
|
+
project: EaCProjectAsCode;
|
|
11
|
+
projectLookup: string;
|
|
12
|
+
}
|
|
13
|
+
export declare class CustomDomainDialogComponent implements OnInit {
|
|
14
|
+
dialogRef: MatDialogRef<CustomDomainDialogComponent>;
|
|
15
|
+
data: CDDialogData;
|
|
16
|
+
DomainData: {};
|
|
17
|
+
constructor(dialogRef: MatDialogRef<CustomDomainDialogComponent>, data: CDDialogData);
|
|
18
|
+
ngOnInit(): void;
|
|
19
|
+
CloseDialog(): void;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CustomDomainDialogComponent, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CustomDomainDialogComponent, "lcu-custom-domain-dialog", never, {}, {}, never, never>;
|
|
22
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
|
+
import { EaCApplicationAsCode } from '@semanticjs/common';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export interface ApplicationDialogData {
|
|
6
|
+
application: EaCApplicationAsCode;
|
|
7
|
+
}
|
|
8
|
+
export declare class EditApplicationDialogComponent implements OnInit {
|
|
9
|
+
dialogRef: MatDialogRef<EditApplicationDialogComponent>;
|
|
10
|
+
data: ApplicationDialogData;
|
|
11
|
+
constructor(dialogRef: MatDialogRef<EditApplicationDialogComponent>, data: ApplicationDialogData);
|
|
12
|
+
ngOnInit(): void;
|
|
13
|
+
CloseDialog(): void;
|
|
14
|
+
SaveApplication(appEvent: any): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EditApplicationDialogComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EditApplicationDialogComponent, "lcu-edit-application-dialog", never, {}, {}, never, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
|
+
import { EaCApplicationAsCode, EaCEnvironmentAsCode, EaCSourceControl } from '@semanticjs/common';
|
|
4
|
+
import { EditApplicationFormComponent } from '../../controls/edit-application-form/edit-application-form.component';
|
|
5
|
+
import { ProcessorDetailsFormComponent } from '../../controls/processor-details-form/processor-details-form.component';
|
|
6
|
+
import { EaCService } from '../../services/eac.service';
|
|
7
|
+
import { ApplicationsFlowState } from '../../state/applications-flow.state';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export interface NewApplicationDialogData {
|
|
10
|
+
environmentLookup: string;
|
|
11
|
+
projectLookup: string;
|
|
12
|
+
}
|
|
13
|
+
export declare class NewApplicationDialogComponent implements OnInit {
|
|
14
|
+
protected eacSvc: EaCService;
|
|
15
|
+
dialogRef: MatDialogRef<NewApplicationDialogComponent>;
|
|
16
|
+
data: NewApplicationDialogData;
|
|
17
|
+
ApplicationFormControls: EditApplicationFormComponent;
|
|
18
|
+
ProcessorDetailsFormControls: ProcessorDetailsFormComponent;
|
|
19
|
+
get Environment(): EaCEnvironmentAsCode;
|
|
20
|
+
get SourceControls(): {
|
|
21
|
+
[lookup: string]: EaCSourceControl;
|
|
22
|
+
};
|
|
23
|
+
get SourceControlLookups(): Array<string>;
|
|
24
|
+
get State(): ApplicationsFlowState;
|
|
25
|
+
HasSaveButton: boolean;
|
|
26
|
+
NewApplication: EaCApplicationAsCode;
|
|
27
|
+
NewApplicationLookup: string;
|
|
28
|
+
constructor(eacSvc: EaCService, dialogRef: MatDialogRef<NewApplicationDialogComponent>, data: NewApplicationDialogData);
|
|
29
|
+
ngOnInit(): void;
|
|
30
|
+
CloseDialog(): void;
|
|
31
|
+
SetupApplication(appLookup: string): void;
|
|
32
|
+
SaveApplication(): void;
|
|
33
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NewApplicationDialogComponent, never>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NewApplicationDialogComponent, "lcu-new-application-dialog", never, {}, {}, never, never>;
|
|
35
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
|
+
import { EaCApplicationAsCode, EaCEnvironmentAsCode, EaCSourceControl } from '@semanticjs/common';
|
|
4
|
+
import { ProcessorDetailsFormComponent } from '../../controls/processor-details-form/processor-details-form.component';
|
|
5
|
+
import { EaCService } from '../../services/eac.service';
|
|
6
|
+
import { ApplicationsFlowState } from '../../state/applications-flow.state';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export interface ProcessorDetailsDialogData {
|
|
9
|
+
applicationLookup: string;
|
|
10
|
+
environmentLookup: string;
|
|
11
|
+
projectLookup: string;
|
|
12
|
+
}
|
|
13
|
+
export declare class ProcessorDetailsDialogComponent implements OnInit {
|
|
14
|
+
protected eacSvc: EaCService;
|
|
15
|
+
dialogRef: MatDialogRef<ProcessorDetailsDialogComponent>;
|
|
16
|
+
data: ProcessorDetailsDialogData;
|
|
17
|
+
ProcessorDetailsFormControls: ProcessorDetailsFormComponent;
|
|
18
|
+
get Application(): EaCApplicationAsCode;
|
|
19
|
+
get Environment(): EaCEnvironmentAsCode;
|
|
20
|
+
get SourceControls(): {
|
|
21
|
+
[lookup: string]: EaCSourceControl;
|
|
22
|
+
};
|
|
23
|
+
get SourceControlLookups(): Array<string>;
|
|
24
|
+
get State(): ApplicationsFlowState;
|
|
25
|
+
constructor(eacSvc: EaCService, dialogRef: MatDialogRef<ProcessorDetailsDialogComponent>, data: ProcessorDetailsDialogData);
|
|
26
|
+
ngOnInit(): void;
|
|
27
|
+
CloseDialog(): void;
|
|
28
|
+
HandleSaveFormEvent(event: any): void;
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProcessorDetailsDialogComponent, never>;
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProcessorDetailsDialogComponent, "lcu-processor-details-dialog", never, {}, {}, never, never>;
|
|
31
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
|
+
import { EaCEnvironmentAsCode } from '@semanticjs/common';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export interface SCDialogData {
|
|
6
|
+
environment: EaCEnvironmentAsCode;
|
|
7
|
+
environmentLookup: string;
|
|
8
|
+
scLookup: string;
|
|
9
|
+
}
|
|
10
|
+
export declare class SourceControlDialogComponent implements OnInit {
|
|
11
|
+
dialogRef: MatDialogRef<SourceControlDialogComponent>;
|
|
12
|
+
data: SCDialogData;
|
|
13
|
+
constructor(dialogRef: MatDialogRef<SourceControlDialogComponent>, data: SCDialogData);
|
|
14
|
+
ngOnInit(): void;
|
|
15
|
+
CloseDialog(): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SourceControlDialogComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SourceControlDialogComponent, "lcu-source-control-dialog", never, {}, {}, never, never>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class UpgradeDialogComponent implements OnInit {
|
|
5
|
+
dialogRef: MatDialogRef<UpgradeDialogComponent>;
|
|
6
|
+
constructor(dialogRef: MatDialogRef<UpgradeDialogComponent>);
|
|
7
|
+
ngOnInit(): void;
|
|
8
|
+
CloseDialog(): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UpgradeDialogComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UpgradeDialogComponent, "lcu-upgrade-dialog", never, {}, {}, never, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class AnalyticsCardComponent implements OnInit {
|
|
4
|
+
Title: string;
|
|
5
|
+
Subtext: string;
|
|
6
|
+
Analytics: any[];
|
|
7
|
+
constructor();
|
|
8
|
+
ngOnInit(): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AnalyticsCardComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AnalyticsCardComponent, "lcu-analytics-card", never, { "Title": "title"; "Subtext": "subtext"; "Analytics": "analytics"; }, {}, never, never>;
|
|
11
|
+
}
|