From 9f1088882edb98b0673d234caa4aaec2dd2d3364 Mon Sep 17 00:00:00 2001 From: reslear Date: Fri, 3 Nov 2023 17:01:06 +0100 Subject: [PATCH 1/2] refactor: exportable md animations for modal --- core/src/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/src/index.ts b/core/src/index.ts index 90f4199de54..e5e844423fa 100644 --- a/core/src/index.ts +++ b/core/src/index.ts @@ -4,6 +4,8 @@ export { createAnimation } from './utils/animation/animation'; export { getIonPageElement } from './utils/transition'; export { iosTransitionAnimation } from './utils/transition/ios.transition'; export { mdTransitionAnimation } from './utils/transition/md.transition'; +export { mdEnterModalAniamtion } from 'core/src/components/modal/animations/md.enter' +export { mdLeaveModalAniamtion } from 'core/src/components/modal/animations/md.leave' export { getTimeGivenProgression } from './utils/animation/cubic-bezier'; export { createGesture } from './utils/gesture'; export { initialize } from './global/ionic-global'; From c7ad2f1bbb59eb233d62bf6f1822fab27edd5b4b Mon Sep 17 00:00:00 2001 From: reslear Date: Fri, 3 Nov 2023 17:05:14 +0100 Subject: [PATCH 2/2] Update index.ts --- core/src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/index.ts b/core/src/index.ts index e5e844423fa..3a3c01eaf4e 100644 --- a/core/src/index.ts +++ b/core/src/index.ts @@ -4,8 +4,8 @@ export { createAnimation } from './utils/animation/animation'; export { getIonPageElement } from './utils/transition'; export { iosTransitionAnimation } from './utils/transition/ios.transition'; export { mdTransitionAnimation } from './utils/transition/md.transition'; -export { mdEnterModalAniamtion } from 'core/src/components/modal/animations/md.enter' -export { mdLeaveModalAniamtion } from 'core/src/components/modal/animations/md.leave' +export { mdEnterModalAnimation } from './components/modal/animations/md.enter' +export { mdLeaveModalAnimation } from './components/modal/animations/md.leave' export { getTimeGivenProgression } from './utils/animation/cubic-bezier'; export { createGesture } from './utils/gesture'; export { initialize } from './global/ionic-global';