ywana-core8 0.0.801 → 0.0.802
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 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +4 -2
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +4 -2
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/domain/ContentEditor.js +2 -2
package/dist/index.cjs
CHANGED
@@ -5679,7 +5679,9 @@ var EntityEditor = function EntityEditor(_ref6) {
|
|
5679
5679
|
onChange = _ref6.onChange;
|
5680
5680
|
var id = field.id,
|
5681
5681
|
item = field.item,
|
5682
|
-
label = field.label
|
5682
|
+
label = field.label,
|
5683
|
+
_field$outlined = field.outlined,
|
5684
|
+
outlined = _field$outlined === void 0 ? false : _field$outlined;
|
5683
5685
|
var content = new Content(item, value);
|
5684
5686
|
|
5685
5687
|
function change(fid, value) {
|
@@ -5725,7 +5727,7 @@ var EntityEditor = function EntityEditor(_ref6) {
|
|
5725
5727
|
key: field.id,
|
5726
5728
|
field: field,
|
5727
5729
|
onChange: change,
|
5728
|
-
outlined:
|
5730
|
+
outlined: outlined,
|
5729
5731
|
content: content
|
5730
5732
|
});
|
5731
5733
|
}))) : null;
|