mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 11:17:19 +08:00
fix(react): fixing type of icon in ToastOptions, ActionSheetOptions, fixes #20100
This commit is contained in:
@ -1,5 +1,22 @@
|
||||
import { ActionSheetOptions, actionSheetController } from '@ionic/core';
|
||||
import { ActionSheetButton as ActionSheetButtonCore, ActionSheetOptions as ActionSheetOptionsCore, actionSheetController as actionSheetControllerCore } from '@ionic/core';
|
||||
|
||||
import { createOverlayComponent } from './createOverlayComponent';
|
||||
|
||||
export interface ActionSheetButton extends Omit<ActionSheetButtonCore, 'icon'> {
|
||||
icon?: {
|
||||
ios: string;
|
||||
md: string;
|
||||
};
|
||||
}
|
||||
|
||||
export interface ActionSheetOptions extends Omit<ActionSheetOptionsCore, 'buttons'> {
|
||||
buttons?: (ActionSheetButton | string)[];
|
||||
}
|
||||
|
||||
const actionSheetController = {
|
||||
create: (options: ActionSheetOptions) => actionSheetControllerCore.create(options as any),
|
||||
dismiss: (data?: any, role?: string | undefined, id?: string | undefined) => actionSheetControllerCore.dismiss(data, role, id),
|
||||
getTop: () => actionSheetControllerCore.getTop()
|
||||
};
|
||||
|
||||
export const IonActionSheet = /*@__PURE__*/createOverlayComponent<ActionSheetOptions, HTMLIonActionSheetElement>('IonActionSheet', actionSheetController);
|
||||
|
@ -1,5 +1,22 @@
|
||||
import { ToastOptions, toastController } from '@ionic/core';
|
||||
import { ToastButton as ToastButtonCore, ToastOptions as ToastOptionsCore, toastController as toastControllerCore } from '@ionic/core';
|
||||
|
||||
import { createControllerComponent } from './createControllerComponent';
|
||||
|
||||
export interface ToastButton extends Omit<ToastButtonCore, 'icon'> {
|
||||
icon?: {
|
||||
ios: string;
|
||||
md: string;
|
||||
};
|
||||
}
|
||||
|
||||
export interface ToastOptions extends Omit<ToastOptionsCore, 'buttons'> {
|
||||
buttons?: (ToastButton | string)[];
|
||||
}
|
||||
|
||||
const toastController = {
|
||||
create: (options: ToastOptions) => toastControllerCore.create(options as any),
|
||||
dismiss: (data?: any, role?: string | undefined, id?: string | undefined) => toastControllerCore.dismiss(data, role, id),
|
||||
getTop: () => toastControllerCore.getTop()
|
||||
};
|
||||
|
||||
export const IonToast = /*@__PURE__*/createControllerComponent<ToastOptions, HTMLIonToastElement>('IonToast', toastController);
|
||||
|
Reference in New Issue
Block a user