@baosight/erm 1.0.63 → 1.0.65
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/lib/ermForm/ermForm.vue.d.ts +19 -1
- package/lib/ermList/ermList.vue.d.ts +51 -0
- package/lib/index.common.js +146 -24
- package/lib/index.common.js.map +1 -1
- package/lib/index.css +1 -1
- package/lib/index.esm.css +93 -65
- package/lib/index.esm.js +1 -1
- package/lib/index.umd.js +146 -24
- package/lib/index.umd.js.map +1 -1
- package/lib/index.umd.min.js +21 -21
- package/lib/index.umd.min.js.map +1 -1
- package/lib/utils/ermHelper.d.ts +9 -3
- package/package.json +1 -1
package/lib/utils/ermHelper.d.ts
CHANGED
|
@@ -69,8 +69,14 @@ export declare class ermFormHelper {
|
|
|
69
69
|
*/
|
|
70
70
|
static getTableName(ref: any): any;
|
|
71
71
|
/**
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
72
|
+
*新增一行
|
|
73
|
+
* @param ref
|
|
74
|
+
*/
|
|
75
75
|
static addRow(ref: any): any;
|
|
76
|
+
/**
|
|
77
|
+
* 删除一行
|
|
78
|
+
* @param ref 组件实例
|
|
79
|
+
* @param rowNo 行号
|
|
80
|
+
*/
|
|
81
|
+
static deleteRow(ref: any, rowNo: any): any;
|
|
76
82
|
}
|