pixel-react-excel-sheet 1.0.91 → 1.0.92
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 -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 +2 -9
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.js +60 -54
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/DataViewer.js +1 -0
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/DataViewer.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.d.ts +2 -10
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.js +4 -86
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/reducer.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/util.d.ts +0 -2
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/util.js +1 -18
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/util.js.map +1 -1
- package/lib/index.cjs +3 -3
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.ts +2 -10
- package/lib/index.esm.js +2 -2
- 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
|
@@ -3047,17 +3047,9 @@ interface ExcelFileProps {
|
|
|
3047
3047
|
*/
|
|
3048
3048
|
rowContextEnable?: boolean;
|
|
3049
3049
|
minimumColumnWidth?: number;
|
|
3050
|
-
scroller?: boolean;
|
|
3051
3050
|
attachmentAction?: {
|
|
3052
|
-
addAttachment: (file: File) => Promise<
|
|
3053
|
-
|
|
3054
|
-
responseObject: {
|
|
3055
|
-
name: string;
|
|
3056
|
-
id: string;
|
|
3057
|
-
modifiedOn: string;
|
|
3058
|
-
}[];
|
|
3059
|
-
}>;
|
|
3060
|
-
viewAttachment: () => Promise<void>;
|
|
3051
|
+
addAttachment: (file: File) => Promise<string>;
|
|
3052
|
+
viewAttachment: (fileId: string) => Promise<void>;
|
|
3061
3053
|
deleteAttachment: () => Promise<void>;
|
|
3062
3054
|
};
|
|
3063
3055
|
}
|