@newview/ui 1.1.48 → 1.1.49
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.
- package/README.md +2 -0
- package/package.json +1 -1
- package/types/ComForm.d.ts +6 -1
package/README.md
CHANGED
package/package.json
CHANGED
package/types/ComForm.d.ts
CHANGED
|
@@ -467,7 +467,7 @@ export interface InputNumberProp {
|
|
|
467
467
|
* 后置内容,仅在 text 类型下有效
|
|
468
468
|
*/
|
|
469
469
|
append?: string;
|
|
470
|
-
|
|
470
|
+
|
|
471
471
|
/**
|
|
472
472
|
* append点击事件
|
|
473
473
|
*/
|
|
@@ -1536,8 +1536,13 @@ export interface uploadFileProp{
|
|
|
1536
1536
|
* 是否只读
|
|
1537
1537
|
*/
|
|
1538
1538
|
readonly?:Boolean
|
|
1539
|
+
|
|
1539
1540
|
/** 限制附件上传的数量 */
|
|
1540
1541
|
uploadQuantity?:Number
|
|
1542
|
+
|
|
1543
|
+
/** 是否显示文件名称 */
|
|
1544
|
+
isShowFileName?:Boolean
|
|
1545
|
+
|
|
1541
1546
|
}
|
|
1542
1547
|
/**
|
|
1543
1548
|
* 文件列表上传参数
|