jspreadsheet 12.0.5 → 12.0.7
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 +3 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -147,7 +147,7 @@ declare namespace jspreadsheet {
|
|
|
147
147
|
interface Shortcut {
|
|
148
148
|
key?: string,
|
|
149
149
|
code?: string,
|
|
150
|
-
handler
|
|
150
|
+
handler?: (event: KeyboardEvent, internalEvent: object) => void,
|
|
151
151
|
ctrlKey?: boolean,
|
|
152
152
|
altKey?: boolean,
|
|
153
153
|
shiftKey?: boolean,
|
|
@@ -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