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.
- package/dist/index.cjs.js +12 -7
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.cjs.min.js +1 -1
- package/dist/index.cjs.min.js.map +1 -1
- package/dist/index.esm.js +12 -7
- package/dist/index.esm.js.map +1 -1
- package/dist/index.esm.min.js +1 -1
- package/dist/index.esm.min.js.map +1 -1
- package/dist/utils/business.d.ts +3 -1
- package/package.json +1 -1
package/dist/utils/business.d.ts
CHANGED
|
@@ -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) =>
|
|
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 工作表实例
|