mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 03:00:58 +08:00
chore(): fix frameworkdelegate import
This commit is contained in:
6
core/src/components.d.ts
vendored
6
core/src/components.d.ts
vendored
@ -39,7 +39,6 @@ import { SelectChangeEventDetail, SelectCompareFn, SelectInterface } from "./com
|
|||||||
import { SelectPopoverOption } from "./components/select-popover/select-popover-interface";
|
import { SelectPopoverOption } from "./components/select-popover/select-popover-interface";
|
||||||
import { TabBarChangedEventDetail, TabButtonClickEventDetail, TabButtonLayout } from "./components/tab-bar/tab-bar-interface";
|
import { TabBarChangedEventDetail, TabButtonClickEventDetail, TabButtonLayout } from "./components/tab-bar/tab-bar-interface";
|
||||||
import { TextareaChangeEventDetail, TextareaInputEventDetail } from "./components/textarea/textarea-interface";
|
import { TextareaChangeEventDetail, TextareaInputEventDetail } from "./components/textarea/textarea-interface";
|
||||||
import { FrameworkDelegate as FrameworkDelegate1 } from "./utils/overlays";
|
|
||||||
import { ToastButton, ToastLayout, ToastPosition } from "./components/toast/toast-interface";
|
import { ToastButton, ToastLayout, ToastPosition } from "./components/toast/toast-interface";
|
||||||
import { ToggleChangeEventDetail } from "./components/toggle/toggle-interface";
|
import { ToggleChangeEventDetail } from "./components/toggle/toggle-interface";
|
||||||
export { AccordionGroupChangeEventDetail } from "./components/accordion-group/accordion-group-interface";
|
export { AccordionGroupChangeEventDetail } from "./components/accordion-group/accordion-group-interface";
|
||||||
@ -76,7 +75,6 @@ export { SelectChangeEventDetail, SelectCompareFn, SelectInterface } from "./com
|
|||||||
export { SelectPopoverOption } from "./components/select-popover/select-popover-interface";
|
export { SelectPopoverOption } from "./components/select-popover/select-popover-interface";
|
||||||
export { TabBarChangedEventDetail, TabButtonClickEventDetail, TabButtonLayout } from "./components/tab-bar/tab-bar-interface";
|
export { TabBarChangedEventDetail, TabButtonClickEventDetail, TabButtonLayout } from "./components/tab-bar/tab-bar-interface";
|
||||||
export { TextareaChangeEventDetail, TextareaInputEventDetail } from "./components/textarea/textarea-interface";
|
export { TextareaChangeEventDetail, TextareaInputEventDetail } from "./components/textarea/textarea-interface";
|
||||||
export { FrameworkDelegate as FrameworkDelegate1 } from "./utils/overlays";
|
|
||||||
export { ToastButton, ToastLayout, ToastPosition } from "./components/toast/toast-interface";
|
export { ToastButton, ToastLayout, ToastPosition } from "./components/toast/toast-interface";
|
||||||
export { ToggleChangeEventDetail } from "./components/toggle/toggle-interface";
|
export { ToggleChangeEventDetail } from "./components/toggle/toggle-interface";
|
||||||
export namespace Components {
|
export namespace Components {
|
||||||
@ -3075,7 +3073,7 @@ export namespace Components {
|
|||||||
* Additional classes to apply for custom CSS. If multiple classes are provided they should be separated by spaces.
|
* Additional classes to apply for custom CSS. If multiple classes are provided they should be separated by spaces.
|
||||||
*/
|
*/
|
||||||
"cssClass"?: string | string[];
|
"cssClass"?: string | string[];
|
||||||
"delegate"?: FrameworkDelegate1;
|
"delegate"?: FrameworkDelegate;
|
||||||
/**
|
/**
|
||||||
* Dismiss the toast overlay after it has been presented.
|
* Dismiss the toast overlay after it has been presented.
|
||||||
* @param data Any data to emit in the dismiss events.
|
* @param data Any data to emit in the dismiss events.
|
||||||
@ -7177,7 +7175,7 @@ declare namespace LocalJSX {
|
|||||||
* Additional classes to apply for custom CSS. If multiple classes are provided they should be separated by spaces.
|
* Additional classes to apply for custom CSS. If multiple classes are provided they should be separated by spaces.
|
||||||
*/
|
*/
|
||||||
"cssClass"?: string | string[];
|
"cssClass"?: string | string[];
|
||||||
"delegate"?: FrameworkDelegate1;
|
"delegate"?: FrameworkDelegate;
|
||||||
/**
|
/**
|
||||||
* How many milliseconds to wait before hiding the toast. By default, it will show until `dismiss()` is called.
|
* How many milliseconds to wait before hiding the toast. By default, it will show until `dismiss()` is called.
|
||||||
*/
|
*/
|
||||||
|
@ -3,9 +3,8 @@ import { Watch, Component, Element, Event, h, Host, Method, Prop } from '@stenci
|
|||||||
|
|
||||||
import { config } from '../../global/config';
|
import { config } from '../../global/config';
|
||||||
import { getIonMode } from '../../global/ionic-global';
|
import { getIonMode } from '../../global/ionic-global';
|
||||||
import type { AnimationBuilder, Color, CssClassMap, OverlayInterface } from '../../interface';
|
import type { AnimationBuilder, Color, CssClassMap, OverlayInterface, FrameworkDelegate } from '../../interface';
|
||||||
import { printIonWarning } from '../../utils/logging';
|
import { printIonWarning } from '../../utils/logging';
|
||||||
import type { FrameworkDelegate } from '../../utils/overlays';
|
|
||||||
import {
|
import {
|
||||||
createDelegateController,
|
createDelegateController,
|
||||||
createTriggerController,
|
createTriggerController,
|
||||||
|
Reference in New Issue
Block a user