datastake-daf 0.6.723 → 0.6.725

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.
Binary file
Binary file
Binary file
@@ -0,0 +1,25 @@
1
+ {
2
+ "short_name": "React App",
3
+ "name": "Create React App Sample",
4
+ "icons": [
5
+ {
6
+ "src": "favicon.ico",
7
+ "sizes": "64x64 32x32 24x24 16x16",
8
+ "type": "image/x-icon"
9
+ },
10
+ {
11
+ "src": "logo192.png",
12
+ "type": "image/png",
13
+ "sizes": "192x192"
14
+ },
15
+ {
16
+ "src": "logo512.png",
17
+ "type": "image/png",
18
+ "sizes": "512x512"
19
+ }
20
+ ],
21
+ "start_url": ".",
22
+ "display": "standalone",
23
+ "theme_color": "#000000",
24
+ "background_color": "#ffffff"
25
+ }
@@ -0,0 +1,3 @@
1
+ # https://www.robotstxt.org/robotstxt.html
2
+ User-agent: *
3
+ Disallow:
@@ -30014,7 +30014,8 @@ const EditForm = _ref => {
30014
30014
  changeErrors = () => {},
30015
30015
  evaluationConfig = [],
30016
30016
  staticWidth = "614px",
30017
- fullWidth = false
30017
+ fullWidth = false,
30018
+ noConvert = false
30018
30019
  } = _ref;
30019
30020
  const [isSubmitting] = React.useState(false);
30020
30021
  const formData = JSON.parse(JSON.stringify(convertUndefinedToNull(data) || {}));
@@ -30246,8 +30247,8 @@ const EditForm = _ref => {
30246
30247
  allValues[key] = _objectSpread2(_objectSpread2({}, values[key]), _allValues[key]);
30247
30248
  }
30248
30249
  });
30249
- const cleanedChangeValue = changedValue; //convertUndefinedToNull(changedValue);
30250
- const cleanedAllValues = _objectSpread2(_objectSpread2({}, values), allValues);
30250
+ const cleanedChangeValue = noConvert ? changedValue : convertUndefinedToNull(changedValue);
30251
+ const cleanedAllValues = noConvert ? _objectSpread2(_objectSpread2({}, values), allValues) : convertUndefinedToNull(_objectSpread2(_objectSpread2({}, values), allValues));
30251
30252
  if ("associatedMine" in cleanedChangeValue && cleanedChangeValue.associatedMine === null && values.associatedMine != null) {
30252
30253
  cleanedChangeValue.associatedMine = values.associatedMine;
30253
30254
  cleanedAllValues.associatedMine = values.associatedMine;