Skip to content

Commit 3705ee8

Browse files
committed
fix(standalone): removing standalone leftovers
1 parent d327754 commit 3705ee8

5 files changed

Lines changed: 6 additions & 11 deletions

File tree

projects/app-lob/src/app/home/home.component.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ import { Component } from '@angular/core';
33
@Component({
44
selector: 'app-home',
55
styleUrls: ['./home.component.scss'],
6-
templateUrl: './home.component.html',
7-
standalone: false
6+
templateUrl: './home.component.html'
87
})
98
export class HomeComponent {
109
constructor() { }

src/app/data-entries/autocomplete/movie/movie.component.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,7 @@ export class MovieComponent {
5050
}
5151

5252
@Pipe({
53-
name: 'startsWith',
54-
standalone: false
53+
name: 'startsWith'
5554
})
5655
export class AutocompletePipeStartsWith2 implements PipeTransform {
5756
public transform(collection: any[], term = '') {

src/app/data-entries/input-group/base-input.component.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
import { AfterViewInit, Directive, HostListener, QueryList, ViewChildren } from '@angular/core';
1+
import { Directive, HostListener, QueryList, ViewChildren } from '@angular/core';
22
import { IgxInputGroupComponent } from 'igniteui-angular';
33

44
@Directive({
55
// eslint-disable-next-line @angular-eslint/directive-selector
6-
selector: 'input-group-sample-base',
7-
standalone: false
6+
selector: 'input-group-sample-base'
87
})
98
// eslint-disable-next-line @angular-eslint/directive-class-suffix
109
export class BaseInputGroupSampleComponent {

src/app/home/home.component.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ import { Component } from '@angular/core';
33
@Component({
44
selector: 'app-home',
55
styleUrls: ['./home.component.scss'],
6-
templateUrl: './home.component.html',
7-
standalone: false
6+
templateUrl: './home.component.html'
87
})
98
export class HomeComponent {
109

src/app/scheduling/daterangepicker/daterangepicker-flight-booking/daterangepicker-flight-booking.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,7 @@ export class FlightBookingComponent {
4747
}
4848

4949
@Pipe({
50-
name: 'withoutTownFrom',
51-
standalone: false
50+
name: 'withoutTownFrom'
5251
})
5352
export class PipeWithoutTownFrom implements PipeTransform {
5453
public transform(collection: any[], townFrom: string) {

0 commit comments

Comments
 (0)