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.umd.js
CHANGED
|
@@ -11213,9 +11213,7 @@
|
|
|
11213
11213
|
return daysToOffsetCalendar.length
|
|
11214
11214
|
? [
|
|
11215
11215
|
{
|
|
11216
|
-
from: addDays(today,
|
|
11217
|
-
? (_d = daysToOffsetCalendar[0]) === null || _d === void 0 ? void 0 : _d.offset
|
|
11218
|
-
: -2),
|
|
11216
|
+
from: addDays(today, (_d = (_c = daysToOffsetCalendar[0]) === null || _c === void 0 ? void 0 : _c.offset) !== null && _d !== void 0 ? _d : -1),
|
|
11219
11217
|
to: addDays(today, -100),
|
|
11220
11218
|
},
|
|
11221
11219
|
]
|