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.
package/dist/index.cjs CHANGED
@@ -1325,14 +1325,16 @@ var BooleanCellViewer = function BooleanCellViewer(_ref3) {
1325
1325
 
1326
1326
 
1327
1327
  var StringCellViewer = function StringCellViewer(_ref4) {
1328
- var value = _ref4.value,
1328
+ var id = _ref4.id,
1329
+ value = _ref4.value,
1329
1330
  options = _ref4.options;
1331
+ console.log('string-cell-viewer', id, value, options);
1330
1332
  var option = options ? options.find(function (o) {
1331
1333
  return o.value === value;
1332
1334
  }) : null;
1333
1335
  var text = option ? option.label : value;
1334
1336
  return /*#__PURE__*/React__default["default"].createElement("div", {
1335
- className: "field-editor string-editor"
1337
+ className: "field-editor string-viewer"
1336
1338
  }, text);
1337
1339
  };
1338
1340
  /**