diff --git a/core/src/components/input/input.utils.ts b/core/src/components/input/input.utils.ts index d6812be12d..809deb8a9a 100644 --- a/core/src/components/input/input.utils.ts +++ b/core/src/components/input/input.utils.ts @@ -1,4 +1,4 @@ -import { printIonError } from '@utils/logging'; +import { printIonError } from '../../utils/logging'; export const getCounterText = ( value: string | number | null | undefined, diff --git a/core/src/components/item/item.tsx b/core/src/components/item/item.tsx index 7b523ddaa7..62c64ed0db 100644 --- a/core/src/components/item/item.tsx +++ b/core/src/components/item/item.tsx @@ -1,6 +1,5 @@ import type { ComponentInterface } from '@stencil/core'; import { Component, Element, Host, Listen, Prop, State, Watch, forceUpdate, h } from '@stencil/core'; -import { printIonError, printIonWarning } from '@utils/logging'; import { chevronForward } from 'ionicons/icons'; import { getIonMode } from '../../global/ionic-global'; @@ -8,6 +7,7 @@ import type { AnimationBuilder, Color, CssClassMap, StyleEventDetail } from '../ import type { AnchorInterface, ButtonInterface } from '../../utils/element-interface'; import type { Attributes } from '../../utils/helpers'; import { inheritAttributes, raf } from '../../utils/helpers'; +import { printIonError, printIonWarning } from '../../utils/logging'; import { createColorClasses, hostContext, openURL } from '../../utils/theme'; import type { InputInputEventDetail } from '../input/input-interface'; import type { RouterDirection } from '../router/utils/interface'; diff --git a/core/src/components/picker-column-internal/picker-column-internal.tsx b/core/src/components/picker-column-internal/picker-column-internal.tsx index 41ebbb613d..1ef716c74f 100644 --- a/core/src/components/picker-column-internal/picker-column-internal.tsx +++ b/core/src/components/picker-column-internal/picker-column-internal.tsx @@ -1,11 +1,11 @@ import type { ComponentInterface, EventEmitter } from '@stencil/core'; import { Component, Element, Event, Host, Method, Prop, State, Watch, h } from '@stencil/core'; -import { isPlatform } from '@utils/platform'; import { getIonMode } from '../../global/ionic-global'; import type { Color } from '../../interface'; import { getElementRoot, raf } from '../../utils/helpers'; import { hapticSelectionChanged, hapticSelectionEnd, hapticSelectionStart } from '../../utils/native/haptic'; +import { isPlatform } from '../../utils/platform'; import { createColorClasses } from '../../utils/theme'; import type { PickerInternalCustomEvent } from '../picker-internal/picker-internal-interfaces'; diff --git a/core/src/components/select/select.tsx b/core/src/components/select/select.tsx index 709e6ec9db..7e2056ad25 100644 --- a/core/src/components/select/select.tsx +++ b/core/src/components/select/select.tsx @@ -1,9 +1,5 @@ import type { ComponentInterface, EventEmitter } from '@stencil/core'; import { Component, Element, Event, Host, Method, Prop, State, Watch, h, forceUpdate } from '@stencil/core'; -import { createLegacyFormController } from '@utils/forms'; -import type { LegacyFormController } from '@utils/forms'; -import { printIonWarning } from '@utils/logging'; -import { isRTL } from '@utils/rtl'; import { caretDownSharp } from 'ionicons/icons'; import { getIonMode } from '../../global/ionic-global'; @@ -15,10 +11,14 @@ import type { PopoverOptions, StyleEventDetail, } from '../../interface'; +import type { LegacyFormController } from '../../utils/forms'; +import { createLegacyFormController } from '../../utils/forms'; import { findItemLabel, focusElement, getAriaLabel, renderHiddenInput, inheritAttributes } from '../../utils/helpers'; import type { Attributes } from '../../utils/helpers'; +import { printIonWarning } from '../../utils/logging'; import { actionSheetController, alertController, popoverController } from '../../utils/overlays'; import type { OverlaySelect } from '../../utils/overlays-interface'; +import { isRTL } from '../../utils/rtl'; import { createColorClasses, hostContext } from '../../utils/theme'; import { watchForOptions } from '../../utils/watch-options'; import type { ActionSheetButton } from '../action-sheet/action-sheet-interface'; diff --git a/core/src/utils/overlays.ts b/core/src/utils/overlays.ts index a8d2804a9f..ea173cae3f 100644 --- a/core/src/utils/overlays.ts +++ b/core/src/utils/overlays.ts @@ -1,5 +1,3 @@ -import { printIonWarning } from '@utils/logging'; - import { config } from '../global/config'; import { getIonMode } from '../global/ionic-global'; import type { @@ -22,6 +20,7 @@ import type { import { CoreDelegate } from './framework-delegate'; import { OVERLAY_BACK_BUTTON_PRIORITY } from './hardware-back-button'; import { addEventListener, componentOnReady, focusElement, getElementRoot, removeEventListener } from './helpers'; +import { printIonWarning } from './logging'; let lastId = 0;