From 626462ec898fef8ab1915039f2c98ce73e163f8a Mon Sep 17 00:00:00 2001 From: Sean Perkins Date: Wed, 3 May 2023 14:31:04 -0400 Subject: [PATCH] chore: fix generated types --- core/src/components/modal/modal.tsx | 4 ++-- core/src/components/popover/popover.tsx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/core/src/components/modal/modal.tsx b/core/src/components/modal/modal.tsx index b6d7017b50..6445672b46 100644 --- a/core/src/components/modal/modal.tsx +++ b/core/src/components/modal/modal.tsx @@ -4,7 +4,6 @@ import { findIonContent, printIonContentErrorMsg } from '@utils/content'; import { CoreDelegate, attachComponent, detachComponent } from '@utils/framework-delegate'; import { raf, inheritAttributes, hasLazyBuild } from '@utils/helpers'; import type { Attributes } from '@utils/helpers'; -import { KEYBOARD_DID_OPEN } from '@utils/keyboard/keyboard'; import { printIonWarning } from '@utils/logging'; import { Style as StatusBarStyle, StatusBar } from '@utils/native/status-bar'; import { @@ -17,7 +16,6 @@ import { present, createTriggerController, } from '@utils/overlays'; -import type { OverlayEventDetail } from '@utils/overlays-interface'; import { getClassMap } from '@utils/theme'; import { deepReady, waitForMount } from '@utils/transition'; @@ -32,6 +30,8 @@ import type { Gesture, OverlayInterface, } from '../../interface'; +import { KEYBOARD_DID_OPEN } from '../../utils/keyboard/keyboard'; +import type { OverlayEventDetail } from '../../utils/overlays-interface'; import { iosEnterAnimation } from './animations/ios.enter'; import { iosLeaveAnimation } from './animations/ios.leave'; diff --git a/core/src/components/popover/popover.tsx b/core/src/components/popover/popover.tsx index e40cd22d7e..b1ecd29557 100644 --- a/core/src/components/popover/popover.tsx +++ b/core/src/components/popover/popover.tsx @@ -4,13 +4,13 @@ import { CoreDelegate, attachComponent, detachComponent } from '@utils/framework import { addEventListener, raf, hasLazyBuild } from '@utils/helpers'; import { printIonWarning } from '@utils/logging'; import { BACKDROP, dismiss, eventMethod, focusFirstDescendant, prepareOverlay, present } from '@utils/overlays'; -import type { OverlayEventDetail } from '@utils/overlays-interface'; import { isPlatform } from '@utils/platform'; import { getClassMap } from '@utils/theme'; import { deepReady, waitForMount } from '@utils/transition'; import { getIonMode } from '../../global/ionic-global'; import type { AnimationBuilder, ComponentProps, ComponentRef, FrameworkDelegate } from '../../interface'; +import type { OverlayEventDetail } from '../../utils/overlays-interface'; import { iosEnterAnimation } from './animations/ios.enter'; import { iosLeaveAnimation } from './animations/ios.leave';