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 +4 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +4 -2
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +4 -2
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/html/table.js +2 -1
package/dist/index.umd.js
CHANGED
@@ -1322,14 +1322,16 @@
|
|
1322
1322
|
|
1323
1323
|
|
1324
1324
|
var StringCellViewer = function StringCellViewer(_ref4) {
|
1325
|
-
var
|
1325
|
+
var id = _ref4.id,
|
1326
|
+
value = _ref4.value,
|
1326
1327
|
options = _ref4.options;
|
1328
|
+
console.log('string-cell-viewer', id, value, options);
|
1327
1329
|
var option = options ? options.find(function (o) {
|
1328
1330
|
return o.value === value;
|
1329
1331
|
}) : null;
|
1330
1332
|
var text = option ? option.label : value;
|
1331
1333
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
1332
|
-
className: "field-editor string-
|
1334
|
+
className: "field-editor string-viewer"
|
1333
1335
|
}, text);
|
1334
1336
|
};
|
1335
1337
|
/**
|