Skip to content

Commit d663d73

Browse files
committed
Merge branch 'main' of github.com:ionic-team/ionic-docs
# Conflicts: # docs/api/input.md # docs/api/select.md # docs/api/textarea.md # docs/api/toast.md # docs/react.md # docs/react/quickstart.md # docs/theming/basics.md # docs/vue/testing.md # scripts/cli.mjs
2 parents 177ef42 + 04ca35d commit d663d73

File tree

814 files changed

+9752
-3591
lines changed

Some content is hidden

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

814 files changed

+9752
-3591
lines changed

docs/angular/navigation.md

Lines changed: 4 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -175,34 +175,8 @@ import { LoginComponent } from './login.component';
175175

176176
## Standalone Components
177177

178-
:::warning Experimental API
179-
180-
Standalone components is an experimental API introduced in Angular 14.x and available in Ionic 6.3 and later. This feature may change before it is stable.
181-
182-
:::
183-
184178
Standalone components allow developers to lazy load a component on a route without having to declare the component to an Angular module.
185179

186-
To use standalone components with routing and Ionic Framework, you must first be on Ionic ^6.3.0. The experimental API requires developers to assign the `EnvironmentInjector` instance for each router outlet (`ion-router-outlet` and `ion-tabs`) that uses standalone component routing.
187-
188-
```ts title="app.component.ts"
189-
import { Component, EnvironmentInjector } from '@angular/core';
190-
191-
@Component({
192-
selector: 'app-root',
193-
template: 'app.component.html',
194-
})
195-
export class AppComponent {
196-
constructor(public environmentInjector: EnvironmentInjector) {}
197-
}
198-
```
199-
200-
```html title="app.component.html"
201-
<ion-router-outlet [environmentInjector]="environmentInjector"></ion-router-outlet>
202-
<!-- or if you are using ion-tabs -->
203-
<ion-tabs [environmentInjector]="environmentInjector"> ... </ion-tabs>
204-
```
205-
206180
Developers can use the existing syntax for standalone component routing from Angular:
207181

208182
```ts
@@ -219,6 +193,10 @@ Developers can use the existing syntax for standalone component routing from Ang
219193
export class AppRoutingModule {}
220194
```
221195

