fix(many): resolve import errors with stencil apps (#26781)

resolves #26778
This commit is contained in:
Liam DeBeasi
2023-02-13 08:59:21 -05:00
committed by GitHub
parent f7f6f1d9f9
commit 1eea054c12
5 changed files with 8 additions and 9 deletions

View File

@ -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';