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
- }, day && day.date.getDate());
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "intelicoreact",
3
- "version": "0.0.81",
3
+ "version": "0.0.82",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -88,7 +88,7 @@ const RangeCalendar = props => {
88
88
  onMouseOver={day && !isFutureDay ? () => onHover(day.date) : null}
89
89
  onMouseLeave={() => onHover(null)}
90
90
  >
91
- {day && day.date.getDate()}
91
+ <span className="calendar__day-num">{day && day.date.getDate()}</span>
92
92
  </div>
93
93
  );
94
94
  };