szld-libs 0.2.81 → 0.2.82
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/szld-components.es.js +1184 -1183
- package/dist/szld-components.umd.js +24 -24
- package/es/utils/method.js +3 -0
- package/lib/utils/method.js +3 -0
- package/package.json +1 -1
package/es/utils/method.js
CHANGED
|
@@ -32,6 +32,9 @@ const handleSubmitForm = (originalData, allValues) => {
|
|
|
32
32
|
let uploadedFiles = [];
|
|
33
33
|
const processAttrList = (attrList, item) => {
|
|
34
34
|
var _a;
|
|
35
|
+
if (!(item == null ? void 0 : item.json)) {
|
|
36
|
+
attrList = handleBaseAttrList(attrList);
|
|
37
|
+
}
|
|
35
38
|
try {
|
|
36
39
|
if ((_a = item == null ? void 0 : item.json) == null ? void 0 : _a["properties-multiple"]) {
|
|
37
40
|
const attrValue = allValues[item.attrid];
|
package/lib/utils/method.js
CHANGED
|
@@ -34,6 +34,9 @@ const handleSubmitForm = (originalData, allValues) => {
|
|
|
34
34
|
let uploadedFiles = [];
|
|
35
35
|
const processAttrList = (attrList, item) => {
|
|
36
36
|
var _a;
|
|
37
|
+
if (!(item == null ? void 0 : item.json)) {
|
|
38
|
+
attrList = handleBaseAttrList(attrList);
|
|
39
|
+
}
|
|
37
40
|
try {
|
|
38
41
|
if ((_a = item == null ? void 0 : item.json) == null ? void 0 : _a["properties-multiple"]) {
|
|
39
42
|
const attrValue = allValues[item.attrid];
|