diff --git a/lib/content-services/src/lib/breadcrumb/breadcrumb.module.ts b/lib/content-services/src/lib/breadcrumb/breadcrumb.module.ts deleted file mode 100644 index d435812cba..0000000000 --- a/lib/content-services/src/lib/breadcrumb/breadcrumb.module.ts +++ /dev/null @@ -1,29 +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 { BreadcrumbComponent } from './breadcrumb.component'; -import { DropdownBreadcrumbComponent } from './dropdown-breadcrumb.component'; - -export const BREADCRUMB_DIRECTIVES = [BreadcrumbComponent, DropdownBreadcrumbComponent] as const; - -/** @deprecated use `...BREADCRUMB_DIRECTIVES` instead */ -@NgModule({ - imports: [...BREADCRUMB_DIRECTIVES], - exports: [...BREADCRUMB_DIRECTIVES] -}) -export class BreadcrumbModule {} diff --git a/lib/content-services/src/lib/content.module.ts b/lib/content-services/src/lib/content.module.ts index aecea5dd7a..2158eeb0bf 100644 --- a/lib/content-services/src/lib/content.module.ts +++ b/lib/content-services/src/lib/content.module.ts @@ -21,7 +21,6 @@ import { MatDatetimepickerModule, MatNativeDatetimeModule } from '@mat-datetimep 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 { BREADCRUMB_DIRECTIVES } from './breadcrumb/breadcrumb.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'; @@ -50,7 +49,6 @@ import { AlfrescoApiLoaderService, createAlfrescoApiInstance } from './api-facto ...CONTENT_SEARCH_DIRECTIVES, ...DOCUMENT_LIST_DIRECTIVES, ...CONTENT_UPLOAD_DIRECTIVES, - ...BREADCRUMB_DIRECTIVES, ...CONTENT_NODE_SELECTOR_DIRECTIVES, ...CONTENT_NODE_SHARE_DIRECTIVES, ...CONTENT_METADATA_DIRECTIVES, @@ -66,7 +64,6 @@ import { AlfrescoApiLoaderService, createAlfrescoApiInstance } from './api-facto ...DOCUMENT_LIST_DIRECTIVES, ...CONTENT_UPLOAD_DIRECTIVES, ...CONTENT_SEARCH_DIRECTIVES, - ...BREADCRUMB_DIRECTIVES, ...CONTENT_NODE_SELECTOR_DIRECTIVES, ...CONTENT_NODE_SHARE_DIRECTIVES, ...CONTENT_METADATA_DIRECTIVES,