Skip to content

Commit c52f3ad

Browse files
authored
docs(select,item-sliding): relative link paths (#24985)
1 parent 8424210 commit c52f3ad

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

core/src/components.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1254,11 +1254,11 @@ export namespace Components {
12541254
}
12551255
interface IonItemSliding {
12561256
/**
1257-
* Close the sliding item. Items can also be closed from the [List](../list).
1257+
* Close the sliding item. Items can also be closed from the [List](./list).
12581258
*/
12591259
"close": () => Promise<void>;
12601260
/**
1261-
* Close all of the sliding items in the list. Items can also be closed from the [List](../list).
1261+
* Close all of the sliding items in the list. Items can also be closed from the [List](./list).
12621262
*/
12631263
"closeOpened": () => Promise<boolean>;
12641264
/**
@@ -2425,7 +2425,7 @@ export namespace Components {
24252425
*/
24262426
"interface": SelectInterface;
24272427
/**
2428-
* Any additional options that the `alert`, `action-sheet` or `popover` interface can take. See the [ion-alert docs](../alert), the [ion-action-sheet docs](../action-sheet) and the [ion-popover docs](../popover) for the create options for each interface. Note: `interfaceOptions` will not override `inputs` or `buttons` with the `alert` interface.
2428+
* Any additional options that the `alert`, `action-sheet` or `popover` interface can take. See the [ion-alert docs](./alert), the [ion-action-sheet docs](./action-sheet) and the [ion-popover docs](./popover) for the create options for each interface. Note: `interfaceOptions` will not override `inputs` or `buttons` with the `alert` interface.
24292429
*/
24302430
"interfaceOptions": any;
24312431
/**
@@ -6128,7 +6128,7 @@ declare namespace LocalJSX {
61286128
*/
61296129
"interface"?: SelectInterface;
61306130
/**
6131-
* Any additional options that the `alert`, `action-sheet` or `popover` interface can take. See the [ion-alert docs](../alert), the [ion-action-sheet docs](../action-sheet) and the [ion-popover docs](../popover) for the create options for each interface. Note: `interfaceOptions` will not override `inputs` or `buttons` with the `alert` interface.
6131+
* Any additional options that the `alert`, `action-sheet` or `popover` interface can take. See the [ion-alert docs](./alert), the [ion-action-sheet docs](./action-sheet) and the [ion-popover docs](./popover) for the create options for each interface. Note: `interfaceOptions` will not override `inputs` or `buttons` with the `alert` interface.
61326132
*/
61336133
"interfaceOptions"?: any;
61346134
/**

core/src/components/item-sliding/item-sliding.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,15 +168,15 @@ export class ItemSliding implements ComponentInterface {
168168
}
169169

170170
/**
171-
* Close the sliding item. Items can also be closed from the [List](../list).
171+
* Close the sliding item. Items can also be closed from the [List](./list).
172172
*/
173173
@Method()
174174
async close() {
175175
this.setOpenAmount(0, true);
176176
}
177177

178178
/**
179-
* Close all of the sliding items in the list. Items can also be closed from the [List](../list).
179+
* Close all of the sliding items in the list. Items can also be closed from the [List](./list).
180180
*/
181181
@Method()
182182
async closeOpened(): Promise<boolean> {

core/src/components/select/select.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,9 @@ export class Select implements ComponentInterface {
7878

7979
/**
8080
* Any additional options that the `alert`, `action-sheet` or `popover` interface
81-
* can take. See the [ion-alert docs](../alert), the
82-
* [ion-action-sheet docs](../action-sheet) and the
83-
* [ion-popover docs](../popover) for the
81+
* can take. See the [ion-alert docs](./alert), the
82+
* [ion-action-sheet docs](./action-sheet) and the
83+
* [ion-popover docs](./popover) for the
8484
* create options for each interface.
8585
*
8686
* Note: `interfaceOptions` will not override `inputs` or `buttons` with the `alert` interface.

0 commit comments

Comments
 (0)