From 8e3f3890e93d097df4be744648b9ac404d20a558 Mon Sep 17 00:00:00 2001
From: riku <risaku@163.com>
Date: 星期四, 23 四月 2026 17:58:50 +0800
Subject: [PATCH] 2026.4.23

---
 miniprogram_npm/tdesign-miniprogram/checkbox-group/type.d.ts |   25 ++++++++++++++++++-------
 1 files changed, 18 insertions(+), 7 deletions(-)

diff --git a/miniprogram_npm/tdesign-miniprogram/checkbox-group/type.d.ts b/miniprogram_npm/tdesign-miniprogram/checkbox-group/type.d.ts
index 641deb5..a4aff59 100644
--- a/miniprogram_npm/tdesign-miniprogram/checkbox-group/type.d.ts
+++ b/miniprogram_npm/tdesign-miniprogram/checkbox-group/type.d.ts
@@ -1,11 +1,17 @@
-export interface TdCheckboxGroupProps {
-    style?: {
-        type: StringConstructor;
-        value?: string;
+import { CheckboxIconType } from '../checkbox/index';
+import { KeysType } from '../common/common';
+export interface TdCheckboxGroupProps<T = CheckboxGroupValue> {
+    borderless?: {
+        type: BooleanConstructor;
+        value?: boolean;
     };
     disabled?: {
         type: BooleanConstructor;
         value?: boolean;
+    };
+    keys?: {
+        type: ObjectConstructor;
+        value?: KeysType;
     };
     max?: {
         type: NumberConstructor;
@@ -19,13 +25,17 @@
         type: ArrayConstructor;
         value?: Array<CheckboxOption>;
     };
+    readonly?: {
+        type: BooleanConstructor;
+        value?: boolean;
+    };
     value?: {
         type: ArrayConstructor;
-        value?: CheckboxGroupValue;
+        value?: T;
     };
     defaultValue?: {
         type: ArrayConstructor;
-        value?: CheckboxGroupValue;
+        value?: T;
     };
 }
 export declare type CheckboxOption = string | number | CheckboxOptionObj;
@@ -33,6 +43,7 @@
     label?: string;
     value?: string | number;
     disabled?: boolean;
+    icon?: CheckboxIconType;
     checkAll?: true;
 }
-export declare type CheckboxGroupValue = Array<string | number>;
+export declare type CheckboxGroupValue = Array<string | number | boolean>;

--
Gitblit v1.9.3