@@ -243,13 +243,13 @@ const UndefinedNumberControl = codeControl<number | undefined>((value: any) => {
243
243
} ) ;
244
244
245
245
const childrenMap = {
246
- defaultValue : stringExposingStateControl ( ' defaultValue' ) , // It is more convenient for string to handle various states, save raw input here
247
- value : numberExposingStateControl ( ' value' ) , // It is more convenient for string to handle various states, save raw input here
246
+ defaultValue : stringExposingStateControl ( " defaultValue" ) , // It is more convenient for string to handle various states, save raw input here
247
+ value : numberExposingStateControl ( " value" ) , // It is more convenient for string to handle various states, save raw input here
248
248
placeholder : StringControl ,
249
249
disabled : BoolCodeControl ,
250
250
readOnly : BoolControl ,
251
251
label : LabelControl ,
252
- formatter : dropdownControl ( FormatterOptions , ' standard' ) ,
252
+ formatter : dropdownControl ( FormatterOptions , " standard" ) ,
253
253
step : withDefault ( NumberControl , 1 ) ,
254
254
controls : BoolControl . DEFAULT_TRUE , // Whether to display the increase or decrease button
255
255
precision : RangeControl . closed ( 0 , 20 , 0 ) ,
@@ -262,9 +262,7 @@ const childrenMap = {
262
262
animationStyle : styleControl ( AnimationStyle ) ,
263
263
prefixText : stringExposingStateControl ( 'defaultValue' ) ,
264
264
prefixIcon : IconControl ,
265
- inputFieldStyle : withDefault ( styleControl ( InputLikeStyle ) , {
266
- borderWidth : '1px' ,
267
- } ) ,
265
+ inputFieldStyle : withDefault ( styleControl ( InputLikeStyle ) , { borderWidth : '1px' } ) ,
268
266
// validation
269
267
required : BoolControl ,
270
268
min : UndefinedNumberControl ,
0 commit comments