From 4b2437acd1b0ab9aee7e8f3f3bc54247e85e2a79 Mon Sep 17 00:00:00 2001 From: Umanskiy Aleksey Date: Mon, 9 Dec 2024 16:19:32 +0200 Subject: [PATCH] fix(workflow): fixing build --- libs/common-docs/src/lib/common/add-nav/add-nav.component.ts | 2 +- .../src/lib/common/app-footer/app-footer.component.ts | 2 +- .../src/lib/common/breadCrumbs/breadCrumbs.component.ts | 2 +- .../lib/common/components-page/components-page.component.ts | 3 +-- .../common/construction-page/construction-page.component.ts | 2 +- .../src/lib/common/search-input/search-filter.pipe.ts | 2 +- .../src/lib/common/search-input/search-input.component.ts | 2 +- libs/common-docs/src/lib/common/sidebar/sidebar.component.ts | 2 +- libs/common-docs/src/lib/common/themes/themes.component.ts | 2 +- .../src/lib/common/top-menu/top-menu.component.ts | 2 +- .../demo-api-section/api-sections.component.ts | 2 +- .../demo-examples-section/examples.component.ts | 2 +- .../src/lib/demo-section/demo-section.component.ts | 2 +- .../src/lib/docs-section/docs-section.component.ts | 5 +++-- 14 files changed, 16 insertions(+), 16 deletions(-) diff --git a/libs/common-docs/src/lib/common/add-nav/add-nav.component.ts b/libs/common-docs/src/lib/common/add-nav/add-nav.component.ts index ff043f843d..52ae3585cf 100644 --- a/libs/common-docs/src/lib/common/add-nav/add-nav.component.ts +++ b/libs/common-docs/src/lib/common/add-nav/add-nav.component.ts @@ -22,7 +22,7 @@ interface IComponentContent { // eslint-disable-next-line @angular-eslint/component-selector selector: 'add-nav', templateUrl: './add-nav.component.html', - + standalone: false }) export class AddNavComponent implements OnChanges, AfterViewChecked, AfterViewInit { @Input() componentContent?: ContentSection; diff --git a/libs/common-docs/src/lib/common/app-footer/app-footer.component.ts b/libs/common-docs/src/lib/common/app-footer/app-footer.component.ts index 1ee41fd7e7..1d5173807a 100644 --- a/libs/common-docs/src/lib/common/app-footer/app-footer.component.ts +++ b/libs/common-docs/src/lib/common/app-footer/app-footer.component.ts @@ -4,6 +4,6 @@ import { Component } from '@angular/core'; // eslint-disable-next-line @angular-eslint/component-selector selector: 'app-footer', templateUrl: './app-footer.component.html', - + standalone: false }) export class AppFooterComponent {} diff --git a/libs/common-docs/src/lib/common/breadCrumbs/breadCrumbs.component.ts b/libs/common-docs/src/lib/common/breadCrumbs/breadCrumbs.component.ts index 746621f254..7a3a4bad86 100644 --- a/libs/common-docs/src/lib/common/breadCrumbs/breadCrumbs.component.ts +++ b/libs/common-docs/src/lib/common/breadCrumbs/breadCrumbs.component.ts @@ -6,7 +6,7 @@ import { Subscription } from 'rxjs'; // eslint-disable-next-line @angular-eslint/component-selector selector: 'bread-crumbs', templateUrl: 'breadCrumbs.component.html', - + standalone: false }) export class BreadCrumbsComponent implements OnDestroy { routeSubscription: Subscription; diff --git a/libs/common-docs/src/lib/common/components-page/components-page.component.ts b/libs/common-docs/src/lib/common/components-page/components-page.component.ts index 854795c6a1..af0bd21e40 100644 --- a/libs/common-docs/src/lib/common/components-page/components-page.component.ts +++ b/libs/common-docs/src/lib/common/components-page/components-page.component.ts @@ -6,8 +6,7 @@ import { Routes } from "@angular/router"; // eslint-disable-next-line @angular-eslint/component-selector selector: 'components', templateUrl: './components-page.component.html', - - + standalone: false }) export class ComponentsPageComponent { componentsArray?:Routes; diff --git a/libs/common-docs/src/lib/common/construction-page/construction-page.component.ts b/libs/common-docs/src/lib/common/construction-page/construction-page.component.ts index 38d5136078..27d9f06b55 100644 --- a/libs/common-docs/src/lib/common/construction-page/construction-page.component.ts +++ b/libs/common-docs/src/lib/common/construction-page/construction-page.component.ts @@ -4,6 +4,6 @@ import { Component } from "@angular/core"; // eslint-disable-next-line @angular-eslint/component-selector selector: 'construction', templateUrl: './construction-page.component.html', - + standalone: false }) export class ConstructionPageComponent {} diff --git a/libs/common-docs/src/lib/common/search-input/search-filter.pipe.ts b/libs/common-docs/src/lib/common/search-input/search-filter.pipe.ts index 55f69151e5..4446408b90 100644 --- a/libs/common-docs/src/lib/common/search-input/search-filter.pipe.ts +++ b/libs/common-docs/src/lib/common/search-input/search-filter.pipe.ts @@ -3,7 +3,7 @@ import { Route, Routes } from '@angular/router'; @Pipe({ name: 'SearchFilter', - + standalone: false }) export class SearchFilterPipe implements PipeTransform { transform(value: Routes, text?: string): Routes { diff --git a/libs/common-docs/src/lib/common/search-input/search-input.component.ts b/libs/common-docs/src/lib/common/search-input/search-input.component.ts index 5c1606d09b..cc7b8cc55e 100644 --- a/libs/common-docs/src/lib/common/search-input/search-input.component.ts +++ b/libs/common-docs/src/lib/common/search-input/search-input.component.ts @@ -6,7 +6,7 @@ import { DOCS_TOKENS } from '../../tokens/docs-routes-token'; // eslint-disable-next-line @angular-eslint/component-selector selector: 'search-input', templateUrl: './search-input.component.html', - + standalone: false }) export class SearchInputComponent { @Input() showInput = true; diff --git a/libs/common-docs/src/lib/common/sidebar/sidebar.component.ts b/libs/common-docs/src/lib/common/sidebar/sidebar.component.ts index 4c0249aa7c..3a839ec2ac 100644 --- a/libs/common-docs/src/lib/common/sidebar/sidebar.component.ts +++ b/libs/common-docs/src/lib/common/sidebar/sidebar.component.ts @@ -17,7 +17,7 @@ const _bs5Css = 'assets/css/bootstrap-5.2.3/css/bootstrap.min.css'; // eslint-disable-next-line @angular-eslint/component-selector selector: 'sidebar', templateUrl: './sidebar.component.html', - + standalone: true }) export class SidebarComponent { isShown = false; diff --git a/libs/common-docs/src/lib/common/themes/themes.component.ts b/libs/common-docs/src/lib/common/themes/themes.component.ts index d9ba212a8d..a6a215c5f6 100644 --- a/libs/common-docs/src/lib/common/themes/themes.component.ts +++ b/libs/common-docs/src/lib/common/themes/themes.component.ts @@ -4,7 +4,7 @@ import { Component } from "@angular/core"; // eslint-disable-next-line @angular-eslint/component-selector selector: 'themes', templateUrl: './themes.component.html', - + standalone: false }) export class ThemesComponent {} diff --git a/libs/common-docs/src/lib/common/top-menu/top-menu.component.ts b/libs/common-docs/src/lib/common/top-menu/top-menu.component.ts index 3b39b04698..b528c16035 100644 --- a/libs/common-docs/src/lib/common/top-menu/top-menu.component.ts +++ b/libs/common-docs/src/lib/common/top-menu/top-menu.component.ts @@ -8,7 +8,7 @@ import { takeUntilDestroyed } from '@angular/core/rxjs-interop'; // eslint-disable-next-line @angular-eslint/component-selector selector: 'top-menu', templateUrl: './top-menu.component.html', - + standalone: false }) export class TopMenuComponent implements AfterViewInit { shadowRoutes = ['/documentation', '/discover', '/schematics', '/']; diff --git a/libs/common-docs/src/lib/demo-section-components/demo-api-section/api-sections.component.ts b/libs/common-docs/src/lib/demo-section-components/demo-api-section/api-sections.component.ts index 031c66a29e..9dd40eb90b 100644 --- a/libs/common-docs/src/lib/demo-section-components/demo-api-section/api-sections.component.ts +++ b/libs/common-docs/src/lib/demo-section-components/demo-api-section/api-sections.component.ts @@ -8,7 +8,7 @@ import { ComponentApi } from '../../models/components-api.model'; selector: 'api-sections', templateUrl: './api-sections.component.html', changeDetection: ChangeDetectionStrategy.OnPush, - + standalone: false }) export class ApiSectionsComponent { apiSectionsContent: ComponentApi[]; diff --git a/libs/common-docs/src/lib/demo-section-components/demo-examples-section/examples.component.ts b/libs/common-docs/src/lib/demo-section-components/demo-examples-section/examples.component.ts index 1bfe2dd39f..755a994584 100644 --- a/libs/common-docs/src/lib/demo-section-components/demo-examples-section/examples.component.ts +++ b/libs/common-docs/src/lib/demo-section-components/demo-examples-section/examples.component.ts @@ -22,7 +22,7 @@ import { takeUntilDestroyed } from '@angular/core/rxjs-interop'; // eslint-disable-next-line @angular-eslint/component-selector selector: 'examples', templateUrl: './examples.component.html', - + standalone: false }) export class ExamplesComponent { examples: ComponentExample[]; diff --git a/libs/common-docs/src/lib/demo-section/demo-section.component.ts b/libs/common-docs/src/lib/demo-section/demo-section.component.ts index c78ceb4645..70cc30062c 100644 --- a/libs/common-docs/src/lib/demo-section/demo-section.component.ts +++ b/libs/common-docs/src/lib/demo-section/demo-section.component.ts @@ -15,7 +15,7 @@ interface IContentSection { // eslint-disable-next-line @angular-eslint/component-selector selector: 'demo-section', templateUrl: './demo-section.component.html', - + standalone: false }) export class DemoSectionComponent { @Input() name?: string; diff --git a/libs/common-docs/src/lib/docs-section/docs-section.component.ts b/libs/common-docs/src/lib/docs-section/docs-section.component.ts index c6e496cd9e..21b0678db4 100644 --- a/libs/common-docs/src/lib/docs-section/docs-section.component.ts +++ b/libs/common-docs/src/lib/docs-section/docs-section.component.ts @@ -9,7 +9,7 @@ type AvailableTabsPathsType = typeof availableTabsPaths[number]; @Component({ // eslint-disable-next-line @angular-eslint/component-selector selector: 'docs-section', - + template: ` @@ -25,7 +25,8 @@ type AvailableTabsPathsType = typeof availableTabsPaths[number]; - ` + `, + standalone: false }) export class DocsSectionComponent implements OnDestroy { @Input() content: ContentSection[] | undefined;