Skip to content

Commit 825eae9

Browse files
committed
chore: use latest-7
1 parent c7b1e65 commit 825eae9

25 files changed

Lines changed: 465 additions & 772 deletions

File tree

action-sheet/README.md

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ The Action Sheet API provides access to native Action Sheets, which come up from
55
## Install
66

77
```bash
8-
npm install @capacitor/action-sheet
8+
npm install @capacitor/action-sheet@latest-7
99
npx cap sync
1010
```
1111

@@ -50,9 +50,9 @@ const showActions = async () => {
5050

5151
<docgen-index>
5252

53-
* [`showActions(...)`](#showactions)
54-
* [Interfaces](#interfaces)
55-
* [Enums](#enums)
53+
- [`showActions(...)`](#showactions)
54+
- [Interfaces](#interfaces)
55+
- [Enums](#enums)
5656

5757
</docgen-index>
5858

@@ -76,19 +76,16 @@ to select.
7676

7777
**Since:** 1.0.0
7878

79-
--------------------
80-
79+
---
8180

8281
### Interfaces
8382

84-
8583
#### ShowActionsResult
8684

8785
| Prop | Type | Description | Since |
8886
| ----------- | ------------------- | -------------------------------------------- | ----- |
8987
| **`index`** | <code>number</code> | The index of the clicked option (Zero-based) | 1.0.0 |
9088

91-
9289
#### ShowActionsOptions
9390

9491
| Prop | Type | Description | Since |
@@ -97,7 +94,6 @@ to select.
9794
| **`message`** | <code>string</code> | A message to show under the title. This option is only supported on iOS. | 1.0.0 |
9895
| **`options`** | <code>ActionSheetButton[]</code> | Options the user can choose from. | 1.0.0 |
9996

100-
10197
#### ActionSheetButton
10298

10399
| Prop | Type | Description | Since |
@@ -106,10 +102,8 @@ to select.
106102
| **`style`** | <code><a href="#actionsheetbuttonstyle">ActionSheetButtonStyle</a></code> | The style of the option This option is only supported on iOS. | 1.0.0 |
107103
| **`icon`** | <code>string</code> | Icon for the option (ionicon naming convention) This option is only supported on Web. | 1.0.0 |
108104

109-
110105
### Enums
111106

112-
113107
#### ActionSheetButtonStyle
114108

115109
| Members | Value | Description | Since |

app-launcher/README.md

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ On Android you can open apps if you know their url scheme or use their public pa
99
**Note:** On [Android 11](https://developer.android.com/about/versions/11/privacy/package-visibility) and newer you have to add the app package names you want to query in the `AndroidManifest.xml` inside the `queries` tag.
1010

1111
Example:
12+
1213
```xml
1314
<queries>
1415
<package android:name="com.getcapacitor.myapp" />
@@ -18,7 +19,7 @@ Example:
1819
## Install
1920

2021
```bash
21-
npm install @capacitor/app-launcher
22+
npm install @capacitor/app-launcher@latest-7
2223
npx cap sync
2324
```
2425

@@ -42,9 +43,9 @@ const openPortfolioPage = async () => {
4243

4344
<docgen-index>
4445

45-
* [`canOpenUrl(...)`](#canopenurl)
46-
* [`openUrl(...)`](#openurl)
47-
* [Interfaces](#interfaces)
46+
- [`canOpenUrl(...)`](#canopenurl)
47+
- [`openUrl(...)`](#openurl)
48+
- [Interfaces](#interfaces)
4849

4950
</docgen-index>
5051

@@ -76,8 +77,7 @@ appropriate app is installed. To learn more about the key, see
7677

7778
**Since:** 1.0.0
7879

79-
--------------------
80-
80+
---
8181

8282
### openUrl(...)
8383

@@ -97,33 +97,28 @@ On Android the URL can be a known URLScheme or an app package name.
9797

9898
**Since:** 1.0.0
9999

100-
--------------------
101-
100+
---
102101

103102
### Interfaces
104103

105-
106104
#### CanOpenURLResult
107105

108106
| Prop | Type |
109107
| ----------- | -------------------- |
110108
| **`value`** | <code>boolean</code> |
111109

112-
113110
#### CanOpenURLOptions
114111

115112
| Prop | Type |
116113
| --------- | ------------------- |
117114
| **`url`** | <code>string</code> |
118115

119-
120116
#### OpenURLResult
121117

122118
| Prop | Type |
123119
| --------------- | -------------------- |
124120
| **`completed`** | <code>boolean</code> |
125121

126-
127122
#### OpenURLOptions
128123

129124
| Prop | Type |

0 commit comments

Comments
 (0)