ywana-core8 0.0.251 → 0.0.252
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 +3 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +3 -2
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +3 -2
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/widgets/planner/Planner.js +1 -1
package/dist/index.umd.js
CHANGED
@@ -2634,9 +2634,10 @@
|
|
2634
2634
|
|
2635
2635
|
var EventCard = function EventCard(props) {
|
2636
2636
|
var event = props.event;
|
2637
|
-
var title = event.title
|
2637
|
+
var title = event.title,
|
2638
|
+
color = event.color;
|
2638
2639
|
var style = {
|
2639
|
-
backgroundColor:
|
2640
|
+
backgroundColor: color,
|
2640
2641
|
color: "white"
|
2641
2642
|
};
|
2642
2643
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|