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/components/AttachmentButton/AttachmentButton.js +2 -2
- package/lib/components/AttachmentButton/AttachmentButton.js.map +1 -1
- package/lib/components/AttachmentButton/types.d.ts +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFile.d.ts +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFile.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.d.ts +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.js +42 -20
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.d.ts +1 -1
- 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 +2 -2
- package/lib/index.esm.js.br +0 -0
- package/lib/index.esm.js.map +1 -1
- package/lib/styles/Typography.scss +16 -90
- package/package.json +1 -1
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>;
|