Skip to content

Commit a335ea3

Browse files
committed
chore(modal-options): updating interfaces to follow consistent naming patterns
1 parent 3af024f commit a335ea3

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

docs/angular/overlays.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Overlay Components
3-
sidebar_label: Overlay Components
3+
sidebar_label: Overlays
44
---
55

66
<head>
@@ -187,15 +187,15 @@ export class FeatureComponent {
187187
}
188188
```
189189

190-
## Angular Options Interfaces
190+
## Angular Options Types
191191

192-
Ionic provides Angular-specific option interfaces that extend the core options with Angular-specific properties:
192+
Ionic Angular exports its own `ModalOptions` and `PopoverOptions` types that extend the core options with Angular-specific properties like `injector`:
193193

194-
- `AngularModalOptions` - Extends `ModalOptions` with the `injector` property
195-
- `AngularPopoverOptions` - Extends `PopoverOptions` with the `injector` property
194+
- `ModalOptions` - Extends core `ModalOptions` with the `injector` property
195+
- `PopoverOptions` - Extends core `PopoverOptions` with the `injector` property
196196

197197
These types are exported from `@ionic/angular` and `@ionic/angular/standalone`:
198198

199199
```typescript
200-
import type { AngularModalOptions, AngularPopoverOptions } from '@ionic/angular/standalone';
200+
import type { ModalOptions, PopoverOptions } from '@ionic/angular/standalone';
201201
```

0 commit comments

Comments
 (0)