From 565959b13297563daec16dccf3f893f4dbe9e5a8 Mon Sep 17 00:00:00 2001 From: 1zumii <524123601@qq.com> Date: Thu, 18 Apr 2024 20:09:03 +0800 Subject: [PATCH] =?UTF-8?q?fix(Table,=20Transfer):=20=E8=A7=A3=E5=86=B3=20?= =?UTF-8?q?build:esm-browser=20=E6=8A=A5=E9=94=99=E5=BE=AA=E7=8E=AF?= =?UTF-8?q?=E4=BE=9D=E8=B5=96=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/table/useTableStyle.ts | 8 ++++---- components/transfer/interface.ts | 2 +- components/transfer/props.ts | 8 ++++---- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/components/table/useTableStyle.ts b/components/table/useTableStyle.ts index 24f266d5..b3f1cf06 100644 --- a/components/table/useTableStyle.ts +++ b/components/table/useTableStyle.ts @@ -6,10 +6,10 @@ import useTableLayout from './useTableLayout'; const prefixCls = getPrefixCls('table'); -import { type TableProps } from './table'; -import { type RowType } from './interface'; -import { type ColumnInst } from './column'; -import { type ColumnFixedStatus } from './useTableColumn'; +import type { ColumnFixedStatus } from './useTableColumn'; +import type { TableProps } from './table'; +import type { RowType } from './interface'; +import type { ColumnInst } from './column'; export default ({ props, diff --git a/components/transfer/interface.ts b/components/transfer/interface.ts index 55d8ba33..1bf6266f 100644 --- a/components/transfer/interface.ts +++ b/components/transfer/interface.ts @@ -2,7 +2,7 @@ import { type CSSProperties, type Ref, type VNodeChild } from 'vue'; import { type TreeOption } from '../tree/interface'; import { type TreeProps } from '../tree/props'; import { type RequiredByKeys } from '../_util/types'; -import { type TransferInnerProps } from './props'; +import type { TransferInnerProps } from './props'; export type TreeFilter = TreeProps['filterMethod']; diff --git a/components/transfer/props.ts b/components/transfer/props.ts index f82c5801..66324b64 100644 --- a/components/transfer/props.ts +++ b/components/transfer/props.ts @@ -3,10 +3,10 @@ import { type ComponentInnerProps, type ExtractPublicPropTypes, } from '../_util/interface'; -import { - type TransferFilter, - type TransferOption, - type TransferOptionValue, +import type { + TransferFilter, + TransferOption, + TransferOptionValue, } from './interface'; export const transferProps = {