jspreadsheet 10.0.24 → 10.0.27
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/createapplications.png +0 -0
- package/dist/index.d.ts +5 -1
- package/dist/index.js +656 -654
- package/package.json +1 -1
- package/performancejss.gif +0 -0
|
Binary file
|
package/dist/index.d.ts
CHANGED
|
@@ -442,7 +442,7 @@ declare namespace jspreadsheet {
|
|
|
442
442
|
|
|
443
443
|
interface Column {
|
|
444
444
|
/** Define the type of editor to use for the column. Can be a string to define a native editor, or a method to define a custom editor plugin. */
|
|
445
|
-
type?: Editor | 'autocomplete' | 'calendar' | 'checkbox' | '
|
|
445
|
+
type?: Editor | 'text' | 'number' | 'numeric' | 'percent' | 'notes' | 'dropdown' | 'autocomplete' | 'calendar' | 'color' | 'checkbox' | 'radio' | 'autonumber' | 'progressbar' | 'rating' | 'email' | 'url' | 'image' | 'html' | 'hidden' | 'tags' | 'record';
|
|
446
446
|
/** The title of the column. */
|
|
447
447
|
title?: string;
|
|
448
448
|
/** The name or path of a property when the data is a JSON object. */
|
|
@@ -1466,6 +1466,8 @@ declare namespace jspreadsheet {
|
|
|
1466
1466
|
value?: (x: number, y: number, value?: any) => void;
|
|
1467
1467
|
/** Which page the row number is */
|
|
1468
1468
|
whichPage?: (row: number) => number;
|
|
1469
|
+
/** Get all group of rows */
|
|
1470
|
+
getRowGroup: () => object;
|
|
1469
1471
|
/** Create a new group of rows */
|
|
1470
1472
|
setRowGroup: (row: number, numOfItems?: number) => void;
|
|
1471
1473
|
/** Open a new group of rows */
|
|
@@ -1474,6 +1476,8 @@ declare namespace jspreadsheet {
|
|
|
1474
1476
|
closeRowGroup: (row: number) => void;
|
|
1475
1477
|
/** Reset a group of rows */
|
|
1476
1478
|
resetRowGroup: (row: number) => void;
|
|
1479
|
+
/** Get all group of columns */
|
|
1480
|
+
getColumnGroup: () => object;
|
|
1477
1481
|
/** Create a new group of columns */
|
|
1478
1482
|
setColumnGroup: (column: number, numOfItems?: number) => void;
|
|
1479
1483
|
/** Open a new group of columns */
|