jspreadsheet 11.0.9 → 11.0.10

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.d.ts CHANGED
@@ -263,7 +263,7 @@ declare namespace jspreadsheet {
263
263
  getTokensFromRange: (range: string) => string[];
264
264
  // Get the range from an array of tokens
265
265
  getRangeFromTokens: (tokens: string[]) => string;
266
- // Get the coordinates as a number from a range string. Adjust helps to define the height dynamically when you have A:A ranges for example. Works in the same way for 1:1 ranges.
266
+ // Get the coordinates as a number from a range string. Adjust helps to define the height dynamically when you have A:A ranges for example. Works in the same way for 1:1 ranges. Default: true
267
267
  getCoordsFromRange: (range: string, adjust?: boolean) => [number,number,number,number];
268
268
  // Get range string from [x1,y1,x2,y2]
269
269
  getRangeFromCoords: (coords: [number,number,number,number]) => string;
@@ -1673,6 +1673,8 @@ declare namespace jspreadsheet {
1673
1673
  setZoom: (value: number) => void;
1674
1674
  /** Get the current zoom value. Default 1 */
1675
1675
  getZoom: () => number;
1676
+ // Get the coordinates as a number from a range string. Adjust helps to define the height dynamically when you have A:A ranges for example. Works in the same way for 1:1 ranges. Default: true
1677
+ getCoordsFromRange: (range: string, adjust?: boolean) => [number,number,number,number];
1676
1678
  }
1677
1679
 
1678
1680
  interface International {