diff --git a/core/src/components.d.ts b/core/src/components.d.ts index 3b8181d8240..dc86f3e4c07 100644 --- a/core/src/components.d.ts +++ b/core/src/components.d.ts @@ -4440,7 +4440,7 @@ declare namespace LocalJSX { */ 'onIonFocus'?: (event: CustomEvent) => void; /** - * Emitted when a keyboard input ocurred. + * Emitted when a keyboard input occurred. */ 'onIonInput'?: (event: CustomEvent) => void; /** @@ -5414,7 +5414,7 @@ declare namespace LocalJSX { */ 'onIonFocus'?: (event: CustomEvent) => void; /** - * Emitted when a keyboard input ocurred. + * Emitted when a keyboard input occurred. */ 'onIonInput'?: (event: CustomEvent) => void; /** @@ -5869,7 +5869,7 @@ declare namespace LocalJSX { */ 'onIonFocus'?: (event: CustomEvent) => void; /** - * Emitted when a keyboard input ocurred. + * Emitted when a keyboard input occurred. */ 'onIonInput'?: (event: CustomEvent) => void; /** diff --git a/core/src/components/input/input.tsx b/core/src/components/input/input.tsx index c498e120ab7..555554726a9 100644 --- a/core/src/components/input/input.tsx +++ b/core/src/components/input/input.tsx @@ -181,7 +181,7 @@ export class Input implements ComponentInterface { } /** - * Emitted when a keyboard input ocurred. + * Emitted when a keyboard input occurred. */ @Event() ionInput!: EventEmitter; diff --git a/core/src/components/input/readme.md b/core/src/components/input/readme.md index 133d344a089..e36e6a80064 100644 --- a/core/src/components/input/readme.md +++ b/core/src/components/input/readme.md @@ -243,12 +243,12 @@ export const InputExample: React.FC = () => ( ## Events -| Event | Description | Type | -| ----------- | -------------------------------------- | ------------------------------------- | -| `ionBlur` | Emitted when the input loses focus. | `CustomEvent` | -| `ionChange` | Emitted when the value has changed. | `CustomEvent` | -| `ionFocus` | Emitted when the input has focus. | `CustomEvent` | -| `ionInput` | Emitted when a keyboard input ocurred. | `CustomEvent` | +| Event | Description | Type | +| ----------- | --------------------------------------- | ------------------------------------- | +| `ionBlur` | Emitted when the input loses focus. | `CustomEvent` | +| `ionChange` | Emitted when the value has changed. | `CustomEvent` | +| `ionFocus` | Emitted when the input has focus. | `CustomEvent` | +| `ionInput` | Emitted when a keyboard input occurred. | `CustomEvent` | ## Methods diff --git a/core/src/components/searchbar/readme.md b/core/src/components/searchbar/readme.md index c11288278e0..fac2f0a70cb 100644 --- a/core/src/components/searchbar/readme.md +++ b/core/src/components/searchbar/readme.md @@ -249,7 +249,7 @@ export const SearchbarExample: React.FC = () => ( | `ionChange` | Emitted when the value has changed. | `CustomEvent` | | `ionClear` | Emitted when the clear input button is clicked. | `CustomEvent` | | `ionFocus` | Emitted when the input has focus. | `CustomEvent` | -| `ionInput` | Emitted when a keyboard input ocurred. | `CustomEvent` | +| `ionInput` | Emitted when a keyboard input occurred. | `CustomEvent` | ## Methods diff --git a/core/src/components/searchbar/searchbar.tsx b/core/src/components/searchbar/searchbar.tsx index adefb490d55..322b9db9418 100644 --- a/core/src/components/searchbar/searchbar.tsx +++ b/core/src/components/searchbar/searchbar.tsx @@ -129,7 +129,7 @@ export class Searchbar implements ComponentInterface { @Prop({ mutable: true }) value?: string | null = ''; /** - * Emitted when a keyboard input ocurred. + * Emitted when a keyboard input occurred. */ @Event() ionInput!: EventEmitter; diff --git a/core/src/components/textarea/readme.md b/core/src/components/textarea/readme.md index b1c6963155e..1a8609340b0 100644 --- a/core/src/components/textarea/readme.md +++ b/core/src/components/textarea/readme.md @@ -219,7 +219,7 @@ export const TextAreaExample: React.FC = () => ( | `ionBlur` | Emitted when the input loses focus. | `CustomEvent` | | `ionChange` | Emitted when the input value has changed. | `CustomEvent` | | `ionFocus` | Emitted when the input has focus. | `CustomEvent` | -| `ionInput` | Emitted when a keyboard input ocurred. | `CustomEvent` | +| `ionInput` | Emitted when a keyboard input occurred. | `CustomEvent` | ## Methods diff --git a/core/src/components/textarea/textarea.tsx b/core/src/components/textarea/textarea.tsx index 36a957d3307..8c43d37b753 100644 --- a/core/src/components/textarea/textarea.tsx +++ b/core/src/components/textarea/textarea.tsx @@ -149,7 +149,7 @@ export class Textarea implements ComponentInterface { @Event() ionChange!: EventEmitter; /** - * Emitted when a keyboard input ocurred. + * Emitted when a keyboard input occurred. */ @Event() ionInput!: EventEmitter;