@apexcura/ui-components 0.0.13-Beta70 → 0.0.13-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 +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -789,6 +789,7 @@ var import_icons5 = require("@ant-design/icons");
|
|
|
789
789
|
var UploadElement = (props) => {
|
|
790
790
|
const [files, setFiles] = (0, import_react23.useState)([]);
|
|
791
791
|
const uploadChange = (fileList) => {
|
|
792
|
+
console.log(fileList);
|
|
792
793
|
if (!fileList || fileList.length === 0) return;
|
|
793
794
|
const newFileList = [...files];
|
|
794
795
|
for (let i = 0; i < fileList.length; i++) {
|
package/dist/index.mjs
CHANGED
|
@@ -733,6 +733,7 @@ import { PlusOutlined as PlusOutlined2 } from "@ant-design/icons";
|
|
|
733
733
|
var UploadElement = (props) => {
|
|
734
734
|
const [files, setFiles] = useState7([]);
|
|
735
735
|
const uploadChange = (fileList) => {
|
|
736
|
+
console.log(fileList);
|
|
736
737
|
if (!fileList || fileList.length === 0) return;
|
|
737
738
|
const newFileList = [...files];
|
|
738
739
|
for (let i = 0; i < fileList.length; i++) {
|