fix(all): import path is now correct when using ionic in a stencil app (#25123)

resolves #25122
This commit is contained in:
Liam DeBeasi
2022-04-14 19:19:52 +05:45
committed by GitHub
parent 8133b5a9f1
commit 1b407abdf5
9 changed files with 13 additions and 11 deletions

View File

@@ -1,5 +1,4 @@
import { getScrollElement, scrollByPoint } from '@utils/content';
import { getScrollElement, scrollByPoint } from '../../content';
import { pointerCoord, raf } from '../../helpers';
import { isFocused, relocateInput } from './common';

View File

@@ -1,4 +1,4 @@
import { findClosestIonContent } from '@utils/content';
import { findClosestIonContent } from '../../content';
const PADDING_TIMER_KEY = '$ionPaddingTimer';

View File

@@ -1,6 +1,5 @@
import { findClosestIonContent } from '@utils/content';
import type { Config } from '../../interface';
import { findClosestIonContent } from '../content';
import { componentOnReady } from '../helpers';
import { enableHideCaretOnScroll } from './hacks/hide-caret';

View File

@@ -1,6 +1,6 @@
import { readTask, writeTask } from '@stencil/core';
import { findClosestIonContent, scrollToTop } from '@utils/content';
import { findClosestIonContent, scrollToTop } from './content';
import { componentOnReady } from './helpers';
export const startStatusTap = () => {