Skip to content

Commit d49391b

Browse files
docs(v6): run linter
1 parent 50c1e6f commit d49391b

File tree

117 files changed

+168
-172
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

117 files changed

+168
-172
lines changed

static/usage/v6/accordion/customization/advanced-expansion-styles/angular/example_component_ts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { IonicModule } from '@ionic/angular';
77
templateUrl: 'example.component.html',
88
styleUrls: ['example.component.css'],
99
imports: [IonicModule],
10-
standalone: true
10+
standalone: true,
1111
})
1212
export class ExampleComponent {}
1313
```

static/usage/v6/accordion/customization/icons/angular/example_component_ts.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ import { addIcons } from 'ionicons';
55
import { caretDownCircle } from 'ionicons/icons';
66

77
@Component({
8-
selector: 'app-example',
9-
templateUrl: 'example.component.html',
10-
imports: [IonicModule],
11-
standalone: true
8+
selector: 'app-example',
9+
templateUrl: 'example.component.html',
10+
imports: [IonicModule],
11+
standalone: true,
1212
})
1313
export class ExampleComponent {
1414
constructor() {
@@ -20,4 +20,4 @@ export class ExampleComponent {
2020
addIcons({ caretDownCircle });
2121
}
2222
}
23-
```
23+
```

static/usage/v6/accordion/listen-changes/angular/example_component_ts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { IonicModule } from '@ionic/angular';
66
selector: 'app-example',
77
templateUrl: 'example.component.html',
88
imports: [IonicModule],
9-
standalone: true
9+
standalone: true,
1010
})
1111
export class ExampleComponent {
1212
@ViewChild('listenerOut', { static: true }) listenerOut: ElementRef;

static/usage/v6/accordion/toggle/angular/example_component_ts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { IonicModule, IonAccordionGroup } from '@ionic/angular';
66
selector: 'app-example',
77
templateUrl: 'example.component.html',
88
imports: [IonicModule],
9-
standalone: true
9+
standalone: true,
1010
})
1111
export class ExampleComponent {
1212
@ViewChild('accordionGroup', { static: true }) accordionGroup: IonAccordionGroup;

static/usage/v6/action-sheet/basic/angular/example_component_ts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { IonicModule, ActionSheetController } from '@ionic/angular';
88
templateUrl: 'example.component.html',
99
styleUrls: ['./example.component.css'],
1010
imports: [IonicModule],
11-
standalone: true
11+
standalone: true,
1212
})
1313
export class ExampleComponent {
1414
result: string;

static/usage/v6/action-sheet/theming/css-properties/angular/example_component_ts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { IonicModule, ActionSheetController } from '@ionic/angular';
88
templateUrl: 'example.component.html',
99
styleUrls: ['./example.component.css'],
1010
imports: [IonicModule],
11-
standalone: true
11+
standalone: true,
1212
})
1313
export class ExampleComponent {
1414
constructor(private actionSheetCtrl: ActionSheetController) {}

static/usage/v6/action-sheet/theming/styling/angular/example_component_ts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { IonicModule, ActionSheetController } from '@ionic/angular';
88
templateUrl: 'example.component.html',
99
styleUrls: ['./example.component.css'],
1010
imports: [IonicModule],
11-
standalone: true
11+
standalone: true,
1212
})
1313
export class ExampleComponent {
1414
constructor(private actionSheetCtrl: ActionSheetController) {}

static/usage/v6/alert/buttons/angular/example_component_ts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { IonicModule, AlertController } from '@ionic/angular';
66
selector: 'app-example',
77
templateUrl: 'example.component.html',
88
imports: [IonicModule],
9-
standalone: true
9+
standalone: true,
1010
})
1111
export class ExampleComponent {
1212
handlerMessage = '';

static/usage/v6/alert/customization/angular/example_component_ts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { IonicModule, AlertController } from '@ionic/angular';
66
selector: 'app-example',
77
templateUrl: 'example.component.html',
88
imports: [IonicModule],
9-
standalone: true
9+
standalone: true,
1010
})
1111
export class ExampleComponent {
1212
constructor(private alertController: AlertController) {}

static/usage/v6/alert/inputs/radios/angular/example_component_ts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { IonicModule, AlertController } from '@ionic/angular';
66
selector: 'app-example',
77
templateUrl: 'example.component.html',
88
imports: [IonicModule],
9-
standalone: true
9+
standalone: true,
1010
})
1111
export class ExampleComponent {
1212
constructor(private alertController: AlertController) {}

0 commit comments

Comments
 (0)