pixel-react-excel-sheet 1.0.89 → 1.0.90
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 +3 -10
- package/lib/components/Excel/ExcelFile/ExcelFile.js +3 -3
- package/lib/components/Excel/ExcelFile/ExcelFile.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.d.ts +3 -10
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.js +4 -11
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.d.ts +3 -10
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.js.map +1 -1
- package/lib/index.cjs +2 -2
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.ts +3 -10
- 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
|
@@ -3032,16 +3032,9 @@ interface ExcelFileProps {
|
|
|
3032
3032
|
rowContextEnable?: boolean;
|
|
3033
3033
|
minimumColumnWidth?: number;
|
|
3034
3034
|
attachmentAction?: {
|
|
3035
|
-
addAttachment: (file: File) =>
|
|
3036
|
-
|
|
3037
|
-
|
|
3038
|
-
name: string;
|
|
3039
|
-
id: string;
|
|
3040
|
-
modifiedOn: string;
|
|
3041
|
-
}[];
|
|
3042
|
-
}>;
|
|
3043
|
-
viewAttachment: (fileId: string) => Promise<void>;
|
|
3044
|
-
deleteAttachment: () => Promise<void>;
|
|
3035
|
+
addAttachment: (file: File) => string;
|
|
3036
|
+
viewAttachment: (fileId: string) => void;
|
|
3037
|
+
deleteAttachment: () => void;
|
|
3045
3038
|
};
|
|
3046
3039
|
}
|
|
3047
3040
|
declare const ExcelFile: React__default.FC<ExcelFileProps>;
|