@griddo/ax 11.14.1 → 11.14.2-rc.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (142) hide show
  1. package/config/jest/reactEasyCropMock.js +15 -0
  2. package/config/jest/reactTimezoneMock.js +13 -0
  3. package/package.json +221 -219
  4. package/public/img/welcome.svg +127 -0
  5. package/src/__tests__/components/Browser/Browser.test.tsx +27 -51
  6. package/src/__tests__/components/CategoryCell/CategoryCell.test.tsx +10 -5
  7. package/src/__tests__/components/ElementsTooltip/ElementsTooltip.test.tsx +27 -14
  8. package/src/__tests__/components/HeadingsPreviewModal/ErrorsBanner/ErrorItem/ErrorItem.test.tsx +2 -0
  9. package/src/__tests__/components/HeadingsPreviewModal/HeadingsPreviewModal.utils.test.tsx +138 -1
  10. package/src/__tests__/components/ImageDragAndDrop/CropStep/CropStep.test.tsx +84 -0
  11. package/src/__tests__/components/ImageDragAndDrop/ImageDragAndDrop.test.tsx +169 -0
  12. package/src/__tests__/components/ProfileImage/ProfileImage.test.tsx +120 -0
  13. package/src/__tests__/components/ResizePanel/ResizePanel.test.tsx +8 -0
  14. package/src/__tests__/components/UserRolesAndSites/RoleItem/RoleItem.test.tsx +190 -0
  15. package/src/__tests__/components/UserRolesAndSites/UserRolesAndSites.test.tsx +471 -0
  16. package/src/__tests__/modules/FramePreview/HeadingsOverlay/HeadingsOverlay.test.tsx +15 -2
  17. package/src/__tests__/modules/Sites/Sites.test.tsx +68 -224
  18. package/src/__tests__/modules/Sites/SitesList/ListView/BulkHeader/BulkHeader.test.tsx +21 -17
  19. package/src/__tests__/modules/Sites/SitesList/SitesList.test.tsx +65 -565
  20. package/src/__tests__/modules/Sites/SitesList/WelcomeModal/DataStep/DataStep.test.tsx +109 -0
  21. package/src/__tests__/modules/Sites/SitesList/WelcomeModal/FinalStep/FinalStep.test.tsx +157 -0
  22. package/src/__tests__/modules/Sites/SitesList/WelcomeModal/ImageStep/CropView/CropView.test.tsx +51 -0
  23. package/src/__tests__/modules/Sites/SitesList/WelcomeModal/ImageStep/ImageStep.test.tsx +70 -0
  24. package/src/__tests__/modules/Sites/SitesList/WelcomeModal/ImageStep/UploadView/UploadView.test.tsx +92 -0
  25. package/src/__tests__/modules/Sites/SitesList/WelcomeModal/TimezoneStep/TimezoneStep.test.tsx +94 -0
  26. package/src/__tests__/modules/Sites/SitesList/WelcomeModal/WelcomeModal.test.tsx +78 -0
  27. package/src/__tests__/modules/Sites/SitesList/WelcomeModal/WelcomeStep/WelcomeStep.test.tsx +39 -0
  28. package/src/__tests__/modules/Sites/SitesList/WelcomeModal/utils.test.ts +55 -0
  29. package/src/api/sites.tsx +4 -4
  30. package/src/components/Avatar/index.tsx +26 -5
  31. package/src/components/Avatar/style.tsx +20 -10
  32. package/src/components/Browser/index.tsx +7 -1
  33. package/src/components/ConfigPanel/index.tsx +5 -4
  34. package/src/components/ElementsTooltip/index.tsx +96 -34
  35. package/src/components/ElementsTooltip/style.tsx +12 -1
  36. package/src/components/Fields/FileField/index.tsx +16 -17
  37. package/src/components/Fields/HeadingField/index.tsx +1 -1
  38. package/src/components/Fields/ImageField/index.tsx +9 -38
  39. package/src/components/Fields/ImageField/style.tsx +12 -1
  40. package/src/components/Fields/ToggleField/index.tsx +1 -1
  41. package/src/components/Fields/Wysiwyg/index.tsx +25 -20
  42. package/src/components/FileGallery/GalleryPanel/index.tsx +15 -7
  43. package/src/components/FileGallery/index.tsx +33 -28
  44. package/src/components/Gallery/GalleryPanel/index.tsx +5 -16
  45. package/src/components/Gallery/index.tsx +0 -2
  46. package/src/components/HeadingsPreviewModal/ErrorsBanner/ErrorItem/index.tsx +11 -2
  47. package/src/components/HeadingsPreviewModal/ErrorsBanner/index.tsx +21 -3
  48. package/src/components/HeadingsPreviewModal/ErrorsBanner/style.tsx +2 -2
  49. package/src/components/HeadingsPreviewModal/index.tsx +13 -3
  50. package/src/components/HeadingsPreviewModal/style.tsx +18 -0
  51. package/src/components/HeadingsPreviewModal/utils.tsx +31 -3
  52. package/src/components/Image/index.tsx +2 -2
  53. package/src/components/ImageDragAndDrop/CropStep/index.tsx +95 -0
  54. package/src/components/ImageDragAndDrop/CropStep/style.tsx +101 -0
  55. package/src/{modules/MediaGallery → components}/ImageDragAndDrop/index.tsx +103 -40
  56. package/src/{modules/MediaGallery → components}/ImageDragAndDrop/style.tsx +14 -2
  57. package/src/components/ProfileImage/index.tsx +55 -0
  58. package/src/components/ProfileImage/style.tsx +58 -0
  59. package/src/components/ResizePanel/ResizeHandle/index.tsx +44 -6
  60. package/src/components/ResizePanel/ResizeHandle/style.tsx +7 -0
  61. package/src/components/ResizePanel/index.tsx +25 -4
  62. package/src/components/Tabs/style.tsx +1 -1
  63. package/src/components/Tag/index.tsx +0 -1
  64. package/src/components/UserRolesAndSites/RoleItem/index.tsx +42 -0
  65. package/src/components/UserRolesAndSites/RoleItem/style.tsx +29 -0
  66. package/src/components/UserRolesAndSites/index.tsx +102 -0
  67. package/src/components/UserRolesAndSites/style.tsx +67 -0
  68. package/src/components/index.tsx +6 -0
  69. package/src/constants/index.ts +13 -1
  70. package/src/containers/App/actions.tsx +8 -1
  71. package/src/containers/Sites/actions.tsx +26 -0
  72. package/src/containers/Sites/constants.tsx +1 -0
  73. package/src/containers/Sites/interfaces.tsx +6 -0
  74. package/src/containers/Sites/reducer.tsx +5 -1
  75. package/src/containers/Users/reducer.tsx +6 -5
  76. package/src/guards/routeLeaving/index.tsx +9 -11
  77. package/src/helpers/images.tsx +50 -3
  78. package/src/helpers/index.tsx +2 -1
  79. package/src/hooks/forms.tsx +45 -48
  80. package/src/hooks/modals.tsx +4 -3
  81. package/src/modules/ActivityLog/ItemLogUser/UserItem/index.tsx +1 -1
  82. package/src/modules/App/Routing/Logout/index.tsx +3 -5
  83. package/src/modules/App/Routing/NavMenu/NavItem/index.tsx +73 -52
  84. package/src/modules/App/Routing/NavMenu/NavItem/style.tsx +21 -7
  85. package/src/modules/App/Routing/NavMenu/index.tsx +59 -54
  86. package/src/modules/App/Routing/NavMenu/style.tsx +13 -11
  87. package/src/modules/CreatePass/index.tsx +1 -1
  88. package/src/modules/FileDrive/FileDragAndDrop/index.tsx +11 -8
  89. package/src/modules/FileDrive/FileModal/index.tsx +8 -9
  90. package/src/modules/FileDrive/index.tsx +1 -18
  91. package/src/modules/Forms/FormEditor/index.tsx +1 -1
  92. package/src/modules/FramePreview/HeadingsOverlay/index.tsx +22 -11
  93. package/src/modules/FramePreview/HeadingsOverlay/style.tsx +1 -1
  94. package/src/modules/MediaGallery/ImageModal/index.tsx +1 -5
  95. package/src/modules/MediaGallery/index.tsx +1 -3
  96. package/src/modules/Settings/Globals/constants.tsx +942 -106
  97. package/src/modules/Sites/SitesList/AllSitesHeader/index.tsx +33 -0
  98. package/src/modules/Sites/SitesList/AllSitesHeader/style.tsx +35 -0
  99. package/src/modules/Sites/SitesList/GridView/GridHeaderFilter/index.tsx +5 -5
  100. package/src/modules/Sites/SitesList/GridView/GridSiteItem/index.tsx +23 -119
  101. package/src/modules/Sites/SitesList/ListView/BulkHeader/TableHeader/index.tsx +4 -4
  102. package/src/modules/Sites/SitesList/ListView/BulkHeader/index.tsx +4 -3
  103. package/src/modules/Sites/SitesList/ListView/ListSiteItem/index.tsx +23 -120
  104. package/src/modules/Sites/SitesList/{RecentSiteItem → RecentSites/RecentSiteItem}/index.tsx +4 -5
  105. package/src/modules/Sites/SitesList/RecentSites/index.tsx +49 -0
  106. package/src/modules/Sites/SitesList/RecentSites/style.tsx +92 -0
  107. package/src/modules/Sites/SitesList/SiteModal/index.tsx +8 -7
  108. package/src/modules/Sites/SitesList/WelcomeModal/DataStep/index.tsx +72 -0
  109. package/src/modules/Sites/SitesList/WelcomeModal/DataStep/style.tsx +59 -0
  110. package/src/modules/Sites/SitesList/WelcomeModal/FinalStep/constants.tsx +78 -0
  111. package/src/modules/Sites/SitesList/WelcomeModal/FinalStep/index.tsx +78 -0
  112. package/src/modules/Sites/SitesList/WelcomeModal/FinalStep/style.tsx +141 -0
  113. package/src/modules/Sites/SitesList/WelcomeModal/ImageStep/CropView/index.tsx +93 -0
  114. package/src/modules/Sites/SitesList/WelcomeModal/ImageStep/CropView/style.tsx +77 -0
  115. package/src/modules/Sites/SitesList/WelcomeModal/ImageStep/UploadView/index.tsx +100 -0
  116. package/src/modules/Sites/SitesList/WelcomeModal/ImageStep/UploadView/style.tsx +94 -0
  117. package/src/modules/Sites/SitesList/WelcomeModal/ImageStep/index.tsx +44 -0
  118. package/src/modules/Sites/SitesList/WelcomeModal/ImageStep/style.tsx +31 -0
  119. package/src/modules/Sites/SitesList/WelcomeModal/TimezoneStep/index.tsx +51 -0
  120. package/src/modules/Sites/SitesList/WelcomeModal/TimezoneStep/style.tsx +52 -0
  121. package/src/modules/Sites/SitesList/WelcomeModal/WelcomeStep/index.tsx +40 -0
  122. package/src/modules/Sites/SitesList/WelcomeModal/WelcomeStep/style.tsx +53 -0
  123. package/src/modules/Sites/SitesList/WelcomeModal/index.tsx +215 -0
  124. package/src/modules/Sites/SitesList/WelcomeModal/style.tsx +12 -0
  125. package/src/modules/Sites/SitesList/WelcomeModal/utils.ts +26 -0
  126. package/src/modules/Sites/SitesList/atoms.tsx +4 -4
  127. package/src/modules/Sites/SitesList/hooks.tsx +149 -16
  128. package/src/modules/Sites/SitesList/index.tsx +127 -125
  129. package/src/modules/Sites/SitesList/style.tsx +1 -117
  130. package/src/modules/Sites/SitesList/utils.tsx +9 -2
  131. package/src/modules/Sites/index.tsx +19 -8
  132. package/src/modules/Users/Profile/index.tsx +169 -31
  133. package/src/modules/Users/Profile/style.tsx +81 -1
  134. package/src/modules/Users/Roles/RoleItem/index.tsx +2 -2
  135. package/src/modules/Users/UserCreate/SiteItem/index.tsx +11 -14
  136. package/src/modules/Users/UserForm/atoms.tsx +3 -3
  137. package/src/modules/Users/UserForm/index.tsx +25 -29
  138. package/src/modules/Users/UserForm/style.tsx +15 -2
  139. package/src/modules/Users/UserList/UserItem/index.tsx +4 -4
  140. package/src/routes/index.tsx +1 -0
  141. package/src/types/index.tsx +2 -0
  142. /package/src/modules/Sites/SitesList/{RecentSiteItem → RecentSites/RecentSiteItem}/style.tsx +0 -0
