willba-component-library 0.2.38 → 0.2.39
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 +1 -6
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +1 -6
- package/lib/index.js.map +1 -1
- package/lib/index.umd.js +1 -6
- package/lib/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/core/components/calendar/Calendar.tsx +1 -7
package/lib/index.umd.js
CHANGED
|
@@ -10906,7 +10906,6 @@
|
|
|
10906
10906
|
var calendarOverlappingDate = document.querySelectorAll('.will-filter-bar-calendar .rdp-cell:has(.overlapping-date)');
|
|
10907
10907
|
var tooltipClonesCheckIn = [];
|
|
10908
10908
|
var tooltipClonesCheckOut = [];
|
|
10909
|
-
var tooltipClonesSpinner = [];
|
|
10910
10909
|
var tooltipClonesOverlappingDates = [];
|
|
10911
10910
|
if (calendarTooltip && calendarButtons.length > 0) {
|
|
10912
10911
|
calendarButtons.forEach(function (element) {
|
|
@@ -10923,10 +10922,7 @@
|
|
|
10923
10922
|
});
|
|
10924
10923
|
}
|
|
10925
10924
|
if (loadingSpinner && calendarMonthContainer) {
|
|
10926
|
-
|
|
10927
|
-
calendarMonthContainer.appendChild(tooltipClone);
|
|
10928
|
-
tooltipClonesSpinner.push(tooltipClone);
|
|
10929
|
-
loadingSpinner.remove();
|
|
10925
|
+
calendarMonthContainer.appendChild(loadingSpinner);
|
|
10930
10926
|
}
|
|
10931
10927
|
if (calendarTooltipOverlappingDate &&
|
|
10932
10928
|
calendarOverlappingDate.length > 0) {
|
|
@@ -10939,7 +10935,6 @@
|
|
|
10939
10935
|
return function () {
|
|
10940
10936
|
tooltipClonesCheckIn.forEach(function (clone) { return clone.remove(); });
|
|
10941
10937
|
tooltipClonesCheckOut.forEach(function (clone) { return clone.remove(); });
|
|
10942
|
-
tooltipClonesSpinner.forEach(function (clone) { return clone.remove(); });
|
|
10943
10938
|
tooltipClonesOverlappingDates.forEach(function (clone) { return clone.remove(); });
|
|
10944
10939
|
};
|
|
10945
10940
|
}, [
|