ywana-core8 0.0.388 → 0.0.389
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 +5 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +5 -1
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +5 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/domain/ContentEditor.js +1 -0
- package/src/domain/ContentType.js +1 -0
package/dist/index.umd.js
CHANGED
@@ -1199,7 +1199,8 @@
|
|
1199
1199
|
EMAIL: 'email',
|
1200
1200
|
HTML: 'HTML',
|
1201
1201
|
URL: 'URL',
|
1202
|
-
IMG: 'IMG'
|
1202
|
+
IMG: 'IMG',
|
1203
|
+
COLOR: 'COLOR'
|
1203
1204
|
};
|
1204
1205
|
/**
|
1205
1206
|
* CHECK
|
@@ -4071,6 +4072,9 @@
|
|
4071
4072
|
|
4072
4073
|
function renderFormat(format, options) {
|
4073
4074
|
switch (format) {
|
4075
|
+
case FORMATS.COLOR:
|
4076
|
+
return /*#__PURE__*/React__default["default"].createElement("div", null, "COLOR PICKER");
|
4077
|
+
|
4074
4078
|
case FORMATS.HTML:
|
4075
4079
|
return /*#__PURE__*/React__default["default"].createElement(Editor, {
|
4076
4080
|
id: id,
|