mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-10 00:27:41 +08:00
chore(deps): update to stencil v3 (#26663)
This commit is contained in:
@ -1,7 +1,8 @@
|
||||
import type { Animation, ModalAnimationOptions } from '../../../interface';
|
||||
import type { Animation } from '../../../interface';
|
||||
import { createAnimation } from '../../../utils/animation/animation';
|
||||
import { getElementRoot } from '../../../utils/helpers';
|
||||
import { SwipeToCloseDefaults } from '../gestures/swipe-to-close';
|
||||
import type { ModalAnimationOptions } from '../modal-interface';
|
||||
|
||||
import { createSheetEnterAnimation } from './sheet';
|
||||
|
||||
|
||||
@ -1,7 +1,8 @@
|
||||
import type { Animation, ModalAnimationOptions } from '../../../interface';
|
||||
import type { Animation } from '../../../interface';
|
||||
import { createAnimation } from '../../../utils/animation/animation';
|
||||
import { getElementRoot } from '../../../utils/helpers';
|
||||
import { SwipeToCloseDefaults } from '../gestures/swipe-to-close';
|
||||
import type { ModalAnimationOptions } from '../modal-interface';
|
||||
|
||||
import { createSheetLeaveAnimation } from './sheet';
|
||||
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
import type { Animation, ModalAnimationOptions } from '../../../interface';
|
||||
import type { Animation } from '../../../interface';
|
||||
import { createAnimation } from '../../../utils/animation/animation';
|
||||
import { getElementRoot } from '../../../utils/helpers';
|
||||
import type { ModalAnimationOptions } from '../modal-interface';
|
||||
|
||||
import { createSheetEnterAnimation } from './sheet';
|
||||
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
import type { Animation, ModalAnimationOptions } from '../../../interface';
|
||||
import type { Animation } from '../../../interface';
|
||||
import { createAnimation } from '../../../utils/animation/animation';
|
||||
import { getElementRoot } from '../../../utils/helpers';
|
||||
import type { ModalAnimationOptions } from '../modal-interface';
|
||||
|
||||
import { createSheetLeaveAnimation } from './sheet';
|
||||
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
import type { ModalAnimationOptions } from '../../../interface';
|
||||
import { createAnimation } from '../../../utils/animation/animation';
|
||||
import type { ModalAnimationOptions } from '../modal-interface';
|
||||
import { getBackdropValueForSheet } from '../utils';
|
||||
|
||||
export const createSheetEnterAnimation = (opts: ModalAnimationOptions) => {
|
||||
|
||||
@ -10,9 +10,6 @@ import type {
|
||||
ComponentRef,
|
||||
FrameworkDelegate,
|
||||
Gesture,
|
||||
ModalBreakpointChangeEventDetail,
|
||||
ModalHandleBehavior,
|
||||
OverlayEventDetail,
|
||||
OverlayInterface,
|
||||
} from '../../interface';
|
||||
import { findIonContent, printIonContentErrorMsg } from '../../utils/content';
|
||||
@ -32,6 +29,7 @@ import {
|
||||
present,
|
||||
createTriggerController,
|
||||
} from '../../utils/overlays';
|
||||
import type { OverlayEventDetail } from '../../utils/overlays-interface';
|
||||
import { getClassMap } from '../../utils/theme';
|
||||
import { deepReady } from '../../utils/transition';
|
||||
|
||||
@ -42,6 +40,7 @@ import { mdLeaveAnimation } from './animations/md.leave';
|
||||
import type { MoveSheetToBreakpointOptions } from './gestures/sheet';
|
||||
import { createSheetGesture } from './gestures/sheet';
|
||||
import { createSwipeToCloseGesture } from './gestures/swipe-to-close';
|
||||
import type { ModalBreakpointChangeEventDetail, ModalHandleBehavior } from './modal-interface';
|
||||
import { setCardStatusBarDark, setCardStatusBarDefault } from './utils';
|
||||
|
||||
// TODO(FW-2832): types
|
||||
|
||||
Reference in New Issue
Block a user