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.modern.js
CHANGED
@@ -5671,7 +5671,9 @@ var EntityEditor = function EntityEditor(_ref6) {
|
|
5671
5671
|
onChange = _ref6.onChange;
|
5672
5672
|
var id = field.id,
|
5673
5673
|
item = field.item,
|
5674
|
-
label = field.label
|
5674
|
+
label = field.label,
|
5675
|
+
_field$outlined = field.outlined,
|
5676
|
+
outlined = _field$outlined === void 0 ? false : _field$outlined;
|
5675
5677
|
var content = new Content(item, value);
|
5676
5678
|
|
5677
5679
|
function change(fid, value) {
|
@@ -5717,7 +5719,7 @@ var EntityEditor = function EntityEditor(_ref6) {
|
|
5717
5719
|
key: field.id,
|
5718
5720
|
field: field,
|
5719
5721
|
onChange: change,
|
5720
|
-
outlined:
|
5722
|
+
outlined: outlined,
|
5721
5723
|
content: content
|
5722
5724
|
});
|
5723
5725
|
}))) : null;
|