rapid-spreadjs 1.0.121 → 1.0.122

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.
@@ -10,12 +10,14 @@ export declare const BusinessUtils: {
10
10
  * @param sheet 工作表实例
11
11
  * @param testObjectAttrs 检测对象属性配置集合
12
12
  * @param addRowIndex 添加检测对象属性区域的起始行索引,默认为:0
13
+ * @param deleteRowsCount 删除的行数,默认为:0
13
14
  * @param isVertical 是否为纵表,默认为:true
14
15
  * @param contentColStartIndex 表格内容列起始索引,默认为:1
15
16
  * @param contentTotalColCount 表格内容列总数,默认为:77
16
17
  * @param addRowHeight 添加的表格行高,默认为:24(单位为像素)
18
+ * @returns 返回生成的检测对象属性行数
17
19
  */
18
- createTestObjectAttrsCells: (gc: any, sheet: any, testObjectAttrs: TestObjectAttrModel[], addRowIndex?: number, isVertical?: boolean, contentColStartIndex?: number, contentTotalColCount?: number, addRowHeight?: number) => void;
20
+ createTestObjectAttrsCells: (gc: any, sheet: any, testObjectAttrs: TestObjectAttrModel[], addRowIndex?: number, deleteRowsCount?: number, isVertical?: boolean, contentColStartIndex?: number, contentTotalColCount?: number, addRowHeight?: number) => number;
19
21
  /**
20
22
  * 获取检测对象属性值集合
21
23
  * @param sheet 工作表实例
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rapid-spreadjs",
3
- "version": "1.0.121",
3
+ "version": "1.0.122",
4
4
  "description": "SpreadJS常用公用处理函数,包括设计器、工作簿和工作表的相关处理函数。",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",