diff --git a/package.json b/package.json index 7b0052b9..c1b9d8d2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@gameflow-tv/flume", - "version": "0.3.9", + "version": "0.3.10", "description": "React implementation of the Flume design system", "module": "dist/index.js", "files": [ diff --git a/src/lib/components/inputs/Calendar/Calendar.tsx b/src/lib/components/inputs/Calendar/Calendar.tsx index 6b9ea436..ff44d246 100644 --- a/src/lib/components/inputs/Calendar/Calendar.tsx +++ b/src/lib/components/inputs/Calendar/Calendar.tsx @@ -296,7 +296,8 @@ export const Calendar = forwardRef((props: CalendarProps, ref) => { (isSelectedDay(day, selectedDate) ? ' selected' : '') } onClick={() => onDateClick(day)} - {...styles}> + {...styles} + > {day.month !== 0 ? !isNullOrUndefined(props.dateBoxDisabledTxt) ? props.dateBoxDisabledTxt