diff --git a/lib/core/src/lib/blank-page/blank-page.component.ts b/lib/core/src/lib/blank-page/blank-page.component.ts deleted file mode 100644 index cbc4d43289..0000000000 --- a/lib/core/src/lib/blank-page/blank-page.component.ts +++ /dev/null @@ -1,24 +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 { Component } from '@angular/core'; - -@Component({ - selector: 'adf-blank-page', - template: `` -}) -export class BlankPageComponent {} diff --git a/lib/core/src/lib/blank-page/blank-page.module.ts b/lib/core/src/lib/blank-page/blank-page.module.ts deleted file mode 100644 index 52af5d8fbe..0000000000 --- a/lib/core/src/lib/blank-page/blank-page.module.ts +++ /dev/null @@ -1,27 +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 { BlankPageComponent } from './blank-page.component'; - -/** @deprecated import standalone `BlankPageComponent` instead */ -@NgModule({ - imports: [BlankPageComponent], - exports: [BlankPageComponent] -}) -export class BlankPageModule {} diff --git a/lib/core/src/lib/blank-page/index.ts b/lib/core/src/lib/blank-page/index.ts deleted file mode 100644 index f22da90e09..0000000000 --- a/lib/core/src/lib/blank-page/index.ts +++ /dev/null @@ -1,18 +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. - */ - -export * from './public-api'; diff --git a/lib/core/src/lib/blank-page/public-api.ts b/lib/core/src/lib/blank-page/public-api.ts deleted file mode 100644 index 60063e9001..0000000000 --- a/lib/core/src/lib/blank-page/public-api.ts +++ /dev/null @@ -1,19 +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. - */ - -export * from './blank-page.component'; -export * from './blank-page.module'; diff --git a/lib/core/src/lib/core.module.ts b/lib/core/src/lib/core.module.ts index 47d6291133..8721a7c5c0 100644 --- a/lib/core/src/lib/core.module.ts +++ b/lib/core/src/lib/core.module.ts @@ -34,7 +34,6 @@ import { CommentListComponent } from './comments/comment-list/comment-list.compo import { TEMPLATE_DIRECTIVES } from './templates/template.module'; import { CLIPBOARD_DIRECTIVES } from './clipboard/clipboard.module'; import { NOTIFICATION_HISTORY_DIRECTIVES } from './notifications/notification-history.module'; -import { BlankPageComponent } from './blank-page/blank-page.component'; import { CORE_DIRECTIVES } from './directives/directive.module'; import { CORE_PIPES } from './pipes/pipe.module'; import { TranslateLoaderService } from './translation/translate-loader.service'; @@ -86,7 +85,6 @@ import { provideAppConfig } from './app-config/provide-app-config'; SortingPickerComponent, ...NOTIFICATION_HISTORY_DIRECTIVES, ...SEARCH_TEXT_INPUT_DIRECTIVES, - BlankPageComponent, UnsavedChangesDialogComponent, DynamicChipListComponent, MaterialModule @@ -117,7 +115,6 @@ import { provideAppConfig } from './app-config/provide-app-config'; IconComponent, ...NOTIFICATION_HISTORY_DIRECTIVES, ...SEARCH_TEXT_INPUT_DIRECTIVES, - BlankPageComponent, UnsavedChangesDialogComponent, DynamicChipListComponent, MaterialModule diff --git a/lib/core/src/public-api.ts b/lib/core/src/public-api.ts index d61e776535..65f3644586 100644 --- a/lib/core/src/public-api.ts +++ b/lib/core/src/public-api.ts @@ -42,7 +42,6 @@ export * from './lib/clipboard/index'; export * from './lib/dialogs/index'; export * from './lib/icon/index'; export * from './lib/notifications/index'; -export * from './lib/blank-page/index'; export * from './lib/search-text/index'; export * from './lib/snackbar-content/index'; export * from './lib/translation/index';