@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/hdate.d.ts
DELETED
|
@@ -1,395 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* A simple Hebrew date object with numeric fields `yy`, `mm`, and `dd`
|
|
3
|
-
* @typedef {Object} SimpleHebrewDate
|
|
4
|
-
* @property {number} yy Hebrew year
|
|
5
|
-
* @property {number} mm Hebrew month of year (1=NISAN, 7=TISHREI)
|
|
6
|
-
* @property {number} dd Day of month (1-30)
|
|
7
|
-
* @private
|
|
8
|
-
*/
|
|
9
|
-
/** Represents a Hebrew date */
|
|
10
|
-
export class HDate {
|
|
11
|
-
/**
|
|
12
|
-
* Converts Hebrew date to R.D. (Rata Die) fixed days.
|
|
13
|
-
* R.D. 1 is the imaginary date Monday, January 1, 1 on the Gregorian
|
|
14
|
-
* Calendar.
|
|
15
|
-
* @param {number} year Hebrew year
|
|
16
|
-
* @param {number} month Hebrew month
|
|
17
|
-
* @param {number} day Hebrew date (1-30)
|
|
18
|
-
* @return {number}
|
|
19
|
-
*/
|
|
20
|
-
static hebrew2abs(year: number, month: number, day: number): number;
|
|
21
|
-
/**
|
|
22
|
-
* @private
|
|
23
|
-
* @param {string} locale
|
|
24
|
-
* @return {string}
|
|
25
|
-
*/
|
|
26
|
-
private static getDayOfTranslation;
|
|
27
|
-
/**
|
|
28
|
-
* @private
|
|
29
|
-
* @param {string} units
|
|
30
|
-
* @return {string}
|
|
31
|
-
*/
|
|
32
|
-
private static standardizeUnits;
|
|
33
|
-
/**
|
|
34
|
-
* Returns true if Hebrew year is a leap year
|
|
35
|
-
* @param {number} year Hebrew year
|
|
36
|
-
* @return {boolean}
|
|
37
|
-
*/
|
|
38
|
-
static isLeapYear(year: number): boolean;
|
|
39
|
-
/**
|
|
40
|
-
* Number of months in this Hebrew year (either 12 or 13 depending on leap year)
|
|
41
|
-
* @param {number} year Hebrew year
|
|
42
|
-
* @return {number}
|
|
43
|
-
*/
|
|
44
|
-
static monthsInYear(year: number): number;
|
|
45
|
-
/**
|
|
46
|
-
* Number of days in Hebrew month in a given year (29 or 30)
|
|
47
|
-
* @param {number} month Hebrew month (e.g. months.TISHREI)
|
|
48
|
-
* @param {number} year Hebrew year
|
|
49
|
-
* @return {number}
|
|
50
|
-
*/
|
|
51
|
-
static daysInMonth(month: number, year: number): number;
|
|
52
|
-
/**
|
|
53
|
-
* Returns a transliterated string name of Hebrew month in year,
|
|
54
|
-
* for example 'Elul' or 'Cheshvan'.
|
|
55
|
-
* @param {number} month Hebrew month (e.g. months.TISHREI)
|
|
56
|
-
* @param {number} year Hebrew year
|
|
57
|
-
* @return {string}
|
|
58
|
-
*/
|
|
59
|
-
static getMonthName(month: number, year: number): string;
|
|
60
|
-
/**
|
|
61
|
-
* Returns the Hebrew month number (NISAN=1, TISHREI=7)
|
|
62
|
-
* @param {number|string} month A number, or Hebrew month name string
|
|
63
|
-
* @return {number}
|
|
64
|
-
*/
|
|
65
|
-
static monthNum(month: number | string): number;
|
|
66
|
-
/**
|
|
67
|
-
* Number of days in the hebrew YEAR
|
|
68
|
-
* @param {number} year Hebrew year
|
|
69
|
-
* @return {number}
|
|
70
|
-
*/
|
|
71
|
-
static daysInYear(year: number): number;
|
|
72
|
-
/**
|
|
73
|
-
* true if Cheshvan is long in Hebrew year
|
|
74
|
-
* @param {number} year Hebrew year
|
|
75
|
-
* @return {boolean}
|
|
76
|
-
*/
|
|
77
|
-
static longCheshvan(year: number): boolean;
|
|
78
|
-
/**
|
|
79
|
-
* true if Kislev is short in Hebrew year
|
|
80
|
-
* @param {number} year Hebrew year
|
|
81
|
-
* @return {boolean}
|
|
82
|
-
*/
|
|
83
|
-
static shortKislev(year: number): boolean;
|
|
84
|
-
/**
|
|
85
|
-
* Converts Hebrew month string name to numeric
|
|
86
|
-
* @param {string|number} monthName monthName
|
|
87
|
-
* @return {number}
|
|
88
|
-
*/
|
|
89
|
-
static monthFromName(monthName: string | number): number;
|
|
90
|
-
/**
|
|
91
|
-
* Note: Applying this function to d+6 gives us the DAYNAME on or after an
|
|
92
|
-
* absolute day d. Similarly, applying it to d+3 gives the DAYNAME nearest to
|
|
93
|
-
* absolute date d, applying it to d-1 gives the DAYNAME previous to absolute
|
|
94
|
-
* date d, and applying it to d+7 gives the DAYNAME following absolute date d.
|
|
95
|
-
* @param {number} dayOfWeek
|
|
96
|
-
* @param {number} absdate
|
|
97
|
-
* @return {number}
|
|
98
|
-
*/
|
|
99
|
-
static dayOnOrBefore(dayOfWeek: number, absdate: number): number;
|
|
100
|
-
/**
|
|
101
|
-
* Tests if the object is an instance of `HDate`
|
|
102
|
-
* @param {any} obj
|
|
103
|
-
* @return {boolean}
|
|
104
|
-
*/
|
|
105
|
-
static isHDate(obj: any): boolean;
|
|
106
|
-
/**
|
|
107
|
-
* Construct a new instance of `HDate` from a Gematriya-formatted string
|
|
108
|
-
* @example
|
|
109
|
-
* HDate.fromGematriyaString('כ״ז בְּתַמּוּז תשפ״ג') // 27 Tamuz 5783
|
|
110
|
-
* HDate.fromGematriyaString('כ׳ סיון תש״ד') // 20 Sivan 5704
|
|
111
|
-
* HDate.fromGematriyaString('ה׳ אִיָיר תש״ח') // 5 Iyyar 5708
|
|
112
|
-
* @param {string} str
|
|
113
|
-
* @param {number} currentThousands
|
|
114
|
-
* @return {HDate}
|
|
115
|
-
*/
|
|
116
|
-
static fromGematriyaString(str: string, currentThousands?: number): HDate;
|
|
117
|
-
/**
|
|
118
|
-
* Create a Hebrew date. There are 3 basic forms for the `HDate()` constructor.
|
|
119
|
-
*
|
|
120
|
-
* 1. No parameters - represents the current Hebrew date at time of instantiation
|
|
121
|
-
* 2. One parameter
|
|
122
|
-
* * `Date` - represents the Hebrew date corresponding to the Gregorian date using
|
|
123
|
-
* local time. Hours, minutes, seconds and milliseconds are ignored.
|
|
124
|
-
* * `HDate` - clones a copy of the given Hebrew date
|
|
125
|
-
* * `number` - Converts absolute R.D. days to Hebrew date.
|
|
126
|
-
* R.D. 1 == the imaginary date January 1, 1 (Gregorian)
|
|
127
|
-
* 3. Three parameters: Hebrew day, Hebrew month, Hebrew year. Hebrew day should
|
|
128
|
-
* be a number between 1-30, Hebrew month can be a number or string, and
|
|
129
|
-
* Hebrew year is always a number.
|
|
130
|
-
* @example
|
|
131
|
-
* import {HDate, months} from '@hebcal/core';
|
|
132
|
-
*
|
|
133
|
-
* const hd1 = new HDate();
|
|
134
|
-
* const hd2 = new HDate(new Date(2008, 10, 13));
|
|
135
|
-
* const hd3 = new HDate(15, 'Cheshvan', 5769);
|
|
136
|
-
* const hd4 = new HDate(15, months.CHESHVAN, 5769);
|
|
137
|
-
* const hd5 = new HDate(733359); // ==> 15 Cheshvan 5769
|
|
138
|
-
* const monthName = 'אייר';
|
|
139
|
-
* const hd6 = new HDate(5, monthName, 5773);
|
|
140
|
-
* @param {number|Date|HDate} [day] - Day of month (1-30) if a `number`.
|
|
141
|
-
* If a `Date` is specified, represents the Hebrew date corresponding to the
|
|
142
|
-
* Gregorian date using local time.
|
|
143
|
-
* If an `HDate` is specified, clones a copy of the given Hebrew date.
|
|
144
|
-
* @param {number|string} [month] - Hebrew month of year (1=NISAN, 7=TISHREI)
|
|
145
|
-
* @param {number} [year] - Hebrew year
|
|
146
|
-
*/
|
|
147
|
-
constructor(day?: number | HDate | Date | undefined, month?: string | number | undefined, year?: number | undefined, ...args: any[]);
|
|
148
|
-
/**
|
|
149
|
-
* @private
|
|
150
|
-
* @type {number}
|
|
151
|
-
*/
|
|
152
|
-
private dd;
|
|
153
|
-
private mm;
|
|
154
|
-
yy: number;
|
|
155
|
-
/**
|
|
156
|
-
* @private
|
|
157
|
-
* @type {number}
|
|
158
|
-
*/
|
|
159
|
-
private rd;
|
|
160
|
-
/**
|
|
161
|
-
* Gets the Hebrew year of this Hebrew date
|
|
162
|
-
* @return {number}
|
|
163
|
-
*/
|
|
164
|
-
getFullYear(): number;
|
|
165
|
-
/**
|
|
166
|
-
* Tests if this date occurs during a leap year
|
|
167
|
-
* @return {boolean}
|
|
168
|
-
*/
|
|
169
|
-
isLeapYear(): boolean;
|
|
170
|
-
/**
|
|
171
|
-
* Gets the Hebrew month (1=NISAN, 7=TISHREI) of this Hebrew date
|
|
172
|
-
* @return {number}
|
|
173
|
-
*/
|
|
174
|
-
getMonth(): number;
|
|
175
|
-
/**
|
|
176
|
-
* The Tishrei-based month of the date. 1 is Tishrei, 7 is Nisan, 13 is Elul in a leap year
|
|
177
|
-
* @return {number}
|
|
178
|
-
*/
|
|
179
|
-
getTishreiMonth(): number;
|
|
180
|
-
/**
|
|
181
|
-
* Number of days in the month of this Hebrew date
|
|
182
|
-
* @return {number}
|
|
183
|
-
*/
|
|
184
|
-
daysInMonth(): number;
|
|
185
|
-
/**
|
|
186
|
-
* Gets the day within the month (1-30)
|
|
187
|
-
* @return {number}
|
|
188
|
-
*/
|
|
189
|
-
getDate(): number;
|
|
190
|
-
/**
|
|
191
|
-
* Gets the day of the week. 0=Sunday, 6=Saturday
|
|
192
|
-
* @return {number}
|
|
193
|
-
*/
|
|
194
|
-
getDay(): number;
|
|
195
|
-
/**
|
|
196
|
-
* Sets the day of the month of the date. Returns the object it was called upon
|
|
197
|
-
* @private
|
|
198
|
-
* @param {number|string} month A number, or Hebrew month name string
|
|
199
|
-
* @return {HDate}
|
|
200
|
-
*/
|
|
201
|
-
private setMonth;
|
|
202
|
-
/**
|
|
203
|
-
* @private
|
|
204
|
-
* @param {number} date
|
|
205
|
-
* @return {HDate}
|
|
206
|
-
*/
|
|
207
|
-
private setDate;
|
|
208
|
-
/**
|
|
209
|
-
* Converts to Gregorian date
|
|
210
|
-
* @return {Date}
|
|
211
|
-
*/
|
|
212
|
-
greg(): Date;
|
|
213
|
-
/**
|
|
214
|
-
* Returns R.D. (Rata Die) fixed days.
|
|
215
|
-
* R.D. 1 == Monday, January 1, 1 (Gregorian)
|
|
216
|
-
* Note also that R.D. = Julian Date − 1,721,424.5
|
|
217
|
-
* https://en.wikipedia.org/wiki/Rata_Die#Dershowitz_and_Reingold
|
|
218
|
-
* @return {number}
|
|
219
|
-
*/
|
|
220
|
-
abs(): number;
|
|
221
|
-
/**
|
|
222
|
-
* Returns a transliterated Hebrew month name, e.g. `'Elul'` or `'Cheshvan'`.
|
|
223
|
-
* @return {string}
|
|
224
|
-
*/
|
|
225
|
-
getMonthName(): string;
|
|
226
|
-
/**
|
|
227
|
-
* Renders this Hebrew date as a translated or transliterated string,
|
|
228
|
-
* including ordinal e.g. `'15th of Cheshvan, 5769'`.
|
|
229
|
-
* @example
|
|
230
|
-
* import {HDate, months} from '@hebcal/core';
|
|
231
|
-
*
|
|
232
|
-
* const hd = new HDate(15, months.CHESHVAN, 5769);
|
|
233
|
-
* console.log(hd.render('en')); // '15th of Cheshvan, 5769'
|
|
234
|
-
* console.log(hd.render('he')); // '15 חֶשְׁוָן, 5769'
|
|
235
|
-
* @param {string} [locale] Optional locale name (defaults to active locale).
|
|
236
|
-
* @param {boolean} [showYear=true] Display year (defaults to true).
|
|
237
|
-
* @return {string}
|
|
238
|
-
*/
|
|
239
|
-
render(locale?: string | undefined, showYear?: boolean | undefined): string;
|
|
240
|
-
/**
|
|
241
|
-
* Renders this Hebrew date in Hebrew gematriya, regardless of locale.
|
|
242
|
-
* @example
|
|
243
|
-
* import {HDate, months} from '@hebcal/core';
|
|
244
|
-
* const hd = new HDate(15, months.CHESHVAN, 5769);
|
|
245
|
-
* console.log(hd.renderGematriya()); // 'ט״ו חֶשְׁוָן תשס״ט'
|
|
246
|
-
* @param {boolean} [suppressNikud]
|
|
247
|
-
* @return {string}
|
|
248
|
-
*/
|
|
249
|
-
renderGematriya(suppressNikud?: boolean | undefined): string;
|
|
250
|
-
/**
|
|
251
|
-
* Returns an `HDate` representing the a dayNumber before the current date.
|
|
252
|
-
* Sunday=0, Saturday=6
|
|
253
|
-
* @example
|
|
254
|
-
* new HDate(new Date('Wednesday February 19, 2014')).before(6).greg() // Sat Feb 15 2014
|
|
255
|
-
* @param {number} day day of week
|
|
256
|
-
* @return {HDate}
|
|
257
|
-
*/
|
|
258
|
-
before(day: number): HDate;
|
|
259
|
-
/**
|
|
260
|
-
* Returns an `HDate` representing the a dayNumber on or before the current date.
|
|
261
|
-
* Sunday=0, Saturday=6
|
|
262
|
-
* @example
|
|
263
|
-
* new HDate(new Date('Wednesday February 19, 2014')).onOrBefore(6).greg() // Sat Feb 15 2014
|
|
264
|
-
* new HDate(new Date('Saturday February 22, 2014')).onOrBefore(6).greg() // Sat Feb 22 2014
|
|
265
|
-
* new HDate(new Date('Sunday February 23, 2014')).onOrBefore(6).greg() // Sat Feb 22 2014
|
|
266
|
-
* @param {number} dow day of week
|
|
267
|
-
* @return {HDate}
|
|
268
|
-
*/
|
|
269
|
-
onOrBefore(dow: number): HDate;
|
|
270
|
-
/**
|
|
271
|
-
* Returns an `HDate` representing the nearest dayNumber to the current date
|
|
272
|
-
* Sunday=0, Saturday=6
|
|
273
|
-
* @example
|
|
274
|
-
* new HDate(new Date('Wednesday February 19, 2014')).nearest(6).greg() // Sat Feb 22 2014
|
|
275
|
-
* new HDate(new Date('Tuesday February 18, 2014')).nearest(6).greg() // Sat Feb 15 2014
|
|
276
|
-
* @param {number} dow day of week
|
|
277
|
-
* @return {HDate}
|
|
278
|
-
*/
|
|
279
|
-
nearest(dow: number): HDate;
|
|
280
|
-
/**
|
|
281
|
-
* Returns an `HDate` representing the a dayNumber on or after the current date.
|
|
282
|
-
* Sunday=0, Saturday=6
|
|
283
|
-
* @example
|
|
284
|
-
* new HDate(new Date('Wednesday February 19, 2014')).onOrAfter(6).greg() // Sat Feb 22 2014
|
|
285
|
-
* new HDate(new Date('Saturday February 22, 2014')).onOrAfter(6).greg() // Sat Feb 22 2014
|
|
286
|
-
* new HDate(new Date('Sunday February 23, 2014')).onOrAfter(6).greg() // Sat Mar 01 2014
|
|
287
|
-
* @param {number} dow day of week
|
|
288
|
-
* @return {HDate}
|
|
289
|
-
*/
|
|
290
|
-
onOrAfter(dow: number): HDate;
|
|
291
|
-
/**
|
|
292
|
-
* Returns an `HDate` representing the a dayNumber after the current date.
|
|
293
|
-
* Sunday=0, Saturday=6
|
|
294
|
-
* @example
|
|
295
|
-
* new HDate(new Date('Wednesday February 19, 2014')).after(6).greg() // Sat Feb 22 2014
|
|
296
|
-
* new HDate(new Date('Saturday February 22, 2014')).after(6).greg() // Sat Mar 01 2014
|
|
297
|
-
* new HDate(new Date('Sunday February 23, 2014')).after(6).greg() // Sat Mar 01 2014
|
|
298
|
-
* @param {number} day day of week
|
|
299
|
-
* @return {HDate}
|
|
300
|
-
*/
|
|
301
|
-
after(day: number): HDate;
|
|
302
|
-
/**
|
|
303
|
-
* Returns the next Hebrew date
|
|
304
|
-
* @return {HDate}
|
|
305
|
-
*/
|
|
306
|
-
next(): HDate;
|
|
307
|
-
/**
|
|
308
|
-
* Returns the previous Hebrew date
|
|
309
|
-
* @return {HDate}
|
|
310
|
-
*/
|
|
311
|
-
prev(): HDate;
|
|
312
|
-
/**
|
|
313
|
-
* Returns a cloned `HDate` object with a specified amount of time added
|
|
314
|
-
*
|
|
315
|
-
* Units are case insensitive, and support plural and short forms.
|
|
316
|
-
* Note, short forms are case sensitive.
|
|
317
|
-
*
|
|
318
|
-
* | Unit | Shorthand | Description
|
|
319
|
-
* | --- | --- | --- |
|
|
320
|
-
* | `day` | `d` | days |
|
|
321
|
-
* | `week` | `w` | weeks |
|
|
322
|
-
* | `month` | `M` | months |
|
|
323
|
-
* | `year` | `y` | years |
|
|
324
|
-
* @param {number} number
|
|
325
|
-
* @param {string} [units]
|
|
326
|
-
* @return {HDate}
|
|
327
|
-
*/
|
|
328
|
-
add(number: number, units?: string | undefined): HDate;
|
|
329
|
-
/**
|
|
330
|
-
* Returns a cloned `HDate` object with a specified amount of time subracted
|
|
331
|
-
*
|
|
332
|
-
* Units are case insensitive, and support plural and short forms.
|
|
333
|
-
* Note, short forms are case sensitive.
|
|
334
|
-
*
|
|
335
|
-
* | Unit | Shorthand | Description
|
|
336
|
-
* | --- | --- | --- |
|
|
337
|
-
* | `day` | `d` | days |
|
|
338
|
-
* | `week` | `w` | weeks |
|
|
339
|
-
* | `month` | `M` | months |
|
|
340
|
-
* | `year` | `y` | years |
|
|
341
|
-
* @example
|
|
342
|
-
* import {HDate, months} from '@hebcal/core';
|
|
343
|
-
*
|
|
344
|
-
* const hd1 = new HDate(15, months.CHESHVAN, 5769);
|
|
345
|
-
* const hd2 = hd1.add(1, 'weeks'); // 7 Kislev 5769
|
|
346
|
-
* const hd3 = hd1.add(-3, 'M'); // 30 Av 5768
|
|
347
|
-
* @param {number} number
|
|
348
|
-
* @param {string} [units]
|
|
349
|
-
* @return {HDate}
|
|
350
|
-
*/
|
|
351
|
-
subtract(number: number, units?: string | undefined): HDate;
|
|
352
|
-
/**
|
|
353
|
-
* Returns the difference in days between the two given HDates.
|
|
354
|
-
*
|
|
355
|
-
* The result is positive if `this` date is comes chronologically
|
|
356
|
-
* after the `other` date, and negative
|
|
357
|
-
* if the order of the two dates is reversed.
|
|
358
|
-
*
|
|
359
|
-
* The result is zero if the two dates are identical.
|
|
360
|
-
* @example
|
|
361
|
-
* import {HDate, months} from '@hebcal/core';
|
|
362
|
-
*
|
|
363
|
-
* const hd1 = new HDate(25, months.KISLEV, 5770);
|
|
364
|
-
* const hd2 = new HDate(15, months.CHESHVAN, 5769);
|
|
365
|
-
* const days = hd1.deltaDays(hd2); // 394
|
|
366
|
-
* @param {HDate} other Hebrew date to compare
|
|
367
|
-
* @return {number}
|
|
368
|
-
*/
|
|
369
|
-
deltaDays(other: HDate): number;
|
|
370
|
-
/**
|
|
371
|
-
* Compares this date to another date, returning `true` if the dates match.
|
|
372
|
-
* @param {HDate} other Hebrew date to compare
|
|
373
|
-
* @return {boolean}
|
|
374
|
-
*/
|
|
375
|
-
isSameDate(other: HDate): boolean;
|
|
376
|
-
/** @return {string} */
|
|
377
|
-
toString(): string;
|
|
378
|
-
}
|
|
379
|
-
/**
|
|
380
|
-
* A simple Hebrew date object with numeric fields `yy`, `mm`, and `dd`
|
|
381
|
-
*/
|
|
382
|
-
export type SimpleHebrewDate = {
|
|
383
|
-
/**
|
|
384
|
-
* Hebrew year
|
|
385
|
-
*/
|
|
386
|
-
yy: number;
|
|
387
|
-
/**
|
|
388
|
-
* Hebrew month of year (1=NISAN, 7=TISHREI)
|
|
389
|
-
*/
|
|
390
|
-
mm: number;
|
|
391
|
-
/**
|
|
392
|
-
* Day of month (1-30)
|
|
393
|
-
*/
|
|
394
|
-
dd: number;
|
|
395
|
-
};
|
package/dist/he.po.d.ts
DELETED
|
@@ -1,306 +0,0 @@
|
|
|
1
|
-
declare namespace _default {
|
|
2
|
-
let headers: {
|
|
3
|
-
"plural-forms": string;
|
|
4
|
-
};
|
|
5
|
-
let contexts: {
|
|
6
|
-
"": {
|
|
7
|
-
Shabbat: string[];
|
|
8
|
-
"Daf Yomi": string[];
|
|
9
|
-
Parashat: string[];
|
|
10
|
-
"Achrei Mot": string[];
|
|
11
|
-
Balak: string[];
|
|
12
|
-
Bamidbar: string[];
|
|
13
|
-
Bechukotai: string[];
|
|
14
|
-
"Beha'alotcha": string[];
|
|
15
|
-
Behar: string[];
|
|
16
|
-
Bereshit: string[];
|
|
17
|
-
Beshalach: string[];
|
|
18
|
-
Bo: string[];
|
|
19
|
-
"Chayei Sara": string[];
|
|
20
|
-
Chukat: string[];
|
|
21
|
-
Devarim: string[];
|
|
22
|
-
Eikev: string[];
|
|
23
|
-
Emor: string[];
|
|
24
|
-
"Ha'azinu": string[];
|
|
25
|
-
Kedoshim: string[];
|
|
26
|
-
"Ki Tavo": string[];
|
|
27
|
-
"Ki Teitzei": string[];
|
|
28
|
-
"Ki Tisa": string[];
|
|
29
|
-
Korach: string[];
|
|
30
|
-
"Lech-Lecha": string[];
|
|
31
|
-
Masei: string[];
|
|
32
|
-
Matot: string[];
|
|
33
|
-
Metzora: string[];
|
|
34
|
-
Miketz: string[];
|
|
35
|
-
Mishpatim: string[];
|
|
36
|
-
Nasso: string[];
|
|
37
|
-
Nitzavim: string[];
|
|
38
|
-
Noach: string[];
|
|
39
|
-
Pekudei: string[];
|
|
40
|
-
Pinchas: string[];
|
|
41
|
-
"Re'eh": string[];
|
|
42
|
-
"Sh'lach": string[];
|
|
43
|
-
Shemot: string[];
|
|
44
|
-
Shmini: string[];
|
|
45
|
-
Shoftim: string[];
|
|
46
|
-
Tazria: string[];
|
|
47
|
-
Terumah: string[];
|
|
48
|
-
Tetzaveh: string[];
|
|
49
|
-
Toldot: string[];
|
|
50
|
-
Tzav: string[];
|
|
51
|
-
Vaera: string[];
|
|
52
|
-
Vaetchanan: string[];
|
|
53
|
-
Vayakhel: string[];
|
|
54
|
-
Vayechi: string[];
|
|
55
|
-
Vayeilech: string[];
|
|
56
|
-
Vayera: string[];
|
|
57
|
-
Vayeshev: string[];
|
|
58
|
-
Vayetzei: string[];
|
|
59
|
-
Vayigash: string[];
|
|
60
|
-
Vayikra: string[];
|
|
61
|
-
Vayishlach: string[];
|
|
62
|
-
"Vezot Haberakhah": string[];
|
|
63
|
-
Yitro: string[];
|
|
64
|
-
"Asara B'Tevet": string[];
|
|
65
|
-
"Candle lighting": string[];
|
|
66
|
-
Chanukah: string[];
|
|
67
|
-
"Chanukah: 1 Candle": string[];
|
|
68
|
-
"Chanukah: 2 Candles": string[];
|
|
69
|
-
"Chanukah: 3 Candles": string[];
|
|
70
|
-
"Chanukah: 4 Candles": string[];
|
|
71
|
-
"Chanukah: 5 Candles": string[];
|
|
72
|
-
"Chanukah: 6 Candles": string[];
|
|
73
|
-
"Chanukah: 7 Candles": string[];
|
|
74
|
-
"Chanukah: 8 Candles": string[];
|
|
75
|
-
"Chanukah: 8th Day": string[];
|
|
76
|
-
"Days of the Omer": string[];
|
|
77
|
-
Omer: string[];
|
|
78
|
-
"day of the Omer": string[];
|
|
79
|
-
"Erev Pesach": string[];
|
|
80
|
-
"Erev Purim": string[];
|
|
81
|
-
"Erev Rosh Hashana": string[];
|
|
82
|
-
"Erev Shavuot": string[];
|
|
83
|
-
"Erev Simchat Torah": string[];
|
|
84
|
-
"Erev Sukkot": string[];
|
|
85
|
-
"Erev Tish'a B'Av": string[];
|
|
86
|
-
"Erev Yom Kippur": string[];
|
|
87
|
-
Havdalah: string[];
|
|
88
|
-
"Lag BaOmer": string[];
|
|
89
|
-
"Leil Selichot": string[];
|
|
90
|
-
Pesach: string[];
|
|
91
|
-
"Pesach I": string[];
|
|
92
|
-
"Pesach II": string[];
|
|
93
|
-
"Pesach II (CH''M)": string[];
|
|
94
|
-
"Pesach III (CH''M)": string[];
|
|
95
|
-
"Pesach IV (CH''M)": string[];
|
|
96
|
-
"Pesach Sheni": string[];
|
|
97
|
-
"Pesach V (CH''M)": string[];
|
|
98
|
-
"Pesach VI (CH''M)": string[];
|
|
99
|
-
"Pesach VII": string[];
|
|
100
|
-
"Pesach VIII": string[];
|
|
101
|
-
Purim: string[];
|
|
102
|
-
"Purim Katan": string[];
|
|
103
|
-
"Rosh Chodesh %s": string[];
|
|
104
|
-
"Rosh Chodesh": string[];
|
|
105
|
-
Adar: string[];
|
|
106
|
-
"Adar I": string[];
|
|
107
|
-
"Adar II": string[];
|
|
108
|
-
Av: string[];
|
|
109
|
-
Cheshvan: string[];
|
|
110
|
-
Elul: string[];
|
|
111
|
-
Iyyar: string[];
|
|
112
|
-
Kislev: string[];
|
|
113
|
-
Nisan: string[];
|
|
114
|
-
"Sh'vat": string[];
|
|
115
|
-
Sivan: string[];
|
|
116
|
-
Tamuz: string[];
|
|
117
|
-
Tevet: string[];
|
|
118
|
-
Tishrei: string[];
|
|
119
|
-
"Rosh Hashana": string[];
|
|
120
|
-
"Rosh Hashana I": string[];
|
|
121
|
-
"Rosh Hashana II": string[];
|
|
122
|
-
"Shabbat Chazon": string[];
|
|
123
|
-
"Shabbat HaChodesh": string[];
|
|
124
|
-
"Shabbat HaGadol": string[];
|
|
125
|
-
"Shabbat Machar Chodesh": string[];
|
|
126
|
-
"Shabbat Nachamu": string[];
|
|
127
|
-
"Shabbat Parah": string[];
|
|
128
|
-
"Shabbat Rosh Chodesh": string[];
|
|
129
|
-
"Shabbat Shekalim": string[];
|
|
130
|
-
"Shabbat Shuva": string[];
|
|
131
|
-
"Shabbat Zachor": string[];
|
|
132
|
-
Shavuot: string[];
|
|
133
|
-
"Shavuot I": string[];
|
|
134
|
-
"Shavuot II": string[];
|
|
135
|
-
"Shmini Atzeret": string[];
|
|
136
|
-
"Shushan Purim": string[];
|
|
137
|
-
Sigd: string[];
|
|
138
|
-
"Simchat Torah": string[];
|
|
139
|
-
Sukkot: string[];
|
|
140
|
-
"Sukkot I": string[];
|
|
141
|
-
"Sukkot II": string[];
|
|
142
|
-
"Sukkot II (CH''M)": string[];
|
|
143
|
-
"Sukkot III (CH''M)": string[];
|
|
144
|
-
"Sukkot IV (CH''M)": string[];
|
|
145
|
-
"Sukkot V (CH''M)": string[];
|
|
146
|
-
"Sukkot VI (CH''M)": string[];
|
|
147
|
-
"Sukkot VII (Hoshana Raba)": string[];
|
|
148
|
-
"Ta'anit Bechorot": string[];
|
|
149
|
-
"Ta'anit Esther": string[];
|
|
150
|
-
"Tish'a B'Av": string[];
|
|
151
|
-
"Tu B'Av": string[];
|
|
152
|
-
"Tu BiShvat": string[];
|
|
153
|
-
"Tu B'Shvat": string[];
|
|
154
|
-
"Tzom Gedaliah": string[];
|
|
155
|
-
"Tzom Tammuz": string[];
|
|
156
|
-
"Yom HaAtzma'ut": string[];
|
|
157
|
-
"Yom HaShoah": string[];
|
|
158
|
-
"Yom HaZikaron": string[];
|
|
159
|
-
"Yom Kippur": string[];
|
|
160
|
-
"Yom Yerushalayim": string[];
|
|
161
|
-
"Yom HaAliyah": string[];
|
|
162
|
-
"Yom HaAliyah School Observance": string[];
|
|
163
|
-
"Pesach I (on Shabbat)": string[];
|
|
164
|
-
"Pesach Chol ha-Moed Day 1": string[];
|
|
165
|
-
"Pesach Chol ha-Moed Day 2": string[];
|
|
166
|
-
"Pesach Chol ha-Moed Day 3": string[];
|
|
167
|
-
"Pesach Chol ha-Moed Day 4": string[];
|
|
168
|
-
"Pesach Chol ha-Moed Day 5": string[];
|
|
169
|
-
"Pesach Shabbat Chol ha-Moed": string[];
|
|
170
|
-
"Shavuot II (on Shabbat)": string[];
|
|
171
|
-
"Rosh Hashana I (on Shabbat)": string[];
|
|
172
|
-
"Yom Kippur (on Shabbat)": string[];
|
|
173
|
-
"Yom Kippur (Mincha, Traditional)": string[];
|
|
174
|
-
"Yom Kippur (Mincha, Alternate)": string[];
|
|
175
|
-
"Sukkot I (on Shabbat)": string[];
|
|
176
|
-
"Sukkot Chol ha-Moed Day 1": string[];
|
|
177
|
-
"Sukkot Chol ha-Moed Day 2": string[];
|
|
178
|
-
"Sukkot Chol ha-Moed Day 3": string[];
|
|
179
|
-
"Sukkot Chol ha-Moed Day 4": string[];
|
|
180
|
-
"Sukkot Chol ha-Moed Day 5": string[];
|
|
181
|
-
"Sukkot Shabbat Chol ha-Moed": string[];
|
|
182
|
-
"Sukkot Final Day (Hoshana Raba)": string[];
|
|
183
|
-
"Rosh Chodesh Adar": string[];
|
|
184
|
-
"Rosh Chodesh Adar I": string[];
|
|
185
|
-
"Rosh Chodesh Adar II": string[];
|
|
186
|
-
"Rosh Chodesh Av": string[];
|
|
187
|
-
"Rosh Chodesh Cheshvan": string[];
|
|
188
|
-
"Rosh Chodesh Elul": string[];
|
|
189
|
-
"Rosh Chodesh Iyyar": string[];
|
|
190
|
-
"Rosh Chodesh Kislev": string[];
|
|
191
|
-
"Rosh Chodesh Nisan": string[];
|
|
192
|
-
"Rosh Chodesh Sh'vat": string[];
|
|
193
|
-
"Rosh Chodesh Sivan": string[];
|
|
194
|
-
"Rosh Chodesh Tamuz": string[];
|
|
195
|
-
"Rosh Chodesh Tevet": string[];
|
|
196
|
-
min: string[];
|
|
197
|
-
"Fast begins": string[];
|
|
198
|
-
"Fast ends": string[];
|
|
199
|
-
"Rosh Hashana LaBehemot": string[];
|
|
200
|
-
"Tish'a B'Av (observed)": string[];
|
|
201
|
-
"Shabbat Mevarchim Chodesh": string[];
|
|
202
|
-
"Shabbat Shirah": string[];
|
|
203
|
-
"Chatzot HaLailah": string[];
|
|
204
|
-
"Alot haShachar": string[];
|
|
205
|
-
Misheyakir: string[];
|
|
206
|
-
"Misheyakir Machmir": string[];
|
|
207
|
-
Dawn: string[];
|
|
208
|
-
Sunrise: string[];
|
|
209
|
-
"Kriat Shema, sof zeman": string[];
|
|
210
|
-
"Tefilah, sof zeman": string[];
|
|
211
|
-
"Kriat Shema, sof zeman (MGA)": string[];
|
|
212
|
-
"Tefilah, sof zeman (MGA)": string[];
|
|
213
|
-
"Chatzot hayom": string[];
|
|
214
|
-
"Mincha Gedolah": string[];
|
|
215
|
-
"Mincha Ketanah": string[];
|
|
216
|
-
"Plag HaMincha": string[];
|
|
217
|
-
Dusk: string[];
|
|
218
|
-
Sunset: string[];
|
|
219
|
-
"Nightfall - End of ordained fasts": string[];
|
|
220
|
-
"Tzeit HaKochavim": string[];
|
|
221
|
-
Lovingkindness: string[];
|
|
222
|
-
Might: string[];
|
|
223
|
-
Beauty: string[];
|
|
224
|
-
Eternity: string[];
|
|
225
|
-
Splendor: string[];
|
|
226
|
-
Foundation: string[];
|
|
227
|
-
Majesty: string[];
|
|
228
|
-
day: string[];
|
|
229
|
-
"Chanukah Day 1": string[];
|
|
230
|
-
"Chanukah Day 2": string[];
|
|
231
|
-
"Chanukah Day 3": string[];
|
|
232
|
-
"Chanukah Day 4": string[];
|
|
233
|
-
"Chanukah Day 5": string[];
|
|
234
|
-
"Chanukah Day 6": string[];
|
|
235
|
-
"Chanukah Day 7": string[];
|
|
236
|
-
"Chanukah Day 7 (on Rosh Chodesh)": string[];
|
|
237
|
-
"Chanukah Day 8": string[];
|
|
238
|
-
"Chanukah Day 1 (on Shabbat)": string[];
|
|
239
|
-
"Chanukah Day 2 (on Shabbat)": string[];
|
|
240
|
-
"Chanukah Day 3 (on Shabbat)": string[];
|
|
241
|
-
"Chanukah Day 4 (on Shabbat)": string[];
|
|
242
|
-
"Chanukah Day 5 (on Shabbat)": string[];
|
|
243
|
-
"Chanukah Day 7 (on Shabbat)": string[];
|
|
244
|
-
"Chanukah Day 8 (on Shabbat)": string[];
|
|
245
|
-
"Shabbat Rosh Chodesh Chanukah": string[];
|
|
246
|
-
"Yom Kippur Katan": string[];
|
|
247
|
-
"Family Day": string[];
|
|
248
|
-
"Yitzhak Rabin Memorial Day": string[];
|
|
249
|
-
"Jabotinsky Day": string[];
|
|
250
|
-
"Herzl Day": string[];
|
|
251
|
-
"Ben-Gurion Day": string[];
|
|
252
|
-
"Hebrew Language Day": string[];
|
|
253
|
-
"Birkat Hachamah": string[];
|
|
254
|
-
"Shushan Purim Katan": string[];
|
|
255
|
-
"Purim Meshulash": string[];
|
|
256
|
-
"after sunset": string[];
|
|
257
|
-
Yerushalmi: string[];
|
|
258
|
-
"Chag HaBanot": string[];
|
|
259
|
-
Joshua: string[];
|
|
260
|
-
Judges: string[];
|
|
261
|
-
"I Samuel": string[];
|
|
262
|
-
"II Samuel": string[];
|
|
263
|
-
"I Kings": string[];
|
|
264
|
-
"II Kings": string[];
|
|
265
|
-
Isaiah: string[];
|
|
266
|
-
Jeremiah: string[];
|
|
267
|
-
Ezekiel: string[];
|
|
268
|
-
Hosea: string[];
|
|
269
|
-
Joel: string[];
|
|
270
|
-
Amos: string[];
|
|
271
|
-
Obadiah: string[];
|
|
272
|
-
Jonah: string[];
|
|
273
|
-
Micah: string[];
|
|
274
|
-
Nachum: string[];
|
|
275
|
-
Habakkuk: string[];
|
|
276
|
-
Zephaniah: string[];
|
|
277
|
-
Haggai: string[];
|
|
278
|
-
Zechariah: string[];
|
|
279
|
-
Malachi: string[];
|
|
280
|
-
Psalms: string[];
|
|
281
|
-
Proverbs: string[];
|
|
282
|
-
Job: string[];
|
|
283
|
-
"Song of Songs": string[];
|
|
284
|
-
Ruth: string[];
|
|
285
|
-
Lamentations: string[];
|
|
286
|
-
Ecclesiastes: string[];
|
|
287
|
-
Esther: string[];
|
|
288
|
-
Daniel: string[];
|
|
289
|
-
Ezra: string[];
|
|
290
|
-
Nehemiah: string[];
|
|
291
|
-
"I Chronicles": string[];
|
|
292
|
-
"II Chronicles": string[];
|
|
293
|
-
"Yom Kippur (Mincha)": string[];
|
|
294
|
-
"Tish'a B'Av (Mincha)": string[];
|
|
295
|
-
"Asara B'Tevet (Mincha)": string[];
|
|
296
|
-
"Ta'anit Bechorot (Mincha)": string[];
|
|
297
|
-
"Ta'anit Esther (Mincha)": string[];
|
|
298
|
-
"Tzom Gedaliah (Mincha)": string[];
|
|
299
|
-
"Tzom Tammuz (Mincha)": string[];
|
|
300
|
-
Molad: string[];
|
|
301
|
-
chalakim: string[];
|
|
302
|
-
"Pirkei Avot": string[];
|
|
303
|
-
};
|
|
304
|
-
};
|
|
305
|
-
}
|
|
306
|
-
export default _default;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|