jspreadsheet 10.1.0 → 10.1.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 +1 -1
- package/dist/index.js +526 -672
- package/dist/jspreadsheet.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -693,7 +693,7 @@ declare namespace jspreadsheet {
|
|
|
693
693
|
/** Event: onafterchanges(jspreadsheetHTMLElement, jspreadsheetInstance) */
|
|
694
694
|
onafterchanges?: (worksheet: worksheetInstance, records: Array<any>) => void;
|
|
695
695
|
/** When a copy is performed in the spreadsheet. Any string returned will overwrite the user data or return null to progress with the default behavior. */
|
|
696
|
-
oncopy?: (worksheet: worksheetInstance, selectedCells: Array<number>, data: string) => boolean | string;
|
|
696
|
+
oncopy?: (worksheet: worksheetInstance, selectedCells: Array<number>, data: string, cut: boolean) => boolean | string;
|
|
697
697
|
/** Before the paste action is performed. Can return parsed or filtered data. It is possible to cancel the action when the return is false. */
|
|
698
698
|
onbeforepaste?: (worksheet: worksheetInstance, data: Array<any>, x: number, y: number, properties: []) => boolean | [];
|
|
699
699
|
/** After a paste action is performed in the spreadsheet. */
|