jspreadsheet 12.0.5 → 12.0.6

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +2 -2
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -1198,6 +1198,8 @@ declare namespace jspreadsheet {
1198
1198
  tableHeight?: number | string;
1199
1199
  /** Define the table overflow width. Example: '800px' */
1200
1200
  tableWidth?: number | string;
1201
+ /** Resizable */
1202
+ resizable?: boolean;
1201
1203
  }
1202
1204
 
1203
1205
  interface Worksheet {
@@ -1309,8 +1311,6 @@ declare namespace jspreadsheet {
1309
1311
  selectUnLockedCells?: boolean;
1310
1312
  /** Allow the selection of locked cells. Default: true. */
1311
1313
  selectLockedCells?: boolean;
1312
- /** Enable resizable worksheet in on or both direction (horizontal | vertical | both). Default: none */
1313
- resize?: 'horizontal' | 'vertical' | 'both' | 'none' | undefined;
1314
1314
  /** Show the worksheet gridlines. Default: true */
1315
1315
  gridline?: boolean;
1316
1316
  /** Floating images or charts. */
package/package.json CHANGED
@@ -49,5 +49,5 @@
49
49
  },
50
50
  "main": "dist/index.js",
51
51
  "types": "dist/index.d.ts",
52
- "version": "12.0.5"
52
+ "version": "12.0.6"
53
53
  }