willba-component-library 0.2.31 → 0.2.32
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/lib/index.esm.js +6 -1
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +6 -1
- package/lib/index.js.map +1 -1
- package/lib/index.umd.js +6 -1
- package/lib/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/core/components/calendar/Calendar.tsx +6 -1
package/lib/index.esm.js
CHANGED
|
@@ -10897,7 +10897,12 @@ var Calendar = forwardRef(function (_a, ref) {
|
|
|
10897
10897
|
tooltipClonesCheckOut.forEach(function (clone) { return clone.remove(); });
|
|
10898
10898
|
tooltipClonesOverlappingDates.forEach(function (clone) { return clone.remove(); });
|
|
10899
10899
|
};
|
|
10900
|
-
}, [
|
|
10900
|
+
}, [
|
|
10901
|
+
calendarRange,
|
|
10902
|
+
updateCalendarMonthNavigation,
|
|
10903
|
+
overlappingDate,
|
|
10904
|
+
initialCalendarRange,
|
|
10905
|
+
]);
|
|
10901
10906
|
return (React__default__default.createElement("div", { className: "will-filter-bar-calendar", ref: ref },
|
|
10902
10907
|
React__default__default.createElement("div", { className: "will-calendar-filter-container" },
|
|
10903
10908
|
React__default__default.createElement(DayPicker, { key: updateCalendarDefaultMoth, id: "will-calendar", mode: "range", locale: language === 'en' ? enUS : fi, numberOfMonths: !isTablet ? 2 : 1, weekStartsOn: 1, selected: calendarRange, onSelect: function (range) {
|