ywana-core8 0.0.427 → 0.0.428
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 +8 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +8 -0
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +8 -0
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/domain/ContentViewer.js +3 -1
package/dist/index.umd.js
CHANGED
@@ -5238,6 +5238,14 @@
|
|
5238
5238
|
value: value
|
5239
5239
|
});
|
5240
5240
|
|
5241
|
+
case TYPES.ARRAY:
|
5242
|
+
return value.map(function (v) {
|
5243
|
+
return /*#__PURE__*/React__default["default"].createElement(FieldViewer, {
|
5244
|
+
field: field,
|
5245
|
+
value: v
|
5246
|
+
});
|
5247
|
+
});
|
5248
|
+
|
5241
5249
|
default:
|
5242
5250
|
return /*#__PURE__*/React__default["default"].createElement("div", null, label);
|
5243
5251
|
}
|