@idds/react 1.2.18 → 1.2.20

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.es.js CHANGED
@@ -9642,7 +9642,7 @@ function DatePicker({
9642
9642
  onMouseLeave: () => setHoveredDate(null),
9643
9643
  disabled: styling.isDisabled,
9644
9644
  className: styling.className + (!styling.isSelected && !styling.isInRange && !styling.isHovered && !styling.isHoveredEnd && !styling.isDisabled ? " ina-date-picker__day--hover" : ""),
9645
- children: day.date.getDate()
9645
+ children: /* @__PURE__ */ jsx("span", { className: "ina-date-picker__day-number", children: day.date.getDate() })
9646
9646
  },
9647
9647
  `${day.date.getFullYear()}-${day.date.getMonth()}-${day.date.getDate()}`
9648
9648
  );