jspreadsheet 12.0.0-beta.13 → 12.0.0-beta.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 +6 -6
- package/dist/index.js +610 -604
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1177,6 +1177,12 @@ declare namespace jspreadsheet {
|
|
|
1177
1177
|
fullCopy?: boolean;
|
|
1178
1178
|
/** Bring data and style from the clipboard. Default: false */
|
|
1179
1179
|
fullPaste?: boolean;
|
|
1180
|
+
/** Table overflow. Default: false */
|
|
1181
|
+
tableOverflow?: boolean;
|
|
1182
|
+
/** Define the table overflow height. Example: '300px' */
|
|
1183
|
+
tableHeight?: number | string;
|
|
1184
|
+
/** Define the table overflow width. Example: '800px' */
|
|
1185
|
+
tableWidth?: number | string;
|
|
1180
1186
|
}
|
|
1181
1187
|
|
|
1182
1188
|
interface Worksheet {
|
|
@@ -1254,12 +1260,6 @@ declare namespace jspreadsheet {
|
|
|
1254
1260
|
paginationOptions?: Array<number>;
|
|
1255
1261
|
/** Text Overflow. Default: false */
|
|
1256
1262
|
textOverflow?: boolean;
|
|
1257
|
-
/** Table overflow. Default: false */
|
|
1258
|
-
tableOverflow?: boolean;
|
|
1259
|
-
/** Define the table overflow height. Example: '300px' */
|
|
1260
|
-
tableHeight?: number | string;
|
|
1261
|
-
/** Define the table overflow width. Example: '800px' */
|
|
1262
|
-
tableWidth?: number | string;
|
|
1263
1263
|
/** Virtualization for columns. Works only when tableOverflow: true. Default: true */
|
|
1264
1264
|
virtualizationX?: boolean;
|
|
1265
1265
|
/** Virtualization for rows. Works only when tableOverflow: true. Default: true */
|