Skip to content

Commit

Permalink
Merge branch 'main' of github.com:ionic-team/ionic-docs
Browse files Browse the repository at this point in the history
  • Loading branch information
rdlabo committed Jan 4, 2024
2 parents 9b895a5 + 2d44e05 commit 4767eb1
Show file tree
Hide file tree
Showing 16 changed files with 536 additions and 435 deletions.
22 changes: 22 additions & 0 deletions docs/api/refresher.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,28 @@ iOSとMaterial Designのネイティブリフレッシュ機能は、Ionicのデ

Refresher が機能するためには、スクロールコンテナが必要です。仮想スクロールを使用する場合は、`ion-content` のスクロールを無効にし、`.ion-content-scroll-host` クラスターゲットで、どの要素コンテナがスクロールコンテナを担当するかを指定する必要があります。

Developers should apply the following CSS to the scrollable container. This CSS adds a "rubber band" scrolling effect on iOS which allows the native iOS refresher to work properly:

```css
.ion-content-scroll-host::before,
.ion-content-scroll-host::after {
position: absolute;

width: 1px;
height: 1px;

content: "";
}

.ion-content-scroll-host::before {
bottom: -1px;
}

.ion-content-scroll-host::after {
top: -1px;
}
```

import CustomScrollTarget from '@site/static/usage/v7/refresher/custom-scroll-target/index.md';

<CustomScrollTarget />
Expand Down
2 changes: 1 addition & 1 deletion docs/reference/support.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ The current status of each Ionic Framework version is:
| V1 | End of Support | May 12, 2015 | Jan 25, 2017 | Jan 25, 2017 |

- **Maintenance**: Only critical bug and security fixes. No major feature improvements.
- **Extended Support**: For teams and organizations that require additional long term support, Ionic has extended support options available. To learn more, see our [Enterprise offerings](https://ionicframework.com/enterprise).
- **Extended Support**: For teams and organizations that require additional long term maintenance support, Ionic has extended support options available. To learn more, see our [Enterprise offerings](https://ionicframework.com/enterprise).

## Compatibility Recommendations

Expand Down
2 changes: 1 addition & 1 deletion static/code/stackblitz/v6/angular/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"dependencies": {
"@ionic/angular": "^6.0.0",
"@ionic/core": "^6.0.0",
"@angular/platform-browser-dynamic": "17.0.4"
"@angular/platform-browser-dynamic": "17.0.8"
}
}
36 changes: 18 additions & 18 deletions static/code/stackblitz/v6/react/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 4767eb1

Please sign in to comment.