refactor(picker): remove refresh key (#26340)

BREAKING CHANGE:

The `refresh` key has been removed from the `PickerColumn` interface. Developers should use the `columns` property to refresh the `ion-picker` view.
This commit is contained in:
Liam DeBeasi
2022-11-22 13:43:50 -05:00
committed by GitHub
parent 36cc5103bf
commit 0fbcc5b9a9
2 changed files with 5 additions and 6 deletions

View File

@ -37,12 +37,6 @@ export interface PickerColumn {
prefixWidth?: string;
suffixWidth?: string;
optionsWidth?: string;
/**
* @deprecated - Use the `columns` property on `ion-picker`
* to refresh the component view instead.
*/
refresh?: () => void;
}
export interface PickerColumnOption {