pixel-react 1.11.33 → 1.11.34
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 +3 -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 +3 -10
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.js +90 -60
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.d.ts +3 -10
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/types.d.ts +19 -0
- package/lib/components/TableTree/data.d.ts +117 -0
- package/lib/components/TableTree/data.js +6 -0
- package/lib/components/TableTree/data.js.map +1 -1
- package/lib/index.cjs +3 -3
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.ts +4 -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/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
@@ -2779,7 +2779,7 @@ declare const SequentialConnectingBranch: FC<SequentialConnectingBranchProps>;
|
|
2779
2779
|
interface AttachmentUploaderProps {
|
2780
2780
|
label: string;
|
2781
2781
|
selectedFiles: File[];
|
2782
|
-
onFilesChange: (files: File[]) => void;
|
2782
|
+
onFilesChange: (files: File[], selectedFile?: File[], changeType?: 'ADD' | 'DELETE') => void;
|
2783
2783
|
disabled?: boolean;
|
2784
2784
|
maxFileSizeMB?: number;
|
2785
2785
|
maxFiles?: number;
|
@@ -3059,16 +3059,9 @@ interface ExcelFileProps {
|
|
3059
3059
|
rowContextEnable?: boolean;
|
3060
3060
|
minimumColumnWidth?: number;
|
3061
3061
|
attachmentAction?: {
|
3062
|
-
addAttachment: (file: File) => Promise<
|
3063
|
-
|
3064
|
-
|
3065
|
-
name: string;
|
3066
|
-
id: string;
|
3067
|
-
modifiedOn: string;
|
3068
|
-
}[];
|
3069
|
-
}>;
|
3070
|
-
viewAttachment: () => Promise<void>;
|
3071
|
-
deleteAttachment: () => Promise<void>;
|
3062
|
+
addAttachment: (file: File) => Promise<string>;
|
3063
|
+
viewAttachment: (fileId: string) => Promise<string>;
|
3064
|
+
deleteAttachment: (fileId: string) => Promise<string>;
|
3072
3065
|
};
|
3073
3066
|
}
|
3074
3067
|
declare const ExcelFile: React__default.FC<ExcelFileProps>;
|