jspreadsheet 11.0.28 → 11.1.1

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
@@ -1250,6 +1250,8 @@ declare namespace jspreadsheet {
1250
1250
  getColumnOptions: (x: number, y?: number) => Column;
1251
1251
  /** Get the comments from one cell or multiple cells. Example: getComments('A1') */
1252
1252
  getComments: (cellName?: string) => string | object;
1253
+ /** Get the cached values from one cell or multiple cells. Example: getCache('A1') */
1254
+ getCache: (cellName?: string) => string | object;
1253
1255
  /** Get the worksheet settings */
1254
1256
  getConfig: () => Worksheet;
1255
1257
  /**
@@ -1466,6 +1468,8 @@ declare namespace jspreadsheet {
1466
1468
  setColumnData: (col: number, data: any[], force?: boolean) => void;
1467
1469
  /** Set the comments for one or multiple cells */
1468
1470
  setComments: (cellName: string | Record<string, string>, comments?: string) => void;
1471
+ /** Set the cache for one or multiple cells */
1472
+ setCache: (cellName: string | Record<string, string>, values?: string) => void;
1469
1473
  /** Change the worksheet settings */
1470
1474
  setConfig: (config: Worksheet) => void;
1471
1475
  /** Set the worksheet data */