style: update vue dep
parent
a679542418
commit
8c4eb40372
|
@ -1,4 +1,4 @@
|
||||||
import type { CSSProperties } from '@vue/runtime-dom';
|
import type { CSSProperties } from 'vue';
|
||||||
import type { AlignType } from '../vc-align/interface';
|
import type { AlignType } from '../vc-align/interface';
|
||||||
import Trigger from '../vc-trigger';
|
import Trigger from '../vc-trigger';
|
||||||
import classNames from '../_util/classNames';
|
import classNames from '../_util/classNames';
|
||||||
|
|
|
@ -7,7 +7,7 @@ import { setDateTime as setTime } from '../../utils/timeUtil';
|
||||||
import type { PanelRefProps, DisabledTime } from '../../interface';
|
import type { PanelRefProps, DisabledTime } from '../../interface';
|
||||||
import KeyCode from '../../../_util/KeyCode';
|
import KeyCode from '../../../_util/KeyCode';
|
||||||
import classNames from '../../../_util/classNames';
|
import classNames from '../../../_util/classNames';
|
||||||
import { ref } from '@vue/reactivity';
|
import { ref } from 'vue';
|
||||||
import useMergeProps from '../../hooks/useMergeProps';
|
import useMergeProps from '../../hooks/useMergeProps';
|
||||||
|
|
||||||
export type DatetimePanelProps<DateType> = {
|
export type DatetimePanelProps<DateType> = {
|
||||||
|
|
|
@ -1,9 +1,7 @@
|
||||||
import { scrollTo, waitElementReady } from '../../utils/uiUtil';
|
import { scrollTo, waitElementReady } from '../../utils/uiUtil';
|
||||||
import { useInjectPanel } from '../../PanelContext';
|
import { useInjectPanel } from '../../PanelContext';
|
||||||
import classNames from '../../../_util/classNames';
|
import classNames from '../../../_util/classNames';
|
||||||
import { ref } from '@vue/reactivity';
|
import { ref, onBeforeUnmount, watch, defineComponent, nextTick } from 'vue';
|
||||||
import { onBeforeUnmount, watch } from '@vue/runtime-core';
|
|
||||||
import { defineComponent, nextTick } from 'vue';
|
|
||||||
|
|
||||||
export type Unit = {
|
export type Unit = {
|
||||||
label: any;
|
label: any;
|
||||||
|
|
|
@ -4,7 +4,7 @@ import TimeBody from './TimeBody';
|
||||||
import type { PanelSharedProps, DisabledTimes } from '../../interface';
|
import type { PanelSharedProps, DisabledTimes } from '../../interface';
|
||||||
import { createKeydownHandler } from '../../utils/uiUtil';
|
import { createKeydownHandler } from '../../utils/uiUtil';
|
||||||
import classNames from '../../../_util/classNames';
|
import classNames from '../../../_util/classNames';
|
||||||
import { ref } from '@vue/reactivity';
|
import { ref } from 'vue';
|
||||||
import useMergeProps from '../../hooks/useMergeProps';
|
import useMergeProps from '../../hooks/useMergeProps';
|
||||||
|
|
||||||
export type SharedTimeProps<DateType> = {
|
export type SharedTimeProps<DateType> = {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import type { CSSProperties } from '@vue/runtime-dom';
|
import type { CSSProperties } from 'vue';
|
||||||
import getScrollBarSize from '../../_util/getScrollBarSize';
|
import getScrollBarSize from '../../_util/getScrollBarSize';
|
||||||
import setStyle from '../../_util/setStyle';
|
import setStyle from '../../_util/setStyle';
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue