mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-15 09:34:19 +08:00
78 lines
2.0 KiB
TypeScript
78 lines
2.0 KiB
TypeScript
import { addIcons } from 'ionicons';
|
|
import { arrowBackSharp, caretBackSharp, chevronBack, chevronForward, close, closeCircle, closeSharp, menuOutline, menuSharp, reorderThreeOutline, reorderTwoSharp, searchOutline, searchSharp } from 'ionicons/icons';
|
|
|
|
export * from './proxies';
|
|
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 * from './components/Overlays';
|
|
|
|
export { IonKeyboardRef, IonRouter, useBackButton, useIonRouter, useKeyboard } from './hooks';
|
|
|
|
export {
|
|
modalController,
|
|
popoverController
|
|
} from './controllers';
|
|
|
|
export {
|
|
// Overlay Controllers
|
|
alertController,
|
|
actionSheetController,
|
|
menuController,
|
|
loadingController,
|
|
pickerController,
|
|
toastController,
|
|
|
|
// Security
|
|
IonicSafeString,
|
|
|
|
// Platform
|
|
isPlatform, Platforms, getPlatforms,
|
|
|
|
// Gesture
|
|
Gesture,
|
|
GestureConfig,
|
|
GestureDetail,
|
|
createGesture,
|
|
|
|
// Animations
|
|
Animation,
|
|
AnimationBuilder,
|
|
AnimationCallbackOptions,
|
|
AnimationDirection,
|
|
AnimationFill,
|
|
AnimationKeyFrames,
|
|
AnimationLifecycle,
|
|
createAnimation,
|
|
iosTransitionAnimation,
|
|
mdTransitionAnimation,
|
|
getTimeGivenProgression,
|
|
|
|
// Hardware Back Button
|
|
BackButtonEvent
|
|
} from '@ionic/core';
|
|
|
|
// Icons that are used by internal components
|
|
addIcons({
|
|
'arrow-back-sharp': arrowBackSharp,
|
|
'caret-back-sharp': caretBackSharp,
|
|
'chevron-back': chevronBack,
|
|
'chevron-forward': chevronForward,
|
|
'close': close,
|
|
'close-circle': closeCircle,
|
|
'close-sharp': closeSharp,
|
|
'menu-outline': menuOutline,
|
|
'menu-sharp': menuSharp,
|
|
'reorder-two-sharp': reorderTwoSharp,
|
|
'reorder-three-outline': reorderThreeOutline,
|
|
'search-outline': searchOutline,
|
|
'search-sharp': searchSharp,
|
|
});
|