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.cjs
CHANGED
@@ -2639,9 +2639,10 @@ var PlannerCell = function PlannerCell(_ref2) {
|
|
2639
2639
|
|
2640
2640
|
var EventCard = function EventCard(props) {
|
2641
2641
|
var event = props.event;
|
2642
|
-
var title = event.title
|
2642
|
+
var title = event.title,
|
2643
|
+
color = event.color;
|
2643
2644
|
var style = {
|
2644
|
-
backgroundColor:
|
2645
|
+
backgroundColor: color,
|
2645
2646
|
color: "white"
|
2646
2647
|
};
|
2647
2648
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|