@a2simcode/ui 0.0.252 → 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.
|
@@ -59,11 +59,18 @@ export interface InputLayerProps {
|
|
|
59
59
|
/** 按钮文本 */
|
|
60
60
|
buttonLabel?: string;
|
|
61
61
|
/** 按钮类型 */
|
|
62
|
-
buttonType?: 'default' | 'primary' | 'dashed' | 'text' | 'link';
|
|
62
|
+
buttonType?: 'default' | 'primary' | 'dashed' | 'text' | 'link' | 'outline';
|
|
63
63
|
/** 设置按钮形状 */
|
|
64
64
|
buttonShape?: 'default' | 'circle' | 'round';
|
|
65
|
-
/**
|
|
66
|
-
|
|
65
|
+
/** 设置按钮状态 */
|
|
66
|
+
buttonStatus?: 'normal' | 'success' | 'warning' | 'danger';
|
|
67
|
+
/** 设置按钮是否块级 */
|
|
68
|
+
buttonBlock?: boolean;
|
|
69
|
+
notButtonLabel?: boolean;
|
|
70
|
+
/** 按钮加载中 */
|
|
71
|
+
buttonLoading?: boolean | {
|
|
72
|
+
delay?: number;
|
|
73
|
+
};
|
|
67
74
|
/** 特定场合下使用 */
|
|
68
75
|
isSaveSelectData?: boolean;
|
|
69
76
|
/** 按钮组 */
|