ywana-core8 0.0.596 → 0.0.597
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 +4 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +4 -1
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +4 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/domain/ContentViewer.js +2 -1
package/dist/index.umd.js
CHANGED
@@ -5205,9 +5205,12 @@
|
|
5205
5205
|
label = field.label,
|
5206
5206
|
_field$visible = field.visible,
|
5207
5207
|
visible = _field$visible === void 0 ? true : _field$visible,
|
5208
|
-
optional = field.optional
|
5208
|
+
optional = field.optional,
|
5209
|
+
_field$hidden = field.hidden,
|
5210
|
+
hidden = _field$hidden === void 0 ? false : _field$hidden;
|
5209
5211
|
if (!visible) return null;
|
5210
5212
|
if (optional && value === undefined) return null;
|
5213
|
+
if (hidden) return null;
|
5211
5214
|
|
5212
5215
|
switch (type) {
|
5213
5216
|
case TYPES.STRING:
|