diff --git a/lib/process-services-cloud/src/lib/app/app-list-cloud.module.ts b/lib/process-services-cloud/src/lib/app/app-list-cloud.module.ts new file mode 100644 index 0000000000..26041a814d --- /dev/null +++ b/lib/process-services-cloud/src/lib/app/app-list-cloud.module.ts @@ -0,0 +1,21 @@ +/*! + * @license + * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import { AppDetailsCloudComponent } from './components/app-details-cloud/app-details-cloud.component'; +import { AppListCloudComponent } from './components/app-list-cloud/app-list-cloud.component'; + +export const APP_LIST_CLOUD_DIRECTIVES = [AppListCloudComponent, AppDetailsCloudComponent] as const; diff --git a/lib/process-services-cloud/src/lib/form/form-cloud.module.ts b/lib/process-services-cloud/src/lib/form/form-cloud.module.ts index 1876c055b1..76e07901a5 100644 --- a/lib/process-services-cloud/src/lib/form/form-cloud.module.ts +++ b/lib/process-services-cloud/src/lib/form/form-cloud.module.ts @@ -17,6 +17,7 @@ import { NgModule } from '@angular/core'; import { FormCloudComponent } from './components/form-cloud.component'; +import { FormDefinitionSelectorCloudComponent } from './components/form-definition-selector-cloud.component'; import { FormCustomOutcomesComponent } from './components/form-cloud-custom-outcomes.component'; import { GroupCloudWidgetComponent } from './components/widgets/group/group-cloud.widget'; import { PeopleCloudWidgetComponent } from './components/widgets/people/people-cloud.widget'; @@ -38,6 +39,7 @@ export const FORM_CLOUD_DIRECTIVES = [ FileViewerWidgetComponent, FilePropertiesTableCloudComponent, FormCustomOutcomesComponent, + FormDefinitionSelectorCloudComponent, RadioButtonsCloudWidgetComponent, AttachFileCloudWidgetComponent, UploadCloudWidgetComponent, diff --git a/lib/process-services-cloud/src/lib/form/services/form-definition-selector-cloud.service.ts b/lib/process-services-cloud/src/lib/form/services/form-definition-selector-cloud.service.ts index d9f3752dab..94a508f0db 100644 --- a/lib/process-services-cloud/src/lib/form/services/form-definition-selector-cloud.service.ts +++ b/lib/process-services-cloud/src/lib/form/services/form-definition-selector-cloud.service.ts @@ -22,7 +22,8 @@ import { BaseCloudService } from '../../services/base-cloud.service'; import { FormRepresentation } from '../../services/form-fields.interfaces'; import { FormDefinitionSelectorCloudServiceInterface } from './form-definition-selector-cloud.service.interface'; -/** @deprecated this service will be removed because it's component is unused */ +/** @deprecated this service will be removed because it's component is unused https://hyland.atlassian.net/browse/ACS-10178 */ + @Injectable({ providedIn: 'root' })