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.
@@ -200,7 +200,8 @@ var Accordion = function Accordion(props) {
200
200
  var className = props.className,
201
201
  _props$sections = props.sections,
202
202
  sections = _props$sections === void 0 ? [] : _props$sections,
203
- onCheck = props.onCheck;
203
+ onCheck = props.onCheck,
204
+ children = props.children;
204
205
 
205
206
  var _useState = useState([]),
206
207
  openSections = _useState[0],
@@ -252,7 +253,7 @@ var Accordion = function Accordion(props) {
252
253
  onCheck: function onCheck() {
253
254
  return check(index);
254
255
  }
255
- }), section.children);
256
+ }), section.children, children);
256
257
  }));
257
258
  };
258
259
  /**
@@ -3053,7 +3054,7 @@ var Planner = function Planner(_ref) {
3053
3054
  var weekStart = today.clone().startOf('week');
3054
3055
  var isThisMonday = date.moment.isSame(weekStart);
3055
3056
  return /*#__PURE__*/React.createElement("div", {
3056
- key: "column-" + date.moment.dayOfYear,
3057
+ key: "column-" + date.moment.dayOfYear(),
3057
3058
  className: "column-header",
3058
3059
  ref: isThisMonday ? thisMondayElement : null
3059
3060
  }, /*#__PURE__*/React.createElement("div", {