Skip to content

Commit

Permalink
Merge branch 'ROU-11416' into ROU-11416-checkbox
Browse files Browse the repository at this point in the history
  • Loading branch information
brandyscarney committed Dec 20, 2024
2 parents 68fc138 + 8557af0 commit 1228822
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/components/global/Playground/stackblitz.utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ const openAngularEditor = async (code: string, options?: EditorOptions) => {
'angular/main.ts',
'angular/index.html',
'angular/app.routes.ts',
'angular/app.component.ts',
options?.includeIonContent ? 'angular/app.component.withContent.ts' : 'angular/app.component.ts',
'angular/app.component.css',
options?.includeIonContent ? 'angular/app.component.withContent.html' : 'angular/app.component.html',
'angular/example.component.ts',
Expand Down
4 changes: 2 additions & 2 deletions static/code/stackblitz/v7/angular/app.component.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { Component } from '@angular/core';
import { IonApp, IonContent } from '@ionic/angular/standalone';
import { IonApp } from '@ionic/angular/standalone';
import { ExampleComponent } from './example.component';

@Component({
selector: 'app-root',
templateUrl: 'app.component.html',
styleUrls: ['app.component.css'],
imports: [ExampleComponent, IonApp, IonContent],
imports: [ExampleComponent, IonApp],
})
export class AppComponent {
constructor() {}
Expand Down
13 changes: 13 additions & 0 deletions static/code/stackblitz/v7/angular/app.component.withContent.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { Component } from '@angular/core';
import { IonApp, IonContent } from '@ionic/angular/standalone';
import { ExampleComponent } from './example.component';

@Component({
selector: 'app-root',
templateUrl: 'app.component.html',
styleUrls: ['app.component.css'],
imports: [ExampleComponent, IonApp, IonContent],
})
export class AppComponent {
constructor() {}
}
4 changes: 2 additions & 2 deletions static/code/stackblitz/v8/angular/app.component.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { Component } from '@angular/core';
import { IonApp, IonContent } from '@ionic/angular/standalone';
import { IonApp } from '@ionic/angular/standalone';
import { ExampleComponent } from './example.component';

@Component({
selector: 'app-root',
templateUrl: 'app.component.html',
styleUrls: ['app.component.css'],
imports: [ExampleComponent, IonApp, IonContent],
imports: [ExampleComponent, IonApp],
})
export class AppComponent {
constructor() {}
Expand Down
13 changes: 13 additions & 0 deletions static/code/stackblitz/v8/angular/app.component.withContent.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { Component } from '@angular/core';
import { IonApp, IonContent } from '@ionic/angular/standalone';
import { ExampleComponent } from './example.component';

@Component({
selector: 'app-root',
templateUrl: 'app.component.html',
styleUrls: ['app.component.css'],
imports: [ExampleComponent, IonApp, IonContent],
})
export class AppComponent {
constructor() {}
}

0 comments on commit 1228822

Please sign in to comment.