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.cjs CHANGED
@@ -5150,10 +5150,11 @@ var ContentViewer = function ContentViewer(props) {
5150
5150
  var FieldViewer = function FieldViewer(props) {
5151
5151
  var field = props.field,
5152
5152
  value = props.value;
5153
- var id = field.id,
5154
- type = field.type,
5155
- label = field.label;
5156
- if (id === "id") return null;
5153
+ var type = field.type,
5154
+ label = field.label,
5155
+ _field$visible = field.visible,
5156
+ visible = _field$visible === void 0 ? true : _field$visible;
5157
+ if (!visible) return null;
5157
5158
 
5158
5159
  switch (type) {
5159
5160
  case TYPES.STRING:
@@ -5906,10 +5907,13 @@ var TableEditor = function TableEditor(props) {
5906
5907
  id: "actions"
5907
5908
  });
5908
5909
  var groupSize = groups[groupName].length;
5910
+ var title = /*#__PURE__*/React__default["default"].createElement("span", null, /*#__PURE__*/React__default["default"].createElement("span", {
5911
+ className: "size"
5912
+ }, groupSize), renderGroupLabel(groupName));
5909
5913
  return /*#__PURE__*/React__default["default"].createElement(React.Fragment, {
5910
5914
  key: groupName
5911
5915
  }, /*#__PURE__*/React__default["default"].createElement(Header, {
5912
- title: renderGroupLabel(groupName)
5916
+ title: title
5913
5917
  }, /*#__PURE__*/React__default["default"].createElement("span", {
5914
5918
  className: "size"
5915
5919
  }, groupSize)), /*#__PURE__*/React__default["default"].createElement(DataTable, _extends({}, table, {