keystone-design-bootstrap 1.0.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.
- package/README.md +179 -0
- package/package.json +59 -0
- package/src/contexts/ThemeContext.tsx +34 -0
- package/src/contexts/index.ts +1 -0
- package/src/design_system/elements/IconComponent.tsx +98 -0
- package/src/design_system/elements/avatar/avatar-label-group.tsx +30 -0
- package/src/design_system/elements/avatar/avatar-profile-photo.tsx +125 -0
- package/src/design_system/elements/avatar/avatar.tsx +131 -0
- package/src/design_system/elements/avatar/base-components/avatar-add-button.tsx +34 -0
- package/src/design_system/elements/avatar/base-components/avatar-company-icon.tsx +26 -0
- package/src/design_system/elements/avatar/base-components/avatar-online-indicator.tsx +31 -0
- package/src/design_system/elements/avatar/base-components/index.tsx +4 -0
- package/src/design_system/elements/avatar/base-components/verified-tick.tsx +34 -0
- package/src/design_system/elements/avatar/utils.ts +12 -0
- package/src/design_system/elements/badges/avatar.tsx +132 -0
- package/src/design_system/elements/badges/badge-groups.tsx +176 -0
- package/src/design_system/elements/badges/badge-types.ts +266 -0
- package/src/design_system/elements/badges/badges.tsx +430 -0
- package/src/design_system/elements/breadcrumb/Breadcrumb.tsx +33 -0
- package/src/design_system/elements/button-group/button-group.tsx +106 -0
- package/src/design_system/elements/buttons/app-store-buttons-outline.tsx +378 -0
- package/src/design_system/elements/buttons/app-store-buttons.tsx +567 -0
- package/src/design_system/elements/buttons/button-utility.tsx +116 -0
- package/src/design_system/elements/buttons/button.aman.tsx +174 -0
- package/src/design_system/elements/buttons/button.tsx +271 -0
- package/src/design_system/elements/buttons/close-button.tsx +42 -0
- package/src/design_system/elements/buttons/round-button.tsx +29 -0
- package/src/design_system/elements/buttons/social-button.tsx +148 -0
- package/src/design_system/elements/buttons/social-logos.tsx +115 -0
- package/src/design_system/elements/carousel/carousel-base.tsx +308 -0
- package/src/design_system/elements/carousel/carousel.tsx +308 -0
- package/src/design_system/elements/checkbox/checkbox.tsx +120 -0
- package/src/design_system/elements/date-picker/calendar.tsx +101 -0
- package/src/design_system/elements/date-picker/cell.tsx +106 -0
- package/src/design_system/elements/date-picker/date-input.tsx +32 -0
- package/src/design_system/elements/date-picker/date-picker.tsx +86 -0
- package/src/design_system/elements/date-picker/date-range-picker.tsx +163 -0
- package/src/design_system/elements/date-picker/range-calendar.tsx +161 -0
- package/src/design_system/elements/date-picker/range-preset.tsx +28 -0
- package/src/design_system/elements/featured-icon/featured-icon.tsx +154 -0
- package/src/design_system/elements/form/form.tsx +10 -0
- package/src/design_system/elements/form/hook-form.tsx +75 -0
- package/src/design_system/elements/hint-text/hint-text.tsx +33 -0
- package/src/design_system/elements/index.tsx +158 -0
- package/src/design_system/elements/input/hint-text.tsx +33 -0
- package/src/design_system/elements/input/input-group.tsx +133 -0
- package/src/design_system/elements/input/input.aman.tsx +172 -0
- package/src/design_system/elements/input/input.tsx +271 -0
- package/src/design_system/elements/input/label.tsx +50 -0
- package/src/design_system/elements/label/label.tsx +50 -0
- package/src/design_system/elements/loading-indicator/loading-indicator.tsx +123 -0
- package/src/design_system/elements/map/GoogleMap.tsx +286 -0
- package/src/design_system/elements/markdown-renderer/MarkdownRenderer.tsx +155 -0
- package/src/design_system/elements/modals/modal.tsx +41 -0
- package/src/design_system/elements/pagination/pagination-base.tsx +378 -0
- package/src/design_system/elements/pagination/pagination-dot.tsx +54 -0
- package/src/design_system/elements/pagination/pagination-line.tsx +50 -0
- package/src/design_system/elements/pagination/pagination.tsx +330 -0
- package/src/design_system/elements/photo-fallback/photo-fallback.tsx +143 -0
- package/src/design_system/elements/progress-indicators/progress-circles.tsx +176 -0
- package/src/design_system/elements/progress-indicators/progress-indicators.tsx +123 -0
- package/src/design_system/elements/progress-indicators/simple-circle.tsx +29 -0
- package/src/design_system/elements/radio-buttons/radio-buttons.tsx +129 -0
- package/src/design_system/elements/rating/rating-badge.tsx +144 -0
- package/src/design_system/elements/rating/rating-stars.tsx +77 -0
- package/src/design_system/elements/select/combobox.tsx +152 -0
- package/src/design_system/elements/select/multi-select.tsx +363 -0
- package/src/design_system/elements/select/popover.tsx +34 -0
- package/src/design_system/elements/select/select-item.tsx +97 -0
- package/src/design_system/elements/select/select-native.tsx +69 -0
- package/src/design_system/elements/select/select.aman.tsx +75 -0
- package/src/design_system/elements/select/select.tsx +146 -0
- package/src/design_system/elements/shared-assets/credit-card/credit-card.tsx +237 -0
- package/src/design_system/elements/shared-assets/credit-card/icons.tsx +75 -0
- package/src/design_system/elements/shared-assets/iphone-mockup.tsx +172 -0
- package/src/design_system/elements/shared-assets/section-divider.tsx +12 -0
- package/src/design_system/elements/slideout-menus/slideout-menu.tsx +122 -0
- package/src/design_system/elements/tabs/tabs.tsx +225 -0
- package/src/design_system/elements/tags/base-components/tag-checkbox.tsx +45 -0
- package/src/design_system/elements/tags/base-components/tag-close-x.tsx +34 -0
- package/src/design_system/elements/tags/tags.tsx +176 -0
- package/src/design_system/elements/textarea/textarea.aman.tsx +52 -0
- package/src/design_system/elements/textarea/textarea.tsx +111 -0
- package/src/design_system/elements/toggle/toggle.tsx +140 -0
- package/src/design_system/elements/tooltip/tooltip.tsx +109 -0
- package/src/design_system/hooks/use-breakpoint.ts +37 -0
- package/src/design_system/hooks/use-resize-observer.ts +68 -0
- package/src/design_system/logo/keystone-logo-minimal.tsx +93 -0
- package/src/design_system/logo/keystone-logo.tsx +22 -0
- package/src/design_system/sections/about-home.aman.tsx +85 -0
- package/src/design_system/sections/about-home.tsx +115 -0
- package/src/design_system/sections/blog-cards.tsx +848 -0
- package/src/design_system/sections/blog-gallery.aman.tsx +77 -0
- package/src/design_system/sections/blog-gallery.tsx +204 -0
- package/src/design_system/sections/blog-home.aman.tsx +84 -0
- package/src/design_system/sections/blog-home.tsx +153 -0
- package/src/design_system/sections/blog-post.aman.tsx +74 -0
- package/src/design_system/sections/blog-post.tsx +301 -0
- package/src/design_system/sections/blog-section.aman.tsx +101 -0
- package/src/design_system/sections/blog-section.tsx +179 -0
- package/src/design_system/sections/contact-home.tsx +25 -0
- package/src/design_system/sections/contact-section.aman.tsx +173 -0
- package/src/design_system/sections/contact-section.tsx +143 -0
- package/src/design_system/sections/faq-grid.aman.tsx +79 -0
- package/src/design_system/sections/faq-grid.tsx +102 -0
- package/src/design_system/sections/faq-home.aman.tsx +92 -0
- package/src/design_system/sections/faq-home.tsx +134 -0
- package/src/design_system/sections/feature-tab.tsx +43 -0
- package/src/design_system/sections/feature-text.tsx +284 -0
- package/src/design_system/sections/footer-home.aman.tsx +62 -0
- package/src/design_system/sections/footer-home.tsx +259 -0
- package/src/design_system/sections/generic-header-component.tsx +103 -0
- package/src/design_system/sections/header-navigation.aman.tsx +360 -0
- package/src/design_system/sections/header-navigation.tsx +334 -0
- package/src/design_system/sections/hero-faq.aman.tsx +38 -0
- package/src/design_system/sections/hero-faq.tsx +55 -0
- package/src/design_system/sections/hero-generic-text.aman.tsx +49 -0
- package/src/design_system/sections/hero-generic-text.tsx +51 -0
- package/src/design_system/sections/hero-home.aman.tsx +84 -0
- package/src/design_system/sections/hero-home.tsx +246 -0
- package/src/design_system/sections/hero-location-detail.aman.tsx +33 -0
- package/src/design_system/sections/hero-location-detail.tsx +72 -0
- package/src/design_system/sections/hero-service-detail.aman.tsx +53 -0
- package/src/design_system/sections/hero-service-detail.tsx +51 -0
- package/src/design_system/sections/hero-social-media.aman.tsx +42 -0
- package/src/design_system/sections/hero-social-media.tsx +35 -0
- package/src/design_system/sections/hero-testimonials.aman.tsx +38 -0
- package/src/design_system/sections/hero-testimonials.tsx +55 -0
- package/src/design_system/sections/home-hero-component.tsx +228 -0
- package/src/design_system/sections/index.tsx +131 -0
- package/src/design_system/sections/job-gallery.aman.tsx +91 -0
- package/src/design_system/sections/job-gallery.tsx +183 -0
- package/src/design_system/sections/location-details-section.aman.tsx +179 -0
- package/src/design_system/sections/location-details-section.tsx +196 -0
- package/src/design_system/sections/location-grid.aman.tsx +76 -0
- package/src/design_system/sections/location-grid.tsx +123 -0
- package/src/design_system/sections/services-grid.aman.tsx +85 -0
- package/src/design_system/sections/services-grid.tsx +104 -0
- package/src/design_system/sections/services-home.aman.tsx +78 -0
- package/src/design_system/sections/services-home.tsx +131 -0
- package/src/design_system/sections/social-media-grid.aman.tsx +132 -0
- package/src/design_system/sections/social-media-grid.tsx +189 -0
- package/src/design_system/sections/statistics-section.aman.tsx +79 -0
- package/src/design_system/sections/statistics-section.tsx +97 -0
- package/src/design_system/sections/team-grid.aman.tsx +85 -0
- package/src/design_system/sections/team-grid.tsx +88 -0
- package/src/design_system/sections/testimonials-home.aman.tsx +113 -0
- package/src/design_system/sections/testimonials-home.tsx +90 -0
- package/src/design_system/sections/values-section.aman.tsx +73 -0
- package/src/design_system/sections/values-section.tsx +128 -0
- package/src/design_system/utils/icon-mapping.tsx +28 -0
- package/src/index.ts +7 -0
- package/src/lib/component-registry.ts +53 -0
- package/src/lib/hooks/index.ts +8 -0
- package/src/lib/hooks/use-breakpoint.ts +37 -0
- package/src/lib/hooks/use-clipboard.ts +79 -0
- package/src/lib/hooks/use-resize-observer.ts +68 -0
- package/src/lib/server-api.ts +115 -0
- package/src/styles/style-overrides.aman.css +101 -0
- package/src/styles/theme.css +224 -0
- package/src/styles/typography.css +430 -0
- package/src/themes/index.ts +23 -0
- package/src/types/api/blog-post.ts +53 -0
- package/src/types/api/company-information.ts +44 -0
- package/src/types/api/contact.ts +63 -0
- package/src/types/api/faq.ts +37 -0
- package/src/types/api/job-posting.ts +34 -0
- package/src/types/api/location.ts +36 -0
- package/src/types/api/photos.ts +28 -0
- package/src/types/api/service.ts +37 -0
- package/src/types/api/social-post.ts +28 -0
- package/src/types/api/team-member.ts +29 -0
- package/src/types/api/testimonial.ts +29 -0
- package/src/types/api/website-photos.ts +22 -0
- package/src/types/config.ts +21 -0
- package/src/types/index.ts +21 -0
- package/src/utils/countries.tsx +1351 -0
- package/src/utils/cx.ts +25 -0
- package/src/utils/gradient-placeholder.ts +59 -0
- package/src/utils/is-react-component.ts +33 -0
- package/src/utils/markdown-toc.ts +54 -0
- package/src/utils/photo-helpers.ts +94 -0
|
@@ -0,0 +1,1351 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import type { HTMLAttributes } from "react";
|
|
4
|
+
import type { SelectItemType } from '../design_system/elements/select/select';
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* List of countries with their respective country code, flag, phone code, and phone mask.
|
|
8
|
+
*/
|
|
9
|
+
export const countries = [
|
|
10
|
+
{
|
|
11
|
+
name: "Afghanistan",
|
|
12
|
+
code: "AF",
|
|
13
|
+
flag: "https://www.untitledui.com/images/flags/AF.svg",
|
|
14
|
+
phoneCode: "93",
|
|
15
|
+
phoneMask: "+93-##-###-####",
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
name: "Albania",
|
|
19
|
+
code: "AL",
|
|
20
|
+
flag: "https://www.untitledui.com/images/flags/AL.svg",
|
|
21
|
+
phoneCode: "355",
|
|
22
|
+
phoneMask: "+355 (###) ###-###",
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
name: "Algeria",
|
|
26
|
+
code: "DZ",
|
|
27
|
+
flag: "https://www.untitledui.com/images/flags/DZ.svg",
|
|
28
|
+
phoneCode: "213",
|
|
29
|
+
phoneMask: "+213-##-###-####",
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
name: "Andorra",
|
|
33
|
+
code: "AD",
|
|
34
|
+
flag: "https://www.untitledui.com/images/flags/AD.svg",
|
|
35
|
+
phoneCode: "376",
|
|
36
|
+
phoneMask: "+376-###-###",
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
name: "Angola",
|
|
40
|
+
code: "AO",
|
|
41
|
+
flag: "https://www.untitledui.com/images/flags/AO.svg",
|
|
42
|
+
phoneCode: "244",
|
|
43
|
+
phoneMask: "+244 (###) ###-###",
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
name: "Antigua and Barbuda",
|
|
47
|
+
code: "AG",
|
|
48
|
+
flag: "https://www.untitledui.com/images/flags/AG.svg",
|
|
49
|
+
phoneCode: "+1-268",
|
|
50
|
+
phoneMask: "+1 (268) ###-####",
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
name: "Argentina",
|
|
54
|
+
code: "AR",
|
|
55
|
+
flag: "https://www.untitledui.com/images/flags/AR.svg",
|
|
56
|
+
phoneCode: "54",
|
|
57
|
+
phoneMask: "+54 (###) ###-####",
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
name: "Armenia",
|
|
61
|
+
code: "AM",
|
|
62
|
+
flag: "https://www.untitledui.com/images/flags/AM.svg",
|
|
63
|
+
phoneCode: "374",
|
|
64
|
+
phoneMask: "+374-##-###-###",
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
name: "Australia",
|
|
68
|
+
code: "AU",
|
|
69
|
+
flag: "https://www.untitledui.com/images/flags/AU.svg",
|
|
70
|
+
phoneCode: "61",
|
|
71
|
+
phoneMask: "+61-#-####-####",
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
name: "Austria",
|
|
75
|
+
code: "AT",
|
|
76
|
+
flag: "https://www.untitledui.com/images/flags/AT.svg",
|
|
77
|
+
phoneCode: "43",
|
|
78
|
+
phoneMask: "+43 (###) ###-####",
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
name: "Azerbaijan",
|
|
82
|
+
code: "AZ",
|
|
83
|
+
flag: "https://www.untitledui.com/images/flags/AZ.svg",
|
|
84
|
+
phoneCode: "994",
|
|
85
|
+
phoneMask: "+994-##-###-##-##",
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
name: "Bahamas",
|
|
89
|
+
code: "BS",
|
|
90
|
+
flag: "https://www.untitledui.com/images/flags/BS.svg",
|
|
91
|
+
phoneCode: "+1-242",
|
|
92
|
+
phoneMask: "+1 (242) ###-####",
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
name: "Bahrain",
|
|
96
|
+
code: "BH",
|
|
97
|
+
flag: "https://www.untitledui.com/images/flags/BH.svg",
|
|
98
|
+
phoneCode: "973",
|
|
99
|
+
phoneMask: "+973-####-####",
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
name: "Bangladesh",
|
|
103
|
+
code: "BD",
|
|
104
|
+
flag: "https://www.untitledui.com/images/flags/BD.svg",
|
|
105
|
+
phoneCode: "880",
|
|
106
|
+
phoneMask: "+880-##-###-###",
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
name: "Barbados",
|
|
110
|
+
code: "BB",
|
|
111
|
+
flag: "https://www.untitledui.com/images/flags/BB.svg",
|
|
112
|
+
phoneCode: "+1-246",
|
|
113
|
+
phoneMask: "+1 (246) ###-####",
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
name: "Belarus",
|
|
117
|
+
code: "BY",
|
|
118
|
+
flag: "https://www.untitledui.com/images/flags/BY.svg",
|
|
119
|
+
phoneCode: "375",
|
|
120
|
+
phoneMask: "+375 (##) ###-##-##",
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
name: "Belgium",
|
|
124
|
+
code: "BE",
|
|
125
|
+
flag: "https://www.untitledui.com/images/flags/BE.svg",
|
|
126
|
+
phoneCode: "32",
|
|
127
|
+
phoneMask: "+32 (###) ###-###",
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
name: "Belize",
|
|
131
|
+
code: "BZ",
|
|
132
|
+
flag: "https://www.untitledui.com/images/flags/BZ.svg",
|
|
133
|
+
phoneCode: "501",
|
|
134
|
+
phoneMask: "+501-###-####",
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
name: "Benin",
|
|
138
|
+
code: "BJ",
|
|
139
|
+
flag: "https://www.untitledui.com/images/flags/BJ.svg",
|
|
140
|
+
phoneCode: "229",
|
|
141
|
+
phoneMask: "+229-##-##-####",
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
name: "Bhutan",
|
|
145
|
+
code: "BT",
|
|
146
|
+
flag: "https://www.untitledui.com/images/flags/BT.svg",
|
|
147
|
+
phoneCode: "975",
|
|
148
|
+
phoneMask: "+975-#-###-###",
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
name: "Bolivia",
|
|
152
|
+
code: "BO",
|
|
153
|
+
flag: "https://www.untitledui.com/images/flags/BO.svg",
|
|
154
|
+
phoneCode: "591",
|
|
155
|
+
phoneMask: "+591-#-###-####",
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
name: "Bosnia and Herzegovina",
|
|
159
|
+
code: "BA",
|
|
160
|
+
flag: "https://www.untitledui.com/images/flags/BA.svg",
|
|
161
|
+
phoneCode: "387",
|
|
162
|
+
phoneMask: "+387-##-####",
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
name: "Botswana",
|
|
166
|
+
code: "BW",
|
|
167
|
+
flag: "https://www.untitledui.com/images/flags/BW.svg",
|
|
168
|
+
phoneCode: "267",
|
|
169
|
+
phoneMask: "+267-##-###-###",
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
name: "Brazil",
|
|
173
|
+
code: "BR",
|
|
174
|
+
flag: "https://www.untitledui.com/images/flags/BR.svg",
|
|
175
|
+
phoneCode: "55",
|
|
176
|
+
phoneMask: "+55 (##) 9####-####",
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
name: "Brunei",
|
|
180
|
+
code: "BN",
|
|
181
|
+
flag: "https://www.untitledui.com/images/flags/BN.svg",
|
|
182
|
+
phoneCode: "673",
|
|
183
|
+
phoneMask: "+673-###-####",
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
name: "Bulgaria",
|
|
187
|
+
code: "BG",
|
|
188
|
+
flag: "https://www.untitledui.com/images/flags/BG.svg",
|
|
189
|
+
phoneCode: "359",
|
|
190
|
+
phoneMask: "+359 (###) ###-###",
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
name: "Burkina Faso",
|
|
194
|
+
code: "BF",
|
|
195
|
+
flag: "https://www.untitledui.com/images/flags/BF.svg",
|
|
196
|
+
phoneCode: "226",
|
|
197
|
+
phoneMask: "+226-##-##-####",
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
name: "Burundi",
|
|
201
|
+
code: "BI",
|
|
202
|
+
flag: "https://www.untitledui.com/images/flags/BI.svg",
|
|
203
|
+
phoneCode: "257",
|
|
204
|
+
phoneMask: "+257-##-##-####",
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
name: "Cambodia",
|
|
208
|
+
code: "KH",
|
|
209
|
+
flag: "https://www.untitledui.com/images/flags/KH.svg",
|
|
210
|
+
phoneCode: "855",
|
|
211
|
+
phoneMask: "+855-##-###-###",
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
name: "Cameroon",
|
|
215
|
+
code: "CM",
|
|
216
|
+
flag: "https://www.untitledui.com/images/flags/CM.svg",
|
|
217
|
+
phoneCode: "237",
|
|
218
|
+
phoneMask: "+237-####-####",
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
name: "Canada",
|
|
222
|
+
code: "CA",
|
|
223
|
+
flag: "https://www.untitledui.com/images/flags/CA.svg",
|
|
224
|
+
phoneCode: "1",
|
|
225
|
+
phoneMask: "+1 (###) ###-####",
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
name: "Central African Republic",
|
|
229
|
+
code: "CF",
|
|
230
|
+
flag: "https://www.untitledui.com/images/flags/CF.svg",
|
|
231
|
+
phoneCode: "236",
|
|
232
|
+
phoneMask: "+236-##-##-####",
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
name: "Chad",
|
|
236
|
+
code: "TD",
|
|
237
|
+
flag: "https://www.untitledui.com/images/flags/TD.svg",
|
|
238
|
+
phoneCode: "235",
|
|
239
|
+
phoneMask: "+235-##-##-##-##",
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
name: "Chile",
|
|
243
|
+
code: "CL",
|
|
244
|
+
flag: "https://www.untitledui.com/images/flags/CL.svg",
|
|
245
|
+
phoneCode: "56",
|
|
246
|
+
phoneMask: "+56-#-####-####",
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
name: "China",
|
|
250
|
+
code: "CN",
|
|
251
|
+
flag: "https://www.untitledui.com/images/flags/CN.svg",
|
|
252
|
+
phoneCode: "86",
|
|
253
|
+
phoneMask: "+86-##-#####-#####",
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
name: "Colombia",
|
|
257
|
+
code: "CO",
|
|
258
|
+
flag: "https://www.untitledui.com/images/flags/CO.svg",
|
|
259
|
+
phoneCode: "57",
|
|
260
|
+
phoneMask: "+57 (###) ###-####",
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
name: "Comoros",
|
|
264
|
+
code: "KM",
|
|
265
|
+
flag: "https://www.untitledui.com/images/flags/KM.svg",
|
|
266
|
+
phoneCode: "269",
|
|
267
|
+
phoneMask: "+269-##-#####",
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
name: "Costa Rica",
|
|
271
|
+
code: "CR",
|
|
272
|
+
flag: "https://www.untitledui.com/images/flags/CR.svg",
|
|
273
|
+
phoneCode: "506",
|
|
274
|
+
phoneMask: "+506-####-####",
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
name: "Croatia",
|
|
278
|
+
code: "HR",
|
|
279
|
+
flag: "https://www.untitledui.com/images/flags/HR.svg",
|
|
280
|
+
phoneCode: "385",
|
|
281
|
+
phoneMask: "+385-##-###-###",
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
name: "Cuba",
|
|
285
|
+
code: "CU",
|
|
286
|
+
flag: "https://www.untitledui.com/images/flags/CU.svg",
|
|
287
|
+
phoneCode: "53",
|
|
288
|
+
phoneMask: "+53-#-###-####",
|
|
289
|
+
},
|
|
290
|
+
{
|
|
291
|
+
name: "Cyprus",
|
|
292
|
+
code: "CY",
|
|
293
|
+
flag: "https://www.untitledui.com/images/flags/CY.svg",
|
|
294
|
+
phoneCode: "357",
|
|
295
|
+
phoneMask: "+357-##-###-###",
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
name: "Czech Republic",
|
|
299
|
+
code: "CZ",
|
|
300
|
+
flag: "https://www.untitledui.com/images/flags/CZ.svg",
|
|
301
|
+
phoneCode: "420",
|
|
302
|
+
phoneMask: "+420 (###) ###-###",
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
name: "Democratic Republic of the Congo",
|
|
306
|
+
code: "CD",
|
|
307
|
+
flag: "https://www.untitledui.com/images/flags/CD.svg",
|
|
308
|
+
phoneCode: "243",
|
|
309
|
+
phoneMask: "+243 (###) ###-###",
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
name: "Denmark",
|
|
313
|
+
code: "DK",
|
|
314
|
+
flag: "https://www.untitledui.com/images/flags/DK.svg",
|
|
315
|
+
phoneCode: "45",
|
|
316
|
+
phoneMask: "+45-##-##-##-##",
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
name: "Djibouti",
|
|
320
|
+
code: "DJ",
|
|
321
|
+
flag: "https://www.untitledui.com/images/flags/DJ.svg",
|
|
322
|
+
phoneCode: "253",
|
|
323
|
+
phoneMask: "+253-##-##-##-##",
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
name: "Dominica",
|
|
327
|
+
code: "DM",
|
|
328
|
+
flag: "https://www.untitledui.com/images/flags/DM.svg",
|
|
329
|
+
phoneCode: "+1-767",
|
|
330
|
+
phoneMask: "+1 (767) ###-####",
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
name: "Dominican Republic",
|
|
334
|
+
code: "DO",
|
|
335
|
+
flag: "https://www.untitledui.com/images/flags/DO.svg",
|
|
336
|
+
phoneCode: "+1-809 and 1-829",
|
|
337
|
+
phoneMask: "+1 (849) ###-####",
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
name: "East Timor",
|
|
341
|
+
code: "TL",
|
|
342
|
+
flag: "https://www.untitledui.com/images/flags/TL.svg",
|
|
343
|
+
phoneCode: "670",
|
|
344
|
+
phoneMask: "+670-78#-#####",
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
name: "Ecuador",
|
|
348
|
+
code: "EC",
|
|
349
|
+
flag: "https://www.untitledui.com/images/flags/EC.svg",
|
|
350
|
+
phoneCode: "593",
|
|
351
|
+
phoneMask: "+593-#-###-####",
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
name: "Egypt",
|
|
355
|
+
code: "EG",
|
|
356
|
+
flag: "https://www.untitledui.com/images/flags/EG.svg",
|
|
357
|
+
phoneCode: "20",
|
|
358
|
+
phoneMask: "+20 (###) ###-####",
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
name: "El Salvador",
|
|
362
|
+
code: "SV",
|
|
363
|
+
flag: "https://www.untitledui.com/images/flags/SV.svg",
|
|
364
|
+
phoneCode: "503",
|
|
365
|
+
phoneMask: "+503-##-##-####",
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
name: "Equatorial Guinea",
|
|
369
|
+
code: "GQ",
|
|
370
|
+
flag: "https://www.untitledui.com/images/flags/GQ.svg",
|
|
371
|
+
phoneCode: "240",
|
|
372
|
+
phoneMask: "+240-##-###-####",
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
name: "Eritrea",
|
|
376
|
+
code: "ER",
|
|
377
|
+
flag: "https://www.untitledui.com/images/flags/ER.svg",
|
|
378
|
+
phoneCode: "291",
|
|
379
|
+
phoneMask: "+291-#-###-###",
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
name: "Estonia",
|
|
383
|
+
code: "EE",
|
|
384
|
+
flag: "https://www.untitledui.com/images/flags/EE.svg",
|
|
385
|
+
phoneCode: "372",
|
|
386
|
+
phoneMask: "+372-###-####",
|
|
387
|
+
},
|
|
388
|
+
{
|
|
389
|
+
name: "Eswatini",
|
|
390
|
+
code: "SZ",
|
|
391
|
+
flag: "https://www.untitledui.com/images/flags/SZ.svg",
|
|
392
|
+
phoneCode: "268",
|
|
393
|
+
phoneMask: "+268-##-##-####",
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
name: "Ethiopia",
|
|
397
|
+
code: "ET",
|
|
398
|
+
flag: "https://www.untitledui.com/images/flags/ET.svg",
|
|
399
|
+
phoneCode: "251",
|
|
400
|
+
phoneMask: "+251-##-###-####",
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
name: "Fiji",
|
|
404
|
+
code: "FJ",
|
|
405
|
+
flag: "https://www.untitledui.com/images/flags/FJ.svg",
|
|
406
|
+
phoneCode: "679",
|
|
407
|
+
phoneMask: "+679-##-#####",
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
name: "Finland",
|
|
411
|
+
code: "FI",
|
|
412
|
+
flag: "https://www.untitledui.com/images/flags/FI.svg",
|
|
413
|
+
phoneCode: "358",
|
|
414
|
+
phoneMask: "+358 (###) ###-##-##",
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
name: "France",
|
|
418
|
+
code: "FR",
|
|
419
|
+
flag: "https://www.untitledui.com/images/flags/FR.svg",
|
|
420
|
+
phoneCode: "33",
|
|
421
|
+
phoneMask: "+590 (###) ###-###",
|
|
422
|
+
},
|
|
423
|
+
{
|
|
424
|
+
name: "Gabon",
|
|
425
|
+
code: "GA",
|
|
426
|
+
flag: "https://www.untitledui.com/images/flags/GA.svg",
|
|
427
|
+
phoneCode: "241",
|
|
428
|
+
phoneMask: "+241-#-##-##-##",
|
|
429
|
+
},
|
|
430
|
+
{
|
|
431
|
+
name: "Gambia",
|
|
432
|
+
code: "GM",
|
|
433
|
+
flag: "https://www.untitledui.com/images/flags/GM.svg",
|
|
434
|
+
phoneCode: "220",
|
|
435
|
+
phoneMask: "+220 (###) ##-##",
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
name: "Georgia",
|
|
439
|
+
code: "GE",
|
|
440
|
+
flag: "https://www.untitledui.com/images/flags/GE.svg",
|
|
441
|
+
phoneCode: "995",
|
|
442
|
+
phoneMask: "+995 (###) ###-###",
|
|
443
|
+
},
|
|
444
|
+
{
|
|
445
|
+
name: "Germany",
|
|
446
|
+
code: "DE",
|
|
447
|
+
flag: "https://www.untitledui.com/images/flags/DE.svg",
|
|
448
|
+
phoneCode: "49",
|
|
449
|
+
phoneMask: "+49-###-###",
|
|
450
|
+
},
|
|
451
|
+
{
|
|
452
|
+
name: "Ghana",
|
|
453
|
+
code: "GH",
|
|
454
|
+
flag: "https://www.untitledui.com/images/flags/GH.svg",
|
|
455
|
+
phoneCode: "233",
|
|
456
|
+
phoneMask: "+233 (###) ###-###",
|
|
457
|
+
},
|
|
458
|
+
{
|
|
459
|
+
name: "Greece",
|
|
460
|
+
code: "GR",
|
|
461
|
+
flag: "https://www.untitledui.com/images/flags/GR.svg",
|
|
462
|
+
phoneCode: "30",
|
|
463
|
+
phoneMask: "+30 (###) ###-####",
|
|
464
|
+
},
|
|
465
|
+
{
|
|
466
|
+
name: "Grenada",
|
|
467
|
+
code: "GD",
|
|
468
|
+
flag: "https://www.untitledui.com/images/flags/GD.svg",
|
|
469
|
+
phoneCode: "+1-473",
|
|
470
|
+
phoneMask: "+1 (473) ###-####",
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
name: "Guatemala",
|
|
474
|
+
code: "GT",
|
|
475
|
+
flag: "https://www.untitledui.com/images/flags/GT.svg",
|
|
476
|
+
phoneCode: "502",
|
|
477
|
+
phoneMask: "+502-#-###-####",
|
|
478
|
+
},
|
|
479
|
+
{
|
|
480
|
+
name: "Guinea",
|
|
481
|
+
code: "GN",
|
|
482
|
+
flag: "https://www.untitledui.com/images/flags/GN.svg",
|
|
483
|
+
phoneCode: "224",
|
|
484
|
+
phoneMask: "+224-##-###-###",
|
|
485
|
+
},
|
|
486
|
+
{
|
|
487
|
+
name: "Guinea-Bissau",
|
|
488
|
+
code: "GW",
|
|
489
|
+
flag: "https://www.untitledui.com/images/flags/GW.svg",
|
|
490
|
+
phoneCode: "245",
|
|
491
|
+
phoneMask: "+245-#-######",
|
|
492
|
+
},
|
|
493
|
+
{
|
|
494
|
+
name: "Guyana",
|
|
495
|
+
code: "GY",
|
|
496
|
+
flag: "https://www.untitledui.com/images/flags/GY.svg",
|
|
497
|
+
phoneCode: "592",
|
|
498
|
+
phoneMask: "+592-###-####",
|
|
499
|
+
},
|
|
500
|
+
{
|
|
501
|
+
name: "Haiti",
|
|
502
|
+
code: "HT",
|
|
503
|
+
flag: "https://www.untitledui.com/images/flags/HT.svg",
|
|
504
|
+
phoneCode: "509",
|
|
505
|
+
phoneMask: "+509-##-##-####",
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
name: "Honduras",
|
|
509
|
+
code: "HN",
|
|
510
|
+
flag: "https://www.untitledui.com/images/flags/HN.svg",
|
|
511
|
+
phoneCode: "504",
|
|
512
|
+
phoneMask: "+504-####-####",
|
|
513
|
+
},
|
|
514
|
+
{
|
|
515
|
+
name: "Hungary",
|
|
516
|
+
code: "HU",
|
|
517
|
+
flag: "https://www.untitledui.com/images/flags/HU.svg",
|
|
518
|
+
phoneCode: "36",
|
|
519
|
+
phoneMask: "+36 (###) ###-###",
|
|
520
|
+
},
|
|
521
|
+
{
|
|
522
|
+
name: "Iceland",
|
|
523
|
+
code: "IS",
|
|
524
|
+
flag: "https://www.untitledui.com/images/flags/IS.svg",
|
|
525
|
+
phoneCode: "354",
|
|
526
|
+
phoneMask: "+354-###-####",
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
name: "India",
|
|
530
|
+
code: "IN",
|
|
531
|
+
flag: "https://www.untitledui.com/images/flags/IN.svg",
|
|
532
|
+
phoneCode: "91",
|
|
533
|
+
phoneMask: "+91 (####) ###-###",
|
|
534
|
+
},
|
|
535
|
+
{
|
|
536
|
+
name: "Indonesia",
|
|
537
|
+
code: "ID",
|
|
538
|
+
flag: "https://www.untitledui.com/images/flags/ID.svg",
|
|
539
|
+
phoneCode: "62",
|
|
540
|
+
phoneMask: "+62 (8##) ###-##-###",
|
|
541
|
+
},
|
|
542
|
+
{
|
|
543
|
+
name: "Iran",
|
|
544
|
+
code: "IR",
|
|
545
|
+
flag: "https://www.untitledui.com/images/flags/IR.svg",
|
|
546
|
+
phoneCode: "98",
|
|
547
|
+
phoneMask: "+98 (###) ###-####",
|
|
548
|
+
},
|
|
549
|
+
{
|
|
550
|
+
name: "Iraq",
|
|
551
|
+
code: "IQ",
|
|
552
|
+
flag: "https://www.untitledui.com/images/flags/IQ.svg",
|
|
553
|
+
phoneCode: "964",
|
|
554
|
+
phoneMask: "+964 (###) ###-####",
|
|
555
|
+
},
|
|
556
|
+
{
|
|
557
|
+
name: "Ireland",
|
|
558
|
+
code: "IE",
|
|
559
|
+
flag: "https://www.untitledui.com/images/flags/IE.svg",
|
|
560
|
+
phoneCode: "353",
|
|
561
|
+
phoneMask: "+353 (###) ###-###",
|
|
562
|
+
},
|
|
563
|
+
{
|
|
564
|
+
name: "Israel",
|
|
565
|
+
code: "IL",
|
|
566
|
+
flag: "https://www.untitledui.com/images/flags/IL.svg",
|
|
567
|
+
phoneCode: "972",
|
|
568
|
+
phoneMask: "+972-#-###-####",
|
|
569
|
+
},
|
|
570
|
+
{
|
|
571
|
+
name: "Italy",
|
|
572
|
+
code: "IT",
|
|
573
|
+
flag: "https://www.untitledui.com/images/flags/IT.svg",
|
|
574
|
+
phoneCode: "39",
|
|
575
|
+
phoneMask: "+39 (###) ####-###",
|
|
576
|
+
},
|
|
577
|
+
{
|
|
578
|
+
name: "Jamaica",
|
|
579
|
+
code: "JM",
|
|
580
|
+
flag: "https://www.untitledui.com/images/flags/JM.svg",
|
|
581
|
+
phoneCode: "+1-876",
|
|
582
|
+
phoneMask: "+1 (876) ###-####",
|
|
583
|
+
},
|
|
584
|
+
{
|
|
585
|
+
name: "Japan",
|
|
586
|
+
code: "JP",
|
|
587
|
+
flag: "https://www.untitledui.com/images/flags/JP.svg",
|
|
588
|
+
phoneCode: "81",
|
|
589
|
+
phoneMask: "+81 (###) ###-###",
|
|
590
|
+
},
|
|
591
|
+
{
|
|
592
|
+
name: "Jordan",
|
|
593
|
+
code: "JO",
|
|
594
|
+
flag: "https://www.untitledui.com/images/flags/JO.svg",
|
|
595
|
+
phoneCode: "962",
|
|
596
|
+
phoneMask: "+962-#-####-####",
|
|
597
|
+
},
|
|
598
|
+
{
|
|
599
|
+
name: "Kazakhstan",
|
|
600
|
+
code: "KZ",
|
|
601
|
+
flag: "https://www.untitledui.com/images/flags/KZ.svg",
|
|
602
|
+
phoneCode: "7",
|
|
603
|
+
phoneMask: "+7 (7##) ###-##-##",
|
|
604
|
+
},
|
|
605
|
+
{
|
|
606
|
+
name: "Kenya",
|
|
607
|
+
code: "KE",
|
|
608
|
+
flag: "https://www.untitledui.com/images/flags/KE.svg",
|
|
609
|
+
phoneCode: "254",
|
|
610
|
+
phoneMask: "+254-###-######",
|
|
611
|
+
},
|
|
612
|
+
{
|
|
613
|
+
name: "Kiribati",
|
|
614
|
+
code: "KI",
|
|
615
|
+
flag: "https://www.untitledui.com/images/flags/KI.svg",
|
|
616
|
+
phoneCode: "686",
|
|
617
|
+
phoneMask: "+686-##-###",
|
|
618
|
+
},
|
|
619
|
+
{
|
|
620
|
+
name: "Kuwait",
|
|
621
|
+
code: "KW",
|
|
622
|
+
flag: "https://www.untitledui.com/images/flags/KW.svg",
|
|
623
|
+
phoneCode: "965",
|
|
624
|
+
phoneMask: "+965-####-####",
|
|
625
|
+
},
|
|
626
|
+
{
|
|
627
|
+
name: "Kyrgyzstan",
|
|
628
|
+
code: "KG",
|
|
629
|
+
flag: "https://www.untitledui.com/images/flags/KG.svg",
|
|
630
|
+
phoneCode: "996",
|
|
631
|
+
phoneMask: "+996 (###) ###-###",
|
|
632
|
+
},
|
|
633
|
+
{
|
|
634
|
+
name: "Laos",
|
|
635
|
+
code: "LA",
|
|
636
|
+
flag: "https://www.untitledui.com/images/flags/LA.svg",
|
|
637
|
+
phoneCode: "856",
|
|
638
|
+
phoneMask: "+856-##-###-###",
|
|
639
|
+
},
|
|
640
|
+
{
|
|
641
|
+
name: "Latvia",
|
|
642
|
+
code: "LV",
|
|
643
|
+
flag: "https://www.untitledui.com/images/flags/LV.svg",
|
|
644
|
+
phoneCode: "371",
|
|
645
|
+
phoneMask: "+371-##-###-###",
|
|
646
|
+
},
|
|
647
|
+
{
|
|
648
|
+
name: "Lebanon",
|
|
649
|
+
code: "LB",
|
|
650
|
+
flag: "https://www.untitledui.com/images/flags/LB.svg",
|
|
651
|
+
phoneCode: "961",
|
|
652
|
+
phoneMask: "+961-#-###-###",
|
|
653
|
+
},
|
|
654
|
+
{
|
|
655
|
+
name: "Lesotho",
|
|
656
|
+
code: "LS",
|
|
657
|
+
flag: "https://www.untitledui.com/images/flags/LS.svg",
|
|
658
|
+
phoneCode: "266",
|
|
659
|
+
phoneMask: "+266-#-###-####",
|
|
660
|
+
},
|
|
661
|
+
{
|
|
662
|
+
name: "Liberia",
|
|
663
|
+
code: "LR",
|
|
664
|
+
flag: "https://www.untitledui.com/images/flags/LR.svg",
|
|
665
|
+
phoneCode: "231",
|
|
666
|
+
phoneMask: "+231-##-###-###",
|
|
667
|
+
},
|
|
668
|
+
{
|
|
669
|
+
name: "Libya",
|
|
670
|
+
code: "LY",
|
|
671
|
+
flag: "https://www.untitledui.com/images/flags/LY.svg",
|
|
672
|
+
phoneCode: "218",
|
|
673
|
+
phoneMask: "+218-21-###-####",
|
|
674
|
+
},
|
|
675
|
+
{
|
|
676
|
+
name: "Liechtenstein",
|
|
677
|
+
code: "LI",
|
|
678
|
+
flag: "https://www.untitledui.com/images/flags/LI.svg",
|
|
679
|
+
phoneCode: "423",
|
|
680
|
+
phoneMask: "+423 (###) ###-####",
|
|
681
|
+
},
|
|
682
|
+
{
|
|
683
|
+
name: "Lithuania",
|
|
684
|
+
code: "LT",
|
|
685
|
+
flag: "https://www.untitledui.com/images/flags/LT.svg",
|
|
686
|
+
phoneCode: "370",
|
|
687
|
+
phoneMask: "+370 (###) ##-###",
|
|
688
|
+
},
|
|
689
|
+
{
|
|
690
|
+
name: "Luxembourg",
|
|
691
|
+
code: "LU",
|
|
692
|
+
flag: "https://www.untitledui.com/images/flags/LU.svg",
|
|
693
|
+
phoneCode: "352",
|
|
694
|
+
phoneMask: "+352 (###) ###-###",
|
|
695
|
+
},
|
|
696
|
+
{
|
|
697
|
+
name: "Madagascar",
|
|
698
|
+
code: "MG",
|
|
699
|
+
flag: "https://www.untitledui.com/images/flags/MG.svg",
|
|
700
|
+
phoneCode: "261",
|
|
701
|
+
phoneMask: "+261-##-##-#####",
|
|
702
|
+
},
|
|
703
|
+
{
|
|
704
|
+
name: "Malawi",
|
|
705
|
+
code: "MW",
|
|
706
|
+
flag: "https://www.untitledui.com/images/flags/MW.svg",
|
|
707
|
+
phoneCode: "265",
|
|
708
|
+
phoneMask: "+265-#-####-####",
|
|
709
|
+
},
|
|
710
|
+
{
|
|
711
|
+
name: "Malaysia",
|
|
712
|
+
code: "MY",
|
|
713
|
+
flag: "https://www.untitledui.com/images/flags/MY.svg",
|
|
714
|
+
phoneCode: "60",
|
|
715
|
+
phoneMask: "+60-#-###-###",
|
|
716
|
+
},
|
|
717
|
+
{
|
|
718
|
+
name: "Maldives",
|
|
719
|
+
code: "MV",
|
|
720
|
+
flag: "https://www.untitledui.com/images/flags/MV.svg",
|
|
721
|
+
phoneCode: "960",
|
|
722
|
+
phoneMask: "+960-###-####",
|
|
723
|
+
},
|
|
724
|
+
{
|
|
725
|
+
name: "Mali",
|
|
726
|
+
code: "ML",
|
|
727
|
+
flag: "https://www.untitledui.com/images/flags/ML.svg",
|
|
728
|
+
phoneCode: "223",
|
|
729
|
+
phoneMask: "+223-##-##-####",
|
|
730
|
+
},
|
|
731
|
+
{
|
|
732
|
+
name: "Malta",
|
|
733
|
+
code: "MT",
|
|
734
|
+
flag: "https://www.untitledui.com/images/flags/MT.svg",
|
|
735
|
+
phoneCode: "356",
|
|
736
|
+
phoneMask: "+356-####-####",
|
|
737
|
+
},
|
|
738
|
+
{
|
|
739
|
+
name: "Marshall Islands",
|
|
740
|
+
code: "MH",
|
|
741
|
+
flag: "https://www.untitledui.com/images/flags/MH.svg",
|
|
742
|
+
phoneCode: "692",
|
|
743
|
+
phoneMask: "+692-###-####",
|
|
744
|
+
},
|
|
745
|
+
{
|
|
746
|
+
name: "Mauritania",
|
|
747
|
+
code: "MR",
|
|
748
|
+
flag: "https://www.untitledui.com/images/flags/MR.svg",
|
|
749
|
+
phoneCode: "222",
|
|
750
|
+
phoneMask: "+222-##-##-####",
|
|
751
|
+
},
|
|
752
|
+
{
|
|
753
|
+
name: "Mauritius",
|
|
754
|
+
code: "MU",
|
|
755
|
+
flag: "https://www.untitledui.com/images/flags/MU.svg",
|
|
756
|
+
phoneCode: "230",
|
|
757
|
+
phoneMask: "+230-###-####",
|
|
758
|
+
},
|
|
759
|
+
{
|
|
760
|
+
name: "Mexico",
|
|
761
|
+
code: "MX",
|
|
762
|
+
flag: "https://www.untitledui.com/images/flags/MX.svg",
|
|
763
|
+
phoneCode: "52",
|
|
764
|
+
phoneMask: "+52-##-##-####",
|
|
765
|
+
},
|
|
766
|
+
{
|
|
767
|
+
name: "Micronesia",
|
|
768
|
+
code: "FM",
|
|
769
|
+
flag: "https://www.untitledui.com/images/flags/FM.svg",
|
|
770
|
+
phoneCode: "691",
|
|
771
|
+
phoneMask: "+691-###-####",
|
|
772
|
+
},
|
|
773
|
+
{
|
|
774
|
+
name: "Moldova",
|
|
775
|
+
code: "MD",
|
|
776
|
+
flag: "https://www.untitledui.com/images/flags/MD.svg",
|
|
777
|
+
phoneCode: "373",
|
|
778
|
+
phoneMask: "+373-####-####",
|
|
779
|
+
},
|
|
780
|
+
{
|
|
781
|
+
name: "Monaco",
|
|
782
|
+
code: "MC",
|
|
783
|
+
flag: "https://www.untitledui.com/images/flags/MC.svg",
|
|
784
|
+
phoneCode: "377",
|
|
785
|
+
phoneMask: "+377-##-###-###",
|
|
786
|
+
},
|
|
787
|
+
{
|
|
788
|
+
name: "Mongolia",
|
|
789
|
+
code: "MN",
|
|
790
|
+
flag: "https://www.untitledui.com/images/flags/MN.svg",
|
|
791
|
+
phoneCode: "976",
|
|
792
|
+
phoneMask: "+976-##-##-####",
|
|
793
|
+
},
|
|
794
|
+
{
|
|
795
|
+
name: "Montenegro",
|
|
796
|
+
code: "ME",
|
|
797
|
+
flag: "https://www.untitledui.com/images/flags/ME.svg",
|
|
798
|
+
phoneCode: "382",
|
|
799
|
+
phoneMask: "+382-##-###-###",
|
|
800
|
+
},
|
|
801
|
+
{
|
|
802
|
+
name: "Morocco",
|
|
803
|
+
code: "MA",
|
|
804
|
+
flag: "https://www.untitledui.com/images/flags/MA.svg",
|
|
805
|
+
phoneCode: "212",
|
|
806
|
+
phoneMask: "+212-##-####-###",
|
|
807
|
+
},
|
|
808
|
+
{
|
|
809
|
+
name: "Mozambique",
|
|
810
|
+
code: "MZ",
|
|
811
|
+
flag: "https://www.untitledui.com/images/flags/MZ.svg",
|
|
812
|
+
phoneCode: "258",
|
|
813
|
+
phoneMask: "+258-##-###-###",
|
|
814
|
+
},
|
|
815
|
+
{
|
|
816
|
+
name: "Myanmar",
|
|
817
|
+
code: "MM",
|
|
818
|
+
flag: "https://www.untitledui.com/images/flags/MM.svg",
|
|
819
|
+
phoneCode: "95",
|
|
820
|
+
phoneMask: "+95-###-###",
|
|
821
|
+
},
|
|
822
|
+
{
|
|
823
|
+
name: "Namibia",
|
|
824
|
+
code: "NA",
|
|
825
|
+
flag: "https://www.untitledui.com/images/flags/NA.svg",
|
|
826
|
+
phoneCode: "264",
|
|
827
|
+
phoneMask: "+264-##-###-####",
|
|
828
|
+
},
|
|
829
|
+
{
|
|
830
|
+
name: "Nauru",
|
|
831
|
+
code: "NR",
|
|
832
|
+
flag: "https://www.untitledui.com/images/flags/NR.svg",
|
|
833
|
+
phoneCode: "674",
|
|
834
|
+
phoneMask: "+674-###-####",
|
|
835
|
+
},
|
|
836
|
+
{
|
|
837
|
+
name: "Nepal",
|
|
838
|
+
code: "NP",
|
|
839
|
+
flag: "https://www.untitledui.com/images/flags/NP.svg",
|
|
840
|
+
phoneCode: "977",
|
|
841
|
+
phoneMask: "+977-##-###-###",
|
|
842
|
+
},
|
|
843
|
+
{
|
|
844
|
+
name: "Netherlands",
|
|
845
|
+
code: "NL",
|
|
846
|
+
flag: "https://www.untitledui.com/images/flags/NL.svg",
|
|
847
|
+
phoneCode: "31",
|
|
848
|
+
phoneMask: "+31-##-###-####",
|
|
849
|
+
},
|
|
850
|
+
{
|
|
851
|
+
name: "New Zealand",
|
|
852
|
+
code: "NZ",
|
|
853
|
+
flag: "https://www.untitledui.com/images/flags/NZ.svg",
|
|
854
|
+
phoneCode: "64",
|
|
855
|
+
phoneMask: "+64 (###) ###-####",
|
|
856
|
+
},
|
|
857
|
+
{
|
|
858
|
+
name: "Nicaragua",
|
|
859
|
+
code: "NI",
|
|
860
|
+
flag: "https://www.untitledui.com/images/flags/NI.svg",
|
|
861
|
+
phoneCode: "505",
|
|
862
|
+
phoneMask: "+505-####-####",
|
|
863
|
+
},
|
|
864
|
+
{
|
|
865
|
+
name: "Niger",
|
|
866
|
+
code: "NE",
|
|
867
|
+
flag: "https://www.untitledui.com/images/flags/NE.svg",
|
|
868
|
+
phoneCode: "227",
|
|
869
|
+
phoneMask: "+227-##-##-####",
|
|
870
|
+
},
|
|
871
|
+
{
|
|
872
|
+
name: "Nigeria",
|
|
873
|
+
code: "NG",
|
|
874
|
+
flag: "https://www.untitledui.com/images/flags/NG.svg",
|
|
875
|
+
phoneCode: "234",
|
|
876
|
+
phoneMask: "+234 (###) ###-####",
|
|
877
|
+
},
|
|
878
|
+
{
|
|
879
|
+
name: "North Korea",
|
|
880
|
+
code: "KP",
|
|
881
|
+
flag: "https://www.untitledui.com/images/flags/KP.svg",
|
|
882
|
+
phoneCode: "850",
|
|
883
|
+
phoneMask: "+850-####-#############",
|
|
884
|
+
},
|
|
885
|
+
{
|
|
886
|
+
name: "North Macedonia",
|
|
887
|
+
code: "MK",
|
|
888
|
+
flag: "https://www.untitledui.com/images/flags/MK.svg",
|
|
889
|
+
phoneCode: "389",
|
|
890
|
+
phoneMask: "+389-##-###-###",
|
|
891
|
+
},
|
|
892
|
+
{
|
|
893
|
+
name: "Norway",
|
|
894
|
+
code: "NO",
|
|
895
|
+
flag: "https://www.untitledui.com/images/flags/NO.svg",
|
|
896
|
+
phoneCode: "47",
|
|
897
|
+
phoneMask: "+47 (###) ##-###",
|
|
898
|
+
},
|
|
899
|
+
{
|
|
900
|
+
name: "Oman",
|
|
901
|
+
code: "OM",
|
|
902
|
+
flag: "https://www.untitledui.com/images/flags/OM.svg",
|
|
903
|
+
phoneCode: "968",
|
|
904
|
+
phoneMask: "+968-##-###-###",
|
|
905
|
+
},
|
|
906
|
+
{
|
|
907
|
+
name: "Pakistan",
|
|
908
|
+
code: "PK",
|
|
909
|
+
flag: "https://www.untitledui.com/images/flags/PK.svg",
|
|
910
|
+
phoneCode: "92",
|
|
911
|
+
phoneMask: "+92 (###) ###-####",
|
|
912
|
+
},
|
|
913
|
+
{
|
|
914
|
+
name: "Palau",
|
|
915
|
+
code: "PW",
|
|
916
|
+
flag: "https://www.untitledui.com/images/flags/PW.svg",
|
|
917
|
+
phoneCode: "680",
|
|
918
|
+
phoneMask: "+680-###-####",
|
|
919
|
+
},
|
|
920
|
+
{
|
|
921
|
+
name: "Panama",
|
|
922
|
+
code: "PA",
|
|
923
|
+
flag: "https://www.untitledui.com/images/flags/PA.svg",
|
|
924
|
+
phoneCode: "507",
|
|
925
|
+
phoneMask: "+507-###-####",
|
|
926
|
+
},
|
|
927
|
+
{
|
|
928
|
+
name: "Papua New Guinea",
|
|
929
|
+
code: "PG",
|
|
930
|
+
flag: "https://www.untitledui.com/images/flags/PG.svg",
|
|
931
|
+
phoneCode: "675",
|
|
932
|
+
phoneMask: "+675 (###) ##-###",
|
|
933
|
+
},
|
|
934
|
+
{
|
|
935
|
+
name: "Paraguay",
|
|
936
|
+
code: "PY",
|
|
937
|
+
flag: "https://www.untitledui.com/images/flags/PY.svg",
|
|
938
|
+
phoneCode: "595",
|
|
939
|
+
phoneMask: "+595 (###) ###-###",
|
|
940
|
+
},
|
|
941
|
+
{
|
|
942
|
+
name: "Peru",
|
|
943
|
+
code: "PE",
|
|
944
|
+
flag: "https://www.untitledui.com/images/flags/PE.svg",
|
|
945
|
+
phoneCode: "51",
|
|
946
|
+
phoneMask: "+51 (###) ###-###",
|
|
947
|
+
},
|
|
948
|
+
{
|
|
949
|
+
name: "Philippines",
|
|
950
|
+
code: "PH",
|
|
951
|
+
flag: "https://www.untitledui.com/images/flags/PH.svg",
|
|
952
|
+
phoneCode: "63",
|
|
953
|
+
phoneMask: "+63 (###) ###-####",
|
|
954
|
+
},
|
|
955
|
+
{
|
|
956
|
+
name: "Poland",
|
|
957
|
+
code: "PL",
|
|
958
|
+
flag: "https://www.untitledui.com/images/flags/PL.svg",
|
|
959
|
+
phoneCode: "48",
|
|
960
|
+
phoneMask: "+48 (###) ###-###",
|
|
961
|
+
},
|
|
962
|
+
{
|
|
963
|
+
name: "Portugal",
|
|
964
|
+
code: "PT",
|
|
965
|
+
flag: "https://www.untitledui.com/images/flags/PT.svg",
|
|
966
|
+
phoneCode: "351",
|
|
967
|
+
phoneMask: "+351-##-###-####",
|
|
968
|
+
},
|
|
969
|
+
{
|
|
970
|
+
name: "Qatar",
|
|
971
|
+
code: "QA",
|
|
972
|
+
flag: "https://www.untitledui.com/images/flags/QA.svg",
|
|
973
|
+
phoneCode: "974",
|
|
974
|
+
phoneMask: "+974-####-####",
|
|
975
|
+
},
|
|
976
|
+
{
|
|
977
|
+
name: "Romania",
|
|
978
|
+
code: "RO",
|
|
979
|
+
flag: "https://www.untitledui.com/images/flags/RO.svg",
|
|
980
|
+
phoneCode: "40",
|
|
981
|
+
phoneMask: "+40-##-###-####",
|
|
982
|
+
},
|
|
983
|
+
{
|
|
984
|
+
name: "Russia",
|
|
985
|
+
code: "RU",
|
|
986
|
+
flag: "https://www.untitledui.com/images/flags/RU.svg",
|
|
987
|
+
phoneCode: "7",
|
|
988
|
+
phoneMask: "+7 (###) ###-##-##",
|
|
989
|
+
},
|
|
990
|
+
{
|
|
991
|
+
name: "Rwanda",
|
|
992
|
+
code: "RW",
|
|
993
|
+
flag: "https://www.untitledui.com/images/flags/RW.svg",
|
|
994
|
+
phoneCode: "250",
|
|
995
|
+
phoneMask: "+250 (###) ###-###",
|
|
996
|
+
},
|
|
997
|
+
{
|
|
998
|
+
name: "Saint Kitts and Nevis",
|
|
999
|
+
code: "KN",
|
|
1000
|
+
flag: "https://www.untitledui.com/images/flags/KN.svg",
|
|
1001
|
+
phoneCode: "+1-869",
|
|
1002
|
+
phoneMask: "+1 (869) ###-####",
|
|
1003
|
+
},
|
|
1004
|
+
{
|
|
1005
|
+
name: "Saint Lucia",
|
|
1006
|
+
code: "LC",
|
|
1007
|
+
flag: "https://www.untitledui.com/images/flags/LC.svg",
|
|
1008
|
+
phoneCode: "+1-758",
|
|
1009
|
+
phoneMask: "+1 (758) ###-####",
|
|
1010
|
+
},
|
|
1011
|
+
{
|
|
1012
|
+
name: "Saint Vincent and the Grenadines",
|
|
1013
|
+
code: "VC",
|
|
1014
|
+
flag: "https://www.untitledui.com/images/flags/VC.svg",
|
|
1015
|
+
phoneCode: "+1-784",
|
|
1016
|
+
phoneMask: "+1 (784) ###-####",
|
|
1017
|
+
},
|
|
1018
|
+
{
|
|
1019
|
+
name: "Samoa",
|
|
1020
|
+
code: "WS",
|
|
1021
|
+
flag: "https://www.untitledui.com/images/flags/WS.svg",
|
|
1022
|
+
phoneCode: "685",
|
|
1023
|
+
phoneMask: "+685-##-####",
|
|
1024
|
+
},
|
|
1025
|
+
{
|
|
1026
|
+
name: "San Marino",
|
|
1027
|
+
code: "SM",
|
|
1028
|
+
flag: "https://www.untitledui.com/images/flags/SM.svg",
|
|
1029
|
+
phoneCode: "378",
|
|
1030
|
+
phoneMask: "+378-####-######",
|
|
1031
|
+
},
|
|
1032
|
+
{
|
|
1033
|
+
name: "Sao Tome and Principe",
|
|
1034
|
+
code: "ST",
|
|
1035
|
+
flag: "https://www.untitledui.com/images/flags/ST.svg",
|
|
1036
|
+
phoneCode: "239",
|
|
1037
|
+
phoneMask: "+239-##-#####",
|
|
1038
|
+
},
|
|
1039
|
+
{
|
|
1040
|
+
name: "Saudi Arabia",
|
|
1041
|
+
code: "SA",
|
|
1042
|
+
flag: "https://www.untitledui.com/images/flags/SA.svg",
|
|
1043
|
+
phoneCode: "966",
|
|
1044
|
+
phoneMask: "+966-#-###-####",
|
|
1045
|
+
},
|
|
1046
|
+
{
|
|
1047
|
+
name: "Senegal",
|
|
1048
|
+
code: "SN",
|
|
1049
|
+
flag: "https://www.untitledui.com/images/flags/SN.svg",
|
|
1050
|
+
phoneCode: "221",
|
|
1051
|
+
phoneMask: "+221-##-###-####",
|
|
1052
|
+
},
|
|
1053
|
+
{
|
|
1054
|
+
name: "Serbia",
|
|
1055
|
+
code: "RS",
|
|
1056
|
+
flag: "https://www.untitledui.com/images/flags/RS.svg",
|
|
1057
|
+
phoneCode: "381",
|
|
1058
|
+
phoneMask: "+381-##-###-####",
|
|
1059
|
+
},
|
|
1060
|
+
{
|
|
1061
|
+
name: "Seychelles",
|
|
1062
|
+
code: "SC",
|
|
1063
|
+
flag: "https://www.untitledui.com/images/flags/SC.svg",
|
|
1064
|
+
phoneCode: "248",
|
|
1065
|
+
phoneMask: "+248-#-###-###",
|
|
1066
|
+
},
|
|
1067
|
+
{
|
|
1068
|
+
name: "Sierra Leone",
|
|
1069
|
+
code: "SL",
|
|
1070
|
+
flag: "https://www.untitledui.com/images/flags/SL.svg",
|
|
1071
|
+
phoneCode: "232",
|
|
1072
|
+
phoneMask: "+232-##-######",
|
|
1073
|
+
},
|
|
1074
|
+
{
|
|
1075
|
+
name: "Singapore",
|
|
1076
|
+
code: "SG",
|
|
1077
|
+
flag: "https://www.untitledui.com/images/flags/SG.svg",
|
|
1078
|
+
phoneCode: "65",
|
|
1079
|
+
phoneMask: "+65-####-####",
|
|
1080
|
+
},
|
|
1081
|
+
{
|
|
1082
|
+
name: "Slovakia",
|
|
1083
|
+
code: "SK",
|
|
1084
|
+
flag: "https://www.untitledui.com/images/flags/SK.svg",
|
|
1085
|
+
phoneCode: "421",
|
|
1086
|
+
phoneMask: "+421 (###) ###-###",
|
|
1087
|
+
},
|
|
1088
|
+
{
|
|
1089
|
+
name: "Slovenia",
|
|
1090
|
+
code: "SI",
|
|
1091
|
+
flag: "https://www.untitledui.com/images/flags/SI.svg",
|
|
1092
|
+
phoneCode: "386",
|
|
1093
|
+
phoneMask: "+386-##-###-###",
|
|
1094
|
+
},
|
|
1095
|
+
{
|
|
1096
|
+
name: "Solomon Islands",
|
|
1097
|
+
code: "SB",
|
|
1098
|
+
flag: "https://www.untitledui.com/images/flags/SB.svg",
|
|
1099
|
+
phoneCode: "677",
|
|
1100
|
+
phoneMask: "+677-#####",
|
|
1101
|
+
},
|
|
1102
|
+
{
|
|
1103
|
+
name: "Somalia",
|
|
1104
|
+
code: "SO",
|
|
1105
|
+
flag: "https://www.untitledui.com/images/flags/SO.svg",
|
|
1106
|
+
phoneCode: "252",
|
|
1107
|
+
phoneMask: "+252-#-###-###",
|
|
1108
|
+
},
|
|
1109
|
+
{
|
|
1110
|
+
name: "South Africa",
|
|
1111
|
+
code: "ZA",
|
|
1112
|
+
flag: "https://www.untitledui.com/images/flags/ZA.svg",
|
|
1113
|
+
phoneCode: "27",
|
|
1114
|
+
phoneMask: "+27-##-###-####",
|
|
1115
|
+
},
|
|
1116
|
+
{
|
|
1117
|
+
name: "South Korea",
|
|
1118
|
+
code: "KR",
|
|
1119
|
+
flag: "https://www.untitledui.com/images/flags/KR.svg",
|
|
1120
|
+
phoneCode: "82",
|
|
1121
|
+
phoneMask: "+82-##-###-####",
|
|
1122
|
+
},
|
|
1123
|
+
{
|
|
1124
|
+
name: "South Sudan",
|
|
1125
|
+
code: "SS",
|
|
1126
|
+
flag: "https://www.untitledui.com/images/flags/SS.svg",
|
|
1127
|
+
phoneCode: "211",
|
|
1128
|
+
phoneMask: "+211-##-###-####",
|
|
1129
|
+
},
|
|
1130
|
+
{
|
|
1131
|
+
name: "Spain",
|
|
1132
|
+
code: "ES",
|
|
1133
|
+
flag: "https://www.untitledui.com/images/flags/ES.svg",
|
|
1134
|
+
phoneCode: "34",
|
|
1135
|
+
phoneMask: "+34 (###) ###-###",
|
|
1136
|
+
},
|
|
1137
|
+
{
|
|
1138
|
+
name: "Sri Lanka",
|
|
1139
|
+
code: "LK",
|
|
1140
|
+
flag: "https://www.untitledui.com/images/flags/LK.svg",
|
|
1141
|
+
phoneCode: "94",
|
|
1142
|
+
phoneMask: "+94-##-###-####",
|
|
1143
|
+
},
|
|
1144
|
+
{
|
|
1145
|
+
name: "Suriname",
|
|
1146
|
+
code: "SR",
|
|
1147
|
+
flag: "https://www.untitledui.com/images/flags/SR.svg",
|
|
1148
|
+
phoneCode: "597",
|
|
1149
|
+
phoneMask: "+597-###-###",
|
|
1150
|
+
},
|
|
1151
|
+
{
|
|
1152
|
+
name: "Sweden",
|
|
1153
|
+
code: "SE",
|
|
1154
|
+
flag: "https://www.untitledui.com/images/flags/SE.svg",
|
|
1155
|
+
phoneCode: "46",
|
|
1156
|
+
phoneMask: "+46-##-###-####",
|
|
1157
|
+
},
|
|
1158
|
+
{
|
|
1159
|
+
name: "Switzerland",
|
|
1160
|
+
code: "CH",
|
|
1161
|
+
flag: "https://www.untitledui.com/images/flags/CH.svg",
|
|
1162
|
+
phoneCode: "41",
|
|
1163
|
+
phoneMask: "+41-##-###-####",
|
|
1164
|
+
},
|
|
1165
|
+
{
|
|
1166
|
+
name: "Syria",
|
|
1167
|
+
code: "SY",
|
|
1168
|
+
flag: "https://www.untitledui.com/images/flags/SY.svg",
|
|
1169
|
+
phoneCode: "963",
|
|
1170
|
+
phoneMask: "+963-##-####-###",
|
|
1171
|
+
},
|
|
1172
|
+
{
|
|
1173
|
+
name: "Tajikistan",
|
|
1174
|
+
code: "TJ",
|
|
1175
|
+
flag: "https://www.untitledui.com/images/flags/TJ.svg",
|
|
1176
|
+
phoneCode: "992",
|
|
1177
|
+
phoneMask: "+992-##-###-####",
|
|
1178
|
+
},
|
|
1179
|
+
{
|
|
1180
|
+
name: "Tanzania",
|
|
1181
|
+
code: "TZ",
|
|
1182
|
+
flag: "https://www.untitledui.com/images/flags/TZ.svg",
|
|
1183
|
+
phoneCode: "255",
|
|
1184
|
+
phoneMask: "+255-##-###-####",
|
|
1185
|
+
},
|
|
1186
|
+
{
|
|
1187
|
+
name: "Thailand",
|
|
1188
|
+
code: "TH",
|
|
1189
|
+
flag: "https://www.untitledui.com/images/flags/TH.svg",
|
|
1190
|
+
phoneCode: "66",
|
|
1191
|
+
phoneMask: "+66-##-###-###",
|
|
1192
|
+
},
|
|
1193
|
+
{
|
|
1194
|
+
name: "Togo",
|
|
1195
|
+
code: "TG",
|
|
1196
|
+
flag: "https://www.untitledui.com/images/flags/TG.svg",
|
|
1197
|
+
phoneCode: "228",
|
|
1198
|
+
phoneMask: "+228-##-###-###",
|
|
1199
|
+
},
|
|
1200
|
+
{
|
|
1201
|
+
name: "Tonga",
|
|
1202
|
+
code: "TO",
|
|
1203
|
+
flag: "https://www.untitledui.com/images/flags/TO.svg",
|
|
1204
|
+
phoneCode: "676",
|
|
1205
|
+
phoneMask: "+676-#####",
|
|
1206
|
+
},
|
|
1207
|
+
{
|
|
1208
|
+
name: "Trinidad and Tobago",
|
|
1209
|
+
code: "TT",
|
|
1210
|
+
flag: "https://www.untitledui.com/images/flags/TT.svg",
|
|
1211
|
+
phoneCode: "+1-868",
|
|
1212
|
+
phoneMask: "+1 (868) ###-####",
|
|
1213
|
+
},
|
|
1214
|
+
{
|
|
1215
|
+
name: "Tunisia",
|
|
1216
|
+
code: "TN",
|
|
1217
|
+
flag: "https://www.untitledui.com/images/flags/TN.svg",
|
|
1218
|
+
phoneCode: "216",
|
|
1219
|
+
phoneMask: "+216-##-###-###",
|
|
1220
|
+
},
|
|
1221
|
+
{
|
|
1222
|
+
name: "Turkey",
|
|
1223
|
+
code: "TR",
|
|
1224
|
+
flag: "https://www.untitledui.com/images/flags/TR.svg",
|
|
1225
|
+
phoneCode: "90",
|
|
1226
|
+
phoneMask: "+90 (###) ###-####",
|
|
1227
|
+
},
|
|
1228
|
+
{
|
|
1229
|
+
name: "Turkmenistan",
|
|
1230
|
+
code: "TM",
|
|
1231
|
+
flag: "https://www.untitledui.com/images/flags/TM.svg",
|
|
1232
|
+
phoneCode: "993",
|
|
1233
|
+
phoneMask: "+993-#-###-####",
|
|
1234
|
+
},
|
|
1235
|
+
{
|
|
1236
|
+
name: "Tuvalu",
|
|
1237
|
+
code: "TV",
|
|
1238
|
+
flag: "https://www.untitledui.com/images/flags/TV.svg",
|
|
1239
|
+
phoneCode: "688",
|
|
1240
|
+
phoneMask: "+688-2####",
|
|
1241
|
+
},
|
|
1242
|
+
{
|
|
1243
|
+
name: "Uganda",
|
|
1244
|
+
code: "UG",
|
|
1245
|
+
flag: "https://www.untitledui.com/images/flags/UG.svg",
|
|
1246
|
+
phoneCode: "256",
|
|
1247
|
+
phoneMask: "+256 (###) ###-###",
|
|
1248
|
+
},
|
|
1249
|
+
{
|
|
1250
|
+
name: "Ukraine",
|
|
1251
|
+
code: "UA",
|
|
1252
|
+
flag: "https://www.untitledui.com/images/flags/UA.svg",
|
|
1253
|
+
phoneCode: "380",
|
|
1254
|
+
phoneMask: "+380 (##) ###-##-##",
|
|
1255
|
+
},
|
|
1256
|
+
{
|
|
1257
|
+
name: "United Arab Emirates",
|
|
1258
|
+
code: "AE",
|
|
1259
|
+
flag: "https://www.untitledui.com/images/flags/AE.svg",
|
|
1260
|
+
phoneCode: "971",
|
|
1261
|
+
phoneMask: "+971-#-###-####",
|
|
1262
|
+
},
|
|
1263
|
+
{
|
|
1264
|
+
name: "United Kingdom",
|
|
1265
|
+
code: "GB",
|
|
1266
|
+
flag: "https://www.untitledui.com/images/flags/GB.svg",
|
|
1267
|
+
phoneCode: "44",
|
|
1268
|
+
},
|
|
1269
|
+
{
|
|
1270
|
+
name: "United States",
|
|
1271
|
+
code: "US",
|
|
1272
|
+
flag: "https://www.untitledui.com/images/flags/US.svg",
|
|
1273
|
+
phoneCode: "1",
|
|
1274
|
+
phoneMask: "+1 (###) ###-####",
|
|
1275
|
+
},
|
|
1276
|
+
{
|
|
1277
|
+
name: "Uruguay",
|
|
1278
|
+
code: "UY",
|
|
1279
|
+
flag: "https://www.untitledui.com/images/flags/UY.svg",
|
|
1280
|
+
phoneCode: "598",
|
|
1281
|
+
phoneMask: "+598-#-###-##-##",
|
|
1282
|
+
},
|
|
1283
|
+
{
|
|
1284
|
+
name: "Uzbekistan",
|
|
1285
|
+
code: "UZ",
|
|
1286
|
+
flag: "https://www.untitledui.com/images/flags/UZ.svg",
|
|
1287
|
+
phoneCode: "998",
|
|
1288
|
+
phoneMask: "+998-##-###-####",
|
|
1289
|
+
},
|
|
1290
|
+
{
|
|
1291
|
+
name: "Vanuatu",
|
|
1292
|
+
code: "VU",
|
|
1293
|
+
flag: "https://www.untitledui.com/images/flags/VU.svg",
|
|
1294
|
+
phoneCode: "678",
|
|
1295
|
+
phoneMask: "+678-#####",
|
|
1296
|
+
},
|
|
1297
|
+
{
|
|
1298
|
+
name: "Venezuela",
|
|
1299
|
+
code: "VE",
|
|
1300
|
+
flag: "https://www.untitledui.com/images/flags/VE.svg",
|
|
1301
|
+
phoneCode: "58",
|
|
1302
|
+
phoneMask: "+58 (###) ###-####",
|
|
1303
|
+
},
|
|
1304
|
+
{
|
|
1305
|
+
name: "Vietnam",
|
|
1306
|
+
code: "VN",
|
|
1307
|
+
flag: "https://www.untitledui.com/images/flags/VN.svg",
|
|
1308
|
+
phoneCode: "84",
|
|
1309
|
+
phoneMask: "+84 (###) ####-###",
|
|
1310
|
+
},
|
|
1311
|
+
{
|
|
1312
|
+
name: "Yemen",
|
|
1313
|
+
code: "YE",
|
|
1314
|
+
flag: "https://www.untitledui.com/images/flags/YE.svg",
|
|
1315
|
+
phoneCode: "967",
|
|
1316
|
+
phoneMask: "+967-##-###-###",
|
|
1317
|
+
},
|
|
1318
|
+
{
|
|
1319
|
+
name: "Zambia",
|
|
1320
|
+
code: "ZM",
|
|
1321
|
+
flag: "https://www.untitledui.com/images/flags/ZM.svg",
|
|
1322
|
+
phoneCode: "260",
|
|
1323
|
+
phoneMask: "+260-##-###-####",
|
|
1324
|
+
},
|
|
1325
|
+
{
|
|
1326
|
+
name: "Zimbabwe",
|
|
1327
|
+
code: "ZW",
|
|
1328
|
+
flag: "https://www.untitledui.com/images/flags/ZW.svg",
|
|
1329
|
+
phoneCode: "263",
|
|
1330
|
+
phoneMask: "+263-#-######",
|
|
1331
|
+
},
|
|
1332
|
+
];
|
|
1333
|
+
|
|
1334
|
+
/**
|
|
1335
|
+
* Phone code options for the select component.
|
|
1336
|
+
*/
|
|
1337
|
+
export const phoneCodeOptions: SelectItemType[] = countries.map((country) => ({
|
|
1338
|
+
id: country.code,
|
|
1339
|
+
label: country.code,
|
|
1340
|
+
}));
|
|
1341
|
+
|
|
1342
|
+
/**
|
|
1343
|
+
* Country options for the select component.
|
|
1344
|
+
*/
|
|
1345
|
+
export const countriesOptions: SelectItemType[] = countries.map((country) => ({
|
|
1346
|
+
id: country.code,
|
|
1347
|
+
label: country.name,
|
|
1348
|
+
icon: (props: HTMLAttributes<HTMLImageElement>) => <img {...props} src={country.flag} alt={`${country.name} flag`} />,
|
|
1349
|
+
}));
|
|
1350
|
+
|
|
1351
|
+
export default countries;
|