keli-ui 0.2.1 → 0.2.2
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.
|
@@ -79,6 +79,10 @@ export interface KeFormTableSelect extends FormFrame {
|
|
|
79
79
|
*/
|
|
80
80
|
valueField: string;
|
|
81
81
|
optionSlots: KeFormTableSelectOption[];
|
|
82
|
+
/**
|
|
83
|
+
* option宽度
|
|
84
|
+
*/
|
|
85
|
+
optionWidth: number;
|
|
82
86
|
};
|
|
83
87
|
}
|
|
84
88
|
export interface KeFormTableSelectAsync extends KeFormSelectAsync {
|
|
@@ -97,6 +101,10 @@ export interface KeFormTableSelectAsync extends KeFormSelectAsync {
|
|
|
97
101
|
*/
|
|
98
102
|
valueField: string;
|
|
99
103
|
optionSlots: KeFormTableSelectOption[];
|
|
104
|
+
/**
|
|
105
|
+
* option宽度
|
|
106
|
+
*/
|
|
107
|
+
optionWidth?: number;
|
|
100
108
|
};
|
|
101
109
|
}
|
|
102
110
|
|