@internationalized/date 3.7.0 → 3.8.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.
Files changed (58) hide show
  1. package/dist/BuddhistCalendar.main.js.map +1 -1
  2. package/dist/BuddhistCalendar.module.js.map +1 -1
  3. package/dist/CalendarDate.main.js.map +1 -1
  4. package/dist/CalendarDate.module.js.map +1 -1
  5. package/dist/EthiopicCalendar.main.js.map +1 -1
  6. package/dist/EthiopicCalendar.module.js.map +1 -1
  7. package/dist/GregorianCalendar.main.js.map +1 -1
  8. package/dist/GregorianCalendar.module.js.map +1 -1
  9. package/dist/HebrewCalendar.main.js.map +1 -1
  10. package/dist/HebrewCalendar.module.js.map +1 -1
  11. package/dist/IndianCalendar.main.js.map +1 -1
  12. package/dist/IndianCalendar.module.js.map +1 -1
  13. package/dist/IslamicCalendar.main.js.map +1 -1
  14. package/dist/IslamicCalendar.module.js.map +1 -1
  15. package/dist/JapaneseCalendar.main.js.map +1 -1
  16. package/dist/JapaneseCalendar.module.js.map +1 -1
  17. package/dist/PersianCalendar.main.js.map +1 -1
  18. package/dist/PersianCalendar.module.js.map +1 -1
  19. package/dist/TaiwanCalendar.main.js.map +1 -1
  20. package/dist/TaiwanCalendar.module.js.map +1 -1
  21. package/dist/conversion.main.js +1 -1
  22. package/dist/conversion.main.js.map +1 -1
  23. package/dist/conversion.mjs +2 -2
  24. package/dist/conversion.module.js +2 -2
  25. package/dist/conversion.module.js.map +1 -1
  26. package/dist/createCalendar.main.js.map +1 -1
  27. package/dist/createCalendar.module.js.map +1 -1
  28. package/dist/import.mjs +2 -2
  29. package/dist/main.js +1 -0
  30. package/dist/main.js.map +1 -1
  31. package/dist/manipulation.main.js.map +1 -1
  32. package/dist/manipulation.module.js.map +1 -1
  33. package/dist/module.js +2 -2
  34. package/dist/module.js.map +1 -1
  35. package/dist/queries.main.js +9 -7
  36. package/dist/queries.main.js.map +1 -1
  37. package/dist/queries.mjs +9 -8
  38. package/dist/queries.module.js +9 -8
  39. package/dist/queries.module.js.map +1 -1
  40. package/dist/types.d.ts +31 -16
  41. package/dist/types.d.ts.map +1 -1
  42. package/package.json +2 -2
  43. package/src/CalendarDate.ts +14 -14
  44. package/src/calendars/BuddhistCalendar.ts +5 -5
  45. package/src/calendars/EthiopicCalendar.ts +10 -10
  46. package/src/calendars/GregorianCalendar.ts +4 -4
  47. package/src/calendars/HebrewCalendar.ts +5 -5
  48. package/src/calendars/IndianCalendar.ts +5 -5
  49. package/src/calendars/IslamicCalendar.ts +7 -7
  50. package/src/calendars/JapaneseCalendar.ts +6 -6
  51. package/src/calendars/PersianCalendar.ts +3 -3
  52. package/src/calendars/TaiwanCalendar.ts +5 -5
  53. package/src/conversion.ts +6 -6
  54. package/src/createCalendar.ts +2 -2
  55. package/src/index.ts +3 -1
  56. package/src/manipulation.ts +7 -7
  57. package/src/queries.ts +11 -10
  58. package/src/types.ts +17 -2
package/dist/queries.mjs CHANGED
@@ -31,17 +31,18 @@ function $14e0f24ef4ac5c92$export$5841f9eb9773f25f(a, b) {
31
31
  return a.era === b.era && a.year === b.year;
32
32
  }
33
33
  function $14e0f24ef4ac5c92$export$91b62ebf2ba703ee(a, b) {
34
- return a.calendar.identifier === b.calendar.identifier && a.era === b.era && a.year === b.year && a.month === b.month && a.day === b.day;
34
+ return $14e0f24ef4ac5c92$export$dbc69fd56b53d5e(a.calendar, b.calendar) && $14e0f24ef4ac5c92$export$ea39ec197993aef0(a, b);
35
35
  }
36
36
  function $14e0f24ef4ac5c92$export$5a8da0c44a3afdf2(a, b) {
37
- a = $14e0f24ef4ac5c92$export$a5a3b454ada2268e(a);
38
- b = $14e0f24ef4ac5c92$export$a5a3b454ada2268e(b);
39
- return a.calendar.identifier === b.calendar.identifier && a.era === b.era && a.year === b.year && a.month === b.month;
37
+ return $14e0f24ef4ac5c92$export$dbc69fd56b53d5e(a.calendar, b.calendar) && $14e0f24ef4ac5c92$export$a18c89cbd24170ff(a, b);
40
38
  }
41
39
  function $14e0f24ef4ac5c92$export$ea840f5a6dda8147(a, b) {
42
- a = $14e0f24ef4ac5c92$export$f91e89d3d0406102(a);
43
- b = $14e0f24ef4ac5c92$export$f91e89d3d0406102(b);
44
- return a.calendar.identifier === b.calendar.identifier && a.era === b.era && a.year === b.year;
40
+ return $14e0f24ef4ac5c92$export$dbc69fd56b53d5e(a.calendar, b.calendar) && $14e0f24ef4ac5c92$export$5841f9eb9773f25f(a, b);
41
+ }
42
+ function $14e0f24ef4ac5c92$export$dbc69fd56b53d5e(a, b) {
43
+ var _a_isEqual, _b_isEqual;
44
+ var _a_isEqual1, _ref;
45
+ return (_ref = (_a_isEqual1 = (_a_isEqual = a.isEqual) === null || _a_isEqual === void 0 ? void 0 : _a_isEqual.call(a, b)) !== null && _a_isEqual1 !== void 0 ? _a_isEqual1 : (_b_isEqual = b.isEqual) === null || _b_isEqual === void 0 ? void 0 : _b_isEqual.call(b, a)) !== null && _ref !== void 0 ? _ref : a.identifier === b.identifier;
45
46
  }
