ywana-core8 0.0.143 → 0.0.144

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.
@@ -1318,14 +1318,16 @@ var BooleanCellViewer = function BooleanCellViewer(_ref3) {
1318
1318
 
1319
1319
 
1320
1320
  var StringCellViewer = function StringCellViewer(_ref4) {
1321
- var value = _ref4.value,
1321
+ var id = _ref4.id,
1322
+ value = _ref4.value,
1322
1323
  options = _ref4.options;
1324
+ console.log('string-cell-viewer', id, value, options);
1323
1325
  var option = options ? options.find(function (o) {
1324
1326
  return o.value === value;
1325
1327
  }) : null;
1326
1328
  var text = option ? option.label : value;
1327
1329
  return /*#__PURE__*/React.createElement("div", {
1328
- className: "field-editor string-editor"
1330
+ className: "field-editor string-viewer"
1329
1331
  }, text);
1330
1332
  };
1331
1333
  /**