willba-component-library 0.2.91 → 0.2.93
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/components/FilterBar/FilterBar.d.ts +2 -2
- package/lib/components/FilterBar/FilterBarTypes.d.ts +1 -1
- package/lib/index.d.ts +3 -3
- package/lib/index.esm.js +1 -3
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +1 -3
- package/lib/index.js.map +1 -1
- package/lib/index.umd.js +1 -3
- package/lib/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/FilterBar/FilterBar.tsx +2 -2
- package/src/components/FilterBar/FilterBarTypes.ts +1 -1
- package/src/core/components/calendar/utils/disabledDatesByPage.tsx +1 -6
- package/src/index.ts +1 -1
package/lib/index.js
CHANGED
|
@@ -11211,9 +11211,7 @@ var disabledDatesByPage = function (_a) {
|
|
|
11211
11211
|
return daysToOffsetCalendar.length
|
|
11212
11212
|
? [
|
|
11213
11213
|
{
|
|
11214
|
-
from: addDays(today,
|
|
11215
|
-
? (_d = daysToOffsetCalendar[0]) === null || _d === void 0 ? void 0 : _d.offset
|
|
11216
|
-
: -2),
|
|
11214
|
+
from: addDays(today, (_d = (_c = daysToOffsetCalendar[0]) === null || _c === void 0 ? void 0 : _c.offset) !== null && _d !== void 0 ? _d : -1),
|
|
11217
11215
|
to: addDays(today, -100),
|
|
11218
11216
|
},
|
|
11219
11217
|
]
|