@hebcal/core 5.9.7 → 5.9.9
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/bundle.js +42 -26
- package/dist/bundle.js.map +1 -1
- package/dist/bundle.min.js +19 -19
- package/dist/bundle.min.js.map +1 -1
- package/dist/esm/DailyLearning.js +1 -1
- package/dist/esm/HebrewDateEvent.js +1 -1
- package/dist/esm/HolidayEvent.js +1 -1
- package/dist/esm/MevarchimChodeshEvent.js +1 -1
- package/dist/esm/ParshaEvent.js +1 -1
- package/dist/esm/TimedEvent.js +1 -1
- package/dist/esm/YomKippurKatanEvent.js +1 -1
- package/dist/esm/ashkenazi.po.js +1 -1
- package/dist/esm/calendar.js +1 -1
- package/dist/esm/candles.js +1 -1
- package/dist/esm/event.js +1 -1
- package/dist/esm/getStartAndEnd.js +1 -1
- package/dist/esm/hallel.js +1 -1
- package/dist/esm/he-x-NoNikud.po.d.ts +12 -0
- package/dist/esm/he-x-NoNikud.po.js +5 -0
- package/dist/esm/he-x-NoNikud.po.js.map +1 -0
- package/dist/esm/he.po.d.ts +0 -56
- package/dist/esm/he.po.js +2 -2
- package/dist/esm/he.po.js.map +1 -1
- package/dist/esm/hebcal.js +1 -1
- package/dist/esm/holidays.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/locale.js +3 -1
- package/dist/esm/locale.js.map +1 -1
- package/dist/esm/location.js +1 -1
- package/dist/esm/modern.js +1 -1
- package/dist/esm/molad.js +1 -1
- package/dist/esm/omer.js +1 -1
- package/dist/esm/parshaName.js +1 -1
- package/dist/esm/parshaYear.js +1 -1
- package/dist/esm/pkgVersion.d.ts +1 -1
- package/dist/esm/pkgVersion.js +2 -2
- package/dist/esm/pkgVersion.js.map +1 -1
- package/dist/esm/reformatTimeStr.js +1 -1
- package/dist/esm/sedra.js +1 -1
- package/dist/esm/staticHolidays.js +1 -1
- package/dist/esm/tachanun.js +1 -1
- package/dist/esm/zmanim.d.ts +7 -1
- package/dist/esm/zmanim.js +13 -2
- package/dist/esm/zmanim.js.map +1 -1
- package/dist/he-x-NoNikud.po.d.ts +12 -0
- package/dist/he.po.d.ts +0 -56
- package/dist/index.cjs +33 -17
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/pkgVersion.d.ts +1 -1
- package/dist/zmanim.d.ts +7 -1
- package/package.json +13 -13
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { version } from './pkgVersion';
|
|
2
2
|
export { gematriya, gematriyaStrToNum } from '@hebcal/hdate';
|
|
3
|
-
export { greg, months, HDate, Locale, Headers, StringArrayMap, LocaleData, } from '@hebcal/hdate';
|
|
3
|
+
export { greg, months, HDate, Locale, Headers, StringArrayMap, LocaleData, MonthName, } from '@hebcal/hdate';
|
|
4
4
|
import './locale';
|
|
5
5
|
export { CalOptions, DailyLearningValue } from './CalOptions';
|
|
6
6
|
export { HebrewDateEvent } from './HebrewDateEvent';
|
package/dist/pkgVersion.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/** DO NOT EDIT THIS AUTO-GENERATED FILE! */
|
|
2
|
-
export declare const version = "5.9.
|
|
2
|
+
export declare const version = "5.9.9";
|
package/dist/zmanim.d.ts
CHANGED
|
@@ -118,6 +118,11 @@ export declare class Zmanim {
|
|
|
118
118
|
* the result is not impacted by elevation.
|
|
119
119
|
*/
|
|
120
120
|
alotHaShachar(): Date;
|
|
121
|
+
/**
|
|
122
|
+
* Dawn – Alot haShachar; calculated as 72 minutes before sunrise or
|
|
123
|
+
* sea level sunrise.
|
|
124
|
+
*/
|
|
125
|
+
alotHaShachar72(): Date;
|
|
121
126
|
/**
|
|
122
127
|
* Earliest talis & tefillin – Misheyakir; Sun is 11.5° below the horizon in the morning.
|
|
123
128
|
* Because degree-based functions estimate the amount of light in the sky,
|
|
@@ -278,7 +283,8 @@ export declare class Zmanim {
|
|
|
278
283
|
*/
|
|
279
284
|
beinHaShmashos(): Date;
|
|
280
285
|
/**
|
|
281
|
-
* Uses timeFormat to return a date like '20:34'
|
|
286
|
+
* Uses timeFormat to return a date like '20:34'.
|
|
287
|
+
* Returns `XX:XX` if the date is invalid.
|
|
282
288
|
*/
|
|
283
289
|
static formatTime(dt: Date, timeFormat: Intl.DateTimeFormat): string;
|
|
284
290
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hebcal/core",
|
|
3
|
-
"version": "5.9.
|
|
3
|
+
"version": "5.9.9",
|
|
4
4
|
"author": "Michael J. Radwin (https://github.com/mjradwin)",
|
|
5
5
|
"contributors": [
|
|
6
6
|
"Eyal Schachter (https://github.com/Scimonster)",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"build": "npm run po2json && npm run version && npm run build:rollup --production",
|
|
57
57
|
"prepublish": "npm run build",
|
|
58
58
|
"version": "node ./version.cjs package.json src/pkgVersion.ts",
|
|
59
|
-
"po2json": "node ./po2json.js po/he.po po/ashkenazi.po",
|
|
59
|
+
"po2json": "node ./po2json.js po/he.po po/he-x-NoNikud.po po/ashkenazi.po",
|
|
60
60
|
"docs": "typedoc",
|
|
61
61
|
"pretest": "npm run build",
|
|
62
62
|
"lint": "gts lint",
|
|
@@ -67,32 +67,32 @@
|
|
|
67
67
|
},
|
|
68
68
|
"license": "GPL-2.0",
|
|
69
69
|
"devDependencies": {
|
|
70
|
-
"@babel/core": "^7.27.
|
|
71
|
-
"@babel/plugin-transform-runtime": "^7.27.
|
|
70
|
+
"@babel/core": "^7.27.4",
|
|
71
|
+
"@babel/plugin-transform-runtime": "^7.27.4",
|
|
72
72
|
"@babel/preset-env": "^7.27.2",
|
|
73
73
|
"@babel/preset-typescript": "^7.27.1",
|
|
74
74
|
"@babel/register": "^7.27.1",
|
|
75
75
|
"@rollup/plugin-babel": "^6.0.4",
|
|
76
|
-
"@rollup/plugin-commonjs": "^28.0.
|
|
76
|
+
"@rollup/plugin-commonjs": "^28.0.5",
|
|
77
77
|
"@rollup/plugin-json": "^6.1.0",
|
|
78
78
|
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
79
79
|
"@rollup/plugin-terser": "^0.4.4",
|
|
80
80
|
"@rollup/plugin-typescript": "^12.1.2",
|
|
81
|
-
"@types/node": "^
|
|
82
|
-
"@vitest/coverage-v8": "^3.
|
|
83
|
-
"core-js": "^3.
|
|
81
|
+
"@types/node": "^24.0.3",
|
|
82
|
+
"@vitest/coverage-v8": "^3.2.3",
|
|
83
|
+
"core-js": "^3.43.0",
|
|
84
84
|
"gettext-parser": "^8.0.0",
|
|
85
85
|
"gts": "^6.0.2",
|
|
86
86
|
"pretty-bytes": "^7.0.0",
|
|
87
|
-
"rollup": "^4.
|
|
87
|
+
"rollup": "^4.43.0",
|
|
88
88
|
"rollup-plugin-bundle-size": "^1.0.3",
|
|
89
|
-
"rollup-plugin-visualizer": "^
|
|
90
|
-
"typedoc": "^0.28.
|
|
89
|
+
"rollup-plugin-visualizer": "^6.0.3",
|
|
90
|
+
"typedoc": "^0.28.5",
|
|
91
91
|
"typescript": "^5.8.3",
|
|
92
|
-
"vitest": "^3.
|
|
92
|
+
"vitest": "^3.2.3"
|
|
93
93
|
},
|
|
94
94
|
"dependencies": {
|
|
95
|
-
"@hebcal/hdate": "^0.14.
|
|
95
|
+
"@hebcal/hdate": "^0.14.2",
|
|
96
96
|
"@hebcal/noaa": "^0.9.2",
|
|
97
97
|
"quick-lru": "^6.1.2",
|
|
98
98
|
"temporal-polyfill": "^0.3.0",
|