diff --git a/CHANGELOG.md b/CHANGELOG.md index b79d90655..ec01f8de6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ * Change `Repeatable field` focus behaviour. Refs STCOM-1341. * Fix `` bug with option list closing when scrollbar is used. Refs STCOM-1371. * `` - fix bug handling empty string options/values. Refs STCOM-1373. +* Include Kosovo in the countries list. Refs STCOM-1354. * `` - switch to MutationObserver to resolve focus-management issues. Refs STCOM-1372. ## [12.2.0](https://github.com/folio-org/stripes-components/tree/v12.2.0) (2024-10-11) diff --git a/translations/stripes-components/en.json b/translations/stripes-components/en.json index b4b167642..f17fbb612 100644 --- a/translations/stripes-components/en.json +++ b/translations/stripes-components/en.json @@ -247,6 +247,7 @@ "countries.KE": "Kenya", "countries.KI": "Kiribati", "countries.KR": "Korea", + "countries.XK": "Kosovo", "countries.KW": "Kuwait", "countries.KG": "Kyrgyzstan", "countries.LA": "Lao People\\'s Democratic Republic", diff --git a/util/countries.js b/util/countries.js index 5552faa22..2830d8a9f 100644 --- a/util/countries.js +++ b/util/countries.js @@ -242,6 +242,7 @@ const countries = [ { alpha2: 'VN', alpha3: 'VNM', numeric: '704' }, { alpha2: 'VI', alpha3: 'VIR', numeric: '850' }, { alpha2: 'WF', alpha3: 'WLF', numeric: '876' }, + { alpha2: 'XK', alpha3: 'XXK', numeric: '926' }, { alpha2: 'EH', alpha3: 'ESH', numeric: '732' }, { alpha2: 'YE', alpha3: 'YEM', numeric: '887' }, { alpha2: 'ZM', alpha3: 'ZMB', numeric: '894' },