datastake-daf 0.6.720 → 0.6.721
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/components/index.js +457 -436
- package/dist/hooks/index.js +4658 -19
- package/dist/layouts/index.js +455 -432
- package/dist/pages/index.js +551 -432
- package/dist/utils/index.js +455 -432
- package/package.json +1 -1
- package/src/@daf/core/components/EditForm/form.jsx +3 -6
- package/src/@daf/core/components/EditForm/storyConfig2.js +23477 -10904
- package/src/@daf/core/components/Icon/configs/index.js +4 -0
- package/src/@daf/core/components/Icon/configs/partnerIcon.js +8 -0
- package/src/@daf/core/components/Icon/configs/userIcon.js +8 -0
- package/src/pages.js +2 -1
- package/dist/style/datastake/mapbox-gl.css +0 -330
package/package.json
CHANGED
|
@@ -334,7 +334,6 @@ export const EditForm = ({
|
|
|
334
334
|
}
|
|
335
335
|
}, [data]);
|
|
336
336
|
|
|
337
|
-
console.log("namespace", namespace);
|
|
338
337
|
const renderForm = () => {
|
|
339
338
|
switch (template) {
|
|
340
339
|
default:
|
|
@@ -370,11 +369,11 @@ export const EditForm = ({
|
|
|
370
369
|
}
|
|
371
370
|
});
|
|
372
371
|
|
|
373
|
-
const cleanedChangeValue = convertUndefinedToNull(changedValue);
|
|
374
|
-
const cleanedAllValues =
|
|
372
|
+
const cleanedChangeValue = changedValue; //convertUndefinedToNull(changedValue);
|
|
373
|
+
const cleanedAllValues = {
|
|
375
374
|
...values,
|
|
376
375
|
...allValues,
|
|
377
|
-
}
|
|
376
|
+
};
|
|
378
377
|
|
|
379
378
|
if (
|
|
380
379
|
"associatedMine" in cleanedChangeValue &&
|
|
@@ -560,8 +559,6 @@ export const EditForm = ({
|
|
|
560
559
|
}
|
|
561
560
|
};
|
|
562
561
|
|
|
563
|
-
console.log("values", values);
|
|
564
|
-
|
|
565
562
|
return (
|
|
566
563
|
<EditProvider
|
|
567
564
|
t={t}
|