From 1295130cf194e3b93bc9ee3582778fe499d4280b Mon Sep 17 00:00:00 2001 From: Haixing <65376724+HaixingOoO@users.noreply.github.com> Date: Wed, 29 May 2024 23:15:21 +0800 Subject: [PATCH] fix(select-input): fix missing size type (#2930) --- src/select-input/interface.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/select-input/interface.d.ts b/src/select-input/interface.d.ts index f49f8dcf26..48b68b01ce 100644 --- a/src/select-input/interface.d.ts +++ b/src/select-input/interface.d.ts @@ -10,6 +10,7 @@ export interface SelectInputCommonProperties { readonly?: TdSelectInputProps['readonly']; suffix?: TdSelectInputProps['suffix']; suffixIcon?: TdSelectInputProps['suffixIcon']; + size?: TdSelectInputProps['size']; onPaste?: TdSelectInputProps['onPaste']; onEnter?: TdSelectInputProps['onEnter']; onMouseenter?: TdSelectInputProps['onMouseenter'];