@@ -1,123 +1,435 @@
1
1
  export const timezones = [
2
+ {
3
+ label: "(GMT-11:00) Alofi",
4
+ value: "Pacific/Niue",
5
+ },
6
+ {
7
+ label: "(GMT-11:00) Midway",
8
+ value: "Pacific/Midway",
9
+ },
2
10
  {
3
11
  label: "(GMT-11:00) Pago Pago",
4
12
  value: "Pacific/Pago_Pago",
5
13
  },
6
14
  {
7
- label: "(GMT-10:00) Hawaii Time",
15
+ label: "(GMT-10:00) Avarua",
16
+ value: "Pacific/Rarotonga",
17
+ },
18
+ {
19
+ label: "(GMT-10:00) Adak",
20
+ value: "America/Adak",
21
+ },
22
+ {
23
+ label: "(GMT-10:00) Honolulu",
8
24
  value: "Pacific/Honolulu",
9
25
  },
10
26
  {
11
- label: "(GMT-08:00) Pacific Time",
27
+ label: "(GMT-10:00) Faaa",
28
+ value: "Pacific/Tahiti",
29
+ },
30
+ {
31
+ label: "(GMT-09:30) Marquesas",
32
+ value: "Pacific/Marquesas",
33
+ },
34
+ {
35
+ label: "(GMT-09:00) Anchorage",
36
+ value: "America/Anchorage",
37
+ },
38
+ {
39
+ label: "(GMT-09:00) Gambier",
40
+ value: "Pacific/Gambier",
41
+ },
42
+ {
43
+ label: "(GMT-08:00) Los Angeles",
12
44
  value: "America/Los_Angeles",
13
45
  },
14
46
  {
15
- label: "(GMT-08:00) Pacific Time - Tijuana",
47
+ label: "(GMT-08:00) Tijuana",
16
48
  value: "America/Tijuana",
17
49
  },
18
50
  {
19
- label: "(GMT-07:00) Mountain Time",
51
+ label: "(GMT-08:00) Vancouver",
52
+ value: "America/Vancouver",
53
+ },
54
+ {
55
+ label: "(GMT-08:00) Adamstown",
56
+ value: "Pacific/Pitcairn",
57
+ },
58
+ {
59
+ label: "(GMT-07:00) Hermosillo",
60
+ value: "America/Hermosillo",
61
+ },
62
+ {
63
+ label: "(GMT-07:00) Calgary",
64
+ value: "America/Edmonton",
65
+ },
66
+ {
67
+ label: "(GMT-07:00) Ciudad Juárez",
68
+ value: "America/Ciudad_Juarez",
69
+ },
70
+ {
71
+ label: "(GMT-07:00) Denver",
20
72
  value: "America/Denver",
21
73
  },
22
74
  {
23
- label: "(GMT-07:00) Mountain Time - Arizona",
75
+ label: "(GMT-07:00) Phoenix",
24
76
  value: "America/Phoenix",
25
77
  },
26
78
  {
27
- label: "(GMT-07:00) Mountain Time - Chihuahua, Mazatlan",
28
- value: "America/Mazatlan",
79
+ label: "(GMT-07:00) Whitehorse",
80
+ value: "America/Whitehorse",
81
+ },
82
+ {
83
+ label: "(GMT-06:00) Belize City",
84
+ value: "America/Belize",
29
85
  },
30
86
  {
31
- label: "(GMT-06:00) Central Time",
87
+ label: "(GMT-06:00) Chicago",
32
88
  value: "America/Chicago",
33
89
  },
34
90
  {
35
- label: "(GMT-06:00) Central Time - Mexico City",
91
+ label: "(GMT-06:00) Guatemala City",
92
+ value: "America/Guatemala",
93
+ },
94
+ {
95
+ label: "(GMT-06:00) Managua",
96
+ value: "America/Managua",
97
+ },
98
+ {
99
+ label: "(GMT-06:00) Mexico City",
36
100
  value: "America/Mexico_City",
37
101
  },
38
102
  {
39
- label: "(GMT-06:00) Central Time - Regina",
103
+ label: "(GMT-06:00) Reynosa",
104
+ value: "America/Matamoros",
105
+ },
106
+ {
107
+ label: "(GMT-06:00) San José",
108
+ value: "America/Costa_Rica",
109
+ },
110
+ {
111
+ label: "(GMT-06:00) San Salvador",
112
+ value: "America/El_Salvador",
113
+ },
114
+ {
115
+ label: "(GMT-06:00) Saskatoon",
40
116
  value: "America/Regina",
41
117
  },
42
118
  {
43
- label: "(GMT-06:00) Guatemala",
44
- value: "America/Guatemala",
119
+ label: "(GMT-06:00) Tegucigalpa",
120
+ value: "America/Tegucigalpa",
121
+ },
122
+ {
123
+ label: "(GMT-06:00) Winnipeg",
124
+ value: "America/Winnipeg",
125
+ },
126
+ {
127
+ label: "(GMT-06:00) Easter",
128
+ value: "Pacific/Easter",
129
+ },
130
+ {
131
+ label: "(GMT-06:00) Galapagos",
132
+ value: "Pacific/Galapagos",
133
+ },
134
+ {
135
+ label: "(GMT-05:00) Rio Branco",
136
+ value: "America/Rio_Branco",
45
137
  },
46
138
  {
47
- label: "(GMT-05:00) Bogota",
139
+ label: "(GMT-05:00) Bogotá",
48
140
  value: "America/Bogota",
49
141
  },
50
142
  {
51
- label: "(GMT-05:00) Eastern Time",
143
+ label: "(GMT-05:00) Havana",
144
+ value: "America/Havana",
145
+ },
146
+ {
147
+ label: "(GMT-05:00) Atikokan",
148
+ value: "America/Atikokan",
149
+ },
150
+ {
151
+ label: "(GMT-05:00) Cancún",
152
+ value: "America/Cancun",
153
+ },
154
+ {
155
+ label: "(GMT-05:00) Cockburn Town",
156
+ value: "America/Grand_Turk",
157
+ },
158
+ {
159
+ label: "(GMT-05:00) George Town",
160
+ value: "America/Cayman",
161
+ },
162
+ {
163
+ label: "(GMT-05:00) Kingston",
164
+ value: "America/Jamaica",
165
+ },
166
+ {
167
+ label: "(GMT-05:00) Nassau",
168
+ value: "America/Nassau",
169
+ },
170
+ {
171
+ label: "(GMT-05:00) New York City",
52
172
  value: "America/New_York",
53
173
  },
174
+ {
175
+ label: "(GMT-05:00) Panamá",
176
+ value: "America/Panama",
177
+ },
178
+ {
179
+ label: "(GMT-05:00) Port-au-Prince",
180
+ value: "America/Port-au-Prince",
181
+ },
182
+ {
183
+ label: "(GMT-05:00) Toronto",
184
+ value: "America/Toronto",
185
+ },
186
+ {
187
+ label: "(GMT-05:00) Quito",
188
+ value: "America/Guayaquil",
189
+ },
54
190
  {
55
191
  label: "(GMT-05:00) Lima",
56
192
  value: "America/Lima",
57
193
  },
58
194
  {
59
- label: "(GMT-04:30) Caracas",
60
- value: "America/Caracas",
195
+ label: "(GMT-04:00) Manaus",
196
+ value: "America/Manaus",
197
+ },
198
+ {
199
+ label: "(GMT-04:00) Basseterre",
200
+ value: "America/St_Kitts",
201
+ },
202
+ {
203
+ label: "(GMT-04:00) Blanc-Sablon",
204
+ value: "America/Blanc-Sablon",
205
+ },
206
+ {
207
+ label: "(GMT-04:00) Brades",
208
+ value: "America/Montserrat",
209
+ },
210
+ {
211
+ label: "(GMT-04:00) Bridgetown",
212
+ value: "America/Barbados",
213
+ },
214
+ {
215
+ label: "(GMT-04:00) Castries",
216
+ value: "America/St_Lucia",
217
+ },
218
+ {
219
+ label: "(GMT-04:00) Chaguanas",
220
+ value: "America/Port_of_Spain",
221
+ },
222
+ {
223
+ label: "(GMT-04:00) Fort-de-France",
224
+ value: "America/Martinique",
225
+ },
226
+ {
227
+ label: "(GMT-04:00) Gustavia",
228
+ value: "America/St_Barthelemy",
61
229
  },
62
230
  {
63
- label: "(GMT-04:00) Atlantic Time - Halifax",
231
+ label: "(GMT-04:00) Halifax",
64
232
  value: "America/Halifax",
65
233
  },
66
234
  {
67
- label: "(GMT-04:00) Guyana",
68
- value: "America/Guyana",
235
+ label: "(GMT-04:00) Hamilton",
236
+ value: "Atlantic/Bermuda",
237
+ },
238
+ {
239
+ label: "(GMT-04:00) Kingstown",
240
+ value: "America/St_Vincent",
241
+ },
242
+ {
243
+ label: "(GMT-04:00) Kralendijk",
244
+ value: "America/Kralendijk",
245
+ },
246
+ {
247
+ label: "(GMT-04:00) Les Abymes",
248
+ value: "America/Guadeloupe",
249
+ },
250
+ {
251
+ label: "(GMT-04:00) Marigot",
252
+ value: "America/Marigot",
253
+ },
254
+ {
255
+ label: "(GMT-04:00) Oranjestad",
256
+ value: "America/Aruba",
257
+ },
258
+ {
259
+ label: "(GMT-04:00) Philipsburg",
260
+ value: "America/Lower_Princes",
261
+ },
262
+ {
263
+ label: "(GMT-04:00) Road Town",
264
+ value: "America/Tortola",
265
+ },
266
+ {
267
+ label: "(GMT-04:00) Roseau",
268
+ value: "America/Dominica",
269
+ },
270
+ {
271
+ label: "(GMT-04:00) Saint Croix",
272
+ value: "America/St_Thomas",
273
+ },
274
+ {
275
+ label: "(GMT-04:00) Saint George's",
276
+ value: "America/Grenada",
277
+ },
278
+ {
279
+ label: "(GMT-04:00) Saint John’s",
280
+ value: "America/Antigua",
281
+ },
282
+ {
283
+ label: "(GMT-04:00) San Juan",
284
+ value: "America/Puerto_Rico",
285
+ },
286
+ {
287
+ label: "(GMT-04:00) Santo Domingo",
288
+ value: "America/Santo_Domingo",
289
+ },
290
+ {
291
+ label: "(GMT-04:00) The Valley",
292
+ value: "America/Anguilla",
293
+ },
294
+ {
295
+ label: "(GMT-04:00) Thule",
296
+ value: "America/Thule",
297
+ },
298
+ {
299
+ label: "(GMT-04:00) Willemstad",
300
+ value: "America/Curacao",
69
301
  },
70
302
  {
71
303
  label: "(GMT-04:00) La Paz",
72
304
  value: "America/La_Paz",
73
305
  },
74
306
  {
75
- label: "(GMT-03:00) Buenos Aires",
76
- value: "America/Argentina/Buenos_Aires",
307
+ label: "(GMT-04:00) Santiago",
308
+ value: "America/Santiago",
77
309
  },
78
310
  {
79
- label: "(GMT-03:00) Godthab",
80
- value: "America/Godthab",
311
+ label: "(GMT-04:00) Georgetown",
312
+ value: "America/Guyana",
81
313
  },
82
314
  {
83
- label: "(GMT-03:00) Montevideo",
84
- value: "America/Montevideo",
315
+ label: "(GMT-04:00) Asunción",
316
+ value: "America/Asuncion",
85
317
  },
86
318
  {
87
- label: "(GMT-03:30) Newfoundland Time - St. Johns",
319
+ label: "(GMT-04:00) Caracas",
320
+ value: "America/Caracas",
321
+ },
322
+ {
323
+ label: "(GMT-03:30) St. John's",
88
324
  value: "America/St_Johns",
89
325
  },
90
326
  {
91
- label: "(GMT-03:00) Santiago",
92
- value: "America/Santiago",
327
+ label: "(GMT-03:00) Buenos Aires",
328
+ value: "America/Argentina/Buenos_Aires",
93
329
  },
94
330
  {
95
- label: "(GMT-02:00) Sao Paulo",
331
+ label: "(GMT-03:00) São Paulo",
96
332
  value: "America/Sao_Paulo",
97
333
  },
98
334
  {
99
- label: "(GMT-02:00) South Georgia",
335
+ label: "(GMT-03:00) Palmer",
336
+ value: "Antarctica/Palmer",
337
+ },
338
+ {
339
+ label: "(GMT-03:00) Punta Arenas",
340
+ value: "America/Punta_Arenas",
341
+ },
342
+ {
343
+ label: "(GMT-03:00) Stanley",
344
+ value: "Atlantic/Stanley",
345
+ },
346
+ {
347
+ label: "(GMT-03:00) Cayenne",
348
+ value: "America/Cayenne",
349
+ },
350
+ {
351
+ label: "(GMT-03:00) Saint-Pierre",
352
+ value: "America/Miquelon",
353
+ },
354
+ {
355
+ label: "(GMT-03:00) Paramaribo",
356
+ value: "America/Paramaribo",
357
+ },
358
+ {
359
+ label: "(GMT-03:00) Montevideo",
360
+ value: "America/Montevideo",
361
+ },
362
+ {
363
+ label: "(GMT-02:00) Noronha",
364
+ value: "America/Noronha",
365
+ },
366
+ {
367
+ label: "(GMT-02:00) Grytviken",
100
368
  value: "Atlantic/South_Georgia",
101
369
  },
102
370
  {
103
- label: "(GMT-01:00) Azores",
371
+ label: "(GMT-02:00) Nuuk",
372
+ value: "America/Nuuk",
373
+ },
374
+ {
375
+ label: "(GMT-01:00) Ponta Delgada",
104
376
  value: "Atlantic/Azores",
105
377
  },
106
378
  {
107
- label: "(GMT-01:00) Cape Verde",
379
+ label: "(GMT-01:00) Praia",
108
380
  value: "Atlantic/Cape_Verde",
109
381
  },
110
382
  {
111
- label: "(GMT+00:00) Casablanca",
112
- value: "Africa/Casablanca",
383
+ label: "(GMT-01:00) Scoresbysund",
384
+ value: "America/Scoresbysund",
385
+ },
386
+ {
387
+ label: "(GMT+00:00) Abidjan",
388
+ value: "Africa/Abidjan",
389
+ },
390
+ {
391
+ label: "(GMT+00:00) Bamako",
392
+ value: "Africa/Bamako",
393
+ },
394
+ {
395
+ label: "(GMT+00:00) Bissau",
396
+ value: "Africa/Bissau",
397
+ },
398
+ {
399
+ label: "(GMT+00:00) Conakry",
400
+ value: "Africa/Conakry",
401
+ },
402
+ {
403
+ label: "(GMT+00:00) Dakar",
404
+ value: "Africa/Dakar",
405
+ },
406
+ {
407
+ label: "(GMT+00:00) Danmarkshavn",
408
+ value: "America/Danmarkshavn",
409
+ },
410
+ {
411
+ label: "(GMT+00:00) Douglas",
412
+ value: "Europe/Isle_of_Man",
113
413
  },
114
414
  {
115
415
  label: "(GMT+00:00) Dublin",
116
416
  value: "Europe/Dublin",
117
417
  },
118
418
  {
119
- label: "(GMT+00:00) Lisbon",
120
- value: "Europe/Lisbon",
419
+ label: "(GMT+00:00) Freetown",
420
+ value: "Africa/Freetown",
421
+ },
422
+ {
423
+ label: "(GMT+00:00) Jamestown",
424
+ value: "Atlantic/St_Helena",
425
+ },
426
+ {
427
+ label: "(GMT+00:00) Kumasi",
428
+ value: "Africa/Accra",
429
+ },
430
+ {
431
+ label: "(GMT+00:00) Lomé",
432
+ value: "Africa/Lome",
121
433
  },
122
434
  {
123
435
  label: "(GMT+00:00) London",
@@ -127,6 +439,62 @@ export const timezones = [
127
439
  label: "(GMT+00:00) Monrovia",
128
440
  value: "Africa/Monrovia",
129
441
  },
442
+ {
443
+ label: "(GMT+00:00) Nouakchott",
444
+ value: "Africa/Nouakchott",
445
+ },
446
+ {
447
+ label: "(GMT+00:00) Ouagadougou",
448
+ value: "Africa/Ouagadougou",
449
+ },
450
+ {
451
+ label: "(GMT+00:00) Reykjavík",
452
+ value: "Atlantic/Reykjavik",
453
+ },
454
+ {
455
+ label: "(GMT+00:00) Saint Helier",
456
+ value: "Europe/Jersey",
457
+ },
458
+ {
459
+ label: "(GMT+00:00) Saint Peter Port",
460
+ value: "Europe/Guernsey",
461
+ },
462
+ {
463
+ label: "(GMT+00:00) Serekunda",
464
+ value: "Africa/Banjul",
465
+ },
466
+ {
467
+ label: "(GMT+00:00) São Tomé",
468
+ value: "Africa/Sao_Tome",
469
+ },
470
+ {
471
+ label: "(GMT+00:00) Troll",
472
+ value: "Antarctica/Troll",
473
+ },
474
+ {
475
+ label: "(GMT+00:00) Casablanca",
476
+ value: "Africa/Casablanca",
477
+ },
478
+ {
479
+ label: "(GMT+00:00) Laayoune",
480
+ value: "Africa/El_Aaiun",
481
+ },
482
+ {
483
+ label: "(GMT+00:00) Las Palmas de Gran Canaria",
484
+ value: "Atlantic/Canary",
485
+ },
486
+ {
487
+ label: "(GMT+00:00) Lisbon",
488
+ value: "Europe/Lisbon",
489
+ },
490
+ {
491
+ label: "(GMT+00:00) Tórshavn",
492
+ value: "Atlantic/Faroe",
493
+ },
494
+ {
495
+ label: "(GMT+01:00) Windhoek",
496
+ value: "Africa/Windhoek",
497
+ },
130
498
  {
131
499
  label: "(GMT+01:00) Algiers",
132
500
  value: "Africa/Algiers",
@@ -135,10 +503,22 @@ export const timezones = [
135
503
  label: "(GMT+01:00) Amsterdam",
136
504
  value: "Europe/Amsterdam",
137
505
  },
506
+ {
507
+ label: "(GMT+01:00) Andorra la Vella",
508
+ value: "Europe/Andorra",
509
+ },
510
+ {
511
+ label: "(GMT+01:00) Belgrade",
512
+ value: "Europe/Belgrade",
513
+ },
138
514
  {
139
515
  label: "(GMT+01:00) Berlin",
140
516
  value: "Europe/Berlin",
141
517
  },
518
+ {
519
+ label: "(GMT+01:00) Bratislava",
520
+ value: "Europe/Bratislava",
521
+ },
142
522
  {
143
523
  label: "(GMT+01:00) Brussels",
144
524
  value: "Europe/Brussels",
@@ -148,33 +528,89 @@ export const timezones = [
148
528
  value: "Europe/Budapest",
149
529
  },
150
530
  {
151
- label: "(GMT+01:00) Central European Time - Belgrade",
152
- value: "Europe/Belgrade",
531
+ label: "(GMT+01:00) Copenhagen",
532
+ value: "Europe/Copenhagen",
153
533
  },
154
534
  {
155
- label: "(GMT+01:00) Central European Time - Prague",
156
- value: "Europe/Prague",
535
+ label: "(GMT+01:00) Gibraltar",
536
+ value: "Europe/Gibraltar",
157
537
  },
158
538
  {
159
- label: "(GMT+01:00) Copenhagen",
160
- value: "Europe/Copenhagen",
539
+ label: "(GMT+01:00) Ljubljana",
540
+ value: "Europe/Ljubljana",
541
+ },
542
+ {
543
+ label: "(GMT+01:00) Longyearbyen",
544
+ value: "Arctic/Longyearbyen",
545
+ },
546
+ {
547
+ label: "(GMT+01:00) Luxembourg",
548
+ value: "Europe/Luxembourg",
161
549
  },
162
550
  {
163
551
  label: "(GMT+01:00) Madrid",
164
552
  value: "Europe/Madrid",
165
553
  },
554
+ {
555
+ label: "(GMT+01:00) Monaco",
556
+ value: "Europe/Monaco",
557
+ },
558
+ {
559
+ label: "(GMT+01:00) Oslo",
560
+ value: "Europe/Oslo",
561
+ },
166
562
  {
167
563
  label: "(GMT+01:00) Paris",
168
564
  value: "Europe/Paris",
169
565
  },
566
+ {
567
+ label: "(GMT+01:00) Podgorica",
568
+ value: "Europe/Podgorica",
569
+ },
570
+ {
571
+ label: "(GMT+01:00) Prague",
572
+ value: "Europe/Prague",
573
+ },
170
574
  {
171
575
  label: "(GMT+01:00) Rome",
172
576
  value: "Europe/Rome",
173
577
  },
578
+ {
579
+ label: "(GMT+01:00) San Marino",
580
+ value: "Europe/San_Marino",
581
+ },
582
+ {
583
+ label: "(GMT+01:00) San Pawl il-Baħar",
584
+ value: "Europe/Malta",
585
+ },
586
+ {
587
+ label: "(GMT+01:00) Sarajevo",
588
+ value: "Europe/Sarajevo",
589
+ },
590
+ {
591
+ label: "(GMT+01:00) Skopje",
592
+ value: "Europe/Skopje",
593
+ },
174
594
  {
175
595
  label: "(GMT+01:00) Stockholm",
176
596
  value: "Europe/Stockholm",
177
597
  },
598
+ {
599
+ label: "(GMT+01:00) Tirana",
600
+ value: "Europe/Tirane",
601
+ },
602
+ {
603
+ label: "(GMT+01:00) Tunis",
604
+ value: "Africa/Tunis",
605
+ },
606
+ {
607
+ label: "(GMT+01:00) Vaduz",
608
+ value: "Europe/Vaduz",
609
+ },
610
+ {
611
+ label: "(GMT+01:00) Vatican City",
612
+ value: "Europe/Vatican",
613
+ },
178
614
  {
179
615
  label: "(GMT+01:00) Vienna",
180
616
  value: "Europe/Vienna",
@@ -183,10 +619,106 @@ export const timezones = [
183
619
  label: "(GMT+01:00) Warsaw",
184
620
  value: "Europe/Warsaw",
185
621
  },
622
+ {
623
+ label: "(GMT+01:00) Zagreb",
624
+ value: "Europe/Zagreb",
625
+ },
626
+ {
627
+ label: "(GMT+01:00) Zürich",
628
+ value: "Europe/Zurich",
629
+ },
630
+ {
631
+ label: "(GMT+01:00) Bangui",
632
+ value: "Africa/Bangui",
633
+ },
634
+ {
635
+ label: "(GMT+01:00) Bata",
636
+ value: "Africa/Malabo",
637
+ },
638
+ {
639
+ label: "(GMT+01:00) Brazzaville",
640
+ value: "Africa/Brazzaville",
641
+ },
642
+ {
643
+ label: "(GMT+01:00) Cotonou",
644
+ value: "Africa/Porto-Novo",
645
+ },
646
+ {
647
+ label: "(GMT+01:00) Douala",
648
+ value: "Africa/Douala",
649
+ },
650
+ {
651
+ label: "(GMT+01:00) Kinshasa",
652
+ value: "Africa/Kinshasa",
653
+ },
654
+ {
655
+ label: "(GMT+01:00) Lagos",
656
+ value: "Africa/Lagos",
657
+ },
658
+ {
659
+ label: "(GMT+01:00) Libreville",
660
+ value: "Africa/Libreville",
661
+ },
662
+ {
663
+ label: "(GMT+01:00) Luanda",
664
+ value: "Africa/Luanda",
665
+ },
666
+ {
667
+ label: "(GMT+01:00) N'Djamena",
668
+ value: "Africa/Ndjamena",
669
+ },
670
+ {
671
+ label: "(GMT+01:00) Niamey",
672
+ value: "Africa/Niamey",
673
+ },
674
+ {
675
+ label: "(GMT+02:00) Bujumbura",
676
+ value: "Africa/Bujumbura",
677
+ },
678
+ {
679
+ label: "(GMT+02:00) Gaborone",
680
+ value: "Africa/Gaborone",
681
+ },
682
+ {
683
+ label: "(GMT+02:00) Harare",
684
+ value: "Africa/Harare",
685
+ },
686
+ {
687
+ label: "(GMT+02:00) Juba",
688
+ value: "Africa/Juba",
689
+ },
690
+ {
691
+ label: "(GMT+02:00) Khartoum",
692
+ value: "Africa/Khartoum",
693
+ },
694
+ {
695
+ label: "(GMT+02:00) Kigali",
696
+ value: "Africa/Kigali",
697
+ },
698
+ {
699
+ label: "(GMT+02:00) Lilongwe",
700
+ value: "Africa/Blantyre",
701
+ },
702
+ {
703
+ label: "(GMT+02:00) Lubumbashi",
704
+ value: "Africa/Lubumbashi",
705
+ },
706
+ {
707
+ label: "(GMT+02:00) Lusaka",
708
+ value: "Africa/Lusaka",
709
+ },
710
+ {
711
+ label: "(GMT+02:00) Maputo",
712
+ value: "Africa/Maputo",
713
+ },
186
714
  {
187
715
  label: "(GMT+02:00) Athens",
188
716
  value: "Europe/Athens",
189
717
  },
718
+ {
719
+ label: "(GMT+02:00) Beirut",
720
+ value: "Asia/Beirut",
721
+ },
190
722
  {
191
723
  label: "(GMT+02:00) Bucharest",
192
724
  value: "Europe/Bucharest",
@@ -196,24 +728,32 @@ export const timezones = [
196
728
  value: "Africa/Cairo",
197
729
  },
198
730
  {
199
- label: "(GMT+02:00) Jerusalem",
200
- value: "Asia/Jerusalem",
731
+ label: "(GMT+02:00) Chisinau",
732
+ value: "Europe/Chisinau",
201
733
  },
202
734
  {
203
- label: "(GMT+02:00) Johannesburg",
204
- value: "Africa/Johannesburg",
735
+ label: "(GMT+02:00) East Jerusalem",
736
+ value: "Asia/Hebron",
205
737
  },
206
738
  {
207
739
  label: "(GMT+02:00) Helsinki",
208
740
  value: "Europe/Helsinki",
209
741
  },
210
742
  {
211
- label: "(GMT+02:00) Kiev",
212
- value: "Europe/Kiev",
743
+ label: "(GMT+02:00) Kaliningrad",
744
+ value: "Europe/Kaliningrad",
745
+ },
746
+ {
747
+ label: "(GMT+02:00) Kyiv",
748
+ value: "Europe/Kyiv",
213
749
  },
214
750
  {
215
- label: "(GMT+02:00) Moscow-01 - Kaliningrad",
216
- value: "Europe/Kaliningrad",
751
+ label: "(GMT+02:00) Mariehamn",
752
+ value: "Europe/Mariehamn",
753
+ },
754
+ {
755
+ label: "(GMT+02:00) Nicosia",
756
+ value: "Asia/Nicosia",
217
757
  },
218
758
  {
219
759
  label: "(GMT+02:00) Riga",
@@ -227,18 +767,98 @@ export const timezones = [
227
767
  label: "(GMT+02:00) Tallinn",
228
768
  value: "Europe/Tallinn",
229
769
  },
770
+ {
771
+ label: "(GMT+02:00) Tripoli",
772
+ value: "Africa/Tripoli",
773
+ },
230
774
  {
231
775
  label: "(GMT+02:00) Vilnius",
232
776
  value: "Europe/Vilnius",
233
777
  },
234
778
  {
235
- label: "(GMT+03:00) Istanbul",
236
- value: "Europe/Istanbul",
779
+ label: "(GMT+02:00) Jerusalem",
780
+ value: "Asia/Jerusalem",
781
+ },
782
+ {
783
+ label: "(GMT+02:00) Johannesburg",
784
+ value: "Africa/Johannesburg",
785
+ },
786
+ {
787
+ label: "(GMT+02:00) Manzini",
788
+ value: "Africa/Mbabane",
789
+ },
790
+ {
791
+ label: "(GMT+02:00) Maseru",
792
+ value: "Africa/Maseru",
793
+ },
794
+ {
795
+ label: "(GMT+03:00) Al Aḩmadī",
796
+ value: "Asia/Kuwait",
797
+ },
798
+ {
799
+ label: "(GMT+03:00) Ar Rifā‘",
800
+ value: "Asia/Bahrain",
237
801
  },
238
802
  {
239
803
  label: "(GMT+03:00) Baghdad",
240
804
  value: "Asia/Baghdad",
241
805
  },
806
+ {
807
+ label: "(GMT+03:00) Doha",
808
+ value: "Asia/Qatar",
809
+ },
810
+ {
811
+ label: "(GMT+03:00) Jeddah",
812
+ value: "Asia/Riyadh",
813
+ },
814
+ {
815
+ label: "(GMT+03:00) Sanaa",
816
+ value: "Asia/Aden",
817
+ },
818
+ {
819
+ label: "(GMT+03:00) Amman",
820
+ value: "Asia/Amman",
821
+ },
822
+ {
823
+ label: "(GMT+03:00) Aleppo",
824
+ value: "Asia/Damascus",
825
+ },
826
+ {
827
+ label: "(GMT+03:00) Addis Ababa",
828
+ value: "Africa/Addis_Ababa",
829
+ },
830
+ {
831
+ label: "(GMT+03:00) Antananarivo",
832
+ value: "Indian/Antananarivo",
833
+ },
834
+ {
835
+ label: "(GMT+03:00) Asmara",
836
+ value: "Africa/Asmara",
837
+ },
838
+ {
839
+ label: "(GMT+03:00) Dar es Salaam",
840
+ value: "Africa/Dar_es_Salaam",
841
+ },
842
+ {
843
+ label: "(GMT+03:00) Djibouti",
844
+ value: "Africa/Djibouti",
845
+ },
846
+ {
847
+ label: "(GMT+03:00) Kampala",
848
+ value: "Africa/Kampala",
849
+ },
850
+ {
851
+ label: "(GMT+03:00) Mamoudzou",
852
+ value: "Indian/Mayotte",
853
+ },
854
+ {
855
+ label: "(GMT+03:00) Mogadishu",
856
+ value: "Africa/Mogadishu",
857
+ },
858
+ {
859
+ label: "(GMT+03:00) Moroni",
860
+ value: "Indian/Comoro",
861
+ },
242
862
  {
243
863
  label: "(GMT+03:00) Nairobi",
244
864
  value: "Africa/Nairobi",
@@ -248,92 +868,224 @@ export const timezones = [
248
868
  value: "Europe/Minsk",
249
869
  },
250
870
  {
251
- label: "(GMT+03:00) Riyadh",
252
- value: "Asia/Riyadh",
871
+ label: "(GMT+03:00) Moscow",
872
+ value: "Europe/Moscow",
253
873
  },
254
874
  {
255
- label: "(GMT+03:00) Moscow+00 - Moscow",
256
- value: "Europe/Moscow",
875
+ label: "(GMT+03:00) Sevastopol",
876
+ value: "Europe/Simferopol",
877
+ },
878
+ {
879
+ label: "(GMT+03:00) Syowa",
880
+ value: "Antarctica/Syowa",
881
+ },
882
+ {
883
+ label: "(GMT+03:00) Istanbul",
884
+ value: "Europe/Istanbul",
257
885
  },
258
886
  {
259
887
  label: "(GMT+03:30) Tehran",
260
888
  value: "Asia/Tehran",
261
889
  },
262
890
  {
263
- label: "(GMT+04:00) Baku",
264
- value: "Asia/Baku",
891
+ label: "(GMT+04:00) Yerevan",
892
+ value: "Asia/Yerevan",
265
893
  },
266
894
  {
267
- label: "(GMT+04:00) Moscow+01 - Samara",
268
- value: "Europe/Samara",
895
+ label: "(GMT+04:00) Baku",
896
+ value: "Asia/Baku",
269
897
  },
270
898
  {
271
899
  label: "(GMT+04:00) Tbilisi",
272
900
  value: "Asia/Tbilisi",
273
901
  },
274
902
  {
275
- label: "(GMT+04:00) Yerevan",
276
- value: "Asia/Yerevan",
903
+ label: "(GMT+04:00) Dubai",
904
+ value: "Asia/Dubai",
905
+ },
906
+ {
907
+ label: "(GMT+04:00) Muscat",
908
+ value: "Asia/Muscat",
909
+ },
910
+ {
911
+ label: "(GMT+04:00) Port Louis",
912
+ value: "Indian/Mauritius",
913
+ },
914
+ {
915
+ label: "(GMT+04:00) Saint-Denis",
916
+ value: "Indian/Reunion",
917
+ },
918
+ {
919
+ label: "(GMT+04:00) Samara",
920
+ value: "Europe/Samara",
921
+ },
922
+ {
923
+ label: "(GMT+04:00) Victoria",
924
+ value: "Indian/Mahe",
277
925
  },
278
926
  {
279
927
  label: "(GMT+04:30) Kabul",
280
928
  value: "Asia/Kabul",
281
929
  },
930
+ {
931
+ label: "(GMT+05:00) Port-aux-Français",
932
+ value: "Indian/Kerguelen",
933
+ },
934
+ {
935
+ label: "(GMT+05:00) Male",
936
+ value: "Indian/Maldives",
937
+ },
938
+ {
939
+ label: "(GMT+05:00) Mawson",
940
+ value: "Antarctica/Mawson",
941
+ },
282
942
  {
283
943
  label: "(GMT+05:00) Karachi",
284
944
  value: "Asia/Karachi",
285
945
  },
286
946
  {
287
- label: "(GMT+05:00) Moscow+02 - Yekaterinburg",
288
- value: "Asia/Yekaterinburg",
947
+ label: "(GMT+05:00) Dushanbe",
948
+ value: "Asia/Dushanbe",
949
+ },
950
+ {
951
+ label: "(GMT+05:00) Ashgabat",
952
+ value: "Asia/Ashgabat",
289
953
  },
290
954
  {
291
955
  label: "(GMT+05:00) Tashkent",
292
956
  value: "Asia/Tashkent",
293
957
  },
958
+ {
959
+ label: "(GMT+05:00) Aktobe",
960
+ value: "Asia/Aqtobe",
961
+ },
962
+ {
963
+ label: "(GMT+05:00) Yekaterinburg",
964
+ value: "Asia/Yekaterinburg",
965
+ },
294
966
  {
295
967
  label: "(GMT+05:30) Colombo",
296
968
  value: "Asia/Colombo",
297
969
  },
298
970
  {
299
- label: "(GMT+06:00) Almaty",
300
- value: "Asia/Almaty",
971
+ label: "(GMT+05:30) Mumbai",
972
+ value: "Asia/Kolkata",
973
+ },
974
+ {
975
+ label: "(GMT+05:45) Kathmandu",
976
+ value: "Asia/Kathmandu",
301
977
  },
302
978
  {
303
979
  label: "(GMT+06:00) Dhaka",
304
980
  value: "Asia/Dhaka",
305
981
  },
306
982
  {
307
- label: "(GMT+06:30) Rangoon",
308
- value: "Asia/Rangoon",
983
+ label: "(GMT+06:00) Thimphu",
984
+ value: "Asia/Thimphu",
985
+ },
986
+ {
987
+ label: "(GMT+06:00) Ürümqi",
988
+ value: "Asia/Urumqi",
989
+ },
990
+ {
991
+ label: "(GMT+06:00) Almaty",
992
+ value: "Asia/Almaty",
993
+ },
994
+ {
995
+ label: "(GMT+06:00) Chagos",
996
+ value: "Indian/Chagos",
997
+ },
998
+ {
999
+ label: "(GMT+06:00) Bishkek",
1000
+ value: "Asia/Bishkek",
1001
+ },
1002
+ {
1003
+ label: "(GMT+06:00) Omsk",
1004
+ value: "Asia/Omsk",
1005
+ },
1006
+ {
1007
+ label: "(GMT+06:00) Vostok",
1008
+ value: "Antarctica/Vostok",
1009
+ },
1010
+ {
1011
+ label: "(GMT+06:30) West Island",
1012
+ value: "Indian/Cocos",
1013
+ },
1014
+ {
1015
+ label: "(GMT+06:30) Yangon",
1016
+ value: "Asia/Yangon",
1017
+ },
1018
+ {
1019
+ label: "(GMT+07:00) Flying Fish Cove",
1020
+ value: "Indian/Christmas",
1021
+ },
1022
+ {
1023
+ label: "(GMT+07:00) Davis",
1024
+ value: "Antarctica/Davis",
1025
+ },
1026
+ {
1027
+ label: "(GMT+07:00) Ulaangom",
1028
+ value: "Asia/Hovd",
309
1029
  },
310
1030
  {
311
1031
  label: "(GMT+07:00) Bangkok",
312
1032
  value: "Asia/Bangkok",
313
1033
  },
1034
+ {
1035
+ label: "(GMT+07:00) Ho Chi Minh City",
1036
+ value: "Asia/Ho_Chi_Minh",
1037
+ },
1038
+ {
1039
+ label: "(GMT+07:00) Phnom Penh",
1040
+ value: "Asia/Phnom_Penh",
1041
+ },
1042
+ {
1043
+ label: "(GMT+07:00) Vientiane",
1044
+ value: "Asia/Vientiane",
1045
+ },
1046
+ {
1047
+ label: "(GMT+07:00) Novosibirsk",
1048
+ value: "Asia/Novosibirsk",
1049
+ },
314
1050
  {
315
1051
  label: "(GMT+07:00) Jakarta",
316
1052
  value: "Asia/Jakarta",
317
1053
  },
318
1054
  {
319
- label: "(GMT+07:00) Moscow+04 - Krasnoyarsk",
320
- value: "Asia/Krasnoyarsk",
1055
+ label: "(GMT+08:00) Perth",
1056
+ value: "Australia/Perth",
1057
+ },
1058
+ {
1059
+ label: "(GMT+08:00) Bandar Seri Begawan",
1060
+ value: "Asia/Brunei",
1061
+ },
1062
+ {
1063
+ label: "(GMT+08:00) Makassar",
1064
+ value: "Asia/Makassar",
1065
+ },
1066
+ {
1067
+ label: "(GMT+08:00) Macau",
1068
+ value: "Asia/Macau",
321
1069
  },
322
1070
  {
323
- label: "(GMT+08:00) China Time - Beijing",
1071
+ label: "(GMT+08:00) Shanghai",
324
1072
  value: "Asia/Shanghai",
325
1073
  },
326
1074
  {
327
1075
  label: "(GMT+08:00) Hong Kong",
328
1076
  value: "Asia/Hong_Kong",
329
1077
  },
1078
+ {
1079
+ label: "(GMT+08:00) Irkutsk",
1080
+ value: "Asia/Irkutsk",
1081
+ },
330
1082
  {
331
1083
  label: "(GMT+08:00) Kuala Lumpur",
332
1084
  value: "Asia/Kuala_Lumpur",
333
1085
  },
334
1086
  {
335
- label: "(GMT+08:00) Moscow+05 - Irkutsk",
336
- value: "Asia/Irkutsk",
1087
+ label: "(GMT+08:00) Quezon City",
1088
+ value: "Asia/Manila",
337
1089
  },
338
1090
  {
339
1091
  label: "(GMT+08:00) Singapore",
@@ -344,95 +1096,179 @@ export const timezones = [
344
1096
  value: "Asia/Taipei",
345
1097
  },
346
1098
  {
347
- label: "(GMT+08:00) Ulaanbaatar",
1099
+ label: "(GMT+08:00) Ulan Bator",
348
1100
  value: "Asia/Ulaanbaatar",
349
1101
  },
350
1102
  {
351
- label: "(GMT+08:00) Western Time - Perth",
352
- value: "Australia/Perth",
1103
+ label: "(GMT+08:45) Eucla",
1104
+ value: "Australia/Eucla",
353
1105
  },
354
1106
  {
355
- label: "(GMT+09:00) Moscow+06 - Yakutsk",
356
- value: "Asia/Yakutsk",
1107
+ label: "(GMT+09:00) Dili",
1108
+ value: "Asia/Dili",
357
1109
  },
358
1110
  {
359
- label: "(GMT+09:00) Seoul",
360
- value: "Asia/Seoul",
1111
+ label: "(GMT+09:00) Jayapura",
1112
+ value: "Asia/Jayapura",
361
1113
  },
362
1114
  {
363
1115
  label: "(GMT+09:00) Tokyo",
364
1116
  value: "Asia/Tokyo",
365
1117
  },
366
1118
  {
367
- label: "(GMT+09:30) Central Time - Darwin",
1119
+ label: "(GMT+09:00) Pyongyang",
1120
+ value: "Asia/Pyongyang",
1121
+ },
1122
+ {
1123
+ label: "(GMT+09:00) Seoul",
1124
+ value: "Asia/Seoul",
1125
+ },
1126
+ {
1127
+ label: "(GMT+09:00) Ngerulmud",
1128
+ value: "Pacific/Palau",
1129
+ },
1130
+ {
1131
+ label: "(GMT+09:00) Chita",
1132
+ value: "Asia/Chita",
1133
+ },
1134
+ {
1135
+ label: "(GMT+09:30) Adelaide",
1136
+ value: "Australia/Adelaide",
1137
+ },
1138
+ {
1139
+ label: "(GMT+09:30) Darwin",
368
1140
  value: "Australia/Darwin",
369
1141
  },
370
1142
  {
371
- label: "(GMT+10:00) Eastern Time - Brisbane",
1143
+ label: "(GMT+10:00) Brisbane",
372
1144
  value: "Australia/Brisbane",
373
1145
  },
374
1146
  {
375
- label: "(GMT+10:00) Guam",
1147
+ label: "(GMT+10:00) Sydney",
1148
+ value: "Australia/Sydney",
1149
+ },
1150
+ {
1151
+ label: "(GMT+10:00) Dededo Village",
376
1152
  value: "Pacific/Guam",
377
1153
  },
378
1154
  {
379
- label: "(GMT+10:00) Moscow+07 - Magadan",
380
- value: "Asia/Magadan",
1155
+ label: "(GMT+10:00) Saipan",
1156
+ value: "Pacific/Saipan",
381
1157
  },
382
1158
  {
383
- label: "(GMT+10:00) Moscow+07 - Yuzhno-Sakhalinsk",
384
- value: "Asia/Vladivostok",
1159
+ label: "(GMT+10:00) Chuuk",
1160
+ value: "Pacific/Chuuk",
1161
+ },
1162
+ {
1163
+ label: "(GMT+10:00) DumontDUrville",
1164
+ value: "Antarctica/DumontDUrville",
385
1165
  },
386
1166
  {
387
1167
  label: "(GMT+10:00) Port Moresby",
388
1168
  value: "Pacific/Port_Moresby",
389
1169
  },
390
1170
  {
391
- label: "(GMT+10:30) Central Time - Adelaide",
392
- value: "Australia/Adelaide",
1171
+ label: "(GMT+10:00) Khabarovsk",
1172
+ value: "Asia/Vladivostok",
393
1173
  },
394
1174
  {
395
- label: "(GMT+11:00) Eastern Time - Hobart",
396
- value: "Australia/Hobart",
1175
+ label: "(GMT+10:30) Lord Howe",
1176
+ value: "Australia/Lord_Howe",
397
1177
  },
398
1178
  {
399
- label: "(GMT+11:00) Eastern Time - Melbourne, Sydney",
400
- value: "Australia/Sydney",
1179
+ label: "(GMT+11:00) Arawa",
1180
+ value: "Pacific/Bougainville",
401
1181
  },
402
1182
  {
403
- label: "(GMT+11:00) Guadalcanal",
404
- value: "Pacific/Guadalcanal",
1183
+ label: "(GMT+11:00) Casey",
1184
+ value: "Antarctica/Casey",
1185
+ },
1186
+ {
1187
+ label: "(GMT+11:00) Kosrae",
1188
+ value: "Pacific/Kosrae",
405
1189
  },
406
1190
  {
407
- label: "(GMT+11:00) Noumea",
1191
+ label: "(GMT+11:00) Nouméa",
408
1192
  value: "Pacific/Noumea",
409
1193
  },
1194
+ {
1195
+ label: "(GMT+11:00) Kingston",
1196
+ value: "Pacific/Norfolk",
1197
+ },
1198
+ {
1199
+ label: "(GMT+11:00) Yuzhno-Sakhalinsk",
1200
+ value: "Asia/Sakhalin",
1201
+ },
1202
+ {
1203
+ label: "(GMT+11:00) Honiara",
1204
+ value: "Pacific/Guadalcanal",
1205
+ },
1206
+ {
1207
+ label: "(GMT+11:00) Port-Vila",
1208
+ value: "Pacific/Efate",
1209
+ },
1210
+ {
1211
+ label: "(GMT+12:00) Nasinu",
1212
+ value: "Pacific/Fiji",
1213
+ },
1214
+ {
1215
+ label: "(GMT+12:00) Tarawa",
1216
+ value: "Pacific/Tarawa",
1217
+ },
410
1218
  {
411
1219
  label: "(GMT+12:00) Majuro",
412
1220
  value: "Pacific/Majuro",
413
1221
  },
414
1222
  {
415
- label: "(GMT+12:00) Moscow+09 - Petropavlovsk-Kamchatskiy",
416
- value: "Asia/Kamchatka",
1223
+ label: "(GMT+12:00) Yaren",
1224
+ value: "Pacific/Nauru",
417
1225
  },
418
1226
  {
419
- label: "(GMT+13:00) Auckland",
1227
+ label: "(GMT+12:00) Auckland",
420
1228
  value: "Pacific/Auckland",
421
1229
  },
422
1230
  {
423
- label: "(GMT+13:00) Fakaofo",
424
- value: "Pacific/Fakaofo",
1231
+ label: "(GMT+12:00) McMurdo",
1232
+ value: "Antarctica/McMurdo",
425
1233
  },
426
1234
  {
427
- label: "(GMT+13:00) Fiji",
428
- value: "Pacific/Fiji",
1235
+ label: "(GMT+12:00) Petropavlovsk-Kamchatsky",
1236
+ value: "Asia/Kamchatka",
429
1237
  },
430
1238
  {
431
- label: "(GMT+13:00) Tongatapu",
432
- value: "Pacific/Tongatapu",
1239
+ label: "(GMT+12:00) Funafuti",
1240
+ value: "Pacific/Funafuti",
433
1241
  },
434
1242
  {
435
- label: "(GMT+14:00) Apia",
1243
+ label: "(GMT+12:00) Wake",
1244
+ value: "Pacific/Wake",
1245
+ },
1246
+ {
1247
+ label: "(GMT+12:00) Mata-Utu",
1248
+ value: "Pacific/Wallis",
1249
+ },
1250
+ {
1251
+ label: "(GMT+12:45) Chatham",
1252
+ value: "Pacific/Chatham",
1253
+ },
1254
+ {
1255
+ label: "(GMT+13:00) Apia",
436
1256
  value: "Pacific/Apia",
437
1257
  },
1258
+ {
1259
+ label: "(GMT+13:00) Kanton",
1260
+ value: "Pacific/Kanton",
1261
+ },
1262
+ {
1263
+ label: "(GMT+13:00) Fakaofo",
1264
+ value: "Pacific/Fakaofo",
1265
+ },
1266
+ {
1267
+ label: "(GMT+13:00) Nuku‘alofa",
1268
+ value: "Pacific/Tongatapu",
1269
+ },
1270
+ {
1271
+ label: "(GMT+14:00) Kiritimati",
1272
+ value: "Pacific/Kiritimati",
1273
+ }
438
1274
  ];