From 3282e95db0207ee133d1e98d9771dec9d83b0fc4 Mon Sep 17 00:00:00 2001
From: riku <risaku@163.com>
Date: 星期四, 02 四月 2026 16:24:38 +0800
Subject: [PATCH] 2026.4.2 新增专题管理功能

---
 miniprogram_npm/tdesign-miniprogram/checkbox-group/checkbox-group.d.ts |   42 ++++++------------------------------------
 1 files changed, 6 insertions(+), 36 deletions(-)

diff --git a/miniprogram_npm/tdesign-miniprogram/checkbox-group/checkbox-group.d.ts b/miniprogram_npm/tdesign-miniprogram/checkbox-group/checkbox-group.d.ts
index ab803a6..9a0e9f8 100644
--- a/miniprogram_npm/tdesign-miniprogram/checkbox-group/checkbox-group.d.ts
+++ b/miniprogram_npm/tdesign-miniprogram/checkbox-group/checkbox-group.d.ts
@@ -1,49 +1,18 @@
 import { SuperComponent, RelationsOptions } from '../common/src/index';
 export default class CheckBoxGroup extends SuperComponent {
     externalClasses: string[];
+    behaviors: string[];
     relations: RelationsOptions;
     data: {
         prefix: string;
         classPrefix: string;
         checkboxOptions: any[];
     };
-    properties: {
-        borderless: {
-            type: BooleanConstructor;
-            value: boolean;
-        };
-        style?: {
-            type: StringConstructor;
-            value?: string;
-        };
-        disabled?: {
-            type: BooleanConstructor;
-            value?: boolean;
-        };
-        max?: {
-            type: NumberConstructor;
-            value?: number;
-        };
-        name?: {
-            type: StringConstructor;
-            value?: string;
-        };
-        options?: {
-            type: ArrayConstructor;
-            value?: import("./type").CheckboxOption[];
-        };
-        value?: {
-            type: ArrayConstructor;
-            value?: import("./type").CheckboxGroupValue;
-        };
-        defaultValue?: {
-            type: ArrayConstructor;
-            value?: import("./type").CheckboxGroupValue;
-        };
-    };
+    properties: import("./type").TdCheckboxGroupProps<import("./type").CheckboxGroupValue>;
     observers: {
         value(): void;
         options(): void;
+        disabled(v: any): void;
     };
     lifetimes: {
         ready(): void;
@@ -54,12 +23,13 @@
     }[];
     $checkAll: any;
     methods: {
-        getChilds(): any;
+        getChildren(): any;
         updateChildren(): void;
-        updateValue({ value, checked, checkAll, indeterminate }: {
+        updateValue({ value, checked, checkAll, item, indeterminate }: {
             value: any;
             checked: any;
             checkAll: any;
+            item: any;
             indeterminate: any;
         }): void;
         initWithOptions(): void;

--
Gitblit v1.9.3