ywana-core8 0.0.360 → 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.cjs +5 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +5 -4
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +5 -4
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/domain/ContentViewer.js +2 -2
package/dist/index.modern.js
CHANGED
@@ -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
|
5146
|
-
|
5147
|
-
|
5148
|
-
|
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:
|