@hebcal/core 5.3.13 → 5.4.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/README.md +253 -175
- package/dist/CalOptions.d.ts +157 -0
- package/dist/DailyLearning.d.ts +2 -1
- package/dist/HebrewDateEvent.d.ts +27 -2
- package/dist/HolidayEvent.d.ts +45 -0
- package/dist/MevarchimChodeshEvent.d.ts +27 -0
- package/dist/ParshaEvent.d.ts +18 -8
- package/dist/TimedEvent.d.ts +53 -0
- package/dist/YomKippurKatanEvent.d.ts +27 -0
- package/dist/bundle.js +11183 -11935
- package/dist/bundle.min.js +2 -2
- package/dist/candles.d.ts +14 -61
- package/dist/event.d.ts +73 -42
- package/dist/getStartAndEnd.d.ts +6 -0
- package/dist/hallel.d.ts +3 -1
- package/dist/hebcal.d.ts +11 -166
- package/dist/holidays.d.ts +3 -36
- package/dist/index.cjs +3522 -4561
- package/dist/index.d.ts +15 -15
- package/dist/index.mjs +3525 -4564
- package/dist/location.d.ts +4 -4
- package/dist/modern.d.ts +3 -3
- package/dist/molad.d.ts +14 -13
- package/dist/omer.d.ts +23 -5
- package/dist/pkgVersion.d.ts +1 -1
- package/dist/reformatTimeStr.d.ts +2 -1
- package/dist/sedra.d.ts +2 -105
- package/dist/staticHolidays.d.ts +165 -201
- package/dist/tachanun.d.ts +10 -8
- package/dist/zmanim.d.ts +40 -39
- package/package.json +12 -22
- package/dist/ashkenazi.po.d.ts +0 -68
- package/dist/dateFormat.d.ts +0 -33
- package/dist/hdate.d.ts +0 -395
- package/dist/he.po.d.ts +0 -306
- package/dist/locale-ashkenazi.d.ts +0 -1
- package/dist/locale-he.d.ts +0 -1
- package/dist/locale.d.ts +0 -80
- package/dist/staticHols.d.ts +0 -175
- package/dist/throwTypeError.d.ts +0 -5
- package/po/ashkenazi.po +0 -195
- package/po/he.min.po +0 -50
- package/po/he.po +0 -931
package/dist/index.d.ts
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
export { gematriya, gematriyaStrToNum } from '@hebcal/hdate';
|
|
2
|
-
export { Locale } from '
|
|
3
|
-
export {
|
|
4
|
-
export {
|
|
5
|
-
export {
|
|
6
|
-
export { Event, flags } from './event.js';
|
|
2
|
+
export { greg, months, HDate, Locale } from '@hebcal/hdate';
|
|
3
|
+
export { CalOptions } from './CalOptions';
|
|
4
|
+
export { HebrewDateEvent } from './HebrewDateEvent';
|
|
5
|
+
export { Event, flags } from './event';
|
|
7
6
|
export { GeoLocation, NOAACalculator } from '@hebcal/noaa';
|
|
8
7
|
export { Location } from './location.js';
|
|
9
|
-
export { Zmanim } from './zmanim
|
|
10
|
-
export { TimedEvent, CandleLightingEvent, HavdalahEvent } from './
|
|
11
|
-
export { Molad, MoladEvent } from './molad
|
|
12
|
-
export { OmerEvent } from './omer
|
|
13
|
-
export { Sedra, parshiot } from '
|
|
14
|
-
export { ParshaEvent } from './ParshaEvent
|
|
15
|
-
export { HolidayEvent, AsaraBTevetEvent
|
|
16
|
-
export {
|
|
17
|
-
export {
|
|
8
|
+
export { Zmanim } from './zmanim';
|
|
9
|
+
export { TimedEvent, CandleLightingEvent, HavdalahEvent } from './TimedEvent';
|
|
10
|
+
export { Molad, MoladEvent } from './molad';
|
|
11
|
+
export { OmerEvent } from './omer';
|
|
12
|
+
export { Sedra, parshiot } from '@hebcal/hdate';
|
|
13
|
+
export { ParshaEvent } from './ParshaEvent';
|
|
14
|
+
export { HolidayEvent, AsaraBTevetEvent } from './HolidayEvent';
|
|
15
|
+
export { MevarchimChodeshEvent } from './MevarchimChodeshEvent';
|
|
16
|
+
export { RoshChodeshEvent, RoshHashanaEvent } from './holidays.js';
|
|
17
|
+
export { holidayDesc } from './staticHolidays';
|
|
18
|
+
export { DailyLearning } from './DailyLearning';
|
|
18
19
|
export { HebrewCalendar } from './hebcal.js';
|
|
19
20
|
export { version } from './pkgVersion.js';
|
|
20
|
-
export { HolidayDesc } from './staticHols';
|