pixel-react-excel-sheet 1.0.91 → 1.0.93
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 +3 -3
- 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 +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 +69 -60
- 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 +3 -11
- 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 +90 -16
- 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[]) => void;
|
|
2772
|
+
onFilesChange: (files: File[], selectedFile?: File[]) => void;
|
|
2773
2773
|
disabled?: boolean;
|
|
2774
2774
|
maxFileSizeMB?: number;
|
|
2775
2775
|
maxFiles?: number;
|
|
@@ -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
|
}
|