ywana-core8 0.0.362 → 0.0.363

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: