@apexcura/ui-components 0.0.16-Beta70 → 0.0.16-Beta71
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/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1138,13 +1138,13 @@ var FileUpload = (props) => {
|
|
|
1138
1138
|
setFiles((prevFileList) => [...prevFileList, newFile]);
|
|
1139
1139
|
if (props.onChange) {
|
|
1140
1140
|
props.onChange({
|
|
1141
|
-
|
|
1142
|
-
value: newFile
|
|
1141
|
+
files
|
|
1143
1142
|
});
|
|
1144
1143
|
}
|
|
1145
1144
|
});
|
|
1146
1145
|
return false;
|
|
1147
1146
|
};
|
|
1147
|
+
console.log(files);
|
|
1148
1148
|
const customRequest = (options) => {
|
|
1149
1149
|
const { onSuccess } = options;
|
|
1150
1150
|
setTimeout(() => {
|
package/dist/index.mjs
CHANGED
|
@@ -1066,13 +1066,13 @@ var FileUpload = (props) => {
|
|
|
1066
1066
|
setFiles((prevFileList) => [...prevFileList, newFile]);
|
|
1067
1067
|
if (props.onChange) {
|
|
1068
1068
|
props.onChange({
|
|
1069
|
-
|
|
1070
|
-
value: newFile
|
|
1069
|
+
files
|
|
1071
1070
|
});
|
|
1072
1071
|
}
|
|
1073
1072
|
});
|
|
1074
1073
|
return false;
|
|
1075
1074
|
};
|
|
1075
|
+
console.log(files);
|
|
1076
1076
|
const customRequest = (options) => {
|
|
1077
1077
|
const { onSuccess } = options;
|
|
1078
1078
|
setTimeout(() => {
|