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 1280 additions and 1163 deletions

View File

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

View File

@ -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.