@newview/ui 1.1.47 → 1.1.48
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/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 +10 -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
|
/**
|