ywana-core8 0.0.428 → 0.0.429

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.umd.js CHANGED
@@ -31,7 +31,6 @@
31
31
  }
32
32
 
33
33
  try {
34
- console.log('FETCH', method, URL);
35
34
  var requestHeaders = Object.assign({}, {
36
35
  "Accept": "application/json",
37
36
  "Content-Type": "application/json",
@@ -43,7 +42,6 @@
43
42
  headers: requestHeaders,
44
43
  body: body
45
44
  };
46
- console.log("HTTP Client", request);
47
45
  if (headers) request.headers = request.headers;
48
46
  return Promise.resolve(_catch$2(function () {
49
47
  return Promise.resolve(fetch(URL, request)).then(function (response) {
@@ -1766,10 +1764,8 @@
1766
1764
 
1767
1765
 
1768
1766
  var EntityCellViewer = function EntityCellViewer(_ref5) {
1769
- var id = _ref5.id,
1770
- item = _ref5.item,
1767
+ var item = _ref5.item,
1771
1768
  value = _ref5.value;
1772
- console.log(id, item, value);
1773
1769
  var fields = Object.values(item).filter(function (field) {
1774
1770
  return field.column === true;
1775
1771
  });
@@ -5220,6 +5216,7 @@
5220
5216
  var field = props.field,
5221
5217
  value = props.value;
5222
5218
  var type = field.type,
5219
+ item = field.item,
5223
5220
  label = field.label,
5224
5221
  _field$visible = field.visible,
5225
5222
  visible = _field$visible === void 0 ? true : _field$visible;
@@ -5241,7 +5238,7 @@
5241
5238
  case TYPES.ARRAY:
5242
5239
  return value.map(function (v) {
5243
5240
  return /*#__PURE__*/React__default["default"].createElement(FieldViewer, {
5244
- field: field,
5241
+ field: item,
5245
5242
  value: v
5246
5243
  });
5247
5244
  });