Skip to content

Commit 1b07a0f

Browse files
authored
chore(docusaurus): upgrade to v3 - JP (#3363)
1 parent 6251d97 commit 1b07a0f

File tree

262 files changed

+7198
-9447
lines changed

Some content is hidden

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

262 files changed

+7198
-9447
lines changed

.prettierignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
src/theme/DocItem
2-
src/theme/DocPage
2+
src/theme/DocRoot
33
legacy-stencil-components
44
scripts/bak
55

66
docs/api
77
docs/native
8+
versioned_docs/version-v*/native
89
docs/cli/commands
910

1011
static/code/stackblitz

docs/angular/build-options.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ See the [Standalone Migration Guide](#migrating-from-modules-to-standalone) for
2828

2929
### Usage with Standalone-based Applications
3030

31-
:::caution
31+
:::warning
3232
All Ionic imports should be imported from the `@ionic/angular/standalone` submodule. This includes imports such as components, directives, providers, and types. Importing from `@ionic/angular` may pull in lazy loaded Ionic code which can interfere with treeshaking.
3333
:::
3434

@@ -177,7 +177,7 @@ export class HomePage {}
177177

178178
### Usage with NgModule-based Applications
179179

180-
:::caution
180+
:::warning
181181
All Ionic imports should be imported from the `@ionic/angular/standalone` submodule. This includes imports such as components, directives, providers, and types. Importing from `@ionic/angular` may pull in lazy loaded Ionic code which can interfere with treeshaking.
182182
:::
183183

docs/angular/navigation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ import { LoginComponent } from './login.component';
175175

176176
## Standalone Components
177177

178-
:::caution Experimental API
178+
:::warning Experimental API
179179

180180
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.
181181

docs/angular/slides.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import TabItem from '@theme/TabItem';
1313
/>
1414
</head>
1515

16-
:::caution Looking for `ion-slides`?
16+
:::warning Looking for `ion-slides`?
1717
`ion-slides` was deprecated in v6.0.0 and removed in v7.0.0. We recommend using the Swiper.js library directly. The migration process is detailed below.
1818
:::
1919

docs/angular/virtual-scroll.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# 仮想スクロール
22

3-
:::caution Looking for `ion-virtual-scroll`?
3+
:::warning Looking for `ion-virtual-scroll`?
44

55
`ion-virtual-scroll` was deprecated in v6.0.0 and removed in v7.0.0. We recommend using the `@angular/cdk` package detailed below.
66

docs/angular/your-first-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Here’s the finished app running on all 3 platforms:
1919
width="560"
2020
height="315"
2121
src="https://www.youtube.com/embed/0ASQ13Y1Rk4"
22-
frameborder="0"
22+
frameBorder="0"
2323
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
2424
allowfullscreen
2525
></iframe>

docs/core-concepts/fundamentals.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,8 @@ Web テクノロジで構築されたアプリ(Ionic アプリなど)の素
4040

4141
Ionic の最も一般的な使用例の 1 つは、 <a href="https://www.apple.com/ios/app-store/" target="_blank">App Store</a> と <a href="https://play.google.com/" target="_blank">Play Store</a> の両方からダウンロードできるアプリを作成することです。iOS と Android の両方のソフトウェア開発キット(SDK)は、完全なネイティブ SDK アクセスを可能にしながら、あらゆる Ionic アプリをレンダリングする [Web Views](webview.md) を提供します。
4242

43-
<a href="https://capacitorjs.com/" target="_blank">
44-
Capacitor
45-
</a> や <a href="https://cordova.apache.org/" target="_blank">
46-
Cordova
47-
</a> などのプロジェクトは、IonicアプリにネイティブSDKへのアクセスを与えるためによく使われています。つまり、開発者は一般的なWeb開発ツールを使ってアプリを素早く構築することができ、かつデバイスの加速度センサー、カメラ、GPSなどのネイティブ機能にアクセスすることができるのです。
43+
<!-- prettier-ignore -->
44+
<a href="https://capacitorjs.com/" target="_blank">Capacitor</a> や <a href="https://cordova.apache.org/" target="_blank">Cordova</a> などのプロジェクトは、IonicアプリにネイティブSDKへのアクセスを与えるためによく使われています。つまり、開発者は一般的なWeb開発ツールを使ってアプリを素早く構築することができ、かつデバイスの加速度センサー、カメラ、GPSなどのネイティブ機能にアクセスすることができるのです。
4845

4946
## テーマ
5047

docs/deployment/play-store.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ $ keytool -genkey -v -keystore my-release-key.keystore -alias alias_name -keyalg
3333

3434
このコマンドを実行し、プロンプトに答えると、カレントディレクトリに `my-release-key.keystore` という名前のファイルが作成されます。
3535

36-
:::caution
36+
:::warning
3737
このファイルを保存し、安全な場所に保管してください。このファイルを紛失すると、Google Play ストアはこのアプリのアップデートを受け付けません!
3838
:::
3939

docs/deployment/play-store.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ keytool -genkey -v -keystore my-release-key.keystore -alias alias_name -keyalg R
105105

106106
Once that command has been ran and its prompts have been answered a file called `my-release-key.keystore` will be created in the current directory.
107107

108-
:::caution
108+
:::warning
109109
Save this file and keep it somewhere safe. If it is lost the Google Play Store will not accept updates for this app!
110110
:::
111111

docs/developer-resources/guides/first-app-v3/realtime-updates-ionic-deploy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ Now comes the fun part: testing out the native app on your device! For iOS, the
101101
src="https://fast.wistia.net/embed/iframe/s5v4fujv7w?videoFoam=true"
102102
title="Wistia video player"
103103
allowtransparency="true"
104-
frameborder="0"
104+
frameBorder="0"
105105
scrolling="no"
106106
class="wistia_embed"
107107
name="wistia_embed"
@@ -130,7 +130,7 @@ In the upper right hand corner, click the Play button. Select your connected dev
130130
src="https://fast.wistia.net/embed/iframe/b2ys5v4sno?videoFoam=true"
131131
title="Wistia video player"
132132
allowtransparency="true"
133-
frameborder="0"
133+
frameBorder="0"
134134
scrolling="no"
135135
class="wistia_embed"
136136
name="wistia_embed"

0 commit comments

Comments
 (0)