@a2simcode/ui 0.0.251 → 0.0.253
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -6,6 +6,8 @@ export interface InputLayerProps {
|
|
|
6
6
|
icon?: string;
|
|
7
7
|
/** 弹窗宽度 */
|
|
8
8
|
width?: number;
|
|
9
|
+
/** 弹窗宽度,区分子表时,设置的列宽度 */
|
|
10
|
+
layerWidth?: number;
|
|
9
11
|
/** 弹窗高度 */
|
|
10
12
|
height?: number;
|
|
11
13
|
/** 弹窗标题 */
|
|
@@ -57,11 +59,18 @@ export interface InputLayerProps {
|
|
|
57
59
|
/** 按钮文本 */
|
|
58
60
|
buttonLabel?: string;
|
|
59
61
|
/** 按钮类型 */
|
|
60
|
-
buttonType?: 'default' | 'primary' | 'dashed' | 'text' | 'link';
|
|
62
|
+
buttonType?: 'default' | 'primary' | 'dashed' | 'text' | 'link' | 'outline';
|
|
61
63
|
/** 设置按钮形状 */
|
|
62
64
|
buttonShape?: 'default' | 'circle' | 'round';
|
|
63
|
-
/**
|
|
64
|
-
|
|
65
|
+
/** 设置按钮状态 */
|
|
66
|
+
buttonStatus?: 'normal' | 'success' | 'warning' | 'danger';
|
|
67
|
+
/** 设置按钮是否块级 */
|
|
68
|
+
buttonBlock?: boolean;
|
|
69
|
+
notButtonLabel?: boolean;
|
|
70
|
+
/** 按钮加载中 */
|
|
71
|
+
buttonLoading?: boolean | {
|
|
72
|
+
delay?: number;
|
|
73
|
+
};
|
|
65
74
|
/** 特定场合下使用 */
|
|
66
75
|
isSaveSelectData?: boolean;
|
|
67
76
|
/** 按钮组 */
|