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.modern.js
CHANGED
@@ -2631,9 +2631,10 @@ var PlannerCell = function PlannerCell(_ref2) {
|
|
2631
2631
|
|
2632
2632
|
var EventCard = function EventCard(props) {
|
2633
2633
|
var event = props.event;
|
2634
|
-
var title = event.title
|
2634
|
+
var title = event.title,
|
2635
|
+
color = event.color;
|
2635
2636
|
var style = {
|
2636
|
-
backgroundColor:
|
2637
|
+
backgroundColor: color,
|
2637
2638
|
color: "white"
|
2638
2639
|
};
|
2639
2640
|
return /*#__PURE__*/React.createElement("div", {
|