196+
:::tip
197+
If you are using `routerLink`, `routerDirection`, or `routerAction` be sure to also import the `IonRouterLink` directive for Ionic components or the `IonRouterLinkWithHref` directive for `<a>` elements. An example of this is available in the [Ionic Angular Build Options docs](./build-options.md#migrating-from-modules-to-standalone).
198+
:::
199+
222200
To get started with standalone components [visit Angular's official docs](https://angular.io/guide/standalone-components).
223201

224202
## Live Example

docs/angular/slides.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ The `ion-slides` component had additional styling that helped create a native lo
101101

102102
```css
103103
swiper-container {
104-
--swiper-pagination-bullet-inactive-color: var(--ion-color-step-200, #cccccc);
104+
--swiper-pagination-bullet-inactive-color: var(--ion-text-color-step-800, #cccccc);
105105
--swiper-pagination-color: var(--ion-color-primary, #0054e9);
106106
--swiper-pagination-progressbar-bg-color: rgba(var(--ion-text-color-rgb, 0, 0, 0), 0.25);
107107
--swiper-scrollbar-bg-color: rgba(var(--ion-text-color-rgb, 0, 0, 0), 0.1);

docs/api/accordion-group.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Props from '@ionic-internal/component-api/v8/accordion-group/props.md';
55
import Events from '@ionic-internal/component-api/v8/accordion-group/events.md';
66
import Methods from '@ionic-internal/component-api/v8/accordion-group/methods.md';
77
import Parts from '@ionic-internal/component-api/v8/accordion-group/parts.md';
8-
import CustomProps from '@ionic-internal/component-api/v8/accordion-group/custom-props.md';
8+
import CustomProps from '@ionic-internal/component-api/v8/accordion-group/custom-props.mdx';
99
import Slots from '@ionic-internal/component-api/v8/accordion-group/slots.md';
1010

1111
import EncapsulationPill from '@components/page/api/EncapsulationPill';

docs/api/accordion.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Props from '@ionic-internal/component-api/v8/accordion/props.md';
55
import Events from '@ionic-internal/component-api/v8/accordion/events.md';
66
import Methods from '@ionic-internal/component-api/v8/accordion/methods.md';
77
import Parts from '@ionic-internal/component-api/v8/accordion/parts.md';
8-
import CustomProps from '@ionic-internal/component-api/v8/accordion/custom-props.md';
8+
import CustomProps from '@ionic-internal/component-api/v8/accordion/custom-props.mdx';
99
import Slots from '@ionic-internal/component-api/v8/accordion/slots.md';
1010

1111
<head>

docs/api/action-sheet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import Props from '@ionic-internal/component-api/v8/action-sheet/props.md';
88
import Events from '@ionic-internal/component-api/v8/action-sheet/events.md';
99
import Methods from '@ionic-internal/component-api/v8/action-sheet/methods.md';
1010
import Parts from '@ionic-internal/component-api/v8/action-sheet/parts.md';
11-
import CustomProps from '@ionic-internal/component-api/v8/action-sheet/custom-props.md';
11+
import CustomProps from '@ionic-internal/component-api/v8/action-sheet/custom-props.mdx';
1212
import Slots from '@ionic-internal/component-api/v8/action-sheet/slots.md';
1313

1414
<head>

docs/api/alert.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import Props from '@ionic-internal/component-api/v8/alert/props.md';
88
import Events from '@ionic-internal/component-api/v8/alert/events.md';
99
import Methods from '@ionic-internal/component-api/v8/alert/methods.md';
1010
import Parts from '@ionic-internal/component-api/v8/alert/parts.md';
11-
import CustomProps from '@ionic-internal/component-api/v8/alert/custom-props.md';
11+
import CustomProps from '@ionic-internal/component-api/v8/alert/custom-props.mdx';
1212
import Slots from '@ionic-internal/component-api/v8/alert/slots.md';
1313

1414
<head>

docs/api/app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Props from '@ionic-internal/component-api/v8/app/props.md';
55
import Events from '@ionic-internal/component-api/v8/app/events.md';
66
import Methods from '@ionic-internal/component-api/v8/app/methods.md';
77
import Parts from '@ionic-internal/component-api/v8/app/parts.md';
8-
import CustomProps from '@ionic-internal/component-api/v8/app/custom-props.md';
8+
import CustomProps from '@ionic-internal/component-api/v8/app/custom-props.mdx';
99
import Slots from '@ionic-internal/component-api/v8/app/slots.md';
1010

1111
<head>

docs/api/avatar.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import Props from '@ionic-internal/component-api/v8/avatar/props.md';
66
import Events from '@ionic-internal/component-api/v8/avatar/events.md';
77
import Methods from '@ionic-internal/component-api/v8/avatar/methods.md';
88
import Parts from '@ionic-internal/component-api/v8/avatar/parts.md';
9-
import CustomProps from '@ionic-internal/component-api/v8/avatar/custom-props.md';
9+
import CustomProps from '@ionic-internal/component-api/v8/avatar/custom-props.mdx';
1010
import Slots from '@ionic-internal/component-api/v8/avatar/slots.md';
1111

1212
<head>

docs/api/back-button.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Props from '@ionic-internal/component-api/v8/back-button/props.md';
55
import Events from '@ionic-internal/component-api/v8/back-button/events.md';
66
import Methods from '@ionic-internal/component-api/v8/back-button/methods.md';
77
import Parts from '@ionic-internal/component-api/v8/back-button/parts.md';
8-
import CustomProps from '@ionic-internal/component-api/v8/back-button/custom-props.md';
8+
import CustomProps from '@ionic-internal/component-api/v8/back-button/custom-props.mdx';
99
import Slots from '@ionic-internal/component-api/v8/back-button/slots.md';
1010

1111
<head>

docs/api/backdrop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Props from '@ionic-internal/component-api/v8/backdrop/props.md';
55
import Events from '@ionic-internal/component-api/v8/backdrop/events.md';
66
import Methods from '@ionic-internal/component-api/v8/backdrop/methods.md';
77
import Parts from '@ionic-internal/component-api/v8/backdrop/parts.md';
8-
import CustomProps from '@ionic-internal/component-api/v8/backdrop/custom-props.md';
8+
import CustomProps from '@ionic-internal/component-api/v8/backdrop/custom-props.mdx';
99
import Slots from '@ionic-internal/component-api/v8/backdrop/slots.md';
1010

1111
import EncapsulationPill from '@components/page/api/EncapsulationPill';

docs/api/badge.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Props from '@ionic-internal/component-api/v8/badge/props.md';
55
import Events from '@ionic-internal/component-api/v8/badge/events.md';
66
import Methods from '@ionic-internal/component-api/v8/badge/methods.md';
77
import Parts from '@ionic-internal/component-api/v8/badge/parts.md';
8-
import CustomProps from '@ionic-internal/component-api/v8/badge/custom-props.md';
8+
import CustomProps from '@ionic-internal/component-api/v8/badge/custom-props.mdx';
99
import Slots from '@ionic-internal/component-api/v8/badge/slots.md';
1010

1111
<head>

docs/api/breadcrumb.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Props from '@ionic-internal/component-api/v8/breadcrumb/props.md';
55
import Events from '@ionic-internal/component-api/v8/breadcrumb/events.md';
66
import Methods from '@ionic-internal/component-api/v8/breadcrumb/methods.md';
77
import Parts from '@ionic-internal/component-api/v8/breadcrumb/parts.md';
8-
import CustomProps from '@ionic-internal/component-api/v8/breadcrumb/custom-props.md';
8+
import CustomProps from '@ionic-internal/component-api/v8/breadcrumb/custom-props.mdx';
99
import Slots from '@ionic-internal/component-api/v8/breadcrumb/slots.md';
1010

1111
import EncapsulationPill from '@components/page/api/EncapsulationPill';

docs/api/breadcrumbs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Props from '@ionic-internal/component-api/v8/breadcrumbs/props.md';
55
import Events from '@ionic-internal/component-api/v8/breadcrumbs/events.md';
66
import Methods from '@ionic-internal/component-api/v8/breadcrumbs/methods.md';
77
import Parts from '@ionic-internal/component-api/v8/breadcrumbs/parts.md';
8-
import CustomProps from '@ionic-internal/component-api/v8/breadcrumbs/custom-props.md';
8+
import CustomProps from '@ionic-internal/component-api/v8/breadcrumbs/custom-props.mdx';
99
import Slots from '@ionic-internal/component-api/v8/breadcrumbs/slots.md';
1010

1111

docs/api/button.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Props from '@ionic-internal/component-api/v8/button/props.md';
55
import Events from '@ionic-internal/component-api/v8/button/events.md';
66
import Methods from '@ionic-internal/component-api/v8/button/methods.md';
77
import Parts from '@ionic-internal/component-api/v8/button/parts.md';
8-
import CustomProps from '@ionic-internal/component-api/v8/button/custom-props.md';
8+
import CustomProps from '@ionic-internal/component-api/v8/button/custom-props.mdx';
99
import Slots from '@ionic-internal/component-api/v8/button/slots.md';
1010

1111
<head>

docs/api/buttons.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Props from '@ionic-internal/component-api/v8/buttons/props.md';
55
import Events from '@ionic-internal/component-api/v8/buttons/events.md';
66
import Methods from '@ionic-internal/component-api/v8/buttons/methods.md';
77
import Parts from '@ionic-internal/component-api/v8/buttons/parts.md';
8-
import CustomProps from '@ionic-internal/component-api/v8/buttons/custom-props.md';
8+
import CustomProps from '@ionic-internal/component-api/v8/buttons/custom-props.mdx';
99
import Slots from '@ionic-internal/component-api/v8/buttons/slots.md';
1010

1111
<head>

docs/api/card-content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Props from '@ionic-internal/component-api/v8/card-content/props.md';
55
import Events from '@ionic-internal/component-api/v8/card-content/events.md';
66
import Methods from '@ionic-internal/component-api/v8/card-content/methods.md';
77
import Parts from '@ionic-internal/component-api/v8/card-content/parts.md';
8-
import CustomProps from '@ionic-internal/component-api/v8/card-content/custom-props.md';
8+
import CustomProps from '@ionic-internal/component-api/v8/card-content/custom-props.mdx';
99
import Slots from '@ionic-internal/component-api/v8/card-content/slots.md';
1010

1111
import EncapsulationPill from '@components/page/api/EncapsulationPill';

docs/api/card-header.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Props from '@ionic-internal/component-api/v8/card-header/props.md';
55
import Events from '@ionic-internal/component-api/v8/card-header/events.md';
66
import Methods from '@ionic-internal/component-api/v8/card-header/methods.md';
77
import Parts from '@ionic-internal/component-api/v8/card-header/parts.md';
8-
import CustomProps from '@ionic-internal/component-api/v8/card-header/custom-props.md';
8+
import CustomProps from '@ionic-internal/component-api/v8/card-header/custom-props.mdx';
99
import Slots from '@ionic-internal/component-api/v8/card-header/slots.md';
1010

1111
import EncapsulationPill from '@components/page/api/EncapsulationPill';

docs/api/card-subtitle.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Props from '@ionic-internal/component-api/v8/card-subtitle/props.md';
55
import Events from '@ionic-internal/component-api/v8/card-subtitle/events.md';
66
import Methods from '@ionic-internal/component-api/v8/card-subtitle/methods.md';
77
import Parts from '@ionic-internal/component-api/v8/card-subtitle/parts.md';
8-
import CustomProps from '@ionic-internal/component-api/v8/card-subtitle/custom-props.md';
8+
import CustomProps from '@ionic-internal/component-api/v8/card-subtitle/custom-props.mdx';
99
import Slots from '@ionic-internal/component-api/v8/card-subtitle/slots.md';
1010

1111
import EncapsulationPill from '@components/page/api/EncapsulationPill';

docs/api/card-title.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Props from '@ionic-internal/component-api/v8/card-title/props.md';
55
import Events from '@ionic-internal/component-api/v8/card-title/events.md';
66
import Methods from '@ionic-internal/component-api/v8/card-title/methods.md';
77
import Parts from '@ionic-internal/component-api/v8/card-title/parts.md';
8-
import CustomProps from '@ionic-internal/component-api/v8/card-title/custom-props.md';
8+
import CustomProps from '@ionic-internal/component-api/v8/card-title/custom-props.mdx';
99
import Slots from '@ionic-internal/component-api/v8/card-title/slots.md';
1010

1111
import EncapsulationPill from '@components/page/api/EncapsulationPill';

docs/api/card.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Props from '@ionic-internal/component-api/v8/card/props.md';
55
import Events from '@ionic-internal/component-api/v8/card/events.md';
66
import Methods from '@ionic-internal/component-api/v8/card/methods.md';
77
import Parts from '@ionic-internal/component-api/v8/card/parts.md';
8-
import CustomProps from '@ionic-internal/component-api/v8/card/custom-props.md';
8+
import CustomProps from '@ionic-internal/component-api/v8/card/custom-props.mdx';
99
import Slots from '@ionic-internal/component-api/v8/card/slots.md';
1010

1111
import EncapsulationPill from '@components/page/api/EncapsulationPill';

docs/api/checkbox.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import Props from '@ionic-internal/component-api/v8/checkbox/props.md';
66
import Events from '@ionic-internal/component-api/v8/checkbox/events.md';
77
import Methods from '@ionic-internal/component-api/v8/checkbox/methods.md';
88
import Parts from '@ionic-internal/component-api/v8/checkbox/parts.md';
9-
import CustomProps from '@ionic-internal/component-api/v8/checkbox/custom-props.md';
9+
import CustomProps from '@ionic-internal/component-api/v8/checkbox/custom-props.mdx';
1010
import Slots from '@ionic-internal/component-api/v8/checkbox/slots.md';
1111

1212
<head>

docs/api/chip.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Props from '@ionic-internal/component-api/v8/chip/props.md';
55
import Events from '@ionic-internal/component-api/v8/chip/events.md';
66
import Methods from '@ionic-internal/component-api/v8/chip/methods.md';
77
import Parts from '@ionic-internal/component-api/v8/chip/parts.md';
8-
import CustomProps from '@ionic-internal/component-api/v8/chip/custom-props.md';
8+
import CustomProps from '@ionic-internal/component-api/v8/chip/custom-props.mdx';
99
import Slots from '@ionic-internal/component-api/v8/chip/slots.md';
1010

1111
<head>

docs/api/col.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Props from '@ionic-internal/component-api/v8/col/props.md';
55
import Events from '@ionic-internal/component-api/v8/col/events.md';
66
import Methods from '@ionic-internal/component-api/v8/col/methods.md';
77
import Parts from '@ionic-internal/component-api/v8/col/parts.md';
8-
import CustomProps from '@ionic-internal/component-api/v8/col/custom-props.md';
8+
import CustomProps from '@ionic-internal/component-api/v8/col/custom-props.mdx';
99
import Slots from '@ionic-internal/component-api/v8/col/slots.md';
1010

1111
<head>

docs/api/content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Props from '@ionic-internal/component-api/v8/content/props.md';
55
import Events from '@ionic-internal/component-api/v8/content/events.md';
66
import Methods from '@ionic-internal/component-api/v8/content/methods.md';
77
import Parts from '@ionic-internal/component-api/v8/content/parts.md';
8-
import CustomProps from '@ionic-internal/component-api/v8/content/custom-props.md';
8+
import CustomProps from '@ionic-internal/component-api/v8/content/custom-props.mdx';
99
import Slots from '@ionic-internal/component-api/v8/content/slots.md';
1010

1111
<head>

docs/api/datetime-button.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Props from '@ionic-internal/component-api/v8/datetime-button/props.md';
55
import Events from '@ionic-internal/component-api/v8/datetime-button/events.md';
66
import Methods from '@ionic-internal/component-api/v8/datetime-button/methods.md';
77
import Parts from '@ionic-internal/component-api/v8/datetime-button/parts.md';
8-
import CustomProps from '@ionic-internal/component-api/v8/datetime-button/custom-props.md';
8+
import CustomProps from '@ionic-internal/component-api/v8/datetime-button/custom-props.mdx';
99
import Slots from '@ionic-internal/component-api/v8/datetime-button/slots.md';
1010

1111
<head>

docs/api/datetime.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Props from '@ionic-internal/component-api/v8/datetime/props.md';
55
import Events from '@ionic-internal/component-api/v8/datetime/events.md';
66
import Methods from '@ionic-internal/component-api/v8/datetime/methods.md';
77
import Parts from '@ionic-internal/component-api/v8/datetime/parts.md';
8-
import CustomProps from '@ionic-internal/component-api/v8/datetime/custom-props.md';
8+
import CustomProps from '@ionic-internal/component-api/v8/datetime/custom-props.mdx';
99
import Slots from '@ionic-internal/component-api/v8/datetime/slots.md';
1010

1111
import Basic from '@site/static/usage/v8/datetime/basic/index.md';

docs/api/fab-button.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Props from '@ionic-internal/component-api/v8/fab-button/props.md';
55
import Events from '@ionic-internal/component-api/v8/fab-button/events.md';
66
import Methods from '@ionic-internal/component-api/v8/fab-button/methods.md';
77
import Parts from '@ionic-internal/component-api/v8/fab-button/parts.md';
8-
import CustomProps from '@ionic-internal/component-api/v8/fab-button/custom-props.md';
8+
import CustomProps from '@ionic-internal/component-api/v8/fab-button/custom-props.mdx';
99
import Slots from '@ionic-internal/component-api/v8/fab-button/slots.md';
1010

1111
<head>

docs/api/fab-list.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Props from '@ionic-internal/component-api/v8/fab-list/props.md';
55
import Events from '@ionic-internal/component-api/v8/fab-list/events.md';
66
import Methods from '@ionic-internal/component-api/v8/fab-list/methods.md';
77
import Parts from '@ionic-internal/component-api/v8/fab-list/parts.md';
8-
import CustomProps from '@ionic-internal/component-api/v8/fab-list/custom-props.md';
8+
import CustomProps from '@ionic-internal/component-api/v8/fab-list/custom-props.mdx';
99
import Slots from '@ionic-internal/component-api/v8/fab-list/slots.md';
1010

1111
import EncapsulationPill from '@components/page/api/EncapsulationPill';

docs/api/fab.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Props from '@ionic-internal/component-api/v8/fab/props.md';
55
import Events from '@ionic-internal/component-api/v8/fab/events.md';
66
import Methods from '@ionic-internal/component-api/v8/fab/methods.md';
77
import Parts from '@ionic-internal/component-api/v8/fab/parts.md';
8-
import CustomProps from '@ionic-internal/component-api/v8/fab/custom-props.md';
8+
import CustomProps from '@ionic-internal/component-api/v8/fab/custom-props.mdx';
99
import Slots from '@ionic-internal/component-api/v8/fab/slots.md';
1010

1111
<head>

docs/api/footer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Props from '@ionic-internal/component-api/v8/footer/props.md';
55
import Events from '@ionic-internal/component-api/v8/footer/events.md';
66
import Methods from '@ionic-internal/component-api/v8/footer/methods.md';
77
import Parts from '@ionic-internal/component-api/v8/footer/parts.md';
8-
import CustomProps from '@ionic-internal/component-api/v8/footer/custom-props.md';
8+
import CustomProps from '@ionic-internal/component-api/v8/footer/custom-props.mdx';
99
import Slots from '@ionic-internal/component-api/v8/footer/slots.md';
1010

1111
<head>

docs/api/grid.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Props from '@ionic-internal/component-api/v8/grid/props.md';
55
import Events from '@ionic-internal/component-api/v8/grid/events.md';
66
import Methods from '@ionic-internal/component-api/v8/grid/methods.md';
77
import Parts from '@ionic-internal/component-api/v8/grid/parts.md';
8-
import CustomProps from '@ionic-internal/component-api/v8/grid/custom-props.md';
8+
import CustomProps from '@ionic-internal/component-api/v8/grid/custom-props.mdx';
99
import Slots from '@ionic-internal/component-api/v8/grid/slots.md';
1010

1111
<head>

docs/api/header.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Props from '@ionic-internal/component-api/v8/header/props.md';
55
import Events from '@ionic-internal/component-api/v8/header/events.md';
66
import Methods from '@ionic-internal/component-api/v8/header/methods.md';
77
import Parts from '@ionic-internal/component-api/v8/header/parts.md';
8-
import CustomProps from '@ionic-internal/component-api/v8/header/custom-props.md';
8+
import CustomProps from '@ionic-internal/component-api/v8/header/custom-props.mdx';
99
import Slots from '@ionic-internal/component-api/v8/header/slots.md';
1010

1111
<head>

0 commit comments

Comments
 (0)