diff --git a/lib/content-services/src/lib/content-node-selector/content-node-selector.module.ts b/lib/content-services/src/lib/content-node-selector/content-node-selector.module.ts deleted file mode 100644 index fd141fde13..0000000000 --- a/lib/content-services/src/lib/content-node-selector/content-node-selector.module.ts +++ /dev/null @@ -1,36 +0,0 @@ -/*! - * @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 { NgModule } from '@angular/core'; -import { ContentNodeSelectorPanelComponent } from './content-node-selector-panel/content-node-selector-panel.component'; -import { ContentNodeSelectorComponent } from './content-node-selector.component'; -import { NameLocationCellComponent } from './name-location-cell/name-location-cell.component'; -import { DropdownSitesComponent } from './site-dropdown/sites-dropdown.component'; - -export const CONTENT_NODE_SELECTOR_DIRECTIVES = [ - ContentNodeSelectorPanelComponent, - NameLocationCellComponent, - ContentNodeSelectorComponent, - DropdownSitesComponent -]; - -/** @deprecated use `...CONTENT_NODE_SELECTOR_DIRECTIVES` or import the individual components */ -@NgModule({ - imports: [...CONTENT_NODE_SELECTOR_DIRECTIVES], - exports: [...CONTENT_NODE_SELECTOR_DIRECTIVES] -}) -export class ContentNodeSelectorModule {} diff --git a/lib/content-services/src/lib/content-node-selector/public-api.ts b/lib/content-services/src/lib/content-node-selector/public-api.ts index 7a197e11f6..19408d17c7 100644 --- a/lib/content-services/src/lib/content-node-selector/public-api.ts +++ b/lib/content-services/src/lib/content-node-selector/public-api.ts @@ -22,5 +22,3 @@ export * from './content-node-selector-panel/content-node-selector-panel.compone export * from './content-node-selector.component'; export * from './content-node-dialog.service'; export * from './content-node-selector-panel/content-node-selector-panel.service'; - -export * from './content-node-selector.module'; diff --git a/lib/content-services/src/lib/content.module.ts b/lib/content-services/src/lib/content.module.ts index 190b134fb1..b9ea3d74b9 100644 --- a/lib/content-services/src/lib/content.module.ts +++ b/lib/content-services/src/lib/content.module.ts @@ -22,7 +22,6 @@ import { CONTENT_TAG_DIRECTIVES } from './tag/tag.module'; import { DOCUMENT_LIST_DIRECTIVES } from './document-list/document-list.module'; import { CONTENT_SEARCH_DIRECTIVES } from './search/search.module'; import { CONTENT_VERSION_DIRECTIVES } from './version-manager/version-manager.module'; -import { CONTENT_NODE_SELECTOR_DIRECTIVES } from './content-node-selector/content-node-selector.module'; import { CONTENT_NODE_SHARE_DIRECTIVES } from './content-node-share/content-node-share.module'; import { CONTENT_DIRECTIVES } from './directives/content-directive.module'; import { CONTENT_METADATA_DIRECTIVES } from './content-metadata/content-metadata.module'; @@ -46,7 +45,6 @@ import { AlfrescoApiLoaderService, createAlfrescoApiInstance } from './api-facto ...CONTENT_SEARCH_DIRECTIVES, ...DOCUMENT_LIST_DIRECTIVES, ...CONTENT_UPLOAD_DIRECTIVES, - ...CONTENT_NODE_SELECTOR_DIRECTIVES, ...CONTENT_NODE_SHARE_DIRECTIVES, ...CONTENT_METADATA_DIRECTIVES, ...CONTENT_DIRECTIVES, @@ -60,7 +58,6 @@ import { AlfrescoApiLoaderService, createAlfrescoApiInstance } from './api-facto ...DOCUMENT_LIST_DIRECTIVES, ...CONTENT_UPLOAD_DIRECTIVES, ...CONTENT_SEARCH_DIRECTIVES, - ...CONTENT_NODE_SELECTOR_DIRECTIVES, ...CONTENT_NODE_SHARE_DIRECTIVES, ...CONTENT_METADATA_DIRECTIVES, ...CONTENT_DIRECTIVES,