From 0da4e7b2c43101a37be0bb57d2d2593f505a400d Mon Sep 17 00:00:00 2001 From: sunhao Date: Fri, 20 Sep 2024 15:41:05 +0800 Subject: [PATCH] * btn-group: change BtnGroupOptions type. --- lib/btn-group/src/types/btn-group-options.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/btn-group/src/types/btn-group-options.ts b/lib/btn-group/src/types/btn-group-options.ts index 278630a2c1..55c1d7cb92 100644 --- a/lib/btn-group/src/types/btn-group-options.ts +++ b/lib/btn-group/src/types/btn-group-options.ts @@ -3,7 +3,7 @@ import type {CommonListProps, Item} from '@zui/common-list'; import type {BtnGroupItem} from './btn-group-item'; export interface BtnGroupOptions extends CommonListProps { - size?: 'xs' | 'sm' | 'lg' | 'xl'; + size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl'; type?: string; btnType?: string; btnProps?: Partial;