jspreadsheet 11.0.14 → 11.0.16

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
@@ -443,7 +443,7 @@ declare namespace jspreadsheet {
443
443
 
444
444
  interface DefinedNames {
445
445
  index: string;
446
- value: string;
446
+ value?: string;
447
447
  }
448
448
 
449
449
  /**
@@ -1460,8 +1460,10 @@ declare namespace jspreadsheet {
1460
1460
  setConfig: (config: Worksheet) => void;
1461
1461
  /** Set the worksheet data */
1462
1462
  setData: (data: any[]) => void;
1463
- /** Set the defined name */
1463
+ /** Create or update names */
1464
1464
  setDefinedNames: (names: DefinedNames[]) => void;
1465
+ /** Reset names by indexes */
1466
+ resetDefinedNames: (names: DefinedNames[]) => void;
1465
1467
  /** Set filter */
1466
1468
  setFilter: (colNumber: number, keywords: any[]) => void;
1467
1469
  /** Set the footers */