rapid-spreadjs 1.0.39 → 1.0.40
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 +52 -0
- 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 +52 -0
- 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/sheet.d.ts +6 -0
- package/package.json +1 -1
package/dist/utils/sheet.d.ts
CHANGED
|
@@ -160,4 +160,10 @@ export declare const SheetUtils: {
|
|
|
160
160
|
* @returns 返回范围字符串,如:A1:B2
|
|
161
161
|
*/
|
|
162
162
|
getRangeStr: (cellRange: CellModel) => string;
|
|
163
|
+
/**
|
|
164
|
+
* 获取工作表中所有纯值或公式单元格的范围选择字符串
|
|
165
|
+
* @param sheet 工作表对象
|
|
166
|
+
* @param isFormulaCells 是否获取公式单元格,默认为:false
|
|
167
|
+
*/
|
|
168
|
+
getCellsRangeStr: (sheet: any, isFormulaCells?: boolean) => string;
|
|
163
169
|
};
|