pixel-react-excel-sheet 1.0.96 → 1.0.97
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 +2 -2
- package/lib/components/Excel/ExcelFile/ExcelFile.js +2 -2
- package/lib/components/Excel/ExcelFile/ExcelFile.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.d.ts +2 -2
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.js +35 -39
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/DataViewer.js +0 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/DataViewer.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.d.ts +2 -2
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/types.d.ts +19 -0
- package/lib/index.cjs +2 -2
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.ts +2 -2
- 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
|
@@ -3049,8 +3049,8 @@ interface ExcelFileProps {
|
|
|
3049
3049
|
minimumColumnWidth?: number;
|
|
3050
3050
|
attachmentAction?: {
|
|
3051
3051
|
addAttachment: (file: File) => Promise<string>;
|
|
3052
|
-
viewAttachment: (fileId: string) => Promise<
|
|
3053
|
-
deleteAttachment: (fileId: string) => Promise<
|
|
3052
|
+
viewAttachment: (fileId: string) => Promise<string>;
|
|
3053
|
+
deleteAttachment: (fileId: string) => Promise<string>;
|
|
3054
3054
|
};
|
|
3055
3055
|
}
|
|
3056
3056
|
declare const ExcelFile: React__default.FC<ExcelFileProps>;
|