@hebcal/core 5.3.13 → 5.4.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/README.md +251 -173
- package/dist/bundle.js +11301 -11406
- package/dist/bundle.min.js +2 -2
- package/dist/event.d.ts +1 -1
- package/dist/hebcal.d.ts +8 -1
- package/dist/holidays.d.ts +1 -1
- package/dist/index.cjs +1517 -1916
- package/dist/index.d.ts +2 -4
- package/dist/index.mjs +1517 -1916
- package/dist/locale.d.ts +2 -2
- package/dist/modern.d.ts +1 -1
- package/dist/molad.d.ts +1 -1
- package/dist/pkgVersion.d.ts +1 -1
- package/dist/sedra.d.ts +1 -104
- package/dist/tachanun.d.ts +1 -1
- package/dist/zmanim.d.ts +1 -1
- package/package.json +7 -8
- package/po/ashkenazi.po +0 -195
- package/po/he.min.po +0 -50
- package/po/he.po +0 -931
package/dist/event.d.ts
CHANGED
package/dist/hebcal.d.ts
CHANGED
|
@@ -207,6 +207,13 @@ export class HebrewCalendar {
|
|
|
207
207
|
* @return {Event[]}
|
|
208
208
|
*/
|
|
209
209
|
static getHolidaysOnDate(date: HDate | Date | number, il?: boolean | undefined): Event[];
|
|
210
|
+
/**
|
|
211
|
+
* Eruv Tavshilin
|
|
212
|
+
* @param {Date | HDate} date
|
|
213
|
+
* @param {boolean} il
|
|
214
|
+
* @return {boolean}
|
|
215
|
+
*/
|
|
216
|
+
static eruvTavshilin(date: Date | HDate, il: boolean): boolean;
|
|
210
217
|
/**
|
|
211
218
|
* Helper function to format a 23-hour (00:00-23:59) time in US format ("8:13pm") or
|
|
212
219
|
* keep as "20:13" for any other locale/country. Uses {@link CalOptions} to determine
|
|
@@ -440,5 +447,5 @@ export type TachanunResult = {
|
|
|
440
447
|
allCongs: boolean;
|
|
441
448
|
};
|
|
442
449
|
export type Event = import('./event').Event;
|
|
443
|
-
import { HDate } from '
|
|
450
|
+
import { HDate } from '@hebcal/hdate';
|
|
444
451
|
import { Location } from './location.js';
|
package/dist/holidays.d.ts
CHANGED