Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate to standalone components #3573

Merged
merged 29 commits into from
Jan 30, 2025
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
c888492
refactor(main): update app bootstrapping & routing
jackofdiamond5 Nov 26, 2024
0640d01
refactor(routing): update data-display routes
jackofdiamond5 Nov 26, 2024
f468b88
refactor(routes): update data-entries routes
jackofdiamond5 Nov 26, 2024
c99aa14
refactor(routes): update interactions & notifications routes
jackofdiamond5 Nov 26, 2024
cd4b0d3
refactor(routes): update lists & theming routes
jackofdiamond5 Nov 26, 2024
c6faef4
refactor(routing): update menus & scheduling routes
jackofdiamond5 Nov 26, 2024
6645373
refactor(routing): update layouts & services routes
jackofdiamond5 Nov 26, 2024
4a81f89
refactor(routing): update grids routes
jackofdiamond5 Nov 26, 2024
7c29e26
chore(*): clean up remaining imports
jackofdiamond5 Nov 26, 2024
35de887
refactor(layouts): clean up & update tab bar samples
jackofdiamond5 Nov 26, 2024
ce57945
chore(*): clean up leftovers & minor renaming
jackofdiamond5 Nov 26, 2024
33a8538
refactor(app-crm): migrate to standalone
jackofdiamond5 Nov 26, 2024
b3594f5
refactor(app-lob): migrate to standalone
jackofdiamond5 Nov 26, 2024
abe0858
refactor(live-editing): clean up; update routing
jackofdiamond5 Nov 26, 2024
cb2ee79
feat(live-editing): sample config edit for standalone
ChronosSF Dec 9, 2024
1953c0a
feat(live-editing): changing generators for new format
ChronosSF Dec 12, 2024
ff22bbe
feat(*): updating to live editing 3.0.0
ChronosSF Dec 12, 2024
0bf21c8
fix(dv): fixing lob generators
ChronosSF Dec 12, 2024
b8c408e
chore(*): update @angular-eslint packages
Lipata Jan 15, 2025
a2e2e56
chore(*): update @ng-bootstrap package
Lipata Jan 15, 2025
dcd9458
chore(*): update igniteui-angular
Lipata Jan 15, 2025
7d64304
chore(*): use latest in overrides
Lipata Jan 15, 2025
a2d099d
chore(*): update @igniteui/angular-schematics
Lipata Jan 15, 2025
04397a1
chore(*): update dv packages
Lipata Jan 15, 2025
d30cd1b
Merge remote-tracking branch 'origin/vnext' into bpenkov/migrate-to-s…
ChronosSF Jan 28, 2025
d327754
Merge remote-tracking branch 'origin/vnext' into bpenkov/migrate-to-s…
ChronosSF Jan 28, 2025
3705ee8
fix(standalone): removing standalone leftovers
ChronosSF Jan 28, 2025
c5a73a4
fix(standalone): resolving lob standalone
ChronosSF Jan 28, 2025
4be1083
fix(extras): updating to working v
ChronosSF Jan 30, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(standalone): removing standalone leftovers
ChronosSF committed Jan 28, 2025
commit 3705ee8ef7a77a6c151b2b9f4a9dd45a7a78d51d
3 changes: 1 addition & 2 deletions projects/app-lob/src/app/home/home.component.ts
Original file line number Diff line number Diff line change
@@ -3,8 +3,7 @@ import { Component } from '@angular/core';
@Component({
selector: 'app-home',
styleUrls: ['./home.component.scss'],
templateUrl: './home.component.html',
standalone: false
templateUrl: './home.component.html'
})
export class HomeComponent {
constructor() { }
3 changes: 1 addition & 2 deletions src/app/data-entries/autocomplete/movie/movie.component.ts
Original file line number Diff line number Diff line change
@@ -50,8 +50,7 @@ export class MovieComponent {
}

@Pipe({
name: 'startsWith',
standalone: false
name: 'startsWith'
})
export class AutocompletePipeStartsWith2 implements PipeTransform {
public transform(collection: any[], term = '') {
5 changes: 2 additions & 3 deletions src/app/data-entries/input-group/base-input.component.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import { AfterViewInit, Directive, HostListener, QueryList, ViewChildren } from '@angular/core';
import { Directive, HostListener, QueryList, ViewChildren } from '@angular/core';
import { IgxInputGroupComponent } from 'igniteui-angular';

@Directive({
// eslint-disable-next-line @angular-eslint/directive-selector
selector: 'input-group-sample-base',
standalone: false
selector: 'input-group-sample-base'
})
// eslint-disable-next-line @angular-eslint/directive-class-suffix
export class BaseInputGroupSampleComponent {
3 changes: 1 addition & 2 deletions src/app/home/home.component.ts
Original file line number Diff line number Diff line change
@@ -3,8 +3,7 @@ import { Component } from '@angular/core';
@Component({
selector: 'app-home',
styleUrls: ['./home.component.scss'],
templateUrl: './home.component.html',
standalone: false
templateUrl: './home.component.html'
})
export class HomeComponent {

Original file line number Diff line number Diff line change
@@ -47,8 +47,7 @@ export class FlightBookingComponent {
}

@Pipe({
name: 'withoutTownFrom',
standalone: false
name: 'withoutTownFrom'
})
export class PipeWithoutTownFrom implements PipeTransform {
public transform(collection: any[], townFrom: string) {