ywana-core8 0.0.361 → 0.0.364

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
@@ -5145,10 +5145,11 @@
5145
5145
  var FieldViewer = function FieldViewer(props) {
5146
5146
  var field = props.field,
5147
5147
  value = props.value;
5148
- var id = field.id,
5149
- type = field.type,
5150
- label = field.label;
5151
- if (id === "id") return null;
5148
+ var type = field.type,
5149
+ label = field.label,
5150
+ _field$visible = field.visible,
5151
+ visible = _field$visible === void 0 ? true : _field$visible;
5152
+ if (!visible) return null;
5152
5153
 
5153
5154
  switch (type) {
5154
5155
  case TYPES.STRING:
@@ -5901,10 +5902,13 @@
5901
5902
  id: "actions"
5902
5903
  });
5903
5904
  var groupSize = groups[groupName].length;
5905
+ var title = /*#__PURE__*/React__default["default"].createElement("span", null, /*#__PURE__*/React__default["default"].createElement("span", {
5906
+ className: "size"
5907
+ }, groupSize), renderGroupLabel(groupName));
5904
5908
  return /*#__PURE__*/React__default["default"].createElement(React.Fragment, {
5905
5909
  key: groupName
5906
5910
  }, /*#__PURE__*/React__default["default"].createElement(Header, {
5907
- title: renderGroupLabel(groupName)
5911
+ title: title
5908
5912
  }, /*#__PURE__*/React__default["default"].createElement("span", {
5909
5913
  className: "size"
5910
5914
  }, groupSize)), /*#__PURE__*/React__default["default"].createElement(DataTable, _extends({}, table, {