From 6cdd25ed2030f5479c21da680c7ff6ff1bf32ebf Mon Sep 17 00:00:00 2001 From: Denys Vuika Date: Fri, 27 Feb 2026 12:40:27 +0000 Subject: [PATCH] refactor: remove CategoriesModule and update public API - Deleted CategoriesModule and its associated exports. - Updated public API to exclude CategoriesModule exports, streamlining the module structure. [ci:force] --- .../src/lib/category/category.module.ts | 26 ------------------- .../src/lib/category/public-api.ts | 1 - 2 files changed, 27 deletions(-) delete mode 100644 lib/content-services/src/lib/category/category.module.ts diff --git a/lib/content-services/src/lib/category/category.module.ts b/lib/content-services/src/lib/category/category.module.ts deleted file mode 100644 index 84e80674a2..0000000000 --- a/lib/content-services/src/lib/category/category.module.ts +++ /dev/null @@ -1,26 +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 { CategoriesManagementComponent } from './categories-management/categories-management.component'; - -/** @deprecated use `CategoriesManagementComponent` standalone component instead */ -@NgModule({ - imports: [CategoriesManagementComponent], - exports: [CategoriesManagementComponent] -}) -export class CategoriesModule {} diff --git a/lib/content-services/src/lib/category/public-api.ts b/lib/content-services/src/lib/category/public-api.ts index 24a2abc8d4..33d25a874c 100644 --- a/lib/content-services/src/lib/category/public-api.ts +++ b/lib/content-services/src/lib/category/public-api.ts @@ -18,6 +18,5 @@ export * from './services/category.service'; export * from './services/category-tree-datasource.service'; export * from './models/category-node.interface'; -export * from './category.module'; export * from './categories-management/categories-management.component'; export * from './categories-management/categories-management-mode';