jspreadsheet 9.3.6 → 9.3.9
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/README.md +1 -1
- package/dist/index.d.ts +5 -5
- package/dist/index.js +442 -442
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
<b>Jexcel</b> has been renamed to <b>Jspreadsheet</b>
|
|
4
4
|
|
|
5
|
-
<img src='https://jspreadsheet.com/templates/
|
|
5
|
+
<img src='https://jspreadsheet.com/templates/vcdphp d8/img/the-spreadsheet.png' align="right" width="40%">
|
|
6
6
|
|
|
7
7
|
Jspreadsheet, a lightweight Vanilla JavaScript data grid plugin, can help you create exceptional web-based interactive tables and spreadsheets. Compatible with most widely-used spreadsheet software, such as Excel or Google Spreadsheet, it offers users an unrivalled Excel-like user experience. It also works well with prominent modern frameworks and flexibly utilizes a large collection of events, extensions and configurations to meet different application requirements. Impress your clients with a better user experience and a great dynamic interactive data management tool.
|
|
8
8
|
|
package/dist/index.d.ts
CHANGED
|
@@ -988,8 +988,8 @@ declare namespace jspreadsheet {
|
|
|
988
988
|
getBorder: (alias: string) => object;
|
|
989
989
|
/** Get the cell element from the cellName or via its coordinates x,y */
|
|
990
990
|
getCell: (cellNameOrColumnNumber: string|number, y?: number) => HTMLElement | null;
|
|
991
|
-
/**
|
|
992
|
-
getCellFromCoords: (x: number, y: number) =>
|
|
991
|
+
/** Alias to getCell */
|
|
992
|
+
getCellFromCoords: (x: number, y: number) => HTMLElement | null;
|
|
993
993
|
/** Get attributes from one cell when applicable */
|
|
994
994
|
getCells: (cellName: string) => Column;
|
|
995
995
|
/** Get the column object by its position */
|
|
@@ -1297,10 +1297,10 @@ declare namespace jspreadsheet {
|
|
|
1297
1297
|
updateCell: (x: number, y: number, value: string, force?: boolean) => void;
|
|
1298
1298
|
/** Internal method: update cells in a batch */
|
|
1299
1299
|
updateCells: (o: Array<Record<string, object>>) => void;
|
|
1300
|
-
/** Update the selection based on two DOM cell
|
|
1301
|
-
updateSelection: (el1:
|
|
1300
|
+
/** Update the selection based on two DOM cell elements */
|
|
1301
|
+
updateSelection: (el1: HTMLElement, el2?: HTMLElement, origin?: boolean) => void;
|
|
1302
1302
|
/** Update the selection based on coordinates */
|
|
1303
|
-
updateSelectionFromCoords: (x1: number, y1: number, x2
|
|
1303
|
+
updateSelectionFromCoords: (x1: number, y1: number, x2?: number, y2?: number, origin?: boolean, type?: string, color?: string) => void;
|
|
1304
1304
|
/** Getter/setter the value by coordinates */
|
|
1305
1305
|
value?: (x: number, y: number, value?: any) => void;
|
|
1306
1306
|
/** Which page the row number is */
|