46
47
  function $14e0f24ef4ac5c92$export$629b0a497aa65267(date, timeZone) {
47
48
  return $14e0f24ef4ac5c92$export$ea39ec197993aef0(date, $14e0f24ef4ac5c92$export$d0bdf45af03a6ea3(timeZone));
@@ -262,5 +263,5 @@ function $14e0f24ef4ac5c92$export$ee9d87258e1d19ed(date, locale) {
262
263
  }
263
264
 
264
265
 
265
- export {$14e0f24ef4ac5c92$export$ea39ec197993aef0 as isSameDay, $14e0f24ef4ac5c92$export$a18c89cbd24170ff as isSameMonth, $14e0f24ef4ac5c92$export$a5a3b454ada2268e as startOfMonth, $14e0f24ef4ac5c92$export$5841f9eb9773f25f as isSameYear, $14e0f24ef4ac5c92$export$f91e89d3d0406102 as startOfYear, $14e0f24ef4ac5c92$export$91b62ebf2ba703ee as isEqualDay, $14e0f24ef4ac5c92$export$5a8da0c44a3afdf2 as isEqualMonth, $14e0f24ef4ac5c92$export$ea840f5a6dda8147 as isEqualYear, $14e0f24ef4ac5c92$export$629b0a497aa65267 as isToday, $14e0f24ef4ac5c92$export$d0bdf45af03a6ea3 as today, $14e0f24ef4ac5c92$export$2061056d06d7cdf7 as getDayOfWeek, $14e0f24ef4ac5c92$export$461939dd4422153 as now, $14e0f24ef4ac5c92$export$68781ddf31c0090f as compareDate, $14e0f24ef4ac5c92$export$c19a80a9721b80f6 as compareTime, $14e0f24ef4ac5c92$export$126c91c941de7e as getHoursInDay, $14e0f24ef4ac5c92$export$aa8b41735afcabd2 as getLocalTimeZone, $14e0f24ef4ac5c92$export$a2258d9c4118825c as endOfMonth, $14e0f24ef4ac5c92$export$8b7aa55c66d5569e as endOfYear, $14e0f24ef4ac5c92$export$5412ac11713b72ad as getMinimumMonthInYear, $14e0f24ef4ac5c92$export$b2f4953d301981d5 as getMinimumDayInMonth, $14e0f24ef4ac5c92$export$42c81a444fbfb5d4 as startOfWeek, $14e0f24ef4ac5c92$export$ef8b6d9133084f4e as endOfWeek, $14e0f24ef4ac5c92$export$ccc1b2479e7dd654 as getWeeksInMonth, $14e0f24ef4ac5c92$export$5c333a116e949cdd as minDate, $14e0f24ef4ac5c92$export$a75f2bff57811055 as maxDate, $14e0f24ef4ac5c92$export$618d60ea299da42 as isWeekend, $14e0f24ef4ac5c92$export$ee9d87258e1d19ed as isWeekday};
266
+ export {$14e0f24ef4ac5c92$export$ea39ec197993aef0 as isSameDay, $14e0f24ef4ac5c92$export$a18c89cbd24170ff as isSameMonth, $14e0f24ef4ac5c92$export$a5a3b454ada2268e as startOfMonth, $14e0f24ef4ac5c92$export$5841f9eb9773f25f as isSameYear, $14e0f24ef4ac5c92$export$f91e89d3d0406102 as startOfYear, $14e0f24ef4ac5c92$export$91b62ebf2ba703ee as isEqualDay, $14e0f24ef4ac5c92$export$dbc69fd56b53d5e as isEqualCalendar, $14e0f24ef4ac5c92$export$5a8da0c44a3afdf2 as isEqualMonth, $14e0f24ef4ac5c92$export$ea840f5a6dda8147 as isEqualYear, $14e0f24ef4ac5c92$export$629b0a497aa65267 as isToday, $14e0f24ef4ac5c92$export$d0bdf45af03a6ea3 as today, $14e0f24ef4ac5c92$export$2061056d06d7cdf7 as getDayOfWeek, $14e0f24ef4ac5c92$export$461939dd4422153 as now, $14e0f24ef4ac5c92$export$68781ddf31c0090f as compareDate, $14e0f24ef4ac5c92$export$c19a80a9721b80f6 as compareTime, $14e0f24ef4ac5c92$export$126c91c941de7e as getHoursInDay, $14e0f24ef4ac5c92$export$aa8b41735afcabd2 as getLocalTimeZone, $14e0f24ef4ac5c92$export$a2258d9c4118825c as endOfMonth, $14e0f24ef4ac5c92$export$8b7aa55c66d5569e as endOfYear, $14e0f24ef4ac5c92$export$5412ac11713b72ad as getMinimumMonthInYear, $14e0f24ef4ac5c92$export$b2f4953d301981d5 as getMinimumDayInMonth, $14e0f24ef4ac5c92$export$42c81a444fbfb5d4 as startOfWeek, $14e0f24ef4ac5c92$export$ef8b6d9133084f4e as endOfWeek, $14e0f24ef4ac5c92$export$ccc1b2479e7dd654 as getWeeksInMonth, $14e0f24ef4ac5c92$export$5c333a116e949cdd as minDate, $14e0f24ef4ac5c92$export$a75f2bff57811055 as maxDate, $14e0f24ef4ac5c92$export$618d60ea299da42 as isWeekend, $14e0f24ef4ac5c92$export$ee9d87258e1d19ed as isWeekday};
266
267
  //# sourceMappingURL=queries.module.js.map
@@ -31,17 +31,18 @@ function $14e0f24ef4ac5c92$export$5841f9eb9773f25f(a, b) {
31
31
  return a.era === b.era && a.year === b.year;
32
32
  }
33
33
  function $14e0f24ef4ac5c92$export$91b62ebf2ba703ee(a, b) {
34
- return a.calendar.identifier === b.calendar.identifier && a.era === b.era && a.year === b.year && a.month === b.month && a.day === b.day;
34
+ return $14e0f24ef4ac5c92$export$dbc69fd56b53d5e(a.calendar, b.calendar) && $14e0f24ef4ac5c92$export$ea39ec197993aef0(a, b);
35
35
  }
36
36
  function $14e0f24ef4ac5c92$export$5a8da0c44a3afdf2(a, b) {
37
- a = $14e0f24ef4ac5c92$export$a5a3b454ada2268e(a);
38
- b = $14e0f24ef4ac5c92$export$a5a3b454ada2268e(b);
39
- return a.calendar.identifier === b.calendar.identifier && a.era === b.era && a.year === b.year && a.month === b.month;
37
+ return $14e0f24ef4ac5c92$export$dbc69fd56b53d5e(a.calendar, b.calendar) && $14e0f24ef4ac5c92$export$a18c89cbd24170ff(a, b);
40
38
  }
41
39
  function $14e0f24ef4ac5c92$export$ea840f5a6dda8147(a, b) {
42
- a = $14e0f24ef4ac5c92$export$f91e89d3d0406102(a);
43
- b = $14e0f24ef4ac5c92$export$f91e89d3d0406102(b);
44
- return a.calendar.identifier === b.calendar.identifier && a.era === b.era && a.year === b.year;
40
+ return $14e0f24ef4ac5c92$export$dbc69fd56b53d5e(a.calendar, b.calendar) && $14e0f24ef4ac5c92$export$5841f9eb9773f25f(a, b);
41
+ }
42
+ function $14e0f24ef4ac5c92$export$dbc69fd56b53d5e(a, b) {
43
+ var _a_isEqual, _b_isEqual;
44
+ var _a_isEqual1, _ref;
45
+ return (_ref = (_a_isEqual1 = (_a_isEqual = a.isEqual) === null || _a_isEqual === void 0 ? void 0 : _a_isEqual.call(a, b)) !== null && _a_isEqual1 !== void 0 ? _a_isEqual1 : (_b_isEqual = b.isEqual) === null || _b_isEqual === void 0 ? void 0 : _b_isEqual.call(b, a)) !== null && _ref !== void 0 ? _ref : a.identifier === b.identifier;
45
46
  }
46
47
  function $14e0f24ef4ac5c92$export$629b0a497aa65267(date, timeZone) {
47
48
  return $14e0f24ef4ac5c92$export$ea39ec197993aef0(date, $14e0f24ef4ac5c92$export$d0bdf45af03a6ea3(timeZone));
@@ -262,5 +263,5 @@ function $14e0f24ef4ac5c92$export$ee9d87258e1d19ed(date, locale) {
262
263
  }
263
264
 
264
265
 
265
- export {$14e0f24ef4ac5c92$export$ea39ec197993aef0 as isSameDay, $14e0f24ef4ac5c92$export$a18c89cbd24170ff as isSameMonth, $14e0f24ef4ac5c92$export$a5a3b454ada2268e as startOfMonth, $14e0f24ef4ac5c92$export$5841f9eb9773f25f as isSameYear, $14e0f24ef4ac5c92$export$f91e89d3d0406102 as startOfYear, $14e0f24ef4ac5c92$export$91b62ebf2ba703ee as isEqualDay, $14e0f24ef4ac5c92$export$5a8da0c44a3afdf2 as isEqualMonth, $14e0f24ef4ac5c92$export$ea840f5a6dda8147 as isEqualYear, $14e0f24ef4ac5c92$export$629b0a497aa65267 as isToday, $14e0f24ef4ac5c92$export$d0bdf45af03a6ea3 as today, $14e0f24ef4ac5c92$export$2061056d06d7cdf7 as getDayOfWeek, $14e0f24ef4ac5c92$export$461939dd4422153 as now, $14e0f24ef4ac5c92$export$68781ddf31c0090f as compareDate, $14e0f24ef4ac5c92$export$c19a80a9721b80f6 as compareTime, $14e0f24ef4ac5c92$export$126c91c941de7e as getHoursInDay, $14e0f24ef4ac5c92$export$aa8b41735afcabd2 as getLocalTimeZone, $14e0f24ef4ac5c92$export$a2258d9c4118825c as endOfMonth, $14e0f24ef4ac5c92$export$8b7aa55c66d5569e as endOfYear, $14e0f24ef4ac5c92$export$5412ac11713b72ad as getMinimumMonthInYear, $14e0f24ef4ac5c92$export$b2f4953d301981d5 as getMinimumDayInMonth, $14e0f24ef4ac5c92$export$42c81a444fbfb5d4 as startOfWeek, $14e0f24ef4ac5c92$export$ef8b6d9133084f4e as endOfWeek, $14e0f24ef4ac5c92$export$ccc1b2479e7dd654 as getWeeksInMonth, $14e0f24ef4ac5c92$export$5c333a116e949cdd as minDate, $14e0f24ef4ac5c92$export$a75f2bff57811055 as maxDate, $14e0f24ef4ac5c92$export$618d60ea299da42 as isWeekend, $14e0f24ef4ac5c92$export$ee9d87258e1d19ed as isWeekday};
266
+ export {$14e0f24ef4ac5c92$export$ea39ec197993aef0 as isSameDay, $14e0f24ef4ac5c92$export$a18c89cbd24170ff as isSameMonth, $14e0f24ef4ac5c92$export$a5a3b454ada2268e as startOfMonth, $14e0f24ef4ac5c92$export$5841f9eb9773f25f as isSameYear, $14e0f24ef4ac5c92$export$f91e89d3d0406102 as startOfYear, $14e0f24ef4ac5c92$export$91b62ebf2ba703ee as isEqualDay, $14e0f24ef4ac5c92$export$dbc69fd56b53d5e as isEqualCalendar, $14e0f24ef4ac5c92$export$5a8da0c44a3afdf2 as isEqualMonth, $14e0f24ef4ac5c92$export$ea840f5a6dda8147 as isEqualYear, $14e0f24ef4ac5c92$export$629b0a497aa65267 as isToday, $14e0f24ef4ac5c92$export$d0bdf45af03a6ea3 as today, $14e0f24ef4ac5c92$export$2061056d06d7cdf7 as getDayOfWeek, $14e0f24ef4ac5c92$export$461939dd4422153 as now, $14e0f24ef4ac5c92$export$68781ddf31c0090f as compareDate, $14e0f24ef4ac5c92$export$c19a80a9721b80f6 as compareTime, $14e0f24ef4ac5c92$export$126c91c941de7e as getHoursInDay, $14e0f24ef4ac5c92$export$aa8b41735afcabd2 as getLocalTimeZone, $14e0f24ef4ac5c92$export$a2258d9c4118825c as endOfMonth, $14e0f24ef4ac5c92$export$8b7aa55c66d5569e as endOfYear, $14e0f24ef4ac5c92$export$5412ac11713b72ad as getMinimumMonthInYear, $14e0f24ef4ac5c92$export$b2f4953d301981d5 as getMinimumDayInMonth, $14e0f24ef4ac5c92$export$42c81a444fbfb5d4 as startOfWeek, $14e0f24ef4ac5c92$export$ef8b6d9133084f4e as endOfWeek, $14e0f24ef4ac5c92$export$ccc1b2479e7dd654 as getWeeksInMonth, $14e0f24ef4ac5c92$export$5c333a116e949cdd as minDate, $14e0f24ef4ac5c92$export$a75f2bff57811055 as maxDate, $14e0f24ef4ac5c92$export$618d60ea299da42 as isWeekend, $14e0f24ef4ac5c92$export$ee9d87258e1d19ed as isWeekday};
266
267
  //# sourceMappingURL=queries.module.js.map
@@ -1 +1 @@
1
- {"mappings":"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","sources":["packages/@internationalized/date/src/queries.ts"],"sourcesContent":["/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {AnyCalendarDate, AnyTime} from './types';\nimport {CalendarDate, CalendarDateTime, ZonedDateTime} from './CalendarDate';\nimport {fromAbsolute, toAbsolute, toCalendar, toCalendarDate} from './conversion';\nimport {weekStartData} from './weekStartData';\n\ntype DateValue = CalendarDate | CalendarDateTime | ZonedDateTime;\n\n/** Returns whether the given dates occur on the same day, regardless of the time or calendar system. */\nexport function isSameDay(a: DateValue, b: DateValue): boolean {\n b = toCalendar(b, a.calendar);\n return a.era === b.era && a.year === b.year && a.month === b.month && a.day === b.day;\n}\n\n/** Returns whether the given dates occur in the same month, using the calendar system of the first date. */\nexport function isSameMonth(a: DateValue, b: DateValue): boolean {\n b = toCalendar(b, a.calendar);\n // In the Japanese calendar, months can span multiple eras/years, so only compare the first of the month.\n a = startOfMonth(a);\n b = startOfMonth(b);\n return a.era === b.era && a.year === b.year && a.month === b.month;\n}\n\n/** Returns whether the given dates occur in the same year, using the calendar system of the first date. */\nexport function isSameYear(a: DateValue, b: DateValue): boolean {\n b = toCalendar(b, a.calendar);\n a = startOfYear(a);\n b = startOfYear(b);\n return a.era === b.era && a.year === b.year;\n}\n\n/** Returns whether the given dates occur on the same day, and are of the same calendar system. */\nexport function isEqualDay(a: DateValue, b: DateValue): boolean {\n return a.calendar.identifier === b.calendar.identifier && a.era === b.era && a.year === b.year && a.month === b.month && a.day === b.day;\n}\n\n/** Returns whether the given dates occur in the same month, and are of the same calendar system. */\nexport function isEqualMonth(a: DateValue, b: DateValue): boolean {\n a = startOfMonth(a);\n b = startOfMonth(b);\n return a.calendar.identifier === b.calendar.identifier && a.era === b.era && a.year === b.year && a.month === b.month;\n}\n\n/** Returns whether the given dates occur in the same year, and are of the same calendar system. */\nexport function isEqualYear(a: DateValue, b: DateValue): boolean {\n a = startOfYear(a);\n b = startOfYear(b);\n return a.calendar.identifier === b.calendar.identifier && a.era === b.era && a.year === b.year;\n}\n\n/** Returns whether the date is today in the given time zone. */\nexport function isToday(date: DateValue, timeZone: string): boolean {\n return isSameDay(date, today(timeZone));\n}\n\nconst DAY_MAP = {\n sun: 0,\n mon: 1,\n tue: 2,\n wed: 3,\n thu: 4,\n fri: 5,\n sat: 6\n};\n\ntype DayOfWeek = 'sun' | 'mon' | 'tue' | 'wed' | 'thu' | 'fri' | 'sat';\n\n/**\n * Returns the day of week for the given date and locale. Days are numbered from zero to six,\n * where zero is the first day of the week in the given locale. For example, in the United States,\n * the first day of the week is Sunday, but in France it is Monday.\n */\nexport function getDayOfWeek(date: DateValue, locale: string, firstDayOfWeek?: DayOfWeek): number {\n let julian = date.calendar.toJulianDay(date);\n\n // If julian is negative, then julian % 7 will be negative, so we adjust\n // accordingly. Julian day 0 is Monday.\n let weekStart = firstDayOfWeek ? DAY_MAP[firstDayOfWeek] : getWeekStart(locale);\n let dayOfWeek = Math.ceil(julian + 1 - weekStart) % 7;\n if (dayOfWeek < 0) {\n dayOfWeek += 7;\n }\n\n return dayOfWeek;\n}\n\n/** Returns the current time in the given time zone. */\nexport function now(timeZone: string): ZonedDateTime {\n return fromAbsolute(Date.now(), timeZone);\n}\n\n/** Returns today's date in the given time zone. */\nexport function today(timeZone: string): CalendarDate {\n return toCalendarDate(now(timeZone));\n}\n\nexport function compareDate(a: AnyCalendarDate, b: AnyCalendarDate): number {\n return a.calendar.toJulianDay(a) - b.calendar.toJulianDay(b);\n}\n\nexport function compareTime(a: AnyTime, b: AnyTime): number {\n return timeToMs(a) - timeToMs(b);\n}\n\nfunction timeToMs(a: AnyTime): number {\n return a.hour * 60 * 60 * 1000 + a.minute * 60 * 1000 + a.second * 1000 + a.millisecond;\n}\n\n/**\n * Returns the number of hours in the given date and time zone.\n * Usually this is 24, but it could be 23 or 25 if the date is on a daylight saving transition.\n */\nexport function getHoursInDay(a: CalendarDate, timeZone: string): number {\n let ms = toAbsolute(a, timeZone);\n let tomorrow = a.add({days: 1});\n let tomorrowMs = toAbsolute(tomorrow, timeZone);\n return (tomorrowMs - ms) / 3600000;\n}\n\nlet localTimeZone: string | null = null;\n\n/** Returns the time zone identifier for the current user. */\nexport function getLocalTimeZone(): string {\n // TODO: invalidate this somehow?\n if (localTimeZone == null) {\n localTimeZone = new Intl.DateTimeFormat().resolvedOptions().timeZone;\n }\n\n return localTimeZone!;\n}\n\n/** Returns the first date of the month for the given date. */\nexport function startOfMonth(date: ZonedDateTime): ZonedDateTime;\nexport function startOfMonth(date: CalendarDateTime): CalendarDateTime;\nexport function startOfMonth(date: CalendarDate): CalendarDate;\nexport function startOfMonth(date: DateValue): DateValue;\nexport function startOfMonth(date: DateValue): DateValue {\n // Use `subtract` instead of `set` so we don't get constrained in an era.\n return date.subtract({days: date.day - 1});\n}\n\n/** Returns the last date of the month for the given date. */\nexport function endOfMonth(date: ZonedDateTime): ZonedDateTime;\nexport function endOfMonth(date: CalendarDateTime): CalendarDateTime;\nexport function endOfMonth(date: CalendarDate): CalendarDate;\nexport function endOfMonth(date: DateValue): DateValue;\nexport function endOfMonth(date: DateValue): DateValue {\n return date.add({days: date.calendar.getDaysInMonth(date) - date.day});\n}\n\n/** Returns the first day of the year for the given date. */\nexport function startOfYear(date: ZonedDateTime): ZonedDateTime;\nexport function startOfYear(date: CalendarDateTime): CalendarDateTime;\nexport function startOfYear(date: CalendarDate): CalendarDate;\nexport function startOfYear(date: DateValue): DateValue;\nexport function startOfYear(date: DateValue): DateValue {\n return startOfMonth(date.subtract({months: date.month - 1}));\n}\n\n/** Returns the last day of the year for the given date. */\nexport function endOfYear(date: ZonedDateTime): ZonedDateTime;\nexport function endOfYear(date: CalendarDateTime): CalendarDateTime;\nexport function endOfYear(date: CalendarDate): CalendarDate;\nexport function endOfYear(date: DateValue): DateValue;\nexport function endOfYear(date: DateValue): DateValue {\n return endOfMonth(date.add({months: date.calendar.getMonthsInYear(date) - date.month}));\n}\n\nexport function getMinimumMonthInYear(date: AnyCalendarDate) {\n if (date.calendar.getMinimumMonthInYear) {\n return date.calendar.getMinimumMonthInYear(date);\n }\n\n return 1;\n}\n\nexport function getMinimumDayInMonth(date: AnyCalendarDate) {\n if (date.calendar.getMinimumDayInMonth) {\n return date.calendar.getMinimumDayInMonth(date);\n }\n\n return 1;\n}\n\n/** Returns the first date of the week for the given date and locale. */\nexport function startOfWeek(date: ZonedDateTime, locale: string, firstDayOfWeek?: DayOfWeek): ZonedDateTime;\nexport function startOfWeek(date: CalendarDateTime, locale: string, firstDayOfWeek?: DayOfWeek): CalendarDateTime;\nexport function startOfWeek(date: CalendarDate, locale: string, firstDayOfWeek?: DayOfWeek): CalendarDate;\nexport function startOfWeek(date: DateValue, locale: string, firstDayOfWeek?: DayOfWeek): DateValue;\nexport function startOfWeek(date: DateValue, locale: string, firstDayOfWeek?: DayOfWeek): DateValue {\n let dayOfWeek = getDayOfWeek(date, locale, firstDayOfWeek);\n return date.subtract({days: dayOfWeek});\n}\n\n/** Returns the last date of the week for the given date and locale. */\nexport function endOfWeek(date: ZonedDateTime, locale: string, firstDayOfWeek?: DayOfWeek): ZonedDateTime;\nexport function endOfWeek(date: CalendarDateTime, locale: string, firstDayOfWeek?: DayOfWeek): CalendarDateTime;\nexport function endOfWeek(date: CalendarDate, locale: string, firstDayOfWeek?: DayOfWeek): CalendarDate;\nexport function endOfWeek(date: DateValue, locale: string, firstDayOfWeek?: DayOfWeek): DateValue;\nexport function endOfWeek(date: DateValue, locale: string, firstDayOfWeek?: DayOfWeek): DateValue {\n return startOfWeek(date, locale, firstDayOfWeek).add({days: 6});\n}\n\nconst cachedRegions = new Map<string, string>();\n\nfunction getRegion(locale: string): string | undefined {\n // If the Intl.Locale API is available, use it to get the region for the locale.\n // @ts-ignore\n if (Intl.Locale) {\n // Constructing an Intl.Locale is expensive, so cache the result.\n let region = cachedRegions.get(locale);\n if (!region) {\n // @ts-ignore\n region = new Intl.Locale(locale).maximize().region;\n if (region) {\n cachedRegions.set(locale, region);\n }\n }\n return region;\n }\n\n // If not, just try splitting the string.\n // If the second part of the locale string is 'u',\n // then this is a unicode extension, so ignore it.\n // Otherwise, it should be the region.\n let part = locale.split('-')[1];\n return part === 'u' ? undefined : part;\n}\n\nfunction getWeekStart(locale: string): number {\n // TODO: use Intl.Locale for this once browsers support the weekInfo property\n // https://github.com/tc39/proposal-intl-locale-info\n let region = getRegion(locale);\n return region ? weekStartData[region] || 0 : 0;\n}\n\n/** Returns the number of weeks in the given month and locale. */\nexport function getWeeksInMonth(date: DateValue, locale: string, firstDayOfWeek?: DayOfWeek): number {\n let days = date.calendar.getDaysInMonth(date);\n return Math.ceil((getDayOfWeek(startOfMonth(date), locale, firstDayOfWeek) + days) / 7);\n}\n\n/** Returns the lesser of the two provider dates. */\nexport function minDate<A extends DateValue, B extends DateValue>(a?: A | null, b?: B | null): A | B | null | undefined {\n if (a && b) {\n return a.compare(b) <= 0 ? a : b;\n }\n\n return a || b;\n}\n\n/** Returns the greater of the two provider dates. */\nexport function maxDate<A extends DateValue, B extends DateValue>(a?: A | null, b?: B | null): A | B | null | undefined {\n if (a && b) {\n return a.compare(b) >= 0 ? a : b;\n }\n\n return a || b;\n}\n\nconst WEEKEND_DATA = {\n AF: [4, 5],\n AE: [5, 6],\n BH: [5, 6],\n DZ: [5, 6],\n EG: [5, 6],\n IL: [5, 6],\n IQ: [5, 6],\n IR: [5, 5],\n JO: [5, 6],\n KW: [5, 6],\n LY: [5, 6],\n OM: [5, 6],\n QA: [5, 6],\n SA: [5, 6],\n SD: [5, 6],\n SY: [5, 6],\n YE: [5, 6]\n};\n\n/** Returns whether the given date is on a weekend in the given locale. */\nexport function isWeekend(date: DateValue, locale: string): boolean {\n let julian = date.calendar.toJulianDay(date);\n\n // If julian is negative, then julian % 7 will be negative, so we adjust\n // accordingly. Julian day 0 is Monday.\n let dayOfWeek = Math.ceil(julian + 1) % 7;\n if (dayOfWeek < 0) {\n dayOfWeek += 7;\n }\n\n let region = getRegion(locale);\n // Use Intl.Locale for this once weekInfo is supported.\n // https://github.com/tc39/proposal-intl-locale-info\n let [start, end] = WEEKEND_DATA[region!] || [6, 0];\n return dayOfWeek === start || dayOfWeek === end;\n}\n\n/** Returns whether the given date is on a weekday in the given locale. */\nexport function isWeekday(date: DateValue, locale: string): boolean {\n return !isWeekend(date, locale);\n}\n"],"names":[],"version":3,"file":"queries.module.js.map"}
1
+ {"mappings":"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","sources":["packages/@internationalized/date/src/queries.ts"],"sourcesContent":["/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {AnyCalendarDate, AnyTime, Calendar} from './types';\nimport {CalendarDate, CalendarDateTime, ZonedDateTime} from './CalendarDate';\nimport {fromAbsolute, toAbsolute, toCalendar, toCalendarDate} from './conversion';\nimport {weekStartData} from './weekStartData';\n\ntype DateValue = CalendarDate | CalendarDateTime | ZonedDateTime;\n\n/** Returns whether the given dates occur on the same day, regardless of the time or calendar system. */\nexport function isSameDay(a: DateValue, b: DateValue): boolean {\n b = toCalendar(b, a.calendar);\n return a.era === b.era && a.year === b.year && a.month === b.month && a.day === b.day;\n}\n\n/** Returns whether the given dates occur in the same month, using the calendar system of the first date. */\nexport function isSameMonth(a: DateValue, b: DateValue): boolean {\n b = toCalendar(b, a.calendar);\n // In the Japanese calendar, months can span multiple eras/years, so only compare the first of the month.\n a = startOfMonth(a);\n b = startOfMonth(b);\n return a.era === b.era && a.year === b.year && a.month === b.month;\n}\n\n/** Returns whether the given dates occur in the same year, using the calendar system of the first date. */\nexport function isSameYear(a: DateValue, b: DateValue): boolean {\n b = toCalendar(b, a.calendar);\n a = startOfYear(a);\n b = startOfYear(b);\n return a.era === b.era && a.year === b.year;\n}\n\n/** Returns whether the given dates occur on the same day, and are of the same calendar system. */\nexport function isEqualDay(a: DateValue, b: DateValue): boolean {\n return isEqualCalendar(a.calendar, b.calendar) && isSameDay(a, b);\n}\n\n/** Returns whether the given dates occur in the same month, and are of the same calendar system. */\nexport function isEqualMonth(a: DateValue, b: DateValue): boolean {\n return isEqualCalendar(a.calendar, b.calendar) && isSameMonth(a, b);\n}\n\n/** Returns whether the given dates occur in the same year, and are of the same calendar system. */\nexport function isEqualYear(a: DateValue, b: DateValue): boolean {\n return isEqualCalendar(a.calendar, b.calendar) && isSameYear(a, b);\n}\n\n/** Returns whether two calendars are the same. */\nexport function isEqualCalendar(a: Calendar, b: Calendar): boolean {\n return a.isEqual?.(b) ?? b.isEqual?.(a) ?? a.identifier === b.identifier;\n}\n\n/** Returns whether the date is today in the given time zone. */\nexport function isToday(date: DateValue, timeZone: string): boolean {\n return isSameDay(date, today(timeZone));\n}\n\nconst DAY_MAP = {\n sun: 0,\n mon: 1,\n tue: 2,\n wed: 3,\n thu: 4,\n fri: 5,\n sat: 6\n};\n\ntype DayOfWeek = 'sun' | 'mon' | 'tue' | 'wed' | 'thu' | 'fri' | 'sat';\n\n/**\n * Returns the day of week for the given date and locale. Days are numbered from zero to six,\n * where zero is the first day of the week in the given locale. For example, in the United States,\n * the first day of the week is Sunday, but in France it is Monday.\n */\nexport function getDayOfWeek(date: DateValue, locale: string, firstDayOfWeek?: DayOfWeek): number {\n let julian = date.calendar.toJulianDay(date);\n\n // If julian is negative, then julian % 7 will be negative, so we adjust\n // accordingly. Julian day 0 is Monday.\n let weekStart = firstDayOfWeek ? DAY_MAP[firstDayOfWeek] : getWeekStart(locale);\n let dayOfWeek = Math.ceil(julian + 1 - weekStart) % 7;\n if (dayOfWeek < 0) {\n dayOfWeek += 7;\n }\n\n return dayOfWeek;\n}\n\n/** Returns the current time in the given time zone. */\nexport function now(timeZone: string): ZonedDateTime {\n return fromAbsolute(Date.now(), timeZone);\n}\n\n/** Returns today's date in the given time zone. */\nexport function today(timeZone: string): CalendarDate {\n return toCalendarDate(now(timeZone));\n}\n\nexport function compareDate(a: AnyCalendarDate, b: AnyCalendarDate): number {\n return a.calendar.toJulianDay(a) - b.calendar.toJulianDay(b);\n}\n\nexport function compareTime(a: AnyTime, b: AnyTime): number {\n return timeToMs(a) - timeToMs(b);\n}\n\nfunction timeToMs(a: AnyTime): number {\n return a.hour * 60 * 60 * 1000 + a.minute * 60 * 1000 + a.second * 1000 + a.millisecond;\n}\n\n/**\n * Returns the number of hours in the given date and time zone.\n * Usually this is 24, but it could be 23 or 25 if the date is on a daylight saving transition.\n */\nexport function getHoursInDay(a: CalendarDate, timeZone: string): number {\n let ms = toAbsolute(a, timeZone);\n let tomorrow = a.add({days: 1});\n let tomorrowMs = toAbsolute(tomorrow, timeZone);\n return (tomorrowMs - ms) / 3600000;\n}\n\nlet localTimeZone: string | null = null;\n\n/** Returns the time zone identifier for the current user. */\nexport function getLocalTimeZone(): string {\n // TODO: invalidate this somehow?\n if (localTimeZone == null) {\n localTimeZone = new Intl.DateTimeFormat().resolvedOptions().timeZone;\n }\n\n return localTimeZone!;\n}\n\n/** Returns the first date of the month for the given date. */\nexport function startOfMonth(date: ZonedDateTime): ZonedDateTime;\nexport function startOfMonth(date: CalendarDateTime): CalendarDateTime;\nexport function startOfMonth(date: CalendarDate): CalendarDate;\nexport function startOfMonth(date: DateValue): DateValue;\nexport function startOfMonth(date: DateValue): DateValue {\n // Use `subtract` instead of `set` so we don't get constrained in an era.\n return date.subtract({days: date.day - 1});\n}\n\n/** Returns the last date of the month for the given date. */\nexport function endOfMonth(date: ZonedDateTime): ZonedDateTime;\nexport function endOfMonth(date: CalendarDateTime): CalendarDateTime;\nexport function endOfMonth(date: CalendarDate): CalendarDate;\nexport function endOfMonth(date: DateValue): DateValue;\nexport function endOfMonth(date: DateValue): DateValue {\n return date.add({days: date.calendar.getDaysInMonth(date) - date.day});\n}\n\n/** Returns the first day of the year for the given date. */\nexport function startOfYear(date: ZonedDateTime): ZonedDateTime;\nexport function startOfYear(date: CalendarDateTime): CalendarDateTime;\nexport function startOfYear(date: CalendarDate): CalendarDate;\nexport function startOfYear(date: DateValue): DateValue;\nexport function startOfYear(date: DateValue): DateValue {\n return startOfMonth(date.subtract({months: date.month - 1}));\n}\n\n/** Returns the last day of the year for the given date. */\nexport function endOfYear(date: ZonedDateTime): ZonedDateTime;\nexport function endOfYear(date: CalendarDateTime): CalendarDateTime;\nexport function endOfYear(date: CalendarDate): CalendarDate;\nexport function endOfYear(date: DateValue): DateValue;\nexport function endOfYear(date: DateValue): DateValue {\n return endOfMonth(date.add({months: date.calendar.getMonthsInYear(date) - date.month}));\n}\n\nexport function getMinimumMonthInYear(date: AnyCalendarDate): number {\n if (date.calendar.getMinimumMonthInYear) {\n return date.calendar.getMinimumMonthInYear(date);\n }\n\n return 1;\n}\n\nexport function getMinimumDayInMonth(date: AnyCalendarDate): number {\n if (date.calendar.getMinimumDayInMonth) {\n return date.calendar.getMinimumDayInMonth(date);\n }\n\n return 1;\n}\n\n/** Returns the first date of the week for the given date and locale. */\nexport function startOfWeek(date: ZonedDateTime, locale: string, firstDayOfWeek?: DayOfWeek): ZonedDateTime;\nexport function startOfWeek(date: CalendarDateTime, locale: string, firstDayOfWeek?: DayOfWeek): CalendarDateTime;\nexport function startOfWeek(date: CalendarDate, locale: string, firstDayOfWeek?: DayOfWeek): CalendarDate;\nexport function startOfWeek(date: DateValue, locale: string, firstDayOfWeek?: DayOfWeek): DateValue;\nexport function startOfWeek(date: DateValue, locale: string, firstDayOfWeek?: DayOfWeek): DateValue {\n let dayOfWeek = getDayOfWeek(date, locale, firstDayOfWeek);\n return date.subtract({days: dayOfWeek});\n}\n\n/** Returns the last date of the week for the given date and locale. */\nexport function endOfWeek(date: ZonedDateTime, locale: string, firstDayOfWeek?: DayOfWeek): ZonedDateTime;\nexport function endOfWeek(date: CalendarDateTime, locale: string, firstDayOfWeek?: DayOfWeek): CalendarDateTime;\nexport function endOfWeek(date: CalendarDate, locale: string, firstDayOfWeek?: DayOfWeek): CalendarDate;\nexport function endOfWeek(date: DateValue, locale: string, firstDayOfWeek?: DayOfWeek): DateValue;\nexport function endOfWeek(date: DateValue, locale: string, firstDayOfWeek?: DayOfWeek): DateValue {\n return startOfWeek(date, locale, firstDayOfWeek).add({days: 6});\n}\n\nconst cachedRegions = new Map<string, string>();\n\nfunction getRegion(locale: string): string | undefined {\n // If the Intl.Locale API is available, use it to get the region for the locale.\n // @ts-ignore\n if (Intl.Locale) {\n // Constructing an Intl.Locale is expensive, so cache the result.\n let region = cachedRegions.get(locale);\n if (!region) {\n // @ts-ignore\n region = new Intl.Locale(locale).maximize().region;\n if (region) {\n cachedRegions.set(locale, region);\n }\n }\n return region;\n }\n\n // If not, just try splitting the string.\n // If the second part of the locale string is 'u',\n // then this is a unicode extension, so ignore it.\n // Otherwise, it should be the region.\n let part = locale.split('-')[1];\n return part === 'u' ? undefined : part;\n}\n\nfunction getWeekStart(locale: string): number {\n // TODO: use Intl.Locale for this once browsers support the weekInfo property\n // https://github.com/tc39/proposal-intl-locale-info\n let region = getRegion(locale);\n return region ? weekStartData[region] || 0 : 0;\n}\n\n/** Returns the number of weeks in the given month and locale. */\nexport function getWeeksInMonth(date: DateValue, locale: string, firstDayOfWeek?: DayOfWeek): number {\n let days = date.calendar.getDaysInMonth(date);\n return Math.ceil((getDayOfWeek(startOfMonth(date), locale, firstDayOfWeek) + days) / 7);\n}\n\n/** Returns the lesser of the two provider dates. */\nexport function minDate<A extends DateValue, B extends DateValue>(a?: A | null, b?: B | null): A | B | null | undefined {\n if (a && b) {\n return a.compare(b) <= 0 ? a : b;\n }\n\n return a || b;\n}\n\n/** Returns the greater of the two provider dates. */\nexport function maxDate<A extends DateValue, B extends DateValue>(a?: A | null, b?: B | null): A | B | null | undefined {\n if (a && b) {\n return a.compare(b) >= 0 ? a : b;\n }\n\n return a || b;\n}\n\nconst WEEKEND_DATA = {\n AF: [4, 5],\n AE: [5, 6],\n BH: [5, 6],\n DZ: [5, 6],\n EG: [5, 6],\n IL: [5, 6],\n IQ: [5, 6],\n IR: [5, 5],\n JO: [5, 6],\n KW: [5, 6],\n LY: [5, 6],\n OM: [5, 6],\n QA: [5, 6],\n SA: [5, 6],\n SD: [5, 6],\n SY: [5, 6],\n YE: [5, 6]\n};\n\n/** Returns whether the given date is on a weekend in the given locale. */\nexport function isWeekend(date: DateValue, locale: string): boolean {\n let julian = date.calendar.toJulianDay(date);\n\n // If julian is negative, then julian % 7 will be negative, so we adjust\n // accordingly. Julian day 0 is Monday.\n let dayOfWeek = Math.ceil(julian + 1) % 7;\n if (dayOfWeek < 0) {\n dayOfWeek += 7;\n }\n\n let region = getRegion(locale);\n // Use Intl.Locale for this once weekInfo is supported.\n // https://github.com/tc39/proposal-intl-locale-info\n let [start, end] = WEEKEND_DATA[region!] || [6, 0];\n return dayOfWeek === start || dayOfWeek === end;\n}\n\n/** Returns whether the given date is on a weekday in the given locale. */\nexport function isWeekday(date: DateValue, locale: string): boolean {\n return !isWeekend(date, locale);\n}\n"],"names":[],"version":3,"file":"queries.module.js.map"}
package/dist/types.d.ts CHANGED
@@ -6,7 +6,7 @@ type Mutable<T> = {
6
6
  * Years always contain 12 months, and 365 or 366 days depending on whether it is a leap year.
7
7
  */
8
8
  export class GregorianCalendar implements Calendar {
9
- identifier: string;
9
+ identifier: CalendarIdentifier;
10
10
  fromJulianDay(jd: number): CalendarDate;
11
11
  toJulianDay(date: AnyCalendarDate): number;
12
12
  getDaysInMonth(date: AnyCalendarDate): number;
@@ -30,6 +30,8 @@ export function isEqualDay(a: DateValue, b: DateValue): boolean;
30
30
  export function isEqualMonth(a: DateValue, b: DateValue): boolean;
31
31
  /** Returns whether the given dates occur in the same year, and are of the same calendar system. */
32
32
  export function isEqualYear(a: DateValue, b: DateValue): boolean;
33
+ /** Returns whether two calendars are the same. */
34
+ export function isEqualCalendar(a: Calendar, b: Calendar): boolean;
33
35
  /** Returns whether the date is today in the given time zone. */
34
36
  export function isToday(date: DateValue, timeZone: string): boolean;
35
37
  type DayOfWeek = 'sun' | 'mon' | 'tue' | 'wed' | 'thu' | 'fri' | 'sat';
@@ -344,14 +346,18 @@ export interface AnyTime {
344
346
  /** An interface that is compatible with any object with both date and time fields. */
345
347
  export interface AnyDateTime extends AnyCalendarDate, AnyTime {
346
348
  }
349
+ export type CalendarIdentifier = 'gregory' | 'buddhist' | 'chinese' | 'coptic' | 'dangi' | 'ethioaa' | 'ethiopic' | 'hebrew' | 'indian' | 'islamic' | 'islamic-umalqura' | 'islamic-tbla' | 'islamic-civil' | 'islamic-rgsa' | 'iso8601' | 'japanese' | 'persian' | 'roc';
347
350
  /**
348
351
  * The Calendar interface represents a calendar system, including information
349
352
  * about how days, months, years, and eras are organized, and methods to perform
350
353
  * arithmetic on dates.
351
354
  */
352
355
  export interface Calendar {
353
- /** A string identifier for the calendar, as defined by Unicode CLDR. */
354
- identifier: string;
356
+ /**
357
+ * A string identifier for the calendar, as defined by Unicode CLDR.
358
+ * See [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/supportedValuesOf#supported_calendar_types).
359
+ */
360
+ identifier: CalendarIdentifier;
355
361
  /** Creates a CalendarDate in this calendar from the given Julian day number. */
356
362
  fromJulianDay(jd: number): CalendarDate;
357
363
  /** Converts a date in this calendar to a Julian day number. */
@@ -376,6 +382,15 @@ export interface Calendar {
376
382
  * eras may begin in the middle of a month.
377
383
  */
378
384
  getMinimumDayInMonth?(date: AnyCalendarDate): number;
385
+ /**
386
+ * Returns a date that is the first day of the month for the given date.
387
+ * This is used to determine the month that the given date falls in, if
388
+ * the calendar has months that do not align with the standard calendar months
389
+ * (e.g. fiscal calendars).
390
+ */
391
+ getFormattableMonth?(date: AnyCalendarDate): CalendarDate;
392
+ /** Returns whether the given calendar is the same as this calendar. */
393
+ isEqual?(calendar: Calendar): boolean;
379
394
  /** @private */
380
395
  balanceDate?(date: AnyCalendarDate): void;
381
396
  /** @private */
@@ -444,7 +459,7 @@ export interface CycleTimeOptions extends CycleOptions {
444
459
  * Note that eras before 1868 (Gregorian) are not currently supported by this implementation.
445
460
  */
446
461
  export class JapaneseCalendar extends GregorianCalendar {
447
- identifier: string;
462
+ identifier: CalendarIdentifier;
448
463
  fromJulianDay(jd: number): CalendarDate;
449
464
  toJulianDay(date: AnyCalendarDate): number;
450
465
  balanceDate(date: Mutable<AnyCalendarDate>): void;
@@ -461,7 +476,7 @@ export class JapaneseCalendar extends GregorianCalendar {
461
476
  * era, identified as 'BE'.
462
477
  */
463
478
  export class BuddhistCalendar extends GregorianCalendar {
464
- identifier: string;
479
+ identifier: CalendarIdentifier;
465
480
  fromJulianDay(jd: number): CalendarDate;
466
481
  toJulianDay(date: AnyCalendarDate): number;
467
482
  getEras(): string[];
@@ -474,7 +489,7 @@ export class BuddhistCalendar extends GregorianCalendar {
474
489
  * 'before_minguo' and 'minguo'.
475
490
  */
476
491
  export class TaiwanCalendar extends GregorianCalendar {
477
- identifier: string;
492
+ identifier: CalendarIdentifier;
478
493
  fromJulianDay(jd: number): CalendarDate;
479
494
  toJulianDay(date: AnyCalendarDate): number;
480
495
  getEras(): string[];
@@ -490,7 +505,7 @@ export class TaiwanCalendar extends GregorianCalendar {
490
505
  * around the March equinox.
491
506
  */
492
507
  export class PersianCalendar implements Calendar {
493
- identifier: string;
508
+ identifier: CalendarIdentifier;
494
509
  fromJulianDay(jd: number): CalendarDate;
495
510
  toJulianDay(date: AnyCalendarDate): number;
496
511
  getMonthsInYear(): number;
@@ -504,7 +519,7 @@ export class PersianCalendar implements Calendar {
504
519
  * in each year, with either 30 or 31 days. Only one era identifier is supported: 'saka'.
505
520
  */
506
521
  export class IndianCalendar extends GregorianCalendar {
507
- identifier: string;
522
+ identifier: CalendarIdentifier;
508
523
  fromJulianDay(jd: number): CalendarDate;
509
524
  toJulianDay(date: AnyCalendarDate): number;
510
525
  getDaysInMonth(date: AnyCalendarDate): number;
@@ -520,7 +535,7 @@ export class IndianCalendar extends GregorianCalendar {
520
535
  * Learn more about the available Islamic calendars [here](https://cldr.unicode.org/development/development-process/design-proposals/islamic-calendar-types).
521
536
  */
522
537
  export class IslamicCivilCalendar implements Calendar {
523
- identifier: string;
538
+ identifier: CalendarIdentifier;
524
539
  fromJulianDay(jd: number): CalendarDate;
525
540
  toJulianDay(date: AnyCalendarDate): number;
526
541
  getDaysInMonth(date: AnyCalendarDate): number;
@@ -537,7 +552,7 @@ export class IslamicCivilCalendar implements Calendar {
537
552
  * Learn more about the available Islamic calendars [here](https://cldr.unicode.org/development/development-process/design-proposals/islamic-calendar-types).
538
553
  */
539
554
  export class IslamicTabularCalendar extends IslamicCivilCalendar {
540
- identifier: string;
555
+ identifier: CalendarIdentifier;
541
556
  fromJulianDay(jd: number): CalendarDate;
542
557
  toJulianDay(date: AnyCalendarDate): number;
543
558
  }
@@ -549,7 +564,7 @@ export class IslamicTabularCalendar extends IslamicCivilCalendar {
549
564
  * Learn more about the available Islamic calendars [here](https://cldr.unicode.org/development/development-process/design-proposals/islamic-calendar-types).
550
565
  */
551
566
  export class IslamicUmalquraCalendar extends IslamicCivilCalendar {
552
- identifier: string;
567
+ identifier: CalendarIdentifier;
553
568
  constructor();
554
569
  fromJulianDay(jd: number): CalendarDate;
555
570
  toJulianDay(date: AnyCalendarDate): number;
@@ -562,7 +577,7 @@ export class IslamicUmalquraCalendar extends IslamicCivilCalendar {
562
577
  * In leap years, an extra month is inserted at month 6.
563
578
  */
564
579
  export class HebrewCalendar implements Calendar {
565
- identifier: string;
580
+ identifier: CalendarIdentifier;
566
581
  fromJulianDay(jd: number): CalendarDate;
567
582
  toJulianDay(date: AnyCalendarDate): number;
568
583
  getDaysInMonth(date: AnyCalendarDate): number;
@@ -578,7 +593,7 @@ export class HebrewCalendar implements Calendar {
578
593
  * on whether it is a leap year. Two eras are supported: 'AA' and 'AM'.
579
594
  */
580
595
  export class EthiopicCalendar implements Calendar {
581
- identifier: string;
596
+ identifier: CalendarIdentifier;
582
597
  fromJulianDay(jd: number): CalendarDate;
583
598
  toJulianDay(date: AnyCalendarDate): number;
584
599
  getDaysInMonth(date: AnyCalendarDate): number;
@@ -592,7 +607,7 @@ export class EthiopicCalendar implements Calendar {
592
607
  * except years were measured from a different epoch. Only one era is supported: 'AA'.
593
608
  */
594
609
  export class EthiopicAmeteAlemCalendar extends EthiopicCalendar {
595
- identifier: string;
610
+ identifier: CalendarIdentifier;
596
611
  fromJulianDay(jd: number): CalendarDate;
597
612
  getEras(): string[];
598
613
  getYearsInEra(): number;
@@ -603,7 +618,7 @@ export class EthiopicAmeteAlemCalendar extends EthiopicCalendar {
603
618
  * on whether it is a leap year. Two eras are supported: 'BCE' and 'CE'.
604
619
  */
605
620
  export class CopticCalendar extends EthiopicCalendar {
606
- identifier: string;
621
+ identifier: CalendarIdentifier;
607
622
  fromJulianDay(jd: number): CalendarDate;
608
623
  toJulianDay(date: AnyCalendarDate): number;
609
624
  getDaysInMonth(date: AnyCalendarDate): number;
@@ -613,7 +628,7 @@ export class CopticCalendar extends EthiopicCalendar {
613
628
  getYearsInEra(date: AnyCalendarDate): number;
614
629
  }
615
630
  /** Creates a `Calendar` instance from a Unicode calendar identifier string. */
616
- export function createCalendar(name: string): Calendar;
631
+ export function createCalendar(name: CalendarIdentifier): Calendar;
617
632
  interface DateRangeFormatPart extends Intl.DateTimeFormatPart {
618
633
  source: 'startRange' | 'endRange' | 'shared';
619
634
  }
@@ -1 +1 @@
1
- {"mappings":"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","sources":["packages/@internationalized/date/src/packages/@internationalized/date/src/utils.ts","packages/@internationalized/date/src/packages/@internationalized/date/src/calendars/GregorianCalendar.ts","packages/@internationalized/date/src/packages/@internationalized/date/src/weekStartData.ts","packages/@internationalized/date/src/packages/@internationalized/date/src/queries.ts","packages/@internationalized/date/src/packages/@internationalized/date/src/conversion.ts","packages/@internationalized/date/src/packages/@internationalized/date/src/manipulation.ts","packages/@internationalized/date/src/packages/@internationalized/date/src/string.ts","packages/@internationalized/date/src/packages/@internationalized/date/src/CalendarDate.ts","packages/@internationalized/date/src/packages/@internationalized/date/src/types.ts","packages/@internationalized/date/src/packages/@internationalized/date/src/calendars/JapaneseCalendar.ts","packages/@internationalized/date/src/packages/@internationalized/date/src/calendars/BuddhistCalendar.ts","packages/@internationalized/date/src/packages/@internationalized/date/src/calendars/TaiwanCalendar.ts","packages/@internationalized/date/src/packages/@internationalized/date/src/calendars/PersianCalendar.ts","packages/@internationalized/date/src/packages/@internationalized/date/src/calendars/IndianCalendar.ts","packages/@internationalized/date/src/packages/@internationalized/date/src/calendars/IslamicCalendar.ts","packages/@internationalized/date/src/packages/@internationalized/date/src/calendars/HebrewCalendar.ts","packages/@internationalized/date/src/packages/@internationalized/date/src/calendars/EthiopicCalendar.ts","packages/@internationalized/date/src/packages/@internationalized/date/src/createCalendar.ts","packages/@internationalized/date/src/packages/@internationalized/date/src/DateFormatter.ts","packages/@internationalized/date/src/packages/@internationalized/date/src/index.ts","packages/@internationalized/date/src/index.ts"],"sourcesContent":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,"/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nexport type {\n AnyCalendarDate,\n AnyTime,\n AnyDateTime,\n Calendar,\n DateDuration,\n TimeDuration,\n DateTimeDuration,\n DateFields,\n TimeFields,\n DateField,\n TimeField,\n Disambiguation,\n CycleOptions,\n CycleTimeOptions\n} from './types';\n\nexport {CalendarDate, CalendarDateTime, Time, ZonedDateTime} from './CalendarDate';\nexport {GregorianCalendar} from './calendars/GregorianCalendar';\nexport {JapaneseCalendar} from './calendars/JapaneseCalendar';\nexport {BuddhistCalendar} from './calendars/BuddhistCalendar';\nexport {TaiwanCalendar} from './calendars/TaiwanCalendar';\nexport {PersianCalendar} from './calendars/PersianCalendar';\nexport {IndianCalendar} from './calendars/IndianCalendar';\nexport {IslamicCivilCalendar, IslamicTabularCalendar, IslamicUmalquraCalendar} from './calendars/IslamicCalendar';\nexport {HebrewCalendar} from './calendars/HebrewCalendar';\nexport {EthiopicCalendar, EthiopicAmeteAlemCalendar, CopticCalendar} from './calendars/EthiopicCalendar';\nexport {createCalendar} from './createCalendar';\nexport {\n toCalendarDate,\n toCalendarDateTime,\n toTime,\n toCalendar,\n toZoned,\n toTimeZone,\n toLocalTimeZone,\n fromDate,\n fromAbsolute\n} from './conversion';\nexport {\n isSameDay,\n isSameMonth,\n isSameYear,\n isEqualDay,\n isEqualMonth,\n isEqualYear,\n isToday,\n getDayOfWeek,\n now,\n today,\n getHoursInDay,\n getLocalTimeZone,\n startOfMonth,\n startOfWeek,\n startOfYear,\n endOfMonth,\n endOfWeek,\n endOfYear,\n getMinimumMonthInYear,\n getMinimumDayInMonth,\n getWeeksInMonth,\n minDate,\n maxDate,\n isWeekend,\n isWeekday\n} from './queries';\nexport {\n parseDate,\n parseDateTime,\n parseTime,\n parseAbsolute,\n parseAbsoluteToLocal,\n parseZonedDateTime,\n parseDuration\n} from './string';\nexport {DateFormatter} from './DateFormatter';\n"],"names":[],"version":3,"file":"types.d.ts.map"}
1
+ {"mappings":"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","sources":["packages/@internationalized/date/src/packages/@internationalized/date/src/utils.ts","packages/@internationalized/date/src/packages/@internationalized/date/src/calendars/GregorianCalendar.ts","packages/@internationalized/date/src/packages/@internationalized/date/src/weekStartData.ts","packages/@internationalized/date/src/packages/@internationalized/date/src/queries.ts","packages/@internationalized/date/src/packages/@internationalized/date/src/conversion.ts","packages/@internationalized/date/src/packages/@internationalized/date/src/manipulation.ts","packages/@internationalized/date/src/packages/@internationalized/date/src/string.ts","packages/@internationalized/date/src/packages/@internationalized/date/src/CalendarDate.ts","packages/@internationalized/date/src/packages/@internationalized/date/src/types.ts","packages/@internationalized/date/src/packages/@internationalized/date/src/calendars/JapaneseCalendar.ts","packages/@internationalized/date/src/packages/@internationalized/date/src/calendars/BuddhistCalendar.ts","packages/@internationalized/date/src/packages/@internationalized/date/src/calendars/TaiwanCalendar.ts","packages/@internationalized/date/src/packages/@internationalized/date/src/calendars/PersianCalendar.ts","packages/@internationalized/date/src/packages/@internationalized/date/src/calendars/IndianCalendar.ts","packages/@internationalized/date/src/packages/@internationalized/date/src/calendars/IslamicCalendar.ts","packages/@internationalized/date/src/packages/@internationalized/date/src/calendars/HebrewCalendar.ts","packages/@internationalized/date/src/packages/@internationalized/date/src/calendars/EthiopicCalendar.ts","packages/@internationalized/date/src/packages/@internationalized/date/src/createCalendar.ts","packages/@internationalized/date/src/packages/@internationalized/date/src/DateFormatter.ts","packages/@internationalized/date/src/packages/@internationalized/date/src/index.ts","packages/@internationalized/date/src/index.ts"],"sourcesContent":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,"/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nexport type {\n AnyCalendarDate,\n AnyTime,\n AnyDateTime,\n Calendar,\n CalendarIdentifier,\n DateDuration,\n TimeDuration,\n DateTimeDuration,\n DateFields,\n TimeFields,\n DateField,\n TimeField,\n Disambiguation,\n CycleOptions,\n CycleTimeOptions\n} from './types';\n\nexport {CalendarDate, CalendarDateTime, Time, ZonedDateTime} from './CalendarDate';\nexport {GregorianCalendar} from './calendars/GregorianCalendar';\nexport {JapaneseCalendar} from './calendars/JapaneseCalendar';\nexport {BuddhistCalendar} from './calendars/BuddhistCalendar';\nexport {TaiwanCalendar} from './calendars/TaiwanCalendar';\nexport {PersianCalendar} from './calendars/PersianCalendar';\nexport {IndianCalendar} from './calendars/IndianCalendar';\nexport {IslamicCivilCalendar, IslamicTabularCalendar, IslamicUmalquraCalendar} from './calendars/IslamicCalendar';\nexport {HebrewCalendar} from './calendars/HebrewCalendar';\nexport {EthiopicCalendar, EthiopicAmeteAlemCalendar, CopticCalendar} from './calendars/EthiopicCalendar';\nexport {createCalendar} from './createCalendar';\nexport {\n toCalendarDate,\n toCalendarDateTime,\n toTime,\n toCalendar,\n toZoned,\n toTimeZone,\n toLocalTimeZone,\n fromDate,\n fromAbsolute\n} from './conversion';\nexport {\n isSameDay,\n isSameMonth,\n isSameYear,\n isEqualDay,\n isEqualMonth,\n isEqualYear,\n isToday,\n getDayOfWeek,\n now,\n today,\n getHoursInDay,\n getLocalTimeZone,\n startOfMonth,\n startOfWeek,\n startOfYear,\n endOfMonth,\n endOfWeek,\n endOfYear,\n getMinimumMonthInYear,\n getMinimumDayInMonth,\n getWeeksInMonth,\n minDate,\n maxDate,\n isWeekend,\n isWeekday,\n isEqualCalendar\n} from './queries';\nexport {\n parseDate,\n parseDateTime,\n parseTime,\n parseAbsolute,\n parseAbsoluteToLocal,\n parseZonedDateTime,\n parseDuration\n} from './string';\nexport {DateFormatter} from './DateFormatter';\n"],"names":[],"version":3,"file":"types.d.ts.map"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@internationalized/date",
3
- "version": "3.7.0",
3
+ "version": "3.8.0",
4
4
  "description": "Internationalized calendar, date, and time manipulation utilities",
5
5
  "license": "Apache-2.0",
6
6
  "main": "dist/main.js",
@@ -27,5 +27,5 @@
27
27
  "publishConfig": {
28
28
  "access": "public"
29
29
  },
30
- "gitHead": "09e7f44bebdc9d89122926b2b439a0a38a2814ea"
30
+ "gitHead": "9b66d270572f482948afee95622a85cdf68ed408"
31
31
  }
@@ -155,17 +155,17 @@ export class Time {
155
155
  }
156
156
 
157
157
  /** Returns a new `Time` with the given duration added to it. */
158
- add(duration: TimeDuration) {
158
+ add(duration: TimeDuration): Time {
159
159
  return addTime(this, duration);
160
160
  }
161
161
 
162
162
  /** Returns a new `Time` with the given duration subtracted from it. */
163
- subtract(duration: TimeDuration) {
163
+ subtract(duration: TimeDuration): Time {
164
164
  return subtractTime(this, duration);
165
165
  }
166
166
 
167
167
  /** Returns a new `Time` with the given fields set to the provided values. Other fields will be constrained accordingly. */
168
- set(fields: TimeFields) {
168
+ set(fields: TimeFields): Time {
169
169
  return setTime(this, fields);
170
170
  }
171
171
 
@@ -173,17 +173,17 @@ export class Time {
173
173
  * Returns a new `Time` with the given field adjusted by a specified amount.
174
174
  * When the resulting value reaches the limits of the field, it wraps around.
175
175
  */
176
- cycle(field: TimeField, amount: number, options?: CycleTimeOptions) {
176
+ cycle(field: TimeField, amount: number, options?: CycleTimeOptions): Time {
177
177
  return cycleTime(this, field, amount, options);
178
178
  }
179
179
 
180
180
  /** Converts the time to an ISO 8601 formatted string. */
181
- toString() {
181
+ toString(): string {
182
182
  return timeToString(this);
183
183
  }
184
184
 
185
185
  /** Compares this time with another. A negative result indicates that this time is before the given one, and a positive time indicates that it is after. */
186
- compare(b: AnyTime) {
186
+ compare(b: AnyTime): number {
187
187
  return compareTime(this, b);
188
188
  }
189
189
  }
@@ -361,17 +361,17 @@ export class ZonedDateTime {
361
361
  }
362
362
 
363
363
  /** Returns a new `ZonedDateTime` with the given duration added to it. */
364
- add(duration: DateTimeDuration) {
364
+ add(duration: DateTimeDuration): ZonedDateTime {
365
365
  return addZoned(this, duration);
366
366
  }
367
367
 
368
368
  /** Returns a new `ZonedDateTime` with the given duration subtracted from it. */
369
- subtract(duration: DateTimeDuration) {
369
+ subtract(duration: DateTimeDuration): ZonedDateTime {
370
370
  return subtractZoned(this, duration);
371
371
  }
372
372
 
373
373
  /** Returns a new `ZonedDateTime` with the given fields set to the provided values. Other fields will be constrained accordingly. */
374
- set(fields: DateFields & TimeFields, disambiguation?: Disambiguation) {
374
+ set(fields: DateFields & TimeFields, disambiguation?: Disambiguation): ZonedDateTime {
375
375
  return setZoned(this, fields, disambiguation);
376
376
  }
377
377
 
@@ -379,27 +379,27 @@ export class ZonedDateTime {
379
379
  * Returns a new `ZonedDateTime` with the given field adjusted by a specified amount.
380
380
  * When the resulting value reaches the limits of the field, it wraps around.
381
381
  */
382
- cycle(field: DateField | TimeField, amount: number, options?: CycleTimeOptions) {
382
+ cycle(field: DateField | TimeField, amount: number, options?: CycleTimeOptions): ZonedDateTime {
383
383
  return cycleZoned(this, field, amount, options);
384
384
  }
385
385
 
386
386
  /** Converts the date to a native JavaScript Date object. */
387
- toDate() {
387
+ toDate(): Date {
388
388
  return zonedToDate(this);
389
389
  }
390
390
 
391
391
  /** Converts the date to an ISO 8601 formatted string, including the UTC offset and time zone identifier. */
392
- toString() {
392
+ toString(): string {
393
393
  return zonedDateTimeToString(this);
394
394
  }
395
395
 
396
396
  /** Converts the date to an ISO 8601 formatted string in UTC. */
397
- toAbsoluteString() {
397
+ toAbsoluteString(): string {
398
398
  return this.toDate().toISOString();
399
399
  }
400
400
 
401
401
  /** Compares this date with another. A negative result indicates that this date is before the given one, and a positive date indicates that it is after. */
402
- compare(b: CalendarDate | CalendarDateTime | ZonedDateTime) {
402
+ compare(b: CalendarDate | CalendarDateTime | ZonedDateTime): number {
403
403
  // TODO: Is this a bad idea??
404
404
  return this.toDate().getTime() - toZoned(b, this.timeZone).toDate().getTime();
405
405
  }
@@ -13,7 +13,7 @@
13
13
  // Portions of the code in this file are based on code from ICU.
14
14
  // Original licensing can be found in the NOTICE file in the root directory of this source tree.
15
15
 
16
- import {AnyCalendarDate} from '../types';
16
+ import {AnyCalendarDate, CalendarIdentifier} from '../types';
17
17
  import {CalendarDate} from '../CalendarDate';
18
18
  import {fromExtendedYear, getExtendedYear, GregorianCalendar} from './GregorianCalendar';
19
19
 
@@ -25,7 +25,7 @@ const BUDDHIST_ERA_START = -543;
25
25
  * era, identified as 'BE'.
26
26
  */
27
27
  export class BuddhistCalendar extends GregorianCalendar {
28
- identifier = 'buddhist';
28
+ identifier: CalendarIdentifier = 'buddhist';
29
29
 
30
30
  fromJulianDay(jd: number): CalendarDate {
31
31
  let gregorianDate = super.fromJulianDay(jd);
@@ -38,11 +38,11 @@ export class BuddhistCalendar extends GregorianCalendar {
38
38
  );
39
39
  }
40
40
 
41
- toJulianDay(date: AnyCalendarDate) {
41
+ toJulianDay(date: AnyCalendarDate): number {
42
42
  return super.toJulianDay(toGregorian(date));
43
43
  }
44
44
 
45
- getEras() {
45
+ getEras(): string[] {
46
46
  return ['BE'];
47
47
  }
48
48
 
@@ -50,7 +50,7 @@ export class BuddhistCalendar extends GregorianCalendar {
50
50
  return super.getDaysInMonth(toGregorian(date));
51
51
  }
52
52
 
53
- balanceDate() {}
53
+ balanceDate(): void {}
54
54
  }
55
55
 
56
56
  function toGregorian(date: AnyCalendarDate) {