mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-22 13:32:54 +08:00

* refactor(modal): cleaned up scss for modal/inset-modal, added functionality to pass animation to vie cleaned up scss for modal/inset-modal, added functionality to pass animation to view-contro * refactor(exports): exporting gestures so other apps can consume them exporting gestures so other apps can consume them
36 lines
958 B
TypeScript
36 lines
958 B
TypeScript
|
|
export * from './config/bootstrap';
|
|
export * from './config/config';
|
|
export * from './config/directives';
|
|
|
|
export * from './decorators/page';
|
|
|
|
export * from './components';
|
|
|
|
export * from './gestures/drag-gesture';
|
|
export * from './gestures/gesture';
|
|
export * from './gestures/slide-edge-gesture';
|
|
export * from './gestures/slide-gesture';
|
|
|
|
export * from './platform/platform';
|
|
export * from './platform/storage';
|
|
|
|
export * from './util/click-block';
|
|
export * from './util/events';
|
|
export * from './util/keyboard';
|
|
export * from './util/form';
|
|
|
|
export * from './animations/animation';
|
|
export * from './transitions/transition';
|
|
|
|
export * from './translation/translate';
|
|
export * from './translation/translate_pipe';
|
|
|
|
// these modules don't export anything
|
|
import './config/modes';
|
|
import './platform/registry';
|
|
import './animations/builtins';
|
|
import './transitions/transition-ios';
|
|
import './transitions/transition-md';
|
|
import './transitions/transition-wp';
|