date-holidays 3.12.2 → 3.14.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/CHANGELOG.md +26 -0
- package/LICENSE +1 -0
- package/README.md +9 -2
- package/data/countries/AS.yaml +2 -0
- package/data/countries/AU.yaml +6 -0
- package/data/countries/GB.yaml +6 -3
- package/data/countries/GR.yaml +2 -0
- package/data/countries/GU.yaml +2 -0
- package/data/countries/IE.yaml +3 -0
- package/data/countries/IL.yaml +210 -0
- package/data/countries/NZ.yaml +185 -13
- package/data/countries/PR.yaml +2 -0
- package/data/countries/SE.yaml +8 -5
- package/data/countries/US.yaml +4 -0
- package/data/countries/VI.yaml +2 -0
- package/data/holidays.json +601 -32
- package/data/names.yaml +3 -2
- 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 +601 -32
- package/package.json +14 -10
- package/src/data.js +601 -32
package/data/countries/SE.yaml
CHANGED
|
@@ -13,9 +13,10 @@ holidays:
|
|
|
13
13
|
days:
|
|
14
14
|
01-01:
|
|
15
15
|
_name: 01-01
|
|
16
|
-
01-05:
|
|
16
|
+
01-05 12:00:
|
|
17
17
|
name:
|
|
18
18
|
sv: Trettondagsafton
|
|
19
|
+
type: optional
|
|
19
20
|
01-06:
|
|
20
21
|
_name: 01-06
|
|
21
22
|
01-13:
|
|
@@ -31,11 +32,11 @@ holidays:
|
|
|
31
32
|
sv: Marie Bebådelsedag
|
|
32
33
|
lat: Annuntiatio Mariæ
|
|
33
34
|
type: observance
|
|
34
|
-
04-30:
|
|
35
|
+
04-30 12:00:
|
|
35
36
|
name:
|
|
36
37
|
sv: Valborgsmässoafton
|
|
37
38
|
en: Walpurgis Night
|
|
38
|
-
type:
|
|
39
|
+
type: optional
|
|
39
40
|
easter -3:
|
|
40
41
|
_name: easter -3
|
|
41
42
|
type: observance
|
|
@@ -46,6 +47,7 @@ holidays:
|
|
|
46
47
|
type: observance
|
|
47
48
|
easter -1:
|
|
48
49
|
_name: easter -1
|
|
50
|
+
type: observance
|
|
49
51
|
easter 1:
|
|
50
52
|
_name: easter 1
|
|
51
53
|
05-01:
|
|
@@ -56,6 +58,7 @@ holidays:
|
|
|
56
58
|
name:
|
|
57
59
|
sv: Pingstafton
|
|
58
60
|
en: Whitsun Eve
|
|
61
|
+
type: observance
|
|
59
62
|
easter 49:
|
|
60
63
|
_name: easter 49
|
|
61
64
|
type: public
|
|
@@ -80,11 +83,11 @@ holidays:
|
|
|
80
83
|
sv: Midsommardagen
|
|
81
84
|
en: Midsummer Day
|
|
82
85
|
fi: Juhannuspäivä
|
|
83
|
-
friday after 10-30:
|
|
86
|
+
friday after 10-30 12:00:
|
|
84
87
|
name:
|
|
85
88
|
sv: Allhelgonaafton
|
|
86
89
|
en: Halloween
|
|
87
|
-
type:
|
|
90
|
+
type: optional
|
|
88
91
|
saturday after 10-31:
|
|
89
92
|
_name: 11-01
|
|
90
93
|
11-06:
|
package/data/countries/US.yaml
CHANGED