ywana-core8 0.1.71 → 0.1.72
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 +7 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +7 -0
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +7 -0
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/domain/ContentType.js +10 -1
package/dist/index.cjs
CHANGED
@@ -1297,6 +1297,13 @@ var ContentType = /*#__PURE__*/function () {
|
|
1297
1297
|
}) : [];
|
1298
1298
|
}
|
1299
1299
|
break;
|
1300
|
+
case "Image":
|
1301
|
+
if (entryData) {
|
1302
|
+
next[name] = entryData;
|
1303
|
+
} else {
|
1304
|
+
next[name] = field["default"];
|
1305
|
+
}
|
1306
|
+
break;
|
1300
1307
|
default:
|
1301
1308
|
next[name] = field;
|
1302
1309
|
break;
|