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]
This commit is contained in:
Denys Vuika
2026-02-27 13:05:52 +00:00
parent 02fddbf205
commit 6cdd25ed20
2 changed files with 0 additions and 27 deletions
@@ -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 {}
@@ -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';