ywana-core8 0.0.585 → 0.0.588

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 CHANGED
@@ -208,7 +208,8 @@ var Accordion = function Accordion(props) {
208
208
  var className = props.className,
209
209
  _props$sections = props.sections,
210
210
  sections = _props$sections === void 0 ? [] : _props$sections,
211
- onCheck = props.onCheck;
211
+ onCheck = props.onCheck,
212
+ children = props.children;
212
213
 
213
214
  var _useState = React.useState([]),
214
215
  openSections = _useState[0],
@@ -260,7 +261,7 @@ var Accordion = function Accordion(props) {
260
261
  onCheck: function onCheck() {
261
262
  return check(index);
262
263
  }
263
- }), section.children);
264
+ }), section.children, children);
264
265
  }));
265
266
  };
266
267
  /**
@@ -3061,7 +3062,7 @@ var Planner = function Planner(_ref) {
3061
3062
  var weekStart = today.clone().startOf('week');
3062
3063
  var isThisMonday = date.moment.isSame(weekStart);
3063
3064
  return /*#__PURE__*/React__default["default"].createElement("div", {
3064
- key: "column-" + date.moment.dayOfYear,
3065
+ key: "column-" + date.moment.dayOfYear(),
3065
3066
  className: "column-header",
3066
3067
  ref: isThisMonday ? thisMondayElement : null
3067
3068
  }, /*#__PURE__*/React__default["default"].createElement("div", {