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/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
- responseCode: number;
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
  }