ywana-core8 0.0.485 → 0.0.486
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 +9 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +9 -0
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +9 -0
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/domain/ContentEditor.js +1 -0
- package/src/html/textfield.js +4 -2
package/dist/index.modern.js
CHANGED
@@ -4188,6 +4188,15 @@ var StringEditor = function StringEditor(_ref6) {
|
|
4188
4188
|
readOnly: !editable
|
4189
4189
|
});
|
4190
4190
|
|
4191
|
+
case FORMATS.DATERANGE:
|
4192
|
+
return /*#__PURE__*/React.createElement(DateRange, {
|
4193
|
+
id: id,
|
4194
|
+
label: label,
|
4195
|
+
value: value,
|
4196
|
+
onChange: change,
|
4197
|
+
readOnly: !editable
|
4198
|
+
});
|
4199
|
+
|
4191
4200
|
case FORMATS.TOKENS:
|
4192
4201
|
return /*#__PURE__*/React.createElement(TokenField, {
|
4193
4202
|
id: id,
|