date-holidays 3.28.0 → 3.29.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/CHANGELOG.md +12 -0
- package/LICENSE +1 -0
- package/README.md +3 -1
- package/data/countries/AT.yaml +2 -0
- package/data/countries/BZ.yaml +9 -5
- package/data/countries/DE.yaml +10 -0
- package/data/countries/JE.yaml +4 -0
- package/data/countries/KZ.yaml +154 -0
- package/data/countries/UA.yaml +18 -2
- package/data/holidays.json +220 -10
- package/data/names.yaml +2 -0
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist/umd.min.js +1 -1
- package/dist/umd.min.js.map +1 -1
- package/lib/data.cjs +220 -10
- package/package.json +10 -11
- package/src/data.js +220 -10
package/src/data.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export const data = {
|
|
2
|
-
version: '2026-05-
|
|
2
|
+
version: '2026-05-14',
|
|
3
3
|
license: 'CC-BY-SA-3',
|
|
4
4
|
holidays: {
|
|
5
5
|
AD: {
|
|
@@ -1369,7 +1369,9 @@ export const data = {
|
|
|
1369
1369
|
'05-04': {
|
|
1370
1370
|
name: {
|
|
1371
1371
|
'de-at': 'Florian'
|
|
1372
|
-
}
|
|
1372
|
+
},
|
|
1373
|
+
type: 'observance',
|
|
1374
|
+
note: 'Da der St. Florian aber in Oberösterreich eine besondere Bedeutung als Patron einhält, gilt er dort als Landesfeiertag und ist offiziell schulfrei. Für Arbeitnehmer:innen gilt er jedoch als normaler Arbeitstag.'
|
|
1373
1375
|
}
|
|
1374
1376
|
}
|
|
1375
1377
|
},
|
|
@@ -5000,9 +5002,14 @@ export const data = {
|
|
|
5000
5002
|
'01-01': {
|
|
5001
5003
|
_name: '01-01'
|
|
5002
5004
|
},
|
|
5005
|
+
'01-15 if sunday then next monday': {
|
|
5006
|
+
name: {
|
|
5007
|
+
en: 'George Price Day'
|
|
5008
|
+
}
|
|
5009
|
+
},
|
|
5003
5010
|
'03-09 if friday,saturday,sunday then next monday if tuesday,wednesday,thursday then previous monday': {
|
|
5004
5011
|
name: {
|
|
5005
|
-
en: '
|
|
5012
|
+
en: 'National Heroes and Benefactor Day'
|
|
5006
5013
|
}
|
|
5007
5014
|
},
|
|
5008
5015
|
'easter -2': {
|
|
@@ -5021,14 +5028,14 @@ export const data = {
|
|
|
5021
5028
|
'05-01 if sunday then next monday': {
|
|
5022
5029
|
_name: '05-01'
|
|
5023
5030
|
},
|
|
5024
|
-
'
|
|
5031
|
+
'08-01 if sunday then next monday': {
|
|
5025
5032
|
name: {
|
|
5026
|
-
en:
|
|
5033
|
+
en: 'Emancipation Day'
|
|
5027
5034
|
}
|
|
5028
5035
|
},
|
|
5029
5036
|
'09-10 if sunday then next monday': {
|
|
5030
5037
|
name: {
|
|
5031
|
-
en: "
|
|
5038
|
+
en: "St. George's Caye Day"
|
|
5032
5039
|
}
|
|
5033
5040
|
},
|
|
5034
5041
|
'09-21 if sunday then next monday': {
|
|
@@ -5036,7 +5043,7 @@ export const data = {
|
|
|
5036
5043
|
},
|
|
5037
5044
|
'10-12 if friday,saturday,sunday then next monday if tuesday,wednesday,thursday then previous monday': {
|
|
5038
5045
|
name: {
|
|
5039
|
-
en: '
|
|
5046
|
+
en: 'Indigenous People’s Resistance Day'
|
|
5040
5047
|
}
|
|
5041
5048
|
},
|
|
5042
5049
|
'11-19 if sunday then next monday': {
|
|
@@ -8381,7 +8388,8 @@ export const data = {
|
|
|
8381
8388
|
_name: 'easter 60'
|
|
8382
8389
|
},
|
|
8383
8390
|
'08-15': {
|
|
8384
|
-
_name: '08-15'
|
|
8391
|
+
_name: '08-15',
|
|
8392
|
+
type: 'observance'
|
|
8385
8393
|
},
|
|
8386
8394
|
'11-01': {
|
|
8387
8395
|
_name: '11-01'
|
|
@@ -8403,6 +8411,18 @@ export const data = {
|
|
|
8403
8411
|
}
|
|
8404
8412
|
}
|
|
8405
8413
|
},
|
|
8414
|
+
KATH: {
|
|
8415
|
+
names: {
|
|
8416
|
+
de: 'Überwiegend katholische Gemeinden',
|
|
8417
|
+
en: 'Predominantly catholic communities'
|
|
8418
|
+
},
|
|
8419
|
+
days: {
|
|
8420
|
+
'08-15': {
|
|
8421
|
+
_name: '08-15',
|
|
8422
|
+
type: 'public'
|
|
8423
|
+
}
|
|
8424
|
+
}
|
|
8425
|
+
},
|
|
8406
8426
|
EVANG: {
|
|
8407
8427
|
names: {
|
|
8408
8428
|
de: 'Überwiegend evangelische Gemeinden',
|
|
@@ -15018,6 +15038,11 @@ export const data = {
|
|
|
15018
15038
|
name: {
|
|
15019
15039
|
en: 'Liberation Day'
|
|
15020
15040
|
}
|
|
15041
|
+
},
|
|
15042
|
+
'1st monday before 09-01': {
|
|
15043
|
+
name: {
|
|
15044
|
+
en: 'Summer Bank Holiday'
|
|
15045
|
+
}
|
|
15021
15046
|
}
|
|
15022
15047
|
}
|
|
15023
15048
|
},
|
|
@@ -16040,6 +16065,167 @@ export const data = {
|
|
|
16040
16065
|
}
|
|
16041
16066
|
}
|
|
16042
16067
|
},
|
|
16068
|
+
KZ: {
|
|
16069
|
+
names: {
|
|
16070
|
+
kk: 'Қазақстан',
|
|
16071
|
+
ru: 'Казахстан',
|
|
16072
|
+
en: 'Kazakhstan'
|
|
16073
|
+
},
|
|
16074
|
+
dayoff: 'sunday',
|
|
16075
|
+
langs: [
|
|
16076
|
+
'kk',
|
|
16077
|
+
'ru'
|
|
16078
|
+
],
|
|
16079
|
+
zones: [
|
|
16080
|
+
'Asia/Almaty',
|
|
16081
|
+
'Asia/Qyzylorda',
|
|
16082
|
+
'Asia/Aqtobe',
|
|
16083
|
+
'Asia/Aqtau',
|
|
16084
|
+
'Asia/Atyrau',
|
|
16085
|
+
'Asia/Oral'
|
|
16086
|
+
],
|
|
16087
|
+
days: {
|
|
16088
|
+
'01-01 and if saturday then next monday if sunday then next tuesday': {
|
|
16089
|
+
substitute: true,
|
|
16090
|
+
_name: '01-01'
|
|
16091
|
+
},
|
|
16092
|
+
'01-02 and if saturday then next monday if sunday then next tuesday': {
|
|
16093
|
+
substitute: true,
|
|
16094
|
+
_name: '01-01'
|
|
16095
|
+
},
|
|
16096
|
+
'01-07': {
|
|
16097
|
+
name: {
|
|
16098
|
+
kk: 'Рождество Христово',
|
|
16099
|
+
ru: 'Рождество Христово',
|
|
16100
|
+
en: 'Orthodox Christmas'
|
|
16101
|
+
}
|
|
16102
|
+
},
|
|
16103
|
+
'03-08 and if saturday,sunday then next monday': {
|
|
16104
|
+
substitute: true,
|
|
16105
|
+
_name: '03-08'
|
|
16106
|
+
},
|
|
16107
|
+
'03-15 and if saturday,sunday then next monday since 2026': {
|
|
16108
|
+
substitute: true,
|
|
16109
|
+
name: {
|
|
16110
|
+
kk: 'Конституция күні',
|
|
16111
|
+
ru: 'День Конституции',
|
|
16112
|
+
en: 'Constitution Day'
|
|
16113
|
+
}
|
|
16114
|
+
},
|
|
16115
|
+
'03-21 and if saturday then next monday if sunday then next tuesday': {
|
|
16116
|
+
substitute: true,
|
|
16117
|
+
name: {
|
|
16118
|
+
kk: 'Наурыз мейрамы',
|
|
16119
|
+
ru: 'Наурыз мейрамы',
|
|
16120
|
+
en: 'Nauryz'
|
|
16121
|
+
}
|
|
16122
|
+
},
|
|
16123
|
+
'03-22 and if saturday then next monday if sunday then next tuesday': {
|
|
16124
|
+
substitute: true,
|
|
16125
|
+
name: {
|
|
16126
|
+
kk: 'Наурыз мейрамы',
|
|
16127
|
+
ru: 'Наурыз мейрамы',
|
|
16128
|
+
en: 'Nauryz'
|
|
16129
|
+
}
|
|
16130
|
+
},
|
|
16131
|
+
'03-23 and if saturday then next monday if sunday then next tuesday': {
|
|
16132
|
+
substitute: true,
|
|
16133
|
+
name: {
|
|
16134
|
+
kk: 'Наурыз мейрамы',
|
|
16135
|
+
ru: 'Наурыз мейрамы',
|
|
16136
|
+
en: 'Nauryz'
|
|
16137
|
+
}
|
|
16138
|
+
},
|
|
16139
|
+
'05-01 and if saturday,sunday then next monday': {
|
|
16140
|
+
substitute: true,
|
|
16141
|
+
name: {
|
|
16142
|
+
kk: 'Қазақстан халқының бірлігі күні',
|
|
16143
|
+
ru: 'День единства народа Казахстана',
|
|
16144
|
+
en: "People's Unity Day"
|
|
16145
|
+
}
|
|
16146
|
+
},
|
|
16147
|
+
'05-07 and if saturday,sunday then next monday since 2013': {
|
|
16148
|
+
substitute: true,
|
|
16149
|
+
name: {
|
|
16150
|
+
kk: 'Отан Қорғаушы күні',
|
|
16151
|
+
ru: 'День Защитника Отечества',
|
|
16152
|
+
en: 'Defender of the Fatherland Day'
|
|
16153
|
+
}
|
|
16154
|
+
},
|
|
16155
|
+
'05-09 and if saturday,sunday then next monday': {
|
|
16156
|
+
substitute: true,
|
|
16157
|
+
name: {
|
|
16158
|
+
kk: 'Жеңіс күні',
|
|
16159
|
+
ru: 'День Победы',
|
|
16160
|
+
en: 'Victory Day'
|
|
16161
|
+
}
|
|
16162
|
+
},
|
|
16163
|
+
'07-06 and if saturday,sunday then next monday': {
|
|
16164
|
+
substitute: true,
|
|
16165
|
+
name: {
|
|
16166
|
+
kk: 'Астана күні',
|
|
16167
|
+
ru: 'День столицы',
|
|
16168
|
+
en: 'Capital City Day'
|
|
16169
|
+
}
|
|
16170
|
+
},
|
|
16171
|
+
'08-30 and if saturday,sunday then next monday prior to 2026': {
|
|
16172
|
+
substitute: true,
|
|
16173
|
+
name: {
|
|
16174
|
+
kk: 'Конституция күні',
|
|
16175
|
+
ru: 'День Конституции',
|
|
16176
|
+
en: 'Constitution Day'
|
|
16177
|
+
}
|
|
16178
|
+
},
|
|
16179
|
+
'10-25 and if saturday,sunday then next monday': {
|
|
16180
|
+
substitute: true,
|
|
16181
|
+
name: {
|
|
16182
|
+
kk: 'Республика күні',
|
|
16183
|
+
ru: 'День Республики',
|
|
16184
|
+
en: 'Republic Day'
|
|
16185
|
+
},
|
|
16186
|
+
active: [
|
|
16187
|
+
{
|
|
16188
|
+
from: '1995-01-01',
|
|
16189
|
+
to: '2009-12-31'
|
|
16190
|
+
},
|
|
16191
|
+
{
|
|
16192
|
+
from: '2022-01-01'
|
|
16193
|
+
}
|
|
16194
|
+
]
|
|
16195
|
+
},
|
|
16196
|
+
'12-01 and if saturday,sunday then next monday since 2012 and prior to 2022': {
|
|
16197
|
+
substitute: true,
|
|
16198
|
+
name: {
|
|
16199
|
+
kk: 'Тұңғыш Президент күні',
|
|
16200
|
+
ru: 'День Первого Президента',
|
|
16201
|
+
en: "First President's Day"
|
|
16202
|
+
}
|
|
16203
|
+
},
|
|
16204
|
+
'12-16 and if saturday then next monday if sunday then next tuesday': {
|
|
16205
|
+
substitute: true,
|
|
16206
|
+
name: {
|
|
16207
|
+
kk: 'Тәуелсіздік күні',
|
|
16208
|
+
ru: 'День независимости',
|
|
16209
|
+
en: 'Independence Day'
|
|
16210
|
+
}
|
|
16211
|
+
},
|
|
16212
|
+
'12-17 and if saturday then next monday if sunday then next tuesday prior to 2022': {
|
|
16213
|
+
substitute: true,
|
|
16214
|
+
name: {
|
|
16215
|
+
kk: 'Тәуелсіздік күні',
|
|
16216
|
+
ru: 'День независимости',
|
|
16217
|
+
en: 'Independence Day'
|
|
16218
|
+
}
|
|
16219
|
+
},
|
|
16220
|
+
'10 Dhu al-Hijjah': {
|
|
16221
|
+
name: {
|
|
16222
|
+
kk: 'Құрбан айт',
|
|
16223
|
+
ru: 'Курбан-айт',
|
|
16224
|
+
en: 'Eid al-Adha'
|
|
16225
|
+
}
|
|
16226
|
+
}
|
|
16227
|
+
}
|
|
16228
|
+
},
|
|
16043
16229
|
LC: {
|
|
16044
16230
|
names: {
|
|
16045
16231
|
en: 'St. Lucia'
|
|
@@ -25388,12 +25574,34 @@ export const data = {
|
|
|
25388
25574
|
'03-08 and if saturday, sunday then next monday': {
|
|
25389
25575
|
_name: '03-08'
|
|
25390
25576
|
},
|
|
25391
|
-
'orthodox and if sunday then next monday': {
|
|
25577
|
+
'orthodox and if sunday then next monday since 1995 and prior to 1998': {
|
|
25578
|
+
_name: 'orthodox',
|
|
25579
|
+
substitute: true
|
|
25580
|
+
},
|
|
25581
|
+
'orthodox since 1991 and prior to 1995': {
|
|
25392
25582
|
_name: 'orthodox'
|
|
25393
25583
|
},
|
|
25394
|
-
'orthodox
|
|
25584
|
+
'orthodox since 1998 and prior to 2000': {
|
|
25585
|
+
_name: 'orthodox'
|
|
25586
|
+
},
|
|
25587
|
+
'orthodox and if sunday then next monday since 2000': {
|
|
25588
|
+
_name: 'orthodox',
|
|
25589
|
+
substitute: true
|
|
25590
|
+
},
|
|
25591
|
+
'orthodox 49 and if sunday then next monday since 1995 and prior to 1998': {
|
|
25592
|
+
_name: 'easter 49',
|
|
25593
|
+
substitute: true
|
|
25594
|
+
},
|
|
25595
|
+
'orthodox 49 since 1991 and prior to 1995': {
|
|
25596
|
+
_name: 'easter 49'
|
|
25597
|
+
},
|
|
25598
|
+
'orthodox 49 since 1998 and prior to 2000': {
|
|
25395
25599
|
_name: 'easter 49'
|
|
25396
25600
|
},
|
|
25601
|
+
'orthodox 49 and if sunday then next monday since 2000': {
|
|
25602
|
+
_name: 'easter 49',
|
|
25603
|
+
substitute: true
|
|
25604
|
+
},
|
|
25397
25605
|
'05-01 and if saturday, sunday then next tuesday': {
|
|
25398
25606
|
_name: '05-01',
|
|
25399
25607
|
substitute: true
|
|
@@ -28462,6 +28670,7 @@ export const data = {
|
|
|
28462
28670
|
it: 'Capodanno',
|
|
28463
28671
|
is: 'Nýársdagur',
|
|
28464
28672
|
jp: '元日',
|
|
28673
|
+
kk: 'Жаңа жыл',
|
|
28465
28674
|
kl: 'ukiortaaq',
|
|
28466
28675
|
ko: '신정',
|
|
28467
28676
|
lb: 'Neijoerschdag',
|
|
@@ -28553,6 +28762,7 @@ export const data = {
|
|
|
28553
28762
|
ge: 'ქალთა საერთაშორისო დღე',
|
|
28554
28763
|
hu: 'Nemzetközi nőnap',
|
|
28555
28764
|
hy: 'Կանանց տոն',
|
|
28765
|
+
kk: 'Халықаралық әйелдер күні',
|
|
28556
28766
|
lb: 'Internationale Fraendag',
|
|
28557
28767
|
nl: 'Internationale Vrouwendag',
|
|
28558
28768
|
no: 'Kvinnedagen',
|