ywana-core8 0.0.584 → 0.0.587

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.
@@ -192,6 +192,10 @@ var Icon = function Icon(_ref) {
192
192
  }, icon);
193
193
  };
194
194
 
195
+ /**
196
+ * Accordion
197
+ */
198
+
195
199
  var Accordion = function Accordion(props) {
196
200
  var className = props.className,
197
201
  _props$sections = props.sections,
@@ -251,6 +255,9 @@ var Accordion = function Accordion(props) {
251
255
  }), section.children);
252
256
  }));
253
257
  };
258
+ /**
259
+ * AccordionSection
260
+ */
254
261
 
255
262
  var AccordionSection = function AccordionSection(props) {
256
263
  var checked = props.checked,
@@ -267,6 +274,7 @@ var AccordionSection = function AccordionSection(props) {
267
274
  var togglerIcon = open ? "expand_less" : "expand_more";
268
275
  var checkedIcon = checked === undefined || checked === null ? null : checked === false ? "check_box_outline_blank" : "check_box";
269
276
  return /*#__PURE__*/React.createElement("section", {
277
+ key: title,
270
278
  className: "accordion-section"
271
279
  }, /*#__PURE__*/React.createElement("header", null, checkedIcon ? /*#__PURE__*/React.createElement(Icon, {
272
280
  className: "accordion-section-checker",
@@ -3045,6 +3053,7 @@ var Planner = function Planner(_ref) {
3045
3053
  var weekStart = today.clone().startOf('week');
3046
3054
  var isThisMonday = date.moment.isSame(weekStart);
3047
3055
  return /*#__PURE__*/React.createElement("div", {
3056
+ key: "column-" + date.moment.dayOfYear(),
3048
3057
  className: "column-header",
3049
3058
  ref: isThisMonday ? thisMondayElement : null
3050
3059
  }, /*#__PURE__*/React.createElement("div", {