pixel-react-excel-sheet 1.0.93 → 1.0.95

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
@@ -2769,7 +2769,7 @@ declare const SequentialConnectingBranch: FC<SequentialConnectingBranchProps>;
2769
2769
  interface AttachmentUploaderProps {
2770
2770
  label: string;
2771
2771
  selectedFiles: File[];
2772
- onFilesChange: (files: File[], selectedFile?: File[]) => void;
2772
+ onFilesChange: (files: File[], selectedFile?: File[], changeType?: 'ADD' | 'DELETE') => void;
2773
2773
  disabled?: boolean;
2774
2774
  maxFileSizeMB?: number;
2775
2775
  maxFiles?: number;
@@ -3050,7 +3050,7 @@ interface ExcelFileProps {
3050
3050
  attachmentAction?: {
3051
3051
  addAttachment: (file: File) => Promise<string>;
3052
3052
  viewAttachment: (fileId: string) => Promise<void>;
3053
- deleteAttachment: () => Promise<void>;
3053
+ deleteAttachment: (fileId: string) => Promise<void>;
3054
3054
  };
3055
3055
  }
3056
3056
  declare const ExcelFile: React__default.FC<ExcelFileProps>;