@mescius/spread-sheets 17.1.1 → 17.1.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -14483,6 +14483,7 @@ declare module GC{
14483
14483
  * @property {boolean} [includeAutoMergedCells] - Whether to include the automatically merged cells when do save, default false.
14484
14484
  * @property {boolean} [includeCalcModelCache] - [deprecated] Whether to include the extra data of calculation. Can be faster when open the file with those data, default false.
14485
14485
  * @property {boolean} [includeUnusedNames] - Whether to include the unused custom name when do save, default true.
14486
+ * @property {boolean} [exportSharedFormula] - Whether to include the shared formula when do save, default true.
14486
14487
  * @property {boolean} [includeEmptyRegionCells] - Whether to include any empty cells(cells with no data or only style) outside the used data range, default true.
14487
14488
  * @property {string} [password] - Set the password to open the workbook.
14488
14489
  */
@@ -14495,6 +14496,7 @@ declare module GC{
14495
14496
  rowHeadersAsFrozenColumns?: boolean;
14496
14497
  columnHeadersAsFrozenRows?: boolean;
14497
14498
  includeUnusedNames?: boolean;
14499
+ exportSharedFormula?: boolean;
14498
14500
  includeEmptyRegionCells?: boolean;
14499
14501
  includeAutoMergedCells?: boolean;
14500
14502
  includeCalcModelCache?: boolean;
@@ -28637,7 +28639,7 @@ declare module GC{
28637
28639
  * sheet.setCellType(1, 1, textCellType);
28638
28640
  * ```
28639
28641
  */
28640
- constructor();
28642
+ constructor(editorType?: GC.Spread.Sheets.CellTypes.EditorType);
28641
28643
  }
28642
28644
  }
28643
28645
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mescius/spread-sheets",
3
- "version": "17.1.1",
3
+ "version": "17.1.3",
4
4
  "main": "index.js",
5
5
  "description":"A Complete Microsoft Excel-like JavaScript Spreadsheet for Enterprise Applications",
6
6
  "scripts": {},