@lowcodeunit/applications-flow-common 1.33.141-lets-get-social-ish → 1.33.142-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 +66 -0
- package/esm2020/lib/applications-flow.module.mjs +330 -0
- package/esm2020/lib/controls/build-pipeline-form/build-pipeline-form.component.mjs +245 -0
- package/esm2020/lib/controls/devops-source-control-form/devops-source-control-form.component.mjs +446 -0
- package/esm2020/lib/controls/edit-application-form/edit-application-form.component.mjs +67 -0
- package/esm2020/lib/controls/processor-details-form/processor-details-form.component.mjs +308 -0
- package/esm2020/lib/controls/security-toggle/security-toggle.component.mjs +54 -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 +29 -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/source-control-dialog/source-control-dialog.component.mjs +29 -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 +117 -0
- package/esm2020/lib/elements/card-carousel/card-carousel.component.mjs +70 -0
- package/esm2020/lib/elements/column-info-card/column-info-card.component.mjs +50 -0
- package/esm2020/lib/elements/dynamic-tabs/dynamic-tabs.component.mjs +74 -0
- package/esm2020/lib/elements/feed-card-sm/feed-card-sm.component.mjs +40 -0
- package/esm2020/lib/elements/flow-tool/flow-tool.component.mjs +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 +34 -0
- package/esm2020/lib/elements/project-info-card/project-info-card.component.mjs +46 -0
- package/esm2020/lib/elements/projects/controls/builds/builds.component.mjs +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 +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 +98 -0
- package/esm2020/lib/elements/slotted-card/slotted-card.component.mjs +45 -0
- package/esm2020/lib/elements/three-column/three-column.component.mjs +30 -0
- package/esm2020/lib/elements/two-column-header/two-column-header.component.mjs +15 -0
- package/esm2020/lib/models/actions.model.mjs +3 -0
- package/esm2020/lib/models/base-form-config.model.mjs +6 -0
- package/esm2020/lib/models/card-form-config.model.mjs +6 -0
- package/esm2020/lib/models/card-slot.model.mjs +3 -0
- package/esm2020/lib/models/dev-settings-preset.model.mjs +3 -0
- package/esm2020/lib/models/domain.model.mjs +3 -0
- package/esm2020/lib/models/dynamic-tabs.model.mjs +6 -0
- package/esm2020/lib/models/form-actions.model.mjs +3 -0
- package/esm2020/lib/models/form.model.mjs +6 -0
- package/esm2020/lib/models/form.values.model.mjs +11 -0
- package/esm2020/lib/models/project-actions.model.mjs +6 -0
- package/esm2020/lib/models/slot-action.model.mjs +3 -0
- package/{esm2015/lib/services/applications-flow.service.js → esm2020/lib/services/applications-flow.service.mjs} +9 -13
- package/esm2020/lib/services/eac.service.mjs +173 -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 +5579 -0
- package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -0
- package/fesm2020/lowcodeunit-applications-flow-common.mjs +5459 -0
- package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -0
- package/lcu.api.d.ts +40 -2
- package/lib/applications-flow.module.d.ts +53 -1
- package/lib/controls/build-pipeline-form/build-pipeline-form.component.d.ts +3 -1
- package/lib/controls/devops-source-control-form/devops-source-control-form.component.d.ts +3 -1
- package/lib/controls/edit-application-form/edit-application-form.component.d.ts +3 -1
- package/lib/controls/processor-details-form/processor-details-form.component.d.ts +3 -1
- package/lib/controls/security-toggle/security-toggle.component.d.ts +3 -1
- package/lib/controls/source-control-form/source-control-form.component.d.ts +3 -1
- package/lib/dialogs/build-pipeline-dialog/build-pipeline-dialog.component.d.ts +3 -1
- package/lib/dialogs/custom-domain-dialog/custom-domain-dialog.component.d.ts +3 -1
- package/lib/dialogs/edit-application-dialog/edit-application-dialog.component.d.ts +4 -2
- package/lib/dialogs/source-control-dialog/source-control-dialog.component.d.ts +3 -1
- package/lib/elements/analytics-card/analytics-card.component.d.ts +3 -1
- package/lib/elements/base-form/base-form.component.d.ts +3 -1
- package/lib/elements/breadcrumb/breadcrumb.component.d.ts +3 -1
- package/lib/elements/card-carousel/card-carousel.component.d.ts +3 -1
- package/lib/elements/column-info-card/column-info-card.component.d.ts +20 -0
- package/lib/elements/dynamic-tabs/dynamic-tabs.component.d.ts +3 -1
- package/lib/elements/feed-card-sm/feed-card-sm.component.d.ts +3 -1
- package/lib/elements/flow-tool/flow-tool.component.d.ts +28 -0
- package/lib/elements/form-card/form-card.component.d.ts +3 -1
- package/lib/elements/gh-control/gh-control.component.d.ts +3 -1
- package/lib/elements/main-feed-card/main-feed-card.component.d.ts +3 -1
- package/lib/elements/project-info-card/project-info-card.component.d.ts +3 -3
- 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/elements/slotted-card/slotted-card.component.d.ts +3 -1
- package/lib/elements/three-column/three-column.component.d.ts +3 -1
- package/lib/elements/two-column-header/two-column-header.component.d.ts +3 -1
- package/lib/models/actions.model.d.ts +0 -1
- package/lib/models/base-form-config.model.d.ts +0 -1
- package/lib/models/card-form-config.model.d.ts +0 -1
- package/lib/models/card-slot.model.d.ts +7 -0
- package/lib/models/dev-settings-preset.model.d.ts +0 -1
- package/lib/models/domain.model.d.ts +0 -1
- package/lib/models/dynamic-tabs.model.d.ts +0 -1
- package/lib/models/form-actions.model.d.ts +0 -1
- package/lib/models/form.model.d.ts +0 -1
- package/lib/models/form.values.model.d.ts +0 -1
- package/lib/models/project-actions.model.d.ts +0 -1
- package/lib/models/slot-action.model.d.ts +8 -0
- package/lib/services/applications-flow.service.d.ts +3 -1
- package/lib/services/eac.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 +3 -1
- package/lib/state/applications-flow-state.context.d.ts +3 -1
- package/lib/state/applications-flow.state.d.ts +0 -1
- package/lowcodeunit-applications-flow-common.d.ts +1 -35
- package/package.json +20 -12
- package/bundles/lowcodeunit-applications-flow-common.umd.js +0 -6901
- package/bundles/lowcodeunit-applications-flow-common.umd.js.map +0 -1
- package/bundles/lowcodeunit-applications-flow-common.umd.min.js +0 -16
- package/bundles/lowcodeunit-applications-flow-common.umd.min.js.map +0 -1
- package/esm2015/lcu.api.js +0 -27
- package/esm2015/lib/applications-flow.module.js +0 -218
- package/esm2015/lib/controls/build-pipeline-form/build-pipeline-form.component.js +0 -213
- package/esm2015/lib/controls/devops-source-control-form/devops-source-control-form.component.js +0 -412
- package/esm2015/lib/controls/edit-application-form/edit-application-form.component.js +0 -60
- package/esm2015/lib/controls/processor-details-form/processor-details-form.component.js +0 -321
- package/esm2015/lib/controls/security-toggle/security-toggle.component.js +0 -50
- package/esm2015/lib/controls/source-control-form/source-control-form.component.js +0 -61
- package/esm2015/lib/dialogs/build-pipeline-dialog/build-pipeline-dialog.component.js +0 -25
- package/esm2015/lib/dialogs/custom-domain-dialog/custom-domain-dialog.component.js +0 -31
- package/esm2015/lib/dialogs/edit-application-dialog/edit-application-dialog.component.js +0 -29
- package/esm2015/lib/dialogs/source-control-dialog/source-control-dialog.component.js +0 -25
- package/esm2015/lib/elements/analytics-card/analytics-card.component.js +0 -21
- package/esm2015/lib/elements/base-form/base-form.component.js +0 -61
- package/esm2015/lib/elements/breadcrumb/breadcrumb.component.js +0 -115
- package/esm2015/lib/elements/card-carousel/card-carousel.component.js +0 -67
- package/esm2015/lib/elements/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 -35
- package/esm2015/lib/elements/projects/controls/builds/builds.component.js +0 -26
- package/esm2015/lib/elements/projects/controls/create-project-wizard/create-project-wizard.component.js +0 -145
- package/esm2015/lib/elements/projects/controls/forms/source-control/source-control.component.js +0 -262
- package/esm2015/lib/elements/projects/controls/git-auth/git-auth.component.js +0 -25
- package/esm2015/lib/elements/projects/controls/header/header.component.js +0 -75
- package/esm2015/lib/elements/projects/controls/hosting-details-form-group/hosting-details-form-group.component.js +0 -102
- package/esm2015/lib/elements/projects/controls/project-items/project-items.component.js +0 -49
- package/esm2015/lib/elements/projects/controls/project-tabs/project-tabs.component.js +0 -91
- package/esm2015/lib/elements/projects/controls/recent-activities/recent-activities.component.js +0 -15
- package/esm2015/lib/elements/projects/controls/tabs/apps-flow/apps-flow.component.js +0 -590
- package/esm2015/lib/elements/projects/controls/tabs/apps-flow/npm-package-select/npm-package-select.component.js +0 -62
- package/esm2015/lib/elements/projects/controls/tabs/devops/devops.component.js +0 -202
- package/esm2015/lib/elements/projects/controls/tabs/dfs-modifiers/dfs-modifiers.component.js +0 -178
- package/esm2015/lib/elements/projects/controls/tabs/domains/domains.component.js +0 -133
- package/esm2015/lib/elements/projects/controls/tabs/general/forms/base-form-test/base-form-test.component.js +0 -86
- package/esm2015/lib/elements/projects/controls/tabs/general/forms/project-details/project-details.component.js +0 -129
- package/esm2015/lib/elements/projects/controls/tabs/general/forms/root-directory/root-directory.component.js +0 -113
- package/esm2015/lib/elements/projects/controls/tabs/general/general.component.js +0 -46
- package/esm2015/lib/elements/projects/projects.component.js +0 -99
- package/esm2015/lib/elements/slotted-card/slotted-card.component.js +0 -29
- package/esm2015/lib/elements/three-column/three-column.component.js +0 -32
- package/esm2015/lib/elements/two-column-header/two-column-header.component.js +0 -15
- package/esm2015/lib/models/actions.model.js +0 -3
- package/esm2015/lib/models/base-form-config.model.js +0 -6
- package/esm2015/lib/models/card-form-config.model.js +0 -6
- package/esm2015/lib/models/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/eac.service.js +0 -218
- package/esm2015/lib/services/forms.service.js +0 -131
- package/esm2015/lib/services/npm.service.js +0 -79
- package/esm2015/lib/services/project.service.js +0 -318
- package/esm2015/lib/state/applications-flow-state.context.js +0 -37
- package/esm2015/lib/state/applications-flow.state.js +0 -72
- package/esm2015/lowcodeunit-applications-flow-common.js +0 -39
- package/fesm2015/lowcodeunit-applications-flow-common.js +0 -5320
- package/fesm2015/lowcodeunit-applications-flow-common.js.map +0 -1
- package/lcu.api.d.ts.map +0 -1
- package/lib/applications-flow.module.d.ts.map +0 -1
- package/lib/controls/build-pipeline-form/build-pipeline-form.component.d.ts.map +0 -1
- package/lib/controls/devops-source-control-form/devops-source-control-form.component.d.ts.map +0 -1
- package/lib/controls/edit-application-form/edit-application-form.component.d.ts.map +0 -1
- package/lib/controls/processor-details-form/processor-details-form.component.d.ts.map +0 -1
- package/lib/controls/security-toggle/security-toggle.component.d.ts.map +0 -1
- package/lib/controls/source-control-form/source-control-form.component.d.ts.map +0 -1
- package/lib/dialogs/build-pipeline-dialog/build-pipeline-dialog.component.d.ts.map +0 -1
- package/lib/dialogs/custom-domain-dialog/custom-domain-dialog.component.d.ts.map +0 -1
- package/lib/dialogs/edit-application-dialog/edit-application-dialog.component.d.ts.map +0 -1
- package/lib/dialogs/source-control-dialog/source-control-dialog.component.d.ts.map +0 -1
- package/lib/elements/analytics-card/analytics-card.component.d.ts.map +0 -1
- package/lib/elements/base-form/base-form.component.d.ts.map +0 -1
- package/lib/elements/breadcrumb/breadcrumb.component.d.ts.map +0 -1
- package/lib/elements/card-carousel/card-carousel.component.d.ts.map +0 -1
- package/lib/elements/dynamic-tabs/dynamic-tabs.component.d.ts.map +0 -1
- package/lib/elements/feed-card-sm/feed-card-sm.component.d.ts.map +0 -1
- package/lib/elements/form-card/form-card.component.d.ts.map +0 -1
- package/lib/elements/gh-control/gh-control.component.d.ts.map +0 -1
- package/lib/elements/main-feed-card/main-feed-card.component.d.ts.map +0 -1
- package/lib/elements/project-info-card/project-info-card.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/builds/builds.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/create-project-wizard/create-project-wizard.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/forms/source-control/source-control.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/git-auth/git-auth.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/header/header.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/hosting-details-form-group/hosting-details-form-group.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/project-items/project-items.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/project-tabs/project-tabs.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/recent-activities/recent-activities.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/tabs/apps-flow/apps-flow.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/tabs/apps-flow/npm-package-select/npm-package-select.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/tabs/devops/devops.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/tabs/dfs-modifiers/dfs-modifiers.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/tabs/domains/domains.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/tabs/general/forms/base-form-test/base-form-test.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/tabs/general/forms/project-details/project-details.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/tabs/general/forms/root-directory/root-directory.component.d.ts.map +0 -1
- package/lib/elements/projects/controls/tabs/general/general.component.d.ts.map +0 -1
- package/lib/elements/projects/projects.component.d.ts.map +0 -1
- package/lib/elements/slotted-card/slotted-card.component.d.ts.map +0 -1
- package/lib/elements/three-column/three-column.component.d.ts.map +0 -1
- package/lib/elements/two-column-header/two-column-header.component.d.ts.map +0 -1
- package/lib/models/actions.model.d.ts.map +0 -1
- package/lib/models/base-form-config.model.d.ts.map +0 -1
- package/lib/models/card-form-config.model.d.ts.map +0 -1
- package/lib/models/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.service.d.ts.map +0 -1
- package/lib/services/eac.service.d.ts.map +0 -1
- package/lib/services/forms.service.d.ts.map +0 -1
- package/lib/services/npm.service.d.ts.map +0 -1
- package/lib/services/project.service.d.ts.map +0 -1
- package/lib/state/applications-flow-state.context.d.ts.map +0 -1
- package/lib/state/applications-flow.state.d.ts.map +0 -1
- package/lowcodeunit-applications-flow-common.d.ts.map +0 -1
- package/lowcodeunit-applications-flow-common.metadata.json +0 -1
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';
|
|
@@ -23,5 +22,44 @@ export * from './lib/models/form.model';
|
|
|
23
22
|
export * from './lib/models/form.values.model';
|
|
24
23
|
export * from './lib/models/base-form-config.model';
|
|
25
24
|
export * from './lib/elements/projects/controls/git-auth/git-auth.component';
|
|
25
|
+
export * from './lib/elements/dynamic-tabs/dynamic-tabs.component';
|
|
26
|
+
export * from './lib/elements/projects/controls/project-items/project-items.component';
|
|
27
|
+
export * from './lib/elements/projects/controls/header/header.component';
|
|
28
|
+
export * from './lib/elements/projects/controls/tabs/domains/domains.component';
|
|
29
|
+
export * from './lib/elements/projects/controls/tabs/apps-flow/apps-flow.component';
|
|
30
|
+
export * from './lib/elements/projects/controls/tabs/dfs-modifiers/dfs-modifiers.component';
|
|
31
|
+
export * from './lib/elements/projects/controls/builds/builds.component';
|
|
32
|
+
export * from './lib/elements/projects/controls/tabs/apps-flow/apps-flow.component';
|
|
33
|
+
export * from './lib/elements/projects/controls/tabs/apps-flow/npm-package-select/npm-package-select.component';
|
|
34
|
+
export * from './lib/elements/projects/controls/tabs/general/forms/base-form-test/base-form-test.component';
|
|
35
|
+
export * from './lib/elements/projects/controls/tabs/general/forms/project-details/project-details.component';
|
|
36
|
+
export * from './lib/elements/projects/controls/tabs/general/forms/root-directory/root-directory.component';
|
|
37
|
+
export * from './lib/elements/projects/controls/tabs/devops/devops.component';
|
|
38
|
+
export * from './lib/elements/projects/controls/project-tabs/project-tabs.component';
|
|
39
|
+
export * from './lib/elements/form-card/form-card.component';
|
|
40
|
+
export * from './lib/elements/base-form/base-form.component';
|
|
41
|
+
export * from './lib/elements/projects/controls/recent-activities/recent-activities.component';
|
|
42
|
+
export * from './lib/elements/projects/projects.component';
|
|
43
|
+
export * from './lib/elements/flow-tool/flow-tool.component';
|
|
44
|
+
export * from './lib/elements/column-info-card/column-info-card.component';
|
|
45
|
+
export * from './lib/elements/slotted-card/slotted-card.component';
|
|
46
|
+
export * from './lib/elements/analytics-card/analytics-card.component';
|
|
47
|
+
export * from './lib/elements/feed-card-sm/feed-card-sm.component';
|
|
26
48
|
export * from './lib/elements/three-column/three-column.component';
|
|
27
|
-
|
|
49
|
+
export * from './lib/elements/gh-control/gh-control.component';
|
|
50
|
+
export * from './lib/elements/gh-control/gh-control.component';
|
|
51
|
+
export * from './lib/elements/main-feed-card/main-feed-card.component';
|
|
52
|
+
export * from './lib/elements/project-info-card/project-info-card.component';
|
|
53
|
+
export * from './lib/elements/two-column-header/two-column-header.component';
|
|
54
|
+
export * from './lib/dialogs/custom-domain-dialog/custom-domain-dialog.component';
|
|
55
|
+
export * from './lib/dialogs/edit-application-dialog/edit-application-dialog.component';
|
|
56
|
+
export * from './lib/elements/card-carousel/card-carousel.component';
|
|
57
|
+
export * from './lib/controls/security-toggle/security-toggle.component';
|
|
58
|
+
export * from './lib/controls/processor-details-form/processor-details-form.component';
|
|
59
|
+
export * from './lib/controls/source-control-form/source-control-form.component';
|
|
60
|
+
export * from './lib/controls/build-pipeline-form/build-pipeline-form.component';
|
|
61
|
+
export * from './lib/controls/devops-source-control-form/devops-source-control-form.component';
|
|
62
|
+
export * from './lib/dialogs/source-control-dialog/source-control-dialog.component';
|
|
63
|
+
export * from './lib/dialogs/build-pipeline-dialog/build-pipeline-dialog.component';
|
|
64
|
+
export * from './lib/controls/edit-application-form/edit-application-form.component';
|
|
65
|
+
export * from './lib/elements/breadcrumb/breadcrumb.component';
|
|
@@ -1,5 +1,57 @@
|
|
|
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/column-info-card/column-info-card.component";
|
|
27
|
+
import * as i25 from "./elements/slotted-card/slotted-card.component";
|
|
28
|
+
import * as i26 from "./elements/project-info-card/project-info-card.component";
|
|
29
|
+
import * as i27 from "./elements/analytics-card/analytics-card.component";
|
|
30
|
+
import * as i28 from "./elements/feed-card-sm/feed-card-sm.component";
|
|
31
|
+
import * as i29 from "./elements/gh-control/gh-control.component";
|
|
32
|
+
import * as i30 from "./elements/main-feed-card/main-feed-card.component";
|
|
33
|
+
import * as i31 from "./elements/two-column-header/two-column-header.component";
|
|
34
|
+
import * as i32 from "./elements/card-carousel/card-carousel.component";
|
|
35
|
+
import * as i33 from "./controls/security-toggle/security-toggle.component";
|
|
36
|
+
import * as i34 from "./controls/processor-details-form/processor-details-form.component";
|
|
37
|
+
import * as i35 from "./controls/source-control-form/source-control-form.component";
|
|
38
|
+
import * as i36 from "./controls/build-pipeline-form/build-pipeline-form.component";
|
|
39
|
+
import * as i37 from "./controls/devops-source-control-form/devops-source-control-form.component";
|
|
40
|
+
import * as i38 from "./dialogs/source-control-dialog/source-control-dialog.component";
|
|
41
|
+
import * as i39 from "./dialogs/build-pipeline-dialog/build-pipeline-dialog.component";
|
|
42
|
+
import * as i40 from "./controls/edit-application-form/edit-application-form.component";
|
|
43
|
+
import * as i41 from "./elements/breadcrumb/breadcrumb.component";
|
|
44
|
+
import * as i42 from "./dialogs/custom-domain-dialog/custom-domain-dialog.component";
|
|
45
|
+
import * as i43 from "./dialogs/edit-application-dialog/edit-application-dialog.component";
|
|
46
|
+
import * as i44 from "@lcu/common";
|
|
47
|
+
import * as i45 from "@angular/forms";
|
|
48
|
+
import * as i46 from "@angular/flex-layout";
|
|
49
|
+
import * as i47 from "@lowcodeunit/app-host-common";
|
|
50
|
+
import * as i48 from "@angular/material/tooltip";
|
|
51
|
+
import * as i49 from "@angular/material/slide-toggle";
|
|
2
52
|
export declare class ApplicationsFlowModule {
|
|
3
53
|
static forRoot(): ModuleWithProviders<ApplicationsFlowModule>;
|
|
54
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ApplicationsFlowModule, never>;
|
|
55
|
+
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.ColumnInfoCardComponent, typeof i25.SlottedCardComponent, typeof i26.ProjectInfoCardComponent, typeof i27.AnalyticsCardComponent, typeof i28.FeedCardSmComponent, typeof i29.GhControlComponent, typeof i30.MainFeedCardComponent, typeof i31.TwoColumnHeaderComponent, typeof i32.CardCarouselComponent, typeof i33.SecurityToggleComponent, typeof i34.ProcessorDetailsFormComponent, typeof i35.SourceControlFormComponent, typeof i36.BuildPipelineFormComponent, typeof i37.DevopsSourceControlFormComponent, typeof i38.SourceControlDialogComponent, typeof i39.BuildPipelineDialogComponent, typeof i40.EditApplicationFormComponent, typeof i41.BreadcrumbComponent, typeof i42.CustomDomainDialogComponent, typeof i43.EditApplicationDialogComponent], [typeof i44.FathymSharedModule, typeof i45.FormsModule, typeof i45.ReactiveFormsModule, typeof i46.FlexLayoutModule, typeof i44.MaterialModule, typeof i47.AppHostModule, typeof i48.MatTooltipModule, typeof i49.MatSlideToggleModule], [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.ColumnInfoCardComponent, typeof i25.SlottedCardComponent, typeof i26.ProjectInfoCardComponent, typeof i27.AnalyticsCardComponent, typeof i28.FeedCardSmComponent, typeof i29.GhControlComponent, typeof i30.MainFeedCardComponent, typeof i31.TwoColumnHeaderComponent, typeof i32.CardCarouselComponent, typeof i33.SecurityToggleComponent, typeof i34.ProcessorDetailsFormComponent, typeof i35.SourceControlFormComponent, typeof i36.BuildPipelineFormComponent, typeof i37.DevopsSourceControlFormComponent, typeof i38.SourceControlDialogComponent, typeof i39.BuildPipelineDialogComponent, typeof i40.EditApplicationFormComponent, typeof i41.BreadcrumbComponent, typeof i42.CustomDomainDialogComponent, typeof i43.EditApplicationDialogComponent]>;
|
|
56
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ApplicationsFlowModule>;
|
|
4
57
|
}
|
|
5
|
-
//# sourceMappingURL=applications-flow.module.d.ts.map
|
|
@@ -4,6 +4,7 @@ import { EaCArtifact, EaCDevOpsAction, EaCEnvironmentAsCode, EaCSourceControl }
|
|
|
4
4
|
import { ApplicationsFlowService } from '../../services/applications-flow.service';
|
|
5
5
|
import { EaCService } from '../../services/eac.service';
|
|
6
6
|
import { ProjectHostingDetails, ProjectHostingOption } from '../../state/applications-flow.state';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
7
8
|
export declare class BuildPipelineFormComponent implements OnInit {
|
|
8
9
|
protected eacSvc: EaCService;
|
|
9
10
|
protected formBuilder: FormBuilder;
|
|
@@ -39,5 +40,6 @@ export declare class BuildPipelineFormComponent implements OnInit {
|
|
|
39
40
|
SaveEnvironment(): void;
|
|
40
41
|
protected setupControlsForForm(): void;
|
|
41
42
|
protected loadProjectHostingDetails(): void;
|
|
43
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BuildPipelineFormComponent, never>;
|
|
44
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BuildPipelineFormComponent, "lcu-build-pipeline-form", never, { "DevOpsActionLookup": "devops-action-lookup"; "Disabled": "disabled"; "Environment": "environment"; "EnvironmentLookup": "environment-lookup"; "HostingDetails": "hosting-details"; }, {}, never, never>;
|
|
42
45
|
}
|
|
43
|
-
//# sourceMappingURL=build-pipeline-form.component.d.ts.map
|
|
@@ -7,6 +7,7 @@ import { EaCArtifact, EaCDevOpsAction, EaCEnvironmentAsCode, EaCSourceControl }
|
|
|
7
7
|
import { ApplicationsFlowService } from '../../services/applications-flow.service';
|
|
8
8
|
import { EaCService } from '../../services/eac.service';
|
|
9
9
|
import { GitHubBranch, GitHubOrganization, GitHubRepository, ProjectHostingDetails } from '../../state/applications-flow.state';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
10
11
|
export declare class DevopsSourceControlFormComponent implements AfterViewInit, OnDestroy, OnInit {
|
|
11
12
|
protected appsFlowSvc: ApplicationsFlowService;
|
|
12
13
|
protected eacSvc: EaCService;
|
|
@@ -77,5 +78,6 @@ export declare class DevopsSourceControlFormComponent implements AfterViewInit,
|
|
|
77
78
|
protected listRepositories(activeRepo?: string): void;
|
|
78
79
|
protected loadProjectHostingDetails(): void;
|
|
79
80
|
protected setupFormControls(): void;
|
|
81
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DevopsSourceControlFormComponent, never>;
|
|
82
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DevopsSourceControlFormComponent, "lcu-devops-source-control-form", never, { "EditingSourceControlLookup": "editing-source-control-lookup"; "Environment": "environment"; "EnvironmentLookup": "environment-lookup"; }, {}, never, never>;
|
|
80
83
|
}
|
|
81
|
-
//# sourceMappingURL=devops-source-control-form.component.d.ts.map
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { AbstractControl, FormBuilder, FormGroup } from '@angular/forms';
|
|
3
3
|
import { EaCApplicationAsCode } from '@semanticjs/common';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class EditApplicationFormComponent implements OnInit {
|
|
5
6
|
protected formBldr: FormBuilder;
|
|
6
7
|
EditingApplication: EaCApplicationAsCode;
|
|
@@ -13,5 +14,6 @@ export declare class EditApplicationFormComponent implements OnInit {
|
|
|
13
14
|
ngOnInit(): void;
|
|
14
15
|
SubmitApplicationControl(): void;
|
|
15
16
|
protected setupApplicationForm(): void;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EditApplicationFormComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EditApplicationFormComponent, "lcu-edit-application-form", never, { "EditingApplication": "editing-application"; }, { "SaveFormEvent": "save-form-event"; }, never, never>;
|
|
16
19
|
}
|
|
17
|
-
//# sourceMappingURL=edit-application-form.component.d.ts.map
|
|
@@ -4,6 +4,7 @@ import { MatSelectChange } from '@angular/material/select';
|
|
|
4
4
|
import { EaCApplicationAsCode, EaCSourceControl } from '@semanticjs/common';
|
|
5
5
|
import { SourceControlFormControlsComponent } from '../../elements/projects/controls/forms/source-control/source-control.component';
|
|
6
6
|
import { EaCService } from '../../services/eac.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
7
8
|
export declare class ProcessorDetailsFormComponent implements OnInit {
|
|
8
9
|
protected formBldr: FormBuilder;
|
|
9
10
|
protected eacSvc: EaCService;
|
|
@@ -61,5 +62,6 @@ export declare class ProcessorDetailsFormComponent implements OnInit {
|
|
|
61
62
|
protected setupLCUZipForm(): void;
|
|
62
63
|
protected setupDfsForm(): void;
|
|
63
64
|
protected setupProcessorTypeSubForm(): void;
|
|
65
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProcessorDetailsFormComponent, never>;
|
|
66
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProcessorDetailsFormComponent, "lcu-processor-details-form", never, { "EditingApplication": "editing-application"; "EditingApplicationLookup": "editing-application-lookup"; "ProjectLookup": "project-lookup"; }, { "SaveFormEvent": "save-form-event"; }, never, never>;
|
|
64
67
|
}
|
|
65
|
-
//# sourceMappingURL=processor-details-form.component.d.ts.map
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { AbstractControl, FormBuilder, FormGroup } from '@angular/forms';
|
|
3
3
|
import { EaCApplicationAsCode } from '@semanticjs/common';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class SecurityToggleComponent implements OnInit {
|
|
5
6
|
protected formBldr: FormBuilder;
|
|
6
7
|
EditingApplication: EaCApplicationAsCode;
|
|
@@ -14,5 +15,6 @@ export declare class SecurityToggleComponent implements OnInit {
|
|
|
14
15
|
SecuritySubmit(): void;
|
|
15
16
|
protected setupSecurityFormGroup(): void;
|
|
16
17
|
protected setupSecurityForm(): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SecurityToggleComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SecurityToggleComponent, "lcu-security-toggle", never, { "EditingApplication": "editing-application"; }, { "SaveFormEvent": "save-form-event"; }, never, never>;
|
|
17
20
|
}
|
|
18
|
-
//# sourceMappingURL=security-toggle.component.d.ts.map
|
|
@@ -2,6 +2,7 @@ import { EventEmitter, OnInit } from '@angular/core';
|
|
|
2
2
|
import { AbstractControl, FormBuilder, FormGroup } from '@angular/forms';
|
|
3
3
|
import { MatSelectChange } from '@angular/material/select';
|
|
4
4
|
import { EaCApplicationAsCode, EaCEnvironmentAsCode, EaCSourceControl } from '@semanticjs/common';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class SourceControlFormComponent implements OnInit {
|
|
6
7
|
protected formBldr: FormBuilder;
|
|
7
8
|
EditingApplication: EaCApplicationAsCode;
|
|
@@ -21,5 +22,6 @@ export declare class SourceControlFormComponent implements OnInit {
|
|
|
21
22
|
SubmitSourceControl(): void;
|
|
22
23
|
protected setupSourceControlForm(): void;
|
|
23
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>;
|
|
24
27
|
}
|
|
25
|
-
//# sourceMappingURL=source-control-form.component.d.ts.map
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
3
|
import { EaCEnvironmentAsCode } from '@semanticjs/common';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export interface BPDialogData {
|
|
5
6
|
devopsActionLookup: string;
|
|
6
7
|
environment: EaCEnvironmentAsCode;
|
|
@@ -12,5 +13,6 @@ export declare class BuildPipelineDialogComponent implements OnInit {
|
|
|
12
13
|
constructor(dialogRef: MatDialogRef<BuildPipelineDialogComponent>, data: BPDialogData);
|
|
13
14
|
ngOnInit(): void;
|
|
14
15
|
CloseDialog(): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BuildPipelineDialogComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BuildPipelineDialogComponent, "lcu-build-pipeline-dialog", never, {}, {}, never, never>;
|
|
15
18
|
}
|
|
16
|
-
//# sourceMappingURL=build-pipeline-dialog.component.d.ts.map
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
3
|
import { EaCHost, EaCProjectAsCode } from '@semanticjs/common';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export interface CDDialogData {
|
|
5
6
|
hosts: {
|
|
6
7
|
[lookup: string]: EaCHost;
|
|
@@ -16,5 +17,6 @@ export declare class CustomDomainDialogComponent implements OnInit {
|
|
|
16
17
|
constructor(dialogRef: MatDialogRef<CustomDomainDialogComponent>, data: CDDialogData);
|
|
17
18
|
ngOnInit(): void;
|
|
18
19
|
CloseDialog(): void;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CustomDomainDialogComponent, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CustomDomainDialogComponent, "lcu-custom-domain-dialog", never, {}, {}, never, never>;
|
|
19
22
|
}
|
|
20
|
-
//# sourceMappingURL=custom-domain-dialog.component.d.ts.map
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
3
|
import { EaCApplicationAsCode } from '@semanticjs/common';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export interface ApplicationDialogData {
|
|
5
6
|
application: EaCApplicationAsCode;
|
|
6
7
|
}
|
|
@@ -10,6 +11,7 @@ export declare class EditApplicationDialogComponent implements OnInit {
|
|
|
10
11
|
constructor(dialogRef: MatDialogRef<EditApplicationDialogComponent>, data: ApplicationDialogData);
|
|
11
12
|
ngOnInit(): void;
|
|
12
13
|
CloseDialog(): void;
|
|
13
|
-
SaveApplication(
|
|
14
|
+
SaveApplication(event: any): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EditApplicationDialogComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EditApplicationDialogComponent, "lcu-edit-application-dialog", never, {}, {}, never, never>;
|
|
14
17
|
}
|
|
15
|
-
//# sourceMappingURL=edit-application-dialog.component.d.ts.map
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
3
|
import { EaCEnvironmentAsCode } from '@semanticjs/common';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export interface SCDialogData {
|
|
5
6
|
environment: EaCEnvironmentAsCode;
|
|
6
7
|
environmentLookup: string;
|
|
@@ -12,5 +13,6 @@ export declare class SourceControlDialogComponent implements OnInit {
|
|
|
12
13
|
constructor(dialogRef: MatDialogRef<SourceControlDialogComponent>, data: SCDialogData);
|
|
13
14
|
ngOnInit(): void;
|
|
14
15
|
CloseDialog(): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SourceControlDialogComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SourceControlDialogComponent, "lcu-source-control-dialog", never, {}, {}, never, never>;
|
|
15
18
|
}
|
|
16
|
-
//# sourceMappingURL=source-control-dialog.component.d.ts.map
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class AnalyticsCardComponent implements OnInit {
|
|
3
4
|
Title: string;
|
|
4
5
|
Subtext: string;
|
|
5
6
|
Analytics: any[];
|
|
6
7
|
constructor();
|
|
7
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>;
|
|
8
11
|
}
|
|
9
|
-
//# sourceMappingURL=analytics-card.component.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 { EaCService } from '../../services/eac.service';
|
|
4
4
|
import { FormsService } from '../../services/forms.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class BaseFormComponent implements OnInit {
|
|
6
7
|
protected formsService: FormsService;
|
|
7
8
|
protected eac: EaCService;
|
|
@@ -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
|
|
@@ -2,6 +2,7 @@ import { OnInit } from '@angular/core';
|
|
|
2
2
|
import { EaCApplicationAsCode } from '@semanticjs/common';
|
|
3
3
|
import { EaCService } from '../../services/eac.service';
|
|
4
4
|
import { ApplicationsFlowState } from '../../state/applications-flow.state';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class BreadcrumbComponent implements OnInit {
|
|
6
7
|
protected eacSvc: EaCService;
|
|
7
8
|
Enterprise: any;
|
|
@@ -29,5 +30,6 @@ export declare class BreadcrumbComponent implements OnInit {
|
|
|
29
30
|
constructor(eacSvc: EaCService);
|
|
30
31
|
ngOnInit(): void;
|
|
31
32
|
protected handleStateChange(): Promise<void>;
|
|
33
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbComponent, never>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbComponent, "lcu-breadcrumb", never, { "Enterprise": "enterprise"; "ApplicationLookup": "application-lookup"; "ProjectLookup": "project-lookup"; "SelectedRoute": "selected-route"; }, {}, never, never>;
|
|
32
35
|
}
|
|
33
|
-
//# sourceMappingURL=breadcrumb.component.d.ts.map
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class CardCarouselComponent implements OnInit {
|
|
3
4
|
Stats: any[];
|
|
4
5
|
protected carouselIndex: number;
|
|
@@ -10,5 +11,6 @@ export declare class CardCarouselComponent implements OnInit {
|
|
|
10
11
|
RightChevronClicked(): void;
|
|
11
12
|
protected removeCarouselClasses(): void;
|
|
12
13
|
protected assignCarouselClass(): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CardCarouselComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CardCarouselComponent, "lcu-card-carousel", never, { "Stats": "stats"; }, {}, never, never>;
|
|
13
16
|
}
|
|
14
|
-
//# sourceMappingURL=card-carousel.component.d.ts.map
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { CardSlotModel } from '../../models/card-slot.model';
|
|
3
|
+
import { SlotActionModel } from '../../models/slot-action.model';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class ColumnInfoCardComponent implements OnInit {
|
|
6
|
+
Title: string;
|
|
7
|
+
MainIcon: string;
|
|
8
|
+
MainSlotDescription: string;
|
|
9
|
+
MainSlots: Array<CardSlotModel>;
|
|
10
|
+
SecondarySlots: Array<CardSlotModel>;
|
|
11
|
+
MainCardAction: SlotActionModel;
|
|
12
|
+
MainCardClicked: EventEmitter<string>;
|
|
13
|
+
SlotActionClicked: EventEmitter<string>;
|
|
14
|
+
constructor();
|
|
15
|
+
ngOnInit(): void;
|
|
16
|
+
SlotActionClickEvent(event: string): void;
|
|
17
|
+
MainCardClickEvent(event: string): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ColumnInfoCardComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ColumnInfoCardComponent, "lcu-column-info-card", never, { "Title": "title"; "MainIcon": "main-icon"; "MainSlotDescription": "main-slot-description"; "MainSlots": "main-slots"; "SecondarySlots": "secondary-slots"; "MainCardAction": "main-card-action"; }, { "MainCardClicked": "main-card-clicked"; "SlotActionClicked": "slot-action-clicked"; }, never, never>;
|
|
20
|
+
}
|
|
@@ -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
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class FeedCardSmComponent implements OnInit {
|
|
3
4
|
Icon: string;
|
|
4
5
|
Title: string;
|
|
@@ -8,5 +9,6 @@ export declare class FeedCardSmComponent implements OnInit {
|
|
|
8
9
|
constructor();
|
|
9
10
|
ngOnInit(): void;
|
|
10
11
|
protected determineIconColor(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FeedCardSmComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FeedCardSmComponent, "lcu-feed-card-sm", never, { "Icon": "icon"; "Title": "title"; "Subtext": "subtext"; "Description": "description"; }, {}, never, ["[more-details]", "[actions]"]>;
|
|
11
14
|
}
|
|
12
|
-
//# sourceMappingURL=feed-card-sm.component.d.ts.map
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { Injector, OnInit } from '@angular/core';
|
|
2
|
+
import { ApplicationsFlowState } from '../../state/applications-flow.state';
|
|
3
|
+
import { ApplicationsFlowService } from '../../services/applications-flow.service';
|
|
4
|
+
import { ProjectService } from '../../services/project.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class FlowToolComponent implements OnInit {
|
|
7
|
+
protected injector: Injector;
|
|
8
|
+
protected appsFlowSvc: ApplicationsFlowService;
|
|
9
|
+
protected projectService: ProjectService;
|
|
10
|
+
State: ApplicationsFlowState;
|
|
11
|
+
KrakynData: any;
|
|
12
|
+
SideMenuItems: any;
|
|
13
|
+
Title: string;
|
|
14
|
+
TabMenuItems: Array<{
|
|
15
|
+
Label: string;
|
|
16
|
+
Target: string;
|
|
17
|
+
Class?: string;
|
|
18
|
+
}>;
|
|
19
|
+
constructor(injector: Injector, appsFlowSvc: ApplicationsFlowService, projectService: ProjectService);
|
|
20
|
+
ngOnInit(): void;
|
|
21
|
+
/**
|
|
22
|
+
* Import tool data
|
|
23
|
+
*/
|
|
24
|
+
protected importData(): void;
|
|
25
|
+
protected handleStateChange(): Promise<void>;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FlowToolComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FlowToolComponent, "lcu-flow-tool", never, {}, {}, never, never>;
|
|
28
|
+
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { FormGroup } from '@angular/forms';
|
|
2
2
|
import { OnInit } from '@angular/core';
|
|
3
3
|
import { CardFormConfigModel } from '../../models/card-form-config.model';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class FormCardComponent implements OnInit {
|
|
5
6
|
/**
|
|
6
7
|
* Values for building out the card
|
|
@@ -17,5 +18,6 @@ export declare class FormCardComponent implements OnInit {
|
|
|
17
18
|
Form: FormGroup;
|
|
18
19
|
constructor();
|
|
19
20
|
ngOnInit(): void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormCardComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormCardComponent, "lcu-form-card", never, { "Config": "config"; "Disabled": "disabled"; "IsDirty": "is-dirty"; "Form": "form"; }, {}, never, ["*"]>;
|
|
20
23
|
}
|
|
21
|
-
//# sourceMappingURL=form-card.component.d.ts.map
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class GhControlComponent implements OnInit {
|
|
3
4
|
InputLabel: string;
|
|
4
5
|
protected selectedBtn: string;
|
|
@@ -13,5 +14,6 @@ export declare class GhControlComponent implements OnInit {
|
|
|
13
14
|
Submit(): void;
|
|
14
15
|
protected addSelectBtn(): void;
|
|
15
16
|
protected removeSelectedBtn(): void;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GhControlComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GhControlComponent, "lcu-gh-control", never, {}, {}, never, never>;
|
|
16
19
|
}
|
|
17
|
-
//# sourceMappingURL=gh-control.component.d.ts.map
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class MainFeedCardComponent implements OnInit {
|
|
3
4
|
Avatar: string;
|
|
4
5
|
Title: string;
|
|
@@ -7,5 +8,6 @@ export declare class MainFeedCardComponent implements OnInit {
|
|
|
7
8
|
constructor();
|
|
8
9
|
ngOnInit(): void;
|
|
9
10
|
MoreClicked(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MainFeedCardComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MainFeedCardComponent, "lcu-main-feed-card", never, { "Avatar": "avatar"; "Title": "title"; "Subtext": "subtext"; "TimeAgo": "time-ago"; }, {}, never, ["[tabs]", "[actions]"]>;
|
|
10
13
|
}
|
|
11
|
-
//# sourceMappingURL=main-feed-card.component.d.ts.map
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class ProjectInfoCardComponent implements OnInit {
|
|
3
4
|
Description: string;
|
|
4
5
|
Image: string;
|
|
5
|
-
IsEditable: boolean;
|
|
6
|
-
Loading: boolean;
|
|
7
6
|
Name: string;
|
|
8
7
|
Subtext: string;
|
|
9
8
|
LeftClickEvent: EventEmitter<{}>;
|
|
@@ -12,5 +11,6 @@ export declare class ProjectInfoCardComponent implements OnInit {
|
|
|
12
11
|
ngOnInit(): void;
|
|
13
12
|
LeftIconClicked(): void;
|
|
14
13
|
RightIconClicked(): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProjectInfoCardComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProjectInfoCardComponent, "lcu-project-info-card", never, { "Description": "description"; "Image": "image"; "Name": "name"; "Subtext": "subtext"; }, { "LeftClickEvent": "left-click-event"; "RightClickEvent": "right-click-event"; }, never, ["[stats]", "[promo]", "[action]"]>;
|
|
15
16
|
}
|
|
16
|
-
//# sourceMappingURL=project-info-card.component.d.ts.map
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { GitHubWorkflowRun } from './../../../../state/applications-flow.state';
|
|
2
2
|
import { OnInit, OnDestroy } from '@angular/core';
|
|
3
3
|
import { EaCLowCodeUnit, EaCProjectAsCode } from '@semanticjs/common';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class BuildsComponent implements OnInit, OnDestroy {
|
|
5
6
|
Projects: Array<EaCProjectAsCode>;
|
|
6
7
|
constructor();
|
|
@@ -11,5 +12,6 @@ export declare class BuildsComponent implements OnInit, OnDestroy {
|
|
|
11
12
|
project: EaCProjectAsCode;
|
|
12
13
|
lcuID: string;
|
|
13
14
|
}): EaCLowCodeUnit;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BuildsComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BuildsComponent, "lcu-builds", never, { "Projects": "projects"; }, {}, never, never>;
|
|
14
17
|
}
|
|
15
|
-
//# 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 { EaCService } from '../../../../services/eac.service';
|
|
|
5
5
|
import { ApplicationsFlowService } from '../../../../services/applications-flow.service';
|
|
6
6
|
import { ProjectHostingDetails } from '../../../../state/applications-flow.state';
|
|
7
7
|
import { SourceControlFormControlsComponent } from '../forms/source-control/source-control.component';
|
|
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
|
|
@@ -6,6 +6,7 @@ import { MatSelectChange } from '@angular/material/select';
|
|
|
6
6
|
import { GitHubBranch, GitHubOrganization, GitHubRepository } from '../../../../../state/applications-flow.state';
|
|
7
7
|
import { ApplicationsFlowService } from '../../../../../services/applications-flow.service';
|
|
8
8
|
import { EaCSourceControl } from '@semanticjs/common';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
9
10
|
export declare class SourceControlFormControlsComponent implements AfterViewInit, OnDestroy, OnInit {
|
|
10
11
|
protected formBuilder: FormBuilder;
|
|
11
12
|
protected appsFlowSvc: ApplicationsFlowService;
|
|
@@ -57,5 +58,6 @@ export declare class SourceControlFormControlsComponent implements AfterViewInit
|
|
|
57
58
|
protected listOrganizations(): void;
|
|
58
59
|
protected listRepositories(activeRepo?: string): void;
|
|
59
60
|
protected setupFormControls(): void;
|
|
61
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SourceControlFormControlsComponent, never>;
|
|
62
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SourceControlFormControlsComponent, "lcu-source-control-form-controls", never, { "BranchesDisabled": "branches-disabled"; "BuildPath": "build-path"; "BuildPathDisabled": "build-path-disabled"; "FormGroup": "form-group"; "OrganizationDisabled": "org-disabled"; "RepositoryDisabled": "repo-disabled"; "SourceControl": "source-control"; "SourceControlRoot": "source-control-root"; "UseBranches": "use-branches"; "UseBuildPath": "use-build-path"; }, { "BranchesChanged": "branches-changed"; }, never, never>;
|
|
60
63
|
}
|
|
61
|
-
//# 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 { EaCService } from './../../../../services/eac.service';
|
|
|
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
|