pixel-react-excel-sheet 1.0.51 → 1.0.52
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/lib/components/Excel/ExcelFile/ExcelFile.d.ts +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.d.ts +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.js +11 -7
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.d.ts +1 -1
- package/lib/index.cjs +1 -1
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.ts +1 -1
- package/lib/index.esm.js +1 -1
- package/lib/index.esm.js.br +0 -0
- package/lib/index.esm.js.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -2844,7 +2844,7 @@ interface ExcelFileProps {
|
|
|
2844
2844
|
* When set to true, row-related context menu actions are enabled.
|
|
2845
2845
|
*/
|
|
2846
2846
|
rowContextEnable?: boolean;
|
|
2847
|
-
importAttachment?: (file:
|
|
2847
|
+
importAttachment?: (file: File) => Promise<void>;
|
|
2848
2848
|
}
|
|
2849
2849
|
declare const ExcelFile: React__default.FC<ExcelFileProps>;
|
|
2850
2850
|
|