From 1f9e43b7bbb848c7ee2aaa89ffece17002b2c915 Mon Sep 17 00:00:00 2001
From: riku <risaku@163.com>
Date: 星期五, 16 一月 2026 17:31:08 +0800
Subject: [PATCH] 2026.1.16

---
 miniprogram_npm/tdesign-miniprogram/calendar/type.d.ts |   31 +++++++++++++++++++++++++++----
 1 files changed, 27 insertions(+), 4 deletions(-)

diff --git a/miniprogram_npm/tdesign-miniprogram/calendar/type.d.ts b/miniprogram_npm/tdesign-miniprogram/calendar/type.d.ts
index a751960..1b69017 100644
--- a/miniprogram_npm/tdesign-miniprogram/calendar/type.d.ts
+++ b/miniprogram_npm/tdesign-miniprogram/calendar/type.d.ts
@@ -1,5 +1,9 @@
 import { ButtonProps } from '../button/index';
 export interface TdCalendarProps {
+    allowSameDay?: {
+        type: BooleanConstructor;
+        value?: boolean;
+    };
     autoClose?: {
         type: BooleanConstructor;
         value?: boolean;
@@ -7,10 +11,6 @@
     confirmBtn?: {
         type: null;
         value?: string | ButtonProps | null;
-    };
-    style?: {
-        type: StringConstructor;
-        value?: string;
     };
     firstDayOfWeek?: {
         type: NumberConstructor;
@@ -20,6 +20,10 @@
         type: undefined;
         value?: CalendarFormatType;
     };
+    localeText?: {
+        type: ObjectConstructor;
+        value?: CalendarLocaleText;
+    };
     maxDate?: {
         type: NumberConstructor;
         value?: number;
@@ -27,6 +31,14 @@
     minDate?: {
         type: NumberConstructor;
         value?: number;
+    };
+    readonly?: {
+        type: BooleanConstructor;
+        value?: boolean;
+    };
+    switchMode?: {
+        type: StringConstructor;
+        value?: 'none' | 'month' | 'year-month';
     };
     title?: {
         type: StringConstructor;
@@ -37,6 +49,10 @@
         value?: 'single' | 'multiple' | 'range';
     };
     usePopup?: {
+        type: BooleanConstructor;
+        value?: boolean;
+    };
+    usingCustomNavbar?: {
         type: BooleanConstructor;
         value?: boolean;
     };
@@ -63,3 +79,10 @@
     prefix?: string;
     suffix?: string;
 }
+export interface CalendarLocaleText {
+    title?: string;
+    weekdays?: string[];
+    monthTitle?: string;
+    months?: string[];
+    confirm?: string;
+}

--
Gitblit v1.9.3