@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@newview/ui",
3
- "version": "1.1.47",
3
+ "version": "1.1.48",
4
4
  "author": "newview",
5
5
  "type": "module",
6
6
  "main": "./dist/newview-ui.umd.cjs",
@@ -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
  /**