refactor(input, textarea) remove unused event (#29183)

This commit is contained in:
Liam DeBeasi
2024-03-20 12:47:49 -04:00
committed by GitHub
parent 892594de06
commit 63a2d4fb44
4 changed files with 3 additions and 27 deletions

View File

@ -10,7 +10,7 @@ import { createColorClasses, hostContext } from '@utils/theme';
import { closeCircle, closeSharp } from 'ionicons/icons';
import { getIonMode } from '../../global/ionic-global';
import type { AutocompleteTypes, Color, StyleEventDetail, TextFieldTypes } from '../../interface';
import type { AutocompleteTypes, Color, TextFieldTypes } from '../../interface';
import type { InputChangeEventDetail, InputInputEventDetail } from './input-interface';
import { getCounterText } from './input.utils';
@ -295,12 +295,6 @@ export class Input implements ComponentInterface {
*/
@Event() ionFocus!: EventEmitter<FocusEvent>;
/**
* Emitted when the styles change.
* @internal
*/
@Event() ionStyle!: EventEmitter<StyleEventDetail>;
/**
* Update the native input element when the value changes
*/