@hebcal/core 5.3.0 → 5.3.1

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/hebcal.d.ts CHANGED
@@ -446,8 +446,12 @@ declare module '@hebcal/core' {
446
446
 
447
447
  /** Upper edge of the Sun appears over the eastern horizon in the morning (0.833° above horizon) */
448
448
  sunrise(): Date;
449
+ /** Same as `sunrise()` but ignores elevation */
450
+ seaLevelSunrise(): Date;
449
451
  /** When the upper edge of the Sun disappears below the horizon (0.833° below horizon) */
450
452
  sunset(): Date;
453
+ /** Same as `sunset()` but ignores elevation */
454
+ seaLevelSunset(): Date;
451
455
  /** Civil dawn; Sun is 6° below the horizon in the morning */
452
456
  dawn(): Date;
453
457
  /** Civil dusk; Sun is 6° below the horizon in the evening */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hebcal/core",
3
- "version": "5.3.0",
3
+ "version": "5.3.1",
4
4
  "author": "Michael J. Radwin (https://github.com/mjradwin)",
5
5
  "contributors": [
6
6
  "Eyal Schachter (https://github.com/Scimonster)",
@@ -71,8 +71,8 @@
71
71
  "temporal-polyfill": "^0.2.1"
72
72
  },
73
73
  "devDependencies": {
74
- "@babel/core": "^7.24.3",
75
- "@babel/preset-env": "^7.24.3",
74
+ "@babel/core": "^7.24.4",
75
+ "@babel/preset-env": "^7.24.4",
76
76
  "@babel/register": "^7.23.7",
77
77
  "@hebcal/hdate": "^0.9.1",
78
78
  "@hebcal/noaa": "^0.8.12",
@@ -89,7 +89,7 @@
89
89
  "jsdoc-to-markdown": "^8.0.1",
90
90
  "nyc": "^15.1.0",
91
91
  "quick-lru": "^7.0.0",
92
- "rollup": "^4.13.2",
92
+ "rollup": "^4.14.1",
93
93
  "ttag-cli": "^1.10.11"
94
94
  }
95
95
  }