mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-09 16:16:41 +08:00
chore(deps): update to stencil v3 (#26663)
This commit is contained in:
@ -1,19 +1,14 @@
|
||||
import type { ComponentInterface, EventEmitter } from '@stencil/core';
|
||||
import { Component, Element, Event, Listen, Method, Prop } from '@stencil/core';
|
||||
|
||||
import type {
|
||||
AnimationBuilder,
|
||||
BackButtonEvent,
|
||||
RouteChain,
|
||||
RouterDirection,
|
||||
RouterEventDetail,
|
||||
} from '../../interface';
|
||||
import type { AnimationBuilder, BackButtonEvent } from '../../interface';
|
||||
import { debounce } from '../../utils/helpers';
|
||||
import type { NavigationHookResult } from '../route/route-interface';
|
||||
|
||||
import { ROUTER_INTENT_BACK, ROUTER_INTENT_FORWARD, ROUTER_INTENT_NONE } from './utils/constants';
|
||||
import { printRedirects, printRoutes } from './utils/debug';
|
||||
import { readNavState, waitUntilNavNode, writeNavState } from './utils/dom';
|
||||
import type { RouteChain, RouterDirection, RouterEventDetail } from './utils/interface';
|
||||
import { findChainForIDs, findChainForSegments, findRouteRedirect } from './utils/matching';
|
||||
import { readRedirects, readRoutes } from './utils/parser';
|
||||
import { chainToSegments, generatePath, parsePath, readSegments, writeSegments } from './utils/path';
|
||||
|
||||
@ -1,7 +1,8 @@
|
||||
import type { AnimationBuilder, NavOutletElement, RouteChain, RouteID, RouterDirection } from '../../../interface';
|
||||
import type { AnimationBuilder } from '../../../interface';
|
||||
import { componentOnReady } from '../../../utils/helpers';
|
||||
|
||||
import { ROUTER_INTENT_NONE } from './constants';
|
||||
import type { NavOutletElement, RouteChain, RouteID, RouterDirection } from './interface';
|
||||
|
||||
/**
|
||||
* Activates the passed route chain.
|
||||
|
||||
Reference in New Issue
Block a user