From ae89a42e5cab4119b69e4ee6543b95a61aa6a833 Mon Sep 17 00:00:00 2001 From: HaixingOoO <974758671@qq.com> Date: Sun, 29 Dec 2024 01:45:22 +0800 Subject: [PATCH] chore: reset defaultProps.ts radioDefaultProps type --- .../products/tdesign-react/src/radio/defaultProps.ts | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/packages/products/tdesign-react/src/radio/defaultProps.ts b/packages/products/tdesign-react/src/radio/defaultProps.ts index 60db7f47..2828016b 100644 --- a/packages/products/tdesign-react/src/radio/defaultProps.ts +++ b/packages/products/tdesign-react/src/radio/defaultProps.ts @@ -2,7 +2,15 @@ * 该文件为脚本自动生成文件,请勿随意修改。如需修改请联系 PMC * */ -import { TdRadioGroupProps } from './type'; +import { TdRadioProps, TdRadioGroupProps } from './type'; + +export const radioDefaultProps: TdRadioProps = { + allowUncheck: false, + defaultChecked: false, + disabled: undefined, + readonly: undefined, + value: undefined, +}; export const radioGroupDefaultProps: TdRadioGroupProps = { allowUncheck: false,