intelicoreact 0.0.81 → 0.0.82
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.
|
@@ -115,7 +115,9 @@ var RangeCalendar = function RangeCalendar(props) {
|
|
|
115
115
|
onMouseLeave: function onMouseLeave() {
|
|
116
116
|
return onHover(null);
|
|
117
117
|
}
|
|
118
|
-
},
|
|
118
|
+
}, /*#__PURE__*/_react.default.createElement("span", {
|
|
119
|
+
className: "calendar__day-num"
|
|
120
|
+
}, day && day.date.getDate()));
|
|
119
121
|
};
|
|
120
122
|
|
|
121
123
|
var handlePrev = function handlePrev() {
|
package/package.json
CHANGED
|
@@ -88,7 +88,7 @@ const RangeCalendar = props => {
|
|
|
88
88
|
onMouseOver={day && !isFutureDay ? () => onHover(day.date) : null}
|
|
89
89
|
onMouseLeave={() => onHover(null)}
|
|
90
90
|
>
|
|
91
|
-
|
|
91
|
+
<span className="calendar__day-num">{day && day.date.getDate()}</span>
|
|
92
92
|
</div>
|
|
93
93
|
);
|
|
94
94
|
};
|