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