date-holidays 3.23.13 → 3.23.14

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/lib/data.cjs CHANGED
@@ -3,7 +3,7 @@
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  const data = {
6
- "version": "2024-11-26",
6
+ "version": "2024-12-12",
7
7
  "license": "CC-BY-SA-3",
8
8
  "holidays": {
9
9
  "AD": {
@@ -13274,12 +13274,39 @@ const data = {
13274
13274
  }
13275
13275
  },
13276
13276
  "32": {
13277
- "name": "Südtirol, Alto Adige",
13277
+ "names": {
13278
+ "de": "Südtirol",
13279
+ "it": "Alto Adige"
13280
+ },
13278
13281
  "days": {
13279
13282
  "easter 50": {
13280
13283
  "_name": "easter 50"
13281
13284
  }
13282
13285
  }
13286
+ },
13287
+ "52": {
13288
+ "names": {
13289
+ "it": "Toscana",
13290
+ "en": "Tuscany"
13291
+ },
13292
+ "regions": {
13293
+ "FI": {
13294
+ "names": {
13295
+ "it": "Firenze",
13296
+ "en": "Florence"
13297
+ },
13298
+ "days": {
13299
+ "06-24": {
13300
+ "name": {
13301
+ "it": "San Giovanni",
13302
+ "en": "Saint John"
13303
+ },
13304
+ "type": "optional",
13305
+ "note": "patron saint of Florence"
13306
+ }
13307
+ }
13308
+ }
13309
+ }
13283
13310
  }
13284
13311
  }
13285
13312
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "date-holidays",
3
- "version": "3.23.13",
3
+ "version": "3.23.14",
4
4
  "description": "worldwide holidays",
5
5
  "keywords": [
6
6
  "holidays",
@@ -203,13 +203,13 @@
203
203
  "reporter": "dot"
204
204
  },
205
205
  "dependencies": {
206
- "date-holidays-parser": "^3.4.4",
206
+ "date-holidays-parser": "^3.4.6",
207
207
  "js-yaml": "^4.1.0",
208
208
  "lodash": "^4.17.21",
209
209
  "prepin": "^1.0.3"
210
210
  },
211
211
  "devDependencies": {
212
- "@babel/cli": "^7.25.9",
212
+ "@babel/cli": "^7.26.4",
213
213
  "@babel/core": "^7.26.0",
214
214
  "@babel/polyfill": "^7.12.1",
215
215
  "@babel/preset-env": "^7.26.0",
@@ -233,7 +233,7 @@
233
233
  "rollup": "^2.79.2",
234
234
  "typescript": "^5.7.2",
235
235
  "watch-run": "^1.2.5",
236
- "webpack": "^5.96.1",
236
+ "webpack": "^5.97.1",
237
237
  "webpack-bundle-analyzer": "^4.10.2",
238
238
  "webpack-cli": "^5.1.4"
239
239
  },
package/src/data.js CHANGED
@@ -1,5 +1,5 @@
1
1
  export const data = {
2
- version: '2024-11-26',
2
+ version: '2024-12-12',
3
3
  license: 'CC-BY-SA-3',
4
4
  holidays: {
5
5
  AD: {
@@ -13270,12 +13270,39 @@ export const data = {
13270
13270
  }
13271
13271
  },
13272
13272
  32: {
13273
- name: 'Südtirol, Alto Adige',
13273
+ names: {
13274
+ de: 'Südtirol',
13275
+ it: 'Alto Adige'
13276
+ },
13274
13277
  days: {
13275
13278
  'easter 50': {
13276
13279
  _name: 'easter 50'
13277
13280
  }
13278
13281
  }
13282
+ },
13283
+ 52: {
13284
+ names: {
13285
+ it: 'Toscana',
13286
+ en: 'Tuscany'
13287
+ },
13288
+ regions: {
13289
+ FI: {
13290
+ names: {
13291
+ it: 'Firenze',
13292
+ en: 'Florence'
13293
+ },
13294
+ days: {
13295
+ '06-24': {
13296
+ name: {
13297
+ it: 'San Giovanni',
13298
+ en: 'Saint John'
13299
+ },
13300
+ type: 'optional',
13301
+ note: 'patron saint of Florence'
13302
+ }
13303
+ }
13304
+ }
13305
+ }
13279
13306
  }
13280
13307
  }
13281
13308
  },