rapid-spreadjs 1.0.91 → 1.0.92

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.
@@ -2529,7 +2529,6 @@ export declare const EChartsUtilsAll: {
2529
2529
  type: string;
2530
2530
  name: string;
2531
2531
  min: number;
2532
- interval: number;
2533
2532
  axisLine: {
2534
2533
  show: boolean;
2535
2534
  };
@@ -2691,7 +2690,6 @@ export declare const EChartsUtilsAll: {
2691
2690
  fontSize: number;
2692
2691
  padding: number[];
2693
2692
  };
2694
- interval: number;
2695
2693
  min: number;
2696
2694
  max: number;
2697
2695
  };
@@ -170,9 +170,9 @@ export declare const SheetUtils: {
170
170
  */
171
171
  getRangeStr: (cellRange: CellModel) => string;
172
172
  /**
173
- * 获取工作表中所有纯值或公式单元格的范围选择字符串
173
+ * 获取工作表中所有纯值、无值或公式单元格的范围选择字符串
174
174
  * @param sheet 工作表对象
175
- * @param isFormulaCells 是否获取公式单元格,默认为:false
175
+ * @param getType 获取类型(1:纯值、2:无值、3:公式),默认为:1
176
176
  */
177
- getCellsRangeStr: (sheet: any, isFormulaCells?: boolean) => string;
177
+ getCellsRangeStr: (sheet: any, getType?: number) => string;
178
178
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rapid-spreadjs",
3
- "version": "1.0.91",
3
+ "version": "1.0.92",
4
4
  "description": "SpreadJS常用公用处理函数,包括设计器、工作簿和工作表的相关处理函数。",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",