From 70eb5baaf54045d5d981a712b1e41ec5a7163904 Mon Sep 17 00:00:00 2001 From: rdlabo Date: Sat, 22 Aug 2026 14:29:32 +0900 Subject: [PATCH] docs: distinguish Ionic Angular import paths --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 331af05..0d5d3b3 100644 --- a/README.md +++ b/README.md @@ -71,7 +71,7 @@ The example uses Ionic's class-based dark mode. Your global stylesheet must also Configure both transition implementations when both themes are installed: ```ts -import { isPlatform } from '@ionic/core'; // or @ionic/angular/standalone, @ionic/react, @ionic/vue +import { isPlatform } from '@ionic/core'; // or @ionic/angular (Ionic 9), @ionic/angular/standalone (Ionic 8), @ionic/react, @ionic/vue import { iosTransitionAnimation, popoverEnterAnimation, popoverLeaveAnimation } from '@rdlabo/ionic-theme-ios26'; import { mdTransitionAnimation } from '@rdlabo/ionic-theme-md3'; @@ -104,7 +104,7 @@ createApp(App) If you installed only the MD3 theme, configure its animation as follows. ```ts -import { isPlatform } from '@ionic/core'; // or @ionic/angular/standalone, @ionic/react, @ionic/vue +import { isPlatform } from '@ionic/core'; // or @ionic/angular (Ionic 9), @ionic/angular/standalone (Ionic 8), @ionic/react, @ionic/vue import { mdTransitionAnimation } from '@rdlabo/ionic-theme-md3'; // Angular