fix: import paths

The `win` utility was moved to the browser/ folder.
This commit is contained in:
Sean Perkins
2023-06-01 13:05:00 -04:00
parent 49b91692fc
commit d10509f840
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
import { win } from '@utils/browser';
import { StatusBar, Style } from '@utils/native/status-bar'; import { StatusBar, Style } from '@utils/native/status-bar';
import { win } from '@utils/window';
/** /**
* Use y = mx + b to * Use y = mx + b to

View File

@ -1,5 +1,6 @@
import type { ComponentInterface, EventEmitter } from '@stencil/core'; import type { ComponentInterface, EventEmitter } from '@stencil/core';
import { Component, Element, Event, Host, Method, Prop, State, Watch, h, forceUpdate } from '@stencil/core'; import { Component, Element, Event, Host, Method, Prop, State, Watch, h, forceUpdate } from '@stencil/core';
import { win } from '@utils/browser';
import type { LegacyFormController } from '@utils/forms'; import type { LegacyFormController } from '@utils/forms';
import { createLegacyFormController } from '@utils/forms'; import { createLegacyFormController } from '@utils/forms';
import { findItemLabel, focusElement, getAriaLabel, renderHiddenInput, inheritAttributes, raf } from '@utils/helpers'; import { findItemLabel, focusElement, getAriaLabel, renderHiddenInput, inheritAttributes, raf } from '@utils/helpers';
@ -10,7 +11,6 @@ import type { OverlaySelect } from '@utils/overlays-interface';
import { isRTL } from '@utils/rtl'; import { isRTL } from '@utils/rtl';
import { createColorClasses, hostContext } from '@utils/theme'; import { createColorClasses, hostContext } from '@utils/theme';
import { watchForOptions } from '@utils/watch-options'; import { watchForOptions } from '@utils/watch-options';
import { win } from '@utils/window';
import { caretDownSharp, chevronExpand } from 'ionicons/icons'; import { caretDownSharp, chevronExpand } from 'ionicons/icons';
import { getIonMode } from '../../global/ionic-global'; import { getIonMode } from '../../global/ionic-global';