@hebcal/core 5.7.7 → 5.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.
- package/dist/CalOptions.d.ts +12 -0
- package/dist/bundle.js +46 -2
- package/dist/bundle.js.map +1 -1
- package/dist/bundle.min.js +4 -4
- package/dist/bundle.min.js.map +1 -1
- package/dist/calendar.d.ts +1 -0
- package/dist/esm/CalOptions.d.ts +12 -0
- 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.d.ts +1 -0
- package/dist/esm/calendar.js +20 -2
- package/dist/esm/calendar.js.map +1 -1
- package/dist/esm/candles.js +1 -1
- package/dist/esm/event.d.ts +2 -0
- package/dist/esm/event.js +3 -1
- package/dist/esm/event.js.map +1 -1
- package/dist/esm/getStartAndEnd.js +1 -1
- package/dist/esm/hallel.js +1 -1
- package/dist/esm/he.po.js +1 -1
- package/dist/esm/hebcal.d.ts +1 -0
- package/dist/esm/hebcal.js +2 -1
- package/dist/esm/hebcal.js.map +1 -1
- package/dist/esm/holidays.js +1 -1
- package/dist/esm/index.d.ts +1 -0
- package/dist/esm/index.js +2 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/locale.js +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.d.ts +9 -0
- package/dist/esm/parshaYear.js +29 -0
- package/dist/esm/parshaYear.js.map +1 -0
- 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.js +1 -1
- package/dist/event.d.ts +2 -0
- package/dist/hebcal.d.ts +1 -0
- package/dist/index.cjs +46 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/parshaYear.d.ts +9 -0
- package/dist/pkgVersion.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -15,6 +15,7 @@ export { OmerEvent } from './omer';
|
|
|
15
15
|
export { TachanunResult } from './tachanun';
|
|
16
16
|
export { Sedra, SedraResult, parshiot, getSedra } from './sedra';
|
|
17
17
|
export { ParshaEvent } from './ParshaEvent';
|
|
18
|
+
export { parshaYear } from './parshaYear';
|
|
18
19
|
export { HolidayEvent, AsaraBTevetEvent, RoshChodeshEvent, RoshHashanaEvent, } from './HolidayEvent';
|
|
19
20
|
export { HolidayYearMap, getHolidaysOnDate } from './holidays';
|
|
20
21
|
export { MevarchimChodeshEvent } from './MevarchimChodeshEvent';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Event } from './event';
|
|
2
|
+
/**
|
|
3
|
+
* Calculates weekly Torah Reading on Saturdays for entire year
|
|
4
|
+
* @param year Hebrew year
|
|
5
|
+
* @param il Israel (false for Diaspora)
|
|
6
|
+
* @returns an array of `ParshaEvent` occurring on Saturdays that contain a regular
|
|
7
|
+
* (non-holiday) Parashat HaShavua
|
|
8
|
+
*/
|
|
9
|
+
export declare function parshaYear(year: number, il: boolean): Event[];
|
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.
|
|
2
|
+
export declare const version = "5.8.0";
|