From cf4787bc8188cd0acc8a42793730b076742f29c1 Mon Sep 17 00:00:00 2001
From: riku <risaku@163.com>
Date: 星期四, 16 四月 2026 17:37:35 +0800
Subject: [PATCH] 新增现场巡查模块(待完成)
---
miniprogram_npm/tdesign-miniprogram/action-sheet/type.d.ts | 22 +++++++++++++++++-----
1 files changed, 17 insertions(+), 5 deletions(-)
diff --git a/miniprogram_npm/tdesign-miniprogram/action-sheet/type.d.ts b/miniprogram_npm/tdesign-miniprogram/action-sheet/type.d.ts
index c218af7..8eb7822 100644
--- a/miniprogram_npm/tdesign-miniprogram/action-sheet/type.d.ts
+++ b/miniprogram_npm/tdesign-miniprogram/action-sheet/type.d.ts
@@ -1,3 +1,4 @@
+import { PopupProps } from '../popup/index';
export interface TdActionSheetProps {
align?: {
type: StringConstructor;
@@ -18,8 +19,17 @@
items: {
type: ArrayConstructor;
value?: Array<string | ActionSheetItem>;
+ required?: boolean;
+ };
+ popupProps?: {
+ type: ObjectConstructor;
+ value?: PopupProps;
};
showCancel?: {
+ type: BooleanConstructor;
+ value?: boolean;
+ };
+ showOverlay?: {
type: BooleanConstructor;
value?: boolean;
};
@@ -27,21 +37,23 @@
type: StringConstructor;
value?: 'list' | 'grid';
};
- visible: {
+ usingCustomNavbar?: {
type: BooleanConstructor;
value?: boolean;
};
- defaultVisible: {
+ visible?: {
type: BooleanConstructor;
value?: boolean;
};
- popupProps: {
- type: ObjectConstructor;
- value?: object;
+ defaultVisible?: {
+ type: BooleanConstructor;
+ value?: boolean;
};
}
export interface ActionSheetItem {
label: string;
color?: string;
disabled?: boolean;
+ icon?: string;
+ suffixIcon?: string;
}
--
Gitblit v1.9.3