chore(deps): update to stencil v3 (#26663)

This commit is contained in:
Liam DeBeasi
2023-01-31 18:07:22 -05:00
committed by GitHub
parent e6c7c57466
commit 1a8bd6d8c6
77 changed files with 1159 additions and 1042 deletions

View File

@ -3,30 +3,23 @@ import { Build, Component, Element, Event, Method, Prop, Watch, h } from '@stenc
import { config } from '../../global/config';
import { getIonMode } from '../../global/ionic-global';
import type { Animation, AnimationBuilder, ComponentProps, FrameworkDelegate, Gesture } from '../../interface';
import { getTimeGivenProgression } from '../../utils/animation/cubic-bezier';
import { assert } from '../../utils/helpers';
import type { TransitionOptions } from '../../utils/transition';
import { lifecycle, setPageHidden, transition } from '../../utils/transition';
import type { NavOutlet, RouteID, RouteWrite, RouterDirection } from '../router/utils/interface';
import { LIFECYCLE_DID_LEAVE, LIFECYCLE_WILL_LEAVE, LIFECYCLE_WILL_UNLOAD } from './constants';
import type {
Animation,
AnimationBuilder,
ComponentProps,
FrameworkDelegate,
Gesture,
NavComponent,
NavComponentWithProps,
NavOptions,
NavOutlet,
NavResult,
RouteID,
RouteWrite,
RouterDirection,
TransitionDoneFn,
TransitionInstruction,
ViewController,
} from '../../interface';
import { getTimeGivenProgression } from '../../utils/animation/cubic-bezier';
import { assert } from '../../utils/helpers';
import type { TransitionOptions } from '../../utils/transition';
import { lifecycle, setPageHidden, transition } from '../../utils/transition';
import { LIFECYCLE_DID_LEAVE, LIFECYCLE_WILL_LEAVE, LIFECYCLE_WILL_UNLOAD } from './constants';
} from './nav-interface';
import type { ViewController } from './view-controller';
import { VIEW_STATE_ATTACHED, VIEW_STATE_DESTROYED, VIEW_STATE_NEW, convertToViews, matches } from './view-controller';
@Component({