ywana-core8 0.0.389 → 0.0.390

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.umd.js CHANGED
@@ -1,8 +1,8 @@
1
1
  (function (global, factory) {
2
- typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('material-design-icons-iconfont/dist/material-design-icons.css'), require('react'), require('react-switch'), require('moment'), require('moment-range'), require('resumablejs'), require('react-notifications-component'), require('react-notifications-component/dist/theme.css'), require('deep-equal')) :
3
- typeof define === 'function' && define.amd ? define(['exports', 'material-design-icons-iconfont/dist/material-design-icons.css', 'react', 'react-switch', 'moment', 'moment-range', 'resumablejs', 'react-notifications-component', 'react-notifications-component/dist/theme.css', 'deep-equal'], factory) :
4
- (global = global || self, factory(global.ywanaCore8 = {}, null, global.react, global.reactSwitch, global.moment, global.momentRange, global.resumablejs, global.reactNotificationsComponent, null, global.deepEqual));
5
- })(this, (function (exports, materialDesignIcons_css, React, RSwitch, moment, momentRange, ResumableJS, reactNotificationsComponent, theme_css, equal) {
2
+ typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('material-design-icons-iconfont/dist/material-design-icons.css'), require('react'), require('react-switch'), require('moment'), require('moment-range'), require('resumablejs'), require('react-notifications-component'), require('react-notifications-component/dist/theme.css'), require('react-color'), require('deep-equal')) :
3
+ typeof define === 'function' && define.amd ? define(['exports', 'material-design-icons-iconfont/dist/material-design-icons.css', 'react', 'react-switch', 'moment', 'moment-range', 'resumablejs', 'react-notifications-component', 'react-notifications-component/dist/theme.css', 'react-color', 'deep-equal'], factory) :
4
+ (global = global || self, factory(global.ywanaCore8 = {}, null, global.react, global.reactSwitch, global.moment, global.momentRange, global.resumablejs, global.reactNotificationsComponent, null, global.reactColor, global.deepEqual));
5
+ })(this, (function (exports, materialDesignIcons_css, React, RSwitch, moment, momentRange, ResumableJS, reactNotificationsComponent, theme_css, reactColor, equal) {
6
6
  function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
7
7
 
8
8
  var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
@@ -3716,6 +3716,21 @@
3716
3716
  });
3717
3717
  };
3718
3718
 
3719
+ var ColorField = function ColorField(props) {
3720
+ var id = props.id,
3721
+ onChange = props.onChange;
3722
+
3723
+ function change(color) {
3724
+ if (onChange) onChange(id, color.hex);
3725
+ }
3726
+
3727
+ return /*#__PURE__*/React__default["default"].createElement("div", {
3728
+ className: "color-field"
3729
+ }, /*#__PURE__*/React__default["default"].createElement(reactColor.CirclePicker, {
3730
+ onChangeComplete: change
3731
+ }));
3732
+ };
3733
+
3719
3734
  /**
3720
3735
  * Content Editor
3721
3736
  */
@@ -4073,7 +4088,10 @@
4073
4088
  function renderFormat(format, options) {
4074
4089
  switch (format) {
4075
4090
  case FORMATS.COLOR:
4076
- return /*#__PURE__*/React__default["default"].createElement("div", null, "COLOR PICKER");
4091
+ return /*#__PURE__*/React__default["default"].createElement(ColorField, {
4092
+ id: id,
4093
+ onChange: change
4094
+ });
4077
4095
 
4078
4096
  case FORMATS.HTML:
4079
4097
  return /*#__PURE__*/React__default["default"].createElement(Editor, {