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