jspreadsheet 11.13.3 → 11.14.0
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 +4 -1
- package/dist/index.js +539 -567
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -548,7 +548,7 @@ declare namespace jspreadsheet {
|
|
|
548
548
|
/**
|
|
549
549
|
* Cell value
|
|
550
550
|
*/
|
|
551
|
-
interface
|
|
551
|
+
interface CellRecord {
|
|
552
552
|
/** Cached value of the cell */
|
|
553
553
|
value: string | number | boolean | undefined;
|
|
554
554
|
/** Coordinate X */
|
|
@@ -805,6 +805,8 @@ declare namespace jspreadsheet {
|
|
|
805
805
|
parseFormulas?: boolean;
|
|
806
806
|
/** Disable the formula editor. Default: true */
|
|
807
807
|
editorFormulas?: boolean;
|
|
808
|
+
/** Disable formula picker with keyboard. Default: true */
|
|
809
|
+
keyboardFormulas?: boolean;
|
|
808
810
|
/** Auto increment cell data when using the corner copy, including formulas, numbers and dates. Default: true */
|
|
809
811
|
autoIncrement?: boolean;
|
|
810
812
|
/** Try to cast numbers from cell values when executing formulas. Default: true */
|
|
@@ -1558,6 +1560,7 @@ declare namespace jspreadsheet {
|
|
|
1558
1560
|
selectAll: () => void;
|
|
1559
1561
|
/** Selected cells */
|
|
1560
1562
|
selectedCell: RangeCoords | null;
|
|
1563
|
+
currentSelection: RangeCoords | null;
|
|
1561
1564
|
/** Internal record id sequence */
|
|
1562
1565
|
sequence: number;
|
|
1563
1566
|
/** Set borders with a border name and color. */
|