mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-15 09:34:19 +08:00

The Ionic Framework team would like to re-evaluate our approach to improving customization options when building mobile applications. We are looking at other solutions that a) make customizing an app UI easier and b) are applicable to a broader set of developers.
124 lines
2.9 KiB
TypeScript
124 lines
2.9 KiB
TypeScript
export * from "./proxies";
|
|
|
|
export { UseBackButtonResult, useBackButton } from "./hooks/back-button";
|
|
export { UseKeyboardResult, useKeyboard } from "./hooks/keyboard";
|
|
export {
|
|
onIonViewWillEnter,
|
|
onIonViewDidEnter,
|
|
onIonViewWillLeave,
|
|
onIonViewDidLeave,
|
|
} from "./hooks/lifecycle";
|
|
export { UseIonRouterResult, useIonRouter } from "./hooks/router";
|
|
|
|
export { IonicVue } from "./ionic-vue";
|
|
|
|
export { IonBackButton } from "./components/IonBackButton";
|
|
export { IonPage } from "./components/IonPage";
|
|
export { IonRouterOutlet } from "./components/IonRouterOutlet";
|
|
export { IonTabButton } from "./components/IonTabButton";
|
|
export { IonTabs } from "./components/IonTabs";
|
|
export { IonTabBar } from "./components/IonTabBar";
|
|
export { IonNav } from "./components/IonNav";
|
|
export { IonIcon } from "./components/IonIcon";
|
|
export { IonApp } from "./components/IonApp";
|
|
|
|
export * from "./components/Overlays";
|
|
|
|
export {
|
|
modalController,
|
|
popoverController,
|
|
alertController,
|
|
actionSheetController,
|
|
loadingController,
|
|
pickerController,
|
|
toastController,
|
|
} from "./controllers";
|
|
|
|
export * from "./globalExtensions";
|
|
|
|
export {
|
|
// UTILS
|
|
createAnimation,
|
|
createGesture,
|
|
iosTransitionAnimation,
|
|
mdTransitionAnimation,
|
|
IonicSlides,
|
|
getPlatforms,
|
|
isPlatform,
|
|
menuController,
|
|
getTimeGivenProgression,
|
|
|
|
// TYPES
|
|
Animation,
|
|
AnimationBuilder,
|
|
AnimationCallbackOptions,
|
|
AnimationDirection,
|
|
AnimationFill,
|
|
AnimationKeyFrames,
|
|
AnimationLifecycle,
|
|
Gesture,
|
|
GestureConfig,
|
|
GestureDetail,
|
|
NavComponentWithProps,
|
|
SpinnerTypes,
|
|
AccordionGroupCustomEvent,
|
|
AccordionGroupChangeEventDetail,
|
|
BreadcrumbCustomEvent,
|
|
BreadcrumbCollapsedClickEventDetail,
|
|
ActionSheetOptions,
|
|
ActionSheetButton,
|
|
AlertOptions,
|
|
AlertInput,
|
|
AlertButton,
|
|
BackButtonEvent,
|
|
CheckboxCustomEvent,
|
|
CheckboxChangeEventDetail,
|
|
DatetimeCustomEvent,
|
|
DatetimeChangeEventDetail,
|
|
InfiniteScrollCustomEvent,
|
|
InputCustomEvent,
|
|
InputChangeEventDetail,
|
|
ItemReorderEventDetail,
|
|
ItemReorderCustomEvent,
|
|
ItemSlidingCustomEvent,
|
|
IonicSafeString,
|
|
LoadingOptions,
|
|
MenuCustomEvent,
|
|
ModalOptions,
|
|
NavCustomEvent,
|
|
PickerOptions,
|
|
PickerButton,
|
|
PickerColumn,
|
|
PickerColumnOption,
|
|
Platforms,
|
|
PlatformConfig,
|
|
PopoverOptions,
|
|
RadioGroupCustomEvent,
|
|
RadioGroupChangeEventDetail,
|
|
RangeCustomEvent,
|
|
RangeChangeEventDetail,
|
|
RangeKnobMoveStartEventDetail,
|
|
RangeKnobMoveEndEventDetail,
|
|
RefresherCustomEvent,
|
|
RefresherEventDetail,
|
|
RouterEventDetail,
|
|
RouterCustomEvent,
|
|
ScrollBaseCustomEvent,
|
|
ScrollBaseDetail,
|
|
ScrollDetail,
|
|
ScrollCustomEvent,
|
|
SearchbarCustomEvent,
|
|
SearchbarChangeEventDetail,
|
|
SegmentChangeEventDetail,
|
|
SegmentCustomEvent,
|
|
SelectChangeEventDetail,
|
|
SelectCustomEvent,
|
|
TabsCustomEvent,
|
|
TextareaChangeEventDetail,
|
|
TextareaCustomEvent,
|
|
ToastOptions,
|
|
ToastButton,
|
|
ToggleChangeEventDetail,
|
|
ToggleCustomEvent,
|
|
} from "@ionic/core/components";
|