@newview/ui 1.1.47 → 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 +4 -0
- package/dist/newview-ui.js +40 -25
- package/dist/newview-ui.umd.cjs +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/types/ComForm.d.ts +15 -0
package/package.json
CHANGED
package/types/ComForm.d.ts
CHANGED
|
@@ -462,6 +462,16 @@ export interface InputNumberProp {
|
|
|
462
462
|
* 失焦时触发
|
|
463
463
|
*/
|
|
464
464
|
onBlur?: (event?: any, item?: ComFormItem) => any;
|
|
465
|
+
|
|
466
|
+
/**
|
|
467
|
+
* 后置内容,仅在 text 类型下有效
|
|
468
|
+
*/
|
|
469
|
+
append?: string;
|
|
470
|
+
|
|
471
|
+
/**
|
|
472
|
+
* append点击事件
|
|
473
|
+
*/
|
|
474
|
+
onTextClick?: (event?: any, item?: ComFormItem) => any;
|
|
465
475
|
}
|
|
466
476
|
|
|
467
477
|
/**
|
|
@@ -1526,8 +1536,13 @@ export interface uploadFileProp{
|
|
|
1526
1536
|
* 是否只读
|
|
1527
1537
|
*/
|
|
1528
1538
|
readonly?:Boolean
|
|
1539
|
+
|
|
1529
1540
|
/** 限制附件上传的数量 */
|
|
1530
1541
|
uploadQuantity?:Number
|
|
1542
|
+
|
|
1543
|
+
/** 是否显示文件名称 */
|
|
1544
|
+
isShowFileName?:Boolean
|
|
1545
|
+
|
|
1531
1546
|
}
|
|
1532
1547
|
/**
|
|
1533
1548
|
* 文件列表上传参数
|