@bigbinary/neeto-time-zones 0.5.1 → 0.5.3

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.
@@ -1633,30 +1633,6 @@ function z(n2, t2) {
1633
1633
  function B(n2, t2) {
1634
1634
  return "function" == typeof t2 ? t2(n2) : t2;
1635
1635
  }
1636
- const getFromLocalStorage = (key) => {
1637
- let response = null;
1638
- try {
1639
- const value = localStorage.getItem(key);
1640
- response = value !== null ? JSON.parse(value) : null;
1641
- } catch (error) {
1642
- response = null;
1643
- }
1644
- return response;
1645
- };
1646
- const setToLocalStorage = (key, value) => {
1647
- if (value !== null) {
1648
- localStorage.setItem(key, JSON.stringify(value));
1649
- } else
1650
- localStorage.removeItem(key);
1651
- };
1652
- const hyphenize = (value, fallbackString = "") => {
1653
- if (typeof value === "number")
1654
- return String(value);
1655
- if (value && typeof value === "string" && value.replace) {
1656
- return value.replace(/[\s_]/g, "-").replace(/([a-z])([A-Z])/g, "$1-$2").replace(/-+/g, "-").toLowerCase();
1657
- }
1658
- return fallbackString;
1659
- };
1660
1636
  function Button$1({
1661
1637
  children,
1662
1638
  customClass = "",
@@ -1665,7 +1641,8 @@ function Button$1({
1665
1641
  key = "",
1666
1642
  timezone,
1667
1643
  onClick,
1668
- is24H
1644
+ is24H,
1645
+ dataCy
1669
1646
  }) {
1670
1647
  const {
1671
1648
  label,
@@ -1692,7 +1669,7 @@ function Button$1({
1692
1669
  {
1693
1670
  ...{ id, key, onClick, value },
1694
1671
  className: `flex items-center gap-2 py-2 text-md ${customClass}`,
1695
- "data-cy": `${hyphenize(label)}-select-option`,
1672
+ "data-cy": dataCy,
1696
1673
  type: "button"
1697
1674
  },
1698
1675
  /* @__PURE__ */ y("div", { className: "flex min-w-0 space-x-1 text-left break-words grow" }, hideCitiesTooltip ? label : /* @__PURE__ */ y("span", { ...{ value }, title: cities }, label), isDst && /* @__PURE__ */ y("span", { ...{ value }, title: "Daylight savings time applicable" }, "🌞")),
@@ -1714,19 +1691,20 @@ function Button({
1714
1691
  };
1715
1692
  const searchBoxElementId = `${elementId}-search-box`;
1716
1693
  p(() => {
1717
- if (isOverlayVisible) {
1718
- const searchBox = document.getElementById(searchBoxElementId);
1719
- searchBox.focus();
1720
- }
1694
+ if (!isOverlayVisible)
1695
+ return;
1696
+ const searchBox = document.getElementById(searchBoxElementId);
1697
+ searchBox.focus();
1721
1698
  }, [isOverlayVisible]);
1722
1699
  return /* @__PURE__ */ y("div", { className: "flex flex-col justify-between w-full neeto-ui-text-gray-700 neeto-ui-bg-white neeto-ui-rounded" }, /* @__PURE__ */ y(
1723
1700
  Button$1,
1724
1701
  {
1702
+ ...{ is24H },
1725
1703
  onClick: handleClick,
1726
1704
  customClass: "px-4 ntsp-button-border",
1727
1705
  timezone: selectedValue,
1728
1706
  hideCitiesTooltip: true,
1729
- ...{ is24H }
1707
+ dataCy: `${elementId}-select-button`
1730
1708
  },
1731
1709
  /* @__PURE__ */ y("span", { className: "flex items-center shrink-0" }, /* @__PURE__ */ y(
1732
1710
  "svg",
@@ -1743,19 +1721,43 @@ function Button({
1743
1721
  }
1744
1722
  function Search({ searchInput, setSearchInput, elementId }) {
1745
1723
  const searchBoxElementId = `${elementId}-search-box`;
1746
- return /* @__PURE__ */ y(
1724
+ return /* @__PURE__ */ y("div", { className: "neeto-ui-input__wrapper" }, /* @__PURE__ */ y("div", { className: "neeto-ui-input neeto-ui-input--large" }, /* @__PURE__ */ y(
1747
1725
  "input",
1748
1726
  {
1749
1727
  id: searchBoxElementId,
1750
1728
  type: "text",
1751
1729
  placeholder: "Search",
1752
1730
  onInput: (event) => setSearchInput(event.target.value),
1753
- className: "p-2 m-2 border-2 border-blue-400 outline-none neeto-ui-rounded neeto-ui-shadow-lg",
1731
+ className: "",
1754
1732
  value: searchInput,
1755
- dataCy: `${elementId}-search-box`
1733
+ "data-cy": `${elementId}-search-box`
1756
1734
  }
1757
- );
1735
+ )));
1758
1736
  }
1737
+ const getFromLocalStorage = (key) => {
1738
+ let response = null;
1739
+ try {
1740
+ const value = localStorage.getItem(key);
1741
+ response = value !== null ? JSON.parse(value) : null;
1742
+ } catch (error) {
1743
+ response = null;
1744
+ }
1745
+ return response;
1746
+ };
1747
+ const setToLocalStorage = (key, value) => {
1748
+ if (value !== null) {
1749
+ localStorage.setItem(key, JSON.stringify(value));
1750
+ } else
1751
+ localStorage.removeItem(key);
1752
+ };
1753
+ const hyphenize = (value, fallbackString = "") => {
1754
+ if (typeof value === "number")
1755
+ return String(value);
1756
+ if (value && typeof value === "string" && value.replace) {
1757
+ return value.replace(/[\s_]/g, "-").replace(/([a-z])([A-Z])/g, "$1-$2").replace(/-+/g, "-").toLowerCase();
1758
+ }
1759
+ return fallbackString;
1760
+ };
1759
1761
  const groupedOptions = [
1760
1762
  { "US/Canada": UsCanada },
1761
1763
  { America },
@@ -1780,17 +1782,28 @@ const findBrowserTimezone = () => {
1780
1782
  };
1781
1783
  const getDefaultValue = findBrowserTimezone() || allTimezones[0];
1782
1784
  const valueToId = (value) => `option-${value.replaceAll(" ", "_").toLowerCase()}`;
1785
+ const getDataCy = (timezone) => {
1786
+ if (!timezone || !timezone.label) {
1787
+ return "";
1788
+ }
1789
+ let { label } = timezone;
1790
+ if (timezone.isDst) {
1791
+ label += "-dst";
1792
+ }
1793
+ return `${hyphenize(label)}-select-option`;
1794
+ };
1783
1795
  const createGroupedOptionButton = (group, selectedValue, handleSelect, is24H) => /* @__PURE__ */ y("div", null, group.map((groupItem) => {
1784
1796
  const key = Object.keys(groupItem)[0];
1785
1797
  const element = groupItem[key];
1786
- return /* @__PURE__ */ y("div", { className: "flex flex-col px-2 py-1", key: key.toLowerCase() }, /* @__PURE__ */ y("span", { className: "pb-1 font-bold uppercase text-md" }, key), element.map((timezone) => /* @__PURE__ */ y(
1798
+ return /* @__PURE__ */ y("div", { className: "flex flex-col px-2 py-1 gap-1", key: key.toLowerCase() }, /* @__PURE__ */ y("span", { className: "pb-1 font-bold uppercase text-md" }, key), element.map((timezone) => /* @__PURE__ */ y(
1787
1799
  Button$1,
1788
1800
  {
1801
+ ...{ is24H, timezone },
1789
1802
  id: valueToId(timezone.keywords),
1790
1803
  onClick: handleSelect,
1791
- customClass: `px-2 hover:bg-slate-100 ${selectedValue.keywords === timezone.keywords ? "bg-blue-300" : ""}`,
1804
+ customClass: `px-2 ntsp-list-item neeto-ui-rounded cursor-pointer select-none ${selectedValue.keywords === timezone.keywords ? "ntsp-list-item--active" : ""}`,
1792
1805
  key: timezone.label,
1793
- ...{ is24H, timezone }
1806
+ dataCy: getDataCy(timezone)
1794
1807
  }
1795
1808
  )));
1796
1809
  }));
@@ -3114,28 +3127,41 @@ function Options({
3114
3127
  const handleSelect = (e2) => {
3115
3128
  var _a, _b, _c, _d, _e, _f;
3116
3129
  const targetValue = ((_a = e2 == null ? void 0 : e2.target) == null ? void 0 : _a.value) || ((_c = (_b = e2 == null ? void 0 : e2.target) == null ? void 0 : _b.parentNode) == null ? void 0 : _c.value) || ((_f = (_e = (_d = e2 == null ? void 0 : e2.target) == null ? void 0 : _d.parentNode) == null ? void 0 : _e.parentNode) == null ? void 0 : _f.value);
3117
- const selectedTimezone = allTimezones.find((timezone) => (timezone == null ? void 0 : timezone.keywords) === targetValue);
3130
+ const selectedTimezone = allTimezones.find(
3131
+ (timezone) => (timezone == null ? void 0 : timezone.keywords) === targetValue
3132
+ );
3118
3133
  setIsOverlayVisible(false);
3119
3134
  setSelectedValue(selectedTimezone);
3120
3135
  };
3121
3136
  p(() => {
3122
- const selectedElement = document.getElementById(valueToId(selectedValue == null ? void 0 : selectedValue.keywords));
3137
+ const selectedElement = document.getElementById(
3138
+ valueToId(selectedValue == null ? void 0 : selectedValue.keywords)
3139
+ );
3123
3140
  selectedElement.scrollIntoView({ behavior: "auto", block: "center" });
3124
3141
  }, []);
3125
3142
  p(() => {
3126
3143
  if (searchInput === "")
3127
3144
  return;
3128
- const overflowContainer = document.getElementById(`${elementId}-ntsp-overflow-container`);
3145
+ const overflowContainer = document.getElementById(
3146
+ `${elementId}-ntsp-overflow-container`
3147
+ );
3129
3148
  if (overflowContainer) {
3130
3149
  overflowContainer.scrollTop = 0;
3131
3150
  }
3132
3151
  }, [searchInput]);
3133
- return /* @__PURE__ */ y("div", { className: "pt-2 overflow-y-scroll h-80", id: `${elementId}-ntsp-overflow-container` }, /* @__PURE__ */ y("div", { className: "flex flex-col" }, createGroupedOptionButton(
3134
- filterTimezones(searchInput),
3135
- selectedValue,
3136
- handleSelect,
3137
- is24H
3138
- )));
3152
+ return /* @__PURE__ */ y(
3153
+ "div",
3154
+ {
3155
+ className: "pt-2 overflow-y-scroll h-80 ntsp-dropdown-wrapper__body",
3156
+ id: `${elementId}-ntsp-overflow-container`
3157
+ },
3158
+ /* @__PURE__ */ y("div", { className: "flex flex-col" }, createGroupedOptionButton(
3159
+ filterTimezones(searchInput),
3160
+ selectedValue,
3161
+ handleSelect,
3162
+ is24H
3163
+ ))
3164
+ );
3139
3165
  }
3140
3166
  function Switch({
3141
3167
  id = "ntsp-switch",
@@ -3154,13 +3180,13 @@ function Switch({
3154
3180
  return /* @__PURE__ */ y("label", { htmlFor: id, className: "flex items-center space-x-1 cursor-pointer" }, /* @__PURE__ */ y("span", { className: `ml-3 text-sm neeto-ui-text-gray-700 ${labelLeftBold}` }, labelLeft), /* @__PURE__ */ y("span", { className: "relative" }, /* @__PURE__ */ y(
3155
3181
  "input",
3156
3182
  {
3157
- type: "checkbox",
3158
3183
  ...{ id },
3184
+ type: "checkbox",
3159
3185
  className: "sr-only",
3160
3186
  checked: isChecked,
3161
3187
  onChange: handleChange
3162
3188
  }
3163
- ), /* @__PURE__ */ y("span", { className: "block w-10 h-6 neeto-ui-bg-gray-600 neeto-ui-rounded-full" }), /* @__PURE__ */ y("span", { className: "absolute w-4 h-4 transition neeto-ui-bg-white neeto-ui-rounded-full dot left-1 top-1" })), /* @__PURE__ */ y("span", { className: `ml-3 text-sm neeto-ui-text-gray-700 ${labelRightBold}` }, labelRight));
3189
+ ), /* @__PURE__ */ y("span", { className: "block w-10 h-6 neeto-ui-bg-primary-500 neeto-ui-rounded-full" }), /* @__PURE__ */ y("span", { className: "absolute w-4 h-4 transition neeto-ui-bg-white neeto-ui-rounded-full dot left-1 top-1" })), /* @__PURE__ */ y("span", { className: `ml-3 text-sm neeto-ui-text-gray-700 ${labelRightBold}` }, labelRight));
3164
3190
  }
3165
3191
  function OptionsContainer({
3166
3192
  className,
@@ -3179,10 +3205,17 @@ function OptionsContainer({
3179
3205
  return /* @__PURE__ */ y(
3180
3206
  "div",
3181
3207
  {
3182
- className: `w-full px-2 py-4 flex flex-col neeto-ui-text-gray-700 neeto-ui-bg-white border neeto-ui-border-gray-300 neeto-ui-rounded shadow h-80 ${className}`
3208
+ className: `w-full flex flex-col neeto-ui-bg-white neeto-ui-shadow-sm border neeto-ui-border-gray-200 rounded-lg ${className}`
3183
3209
  },
3184
- /* @__PURE__ */ y(Search, { ...{ elementId, searchInput, setSearchInput } }),
3185
- /* @__PURE__ */ y("div", { className: "flex items-center justify-between w-full pb-2 pr-4 mb-1 neeto-ui-shadow-sm gap-x-4" }, /* @__PURE__ */ y("span", null), /* @__PURE__ */ y(Switch, { defaultValue: is24H, labelRight: "24H", labelLeft: "AM/PM", onChange: handleTimeFormatChange })),
3210
+ /* @__PURE__ */ y("div", { className: "w-full flex flex-col gap-2 p-2 border-b neeto-ui-border-gray-200 ntsp-dropdown-wrapper__header" }, /* @__PURE__ */ y(Search, { ...{ elementId, searchInput, setSearchInput } }), /* @__PURE__ */ y("div", { className: "w-full flex justify-end" }, /* @__PURE__ */ y(
3211
+ Switch,
3212
+ {
3213
+ defaultValue: is24H,
3214
+ labelRight: "24H",
3215
+ labelLeft: "AM/PM",
3216
+ onChange: handleTimeFormatChange
3217
+ }
3218
+ ))),
3186
3219
  /* @__PURE__ */ y(
3187
3220
  Options,
3188
3221
  {
@@ -3214,7 +3247,9 @@ function Selector({
3214
3247
  getTimezoneObject(initialValue) || getDefaultValue
3215
3248
  );
3216
3249
  const [isOverlayVisible, setIsOverlayVisible] = h(false);
3217
- const [is24H, setIs24H] = h(getFromLocalStorage("ntsp-24-hr-time-format") || false);
3250
+ const [is24H, setIs24H] = h(
3251
+ getFromLocalStorage("ntsp-24-hr-time-format") || false
3252
+ );
3218
3253
  const top = position === "top";
3219
3254
  p(() => {
3220
3255
  const handleOutsideClick = (e2) => {
@@ -3239,27 +3274,31 @@ function Selector({
3239
3274
  const timeZone = getTimezoneObject(initialValue) || getDefaultValue;
3240
3275
  setSelectedValue(timeZone);
3241
3276
  }, [initialValue]);
3242
- return /* @__PURE__ */ y("div", { className: "ntsp", id: elementId }, /* @__PURE__ */ y(
3243
- "div",
3277
+ return /* @__PURE__ */ y("div", { className: "ntsp", id: elementId }, /* @__PURE__ */ y("div", { className: `flex flex-col relative ${className}` }, /* @__PURE__ */ y(
3278
+ Button,
3244
3279
  {
3245
- className: `flex flex-col relative ${className}`
3246
- },
3247
- /* @__PURE__ */ y(Button, { ...{ elementId, is24H, isOverlayVisible, selectedValue, setIsOverlayVisible } }),
3248
- isOverlayVisible === true && /* @__PURE__ */ y(
3249
- OptionsContainer,
3250
- {
3251
- className: `absolute ${top ? "bottom-16" : "top-16"}`,
3252
- ...{
3253
- elementId,
3254
- is24H,
3255
- selectedValue,
3256
- setIs24H,
3257
- setIsOverlayVisible,
3258
- setSelectedValue
3259
- }
3280
+ ...{
3281
+ elementId,
3282
+ is24H,
3283
+ isOverlayVisible,
3284
+ selectedValue,
3285
+ setIsOverlayVisible
3260
3286
  }
3261
- )
3262
- ));
3287
+ }
3288
+ ), isOverlayVisible === true && /* @__PURE__ */ y(
3289
+ OptionsContainer,
3290
+ {
3291
+ ...{
3292
+ elementId,
3293
+ is24H,
3294
+ selectedValue,
3295
+ setIs24H,
3296
+ setIsOverlayVisible,
3297
+ setSelectedValue
3298
+ },
3299
+ className: `ntsp-dropdown-wrapper absolute ${top ? "bottom-16" : "top-16"}`
3300
+ }
3301
+ )));
3263
3302
  }
3264
3303
  const styles = "";
3265
3304
  class Plugin {
@@ -1 +1 @@
1
- "use strict";const e=[{utc:["Africa/Cairo"],label:"Egypt Standard Time",keywords:"Egypt Standard Time Cairo EST",isDst:!1,cities:"Cairo"},{utc:["Africa/Algiers","Africa/Bangui","Africa/Brazzaville","Africa/Douala","Africa/Kinshasa","Africa/Lagos","Africa/Libreville","Africa/Luanda","Africa/Malabo","Africa/Ndjamena","Africa/Niamey","Africa/Porto-Novo","Africa/Tunis","Etc/GMT-1"],label:"West Central Africa Standard Time",keywords:"W. Central Africa Standard Time Algiers Bangui Brazzaville Douala Kinshasa Lagos Libreville Luanda Malabo Ndjamena Niamey Porto-Novo Tunis GMT-1 WCAST",isDst:!1,cities:"Algiers, Bangui, Brazzaville, Douala, Kinshasa, Lagos, Libreville, Luanda, Malabo, Ndjamena, Niamey, Porto-Novo, Tunis"},{utc:["Africa/Windhoek"],label:"Namibia Standard Time",keywords:"Namibia Standard Time Windhoek NST",isDst:!1,cities:"Windhoek"},{utc:["Africa/Blantyre","Africa/Bujumbura","Africa/Gaborone","Africa/Harare","Africa/Johannesburg","Africa/Kigali","Africa/Lubumbashi","Africa/Lusaka","Africa/Maputo","Africa/Maseru","Africa/Mbabane","Etc/GMT-2"],label:"South Africa Standard Time",keywords:"South Africa Standard Time Blantyre Bujumbura Gaborone Harare Johannesburg Kigali Lubumbashi Lusaka Maputo Maseru Mbabane GMT-2 SAST",isDst:!1,cities:"Blantyre, Bujumbura, Gaborone, Harare, Johannesburg, Kigali, Lubumbashi, Lusaka, Maputo, Maseru, Mbabane, Pretoria"},{utc:["Africa/Tripoli"],label:"Libya Standard Time",keywords:"Libya Standard Time Tripoli LST",isDst:!1,cities:"Tripoli"},{utc:["Africa/Addis_Ababa","Africa/Asmera","Africa/Dar_es_Salaam","Africa/Djibouti","Africa/Juba","Africa/Kampala","Africa/Khartoum","Africa/Mogadishu","Africa/Nairobi","Antarctica/Syowa","Etc/GMT-3","Indian/Antananarivo","Indian/Comoro","Indian/Mayotte"],label:"East Africa Standard Time",keywords:"E. Africa Standard Time Addis Ababa Asmera Dar_es_Salaam Djibouti Juba Kampala Khartoum Mogadishu Nairobi Syowa GMT-3 Antananarivo Comoro Mayotte EAST",isDst:!1,cities:"Addis Abada, Asmera, Dar es Salaam, Djibouti, Juba, Kampala, Khartoum, Mogadishu, Nairobi, Syowa, Antananarivo, Comoro, Mayotte"},{utc:["Africa/Abidjan","Africa/Accra","Africa/Bamako","Africa/Banjul","Africa/Bissau","Africa/Conakry","Africa/Dakar","Africa/Freetown","Africa/Lome","Africa/Monrovia","Africa/Nouakchott","Africa/Ouagadougou","Africa/Sao_Tome","Atlantic/Reykjavik","Atlantic/St_Helena"],label:"Greenwich Standard Time",keywords:"Greenwich Standard Time Abidjan Accra Bamako Banjul Bissau Conakry Dakar Freetown Lome Monrovia Nouakchott Ouagadougou Sao Tome Reykjavik St_Helena GST",isDst:!1,cities:"Abidjan, Accra, Bamako, Banjul, Bissau, Conakry, Dakar, Freetown, Lome, Monrovia, Nouakchott, Ouagadougou, Sao Tome, Reykjavik, St. Helena"},{utc:["Africa/Casablanca","Africa/El_Aaiun"],label:"Morocco Standard Time",keywords:"Morocco Standard Time Casablanca El Aaiun MST",isDst:!0,cities:"Casablanca, El Aaiun"},{utc:["Indian/Mahe","Indian/Mauritius","Indian/Reunion"],label:"Mauritius Standard Time",keywords:"Mauritius Standard Time Mahe Mauritius Reunion MST",isDst:!1,cities:"Mahe, Mauritius, Reunion"}],a=[{utc:["America/Argentina/La_Rioja","America/Argentina/Rio_Gallegos","America/Argentina/Salta","America/Argentina/San_Juan","America/Argentina/San_Luis","America/Argentina/Tucuman","America/Argentina/Ushuaia","America/Buenos_Aires","America/Catamarca","America/Cordoba","America/Jujuy","America/Mendoza"],label:"Argentina Standard Time",keywords:"Argentina Standard Time La Rioja Rio_Gallegos Salta San_Juan San_Luis Tucuman Ushuaia Buenos_Aires Catamarca Cordoba Jujuy Mendoza AST",isDst:!1,cities:"La Rioja, Rio Gallegos, Salta, San Juan, San Luis, Tucuman, Ushuaia, Buenos Aires, Catamarca, Cordoba, Jujuy, Mendoza"},{utc:["America/Asuncion"],label:"Paraguay Standard Time",keywords:"Paraguay Standard Time Asuncion PST",isDst:!1,cities:"Asuncion"},{utc:["America/Bogota","America/Cayman","America/Coral_Harbour","America/Eirunepe","America/Guayaquil","America/Jamaica","America/Lima","America/Panama","America/Rio_Branco","Etc/GMT+5"],label:"South American Pacific Standard Time",keywords:"SA Pacific Standard Time Bogota Cayman Coral Harbour Eirunepe Guayaquil Jamaica Lima Panama Rio_Branco GMT+5 SAPST PST",isDst:!1,cities:"Bogota, Cayman, Coral Harbour, Eirunepe, Guayaquil, Jamaica, Lima, Panama, Rio Branco"},{utc:["America/Campo_Grande","America/Cuiaba"],label:"Central Brazilian Standard Time",keywords:"Central Brazilian Standard Time Campo Grande Cuiaba CBST",isDst:!1,cities:"Cuiaba, Campo Grande"},{utc:["America/Caracas"],label:"Venezuela Standard Time",keywords:"Venezuela Standard Time Caracas VST",isDst:!1,cities:"Caracas"},{utc:["America/Godthab"],label:"Greenland Standard Time",keywords:"Greenland Standard Time Godthab GST",isDst:!0,cities:"Godthab"},{utc:["America/Regina","America/Swift_Current"],label:"Canada Central Standard Time",keywords:"Canada Central Standard Time Regina Swift Current CCST",isDst:!1,cities:"Regina, Swift Current"},{utc:["America/Chihuahua","America/Mazatlan"],label:"Mountain Standard Time (Mexico)",keywords:"Mountain Standard Time (Mexico) Chihuahua Mazatlan MST",isDst:!0,cities:"Chihuahua, Mazatlan, La Paz,"},{utc:["America/Bahia_Banderas","America/Cancun","America/Merida","America/Mexico_City","America/Monterrey"],label:"Central Standard Time (Mexico)",keywords:"Central Standard Time (Mexico) Bahia Banderas Cancun Merida Mexico_City Monterrey CST",isDst:!0,cities:"Guadalajara, Mexico City, Monterrey, Bahia Baderas, Cancun, Merida"},{utc:["America/Montevideo"],label:"Montevideo Standard Time",keywords:"Montevideo Standard Time Montevideo MST",isDst:!1,cities:"Montevideo"},{utc:["America/Noronha","Atlantic/South_Georgia","Etc/GMT+2"],label:"Coordinated Universal Time (UTC -02)",keywords:"UTC-02 Noronha South Georgia GMT+2 CUT",isDst:!1,cities:"Noronha, South Georgia"},{utc:["America/Santiago","Antarctica/Palmer"],label:"Pacific SA Standard Time",keywords:"Pacific SA Standard Time Santiago Palmer PSST",isDst:!1,cities:"Santiago, Palmer"},{utc:["America/Santa_Isabel"],label:"Pacific Standard Time (Mexico)",keywords:"Pacific Standard Time (Mexico) Santa Isabel PST",isDst:!0,cities:"Santa Isabel"},{utc:["America/Glace_Bay","America/Goose_Bay","America/Halifax","America/Moncton","America/Thule","Atlantic/Bermuda"],label:"Atlantic Time (Canada)",keywords:"Atlantic Standard Time Glace Bay Goose_Bay Halifax Moncton Thule Bermuda AT",isDst:!0,cities:"Glace Bay, Goose Bay, Halifax, Moncton, Thule, Bermuda"},{utc:["America/Sao_Paulo"],label:"East South America Standard Time",keywords:"E. South America Standard Time Sao Paulo ESAST EAST",isDst:!1,cities:"Sao Paulo"},{utc:["America/Danmarkshavn","Etc/GMT"],label:"Coordinated Universal Time",keywords:"UTC Danmarkshavn GMT CUT",isDst:!1,cities:"Danmarkshavn"},{utc:["America/Bahia"],label:"Bahia Standard Time",keywords:"Bahia Standard Time Bahia BST",isDst:!1,cities:"Bahia, Salvado"},{utc:["America/Araguaina","America/Belem","America/Cayenne","America/Fortaleza","America/Maceio","America/Paramaribo","America/Recife","America/Santarem","Antarctica/Rothera","Atlantic/Stanley","Etc/GMT+3"],label:"South American Eastern Standard Time",keywords:"SA Eastern Standard Time Araguaina Belem Cayenne Fortaleza Maceio Paramaribo Recife Santarem Rothera Stanley GMT+3 SAEST SAET",isDst:!1,cities:"Araguaina, Belem, Cayenne, Fortaleza, Maceio, Paramaribo, Recife, Santarem, Rothera, Stanley"},{utc:["America/Anguilla","America/Antigua","America/Aruba","America/Barbados","America/Blanc-Sablon","America/Boa_Vista","America/Curacao","America/Dominica","America/Grand_Turk","America/Grenada","America/Guadeloupe","America/Guyana","America/Kralendijk","America/La_Paz","America/Lower_Princes","America/Manaus","America/Marigot","America/Martinique","America/Montserrat","America/Port_of_Spain","America/Porto_Velho","America/Puerto_Rico","America/Santo_Domingo","America/St_Barthelemy","America/St_Kitts","America/St_Lucia","America/St_Thomas","America/St_Vincent","America/Tortola","Etc/GMT+4"],label:"South American Western Standard Time",keywords:"SA Western Standard Time Anguilla Antigua Aruba Barbados Blanc-Sablon Boa Vista Curacao Dominica Grand_Turk Grenada Guadeloupe Guyana Kralendijk La_Paz Lower_Princes Manaus Marigot Martinique Montserrat Port_of_Spain Porto_Velho Puerto_Rico Santo_Domingo St_Barthelemy St_Kitts St_Lucia St_Thomas St_Vincent Tortola GMT+4 SAWST SAWT",isDst:!1,cities:"Anguilla, Antigua, Aruba, Barbados, Blanc-Sablon, Boa Vista, Curacao, Dominica, Grand_Turk, Grenada, Guadeloupe, Guyana, Kralendijk, La Paz, Lower_Princes, Manaus, Marigot, Martinique, Montserrat, Port_of_Spain, Porto_Velho, Puerto_Rico, Santo_Domingo, St_Barthelemy, St_Kitts, St_Lucia, St_Thomas, St_Vincent, Tortola, Georgetown, La Paz, San Juan"},{utc:["America/Indiana/Marengo","America/Indiana/Vevay","America/Indianapolis"],label:"US Eastern Standard Time",keywords:"US Eastern Standard Time Marengo Vevay Indianapolis UEST UET",isDst:!1,cities:"Marengo, Vevay, Indianapolis"}],t=[{utc:["Asia/Kolkata","Asia/Calcutta"],label:"Indian Standard Time",keywords:"India Standard Time Kolkata Calcutta Chennai Mumbai New Delhi IST",isDst:!1,cities:"Kolkata, Chennai, Mumbai, New Delhi"},{utc:["Asia/Beirut"],label:"Middle East Standard Time",keywords:"Middle East Standard Time Beirut MEST",isDst:!0,cities:"Beirut"},{utc:["Asia/Damascus"],label:"Syria Standard Time",keywords:"Syria Standard Time Damascus SST",isDst:!0,cities:"Damascus"},{utc:["Asia/Jerusalem"],label:"Israel Standard Time",keywords:"Israel Standard Time Jerusalem IST",isDst:!0,cities:"Jerusalem"},{utc:["Asia/Amman"],label:"Jordan Standard Time",keywords:"Jordan Standard Time Amman JST",isDst:!1,cities:"Amman"},{utc:["Asia/Baghdad"],label:"Arabic Standard Time",keywords:"Arabic Standard Time Baghdad AST",isDst:!1,cities:"Baghdad"},{utc:["Asia/Aden","Asia/Bahrain","Asia/Kuwait","Asia/Qatar","Asia/Riyadh"],label:"Arab Standard Time",keywords:"Arab Standard Time Aden Bahrain Kuwait Qatar Riyadh AST",isDst:!1,cities:"Aden, Bahrain, Kuwait, Qatar, Riyadh"},{utc:["Asia/Tehran"],label:"Iran Standard Time",keywords:"Iran Standard Time Tehran IST",isDst:!0,cities:"Tehran"},{utc:["Asia/Dubai","Asia/Muscat","Etc/GMT-4"],label:"Arabian Standard time",keywords:"Arabian Standard Time Dubai Muscat GMT-4 AST",isDst:!1,cities:"Dubai, Muscat, Abu Dhabi"},{utc:["Asia/Baku"],label:"Azerbaijan Standard Time",keywords:"Azerbaijan Standard Time Baku AST",isDst:!0,cities:"Baku"},{utc:["Asia/Tbilisi"],label:"Georgian Standard Time",keywords:"Georgian Standard Time Tbilisi GST",isDst:!1,cities:"Tbilisi"},{utc:["Asia/Yerevan"],label:"Caucasus Standard Time",keywords:"Caucasus Standard Time Yerevan CST",isDst:!1,cities:"Yerevan"},{utc:["Asia/Kabul"],label:"Afghanistan Standard Time",keywords:"Afghanistan Standard Time Kabul AST",isDst:!1,cities:"Kabul"},{utc:["Antarctica/Mawson","Asia/Aqtau","Asia/Aqtobe","Asia/Ashgabat","Asia/Dushanbe","Asia/Oral","Asia/Samarkand","Asia/Tashkent","Etc/GMT-5","Indian/Kerguelen","Indian/Maldives"],label:"West Asia Standard Time",keywords:"West Asia Standard Time Mawson Aqtau Aqtobe Ashgabat Dushanbe Oral Samarkand Tashkent GMT-5 Kerguelen Maldives WAST",isDst:!1,cities:"Mawson, Aqtau, Aqtobe, Ashgabat, Dushanbe, Oral, Samarkand, Tashkent, Kerguelen, Maldives"},{utc:["Asia/Yekaterinburg"],label:"Yekaterinburg Time",keywords:"Yekaterinburg Time YT",isDst:!1,cities:"Yekaterinburg"},{utc:["Asia/Karachi"],label:"Pakistan Standard Time",keywords:"Pakistan Standard Time Karachi PST",isDst:!1,cities:"Islamabad, Karachi"},{utc:["Asia/Colombo"],label:"Sri Lanka Standard Time",keywords:"Sri Lanka Standard Time Colombo SLST SST",isDst:!1,cities:"Colombo"},{utc:["Asia/Kathmandu"],label:"Nepal Standard Time",keywords:"Nepal Standard Time Kathmandu NST",isDst:!1,cities:"Kathmandu"},{utc:["Antarctica/Vostok","Asia/Almaty","Asia/Bishkek","Asia/Qyzylorda","Asia/Urumqi","Etc/GMT-6","Indian/Chagos"],label:"Central Asia Standard Time",keywords:"Central Asia Standard Time Vostok Almaty Bishkek Qyzylorda Urumqi GMT-6 Chagos CAST",isDst:!1,cities:"Vostok, Almaty, Bishkek, Qyzylorda, Urumqi, Chagos, Nur-Sultan (Astana)"},{utc:["Asia/Dhaka","Asia/Thimphu"],label:"Bangladesh Standard Time",keywords:"Bangladesh Standard Time Dhaka Thimphu BST",isDst:!1,cities:"Dhaka, Thimpu"},{utc:["Asia/Rangoon","Indian/Cocos"],label:"Myanmar Standard Time",keywords:"Myanmar Standard Time Rangoon Cocos MST",isDst:!1,cities:"Rangoon, Cocos"},{utc:["Antarctica/Davis","Asia/Bangkok","Asia/Hovd","Asia/Jakarta","Asia/Phnom_Penh","Asia/Pontianak","Asia/Saigon","Asia/Vientiane","Etc/GMT-7","Indian/Christmas"],label:"South East Asia Standard Time",keywords:"SE Asia Standard Time Davis Bangkok Hovd Jakarta Phnom Penh Pontianak Saigon Vientiane GMT-7 Christmas SEAST SST",isDst:!1,cities:"Bangkok, Hanoi, Jakarta, Hovd, Davis, Phnom Penh, Pontianak, Saigon, Vientiane, Christmas"},{utc:["Asia/Novokuznetsk","Asia/Novosibirsk","Asia/Omsk"],label:"North Central Asia Standard Time",keywords:"N. Central Asia Standard Time Novokuznetsk Novosibirsk Omsk NCAST NST",isDst:!1,cities:"Novosibirsk, Novokuznetsk, Omsk"},{utc:["Asia/Hong_Kong","Asia/Macau","Asia/Shanghai"],label:"China Standard Time",keywords:"China Standard Time Hong Kong Macau Shanghai CST",isDst:!1,cities:"Beijing, Chongqing, Hong Kong, Urumqi, Macau, Shanghai"},{utc:["Asia/Krasnoyarsk"],label:"North Asia Standard Time",keywords:"North Asia Standard Time Krasnoyarsk NAST NAT",isDst:!1,cities:"Krasnoyarsk"},{utc:["Asia/Brunei","Asia/Kuala_Lumpur","Asia/Kuching","Asia/Makassar","Asia/Manila","Asia/Singapore","Etc/GMT-8"],label:"Singapore Standard Time",keywords:"Singapore Standard Time Brunei Kuala Lumpur Kuching Makassar Manila Singapore GMT-8 SST",isDst:!1,cities:"Brunei, Kuala Lumpur, Singapore, Makassar, Manila, Kuching"},{utc:["Asia/Taipei"],label:"Taipei Standard Time",keywords:"Taipei Standard Time Taipei TST",isDst:!1,cities:"Taipei"},{utc:["Asia/Choibalsan","Asia/Ulaanbaatar"],label:"Ulaanbaatar Standard Time",keywords:"Ulaanbaatar Standard Time Choibalsan Ulaanbaatar UST",isDst:!1,cities:"Ulaanbaatar, Choibalsan"},{utc:["Asia/Irkutsk"],label:"North Asia East Standard Time",keywords:"North Asia East Standard Time Irkutsk NAEST",isDst:!1,cities:"Irkutsk"},{utc:["Asia/Dili","Asia/Jayapura","Asia/Tokyo","Etc/GMT-9","Pacific/Palau"],label:"Japan Standard Time",keywords:"Japan Standard Time Dili Jayapura Tokyo GMT-9 Palau JST",isDst:!1,cities:"Osaka, Sapporo, Tokyo, Jayapura, Dili, Palau"},{utc:["Asia/Pyongyang","Asia/Seoul"],label:"Korea Standard Time",keywords:"Korea Standard Time Pyongyang Seoul KST",isDst:!1,cities:"Pyongyang, Seoul"},{utc:["Asia/Anadyr","Asia/Kamchatka","Asia/Magadan","Asia/Srednekolymsk"],label:"Magadan Standard Time",keywords:"Magadan Standard Time Anadyr Kamchatka Magadan Srednekolymsk MST",isDst:!1,cities:"Anadyr, Kamchatka, Magadan, Srednekolymsk"},{utc:["Asia/Kamchatka"],label:"Kamchatka Standard Time",keywords:"Kamchatka Standard Time Kamchatka KST",isDst:!0,cities:"Petropavlovsk-Kamchatsky - Old"},{utc:["Asia/Sakhalin","Asia/Ust-Nera","Asia/Vladivostok"],label:"Vladivostok Standard Time",keywords:"Vladivostok Standard Time Sakhalin Ust-Nera Vladivostok VST",isDst:!1,cities:"Sakhalin, Ust-Nera, Vladivostok"},{utc:["Asia/Chita","Asia/Khandyga","Asia/Yakutsk"],label:"Yakutsk Standard Time",keywords:"Yakutsk Standard Time Chita Khandyga Yakutsk YST",isDst:!1,cities:"Chita, Khandyga, Yakutsk"}],n=[{utc:["America/Scoresbysund","Atlantic/Azores"],label:"Azores Standard Time",keywords:"Azores Standard Time Scoresbysund Azores AST",isDst:!0,cities:"Scoresbysund, Azores"},{utc:["Atlantic/Cape_Verde","Etc/GMT+1"],label:"Cape Verde Standard Time",keywords:"Cape Verde Standard Time Cape Verde GMT+1 CVST CST",isDst:!0,cities:"Cape Verde"}],r=[{utc:["Antarctica/Casey","Australia/Perth"],label:"West Australia Standard Time",keywords:"W. Australia Standard Time Casey Perth WAST",isDst:!1,cities:"Casey, Perth"},{utc:["Australia/Adelaide","Australia/Broken_Hill"],label:"Central Australian Standard Time",keywords:"Cen. Australia Standard Time Adelaide Broken Hill CAST",isDst:!1,cities:"Adelaide, Broken Hill"},{utc:["Australia/Darwin"],label:"Australian Central Standard Time",keywords:"AUS Central Standard Time Darwin ACST",isDst:!1,cities:"Darwin"},{utc:["Australia/Brisbane","Australia/Lindeman"],label:"East Australian Standard Time",keywords:"East Australian Australia Standard Time Brisbane Lindeman EAST",isDst:!1,cities:"Brisbane, Lindeman"},{utc:["Australia/Melbourne","Australia/Sydney"],label:"Australian Eastern Standard Time",keywords:"AUS Eastern Standard Time Melbourne Sydney AEST",isDst:!1,cities:"Melbourne, Sydney, Canberra"},{utc:["Australia/Currie","Australia/Hobart"],label:"Tasmania Standard Time",keywords:"Tasmania Standard Time Currie Hobart TST",isDst:!1,cities:"Currie, Hobart"}],i=[{utc:["Europe/London","Europe/Isle_of_Man","Europe/Guernsey","Europe/Jersey"],label:"GMT Standard Time",keywords:"GMT Standard Time Isle of_Man Guernsey Jersey London Edinburgh England",isDst:!0,cities:"London, Edinburgh, Isle of Man, Guernsey, Jersey"},{utc:["WET","Atlantic/Canary","Atlantic/Faeroe","Atlantic/Madeira","Europe/Dublin","Europe/Lisbon"],label:"Western European Time",keywords:"WET Western European Time Canary Faeroe Madeira Dublin Lisbon",isDst:!0,cities:"Canary, Faeroe, Madeira, Dublin, Lisbon"},{utc:["CET","Africa/Ceuta","Arctic/Longyearbyen","Europe/Amsterdam","Europe/Andorra","Europe/Belgrade","Europe/Berlin","Europe/Bratislava","Europe/Brussels","Europe/Budapest","Europe/Busingen","Europe/Copenhagen","Europe/Gibraltar","Europe/Ljubljana","Europe/Luxembourg","Europe/Madrid","Europe/Malta","Europe/Monaco","Europe/Oslo","Europe/Paris","Europe/Podgorica","Europe/Prague","Europe/Rome","Europe/San_Marino","Europe/Sarajevo","Europe/Skopje","Europe/Stockholm","Europe/Tirane","Europe/Vaduz","Europe/Vatican","Europe/Vienna","Europe/Warsaw","Europe/Zagreb","Europe/Zurich"],label:"Central European Time",keywords:"CET Central European Time Amsterdam Andorra Belgrade Berlin Bern Bratislava Brussels Budapest Busingen Ceuta Copenhagen Gibraltar Ljubljana Longyearbyen Luxembourg Madrid Malta Monaco Oslo Paris Podgorica Prague Rome San Marino Stockholm Tirane Vaduz Vatican Vienna Zurich Spain France Italy Germany",isDst:!0,cities:"Amsterdam, Andorra, Belgrade, Berlin, Bern, Bratislava, Brussels, Budapest, Busingen, Ceuta, Copenhagen, Gibraltar, Ljubljana, Longyearbyen, Luxembourg, Madrid, Malta, Monaco, Oslo, Paris, Podgorica, Prague, Rome, San Marino, Stockholm, Tirane, Vaduz, Vatican, Vienna, Zurich"},{utc:["EET","Asia/Nicosia","Europe/Athens","Europe/Bucharest","Europe/Chisinau","Europe/Helsinki","Europe/Kiev","Europe/Mariehamn","Europe/Nicosia","Europe/Riga","Europe/Sofia","Europe/Tallinn","Europe/Uzhgorod","Europe/Vilnius","Europe/Zaporozhye"],label:"Eastern European Time",keywords:"Eastern European Time Athens Bucharest Chisinau Helsinki Kiev Mariehamn Nicosia Riga Sofia Tallinn Uzhgorod Vilnius Zaporozhye EEST",isDst:!0,cities:"Athens, Bucharest, Chisinau, Helsinki, Kiev, Mariehamn, Nicosia, Riga, Sofia, Tallinn, Uzhgorod, Vilnius, Zaporozhye"},{utc:["Europe/Istanbul"],label:"Turkey Standard Time",keywords:"Turkey Standard Time Istanbul TST",isDst:!1,cities:"Istanbul"},{utc:["Europe/Kaliningrad"],label:"Kaliningrad Standard Time",keywords:"Kaliningrad Standard Time Kaliningrad KST",isDst:!1,cities:"Kaliningrad"},{utc:["Europe/Kirov","Europe/Moscow","Europe/Simferopol","Europe/Volgograd","Europe/Minsk"],label:"Moscow Standard Time",keywords:"Moscow Standard Time Kirov Moscow Simferopol Volgograd Minsk MST",isDst:!1,cities:"Moscow, St. Petersburg, Volgograd, Minsk, Kirov"},{utc:["Europe/Astrakhan","Europe/Samara","Europe/Ulyanovsk"],label:"Samara Time",keywords:"Samara Time Astrakhan Samara Ulyanovsk ST",isDst:!1,cities:"Samara, Ulyanovsk, Saratov"}],o=[{utc:["Etc/GMT+11","Pacific/Midway","Pacific/Niue","Pacific/Pago_Pago"],label:"Coordinated Universal Time (UTC -11)",keywords:"UTC-11 GMT+11 Midway Niue Pago Pago CUT",isDst:!1,cities:"Midway, Pago Pago"},{utc:["Pacific/Apia"],label:"Samoa Standard Time",keywords:"Samoa Standard Time Apia SST",isDst:!1,cities:"Apia"},{utc:["Antarctica/McMurdo","Pacific/Auckland"],label:"New Zealand Standard Time",keywords:"New Zealand Standard Time Wellington McMurdo Auckland NST",isDst:!1,cities:"Auckland, Wellington, McMurdo"},{utc:["Pacific/Fiji"],label:"Fiji Standard Time",keywords:"Fiji Standard Time Fiji FST",isDst:!1,cities:"Fiji"},{utc:["Etc/GMT-12","Pacific/Funafuti","Pacific/Kwajalein","Pacific/Majuro","Pacific/Nauru","Pacific/Tarawa","Pacific/Wake","Pacific/Wallis"],label:"Coordinated Universal Time (UtC +12)",keywords:"UTC+12 GMT-12 Funafuti Kwajalein Majuro Nauru Tarawa Wake Wallis CUT",isDst:!1,cities:"Funafuti, Kwajalein, Majuro, Nauru, Tarawa, Wake, Wallis"},{utc:["Antarctica/DumontDUrville","Etc/GMT-10","Pacific/Guam","Pacific/Port_Moresby","Pacific/Saipan","Pacific/Truk"],label:"West Pacific Standard Time",keywords:"West Pacific Standard Time DumontDUrville GMT-10 Guam Port Moresby Saipan Truk WPST",isDst:!1,cities:"DumontDUrville, Guam, Port Moresby, Saipan, Truk"},{utc:["Antarctica/Macquarie","Etc/GMT-11","Pacific/Efate","Pacific/Guadalcanal","Pacific/Kosrae","Pacific/Noumea","Pacific/Ponape"],label:"Central Pacific Standard Time",keywords:"Central Pacific Standard Time Macquarie GMT-11 Efate Guadalcanal Kosrae Noumea Ponape CPST",isDst:!1,cities:"Macquarie, Efate, Guadalcanal, Kosrae, Noumea, Ponape"},{utc:["Etc/GMT-13","Pacific/Enderbury","Pacific/Fakaofo","Pacific/Tongatapu"],label:"Tonga Standard Time",keywords:"Tonga Standard Time GMT-13 Enderbury Fakaofo Tongatapu TST",isDst:!1,cities:"Enderbury, Fakaofo, Tongatapu"},{utc:["Etc/GMT+12"],label:"International Date Line West",keywords:"Dateline Standard Time GMT+12 IDLW",isDst:!1,cities:""}],s=[{utc:["America/Los_Angeles","America/Tijuana","America/Vancouver","PST8PDT"],label:"Pacific Standard Time",keywords:"Pacific Standard Time PST8PDT PST California Las Vegas Los Angeles Nevada Palm Springs San Diego San Francisco Tijuana Vancouver Washington",isDst:!0,cities:"California, Las Vegas, Los Angeles, Nevada, Palm Springs, San Diego, San Francisco, Tijuana, Vancouver, Washington"},{utc:["America/Creston","America/Dawson","America/Dawson_Creek","America/Hermosillo","America/Phoenix","America/Whitehorse","Etc/GMT+7"],label:"Mountain Time",keywords:"US Mountain Standard Time GMT+7 MT MST Creston Dawson Creek Hermosillo Phoenix Whitehorse",isDst:!1,cities:"Creston, Dawson, Dawson Creek, Hermosillo, Phoenix, Whitehorse"},{utc:["America/Boise","America/Cambridge_Bay","America/Denver","America/Edmonton","America/Inuvik","America/Ojinaga","America/Yellowknife","MST7MDT"],label:"Mountain Time",keywords:"Mountain Time MST7MDT MT MST MDT Boise Cambridge_Bay Denver Edmonton Inuvik Ojinaga Yellowknife",isDst:!0,cities:"Boise, Cambridge Bay, Denver, Edmonton, Inuvik, Ojinaga, Yellowknife"},{utc:["America/Chicago","America/Indiana/Knox","America/Indiana/Tell_City","America/Matamoros","America/Menominee","America/North_Dakota/Beulah","America/North_Dakota/Center","America/North_Dakota/New_Salem","America/Rainy_River","America/Rankin_Inlet","America/Resolute","America/Winnipeg","CST6CDT"],label:"Central Time",keywords:"Central Standard Time CST6CDT CT CDT Austin Beulah Center Chicago Illinois Knox Matamoros Menominee Nashville New Salem Rainy River Rankin Inlet Resolute San Antonio Tell City Tennessee Texas Winnipeg",isDst:!0,cities:"Austin, Beulah, Center, Chicago, Knox, Matamoros, Menominee, Nashville, New Salem, Rainy River, Rankin Inlet, Resolute, San Antonio, Tell City, Tennessee, Texas, Winnipeg"},{utc:["America/New_York","America/Detroit","America/Havana","America/Indiana/Petersburg","America/Indiana/Vincennes","America/Indiana/Winamac","America/Iqaluit","America/Kentucky/Monticello","America/Louisville","America/Montreal","America/Nassau","America/Nipigon","America/Pangnirtung","America/Port-au-Prince","America/Thunder_Bay","America/Toronto"],label:"Eastern Time",keywords:"Eastern Standard Time EST ET Boston Massachusetts Charleston South Carolina Detroit Florida Havana Iqaluit Louisville Miami Monticello Montreal Nassau New York Nipigon Orlando Pangnirtung Port-au-Prince Petersburg Saint Augustine Thunder Bay Toronto Vincennes Washington D.C Winamac",isDst:!0,cities:"Boston, Charleston, Detroit, Florida, Havana, Iqaluit, Louisville, Miami, Monticello, Montreal, Nassau, New York, Nipigon, Orlando, Pangnirtung, Port-au-Prince, Petersburg, Saint Augustine, Thunder Bay, Toronto, Vincennes, Washington D.C, Winamac"},{utc:["America/Anchorage","America/Juneau","America/Nome","America/Sitka","America/Yakutat"],label:"Alaskan Time",keywords:"Alaskan Standard Time AT Anchorage Juneau Nome Sitka Yakutat",isDst:!0,cities:"Anchorage, Juneau, Nome, Sitka, Yakutat"},{utc:["America/St_Johns"],label:"Newfoundland Time",keywords:"Newfoundland Standard Time NT St Johns",isDst:!0,cities:"St Johns"},{utc:["Etc/GMT+10","Pacific/Honolulu","Pacific/Johnston","Pacific/Rarotonga","Pacific/Tahiti"],label:"Hawaiian Time",keywords:"Hawaiian Standard Time T GMT+10 Honolulu Johnston Lahaina Rarotonga Tahiti",isDst:!1,cities:"Honolulu, Johnston, Lahaina, Rarotonga, Tahiti"}];var c,u,l,d,f,m,_,p={},h=[],y=/acit|ex(?:s|g|n|p|$)|rph|grid|ows|mnc|ntw|ine[ch]|zoo|^ord|itera/i,A=Array.isArray;function S(e,a){for(var t in a)e[t]=a[t];return e}function b(e){var a=e.parentNode;a&&a.removeChild(e)}function T(e,a,t){var n,r,i,o={};for(i in a)"key"==i?n=a[i]:"ref"==i?r=a[i]:o[i]=a[i];if(arguments.length>2&&(o.children=arguments.length>3?c.call(arguments,2):t),"function"==typeof e&&null!=e.defaultProps)for(i in e.defaultProps)void 0===o[i]&&(o[i]=e.defaultProps[i]);return g(e,o,n,r,null)}function g(e,a,t,n,r){var i={type:e,props:a,key:t,ref:n,__k:null,__:null,__b:0,__e:null,__d:void 0,__c:null,__h:null,constructor:void 0,__v:null==r?++l:r};return null==r&&null!=u.vnode&&u.vnode(i),i}function k(e){return e.children}function v(e,a){this.props=e,this.context=a}function w(e,a){if(null==a)return e.__?w(e.__,e.__.__k.indexOf(e)+1):null;for(var t;a<e.__k.length;a++)if(null!=(t=e.__k[a])&&null!=t.__e)return t.__d||t.__e;return"function"==typeof e.type?w(e):null}function M(e){var a,t;if(null!=(e=e.__)&&null!=e.__c){for(e.__e=e.__c.base=null,a=0;a<e.__k.length;a++)if(null!=(t=e.__k[a])&&null!=t.__e){e.__e=e.__c.base=t.__e;break}return M(e)}}function C(e){(!e.__d&&(e.__d=!0)&&d.push(e)&&!D.__r++||f!==u.debounceRendering)&&((f=u.debounceRendering)||m)(D)}function D(){var e,a,t,n,r,i,o,s,c;for(d.sort(_);e=d.shift();)e.__d&&(a=d.length,n=void 0,r=void 0,i=void 0,s=(o=(t=e).__v).__e,(c=t.__P)&&(n=[],r=[],(i=S({},o)).__v=o.__v+1,L(c,o,i,t.__n,void 0!==c.ownerSVGElement,null!=o.__h?[s]:null,n,null==s?w(o):s,o.__h,r),O(n,o,r),o.__e!=s&&M(o)),d.length>a&&d.sort(_));D.__r=0}function E(e,a,t,n,r,i,o,s,c,u,l){var d,f,m,_,y,S,b,T,v,M=0,C=n&&n.__k||h,D=C.length,E=D,j=a.length;for(t.__k=[],d=0;d<j;d++)null!=(_=t.__k[d]=null==(_=a[d])||"boolean"==typeof _||"function"==typeof _?null:"string"==typeof _||"number"==typeof _||"bigint"==typeof _?g(null,_,null,null,_):A(_)?g(k,{children:_},null,null,null):_.__b>0?g(_.type,_.props,_.key,_.ref?_.ref:null,_.__v):_)?(_.__=t,_.__b=t.__b+1,-1===(T=B(_,C,b=d+M,E))?m=p:(m=C[T]||p,C[T]=void 0,E--),L(e,_,m,r,i,o,s,c,u,l),y=_.__e,(f=_.ref)&&m.ref!=f&&(m.ref&&V(m.ref,null,_),l.push(f,_.__c||y,_)),null!=y&&(null==S&&(S=y),(v=m===p||null===m.__v)?-1==T&&M--:T!==b&&(T===b+1?M++:T>b?E>j-b?M+=T-b:M--:M=T<b&&T==b-1?T-b:0),b=d+M,"function"!=typeof _.type||T===b&&m.__k!==_.__k?"function"==typeof _.type||T===b&&!v?void 0!==_.__d?(c=_.__d,_.__d=void 0):c=y.nextSibling:c=N(e,y,c):c=P(_,c,e),"function"==typeof t.type&&(t.__d=c))):(m=C[d])&&null==m.key&&m.__e&&(m.__e==c&&(m.__=n,c=w(m)),K(m,m,!1),C[d]=null);for(t.__e=S,d=D;d--;)null!=C[d]&&("function"==typeof t.type&&null!=C[d].__e&&C[d].__e==t.__d&&(t.__d=C[d].__e.nextSibling),K(C[d],C[d]))}function P(e,a,t){for(var n,r=e.__k,i=0;r&&i<r.length;i++)(n=r[i])&&(n.__=e,a="function"==typeof n.type?P(n,a,t):N(t,n.__e,a));return a}function N(e,a,t){return null==t||t.parentNode!==e?e.insertBefore(a,null):a==t&&null!=a.parentNode||e.insertBefore(a,t),a.nextSibling}function B(e,a,t,n){var r=e.key,i=e.type,o=t-1,s=t+1,c=a[t];if(null===c||c&&r==c.key&&i===c.type)return t;if(n>(null!=c?1:0))for(;o>=0||s<a.length;){if(o>=0){if((c=a[o])&&r==c.key&&i===c.type)return o;o--}if(s<a.length){if((c=a[s])&&r==c.key&&i===c.type)return s;s++}}return-1}function j(e,a,t){"-"===a[0]?e.setProperty(a,null==t?"":t):e[a]=null==t?"":"number"!=typeof t||y.test(a)?t:t+"px"}function I(e,a,t,n,r){var i;e:if("style"===a)if("string"==typeof t)e.style.cssText=t;else{if("string"==typeof n&&(e.style.cssText=n=""),n)for(a in n)t&&a in t||j(e.style,a,"");if(t)for(a in t)n&&t[a]===n[a]||j(e.style,a,t[a])}else if("o"===a[0]&&"n"===a[1])i=a!==(a=a.replace(/(PointerCapture)$|Capture$/,"$1")),a=a.toLowerCase()in e?a.toLowerCase().slice(2):a.slice(2),e.l||(e.l={}),e.l[a+i]=t,t?n?t.u=n.u:(t.u=Date.now(),e.addEventListener(a,i?x:G,i)):e.removeEventListener(a,i?x:G,i);else if("dangerouslySetInnerHTML"!==a){if(r)a=a.replace(/xlink(H|:h)/,"h").replace(/sName$/,"s");else if("width"!==a&&"height"!==a&&"href"!==a&&"list"!==a&&"form"!==a&&"tabIndex"!==a&&"download"!==a&&"rowSpan"!==a&&"colSpan"!==a&&"role"!==a&&a in e)try{e[a]=null==t?"":t;break e}catch(o){}"function"==typeof t||(null==t||!1===t&&"-"!==a[4]?e.removeAttribute(a):e.setAttribute(a,t))}}function G(e){var a=this.l[e.type+!1];if(e.t){if(e.t<=a.u)return}else e.t=Date.now();return a(u.event?u.event(e):e)}function x(e){return this.l[e.type+!0](u.event?u.event(e):e)}function L(e,a,t,n,r,i,o,s,l,d){var f,m,_,h,y,T,g,M,C,D,P,N,B,j,G,x=a.type;if(void 0!==a.constructor)return null;null!=t.__h&&(l=t.__h,s=a.__e=t.__e,a.__h=null,i=[s]),(f=u.__b)&&f(a);e:if("function"==typeof x)try{if(M=a.props,C=(f=x.contextType)&&n[f.__c],D=f?C?C.props.value:f.__:n,t.__c?g=(m=a.__c=t.__c).__=m.__E:("prototype"in x&&x.prototype.render?a.__c=m=new x(M,D):(a.__c=m=new v(M,D),m.constructor=x,m.render=z),C&&C.sub(m),m.props=M,m.state||(m.state={}),m.context=D,m.__n=n,_=m.__d=!0,m.__h=[],m._sb=[]),null==m.__s&&(m.__s=m.state),null!=x.getDerivedStateFromProps&&(m.__s==m.state&&(m.__s=S({},m.__s)),S(m.__s,x.getDerivedStateFromProps(M,m.__s))),h=m.props,y=m.state,m.__v=a,_)null==x.getDerivedStateFromProps&&null!=m.componentWillMount&&m.componentWillMount(),null!=m.componentDidMount&&m.__h.push(m.componentDidMount);else{if(null==x.getDerivedStateFromProps&&M!==h&&null!=m.componentWillReceiveProps&&m.componentWillReceiveProps(M,D),!m.__e&&(null!=m.shouldComponentUpdate&&!1===m.shouldComponentUpdate(M,m.__s,D)||a.__v===t.__v)){for(a.__v!==t.__v&&(m.props=M,m.state=m.__s,m.__d=!1),a.__e=t.__e,a.__k=t.__k,a.__k.forEach((function(e){e&&(e.__=a)})),P=0;P<m._sb.length;P++)m.__h.push(m._sb[P]);m._sb=[],m.__h.length&&o.push(m);break e}null!=m.componentWillUpdate&&m.componentWillUpdate(M,m.__s,D),null!=m.componentDidUpdate&&m.__h.push((function(){m.componentDidUpdate(h,y,T)}))}if(m.context=D,m.props=M,m.__P=e,m.__e=!1,N=u.__r,B=0,"prototype"in x&&x.prototype.render){for(m.state=m.__s,m.__d=!1,N&&N(a),f=m.render(m.props,m.state,m.context),j=0;j<m._sb.length;j++)m.__h.push(m._sb[j]);m._sb=[]}else do{m.__d=!1,N&&N(a),f=m.render(m.props,m.state,m.context),m.state=m.__s}while(m.__d&&++B<25);m.state=m.__s,null!=m.getChildContext&&(n=S(S({},n),m.getChildContext())),_||null==m.getSnapshotBeforeUpdate||(T=m.getSnapshotBeforeUpdate(h,y)),E(e,A(G=null!=f&&f.type===k&&null==f.key?f.props.children:f)?G:[G],a,t,n,r,i,o,s,l,d),m.base=a.__e,a.__h=null,m.__h.length&&o.push(m),g&&(m.__E=m.__=null)}catch(L){a.__v=null,(l||null!=i)&&(a.__e=s,a.__h=!!l,i[i.indexOf(s)]=null),u.__e(L,a,t)}else null==i&&a.__v===t.__v?(a.__k=t.__k,a.__e=t.__e):a.__e=function(e,a,t,n,r,i,o,s,u){var l,d,f,m=t.props,_=a.props,h=a.type,y=0;if("svg"===h&&(r=!0),null!=i)for(;y<i.length;y++)if((l=i[y])&&"setAttribute"in l==!!h&&(h?l.localName===h:3===l.nodeType)){e=l,i[y]=null;break}if(null==e){if(null===h)return document.createTextNode(_);e=r?document.createElementNS("http://www.w3.org/2000/svg",h):document.createElement(h,_.is&&_),i=null,s=!1}if(null===h)m===_||s&&e.data===_||(e.data=_);else{if(i=i&&c.call(e.childNodes),d=(m=t.props||p).dangerouslySetInnerHTML,f=_.dangerouslySetInnerHTML,!s){if(null!=i)for(m={},y=0;y<e.attributes.length;y++)m[e.attributes[y].name]=e.attributes[y].value;(f||d)&&(f&&(d&&f.__html==d.__html||f.__html===e.innerHTML)||(e.innerHTML=f&&f.__html||""))}if(function(e,a,t,n,r){var i;for(i in t)"children"===i||"key"===i||i in a||I(e,i,null,t[i],n);for(i in a)r&&"function"!=typeof a[i]||"children"===i||"key"===i||"value"===i||"checked"===i||t[i]===a[i]||I(e,i,a[i],t[i],n)}(e,_,m,r,s),f)a.__k=[];else if(E(e,A(y=a.props.children)?y:[y],a,t,n,r&&"foreignObject"!==h,i,o,i?i[0]:t.__k&&w(t,0),s,u),null!=i)for(y=i.length;y--;)null!=i[y]&&b(i[y]);s||("value"in _&&void 0!==(y=_.value)&&(y!==e.value||"progress"===h&&!y||"option"===h&&y!==m.value)&&I(e,"value",y,m.value,!1),"checked"in _&&void 0!==(y=_.checked)&&y!==e.checked&&I(e,"checked",y,m.checked,!1))}return e}(t.__e,a,t,n,r,i,o,l,d);(f=u.diffed)&&f(a)}function O(e,a,t){for(var n=0;n<t.length;n++)V(t[n],t[++n],t[++n]);u.__c&&u.__c(a,e),e.some((function(a){try{e=a.__h,a.__h=[],e.some((function(e){e.call(a)}))}catch(t){u.__e(t,a.__v)}}))}function V(e,a,t){try{"function"==typeof e?e(a):e.current=a}catch(n){u.__e(n,t)}}function K(e,a,t){var n,r;if(u.unmount&&u.unmount(e),(n=e.ref)&&(n.current&&n.current!==e.__e||V(n,null,a)),null!=(n=e.__c)){if(n.componentWillUnmount)try{n.componentWillUnmount()}catch(i){u.__e(i,a)}n.base=n.__P=null,e.__c=void 0}if(n=e.__k)for(r=0;r<n.length;r++)n[r]&&K(n[r],a,t||"function"!=typeof e.type);t||null==e.__e||b(e.__e),e.__=e.__e=e.__d=void 0}function z(e,a,t){return this.constructor(e,t)}c=h.slice,u={__e:function(e,a,t,n){for(var r,i,o;a=a.__;)if((r=a.__c)&&!r.__)try{if((i=r.constructor)&&null!=i.getDerivedStateFromError&&(r.setState(i.getDerivedStateFromError(e)),o=r.__d),null!=r.componentDidCatch&&(r.componentDidCatch(e,n||{}),o=r.__d),o)return r.__E=r}catch(s){e=s}throw e}},l=0,v.prototype.setState=function(e,a){var t;t=null!=this.__s&&this.__s!==this.state?this.__s:this.__s=S({},this.state),"function"==typeof e&&(e=e(S({},t),this.props)),e&&S(t,e),null!=e&&this.__v&&(a&&this._sb.push(a),C(this))},v.prototype.forceUpdate=function(e){this.__v&&(this.__e=!0,e&&this.__h.push(e),C(this))},v.prototype.render=k,d=[],m="function"==typeof Promise?Promise.prototype.then.bind(Promise.resolve()):setTimeout,_=function(e,a){return e.__v.__b-a.__v.__b},D.__r=0;var H=function(e,a,t,n){var r;a[0]=0;for(var i=1;i<a.length;i++){var o=a[i++],s=a[i]?(a[0]|=o?1:2,t[a[i++]]):a[++i];3===o?n[0]=s:4===o?n[1]=Object.assign(n[1]||{},s):5===o?(n[1]=n[1]||{})[a[++i]]=s:6===o?n[1][a[++i]]+=s+"":o?(r=e.apply(s,H(e,s,t,["",null])),n.push(r),s[0]?a[0]|=2:(a[i-2]=0,a[i]=r)):n.push(s)}return n},U=new Map;(function(e){var a=U.get(this);return a||(a=new Map,U.set(this,a)),(a=H(this,a.get(e)||(a.set(e,a=function(e){for(var a,t,n=1,r="",i="",o=[0],s=function(e){1===n&&(e||(r=r.replace(/^\s*\n\s*|\s*\n\s*$/g,"")))?o.push(0,e,r):3===n&&(e||r)?(o.push(3,e,r),n=2):2===n&&"..."===r&&e?o.push(4,e,0):2===n&&r&&!e?o.push(5,0,!0,r):n>=5&&((r||!e&&5===n)&&(o.push(n,0,r,t),n=6),e&&(o.push(n,e,0,t),n=6)),r=""},c=0;c<e.length;c++){c&&(1===n&&s(),s(c));for(var u=0;u<e[c].length;u++)a=e[c][u],1===n?"<"===a?(s(),o=[o],n=3):r+=a:4===n?"--"===r&&">"===a?(n=1,r=""):r=a+r[0]:i?a===i?i="":r+=a:'"'===a||"'"===a?i=a:">"===a?(s(),n=1):n&&("="===a?(n=5,t=r,r=""):"/"===a&&(n<5||">"===e[c][u+1])?(s(),3===n&&(o=o[0]),n=o,(o=o[0]).push(2,0,n),n=0):" "===a||"\t"===a||"\n"===a||"\r"===a?(s(),n=2):r+=a),3===n&&"!--"===r&&(n=4,o=o[0])}return s(),o}(e)),a),arguments,[])).length>1?a:a[0]}).bind(T);var R,F,W,J,q=0,$=[],Y=[],Z=u.__b,Q=u.__r,X=u.diffed,ee=u.__c,ae=u.unmount;function te(e,a){u.__h&&u.__h(F,e,q||a),q=0;var t=F.__H||(F.__H={__:[],__h:[]});return e>=t.__.length&&t.__.push({__V:Y}),t.__[e]}function ne(e){return q=1,function(e,a,t){var n=te(R++,2);if(n.t=e,!n.__c&&(n.__=[t?t(a):le(void 0,a),function(e){var a=n.__N?n.__N[0]:n.__[0],t=n.t(a,e);a!==t&&(n.__N=[t,n.__[1]],n.__c.setState({}))}],n.__c=F,!F.u)){var r=function(e,a,t){if(!n.__c.__H)return!0;var r=n.__c.__H.__.filter((function(e){return e.__c}));if(r.every((function(e){return!e.__N})))return!i||i.call(this,e,a,t);var o=!1;return r.forEach((function(e){if(e.__N){var a=e.__[0];e.__=e.__N,e.__N=void 0,a!==e.__[0]&&(o=!0)}})),!(!o&&n.__c.props===e)&&(!i||i.call(this,e,a,t))};F.u=!0;var i=F.shouldComponentUpdate,o=F.componentWillUpdate;F.componentWillUpdate=function(e,a,t){if(this.__e){var n=i;i=void 0,r(e,a,t),i=n}o&&o.call(this,e,a,t)},F.shouldComponentUpdate=r}return n.__N||n.__}(le,e)}function re(e,a){var t,n,r=te(R++,3);!u.__s&&(t=r.__H,n=a,!t||t.length!==n.length||n.some((function(e,a){return e!==t[a]})))&&(r.__=e,r.i=a,F.__H.__h.push(r))}function ie(){for(var e;e=$.shift();)if(e.__P&&e.__H)try{e.__H.__h.forEach(ce),e.__H.__h.forEach(ue),e.__H.__h=[]}catch(a){e.__H.__h=[],u.__e(a,e.__v)}}u.__b=function(e){F=null,Z&&Z(e)},u.__r=function(e){Q&&Q(e),R=0;var a=(F=e.__c).__H;a&&(W===F?(a.__h=[],F.__h=[],a.__.forEach((function(e){e.__N&&(e.__=e.__N),e.__V=Y,e.__N=e.i=void 0}))):(a.__h.forEach(ce),a.__h.forEach(ue),a.__h=[],R=0)),W=F},u.diffed=function(e){X&&X(e);var a=e.__c;a&&a.__H&&(a.__H.__h.length&&(1!==$.push(a)&&J===u.requestAnimationFrame||((J=u.requestAnimationFrame)||se)(ie)),a.__H.__.forEach((function(e){e.i&&(e.__H=e.i),e.__V!==Y&&(e.__=e.__V),e.i=void 0,e.__V=Y}))),W=F=null},u.__c=function(e,a){a.some((function(e){try{e.__h.forEach(ce),e.__h=e.__h.filter((function(e){return!e.__||ue(e)}))}catch(t){a.some((function(e){e.__h&&(e.__h=[])})),a=[],u.__e(t,e.__v)}})),ee&&ee(e,a)},u.unmount=function(e){ae&&ae(e);var a,t=e.__c;t&&t.__H&&(t.__H.__.forEach((function(e){try{ce(e)}catch(t){a=t}})),t.__H=void 0,a&&u.__e(a,t.__v))};var oe="function"==typeof requestAnimationFrame;function se(e){var a,t=function(){clearTimeout(n),oe&&cancelAnimationFrame(a),setTimeout(e)},n=setTimeout(t,100);oe&&(a=requestAnimationFrame(t))}function ce(e){var a=F,t=e.__c;"function"==typeof t&&(e.__c=void 0,t()),F=a}function ue(e){var a=F;e.__c=e.__(),F=a}function le(e,a){return"function"==typeof a?a(e):a}const de=(e,a)=>{null!==a?localStorage.setItem(e,JSON.stringify(a)):localStorage.removeItem(e)},fe=(e,a="")=>"number"==typeof e?String(e):e&&"string"==typeof e&&e.replace?e.replace(/[\s_]/g,"-").replace(/([a-z])([A-Z])/g,"$1-$2").replace(/-+/g,"-").toLowerCase():a;function me({children:e,customClass:a="",hideCitiesTooltip:t=!1,id:n="",key:r="",timezone:i,onClick:o,is24H:s}){const{label:c,keywords:u,isDst:l,cities:d}=i;return T("button",{id:n,key:r,onClick:o,value:u,className:`flex items-center gap-2 py-2 text-md ${a}`,"data-cy":`${fe(c)}-select-option`,type:"button"},T("div",{className:"flex min-w-0 space-x-1 text-left break-words grow"},t?c:T("span",{value:u,title:d},c),l&&T("span",{value:u,title:"Daylight savings time applicable"},"🌞")),T("span",{className:"flex items-center shrink-0"},(e=>{const a={timeZone:e,hour12:!s,hour:"numeric",minute:"numeric"};return(new Date).toLocaleString("en-US",a)})(i.utc[0])),e)}function _e({selectedValue:e,isOverlayVisible:a,elementId:t,is24H:n,setIsOverlayVisible:r}){const i=`${t}-search-box`;return re((()=>{if(a){document.getElementById(i).focus()}}),[a]),T("div",{className:"flex flex-col justify-between w-full neeto-ui-text-gray-700 neeto-ui-bg-white neeto-ui-rounded"},T(me,{onClick:()=>{r((e=>!e))},customClass:"px-4 ntsp-button-border",timezone:e,hideCitiesTooltip:!0,is24H:n},T("span",{className:"flex items-center shrink-0"},T("svg",{height:"16",width:"16",viewBox:"0 2 20 20","aria-hidden":"true",focusable:"false"},T("path",{d:"M4.516 7.548c0.436-0.446 1.043-0.481 1.576 0l3.908 3.747 3.908-3.747c0.533-0.481 1.141-0.446 1.574 0 0.436 0.445 0.408 1.197 0 1.615-0.406 0.418-4.695 4.502-4.695 4.502-0.217 0.223-0.502 0.335-0.787 0.335s-0.57-0.112-0.789-0.335c0 0-4.287-4.084-4.695-4.502s-0.436-1.17 0-1.615z"})))))}function pe({searchInput:e,setSearchInput:a,elementId:t}){return T("input",{id:`${t}-search-box`,type:"text",placeholder:"Search",onInput:e=>a(e.target.value),className:"p-2 m-2 border-2 border-blue-400 outline-none neeto-ui-rounded neeto-ui-shadow-lg",value:e,dataCy:`${t}-search-box`})}const he=[{"US/Canada":s},{America:a},{Asia:t},{Africa:e},{Atlantic:n},{Australia:r},{Europe:i},{Pacific:o}],ye=he.reduce(((e,a)=>[...e,...a[Object.keys(a)[0]]]),[]),Ae=e=>e&&ye.find((a=>a.utc.includes(e))),Se=(()=>{const e=Intl.DateTimeFormat().resolvedOptions().timeZone;return Ae(e)})()||ye[0],be=e=>`option-${e.replaceAll(" ","_").toLowerCase()}`,Te=(e,a,t,n)=>T("div",null,e.map((e=>{const r=Object.keys(e)[0],i=e[r];return T("div",{className:"flex flex-col px-2 py-1",key:r.toLowerCase()},T("span",{className:"pb-1 font-bold uppercase text-md"},r),i.map((e=>T(me,{id:be(e.keywords),onClick:t,customClass:"px-2 hover:bg-slate-100 "+(a.keywords===e.keywords?"bg-blue-300":""),key:e.label,is24H:n,timezone:e}))))})));function ge(e){return null!=e&&"object"==typeof e&&!0===e["@@functional/placeholder"]}function ke(e){return function a(t){return 0===arguments.length||ge(t)?a:e.apply(this,arguments)}}function ve(e){return function a(t,n){switch(arguments.length){case 0:return a;case 1:return ge(t)?a:ke((function(a){return e(t,a)}));default:return ge(t)&&ge(n)?a:ge(t)?ke((function(a){return e(a,n)})):ge(n)?ke((function(a){return e(t,a)})):e(t,n)}}}function we(e,a){switch(e){case 0:return function(){return a.apply(this,arguments)};case 1:return function(e){return a.apply(this,arguments)};case 2:return function(e,t){return a.apply(this,arguments)};case 3:return function(e,t,n){return a.apply(this,arguments)};case 4:return function(e,t,n,r){return a.apply(this,arguments)};case 5:return function(e,t,n,r,i){return a.apply(this,arguments)};case 6:return function(e,t,n,r,i,o){return a.apply(this,arguments)};case 7:return function(e,t,n,r,i,o,s){return a.apply(this,arguments)};case 8:return function(e,t,n,r,i,o,s,c){return a.apply(this,arguments)};case 9:return function(e,t,n,r,i,o,s,c,u){return a.apply(this,arguments)};case 10:return function(e,t,n,r,i,o,s,c,u,l){return a.apply(this,arguments)};default:throw new Error("First argument to _arity must be a non-negative integer no greater than ten")}}function Me(e,a,t){return function(){for(var n=[],r=0,i=e,o=0,s=!1;o<a.length||r<arguments.length;){var c;o<a.length&&(!ge(a[o])||r>=arguments.length)?c=a[o]:(c=arguments[r],r+=1),n[o]=c,ge(c)?s=!0:i-=1,o+=1}return!s&&i<=0?t.apply(this,n):we(Math.max(0,i),Me(e,n,t))}}const Ce=ve((function(e,a){return 1===e?ke(a):we(e,Me(e,[],a))})),De=Array.isArray||function(e){return null!=e&&e.length>=0&&"[object Array]"===Object.prototype.toString.call(e)};function Ee(e,a,t){return function(){if(0===arguments.length)return t();var n=arguments[arguments.length-1];if(!De(n)){for(var r=0;r<e.length;){if("function"==typeof n[e[r]])return n[e[r]].apply(n,Array.prototype.slice.call(arguments,0,-1));r+=1}if(function(e){return null!=e&&"function"==typeof e["@@transducer/step"]}(n))return a.apply(null,Array.prototype.slice.call(arguments,0,-1))(n)}return t.apply(this,arguments)}}const Pe=function(){return this.xf["@@transducer/init"]()},Ne=function(e){return this.xf["@@transducer/result"](e)};function Be(e){for(var a,t=[];!(a=e.next()).done;)t.push(a.value);return t}function je(e,a,t){for(var n=0,r=t.length;n<r;){if(e(a,t[n]))return!0;n+=1}return!1}function Ie(e,a){return Object.prototype.hasOwnProperty.call(a,e)}const Ge="function"==typeof Object.is?Object.is:function(e,a){return e===a?0!==e||1/e==1/a:e!=e&&a!=a};var xe=Object.prototype.toString;const Le=function(){return"[object Arguments]"===xe.call(arguments)?function(e){return"[object Arguments]"===xe.call(e)}:function(e){return Ie("callee",e)}}();var Oe=!{toString:null}.propertyIsEnumerable("toString"),Ve=["constructor","valueOf","isPrototypeOf","toString","propertyIsEnumerable","hasOwnProperty","toLocaleString"],Ke=function(){return arguments.propertyIsEnumerable("length")}(),ze=function(e,a){for(var t=0;t<e.length;){if(e[t]===a)return!0;t+=1}return!1};const He="function"!=typeof Object.keys||Ke?ke((function(e){if(Object(e)!==e)return[];var a,t,n=[],r=Ke&&Le(e);for(a in e)!Ie(a,e)||r&&"length"===a||(n[n.length]=a);if(Oe)for(t=Ve.length-1;t>=0;)Ie(a=Ve[t],e)&&!ze(n,a)&&(n[n.length]=a),t-=1;return n})):ke((function(e){return Object(e)!==e?[]:Object.keys(e)}));const Ue=ke((function(e){return null===e?"Null":void 0===e?"Undefined":Object.prototype.toString.call(e).slice(8,-1)}));function Re(e,a,t,n){var r=Be(e);function i(e,a){return Fe(e,a,t.slice(),n.slice())}return!je((function(e,a){return!je(i,a,e)}),Be(a),r)}function Fe(e,a,t,n){if(Ge(e,a))return!0;var r,i,o=Ue(e);if(o!==Ue(a))return!1;if("function"==typeof e["fantasy-land/equals"]||"function"==typeof a["fantasy-land/equals"])return"function"==typeof e["fantasy-land/equals"]&&e["fantasy-land/equals"](a)&&"function"==typeof a["fantasy-land/equals"]&&a["fantasy-land/equals"](e);if("function"==typeof e.equals||"function"==typeof a.equals)return"function"==typeof e.equals&&e.equals(a)&&"function"==typeof a.equals&&a.equals(e);switch(o){case"Arguments":case"Array":case"Object":if("function"==typeof e.constructor&&"Promise"===(r=e.constructor,null==(i=String(r).match(/^function (\w*)/))?"":i[1]))return e===a;break;case"Boolean":case"Number":case"String":if(typeof e!=typeof a||!Ge(e.valueOf(),a.valueOf()))return!1;break;case"Date":if(!Ge(e.valueOf(),a.valueOf()))return!1;break;case"Error":return e.name===a.name&&e.message===a.message;case"RegExp":if(e.source!==a.source||e.global!==a.global||e.ignoreCase!==a.ignoreCase||e.multiline!==a.multiline||e.sticky!==a.sticky||e.unicode!==a.unicode)return!1}for(var s=t.length-1;s>=0;){if(t[s]===e)return n[s]===a;s-=1}switch(o){case"Map":return e.size===a.size&&Re(e.entries(),a.entries(),t.concat([e]),n.concat([a]));case"Set":return e.size===a.size&&Re(e.values(),a.values(),t.concat([e]),n.concat([a]));case"Arguments":case"Array":case"Object":case"Boolean":case"Number":case"String":case"Date":case"Error":case"RegExp":case"Int8Array":case"Uint8Array":case"Uint8ClampedArray":case"Int16Array":case"Uint16Array":case"Int32Array":case"Uint32Array":case"Float32Array":case"Float64Array":case"ArrayBuffer":break;default:return!1}var c=He(e);if(c.length!==He(a).length)return!1;var u=t.concat([e]),l=n.concat([a]);for(s=c.length-1;s>=0;){var d=c[s];if(!Ie(d,a)||!Fe(a[d],e[d],u,l))return!1;s-=1}return!0}const We=ve((function(e,a){return Fe(e,a,[],[])}));function Je(e,a,t){for(var n=0,r=t.length;n<r;)a=e(a,t[n]),n+=1;return a}var qe=function(){function e(e,a){this.xf=a,this.f=e}return e.prototype["@@transducer/init"]=Pe,e.prototype["@@transducer/result"]=Ne,e.prototype["@@transducer/step"]=function(e,a){return this.xf["@@transducer/step"](e,this.f(a))},e}();const $e=ve(Ee(["fantasy-land/map","map"],(function(e){return function(a){return new qe(e,a)}}),(function(e,a){switch(Object.prototype.toString.call(a)){case"[object Function]":return Ce(a.length,(function(){return e.call(this,a.apply(this,arguments))}));case"[object Object]":return Je((function(t,n){return t[n]=e(a[n]),t}),{},He(a));default:return function(e,a){for(var t=0,n=a.length,r=Array(n);t<n;)r[t]=e(a[t]),t+=1;return r}(e,a)}})));function Ye(e){return"[object String]"===Object.prototype.toString.call(e)}const Ze=ke((function(e){return!!De(e)||!!e&&("object"==typeof e&&(!Ye(e)&&(0===e.length||e.length>0&&(e.hasOwnProperty(0)&&e.hasOwnProperty(e.length-1)))))}));var Qe="undefined"!=typeof Symbol?Symbol.iterator:"@@iterator";function Xe(e,a,t){return function(n,r,i){if(Ze(i))return e(n,r,i);if(null==i)return r;if("function"==typeof i["fantasy-land/reduce"])return a(n,r,i,"fantasy-land/reduce");if(null!=i[Qe])return t(n,r,i[Qe]());if("function"==typeof i.next)return t(n,r,i);if("function"==typeof i.reduce)return a(n,r,i,"reduce");throw new TypeError("reduce: list must be array or iterable")}}function ea(e,a,t){for(var n=t.next();!n.done;)a=e(a,n.value),n=t.next();return a}function aa(e,a,t,n){return t[n](e,a)}const ta=Xe(Je,aa,ea);const na=ve((function(e,a){return"function"==typeof a["fantasy-land/ap"]?a["fantasy-land/ap"](e):"function"==typeof e.ap?e.ap(a):"function"==typeof e?function(t){return e(t)(a(t))}:ta((function(e,t){return function(e,a){var t;a=a||[];var n=(e=e||[]).length,r=a.length,i=[];for(t=0;t<n;)i[i.length]=e[t],t+=1;for(t=0;t<r;)i[i.length]=a[t],t+=1;return i}(e,$e(t,a))}),[],e)}));const ra=ke((function(e){return null==e}));const ia=ve((function(e,a){var t=Ce(e,a);return Ce(e,(function(){return Je(na,$e(t,arguments[0]),Array.prototype.slice.call(arguments,1))}))}));const oa=ke((function(e){return ia(e.length,e)}))(ke((function(e){return!e})));const sa=ke((function(e){return Ce(e.length,e)}));const ca=ke((function(e){return null!=e&&"function"==typeof e["fantasy-land/empty"]?e["fantasy-land/empty"]():null!=e&&null!=e.constructor&&"function"==typeof e.constructor["fantasy-land/empty"]?e.constructor["fantasy-land/empty"]():null!=e&&"function"==typeof e.empty?e.empty():null!=e&&null!=e.constructor&&"function"==typeof e.constructor.empty?e.constructor.empty():De(e)?[]:Ye(e)?"":function(e){return"[object Object]"===Object.prototype.toString.call(e)}(e)?{}:Le(e)?function(){return arguments}():(a=e,"[object Uint8ClampedArray]"===(t=Object.prototype.toString.call(a))||"[object Int8Array]"===t||"[object Uint8Array]"===t||"[object Int16Array]"===t||"[object Uint16Array]"===t||"[object Int32Array]"===t||"[object Uint32Array]"===t||"[object Float32Array]"===t||"[object Float64Array]"===t||"[object BigInt64Array]"===t||"[object BigUint64Array]"===t?e.constructor.from(""):void 0);var a,t}));const ua=ke((function(e){return null!=e&&We(e,ca(e))}));function la(e,a){(null==a||a>e.length)&&(a=e.length);for(var t=0,n=new Array(a);t<a;t++)n[t]=e[t];return n}function da(e,a){return function(e){if(Array.isArray(e))return e}(e)||function(e,a){var t=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,s=[],c=!0,u=!1;try{if(i=(t=t.call(e)).next,0===a){if(Object(t)!==t)return;c=!1}else for(;!(c=(n=i.call(t)).done)&&(s.push(n.value),s.length!==a);c=!0);}catch(l){u=!0,r=l}finally{try{if(!c&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(u)throw r}}return s}}(e,a)||function(e,a){if(e){if("string"==typeof e)return la(e,a);var t=Object.prototype.toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?la(e,a):void 0}}(e,a)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function fa(e){return(fa="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var ma=Symbol.for("immer-nothing"),_a=Symbol.for("immer-draftable"),pa=Symbol.for("immer-state"),ha="production"!==process.env.NODE_ENV?[function(e){return`The plugin for '${e}' has not been loaded into Immer. To enable the plugin, import and call \`enable${e}()\` when initializing your application.`},function(e){return`produce can only be called on things that are draftable: plain objects, arrays, Map, Set or classes that are marked with '[immerable]: true'. Got '${e}'`},"This object has been frozen and should not be mutated",function(e){return"Cannot use a proxy that has been revoked. Did you pass an object from inside an immer function to an async process? "+e},"An immer producer returned a new value *and* modified its draft. Either return a new value *or* modify the draft.","Immer forbids circular references","The first or second argument to `produce` must be a function","The third argument to `produce` must be a function or undefined","First argument to `createDraft` must be a plain object, an array, or an immerable object","First argument to `finishDraft` must be a draft returned by `createDraft`",function(e){return`'current' expects a draft, got: ${e}`},"Object.defineProperty() cannot be used on an Immer draft","Object.setPrototypeOf() cannot be used on an Immer draft","Immer only supports deleting array indices","Immer only supports setting array indices and the 'length' property",function(e){return`'original' expects a draft, got: ${e}`}]:[];function ya(e,...a){if("production"!==process.env.NODE_ENV){const t=ha[e],n="function"==typeof t?t.apply(null,a):t;throw new Error(`[Immer] ${n}`)}throw new Error(`[Immer] minified error nr: ${e}. Full error at: https://bit.ly/3cXEKWf`)}var Aa=Object.getPrototypeOf;function Sa(e){return!!e&&!!e[pa]}function ba(e){var a;return!!e&&(ga(e)||Array.isArray(e)||!!e[_a]||!!(null==(a=e.constructor)?void 0:a[_a])||Ca(e)||Da(e))}var Ta=Object.prototype.constructor.toString();function ga(e){if(!e||"object"!=typeof e)return!1;const a=Aa(e);if(null===a)return!0;const t=Object.hasOwnProperty.call(a,"constructor")&&a.constructor;return t===Object||"function"==typeof t&&Function.toString.call(t)===Ta}function ka(e,a){0===va(e)?Object.entries(e).forEach((([t,n])=>{a(t,n,e)})):e.forEach(((t,n)=>a(n,t,e)))}function va(e){const a=e[pa];return a?a.type_:Array.isArray(e)?1:Ca(e)?2:Da(e)?3:0}function wa(e,a){return 2===va(e)?e.has(a):Object.prototype.hasOwnProperty.call(e,a)}function Ma(e,a,t){const n=va(e);2===n?e.set(a,t):3===n?e.add(t):e[a]=t}function Ca(e){return e instanceof Map}function Da(e){return e instanceof Set}function Ea(e){return e.copy_||e.base_}function Pa(e,a){if(Ca(e))return new Map(e);if(Da(e))return new Set(e);if(Array.isArray(e))return Array.prototype.slice.call(e);if(!a&&ga(e)){if(!Aa(e)){const a=Object.create(null);return Object.assign(a,e)}return{...e}}const t=Object.getOwnPropertyDescriptors(e);delete t[pa];let n=Reflect.ownKeys(t);for(let r=0;r<n.length;r++){const a=n[r],i=t[a];!1===i.writable&&(i.writable=!0,i.configurable=!0),(i.get||i.set)&&(t[a]={configurable:!0,writable:!0,enumerable:i.enumerable,value:e[a]})}return Object.create(Aa(e),t)}function Na(e,a=!1){return ja(e)||Sa(e)||!ba(e)||(va(e)>1&&(e.set=e.add=e.clear=e.delete=Ba),Object.freeze(e),a&&ka(e,((e,a)=>Na(a,!0)))),e}function Ba(){ya(2)}function ja(e){return Object.isFrozen(e)}var Ia,Ga={};function xa(e){const a=Ga[e];return a||ya(0,e),a}function La(){return Ia}function Oa(e,a){a&&(xa("Patches"),e.patches_=[],e.inversePatches_=[],e.patchListener_=a)}function Va(e){Ka(e),e.drafts_.forEach(Ha),e.drafts_=null}function Ka(e){e===Ia&&(Ia=e.parent_)}function za(e){return Ia={drafts_:[],parent_:Ia,immer_:e,canAutoFreeze_:!0,unfinalizedDrafts_:0}}function Ha(e){const a=e[pa];0===a.type_||1===a.type_?a.revoke_():a.revoked_=!0}function Ua(e,a){a.unfinalizedDrafts_=a.drafts_.length;const t=a.drafts_[0];return void 0!==e&&e!==t?(t[pa].modified_&&(Va(a),ya(4)),ba(e)&&(e=Ra(a,e),a.parent_||Wa(a,e)),a.patches_&&xa("Patches").generateReplacementPatches_(t[pa].base_,e,a.patches_,a.inversePatches_)):e=Ra(a,t,[]),Va(a),a.patches_&&a.patchListener_(a.patches_,a.inversePatches_),e!==ma?e:void 0}function Ra(e,a,t){if(ja(a))return a;const n=a[pa];if(!n)return ka(a,((r,i)=>Fa(e,n,a,r,i,t))),a;if(n.scope_!==e)return a;if(!n.modified_)return Wa(e,n.base_,!0),n.base_;if(!n.finalized_){n.finalized_=!0,n.scope_.unfinalizedDrafts_--;const a=n.copy_;let r=a,i=!1;3===n.type_&&(r=new Set(a),a.clear(),i=!0),ka(r,((r,o)=>Fa(e,n,a,r,o,t,i))),Wa(e,a,!1),t&&e.patches_&&xa("Patches").generatePatches_(n,t,e.patches_,e.inversePatches_)}return n.copy_}function Fa(e,a,t,n,r,i,o){if("production"!==process.env.NODE_ENV&&r===t&&ya(5),Sa(r)){const o=Ra(e,r,i&&a&&3!==a.type_&&!wa(a.assigned_,n)?i.concat(n):void 0);if(Ma(t,n,o),!Sa(o))return;e.canAutoFreeze_=!1}else o&&t.add(r);if(ba(r)&&!ja(r)){if(!e.immer_.autoFreeze_&&e.unfinalizedDrafts_<1)return;Ra(e,r),a&&a.scope_.parent_||Wa(e,r)}}function Wa(e,a,t=!1){!e.parent_&&e.immer_.autoFreeze_&&e.canAutoFreeze_&&Na(a,t)}var Ja={get(e,a){if(a===pa)return e;const t=Ea(e);if(!wa(t,a))return function(e,a,t){var n;const r=Ya(a,t);return r?"value"in r?r.value:null==(n=r.get)?void 0:n.call(e.draft_):void 0}(e,t,a);const n=t[a];return e.finalized_||!ba(n)?n:n===$a(e.base_,a)?(Qa(e),e.copy_[a]=Xa(n,e)):n},has:(e,a)=>a in Ea(e),ownKeys:e=>Reflect.ownKeys(Ea(e)),set(e,a,t){const n=Ya(Ea(e),a);if(null==n?void 0:n.set)return n.set.call(e.draft_,t),!0;if(!e.modified_){const n=$a(Ea(e),a),o=null==n?void 0:n[pa];if(o&&o.base_===t)return e.copy_[a]=t,e.assigned_[a]=!1,!0;if(((r=t)===(i=n)?0!==r||1/r==1/i:r!=r&&i!=i)&&(void 0!==t||wa(e.base_,a)))return!0;Qa(e),Za(e)}var r,i;return e.copy_[a]===t&&(void 0!==t||a in e.copy_)||Number.isNaN(t)&&Number.isNaN(e.copy_[a])||(e.copy_[a]=t,e.assigned_[a]=!0),!0},deleteProperty:(e,a)=>(void 0!==$a(e.base_,a)||a in e.base_?(e.assigned_[a]=!1,Qa(e),Za(e)):delete e.assigned_[a],e.copy_&&delete e.copy_[a],!0),getOwnPropertyDescriptor(e,a){const t=Ea(e),n=Reflect.getOwnPropertyDescriptor(t,a);return n?{writable:!0,configurable:1!==e.type_||"length"!==a,enumerable:n.enumerable,value:t[a]}:n},defineProperty(){ya(11)},getPrototypeOf:e=>Aa(e.base_),setPrototypeOf(){ya(12)}},qa={};function $a(e,a){const t=e[pa];return(t?Ea(t):e)[a]}function Ya(e,a){if(!(a in e))return;let t=Aa(e);for(;t;){const e=Object.getOwnPropertyDescriptor(t,a);if(e)return e;t=Aa(t)}}function Za(e){e.modified_||(e.modified_=!0,e.parent_&&Za(e.parent_))}function Qa(e){e.copy_||(e.copy_=Pa(e.base_,e.scope_.immer_.useStrictShallowCopy_))}ka(Ja,((e,a)=>{qa[e]=function(){return arguments[0]=arguments[0][0],a.apply(this,arguments)}})),qa.deleteProperty=function(e,a){return"production"!==process.env.NODE_ENV&&isNaN(parseInt(a))&&ya(13),qa.set.call(this,e,a,void 0)},qa.set=function(e,a,t){return"production"!==process.env.NODE_ENV&&"length"!==a&&isNaN(parseInt(a))&&ya(14),Ja.set.call(this,e[0],a,t,e[0])};function Xa(e,a){const t=Ca(e)?xa("MapSet").proxyMap_(e,a):Da(e)?xa("MapSet").proxySet_(e,a):function(e,a){const t=Array.isArray(e),n={type_:t?1:0,scope_:a?a.scope_:La(),modified_:!1,finalized_:!1,assigned_:{},parent_:a,base_:e,draft_:null,copy_:null,revoke_:null,isManual_:!1};let r=n,i=Ja;t&&(r=[n],i=qa);const{revoke:o,proxy:s}=Proxy.revocable(r,i);return n.draft_=s,n.revoke_=o,s}(e,a);return(a?a.scope_:La()).drafts_.push(t),t}function et(e){if(!ba(e)||ja(e))return e;const a=e[pa];let t;if(a){if(!a.modified_)return a.base_;a.finalized_=!0,t=Pa(e,a.scope_.immer_.useStrictShallowCopy_)}else t=Pa(e,!0);return ka(t,((e,a)=>{Ma(t,e,et(a))})),a&&(a.finalized_=!1),t}var at=new class{constructor(e){this.autoFreeze_=!0,this.useStrictShallowCopy_=!1,this.produce=(e,a,t)=>{if("function"==typeof e&&"function"!=typeof a){const t=a;a=e;const n=this;return function(e=t,...r){return n.produce(e,(e=>a.call(this,e,...r)))}}let n;if("function"!=typeof a&&ya(6),void 0!==t&&"function"!=typeof t&&ya(7),ba(e)){const r=za(this),i=Xa(e,void 0);let o=!0;try{n=a(i),o=!1}finally{o?Va(r):Ka(r)}return Oa(r,t),Ua(n,r)}if(!e||"object"!=typeof e){if(n=a(e),void 0===n&&(n=e),n===ma&&(n=void 0),this.autoFreeze_&&Na(n,!0),t){const a=[],r=[];xa("Patches").generateReplacementPatches_(e,n,a,r),t(a,r)}return n}ya(1,e)},this.produceWithPatches=(e,a)=>{if("function"==typeof e)return(a,...t)=>this.produceWithPatches(a,(a=>e(a,...t)));let t,n;return[this.produce(e,a,((e,a)=>{t=e,n=a})),t,n]},"boolean"==typeof(null==e?void 0:e.autoFreeze)&&this.setAutoFreeze(e.autoFreeze),"boolean"==typeof(null==e?void 0:e.useStrictShallowCopy)&&this.setUseStrictShallowCopy(e.useStrictShallowCopy)}createDraft(e){ba(e)||ya(8),Sa(e)&&(e=function(e){Sa(e)||ya(10,e);return et(e)}(e));const a=za(this),t=Xa(e,void 0);return t[pa].isManual_=!0,Ka(a),t}finishDraft(e,a){const t=e&&e[pa];t&&t.isManual_||ya(9);const{scope_:n}=t;return Oa(n,a),Ua(void 0,n)}setAutoFreeze(e){this.autoFreeze_=e}setUseStrictShallowCopy(e){this.useStrictShallowCopy_=e}applyPatches(e,a){let t;for(t=a.length-1;t>=0;t--){const n=a[t];if(0===n.path.length&&"replace"===n.op){e=n.value;break}}t>-1&&(a=a.slice(t+1));const n=xa("Patches").applyPatches_;return Sa(e)?n(e,a):this.produce(e,(e=>n(e,a)))}};at.produce,at.produceWithPatches.bind(at),at.setAutoFreeze.bind(at),at.setUseStrictShallowCopy.bind(at),at.applyPatches.bind(at),at.createDraft.bind(at),at.finishDraft.bind(at);var tt,nt=function(){},rt=oa(ua),it=sa((function(e,a){return e!==a}));Ce((tt=function e(a){return Object.fromEntries(Object.entries(a).filter((function(e){var a=da(e,2)[1];return!ra(a)})).map((function(a){var t=da(a,2),n=t[0],r=t[1];return[n,"object"!==fa(r)||Array.isArray(r)?r:e(r)]})))}).length,(function(){var e,a=(e=tt.length-1)<0||arguments.length<=e?void 0:arguments[e];return ra(a)?a:tt.apply(void 0,arguments)}));const ot=e=>{if(""===e)return he;return he.map((a=>{const t=Object.keys(a)[0],n=a[t].filter((a=>a.label.toLowerCase().includes(e.toLowerCase())||a.keywords.toLowerCase().includes(e.toLowerCase())));return rt(n)?{[t]:n}:null})).filter(it(null))};function st({elementId:e,is24H:a,searchInput:t,selectedValue:n,setSelectedValue:r,setIsOverlayVisible:i}){return re((()=>{document.getElementById(be(null==n?void 0:n.keywords)).scrollIntoView({behavior:"auto",block:"center"})}),[]),re((()=>{if(""===t)return;const a=document.getElementById(`${e}-ntsp-overflow-container`);a&&(a.scrollTop=0)}),[t]),T("div",{className:"pt-2 overflow-y-scroll h-80",id:`${e}-ntsp-overflow-container`},T("div",{className:"flex flex-col"},Te(ot(t),n,(e=>{var a,t,n,o,s,c;const u=(null==(a=null==e?void 0:e.target)?void 0:a.value)||(null==(n=null==(t=null==e?void 0:e.target)?void 0:t.parentNode)?void 0:n.value)||(null==(c=null==(s=null==(o=null==e?void 0:e.target)?void 0:o.parentNode)?void 0:s.parentNode)?void 0:c.value),l=ye.find((e=>(null==e?void 0:e.keywords)===u));i(!1),r(l)}),a)))}function ct({id:e="ntsp-switch",onChange:a=nt,labelRight:t="Toggle switch",labelLeft:n="Toggle switch",defaultValue:r=!1}){const[i,o]=ne(r),s=i&&"font-semibold";return T("label",{htmlFor:e,className:"flex items-center space-x-1 cursor-pointer"},T("span",{className:`ml-3 text-sm neeto-ui-text-gray-700 ${!i&&"font-semibold"}`},n),T("span",{className:"relative"},T("input",{type:"checkbox",id:e,className:"sr-only",checked:i,onChange:({target:{checked:e}})=>{o(e),a(e)}}),T("span",{className:"block w-10 h-6 neeto-ui-bg-gray-600 neeto-ui-rounded-full"}),T("span",{className:"absolute w-4 h-4 transition neeto-ui-bg-white neeto-ui-rounded-full dot left-1 top-1"})),T("span",{className:`ml-3 text-sm neeto-ui-text-gray-700 ${s}`},t))}function ut({className:e,is24H:a,elementId:t,selectedValue:n,setSelectedValue:r,setIsOverlayVisible:i,setIs24H:o}){const[s,c]=ne("");return T("div",{className:`w-full px-2 py-4 flex flex-col neeto-ui-text-gray-700 neeto-ui-bg-white border neeto-ui-border-gray-300 neeto-ui-rounded shadow h-80 ${e}`},T(pe,{elementId:t,searchInput:s,setSearchInput:c}),T("div",{className:"flex items-center justify-between w-full pb-2 pr-4 mb-1 neeto-ui-shadow-sm gap-x-4"},T("span",null),T(ct,{defaultValue:a,labelRight:"24H",labelLeft:"AM/PM",onChange:e=>{de("ntsp-24-hr-time-format",e),o(e)}})),T(st,{elementId:t,is24H:a,searchInput:s,selectedValue:n,setIsOverlayVisible:i,setSelectedValue:r}))}function lt({className:e="",elementId:a="timezone-selector",initialValue:t,position:n="bottom",onChange:r=(e=>{}),onHourFormatChange:i=(e=>{})}){const[o,s]=ne(Ae(t)||Se),[c,u]=ne(!1),[l,d]=ne((e=>{let a=null;try{const t=localStorage.getItem(e);a=null!==t?JSON.parse(t):null}catch(t){a=null}return a})("ntsp-24-hr-time-format")||!1),f="top"===n;return re((()=>{const e=e=>{const t=document.getElementById(a);t&&!(null==t?void 0:t.contains(e.target))&&u(!1)};return window.addEventListener("click",e),()=>{window.removeEventListener("click",e)}}),[]),re((()=>{r(o)}),[o]),re((()=>{i(l?"24H":"12H")}),[l]),re((()=>{const e=Ae(t)||Se;s(e)}),[t]),T("div",{className:"ntsp",id:a},T("div",{className:`flex flex-col relative ${e}`},T(_e,{elementId:a,is24H:l,isOverlayVisible:c,selectedValue:o,setIsOverlayVisible:u}),!0===c&&T(ut,{className:"absolute "+(f?"bottom-16":"top-16"),elementId:a,is24H:l,selectedValue:o,setIs24H:d,setIsOverlayVisible:u,setSelectedValue:s})))}class dt{constructor(e,a){this.element=e,this.options=a,this.render()}render(){var e,a,t,n,r,i,o;e=T(lt,{...this.options}),a=this.element,u.__&&u.__(e,a),r=(n="function"==typeof t)?null:t&&t.__k||a.__k,i=[],o=[],L(a,e=(!n&&t||a).__k=T(k,null,[e]),r||p,p,void 0!==a.ownerSVGElement,!n&&t?[t]:r?null:a.firstChild?c.call(a.childNodes):null,i,!n&&t?t:r?r.__e:a.firstChild,n,o),O(i,e,o)}}window.NeetoTimezoneSelector=dt,exports.Africa=e,exports.America=a,exports.Asia=t,exports.Atlantic=n,exports.Australia=r,exports.Europe=i,exports.Pacific=o,exports.Plugin=dt,exports.UsCanada=s;
1
+ "use strict";const e=[{utc:["Africa/Cairo"],label:"Egypt Standard Time",keywords:"Egypt Standard Time Cairo EST",isDst:!1,cities:"Cairo"},{utc:["Africa/Algiers","Africa/Bangui","Africa/Brazzaville","Africa/Douala","Africa/Kinshasa","Africa/Lagos","Africa/Libreville","Africa/Luanda","Africa/Malabo","Africa/Ndjamena","Africa/Niamey","Africa/Porto-Novo","Africa/Tunis","Etc/GMT-1"],label:"West Central Africa Standard Time",keywords:"W. Central Africa Standard Time Algiers Bangui Brazzaville Douala Kinshasa Lagos Libreville Luanda Malabo Ndjamena Niamey Porto-Novo Tunis GMT-1 WCAST",isDst:!1,cities:"Algiers, Bangui, Brazzaville, Douala, Kinshasa, Lagos, Libreville, Luanda, Malabo, Ndjamena, Niamey, Porto-Novo, Tunis"},{utc:["Africa/Windhoek"],label:"Namibia Standard Time",keywords:"Namibia Standard Time Windhoek NST",isDst:!1,cities:"Windhoek"},{utc:["Africa/Blantyre","Africa/Bujumbura","Africa/Gaborone","Africa/Harare","Africa/Johannesburg","Africa/Kigali","Africa/Lubumbashi","Africa/Lusaka","Africa/Maputo","Africa/Maseru","Africa/Mbabane","Etc/GMT-2"],label:"South Africa Standard Time",keywords:"South Africa Standard Time Blantyre Bujumbura Gaborone Harare Johannesburg Kigali Lubumbashi Lusaka Maputo Maseru Mbabane GMT-2 SAST",isDst:!1,cities:"Blantyre, Bujumbura, Gaborone, Harare, Johannesburg, Kigali, Lubumbashi, Lusaka, Maputo, Maseru, Mbabane, Pretoria"},{utc:["Africa/Tripoli"],label:"Libya Standard Time",keywords:"Libya Standard Time Tripoli LST",isDst:!1,cities:"Tripoli"},{utc:["Africa/Addis_Ababa","Africa/Asmera","Africa/Dar_es_Salaam","Africa/Djibouti","Africa/Juba","Africa/Kampala","Africa/Khartoum","Africa/Mogadishu","Africa/Nairobi","Antarctica/Syowa","Etc/GMT-3","Indian/Antananarivo","Indian/Comoro","Indian/Mayotte"],label:"East Africa Standard Time",keywords:"E. Africa Standard Time Addis Ababa Asmera Dar_es_Salaam Djibouti Juba Kampala Khartoum Mogadishu Nairobi Syowa GMT-3 Antananarivo Comoro Mayotte EAST",isDst:!1,cities:"Addis Abada, Asmera, Dar es Salaam, Djibouti, Juba, Kampala, Khartoum, Mogadishu, Nairobi, Syowa, Antananarivo, Comoro, Mayotte"},{utc:["Africa/Abidjan","Africa/Accra","Africa/Bamako","Africa/Banjul","Africa/Bissau","Africa/Conakry","Africa/Dakar","Africa/Freetown","Africa/Lome","Africa/Monrovia","Africa/Nouakchott","Africa/Ouagadougou","Africa/Sao_Tome","Atlantic/Reykjavik","Atlantic/St_Helena"],label:"Greenwich Standard Time",keywords:"Greenwich Standard Time Abidjan Accra Bamako Banjul Bissau Conakry Dakar Freetown Lome Monrovia Nouakchott Ouagadougou Sao Tome Reykjavik St_Helena GST",isDst:!1,cities:"Abidjan, Accra, Bamako, Banjul, Bissau, Conakry, Dakar, Freetown, Lome, Monrovia, Nouakchott, Ouagadougou, Sao Tome, Reykjavik, St. Helena"},{utc:["Africa/Casablanca","Africa/El_Aaiun"],label:"Morocco Standard Time",keywords:"Morocco Standard Time Casablanca El Aaiun MST",isDst:!0,cities:"Casablanca, El Aaiun"},{utc:["Indian/Mahe","Indian/Mauritius","Indian/Reunion"],label:"Mauritius Standard Time",keywords:"Mauritius Standard Time Mahe Mauritius Reunion MST",isDst:!1,cities:"Mahe, Mauritius, Reunion"}],a=[{utc:["America/Argentina/La_Rioja","America/Argentina/Rio_Gallegos","America/Argentina/Salta","America/Argentina/San_Juan","America/Argentina/San_Luis","America/Argentina/Tucuman","America/Argentina/Ushuaia","America/Buenos_Aires","America/Catamarca","America/Cordoba","America/Jujuy","America/Mendoza"],label:"Argentina Standard Time",keywords:"Argentina Standard Time La Rioja Rio_Gallegos Salta San_Juan San_Luis Tucuman Ushuaia Buenos_Aires Catamarca Cordoba Jujuy Mendoza AST",isDst:!1,cities:"La Rioja, Rio Gallegos, Salta, San Juan, San Luis, Tucuman, Ushuaia, Buenos Aires, Catamarca, Cordoba, Jujuy, Mendoza"},{utc:["America/Asuncion"],label:"Paraguay Standard Time",keywords:"Paraguay Standard Time Asuncion PST",isDst:!1,cities:"Asuncion"},{utc:["America/Bogota","America/Cayman","America/Coral_Harbour","America/Eirunepe","America/Guayaquil","America/Jamaica","America/Lima","America/Panama","America/Rio_Branco","Etc/GMT+5"],label:"South American Pacific Standard Time",keywords:"SA Pacific Standard Time Bogota Cayman Coral Harbour Eirunepe Guayaquil Jamaica Lima Panama Rio_Branco GMT+5 SAPST PST",isDst:!1,cities:"Bogota, Cayman, Coral Harbour, Eirunepe, Guayaquil, Jamaica, Lima, Panama, Rio Branco"},{utc:["America/Campo_Grande","America/Cuiaba"],label:"Central Brazilian Standard Time",keywords:"Central Brazilian Standard Time Campo Grande Cuiaba CBST",isDst:!1,cities:"Cuiaba, Campo Grande"},{utc:["America/Caracas"],label:"Venezuela Standard Time",keywords:"Venezuela Standard Time Caracas VST",isDst:!1,cities:"Caracas"},{utc:["America/Godthab"],label:"Greenland Standard Time",keywords:"Greenland Standard Time Godthab GST",isDst:!0,cities:"Godthab"},{utc:["America/Regina","America/Swift_Current"],label:"Canada Central Standard Time",keywords:"Canada Central Standard Time Regina Swift Current CCST",isDst:!1,cities:"Regina, Swift Current"},{utc:["America/Chihuahua","America/Mazatlan"],label:"Mountain Standard Time (Mexico)",keywords:"Mountain Standard Time (Mexico) Chihuahua Mazatlan MST",isDst:!0,cities:"Chihuahua, Mazatlan, La Paz,"},{utc:["America/Bahia_Banderas","America/Cancun","America/Merida","America/Mexico_City","America/Monterrey"],label:"Central Standard Time (Mexico)",keywords:"Central Standard Time (Mexico) Bahia Banderas Cancun Merida Mexico_City Monterrey CST",isDst:!0,cities:"Guadalajara, Mexico City, Monterrey, Bahia Baderas, Cancun, Merida"},{utc:["America/Montevideo"],label:"Montevideo Standard Time",keywords:"Montevideo Standard Time Montevideo MST",isDst:!1,cities:"Montevideo"},{utc:["America/Noronha","Atlantic/South_Georgia","Etc/GMT+2"],label:"Coordinated Universal Time (UTC -02)",keywords:"UTC-02 Noronha South Georgia GMT+2 CUT",isDst:!1,cities:"Noronha, South Georgia"},{utc:["America/Santiago","Antarctica/Palmer"],label:"Pacific SA Standard Time",keywords:"Pacific SA Standard Time Santiago Palmer PSST",isDst:!1,cities:"Santiago, Palmer"},{utc:["America/Santa_Isabel"],label:"Pacific Standard Time (Mexico)",keywords:"Pacific Standard Time (Mexico) Santa Isabel PST",isDst:!0,cities:"Santa Isabel"},{utc:["America/Glace_Bay","America/Goose_Bay","America/Halifax","America/Moncton","America/Thule","Atlantic/Bermuda"],label:"Atlantic Time (Canada)",keywords:"Atlantic Standard Time Glace Bay Goose_Bay Halifax Moncton Thule Bermuda AT",isDst:!0,cities:"Glace Bay, Goose Bay, Halifax, Moncton, Thule, Bermuda"},{utc:["America/Sao_Paulo"],label:"East South America Standard Time",keywords:"E. South America Standard Time Sao Paulo ESAST EAST",isDst:!1,cities:"Sao Paulo"},{utc:["America/Danmarkshavn","Etc/GMT"],label:"Coordinated Universal Time",keywords:"UTC Danmarkshavn GMT CUT",isDst:!1,cities:"Danmarkshavn"},{utc:["America/Bahia"],label:"Bahia Standard Time",keywords:"Bahia Standard Time Bahia BST",isDst:!1,cities:"Bahia, Salvado"},{utc:["America/Araguaina","America/Belem","America/Cayenne","America/Fortaleza","America/Maceio","America/Paramaribo","America/Recife","America/Santarem","Antarctica/Rothera","Atlantic/Stanley","Etc/GMT+3"],label:"South American Eastern Standard Time",keywords:"SA Eastern Standard Time Araguaina Belem Cayenne Fortaleza Maceio Paramaribo Recife Santarem Rothera Stanley GMT+3 SAEST SAET",isDst:!1,cities:"Araguaina, Belem, Cayenne, Fortaleza, Maceio, Paramaribo, Recife, Santarem, Rothera, Stanley"},{utc:["America/Anguilla","America/Antigua","America/Aruba","America/Barbados","America/Blanc-Sablon","America/Boa_Vista","America/Curacao","America/Dominica","America/Grand_Turk","America/Grenada","America/Guadeloupe","America/Guyana","America/Kralendijk","America/La_Paz","America/Lower_Princes","America/Manaus","America/Marigot","America/Martinique","America/Montserrat","America/Port_of_Spain","America/Porto_Velho","America/Puerto_Rico","America/Santo_Domingo","America/St_Barthelemy","America/St_Kitts","America/St_Lucia","America/St_Thomas","America/St_Vincent","America/Tortola","Etc/GMT+4"],label:"South American Western Standard Time",keywords:"SA Western Standard Time Anguilla Antigua Aruba Barbados Blanc-Sablon Boa Vista Curacao Dominica Grand_Turk Grenada Guadeloupe Guyana Kralendijk La_Paz Lower_Princes Manaus Marigot Martinique Montserrat Port_of_Spain Porto_Velho Puerto_Rico Santo_Domingo St_Barthelemy St_Kitts St_Lucia St_Thomas St_Vincent Tortola GMT+4 SAWST SAWT",isDst:!1,cities:"Anguilla, Antigua, Aruba, Barbados, Blanc-Sablon, Boa Vista, Curacao, Dominica, Grand_Turk, Grenada, Guadeloupe, Guyana, Kralendijk, La Paz, Lower_Princes, Manaus, Marigot, Martinique, Montserrat, Port_of_Spain, Porto_Velho, Puerto_Rico, Santo_Domingo, St_Barthelemy, St_Kitts, St_Lucia, St_Thomas, St_Vincent, Tortola, Georgetown, La Paz, San Juan"},{utc:["America/Indiana/Marengo","America/Indiana/Vevay","America/Indianapolis"],label:"US Eastern Standard Time",keywords:"US Eastern Standard Time Marengo Vevay Indianapolis UEST UET",isDst:!1,cities:"Marengo, Vevay, Indianapolis"}],t=[{utc:["Asia/Kolkata","Asia/Calcutta"],label:"Indian Standard Time",keywords:"India Standard Time Kolkata Calcutta Chennai Mumbai New Delhi IST",isDst:!1,cities:"Kolkata, Chennai, Mumbai, New Delhi"},{utc:["Asia/Beirut"],label:"Middle East Standard Time",keywords:"Middle East Standard Time Beirut MEST",isDst:!0,cities:"Beirut"},{utc:["Asia/Damascus"],label:"Syria Standard Time",keywords:"Syria Standard Time Damascus SST",isDst:!0,cities:"Damascus"},{utc:["Asia/Jerusalem"],label:"Israel Standard Time",keywords:"Israel Standard Time Jerusalem IST",isDst:!0,cities:"Jerusalem"},{utc:["Asia/Amman"],label:"Jordan Standard Time",keywords:"Jordan Standard Time Amman JST",isDst:!1,cities:"Amman"},{utc:["Asia/Baghdad"],label:"Arabic Standard Time",keywords:"Arabic Standard Time Baghdad AST",isDst:!1,cities:"Baghdad"},{utc:["Asia/Aden","Asia/Bahrain","Asia/Kuwait","Asia/Qatar","Asia/Riyadh"],label:"Arab Standard Time",keywords:"Arab Standard Time Aden Bahrain Kuwait Qatar Riyadh AST",isDst:!1,cities:"Aden, Bahrain, Kuwait, Qatar, Riyadh"},{utc:["Asia/Tehran"],label:"Iran Standard Time",keywords:"Iran Standard Time Tehran IST",isDst:!0,cities:"Tehran"},{utc:["Asia/Dubai","Asia/Muscat","Etc/GMT-4"],label:"Arabian Standard time",keywords:"Arabian Standard Time Dubai Muscat GMT-4 AST",isDst:!1,cities:"Dubai, Muscat, Abu Dhabi"},{utc:["Asia/Baku"],label:"Azerbaijan Standard Time",keywords:"Azerbaijan Standard Time Baku AST",isDst:!0,cities:"Baku"},{utc:["Asia/Tbilisi"],label:"Georgian Standard Time",keywords:"Georgian Standard Time Tbilisi GST",isDst:!1,cities:"Tbilisi"},{utc:["Asia/Yerevan"],label:"Caucasus Standard Time",keywords:"Caucasus Standard Time Yerevan CST",isDst:!1,cities:"Yerevan"},{utc:["Asia/Kabul"],label:"Afghanistan Standard Time",keywords:"Afghanistan Standard Time Kabul AST",isDst:!1,cities:"Kabul"},{utc:["Antarctica/Mawson","Asia/Aqtau","Asia/Aqtobe","Asia/Ashgabat","Asia/Dushanbe","Asia/Oral","Asia/Samarkand","Asia/Tashkent","Etc/GMT-5","Indian/Kerguelen","Indian/Maldives"],label:"West Asia Standard Time",keywords:"West Asia Standard Time Mawson Aqtau Aqtobe Ashgabat Dushanbe Oral Samarkand Tashkent GMT-5 Kerguelen Maldives WAST",isDst:!1,cities:"Mawson, Aqtau, Aqtobe, Ashgabat, Dushanbe, Oral, Samarkand, Tashkent, Kerguelen, Maldives"},{utc:["Asia/Yekaterinburg"],label:"Yekaterinburg Time",keywords:"Yekaterinburg Time YT",isDst:!1,cities:"Yekaterinburg"},{utc:["Asia/Karachi"],label:"Pakistan Standard Time",keywords:"Pakistan Standard Time Karachi PST",isDst:!1,cities:"Islamabad, Karachi"},{utc:["Asia/Colombo"],label:"Sri Lanka Standard Time",keywords:"Sri Lanka Standard Time Colombo SLST SST",isDst:!1,cities:"Colombo"},{utc:["Asia/Kathmandu"],label:"Nepal Standard Time",keywords:"Nepal Standard Time Kathmandu NST",isDst:!1,cities:"Kathmandu"},{utc:["Antarctica/Vostok","Asia/Almaty","Asia/Bishkek","Asia/Qyzylorda","Asia/Urumqi","Etc/GMT-6","Indian/Chagos"],label:"Central Asia Standard Time",keywords:"Central Asia Standard Time Vostok Almaty Bishkek Qyzylorda Urumqi GMT-6 Chagos CAST",isDst:!1,cities:"Vostok, Almaty, Bishkek, Qyzylorda, Urumqi, Chagos, Nur-Sultan (Astana)"},{utc:["Asia/Dhaka","Asia/Thimphu"],label:"Bangladesh Standard Time",keywords:"Bangladesh Standard Time Dhaka Thimphu BST",isDst:!1,cities:"Dhaka, Thimpu"},{utc:["Asia/Rangoon","Indian/Cocos"],label:"Myanmar Standard Time",keywords:"Myanmar Standard Time Rangoon Cocos MST",isDst:!1,cities:"Rangoon, Cocos"},{utc:["Antarctica/Davis","Asia/Bangkok","Asia/Hovd","Asia/Jakarta","Asia/Phnom_Penh","Asia/Pontianak","Asia/Saigon","Asia/Vientiane","Etc/GMT-7","Indian/Christmas"],label:"South East Asia Standard Time",keywords:"SE Asia Standard Time Davis Bangkok Hovd Jakarta Phnom Penh Pontianak Saigon Vientiane GMT-7 Christmas SEAST SST",isDst:!1,cities:"Bangkok, Hanoi, Jakarta, Hovd, Davis, Phnom Penh, Pontianak, Saigon, Vientiane, Christmas"},{utc:["Asia/Novokuznetsk","Asia/Novosibirsk","Asia/Omsk"],label:"North Central Asia Standard Time",keywords:"N. Central Asia Standard Time Novokuznetsk Novosibirsk Omsk NCAST NST",isDst:!1,cities:"Novosibirsk, Novokuznetsk, Omsk"},{utc:["Asia/Hong_Kong","Asia/Macau","Asia/Shanghai"],label:"China Standard Time",keywords:"China Standard Time Hong Kong Macau Shanghai CST",isDst:!1,cities:"Beijing, Chongqing, Hong Kong, Urumqi, Macau, Shanghai"},{utc:["Asia/Krasnoyarsk"],label:"North Asia Standard Time",keywords:"North Asia Standard Time Krasnoyarsk NAST NAT",isDst:!1,cities:"Krasnoyarsk"},{utc:["Asia/Brunei","Asia/Kuala_Lumpur","Asia/Kuching","Asia/Makassar","Asia/Manila","Asia/Singapore","Etc/GMT-8"],label:"Singapore Standard Time",keywords:"Singapore Standard Time Brunei Kuala Lumpur Kuching Makassar Manila Singapore GMT-8 SST",isDst:!1,cities:"Brunei, Kuala Lumpur, Singapore, Makassar, Manila, Kuching"},{utc:["Asia/Taipei"],label:"Taipei Standard Time",keywords:"Taipei Standard Time Taipei TST",isDst:!1,cities:"Taipei"},{utc:["Asia/Choibalsan","Asia/Ulaanbaatar"],label:"Ulaanbaatar Standard Time",keywords:"Ulaanbaatar Standard Time Choibalsan Ulaanbaatar UST",isDst:!1,cities:"Ulaanbaatar, Choibalsan"},{utc:["Asia/Irkutsk"],label:"North Asia East Standard Time",keywords:"North Asia East Standard Time Irkutsk NAEST",isDst:!1,cities:"Irkutsk"},{utc:["Asia/Dili","Asia/Jayapura","Asia/Tokyo","Etc/GMT-9","Pacific/Palau"],label:"Japan Standard Time",keywords:"Japan Standard Time Dili Jayapura Tokyo GMT-9 Palau JST",isDst:!1,cities:"Osaka, Sapporo, Tokyo, Jayapura, Dili, Palau"},{utc:["Asia/Pyongyang","Asia/Seoul"],label:"Korea Standard Time",keywords:"Korea Standard Time Pyongyang Seoul KST",isDst:!1,cities:"Pyongyang, Seoul"},{utc:["Asia/Anadyr","Asia/Kamchatka","Asia/Magadan","Asia/Srednekolymsk"],label:"Magadan Standard Time",keywords:"Magadan Standard Time Anadyr Kamchatka Magadan Srednekolymsk MST",isDst:!1,cities:"Anadyr, Kamchatka, Magadan, Srednekolymsk"},{utc:["Asia/Kamchatka"],label:"Kamchatka Standard Time",keywords:"Kamchatka Standard Time Kamchatka KST",isDst:!0,cities:"Petropavlovsk-Kamchatsky - Old"},{utc:["Asia/Sakhalin","Asia/Ust-Nera","Asia/Vladivostok"],label:"Vladivostok Standard Time",keywords:"Vladivostok Standard Time Sakhalin Ust-Nera Vladivostok VST",isDst:!1,cities:"Sakhalin, Ust-Nera, Vladivostok"},{utc:["Asia/Chita","Asia/Khandyga","Asia/Yakutsk"],label:"Yakutsk Standard Time",keywords:"Yakutsk Standard Time Chita Khandyga Yakutsk YST",isDst:!1,cities:"Chita, Khandyga, Yakutsk"}],n=[{utc:["America/Scoresbysund","Atlantic/Azores"],label:"Azores Standard Time",keywords:"Azores Standard Time Scoresbysund Azores AST",isDst:!0,cities:"Scoresbysund, Azores"},{utc:["Atlantic/Cape_Verde","Etc/GMT+1"],label:"Cape Verde Standard Time",keywords:"Cape Verde Standard Time Cape Verde GMT+1 CVST CST",isDst:!0,cities:"Cape Verde"}],r=[{utc:["Antarctica/Casey","Australia/Perth"],label:"West Australia Standard Time",keywords:"W. Australia Standard Time Casey Perth WAST",isDst:!1,cities:"Casey, Perth"},{utc:["Australia/Adelaide","Australia/Broken_Hill"],label:"Central Australian Standard Time",keywords:"Cen. Australia Standard Time Adelaide Broken Hill CAST",isDst:!1,cities:"Adelaide, Broken Hill"},{utc:["Australia/Darwin"],label:"Australian Central Standard Time",keywords:"AUS Central Standard Time Darwin ACST",isDst:!1,cities:"Darwin"},{utc:["Australia/Brisbane","Australia/Lindeman"],label:"East Australian Standard Time",keywords:"East Australian Australia Standard Time Brisbane Lindeman EAST",isDst:!1,cities:"Brisbane, Lindeman"},{utc:["Australia/Melbourne","Australia/Sydney"],label:"Australian Eastern Standard Time",keywords:"AUS Eastern Standard Time Melbourne Sydney AEST",isDst:!1,cities:"Melbourne, Sydney, Canberra"},{utc:["Australia/Currie","Australia/Hobart"],label:"Tasmania Standard Time",keywords:"Tasmania Standard Time Currie Hobart TST",isDst:!1,cities:"Currie, Hobart"}],i=[{utc:["Europe/London","Europe/Isle_of_Man","Europe/Guernsey","Europe/Jersey"],label:"GMT Standard Time",keywords:"GMT Standard Time Isle of_Man Guernsey Jersey London Edinburgh England",isDst:!0,cities:"London, Edinburgh, Isle of Man, Guernsey, Jersey"},{utc:["WET","Atlantic/Canary","Atlantic/Faeroe","Atlantic/Madeira","Europe/Dublin","Europe/Lisbon"],label:"Western European Time",keywords:"WET Western European Time Canary Faeroe Madeira Dublin Lisbon",isDst:!0,cities:"Canary, Faeroe, Madeira, Dublin, Lisbon"},{utc:["CET","Africa/Ceuta","Arctic/Longyearbyen","Europe/Amsterdam","Europe/Andorra","Europe/Belgrade","Europe/Berlin","Europe/Bratislava","Europe/Brussels","Europe/Budapest","Europe/Busingen","Europe/Copenhagen","Europe/Gibraltar","Europe/Ljubljana","Europe/Luxembourg","Europe/Madrid","Europe/Malta","Europe/Monaco","Europe/Oslo","Europe/Paris","Europe/Podgorica","Europe/Prague","Europe/Rome","Europe/San_Marino","Europe/Sarajevo","Europe/Skopje","Europe/Stockholm","Europe/Tirane","Europe/Vaduz","Europe/Vatican","Europe/Vienna","Europe/Warsaw","Europe/Zagreb","Europe/Zurich"],label:"Central European Time",keywords:"CET Central European Time Amsterdam Andorra Belgrade Berlin Bern Bratislava Brussels Budapest Busingen Ceuta Copenhagen Gibraltar Ljubljana Longyearbyen Luxembourg Madrid Malta Monaco Oslo Paris Podgorica Prague Rome San Marino Stockholm Tirane Vaduz Vatican Vienna Zurich Spain France Italy Germany",isDst:!0,cities:"Amsterdam, Andorra, Belgrade, Berlin, Bern, Bratislava, Brussels, Budapest, Busingen, Ceuta, Copenhagen, Gibraltar, Ljubljana, Longyearbyen, Luxembourg, Madrid, Malta, Monaco, Oslo, Paris, Podgorica, Prague, Rome, San Marino, Stockholm, Tirane, Vaduz, Vatican, Vienna, Zurich"},{utc:["EET","Asia/Nicosia","Europe/Athens","Europe/Bucharest","Europe/Chisinau","Europe/Helsinki","Europe/Kiev","Europe/Mariehamn","Europe/Nicosia","Europe/Riga","Europe/Sofia","Europe/Tallinn","Europe/Uzhgorod","Europe/Vilnius","Europe/Zaporozhye"],label:"Eastern European Time",keywords:"Eastern European Time Athens Bucharest Chisinau Helsinki Kiev Mariehamn Nicosia Riga Sofia Tallinn Uzhgorod Vilnius Zaporozhye EEST",isDst:!0,cities:"Athens, Bucharest, Chisinau, Helsinki, Kiev, Mariehamn, Nicosia, Riga, Sofia, Tallinn, Uzhgorod, Vilnius, Zaporozhye"},{utc:["Europe/Istanbul"],label:"Turkey Standard Time",keywords:"Turkey Standard Time Istanbul TST",isDst:!1,cities:"Istanbul"},{utc:["Europe/Kaliningrad"],label:"Kaliningrad Standard Time",keywords:"Kaliningrad Standard Time Kaliningrad KST",isDst:!1,cities:"Kaliningrad"},{utc:["Europe/Kirov","Europe/Moscow","Europe/Simferopol","Europe/Volgograd","Europe/Minsk"],label:"Moscow Standard Time",keywords:"Moscow Standard Time Kirov Moscow Simferopol Volgograd Minsk MST",isDst:!1,cities:"Moscow, St. Petersburg, Volgograd, Minsk, Kirov"},{utc:["Europe/Astrakhan","Europe/Samara","Europe/Ulyanovsk"],label:"Samara Time",keywords:"Samara Time Astrakhan Samara Ulyanovsk ST",isDst:!1,cities:"Samara, Ulyanovsk, Saratov"}],o=[{utc:["Etc/GMT+11","Pacific/Midway","Pacific/Niue","Pacific/Pago_Pago"],label:"Coordinated Universal Time (UTC -11)",keywords:"UTC-11 GMT+11 Midway Niue Pago Pago CUT",isDst:!1,cities:"Midway, Pago Pago"},{utc:["Pacific/Apia"],label:"Samoa Standard Time",keywords:"Samoa Standard Time Apia SST",isDst:!1,cities:"Apia"},{utc:["Antarctica/McMurdo","Pacific/Auckland"],label:"New Zealand Standard Time",keywords:"New Zealand Standard Time Wellington McMurdo Auckland NST",isDst:!1,cities:"Auckland, Wellington, McMurdo"},{utc:["Pacific/Fiji"],label:"Fiji Standard Time",keywords:"Fiji Standard Time Fiji FST",isDst:!1,cities:"Fiji"},{utc:["Etc/GMT-12","Pacific/Funafuti","Pacific/Kwajalein","Pacific/Majuro","Pacific/Nauru","Pacific/Tarawa","Pacific/Wake","Pacific/Wallis"],label:"Coordinated Universal Time (UtC +12)",keywords:"UTC+12 GMT-12 Funafuti Kwajalein Majuro Nauru Tarawa Wake Wallis CUT",isDst:!1,cities:"Funafuti, Kwajalein, Majuro, Nauru, Tarawa, Wake, Wallis"},{utc:["Antarctica/DumontDUrville","Etc/GMT-10","Pacific/Guam","Pacific/Port_Moresby","Pacific/Saipan","Pacific/Truk"],label:"West Pacific Standard Time",keywords:"West Pacific Standard Time DumontDUrville GMT-10 Guam Port Moresby Saipan Truk WPST",isDst:!1,cities:"DumontDUrville, Guam, Port Moresby, Saipan, Truk"},{utc:["Antarctica/Macquarie","Etc/GMT-11","Pacific/Efate","Pacific/Guadalcanal","Pacific/Kosrae","Pacific/Noumea","Pacific/Ponape"],label:"Central Pacific Standard Time",keywords:"Central Pacific Standard Time Macquarie GMT-11 Efate Guadalcanal Kosrae Noumea Ponape CPST",isDst:!1,cities:"Macquarie, Efate, Guadalcanal, Kosrae, Noumea, Ponape"},{utc:["Etc/GMT-13","Pacific/Enderbury","Pacific/Fakaofo","Pacific/Tongatapu"],label:"Tonga Standard Time",keywords:"Tonga Standard Time GMT-13 Enderbury Fakaofo Tongatapu TST",isDst:!1,cities:"Enderbury, Fakaofo, Tongatapu"},{utc:["Etc/GMT+12"],label:"International Date Line West",keywords:"Dateline Standard Time GMT+12 IDLW",isDst:!1,cities:""}],s=[{utc:["America/Los_Angeles","America/Tijuana","America/Vancouver","PST8PDT"],label:"Pacific Standard Time",keywords:"Pacific Standard Time PST8PDT PST California Las Vegas Los Angeles Nevada Palm Springs San Diego San Francisco Tijuana Vancouver Washington",isDst:!0,cities:"California, Las Vegas, Los Angeles, Nevada, Palm Springs, San Diego, San Francisco, Tijuana, Vancouver, Washington"},{utc:["America/Creston","America/Dawson","America/Dawson_Creek","America/Hermosillo","America/Phoenix","America/Whitehorse","Etc/GMT+7"],label:"Mountain Time",keywords:"US Mountain Standard Time GMT+7 MT MST Creston Dawson Creek Hermosillo Phoenix Whitehorse",isDst:!1,cities:"Creston, Dawson, Dawson Creek, Hermosillo, Phoenix, Whitehorse"},{utc:["America/Boise","America/Cambridge_Bay","America/Denver","America/Edmonton","America/Inuvik","America/Ojinaga","America/Yellowknife","MST7MDT"],label:"Mountain Time",keywords:"Mountain Time MST7MDT MT MST MDT Boise Cambridge_Bay Denver Edmonton Inuvik Ojinaga Yellowknife",isDst:!0,cities:"Boise, Cambridge Bay, Denver, Edmonton, Inuvik, Ojinaga, Yellowknife"},{utc:["America/Chicago","America/Indiana/Knox","America/Indiana/Tell_City","America/Matamoros","America/Menominee","America/North_Dakota/Beulah","America/North_Dakota/Center","America/North_Dakota/New_Salem","America/Rainy_River","America/Rankin_Inlet","America/Resolute","America/Winnipeg","CST6CDT"],label:"Central Time",keywords:"Central Standard Time CST6CDT CT CDT Austin Beulah Center Chicago Illinois Knox Matamoros Menominee Nashville New Salem Rainy River Rankin Inlet Resolute San Antonio Tell City Tennessee Texas Winnipeg",isDst:!0,cities:"Austin, Beulah, Center, Chicago, Knox, Matamoros, Menominee, Nashville, New Salem, Rainy River, Rankin Inlet, Resolute, San Antonio, Tell City, Tennessee, Texas, Winnipeg"},{utc:["America/New_York","America/Detroit","America/Havana","America/Indiana/Petersburg","America/Indiana/Vincennes","America/Indiana/Winamac","America/Iqaluit","America/Kentucky/Monticello","America/Louisville","America/Montreal","America/Nassau","America/Nipigon","America/Pangnirtung","America/Port-au-Prince","America/Thunder_Bay","America/Toronto"],label:"Eastern Time",keywords:"Eastern Standard Time EST ET Boston Massachusetts Charleston South Carolina Detroit Florida Havana Iqaluit Louisville Miami Monticello Montreal Nassau New York Nipigon Orlando Pangnirtung Port-au-Prince Petersburg Saint Augustine Thunder Bay Toronto Vincennes Washington D.C Winamac",isDst:!0,cities:"Boston, Charleston, Detroit, Florida, Havana, Iqaluit, Louisville, Miami, Monticello, Montreal, Nassau, New York, Nipigon, Orlando, Pangnirtung, Port-au-Prince, Petersburg, Saint Augustine, Thunder Bay, Toronto, Vincennes, Washington D.C, Winamac"},{utc:["America/Anchorage","America/Juneau","America/Nome","America/Sitka","America/Yakutat"],label:"Alaskan Time",keywords:"Alaskan Standard Time AT Anchorage Juneau Nome Sitka Yakutat",isDst:!0,cities:"Anchorage, Juneau, Nome, Sitka, Yakutat"},{utc:["America/St_Johns"],label:"Newfoundland Time",keywords:"Newfoundland Standard Time NT St Johns",isDst:!0,cities:"St Johns"},{utc:["Etc/GMT+10","Pacific/Honolulu","Pacific/Johnston","Pacific/Rarotonga","Pacific/Tahiti"],label:"Hawaiian Time",keywords:"Hawaiian Standard Time T GMT+10 Honolulu Johnston Lahaina Rarotonga Tahiti",isDst:!1,cities:"Honolulu, Johnston, Lahaina, Rarotonga, Tahiti"}];var c,u,l,d,f,m,_,p={},h=[],y=/acit|ex(?:s|g|n|p|$)|rph|grid|ows|mnc|ntw|ine[ch]|zoo|^ord|itera/i,A=Array.isArray;function S(e,a){for(var t in a)e[t]=a[t];return e}function b(e){var a=e.parentNode;a&&a.removeChild(e)}function T(e,a,t){var n,r,i,o={};for(i in a)"key"==i?n=a[i]:"ref"==i?r=a[i]:o[i]=a[i];if(arguments.length>2&&(o.children=arguments.length>3?c.call(arguments,2):t),"function"==typeof e&&null!=e.defaultProps)for(i in e.defaultProps)void 0===o[i]&&(o[i]=e.defaultProps[i]);return g(e,o,n,r,null)}function g(e,a,t,n,r){var i={type:e,props:a,key:t,ref:n,__k:null,__:null,__b:0,__e:null,__d:void 0,__c:null,__h:null,constructor:void 0,__v:null==r?++l:r};return null==r&&null!=u.vnode&&u.vnode(i),i}function k(e){return e.children}function v(e,a){this.props=e,this.context=a}function w(e,a){if(null==a)return e.__?w(e.__,e.__.__k.indexOf(e)+1):null;for(var t;a<e.__k.length;a++)if(null!=(t=e.__k[a])&&null!=t.__e)return t.__d||t.__e;return"function"==typeof e.type?w(e):null}function M(e){var a,t;if(null!=(e=e.__)&&null!=e.__c){for(e.__e=e.__c.base=null,a=0;a<e.__k.length;a++)if(null!=(t=e.__k[a])&&null!=t.__e){e.__e=e.__c.base=t.__e;break}return M(e)}}function C(e){(!e.__d&&(e.__d=!0)&&d.push(e)&&!D.__r++||f!==u.debounceRendering)&&((f=u.debounceRendering)||m)(D)}function D(){var e,a,t,n,r,i,o,s,c;for(d.sort(_);e=d.shift();)e.__d&&(a=d.length,n=void 0,r=void 0,i=void 0,s=(o=(t=e).__v).__e,(c=t.__P)&&(n=[],r=[],(i=S({},o)).__v=o.__v+1,L(c,o,i,t.__n,void 0!==c.ownerSVGElement,null!=o.__h?[s]:null,n,null==s?w(o):s,o.__h,r),O(n,o,r),o.__e!=s&&M(o)),d.length>a&&d.sort(_));D.__r=0}function E(e,a,t,n,r,i,o,s,c,u,l){var d,f,m,_,y,S,b,T,v,M=0,C=n&&n.__k||h,D=C.length,E=D,j=a.length;for(t.__k=[],d=0;d<j;d++)null!=(_=t.__k[d]=null==(_=a[d])||"boolean"==typeof _||"function"==typeof _?null:"string"==typeof _||"number"==typeof _||"bigint"==typeof _?g(null,_,null,null,_):A(_)?g(k,{children:_},null,null,null):_.__b>0?g(_.type,_.props,_.key,_.ref?_.ref:null,_.__v):_)?(_.__=t,_.__b=t.__b+1,-1===(T=B(_,C,b=d+M,E))?m=p:(m=C[T]||p,C[T]=void 0,E--),L(e,_,m,r,i,o,s,c,u,l),y=_.__e,(f=_.ref)&&m.ref!=f&&(m.ref&&V(m.ref,null,_),l.push(f,_.__c||y,_)),null!=y&&(null==S&&(S=y),(v=m===p||null===m.__v)?-1==T&&M--:T!==b&&(T===b+1?M++:T>b?E>j-b?M+=T-b:M--:M=T<b&&T==b-1?T-b:0),b=d+M,"function"!=typeof _.type||T===b&&m.__k!==_.__k?"function"==typeof _.type||T===b&&!v?void 0!==_.__d?(c=_.__d,_.__d=void 0):c=y.nextSibling:c=N(e,y,c):c=P(_,c,e),"function"==typeof t.type&&(t.__d=c))):(m=C[d])&&null==m.key&&m.__e&&(m.__e==c&&(m.__=n,c=w(m)),K(m,m,!1),C[d]=null);for(t.__e=S,d=D;d--;)null!=C[d]&&("function"==typeof t.type&&null!=C[d].__e&&C[d].__e==t.__d&&(t.__d=C[d].__e.nextSibling),K(C[d],C[d]))}function P(e,a,t){for(var n,r=e.__k,i=0;r&&i<r.length;i++)(n=r[i])&&(n.__=e,a="function"==typeof n.type?P(n,a,t):N(t,n.__e,a));return a}function N(e,a,t){return null==t||t.parentNode!==e?e.insertBefore(a,null):a==t&&null!=a.parentNode||e.insertBefore(a,t),a.nextSibling}function B(e,a,t,n){var r=e.key,i=e.type,o=t-1,s=t+1,c=a[t];if(null===c||c&&r==c.key&&i===c.type)return t;if(n>(null!=c?1:0))for(;o>=0||s<a.length;){if(o>=0){if((c=a[o])&&r==c.key&&i===c.type)return o;o--}if(s<a.length){if((c=a[s])&&r==c.key&&i===c.type)return s;s++}}return-1}function j(e,a,t){"-"===a[0]?e.setProperty(a,null==t?"":t):e[a]=null==t?"":"number"!=typeof t||y.test(a)?t:t+"px"}function I(e,a,t,n,r){var i;e:if("style"===a)if("string"==typeof t)e.style.cssText=t;else{if("string"==typeof n&&(e.style.cssText=n=""),n)for(a in n)t&&a in t||j(e.style,a,"");if(t)for(a in t)n&&t[a]===n[a]||j(e.style,a,t[a])}else if("o"===a[0]&&"n"===a[1])i=a!==(a=a.replace(/(PointerCapture)$|Capture$/,"$1")),a=a.toLowerCase()in e?a.toLowerCase().slice(2):a.slice(2),e.l||(e.l={}),e.l[a+i]=t,t?n?t.u=n.u:(t.u=Date.now(),e.addEventListener(a,i?x:G,i)):e.removeEventListener(a,i?x:G,i);else if("dangerouslySetInnerHTML"!==a){if(r)a=a.replace(/xlink(H|:h)/,"h").replace(/sName$/,"s");else if("width"!==a&&"height"!==a&&"href"!==a&&"list"!==a&&"form"!==a&&"tabIndex"!==a&&"download"!==a&&"rowSpan"!==a&&"colSpan"!==a&&"role"!==a&&a in e)try{e[a]=null==t?"":t;break e}catch(o){}"function"==typeof t||(null==t||!1===t&&"-"!==a[4]?e.removeAttribute(a):e.setAttribute(a,t))}}function G(e){var a=this.l[e.type+!1];if(e.t){if(e.t<=a.u)return}else e.t=Date.now();return a(u.event?u.event(e):e)}function x(e){return this.l[e.type+!0](u.event?u.event(e):e)}function L(e,a,t,n,r,i,o,s,l,d){var f,m,_,h,y,T,g,M,C,D,P,N,B,j,G,x=a.type;if(void 0!==a.constructor)return null;null!=t.__h&&(l=t.__h,s=a.__e=t.__e,a.__h=null,i=[s]),(f=u.__b)&&f(a);e:if("function"==typeof x)try{if(M=a.props,C=(f=x.contextType)&&n[f.__c],D=f?C?C.props.value:f.__:n,t.__c?g=(m=a.__c=t.__c).__=m.__E:("prototype"in x&&x.prototype.render?a.__c=m=new x(M,D):(a.__c=m=new v(M,D),m.constructor=x,m.render=z),C&&C.sub(m),m.props=M,m.state||(m.state={}),m.context=D,m.__n=n,_=m.__d=!0,m.__h=[],m._sb=[]),null==m.__s&&(m.__s=m.state),null!=x.getDerivedStateFromProps&&(m.__s==m.state&&(m.__s=S({},m.__s)),S(m.__s,x.getDerivedStateFromProps(M,m.__s))),h=m.props,y=m.state,m.__v=a,_)null==x.getDerivedStateFromProps&&null!=m.componentWillMount&&m.componentWillMount(),null!=m.componentDidMount&&m.__h.push(m.componentDidMount);else{if(null==x.getDerivedStateFromProps&&M!==h&&null!=m.componentWillReceiveProps&&m.componentWillReceiveProps(M,D),!m.__e&&(null!=m.shouldComponentUpdate&&!1===m.shouldComponentUpdate(M,m.__s,D)||a.__v===t.__v)){for(a.__v!==t.__v&&(m.props=M,m.state=m.__s,m.__d=!1),a.__e=t.__e,a.__k=t.__k,a.__k.forEach((function(e){e&&(e.__=a)})),P=0;P<m._sb.length;P++)m.__h.push(m._sb[P]);m._sb=[],m.__h.length&&o.push(m);break e}null!=m.componentWillUpdate&&m.componentWillUpdate(M,m.__s,D),null!=m.componentDidUpdate&&m.__h.push((function(){m.componentDidUpdate(h,y,T)}))}if(m.context=D,m.props=M,m.__P=e,m.__e=!1,N=u.__r,B=0,"prototype"in x&&x.prototype.render){for(m.state=m.__s,m.__d=!1,N&&N(a),f=m.render(m.props,m.state,m.context),j=0;j<m._sb.length;j++)m.__h.push(m._sb[j]);m._sb=[]}else do{m.__d=!1,N&&N(a),f=m.render(m.props,m.state,m.context),m.state=m.__s}while(m.__d&&++B<25);m.state=m.__s,null!=m.getChildContext&&(n=S(S({},n),m.getChildContext())),_||null==m.getSnapshotBeforeUpdate||(T=m.getSnapshotBeforeUpdate(h,y)),E(e,A(G=null!=f&&f.type===k&&null==f.key?f.props.children:f)?G:[G],a,t,n,r,i,o,s,l,d),m.base=a.__e,a.__h=null,m.__h.length&&o.push(m),g&&(m.__E=m.__=null)}catch(L){a.__v=null,(l||null!=i)&&(a.__e=s,a.__h=!!l,i[i.indexOf(s)]=null),u.__e(L,a,t)}else null==i&&a.__v===t.__v?(a.__k=t.__k,a.__e=t.__e):a.__e=function(e,a,t,n,r,i,o,s,u){var l,d,f,m=t.props,_=a.props,h=a.type,y=0;if("svg"===h&&(r=!0),null!=i)for(;y<i.length;y++)if((l=i[y])&&"setAttribute"in l==!!h&&(h?l.localName===h:3===l.nodeType)){e=l,i[y]=null;break}if(null==e){if(null===h)return document.createTextNode(_);e=r?document.createElementNS("http://www.w3.org/2000/svg",h):document.createElement(h,_.is&&_),i=null,s=!1}if(null===h)m===_||s&&e.data===_||(e.data=_);else{if(i=i&&c.call(e.childNodes),d=(m=t.props||p).dangerouslySetInnerHTML,f=_.dangerouslySetInnerHTML,!s){if(null!=i)for(m={},y=0;y<e.attributes.length;y++)m[e.attributes[y].name]=e.attributes[y].value;(f||d)&&(f&&(d&&f.__html==d.__html||f.__html===e.innerHTML)||(e.innerHTML=f&&f.__html||""))}if(function(e,a,t,n,r){var i;for(i in t)"children"===i||"key"===i||i in a||I(e,i,null,t[i],n);for(i in a)r&&"function"!=typeof a[i]||"children"===i||"key"===i||"value"===i||"checked"===i||t[i]===a[i]||I(e,i,a[i],t[i],n)}(e,_,m,r,s),f)a.__k=[];else if(E(e,A(y=a.props.children)?y:[y],a,t,n,r&&"foreignObject"!==h,i,o,i?i[0]:t.__k&&w(t,0),s,u),null!=i)for(y=i.length;y--;)null!=i[y]&&b(i[y]);s||("value"in _&&void 0!==(y=_.value)&&(y!==e.value||"progress"===h&&!y||"option"===h&&y!==m.value)&&I(e,"value",y,m.value,!1),"checked"in _&&void 0!==(y=_.checked)&&y!==e.checked&&I(e,"checked",y,m.checked,!1))}return e}(t.__e,a,t,n,r,i,o,l,d);(f=u.diffed)&&f(a)}function O(e,a,t){for(var n=0;n<t.length;n++)V(t[n],t[++n],t[++n]);u.__c&&u.__c(a,e),e.some((function(a){try{e=a.__h,a.__h=[],e.some((function(e){e.call(a)}))}catch(t){u.__e(t,a.__v)}}))}function V(e,a,t){try{"function"==typeof e?e(a):e.current=a}catch(n){u.__e(n,t)}}function K(e,a,t){var n,r;if(u.unmount&&u.unmount(e),(n=e.ref)&&(n.current&&n.current!==e.__e||V(n,null,a)),null!=(n=e.__c)){if(n.componentWillUnmount)try{n.componentWillUnmount()}catch(i){u.__e(i,a)}n.base=n.__P=null,e.__c=void 0}if(n=e.__k)for(r=0;r<n.length;r++)n[r]&&K(n[r],a,t||"function"!=typeof e.type);t||null==e.__e||b(e.__e),e.__=e.__e=e.__d=void 0}function z(e,a,t){return this.constructor(e,t)}c=h.slice,u={__e:function(e,a,t,n){for(var r,i,o;a=a.__;)if((r=a.__c)&&!r.__)try{if((i=r.constructor)&&null!=i.getDerivedStateFromError&&(r.setState(i.getDerivedStateFromError(e)),o=r.__d),null!=r.componentDidCatch&&(r.componentDidCatch(e,n||{}),o=r.__d),o)return r.__E=r}catch(s){e=s}throw e}},l=0,v.prototype.setState=function(e,a){var t;t=null!=this.__s&&this.__s!==this.state?this.__s:this.__s=S({},this.state),"function"==typeof e&&(e=e(S({},t),this.props)),e&&S(t,e),null!=e&&this.__v&&(a&&this._sb.push(a),C(this))},v.prototype.forceUpdate=function(e){this.__v&&(this.__e=!0,e&&this.__h.push(e),C(this))},v.prototype.render=k,d=[],m="function"==typeof Promise?Promise.prototype.then.bind(Promise.resolve()):setTimeout,_=function(e,a){return e.__v.__b-a.__v.__b},D.__r=0;var H=function(e,a,t,n){var r;a[0]=0;for(var i=1;i<a.length;i++){var o=a[i++],s=a[i]?(a[0]|=o?1:2,t[a[i++]]):a[++i];3===o?n[0]=s:4===o?n[1]=Object.assign(n[1]||{},s):5===o?(n[1]=n[1]||{})[a[++i]]=s:6===o?n[1][a[++i]]+=s+"":o?(r=e.apply(s,H(e,s,t,["",null])),n.push(r),s[0]?a[0]|=2:(a[i-2]=0,a[i]=r)):n.push(s)}return n},U=new Map;(function(e){var a=U.get(this);return a||(a=new Map,U.set(this,a)),(a=H(this,a.get(e)||(a.set(e,a=function(e){for(var a,t,n=1,r="",i="",o=[0],s=function(e){1===n&&(e||(r=r.replace(/^\s*\n\s*|\s*\n\s*$/g,"")))?o.push(0,e,r):3===n&&(e||r)?(o.push(3,e,r),n=2):2===n&&"..."===r&&e?o.push(4,e,0):2===n&&r&&!e?o.push(5,0,!0,r):n>=5&&((r||!e&&5===n)&&(o.push(n,0,r,t),n=6),e&&(o.push(n,e,0,t),n=6)),r=""},c=0;c<e.length;c++){c&&(1===n&&s(),s(c));for(var u=0;u<e[c].length;u++)a=e[c][u],1===n?"<"===a?(s(),o=[o],n=3):r+=a:4===n?"--"===r&&">"===a?(n=1,r=""):r=a+r[0]:i?a===i?i="":r+=a:'"'===a||"'"===a?i=a:">"===a?(s(),n=1):n&&("="===a?(n=5,t=r,r=""):"/"===a&&(n<5||">"===e[c][u+1])?(s(),3===n&&(o=o[0]),n=o,(o=o[0]).push(2,0,n),n=0):" "===a||"\t"===a||"\n"===a||"\r"===a?(s(),n=2):r+=a),3===n&&"!--"===r&&(n=4,o=o[0])}return s(),o}(e)),a),arguments,[])).length>1?a:a[0]}).bind(T);var R,F,W,J,q=0,$=[],Y=[],Z=u.__b,Q=u.__r,X=u.diffed,ee=u.__c,ae=u.unmount;function te(e,a){u.__h&&u.__h(F,e,q||a),q=0;var t=F.__H||(F.__H={__:[],__h:[]});return e>=t.__.length&&t.__.push({__V:Y}),t.__[e]}function ne(e){return q=1,function(e,a,t){var n=te(R++,2);if(n.t=e,!n.__c&&(n.__=[t?t(a):le(void 0,a),function(e){var a=n.__N?n.__N[0]:n.__[0],t=n.t(a,e);a!==t&&(n.__N=[t,n.__[1]],n.__c.setState({}))}],n.__c=F,!F.u)){var r=function(e,a,t){if(!n.__c.__H)return!0;var r=n.__c.__H.__.filter((function(e){return e.__c}));if(r.every((function(e){return!e.__N})))return!i||i.call(this,e,a,t);var o=!1;return r.forEach((function(e){if(e.__N){var a=e.__[0];e.__=e.__N,e.__N=void 0,a!==e.__[0]&&(o=!0)}})),!(!o&&n.__c.props===e)&&(!i||i.call(this,e,a,t))};F.u=!0;var i=F.shouldComponentUpdate,o=F.componentWillUpdate;F.componentWillUpdate=function(e,a,t){if(this.__e){var n=i;i=void 0,r(e,a,t),i=n}o&&o.call(this,e,a,t)},F.shouldComponentUpdate=r}return n.__N||n.__}(le,e)}function re(e,a){var t,n,r=te(R++,3);!u.__s&&(t=r.__H,n=a,!t||t.length!==n.length||n.some((function(e,a){return e!==t[a]})))&&(r.__=e,r.i=a,F.__H.__h.push(r))}function ie(){for(var e;e=$.shift();)if(e.__P&&e.__H)try{e.__H.__h.forEach(ce),e.__H.__h.forEach(ue),e.__H.__h=[]}catch(a){e.__H.__h=[],u.__e(a,e.__v)}}u.__b=function(e){F=null,Z&&Z(e)},u.__r=function(e){Q&&Q(e),R=0;var a=(F=e.__c).__H;a&&(W===F?(a.__h=[],F.__h=[],a.__.forEach((function(e){e.__N&&(e.__=e.__N),e.__V=Y,e.__N=e.i=void 0}))):(a.__h.forEach(ce),a.__h.forEach(ue),a.__h=[],R=0)),W=F},u.diffed=function(e){X&&X(e);var a=e.__c;a&&a.__H&&(a.__H.__h.length&&(1!==$.push(a)&&J===u.requestAnimationFrame||((J=u.requestAnimationFrame)||se)(ie)),a.__H.__.forEach((function(e){e.i&&(e.__H=e.i),e.__V!==Y&&(e.__=e.__V),e.i=void 0,e.__V=Y}))),W=F=null},u.__c=function(e,a){a.some((function(e){try{e.__h.forEach(ce),e.__h=e.__h.filter((function(e){return!e.__||ue(e)}))}catch(t){a.some((function(e){e.__h&&(e.__h=[])})),a=[],u.__e(t,e.__v)}})),ee&&ee(e,a)},u.unmount=function(e){ae&&ae(e);var a,t=e.__c;t&&t.__H&&(t.__H.__.forEach((function(e){try{ce(e)}catch(t){a=t}})),t.__H=void 0,a&&u.__e(a,t.__v))};var oe="function"==typeof requestAnimationFrame;function se(e){var a,t=function(){clearTimeout(n),oe&&cancelAnimationFrame(a),setTimeout(e)},n=setTimeout(t,100);oe&&(a=requestAnimationFrame(t))}function ce(e){var a=F,t=e.__c;"function"==typeof t&&(e.__c=void 0,t()),F=a}function ue(e){var a=F;e.__c=e.__(),F=a}function le(e,a){return"function"==typeof a?a(e):a}function de({children:e,customClass:a="",hideCitiesTooltip:t=!1,id:n="",key:r="",timezone:i,onClick:o,is24H:s,dataCy:c}){const{label:u,keywords:l,isDst:d,cities:f}=i;return T("button",{id:n,key:r,onClick:o,value:l,className:`flex items-center gap-2 py-2 text-md ${a}`,"data-cy":c,type:"button"},T("div",{className:"flex min-w-0 space-x-1 text-left break-words grow"},t?u:T("span",{value:l,title:f},u),d&&T("span",{value:l,title:"Daylight savings time applicable"},"🌞")),T("span",{className:"flex items-center shrink-0"},(e=>{const a={timeZone:e,hour12:!s,hour:"numeric",minute:"numeric"};return(new Date).toLocaleString("en-US",a)})(i.utc[0])),e)}function fe({selectedValue:e,isOverlayVisible:a,elementId:t,is24H:n,setIsOverlayVisible:r}){const i=`${t}-search-box`;return re((()=>{if(!a)return;document.getElementById(i).focus()}),[a]),T("div",{className:"flex flex-col justify-between w-full neeto-ui-text-gray-700 neeto-ui-bg-white neeto-ui-rounded"},T(de,{is24H:n,onClick:()=>{r((e=>!e))},customClass:"px-4 ntsp-button-border",timezone:e,hideCitiesTooltip:!0,dataCy:`${t}-select-button`},T("span",{className:"flex items-center shrink-0"},T("svg",{height:"16",width:"16",viewBox:"0 2 20 20","aria-hidden":"true",focusable:"false"},T("path",{d:"M4.516 7.548c0.436-0.446 1.043-0.481 1.576 0l3.908 3.747 3.908-3.747c0.533-0.481 1.141-0.446 1.574 0 0.436 0.445 0.408 1.197 0 1.615-0.406 0.418-4.695 4.502-4.695 4.502-0.217 0.223-0.502 0.335-0.787 0.335s-0.57-0.112-0.789-0.335c0 0-4.287-4.084-4.695-4.502s-0.436-1.17 0-1.615z"})))))}function me({searchInput:e,setSearchInput:a,elementId:t}){return T("div",{className:"neeto-ui-input__wrapper"},T("div",{className:"neeto-ui-input neeto-ui-input--large"},T("input",{id:`${t}-search-box`,type:"text",placeholder:"Search",onInput:e=>a(e.target.value),className:"",value:e,"data-cy":`${t}-search-box`})))}const _e=(e,a)=>{null!==a?localStorage.setItem(e,JSON.stringify(a)):localStorage.removeItem(e)},pe=[{"US/Canada":s},{America:a},{Asia:t},{Africa:e},{Atlantic:n},{Australia:r},{Europe:i},{Pacific:o}],he=pe.reduce(((e,a)=>[...e,...a[Object.keys(a)[0]]]),[]),ye=e=>e&&he.find((a=>a.utc.includes(e))),Ae=(()=>{const e=Intl.DateTimeFormat().resolvedOptions().timeZone;return ye(e)})()||he[0],Se=e=>`option-${e.replaceAll(" ","_").toLowerCase()}`,be=e=>{if(!e||!e.label)return"";let{label:a}=e;return e.isDst&&(a+="-dst"),`${((e,a="")=>"number"==typeof e?String(e):e&&"string"==typeof e&&e.replace?e.replace(/[\s_]/g,"-").replace(/([a-z])([A-Z])/g,"$1-$2").replace(/-+/g,"-").toLowerCase():a)(a)}-select-option`},Te=(e,a,t,n)=>T("div",null,e.map((e=>{const r=Object.keys(e)[0],i=e[r];return T("div",{className:"flex flex-col px-2 py-1 gap-1",key:r.toLowerCase()},T("span",{className:"pb-1 font-bold uppercase text-md"},r),i.map((e=>T(de,{is24H:n,timezone:e,id:Se(e.keywords),onClick:t,customClass:"px-2 ntsp-list-item neeto-ui-rounded cursor-pointer select-none "+(a.keywords===e.keywords?"ntsp-list-item--active":""),key:e.label,dataCy:be(e)}))))})));function ge(e){return null!=e&&"object"==typeof e&&!0===e["@@functional/placeholder"]}function ke(e){return function a(t){return 0===arguments.length||ge(t)?a:e.apply(this,arguments)}}function ve(e){return function a(t,n){switch(arguments.length){case 0:return a;case 1:return ge(t)?a:ke((function(a){return e(t,a)}));default:return ge(t)&&ge(n)?a:ge(t)?ke((function(a){return e(a,n)})):ge(n)?ke((function(a){return e(t,a)})):e(t,n)}}}function we(e,a){switch(e){case 0:return function(){return a.apply(this,arguments)};case 1:return function(e){return a.apply(this,arguments)};case 2:return function(e,t){return a.apply(this,arguments)};case 3:return function(e,t,n){return a.apply(this,arguments)};case 4:return function(e,t,n,r){return a.apply(this,arguments)};case 5:return function(e,t,n,r,i){return a.apply(this,arguments)};case 6:return function(e,t,n,r,i,o){return a.apply(this,arguments)};case 7:return function(e,t,n,r,i,o,s){return a.apply(this,arguments)};case 8:return function(e,t,n,r,i,o,s,c){return a.apply(this,arguments)};case 9:return function(e,t,n,r,i,o,s,c,u){return a.apply(this,arguments)};case 10:return function(e,t,n,r,i,o,s,c,u,l){return a.apply(this,arguments)};default:throw new Error("First argument to _arity must be a non-negative integer no greater than ten")}}function Me(e,a,t){return function(){for(var n=[],r=0,i=e,o=0,s=!1;o<a.length||r<arguments.length;){var c;o<a.length&&(!ge(a[o])||r>=arguments.length)?c=a[o]:(c=arguments[r],r+=1),n[o]=c,ge(c)?s=!0:i-=1,o+=1}return!s&&i<=0?t.apply(this,n):we(Math.max(0,i),Me(e,n,t))}}const Ce=ve((function(e,a){return 1===e?ke(a):we(e,Me(e,[],a))})),De=Array.isArray||function(e){return null!=e&&e.length>=0&&"[object Array]"===Object.prototype.toString.call(e)};function Ee(e,a,t){return function(){if(0===arguments.length)return t();var n=arguments[arguments.length-1];if(!De(n)){for(var r=0;r<e.length;){if("function"==typeof n[e[r]])return n[e[r]].apply(n,Array.prototype.slice.call(arguments,0,-1));r+=1}if(function(e){return null!=e&&"function"==typeof e["@@transducer/step"]}(n))return a.apply(null,Array.prototype.slice.call(arguments,0,-1))(n)}return t.apply(this,arguments)}}const Pe=function(){return this.xf["@@transducer/init"]()},Ne=function(e){return this.xf["@@transducer/result"](e)};function Be(e){for(var a,t=[];!(a=e.next()).done;)t.push(a.value);return t}function je(e,a,t){for(var n=0,r=t.length;n<r;){if(e(a,t[n]))return!0;n+=1}return!1}function Ie(e,a){return Object.prototype.hasOwnProperty.call(a,e)}const Ge="function"==typeof Object.is?Object.is:function(e,a){return e===a?0!==e||1/e==1/a:e!=e&&a!=a};var xe=Object.prototype.toString;const Le=function(){return"[object Arguments]"===xe.call(arguments)?function(e){return"[object Arguments]"===xe.call(e)}:function(e){return Ie("callee",e)}}();var Oe=!{toString:null}.propertyIsEnumerable("toString"),Ve=["constructor","valueOf","isPrototypeOf","toString","propertyIsEnumerable","hasOwnProperty","toLocaleString"],Ke=function(){return arguments.propertyIsEnumerable("length")}(),ze=function(e,a){for(var t=0;t<e.length;){if(e[t]===a)return!0;t+=1}return!1};const He="function"!=typeof Object.keys||Ke?ke((function(e){if(Object(e)!==e)return[];var a,t,n=[],r=Ke&&Le(e);for(a in e)!Ie(a,e)||r&&"length"===a||(n[n.length]=a);if(Oe)for(t=Ve.length-1;t>=0;)Ie(a=Ve[t],e)&&!ze(n,a)&&(n[n.length]=a),t-=1;return n})):ke((function(e){return Object(e)!==e?[]:Object.keys(e)}));const Ue=ke((function(e){return null===e?"Null":void 0===e?"Undefined":Object.prototype.toString.call(e).slice(8,-1)}));function Re(e,a,t,n){var r=Be(e);function i(e,a){return Fe(e,a,t.slice(),n.slice())}return!je((function(e,a){return!je(i,a,e)}),Be(a),r)}function Fe(e,a,t,n){if(Ge(e,a))return!0;var r,i,o=Ue(e);if(o!==Ue(a))return!1;if("function"==typeof e["fantasy-land/equals"]||"function"==typeof a["fantasy-land/equals"])return"function"==typeof e["fantasy-land/equals"]&&e["fantasy-land/equals"](a)&&"function"==typeof a["fantasy-land/equals"]&&a["fantasy-land/equals"](e);if("function"==typeof e.equals||"function"==typeof a.equals)return"function"==typeof e.equals&&e.equals(a)&&"function"==typeof a.equals&&a.equals(e);switch(o){case"Arguments":case"Array":case"Object":if("function"==typeof e.constructor&&"Promise"===(r=e.constructor,null==(i=String(r).match(/^function (\w*)/))?"":i[1]))return e===a;break;case"Boolean":case"Number":case"String":if(typeof e!=typeof a||!Ge(e.valueOf(),a.valueOf()))return!1;break;case"Date":if(!Ge(e.valueOf(),a.valueOf()))return!1;break;case"Error":return e.name===a.name&&e.message===a.message;case"RegExp":if(e.source!==a.source||e.global!==a.global||e.ignoreCase!==a.ignoreCase||e.multiline!==a.multiline||e.sticky!==a.sticky||e.unicode!==a.unicode)return!1}for(var s=t.length-1;s>=0;){if(t[s]===e)return n[s]===a;s-=1}switch(o){case"Map":return e.size===a.size&&Re(e.entries(),a.entries(),t.concat([e]),n.concat([a]));case"Set":return e.size===a.size&&Re(e.values(),a.values(),t.concat([e]),n.concat([a]));case"Arguments":case"Array":case"Object":case"Boolean":case"Number":case"String":case"Date":case"Error":case"RegExp":case"Int8Array":case"Uint8Array":case"Uint8ClampedArray":case"Int16Array":case"Uint16Array":case"Int32Array":case"Uint32Array":case"Float32Array":case"Float64Array":case"ArrayBuffer":break;default:return!1}var c=He(e);if(c.length!==He(a).length)return!1;var u=t.concat([e]),l=n.concat([a]);for(s=c.length-1;s>=0;){var d=c[s];if(!Ie(d,a)||!Fe(a[d],e[d],u,l))return!1;s-=1}return!0}const We=ve((function(e,a){return Fe(e,a,[],[])}));function Je(e,a,t){for(var n=0,r=t.length;n<r;)a=e(a,t[n]),n+=1;return a}var qe=function(){function e(e,a){this.xf=a,this.f=e}return e.prototype["@@transducer/init"]=Pe,e.prototype["@@transducer/result"]=Ne,e.prototype["@@transducer/step"]=function(e,a){return this.xf["@@transducer/step"](e,this.f(a))},e}();const $e=ve(Ee(["fantasy-land/map","map"],(function(e){return function(a){return new qe(e,a)}}),(function(e,a){switch(Object.prototype.toString.call(a)){case"[object Function]":return Ce(a.length,(function(){return e.call(this,a.apply(this,arguments))}));case"[object Object]":return Je((function(t,n){return t[n]=e(a[n]),t}),{},He(a));default:return function(e,a){for(var t=0,n=a.length,r=Array(n);t<n;)r[t]=e(a[t]),t+=1;return r}(e,a)}})));function Ye(e){return"[object String]"===Object.prototype.toString.call(e)}const Ze=ke((function(e){return!!De(e)||!!e&&("object"==typeof e&&(!Ye(e)&&(0===e.length||e.length>0&&(e.hasOwnProperty(0)&&e.hasOwnProperty(e.length-1)))))}));var Qe="undefined"!=typeof Symbol?Symbol.iterator:"@@iterator";function Xe(e,a,t){return function(n,r,i){if(Ze(i))return e(n,r,i);if(null==i)return r;if("function"==typeof i["fantasy-land/reduce"])return a(n,r,i,"fantasy-land/reduce");if(null!=i[Qe])return t(n,r,i[Qe]());if("function"==typeof i.next)return t(n,r,i);if("function"==typeof i.reduce)return a(n,r,i,"reduce");throw new TypeError("reduce: list must be array or iterable")}}function ea(e,a,t){for(var n=t.next();!n.done;)a=e(a,n.value),n=t.next();return a}function aa(e,a,t,n){return t[n](e,a)}const ta=Xe(Je,aa,ea);const na=ve((function(e,a){return"function"==typeof a["fantasy-land/ap"]?a["fantasy-land/ap"](e):"function"==typeof e.ap?e.ap(a):"function"==typeof e?function(t){return e(t)(a(t))}:ta((function(e,t){return function(e,a){var t;a=a||[];var n=(e=e||[]).length,r=a.length,i=[];for(t=0;t<n;)i[i.length]=e[t],t+=1;for(t=0;t<r;)i[i.length]=a[t],t+=1;return i}(e,$e(t,a))}),[],e)}));const ra=ke((function(e){return null==e}));const ia=ve((function(e,a){var t=Ce(e,a);return Ce(e,(function(){return Je(na,$e(t,arguments[0]),Array.prototype.slice.call(arguments,1))}))}));const oa=ke((function(e){return ia(e.length,e)}))(ke((function(e){return!e})));const sa=ke((function(e){return Ce(e.length,e)}));const ca=ke((function(e){return null!=e&&"function"==typeof e["fantasy-land/empty"]?e["fantasy-land/empty"]():null!=e&&null!=e.constructor&&"function"==typeof e.constructor["fantasy-land/empty"]?e.constructor["fantasy-land/empty"]():null!=e&&"function"==typeof e.empty?e.empty():null!=e&&null!=e.constructor&&"function"==typeof e.constructor.empty?e.constructor.empty():De(e)?[]:Ye(e)?"":function(e){return"[object Object]"===Object.prototype.toString.call(e)}(e)?{}:Le(e)?function(){return arguments}():(a=e,"[object Uint8ClampedArray]"===(t=Object.prototype.toString.call(a))||"[object Int8Array]"===t||"[object Uint8Array]"===t||"[object Int16Array]"===t||"[object Uint16Array]"===t||"[object Int32Array]"===t||"[object Uint32Array]"===t||"[object Float32Array]"===t||"[object Float64Array]"===t||"[object BigInt64Array]"===t||"[object BigUint64Array]"===t?e.constructor.from(""):void 0);var a,t}));const ua=ke((function(e){return null!=e&&We(e,ca(e))}));function la(e,a){(null==a||a>e.length)&&(a=e.length);for(var t=0,n=new Array(a);t<a;t++)n[t]=e[t];return n}function da(e,a){return function(e){if(Array.isArray(e))return e}(e)||function(e,a){var t=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,s=[],c=!0,u=!1;try{if(i=(t=t.call(e)).next,0===a){if(Object(t)!==t)return;c=!1}else for(;!(c=(n=i.call(t)).done)&&(s.push(n.value),s.length!==a);c=!0);}catch(l){u=!0,r=l}finally{try{if(!c&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(u)throw r}}return s}}(e,a)||function(e,a){if(e){if("string"==typeof e)return la(e,a);var t=Object.prototype.toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?la(e,a):void 0}}(e,a)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function fa(e){return(fa="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var ma=Symbol.for("immer-nothing"),_a=Symbol.for("immer-draftable"),pa=Symbol.for("immer-state"),ha="production"!==process.env.NODE_ENV?[function(e){return`The plugin for '${e}' has not been loaded into Immer. To enable the plugin, import and call \`enable${e}()\` when initializing your application.`},function(e){return`produce can only be called on things that are draftable: plain objects, arrays, Map, Set or classes that are marked with '[immerable]: true'. Got '${e}'`},"This object has been frozen and should not be mutated",function(e){return"Cannot use a proxy that has been revoked. Did you pass an object from inside an immer function to an async process? "+e},"An immer producer returned a new value *and* modified its draft. Either return a new value *or* modify the draft.","Immer forbids circular references","The first or second argument to `produce` must be a function","The third argument to `produce` must be a function or undefined","First argument to `createDraft` must be a plain object, an array, or an immerable object","First argument to `finishDraft` must be a draft returned by `createDraft`",function(e){return`'current' expects a draft, got: ${e}`},"Object.defineProperty() cannot be used on an Immer draft","Object.setPrototypeOf() cannot be used on an Immer draft","Immer only supports deleting array indices","Immer only supports setting array indices and the 'length' property",function(e){return`'original' expects a draft, got: ${e}`}]:[];function ya(e,...a){if("production"!==process.env.NODE_ENV){const t=ha[e],n="function"==typeof t?t.apply(null,a):t;throw new Error(`[Immer] ${n}`)}throw new Error(`[Immer] minified error nr: ${e}. Full error at: https://bit.ly/3cXEKWf`)}var Aa=Object.getPrototypeOf;function Sa(e){return!!e&&!!e[pa]}function ba(e){var a;return!!e&&(ga(e)||Array.isArray(e)||!!e[_a]||!!(null==(a=e.constructor)?void 0:a[_a])||Ca(e)||Da(e))}var Ta=Object.prototype.constructor.toString();function ga(e){if(!e||"object"!=typeof e)return!1;const a=Aa(e);if(null===a)return!0;const t=Object.hasOwnProperty.call(a,"constructor")&&a.constructor;return t===Object||"function"==typeof t&&Function.toString.call(t)===Ta}function ka(e,a){0===va(e)?Object.entries(e).forEach((([t,n])=>{a(t,n,e)})):e.forEach(((t,n)=>a(n,t,e)))}function va(e){const a=e[pa];return a?a.type_:Array.isArray(e)?1:Ca(e)?2:Da(e)?3:0}function wa(e,a){return 2===va(e)?e.has(a):Object.prototype.hasOwnProperty.call(e,a)}function Ma(e,a,t){const n=va(e);2===n?e.set(a,t):3===n?e.add(t):e[a]=t}function Ca(e){return e instanceof Map}function Da(e){return e instanceof Set}function Ea(e){return e.copy_||e.base_}function Pa(e,a){if(Ca(e))return new Map(e);if(Da(e))return new Set(e);if(Array.isArray(e))return Array.prototype.slice.call(e);if(!a&&ga(e)){if(!Aa(e)){const a=Object.create(null);return Object.assign(a,e)}return{...e}}const t=Object.getOwnPropertyDescriptors(e);delete t[pa];let n=Reflect.ownKeys(t);for(let r=0;r<n.length;r++){const a=n[r],i=t[a];!1===i.writable&&(i.writable=!0,i.configurable=!0),(i.get||i.set)&&(t[a]={configurable:!0,writable:!0,enumerable:i.enumerable,value:e[a]})}return Object.create(Aa(e),t)}function Na(e,a=!1){return ja(e)||Sa(e)||!ba(e)||(va(e)>1&&(e.set=e.add=e.clear=e.delete=Ba),Object.freeze(e),a&&ka(e,((e,a)=>Na(a,!0)))),e}function Ba(){ya(2)}function ja(e){return Object.isFrozen(e)}var Ia,Ga={};function xa(e){const a=Ga[e];return a||ya(0,e),a}function La(){return Ia}function Oa(e,a){a&&(xa("Patches"),e.patches_=[],e.inversePatches_=[],e.patchListener_=a)}function Va(e){Ka(e),e.drafts_.forEach(Ha),e.drafts_=null}function Ka(e){e===Ia&&(Ia=e.parent_)}function za(e){return Ia={drafts_:[],parent_:Ia,immer_:e,canAutoFreeze_:!0,unfinalizedDrafts_:0}}function Ha(e){const a=e[pa];0===a.type_||1===a.type_?a.revoke_():a.revoked_=!0}function Ua(e,a){a.unfinalizedDrafts_=a.drafts_.length;const t=a.drafts_[0];return void 0!==e&&e!==t?(t[pa].modified_&&(Va(a),ya(4)),ba(e)&&(e=Ra(a,e),a.parent_||Wa(a,e)),a.patches_&&xa("Patches").generateReplacementPatches_(t[pa].base_,e,a.patches_,a.inversePatches_)):e=Ra(a,t,[]),Va(a),a.patches_&&a.patchListener_(a.patches_,a.inversePatches_),e!==ma?e:void 0}function Ra(e,a,t){if(ja(a))return a;const n=a[pa];if(!n)return ka(a,((r,i)=>Fa(e,n,a,r,i,t))),a;if(n.scope_!==e)return a;if(!n.modified_)return Wa(e,n.base_,!0),n.base_;if(!n.finalized_){n.finalized_=!0,n.scope_.unfinalizedDrafts_--;const a=n.copy_;let r=a,i=!1;3===n.type_&&(r=new Set(a),a.clear(),i=!0),ka(r,((r,o)=>Fa(e,n,a,r,o,t,i))),Wa(e,a,!1),t&&e.patches_&&xa("Patches").generatePatches_(n,t,e.patches_,e.inversePatches_)}return n.copy_}function Fa(e,a,t,n,r,i,o){if("production"!==process.env.NODE_ENV&&r===t&&ya(5),Sa(r)){const o=Ra(e,r,i&&a&&3!==a.type_&&!wa(a.assigned_,n)?i.concat(n):void 0);if(Ma(t,n,o),!Sa(o))return;e.canAutoFreeze_=!1}else o&&t.add(r);if(ba(r)&&!ja(r)){if(!e.immer_.autoFreeze_&&e.unfinalizedDrafts_<1)return;Ra(e,r),a&&a.scope_.parent_||Wa(e,r)}}function Wa(e,a,t=!1){!e.parent_&&e.immer_.autoFreeze_&&e.canAutoFreeze_&&Na(a,t)}var Ja={get(e,a){if(a===pa)return e;const t=Ea(e);if(!wa(t,a))return function(e,a,t){var n;const r=Ya(a,t);return r?"value"in r?r.value:null==(n=r.get)?void 0:n.call(e.draft_):void 0}(e,t,a);const n=t[a];return e.finalized_||!ba(n)?n:n===$a(e.base_,a)?(Qa(e),e.copy_[a]=Xa(n,e)):n},has:(e,a)=>a in Ea(e),ownKeys:e=>Reflect.ownKeys(Ea(e)),set(e,a,t){const n=Ya(Ea(e),a);if(null==n?void 0:n.set)return n.set.call(e.draft_,t),!0;if(!e.modified_){const n=$a(Ea(e),a),o=null==n?void 0:n[pa];if(o&&o.base_===t)return e.copy_[a]=t,e.assigned_[a]=!1,!0;if(((r=t)===(i=n)?0!==r||1/r==1/i:r!=r&&i!=i)&&(void 0!==t||wa(e.base_,a)))return!0;Qa(e),Za(e)}var r,i;return e.copy_[a]===t&&(void 0!==t||a in e.copy_)||Number.isNaN(t)&&Number.isNaN(e.copy_[a])||(e.copy_[a]=t,e.assigned_[a]=!0),!0},deleteProperty:(e,a)=>(void 0!==$a(e.base_,a)||a in e.base_?(e.assigned_[a]=!1,Qa(e),Za(e)):delete e.assigned_[a],e.copy_&&delete e.copy_[a],!0),getOwnPropertyDescriptor(e,a){const t=Ea(e),n=Reflect.getOwnPropertyDescriptor(t,a);return n?{writable:!0,configurable:1!==e.type_||"length"!==a,enumerable:n.enumerable,value:t[a]}:n},defineProperty(){ya(11)},getPrototypeOf:e=>Aa(e.base_),setPrototypeOf(){ya(12)}},qa={};function $a(e,a){const t=e[pa];return(t?Ea(t):e)[a]}function Ya(e,a){if(!(a in e))return;let t=Aa(e);for(;t;){const e=Object.getOwnPropertyDescriptor(t,a);if(e)return e;t=Aa(t)}}function Za(e){e.modified_||(e.modified_=!0,e.parent_&&Za(e.parent_))}function Qa(e){e.copy_||(e.copy_=Pa(e.base_,e.scope_.immer_.useStrictShallowCopy_))}ka(Ja,((e,a)=>{qa[e]=function(){return arguments[0]=arguments[0][0],a.apply(this,arguments)}})),qa.deleteProperty=function(e,a){return"production"!==process.env.NODE_ENV&&isNaN(parseInt(a))&&ya(13),qa.set.call(this,e,a,void 0)},qa.set=function(e,a,t){return"production"!==process.env.NODE_ENV&&"length"!==a&&isNaN(parseInt(a))&&ya(14),Ja.set.call(this,e[0],a,t,e[0])};function Xa(e,a){const t=Ca(e)?xa("MapSet").proxyMap_(e,a):Da(e)?xa("MapSet").proxySet_(e,a):function(e,a){const t=Array.isArray(e),n={type_:t?1:0,scope_:a?a.scope_:La(),modified_:!1,finalized_:!1,assigned_:{},parent_:a,base_:e,draft_:null,copy_:null,revoke_:null,isManual_:!1};let r=n,i=Ja;t&&(r=[n],i=qa);const{revoke:o,proxy:s}=Proxy.revocable(r,i);return n.draft_=s,n.revoke_=o,s}(e,a);return(a?a.scope_:La()).drafts_.push(t),t}function et(e){if(!ba(e)||ja(e))return e;const a=e[pa];let t;if(a){if(!a.modified_)return a.base_;a.finalized_=!0,t=Pa(e,a.scope_.immer_.useStrictShallowCopy_)}else t=Pa(e,!0);return ka(t,((e,a)=>{Ma(t,e,et(a))})),a&&(a.finalized_=!1),t}var at=new class{constructor(e){this.autoFreeze_=!0,this.useStrictShallowCopy_=!1,this.produce=(e,a,t)=>{if("function"==typeof e&&"function"!=typeof a){const t=a;a=e;const n=this;return function(e=t,...r){return n.produce(e,(e=>a.call(this,e,...r)))}}let n;if("function"!=typeof a&&ya(6),void 0!==t&&"function"!=typeof t&&ya(7),ba(e)){const r=za(this),i=Xa(e,void 0);let o=!0;try{n=a(i),o=!1}finally{o?Va(r):Ka(r)}return Oa(r,t),Ua(n,r)}if(!e||"object"!=typeof e){if(n=a(e),void 0===n&&(n=e),n===ma&&(n=void 0),this.autoFreeze_&&Na(n,!0),t){const a=[],r=[];xa("Patches").generateReplacementPatches_(e,n,a,r),t(a,r)}return n}ya(1,e)},this.produceWithPatches=(e,a)=>{if("function"==typeof e)return(a,...t)=>this.produceWithPatches(a,(a=>e(a,...t)));let t,n;return[this.produce(e,a,((e,a)=>{t=e,n=a})),t,n]},"boolean"==typeof(null==e?void 0:e.autoFreeze)&&this.setAutoFreeze(e.autoFreeze),"boolean"==typeof(null==e?void 0:e.useStrictShallowCopy)&&this.setUseStrictShallowCopy(e.useStrictShallowCopy)}createDraft(e){ba(e)||ya(8),Sa(e)&&(e=function(e){Sa(e)||ya(10,e);return et(e)}(e));const a=za(this),t=Xa(e,void 0);return t[pa].isManual_=!0,Ka(a),t}finishDraft(e,a){const t=e&&e[pa];t&&t.isManual_||ya(9);const{scope_:n}=t;return Oa(n,a),Ua(void 0,n)}setAutoFreeze(e){this.autoFreeze_=e}setUseStrictShallowCopy(e){this.useStrictShallowCopy_=e}applyPatches(e,a){let t;for(t=a.length-1;t>=0;t--){const n=a[t];if(0===n.path.length&&"replace"===n.op){e=n.value;break}}t>-1&&(a=a.slice(t+1));const n=xa("Patches").applyPatches_;return Sa(e)?n(e,a):this.produce(e,(e=>n(e,a)))}};at.produce,at.produceWithPatches.bind(at),at.setAutoFreeze.bind(at),at.setUseStrictShallowCopy.bind(at),at.applyPatches.bind(at),at.createDraft.bind(at),at.finishDraft.bind(at);var tt,nt=function(){},rt=oa(ua),it=sa((function(e,a){return e!==a}));Ce((tt=function e(a){return Object.fromEntries(Object.entries(a).filter((function(e){var a=da(e,2)[1];return!ra(a)})).map((function(a){var t=da(a,2),n=t[0],r=t[1];return[n,"object"!==fa(r)||Array.isArray(r)?r:e(r)]})))}).length,(function(){var e,a=(e=tt.length-1)<0||arguments.length<=e?void 0:arguments[e];return ra(a)?a:tt.apply(void 0,arguments)}));const ot=e=>{if(""===e)return pe;return pe.map((a=>{const t=Object.keys(a)[0],n=a[t].filter((a=>a.label.toLowerCase().includes(e.toLowerCase())||a.keywords.toLowerCase().includes(e.toLowerCase())));return rt(n)?{[t]:n}:null})).filter(it(null))};function st({elementId:e,is24H:a,searchInput:t,selectedValue:n,setSelectedValue:r,setIsOverlayVisible:i}){return re((()=>{document.getElementById(Se(null==n?void 0:n.keywords)).scrollIntoView({behavior:"auto",block:"center"})}),[]),re((()=>{if(""===t)return;const a=document.getElementById(`${e}-ntsp-overflow-container`);a&&(a.scrollTop=0)}),[t]),T("div",{className:"pt-2 overflow-y-scroll h-80 ntsp-dropdown-wrapper__body",id:`${e}-ntsp-overflow-container`},T("div",{className:"flex flex-col"},Te(ot(t),n,(e=>{var a,t,n,o,s,c;const u=(null==(a=null==e?void 0:e.target)?void 0:a.value)||(null==(n=null==(t=null==e?void 0:e.target)?void 0:t.parentNode)?void 0:n.value)||(null==(c=null==(s=null==(o=null==e?void 0:e.target)?void 0:o.parentNode)?void 0:s.parentNode)?void 0:c.value),l=he.find((e=>(null==e?void 0:e.keywords)===u));i(!1),r(l)}),a)))}function ct({id:e="ntsp-switch",onChange:a=nt,labelRight:t="Toggle switch",labelLeft:n="Toggle switch",defaultValue:r=!1}){const[i,o]=ne(r),s=i&&"font-semibold";return T("label",{htmlFor:e,className:"flex items-center space-x-1 cursor-pointer"},T("span",{className:`ml-3 text-sm neeto-ui-text-gray-700 ${!i&&"font-semibold"}`},n),T("span",{className:"relative"},T("input",{id:e,type:"checkbox",className:"sr-only",checked:i,onChange:({target:{checked:e}})=>{o(e),a(e)}}),T("span",{className:"block w-10 h-6 neeto-ui-bg-primary-500 neeto-ui-rounded-full"}),T("span",{className:"absolute w-4 h-4 transition neeto-ui-bg-white neeto-ui-rounded-full dot left-1 top-1"})),T("span",{className:`ml-3 text-sm neeto-ui-text-gray-700 ${s}`},t))}function ut({className:e,is24H:a,elementId:t,selectedValue:n,setSelectedValue:r,setIsOverlayVisible:i,setIs24H:o}){const[s,c]=ne("");return T("div",{className:`w-full flex flex-col neeto-ui-bg-white neeto-ui-shadow-sm border neeto-ui-border-gray-200 rounded-lg ${e}`},T("div",{className:"w-full flex flex-col gap-2 p-2 border-b neeto-ui-border-gray-200 ntsp-dropdown-wrapper__header"},T(me,{elementId:t,searchInput:s,setSearchInput:c}),T("div",{className:"w-full flex justify-end"},T(ct,{defaultValue:a,labelRight:"24H",labelLeft:"AM/PM",onChange:e=>{_e("ntsp-24-hr-time-format",e),o(e)}}))),T(st,{elementId:t,is24H:a,searchInput:s,selectedValue:n,setIsOverlayVisible:i,setSelectedValue:r}))}function lt({className:e="",elementId:a="timezone-selector",initialValue:t,position:n="bottom",onChange:r=(e=>{}),onHourFormatChange:i=(e=>{})}){const[o,s]=ne(ye(t)||Ae),[c,u]=ne(!1),[l,d]=ne((e=>{let a=null;try{const t=localStorage.getItem(e);a=null!==t?JSON.parse(t):null}catch(t){a=null}return a})("ntsp-24-hr-time-format")||!1),f="top"===n;return re((()=>{const e=e=>{const t=document.getElementById(a);t&&!(null==t?void 0:t.contains(e.target))&&u(!1)};return window.addEventListener("click",e),()=>{window.removeEventListener("click",e)}}),[]),re((()=>{r(o)}),[o]),re((()=>{i(l?"24H":"12H")}),[l]),re((()=>{const e=ye(t)||Ae;s(e)}),[t]),T("div",{className:"ntsp",id:a},T("div",{className:`flex flex-col relative ${e}`},T(fe,{elementId:a,is24H:l,isOverlayVisible:c,selectedValue:o,setIsOverlayVisible:u}),!0===c&&T(ut,{elementId:a,is24H:l,selectedValue:o,setIs24H:d,setIsOverlayVisible:u,setSelectedValue:s,className:"ntsp-dropdown-wrapper absolute "+(f?"bottom-16":"top-16")})))}class dt{constructor(e,a){this.element=e,this.options=a,this.render()}render(){var e,a,t,n,r,i,o;e=T(lt,{...this.options}),a=this.element,u.__&&u.__(e,a),r=(n="function"==typeof t)?null:t&&t.__k||a.__k,i=[],o=[],L(a,e=(!n&&t||a).__k=T(k,null,[e]),r||p,p,void 0!==a.ownerSVGElement,!n&&t?[t]:r?null:a.firstChild?c.call(a.childNodes):null,i,!n&&t?t:r?r.__e:a.firstChild,n,o),O(i,e,o)}}window.NeetoTimezoneSelector=dt,exports.Africa=e,exports.America=a,exports.Asia=t,exports.Atlantic=n,exports.Australia=r,exports.Europe=i,exports.Pacific=o,exports.Plugin=dt,exports.UsCanada=s;
package/dist/index.cjs.js CHANGED
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./index-9da7f148.cjs"),a=[{"US/Canada":e.UsCanada},{America:e.America},{Asia:e.Asia},{Africa:e.Africa},{Atlantic:e.Atlantic},{Australia:e.Australia},{Europe:e.Europe},{Pacific:e.Pacific}].reduce(((e,a)=>[...e,...a[Object.keys(a)[0]]]),[]);exports.NeetoTimezoneSelector=e.Plugin,exports.ianaTimezoneToHumanReadable=e=>{const i=a.find((a=>a.utc.includes(e)));return(null==i?void 0:i.label)||""};
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./index-f22b9113.cjs"),a=[{"US/Canada":e.UsCanada},{America:e.America},{Asia:e.Asia},{Africa:e.Africa},{Atlantic:e.Atlantic},{Australia:e.Australia},{Europe:e.Europe},{Pacific:e.Pacific}].reduce(((e,a)=>[...e,...a[Object.keys(a)[0]]]),[]);exports.NeetoTimezoneSelector=e.Plugin,exports.ianaTimezoneToHumanReadable=e=>{const i=a.find((a=>a.utc.includes(e)));return(null==i?void 0:i.label)||""};
package/dist/index.es.js CHANGED
@@ -1,5 +1,5 @@
1
- import { U as UsCanada, A as America, a as Asia, b as Africa, c as Atlantic, d as Australia, E as Europe, P as Pacific } from "./index-8bd145b1.js";
2
- import { e } from "./index-8bd145b1.js";
1
+ import { U as UsCanada, A as America, a as Asia, b as Africa, c as Atlantic, d as Australia, E as Europe, P as Pacific } from "./index-60882105.js";
2
+ import { e } from "./index-60882105.js";
3
3
  const groupedOptions = [
4
4
  { "US/Canada": UsCanada },
5
5
  { America },
package/dist/react.cjs.js CHANGED
@@ -1,4 +1,4 @@
1
- "use strict";const e=require("./index-9da7f148.cjs");var t,r={exports:{}},n={};var o,a,u,i={exports:{}};
1
+ "use strict";const e=require("./index-f22b9113.cjs");var t,r={exports:{}},n={};var o,a,u,i={exports:{}};
2
2
  /**
3
3
  * @license React
4
4
  * react.development.js
package/dist/react.es.js CHANGED
@@ -1,4 +1,4 @@
1
- import { e as Plugin } from "./index-8bd145b1.js";
1
+ import { e as Plugin } from "./index-60882105.js";
2
2
  var react = { exports: {} };
3
3
  var react_production_min = {};
4
4
  /**
package/dist/style.css CHANGED
@@ -1 +1 @@
1
- .ntsp *,.ntsp :after,.ntsp :before{box-sizing:border-box;border:0 solid #e5e7eb;line-height:1.5;font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-feature-settings:normal;font-variation-settings:normal}.ntsp button,.ntsp input{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;color:inherit;margin:0;padding:0}.ntsp button{text-transform:none}.ntsp [type=button],.ntsp [type=reset],.ntsp [type=submit],.ntsp button{-webkit-appearance:button;background-color:transparent;background-image:none}.ntsp :-moz-ui-invalid{box-shadow:none}.ntsp input::-moz-placeholder{opacity:1;color:#9ca3af}.ntsp input::placeholder{opacity:1;color:#9ca3af}.ntsp [role=button],.ntsp button{cursor:pointer}.ntsp :disabled{cursor:default}.ntsp svg{display:block;vertical-align:middle}.ntsp .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.ntsp .absolute{position:absolute}.ntsp .relative{position:relative}.ntsp .bottom-16{bottom:4rem}.ntsp .left-1{left:.25rem}.ntsp .top-1{top:.25rem}.ntsp .top-16{top:4rem}.ntsp .m-2{margin:.5rem}.ntsp .mb-1{margin-bottom:.25rem}.ntsp .ml-3{margin-left:.75rem}.ntsp .block{display:block}.ntsp .flex{display:flex}.ntsp .h-4{height:1rem}.ntsp .h-6{height:1.5rem}.ntsp .h-80{height:20rem}.ntsp .w-10{width:2.5rem}.ntsp .w-4{width:1rem}.ntsp .w-full{width:100%}.ntsp .min-w-0{min-width:0}.ntsp .shrink-0{flex-shrink:0}.ntsp .grow{flex-grow:1}.ntsp .cursor-pointer{cursor:pointer}.ntsp .flex-col{flex-direction:column}.ntsp .items-center{align-items:center}.ntsp .justify-between{justify-content:space-between}.ntsp .gap-2{gap:.5rem}.ntsp .gap-x-4{-moz-column-gap:1rem;column-gap:1rem}.ntsp .space-x-1>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(.25rem*var(--tw-space-x-reverse));margin-left:calc(.25rem*(1 - var(--tw-space-x-reverse)))}.ntsp .overflow-y-scroll{overflow-y:scroll}.ntsp .break-words{overflow-wrap:break-word}.ntsp .border{border-width:1px}.ntsp .border-2{border-width:2px}.ntsp .border-blue-400{--tw-border-opacity:1;border-color:rgb(96 165 250/var(--tw-border-opacity))}.ntsp .bg-blue-300{--tw-bg-opacity:1;background-color:rgb(147 197 253/var(--tw-bg-opacity))}.ntsp .p-2{padding:.5rem}.ntsp .px-2{padding-left:.5rem;padding-right:.5rem}.ntsp .px-4{padding-left:1rem;padding-right:1rem}.ntsp .py-1{padding-top:.25rem;padding-bottom:.25rem}.ntsp .py-2{padding-top:.5rem;padding-bottom:.5rem}.ntsp .py-4{padding-top:1rem;padding-bottom:1rem}.ntsp .pb-1{padding-bottom:.25rem}.ntsp .pb-2{padding-bottom:.5rem}.ntsp .pr-4{padding-right:1rem}.ntsp .pt-2{padding-top:.5rem}.ntsp .text-left{text-align:left}.ntsp .text-sm{font-size:.875rem;line-height:1.25rem}.ntsp .font-bold{font-weight:700}.ntsp .font-semibold{font-weight:600}.ntsp .uppercase{text-transform:uppercase}.ntsp .shadow{--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)}.ntsp .outline-none{outline:2px solid transparent;outline-offset:2px}.ntsp .filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.ntsp .transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.ntsp .ntsp-button-border{border:1px solid #d8dcde;border-radius:8px;margin-top:8px;overflow:hidden}.ntsp input:checked~.dot{transform:translate(100%)}.ntsp .hover\:bg-slate-100:hover{--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}
1
+ .ntsp *,.ntsp :after,.ntsp :before{box-sizing:border-box;border:0 solid #e5e7eb;line-height:1.5;font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-feature-settings:normal;font-variation-settings:normal}.ntsp button,.ntsp input{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;color:inherit;margin:0;padding:0}.ntsp button{text-transform:none}.ntsp [type=button],.ntsp [type=reset],.ntsp [type=submit],.ntsp button{-webkit-appearance:button;background-color:transparent;background-image:none}.ntsp :-moz-ui-invalid{box-shadow:none}.ntsp input::-moz-placeholder{opacity:1;color:#9ca3af}.ntsp input::placeholder{opacity:1;color:#9ca3af}.ntsp [role=button],.ntsp button{cursor:pointer}.ntsp :disabled{cursor:default}.ntsp svg{display:block;vertical-align:middle}.ntsp .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.ntsp .absolute{position:absolute}.ntsp .relative{position:relative}.ntsp .bottom-16{bottom:4rem}.ntsp .left-1{left:.25rem}.ntsp .top-1{top:.25rem}.ntsp .top-16{top:4rem}.ntsp .ml-3{margin-left:.75rem}.ntsp .block{display:block}.ntsp .flex{display:flex}.ntsp .h-4{height:1rem}.ntsp .h-6{height:1.5rem}.ntsp .h-80{height:20rem}.ntsp .w-10{width:2.5rem}.ntsp .w-4{width:1rem}.ntsp .w-full{width:100%}.ntsp .min-w-0{min-width:0}.ntsp .shrink-0{flex-shrink:0}.ntsp .grow{flex-grow:1}.ntsp .cursor-pointer{cursor:pointer}.ntsp .select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.ntsp .flex-col{flex-direction:column}.ntsp .items-center{align-items:center}.ntsp .justify-end{justify-content:flex-end}.ntsp .justify-between{justify-content:space-between}.ntsp .gap-1{gap:.25rem}.ntsp .gap-2{gap:.5rem}.ntsp .space-x-1>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(.25rem*var(--tw-space-x-reverse));margin-left:calc(.25rem*(1 - var(--tw-space-x-reverse)))}.ntsp .overflow-y-scroll{overflow-y:scroll}.ntsp .break-words{overflow-wrap:break-word}.ntsp .rounded-lg{border-radius:.5rem}.ntsp .border{border-width:1px}.ntsp .border-b{border-bottom-width:1px}.ntsp .p-2{padding:.5rem}.ntsp .px-2{padding-left:.5rem;padding-right:.5rem}.ntsp .px-4{padding-left:1rem;padding-right:1rem}.ntsp .py-1{padding-top:.25rem;padding-bottom:.25rem}.ntsp .py-2{padding-top:.5rem;padding-bottom:.5rem}.ntsp .pb-1{padding-bottom:.25rem}.ntsp .pt-2{padding-top:.5rem}.ntsp .text-left{text-align:left}.ntsp .text-sm{font-size:.875rem;line-height:1.25rem}.ntsp .font-bold{font-weight:700}.ntsp .font-semibold{font-weight:600}.ntsp .uppercase{text-transform:uppercase}.ntsp .filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.ntsp .transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.ntsp .ntsp-button-border{border:1px solid #d8dcde;border-radius:8px;margin-top:8px;overflow:hidden}.ntsp input:checked~.dot{transform:translate(100%)}.ntsp .ntsp-list-item{color:rgb(var(--neeto-ui-gray-800));background-color:transparent}.ntsp .ntsp-list-item:hover{background-color:rgb(var(--neeto-ui-gray-200))}.ntsp .ntsp-list-item--active,.ntsp .ntsp-list-item--active:hover{background-color:rgb(var(--neeto-ui-primary-500));color:rgb(var(--neeto-ui-white))}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigbinary/neeto-time-zones",
3
- "version": "0.5.1",
3
+ "version": "0.5.3",
4
4
  "license": "MIT",
5
5
  "exports": {
6
6
  ".": {