mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-16 01:52:19 +08:00
feat(all): add CustomEvents types to components that emit events (#23956)
resolves #22925 BREAKING CHANGE: The `RadioChangeEventDetail` interface has been removed in favor of `RadioGroupChangeEventDetail`.
This commit is contained in:
@ -16,7 +16,18 @@ import {
|
||||
searchOutline,
|
||||
searchSharp,
|
||||
} from 'ionicons/icons';
|
||||
|
||||
export {
|
||||
// UTILS
|
||||
createAnimation,
|
||||
createGesture,
|
||||
iosTransitionAnimation,
|
||||
mdTransitionAnimation,
|
||||
setupConfig,
|
||||
IonicSwiper,
|
||||
getTimeGivenProgression,
|
||||
|
||||
// TYPES
|
||||
Animation,
|
||||
AnimationBuilder,
|
||||
AnimationCallbackOptions,
|
||||
@ -24,22 +35,19 @@ export {
|
||||
AnimationFill,
|
||||
AnimationKeyFrames,
|
||||
AnimationLifecycle,
|
||||
createAnimation,
|
||||
createGesture,
|
||||
Gesture,
|
||||
GestureConfig,
|
||||
GestureDetail,
|
||||
iosTransitionAnimation,
|
||||
IonicSafeString,
|
||||
mdTransitionAnimation,
|
||||
NavComponentWithProps,
|
||||
setupConfig,
|
||||
initialize,
|
||||
IonicSwiper,
|
||||
PlatformConfig,
|
||||
|
||||
SpinnerTypes,
|
||||
|
||||
AccordionGroupCustomEvent,
|
||||
AccordionGroupChangeEventDetail,
|
||||
|
||||
BreadcrumbCustomEvent,
|
||||
BreadcrumbCollapsedClickEventDetail,
|
||||
|
||||
ActionSheetOptions,
|
||||
ActionSheetButton,
|
||||
|
||||
@ -49,10 +57,34 @@ export {
|
||||
AlertInputAttributes,
|
||||
AlertButton,
|
||||
|
||||
BackButtonEvent,
|
||||
|
||||
CheckboxCustomEvent,
|
||||
CheckboxChangeEventDetail,
|
||||
|
||||
DatetimeCustomEvent,
|
||||
DatetimeChangeEventDetail,
|
||||
|
||||
InfiniteScrollCustomEvent,
|
||||
|
||||
InputCustomEvent,
|
||||
InputChangeEventDetail,
|
||||
|
||||
ItemReorderEventDetail,
|
||||
ItemReorderCustomEvent,
|
||||
|
||||
ItemSlidingCustomEvent,
|
||||
|
||||
IonicSafeString,
|
||||
|
||||
LoadingOptions,
|
||||
|
||||
MenuCustomEvent,
|
||||
|
||||
ModalOptions,
|
||||
|
||||
NavCustomEvent,
|
||||
|
||||
PickerOptions,
|
||||
PickerButton,
|
||||
PickerColumn,
|
||||
@ -60,9 +92,41 @@ export {
|
||||
|
||||
PopoverOptions,
|
||||
|
||||
RadioGroupCustomEvent,
|
||||
RadioGroupChangeEventDetail,
|
||||
|
||||
RefresherCustomEvent,
|
||||
RefresherEventDetail,
|
||||
|
||||
RouterEventDetail,
|
||||
RouterCustomEvent,
|
||||
|
||||
ScrollBaseCustomEvent,
|
||||
ScrollBaseDetail,
|
||||
ScrollDetail,
|
||||
ScrollCustomEvent,
|
||||
|
||||
SearchbarCustomEvent,
|
||||
SearchbarChangeEventDetail,
|
||||
|
||||
SegmentChangeEventDetail,
|
||||
SegmentCustomEvent,
|
||||
|
||||
SelectChangeEventDetail,
|
||||
SelectCustomEvent,
|
||||
|
||||
TabsCustomEvent,
|
||||
|
||||
TextareaChangeEventDetail,
|
||||
TextareaCustomEvent,
|
||||
|
||||
ToastOptions,
|
||||
ToastButton
|
||||
ToastButton,
|
||||
|
||||
ToggleChangeEventDetail,
|
||||
ToggleCustomEvent,
|
||||
} from '@ionic/core/components';
|
||||
|
||||
export * from './proxies';
|
||||
export * from './routing-proxies';
|
||||
|
||||
|
Reference in New Issue
Block a user