@zag-js/date-utils 0.74.2 → 0.75.0

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/dist/index.js CHANGED
@@ -449,7 +449,6 @@ function getSectionEnd(focusedDate, startDate, visibleDuration, locale, minValue
449
449
  }
450
450
  if (visibleDuration.weeks) {
451
451
  return adjust({
452
- //@ts-expect-error - endOfWeek is loosely typed
453
452
  focusedDate: date.endOfWeek(focusedDate, locale),
454
453
  startDate
455
454
  });
package/dist/index.mjs CHANGED
@@ -447,7 +447,6 @@ function getSectionEnd(focusedDate, startDate, visibleDuration, locale, minValue
447
447
  }
448
448
  if (visibleDuration.weeks) {
449
449
  return adjust({
450
- //@ts-expect-error - endOfWeek is loosely typed
451
450
  focusedDate: endOfWeek(focusedDate, locale),
452
451
  startDate
453
452
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zag-js/date-utils",
3
- "version": "0.74.2",
3
+ "version": "0.75.0",
4
4
  "description": "Date utilities for zag.js",
5
5
  "keywords": [
6
6
  "js",
@@ -27,7 +27,7 @@
27
27
  "@internationalized/date": ">=3.0.0"
28
28
  },
29
29
  "devDependencies": {
30
- "@internationalized/date": "3.5.5",
30
+ "@internationalized/date": "3.5.6",
31
31
  "clean-package": "2.2.0"
32
32
  },
33
33
  "module": "dist/index.mjs",