diff --git a/core/src/components.d.ts b/core/src/components.d.ts index 711dabdc62..6e7bd07ff1 100644 --- a/core/src/components.d.ts +++ b/core/src/components.d.ts @@ -1254,11 +1254,11 @@ export namespace Components { } interface IonItemSliding { /** - * Close the sliding item. Items can also be closed from the [List](../list). + * Close the sliding item. Items can also be closed from the [List](./list). */ "close": () => Promise; /** - * Close all of the sliding items in the list. Items can also be closed from the [List](../list). + * Close all of the sliding items in the list. Items can also be closed from the [List](./list). */ "closeOpened": () => Promise; /** @@ -2425,7 +2425,7 @@ export namespace Components { */ "interface": SelectInterface; /** - * 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. + * 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. */ "interfaceOptions": any; /** @@ -6128,7 +6128,7 @@ declare namespace LocalJSX { */ "interface"?: SelectInterface; /** - * 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. + * 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. */ "interfaceOptions"?: any; /** diff --git a/core/src/components/item-sliding/item-sliding.tsx b/core/src/components/item-sliding/item-sliding.tsx index f7bb3295e9..85d1011bc6 100644 --- a/core/src/components/item-sliding/item-sliding.tsx +++ b/core/src/components/item-sliding/item-sliding.tsx @@ -168,7 +168,7 @@ export class ItemSliding implements ComponentInterface { } /** - * Close the sliding item. Items can also be closed from the [List](../list). + * Close the sliding item. Items can also be closed from the [List](./list). */ @Method() async close() { @@ -176,7 +176,7 @@ export class ItemSliding implements ComponentInterface { } /** - * Close all of the sliding items in the list. Items can also be closed from the [List](../list). + * Close all of the sliding items in the list. Items can also be closed from the [List](./list). */ @Method() async closeOpened(): Promise { diff --git a/core/src/components/select/select.tsx b/core/src/components/select/select.tsx index a93df1fe20..2e7e2ebf30 100644 --- a/core/src/components/select/select.tsx +++ b/core/src/components/select/select.tsx @@ -78,9 +78,9 @@ export class Select implements ComponentInterface { /** * 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 + * 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.