szld-libs 0.2.91 → 0.2.92

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.
@@ -10,7 +10,12 @@ export declare function isBase64(str: string): boolean;
10
10
  * @returns
11
11
  */
12
12
  export declare const handleSubmitForm: (originalData: any, allValues: any) => {
13
- updatedData: any;
13
+ updatedData: {
14
+ data: {
15
+ asid: any;
16
+ data_list: any[];
17
+ };
18
+ };
14
19
  uploadedFiles: any[];
15
20
  };
16
21
  /**
@@ -138,7 +138,7 @@ const handleSubmitForm = (originalData, allValues) => {
138
138
  processAttrList(updatedData.attr_list);
139
139
  }
140
140
  return {
141
- updatedData,
141
+ updatedData: handleAttrListToObj(updatedData.attr_list || []),
142
142
  uploadedFiles
143
143
  };
144
144
  };
@@ -10,7 +10,12 @@ export declare function isBase64(str: string): boolean;
10
10
  * @returns
11
11
  */
12
12
  export declare const handleSubmitForm: (originalData: any, allValues: any) => {
13
- updatedData: any;
13
+ updatedData: {
14
+ data: {
15
+ asid: any;
16
+ data_list: any[];
17
+ };
18
+ };
14
19
  uploadedFiles: any[];
15
20
  };
16
21
  /**
@@ -140,7 +140,7 @@ const handleSubmitForm = (originalData, allValues) => {
140
140
  processAttrList(updatedData.attr_list);
141
141
  }
142
142
  return {
143
- updatedData,
143
+ updatedData: handleAttrListToObj(updatedData.attr_list || []),
144
144
  uploadedFiles
145
145
  };
146
146
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "szld-libs",
3
3
  "private": false,
4
- "version": "0.2.91",
4
+ "version": "0.2.92",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "dev": "vite",