mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-15 17:42:15 +08:00
chore(picker): mark ionInputModeChange as internal (#28701)
This commit is contained in:
@ -909,7 +909,6 @@ ion-note,css-prop,--color
|
||||
|
||||
ion-picker,shadow
|
||||
ion-picker,prop,mode,"ios" | "md",undefined,false,false
|
||||
ion-picker,event,ionInputModeChange,PickerChangeEventDetail,true
|
||||
ion-picker,css-prop,--fade-background-rgb
|
||||
ion-picker,css-prop,--highlight-background
|
||||
ion-picker,css-prop,--highlight-border-radius
|
||||
|
@ -26,6 +26,9 @@ export class Picker implements ComponentInterface {
|
||||
|
||||
@Element() el!: HTMLIonPickerElement;
|
||||
|
||||
/**
|
||||
* @internal
|
||||
*/
|
||||
@Event() ionInputModeChange!: EventEmitter<PickerChangeEventDetail>;
|
||||
|
||||
/**
|
||||
|
@ -1432,17 +1432,11 @@ export class IonPicker {
|
||||
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
||||
c.detach();
|
||||
this.el = r.nativeElement;
|
||||
proxyOutputs(this, this.el, ['ionInputModeChange']);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
import type { PickerChangeEventDetail as IIonPickerPickerChangeEventDetail } from '@ionic/core';
|
||||
|
||||
export declare interface IonPicker extends Components.IonPicker {
|
||||
|
||||
ionInputModeChange: EventEmitter<CustomEvent<IIonPickerPickerChangeEventDetail>>;
|
||||
}
|
||||
export declare interface IonPicker extends Components.IonPicker {}
|
||||
|
||||
|
||||
@ProxyCmp({
|
||||
|
@ -1426,17 +1426,11 @@ export class IonPicker {
|
||||
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
||||
c.detach();
|
||||
this.el = r.nativeElement;
|
||||
proxyOutputs(this, this.el, ['ionInputModeChange']);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
import type { PickerChangeEventDetail as IIonPickerPickerChangeEventDetail } from '@ionic/core/components';
|
||||
|
||||
export declare interface IonPicker extends Components.IonPicker {
|
||||
|
||||
ionInputModeChange: EventEmitter<CustomEvent<IIonPickerPickerChangeEventDetail>>;
|
||||
}
|
||||
export declare interface IonPicker extends Components.IonPicker {}
|
||||
|
||||
|
||||
@ProxyCmp({
|
||||
|
Reference in New Issue
Block a user