@firebase-oss/ui-react 0.0.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.
- package/README.md +80 -0
- package/dist/index.cjs +3 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +3093 -0
- package/dist/index.d.ts +3093 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -0
- package/package.json +72 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,3093 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import * as react from 'react';
|
|
3
|
+
import { PropsWithChildren, ComponentProps, ReactNode } from 'react';
|
|
4
|
+
import * as zod_v4_core from 'zod/v4/core';
|
|
5
|
+
import * as zod from 'zod';
|
|
6
|
+
import { z } from 'zod';
|
|
7
|
+
import * as _tanstack_react_form from '@tanstack/react-form';
|
|
8
|
+
import * as firebase_auth from 'firebase/auth';
|
|
9
|
+
import { UserCredential, RecaptchaVerifier, OAuthProvider, FacebookAuthProvider, GithubAuthProvider, GoogleAuthProvider, TwitterAuthProvider, AuthProvider, FactorId, MultiFactorInfo } from 'firebase/auth';
|
|
10
|
+
import * as _firebase_oss_ui_core from '@firebase-oss/ui-core';
|
|
11
|
+
import { CountryData, CountryCode, FirebaseUIStore } from '@firebase-oss/ui-core';
|
|
12
|
+
import { ButtonVariant } from '@firebase-oss/ui-styles';
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* Copyright 2025 Google LLC
|
|
16
|
+
*
|
|
17
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
18
|
+
* you may not use this file except in compliance with the License.
|
|
19
|
+
* You may obtain a copy of the License at
|
|
20
|
+
*
|
|
21
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
22
|
+
*
|
|
23
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
24
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
25
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
26
|
+
* See the License for the specific language governing permissions and
|
|
27
|
+
* limitations under the License.
|
|
28
|
+
*/
|
|
29
|
+
type PolicyURL = string | URL;
|
|
30
|
+
interface PolicyProps {
|
|
31
|
+
termsOfServiceUrl: PolicyURL;
|
|
32
|
+
privacyPolicyUrl: PolicyURL;
|
|
33
|
+
onNavigate?: (url: PolicyURL) => void;
|
|
34
|
+
}
|
|
35
|
+
declare const PolicyContext: react.Context<PolicyProps | undefined>;
|
|
36
|
+
declare function Policies(): react_jsx_runtime.JSX.Element | null;
|
|
37
|
+
|
|
38
|
+
type EmailLinkAuthFormProps = {
|
|
39
|
+
onEmailSent?: () => void;
|
|
40
|
+
onSignIn?: (credential: UserCredential) => void;
|
|
41
|
+
};
|
|
42
|
+
declare function useEmailLinkAuthFormAction(): ({ email }: {
|
|
43
|
+
email: string;
|
|
44
|
+
}) => Promise<void>;
|
|
45
|
+
declare function useEmailLinkAuthForm(onSuccess?: EmailLinkAuthFormProps["onEmailSent"]): _tanstack_react_form.AppFieldExtendedReactFormApi<{
|
|
46
|
+
email: string;
|
|
47
|
+
}, _tanstack_react_form.FormValidateOrFn<{
|
|
48
|
+
email: string;
|
|
49
|
+
}> | undefined, _tanstack_react_form.FormValidateOrFn<{
|
|
50
|
+
email: string;
|
|
51
|
+
}> | undefined, _tanstack_react_form.FormAsyncValidateOrFn<{
|
|
52
|
+
email: string;
|
|
53
|
+
}> | undefined, zod.ZodObject<{
|
|
54
|
+
email: zod.ZodEmail;
|
|
55
|
+
}, zod_v4_core.$strip>, _tanstack_react_form.FormAsyncValidateOrFn<{
|
|
56
|
+
email: string;
|
|
57
|
+
}> | undefined, zod.ZodObject<{
|
|
58
|
+
email: zod.ZodEmail;
|
|
59
|
+
}, zod_v4_core.$strip>, ({ value }: {
|
|
60
|
+
value: {
|
|
61
|
+
email: string;
|
|
62
|
+
};
|
|
63
|
+
formApi: _tanstack_react_form.FormApi<{
|
|
64
|
+
email: string;
|
|
65
|
+
}, any, any, any, any, any, any, any, any, any, any, any>;
|
|
66
|
+
signal: AbortSignal;
|
|
67
|
+
}) => Promise<string | void>, _tanstack_react_form.FormValidateOrFn<{
|
|
68
|
+
email: string;
|
|
69
|
+
}> | undefined, _tanstack_react_form.FormAsyncValidateOrFn<{
|
|
70
|
+
email: string;
|
|
71
|
+
}> | undefined, _tanstack_react_form.FormAsyncValidateOrFn<{
|
|
72
|
+
email: string;
|
|
73
|
+
}> | undefined, unknown, {
|
|
74
|
+
readonly Input: ({ children, before, label, action, ...props }: react.PropsWithChildren<react.ComponentProps<"input"> & {
|
|
75
|
+
label: string;
|
|
76
|
+
before?: react.ReactNode;
|
|
77
|
+
action?: react.ReactNode;
|
|
78
|
+
}>) => react_jsx_runtime.JSX.Element;
|
|
79
|
+
}, {
|
|
80
|
+
readonly SubmitButton: (props: react.ComponentProps<"button">) => react_jsx_runtime.JSX.Element;
|
|
81
|
+
readonly ErrorMessage: () => react_jsx_runtime.JSX.Element;
|
|
82
|
+
readonly Action: ({ className, ...props }: react.ComponentProps<"button">) => react_jsx_runtime.JSX.Element;
|
|
83
|
+
}>;
|
|
84
|
+
declare function useEmailLinkAuthFormCompleteSignIn(onSignIn?: EmailLinkAuthFormProps["onSignIn"]): void;
|
|
85
|
+
declare function EmailLinkAuthForm({ onEmailSent, onSignIn }: EmailLinkAuthFormProps): react_jsx_runtime.JSX.Element;
|
|
86
|
+
|
|
87
|
+
/**
|
|
88
|
+
* Copyright 2025 Google LLC
|
|
89
|
+
*
|
|
90
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
91
|
+
* you may not use this file except in compliance with the License.
|
|
92
|
+
* You may obtain a copy of the License at
|
|
93
|
+
*
|
|
94
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
95
|
+
*
|
|
96
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
97
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
98
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
99
|
+
* See the License for the specific language governing permissions and
|
|
100
|
+
* limitations under the License.
|
|
101
|
+
*/
|
|
102
|
+
type ForgotPasswordAuthFormProps = {
|
|
103
|
+
onPasswordSent?: () => void;
|
|
104
|
+
onBackToSignInClick?: () => void;
|
|
105
|
+
};
|
|
106
|
+
declare function useForgotPasswordAuthFormAction(): ({ email }: {
|
|
107
|
+
email: string;
|
|
108
|
+
}) => Promise<void>;
|
|
109
|
+
declare function useForgotPasswordAuthForm(onSuccess?: ForgotPasswordAuthFormProps["onPasswordSent"]): _tanstack_react_form.AppFieldExtendedReactFormApi<{
|
|
110
|
+
email: string;
|
|
111
|
+
}, _tanstack_react_form.FormValidateOrFn<{
|
|
112
|
+
email: string;
|
|
113
|
+
}> | undefined, _tanstack_react_form.FormValidateOrFn<{
|
|
114
|
+
email: string;
|
|
115
|
+
}> | undefined, _tanstack_react_form.FormAsyncValidateOrFn<{
|
|
116
|
+
email: string;
|
|
117
|
+
}> | undefined, zod.ZodObject<{
|
|
118
|
+
email: zod.ZodEmail;
|
|
119
|
+
}, zod_v4_core.$strip>, _tanstack_react_form.FormAsyncValidateOrFn<{
|
|
120
|
+
email: string;
|
|
121
|
+
}> | undefined, zod.ZodObject<{
|
|
122
|
+
email: zod.ZodEmail;
|
|
123
|
+
}, zod_v4_core.$strip>, ({ value }: {
|
|
124
|
+
value: {
|
|
125
|
+
email: string;
|
|
126
|
+
};
|
|
127
|
+
formApi: _tanstack_react_form.FormApi<{
|
|
128
|
+
email: string;
|
|
129
|
+
}, any, any, any, any, any, any, any, any, any, any, any>;
|
|
130
|
+
signal: AbortSignal;
|
|
131
|
+
}) => Promise<string | void>, _tanstack_react_form.FormValidateOrFn<{
|
|
132
|
+
email: string;
|
|
133
|
+
}> | undefined, _tanstack_react_form.FormAsyncValidateOrFn<{
|
|
134
|
+
email: string;
|
|
135
|
+
}> | undefined, _tanstack_react_form.FormAsyncValidateOrFn<{
|
|
136
|
+
email: string;
|
|
137
|
+
}> | undefined, unknown, {
|
|
138
|
+
readonly Input: ({ children, before, label, action, ...props }: react.PropsWithChildren<react.ComponentProps<"input"> & {
|
|
139
|
+
label: string;
|
|
140
|
+
before?: react.ReactNode;
|
|
141
|
+
action?: react.ReactNode;
|
|
142
|
+
}>) => react_jsx_runtime.JSX.Element;
|
|
143
|
+
}, {
|
|
144
|
+
readonly SubmitButton: (props: react.ComponentProps<"button">) => react_jsx_runtime.JSX.Element;
|
|
145
|
+
readonly ErrorMessage: () => react_jsx_runtime.JSX.Element;
|
|
146
|
+
readonly Action: ({ className, ...props }: react.ComponentProps<"button">) => react_jsx_runtime.JSX.Element;
|
|
147
|
+
}>;
|
|
148
|
+
declare function ForgotPasswordAuthForm({ onBackToSignInClick, onPasswordSent }: ForgotPasswordAuthFormProps): react_jsx_runtime.JSX.Element;
|
|
149
|
+
|
|
150
|
+
declare function usePhoneNumberFormAction(): ({ phoneNumber, recaptchaVerifier }: {
|
|
151
|
+
phoneNumber: string;
|
|
152
|
+
recaptchaVerifier: RecaptchaVerifier;
|
|
153
|
+
}) => Promise<string>;
|
|
154
|
+
type UsePhoneNumberForm = {
|
|
155
|
+
recaptchaVerifier: RecaptchaVerifier;
|
|
156
|
+
onSuccess: (verificationId: string) => void;
|
|
157
|
+
formatPhoneNumber?: (phoneNumber: string) => string;
|
|
158
|
+
};
|
|
159
|
+
declare function usePhoneNumberForm({ recaptchaVerifier, onSuccess, formatPhoneNumber }: UsePhoneNumberForm): _tanstack_react_form.AppFieldExtendedReactFormApi<{
|
|
160
|
+
phoneNumber: string;
|
|
161
|
+
}, _tanstack_react_form.FormValidateOrFn<{
|
|
162
|
+
phoneNumber: string;
|
|
163
|
+
}> | undefined, _tanstack_react_form.FormValidateOrFn<{
|
|
164
|
+
phoneNumber: string;
|
|
165
|
+
}> | undefined, _tanstack_react_form.FormAsyncValidateOrFn<{
|
|
166
|
+
phoneNumber: string;
|
|
167
|
+
}> | undefined, zod.ZodObject<{
|
|
168
|
+
phoneNumber: zod.ZodString;
|
|
169
|
+
}, zod_v4_core.$strip>, _tanstack_react_form.FormAsyncValidateOrFn<{
|
|
170
|
+
phoneNumber: string;
|
|
171
|
+
}> | undefined, zod.ZodObject<{
|
|
172
|
+
phoneNumber: zod.ZodString;
|
|
173
|
+
}, zod_v4_core.$strip>, ({ value }: {
|
|
174
|
+
value: {
|
|
175
|
+
phoneNumber: string;
|
|
176
|
+
};
|
|
177
|
+
formApi: _tanstack_react_form.FormApi<{
|
|
178
|
+
phoneNumber: string;
|
|
179
|
+
}, any, any, any, any, any, any, any, any, any, any, any>;
|
|
180
|
+
signal: AbortSignal;
|
|
181
|
+
}) => Promise<string | void>, _tanstack_react_form.FormValidateOrFn<{
|
|
182
|
+
phoneNumber: string;
|
|
183
|
+
}> | undefined, _tanstack_react_form.FormAsyncValidateOrFn<{
|
|
184
|
+
phoneNumber: string;
|
|
185
|
+
}> | undefined, _tanstack_react_form.FormAsyncValidateOrFn<{
|
|
186
|
+
phoneNumber: string;
|
|
187
|
+
}> | undefined, unknown, {
|
|
188
|
+
readonly Input: ({ children, before, label, action, ...props }: react.PropsWithChildren<react.ComponentProps<"input"> & {
|
|
189
|
+
label: string;
|
|
190
|
+
before?: react.ReactNode;
|
|
191
|
+
action?: react.ReactNode;
|
|
192
|
+
}>) => react_jsx_runtime.JSX.Element;
|
|
193
|
+
}, {
|
|
194
|
+
readonly SubmitButton: (props: react.ComponentProps<"button">) => react_jsx_runtime.JSX.Element;
|
|
195
|
+
readonly ErrorMessage: () => react_jsx_runtime.JSX.Element;
|
|
196
|
+
readonly Action: ({ className, ...props }: react.ComponentProps<"button">) => react_jsx_runtime.JSX.Element;
|
|
197
|
+
}>;
|
|
198
|
+
declare function useVerifyPhoneNumberFormAction(): ({ verificationId, verificationCode }: {
|
|
199
|
+
verificationId: string;
|
|
200
|
+
verificationCode: string;
|
|
201
|
+
}) => Promise<UserCredential>;
|
|
202
|
+
type UseVerifyPhoneNumberForm = {
|
|
203
|
+
verificationId: string;
|
|
204
|
+
onSuccess: (credential: UserCredential) => void;
|
|
205
|
+
};
|
|
206
|
+
declare function useVerifyPhoneNumberForm({ verificationId, onSuccess }: UseVerifyPhoneNumberForm): _tanstack_react_form.AppFieldExtendedReactFormApi<{
|
|
207
|
+
verificationId: string;
|
|
208
|
+
verificationCode: string;
|
|
209
|
+
}, _tanstack_react_form.FormValidateOrFn<{
|
|
210
|
+
verificationId: string;
|
|
211
|
+
verificationCode: string;
|
|
212
|
+
}> | undefined, _tanstack_react_form.FormValidateOrFn<{
|
|
213
|
+
verificationId: string;
|
|
214
|
+
verificationCode: string;
|
|
215
|
+
}> | undefined, _tanstack_react_form.FormAsyncValidateOrFn<{
|
|
216
|
+
verificationId: string;
|
|
217
|
+
verificationCode: string;
|
|
218
|
+
}> | undefined, zod.ZodObject<{
|
|
219
|
+
verificationId: zod.ZodString;
|
|
220
|
+
verificationCode: zod.ZodString;
|
|
221
|
+
}, zod_v4_core.$strip>, _tanstack_react_form.FormAsyncValidateOrFn<{
|
|
222
|
+
verificationId: string;
|
|
223
|
+
verificationCode: string;
|
|
224
|
+
}> | undefined, zod.ZodObject<{
|
|
225
|
+
verificationId: zod.ZodString;
|
|
226
|
+
verificationCode: zod.ZodString;
|
|
227
|
+
}, zod_v4_core.$strip>, ({ value }: {
|
|
228
|
+
value: {
|
|
229
|
+
verificationId: string;
|
|
230
|
+
verificationCode: string;
|
|
231
|
+
};
|
|
232
|
+
formApi: _tanstack_react_form.FormApi<{
|
|
233
|
+
verificationId: string;
|
|
234
|
+
verificationCode: string;
|
|
235
|
+
}, any, any, any, any, any, any, any, any, any, any, any>;
|
|
236
|
+
signal: AbortSignal;
|
|
237
|
+
}) => Promise<string | void>, _tanstack_react_form.FormValidateOrFn<{
|
|
238
|
+
verificationId: string;
|
|
239
|
+
verificationCode: string;
|
|
240
|
+
}> | undefined, _tanstack_react_form.FormAsyncValidateOrFn<{
|
|
241
|
+
verificationId: string;
|
|
242
|
+
verificationCode: string;
|
|
243
|
+
}> | undefined, _tanstack_react_form.FormAsyncValidateOrFn<{
|
|
244
|
+
verificationId: string;
|
|
245
|
+
verificationCode: string;
|
|
246
|
+
}> | undefined, unknown, {
|
|
247
|
+
readonly Input: ({ children, before, label, action, ...props }: react.PropsWithChildren<react.ComponentProps<"input"> & {
|
|
248
|
+
label: string;
|
|
249
|
+
before?: react.ReactNode;
|
|
250
|
+
action?: react.ReactNode;
|
|
251
|
+
}>) => react_jsx_runtime.JSX.Element;
|
|
252
|
+
}, {
|
|
253
|
+
readonly SubmitButton: (props: react.ComponentProps<"button">) => react_jsx_runtime.JSX.Element;
|
|
254
|
+
readonly ErrorMessage: () => react_jsx_runtime.JSX.Element;
|
|
255
|
+
readonly Action: ({ className, ...props }: react.ComponentProps<"button">) => react_jsx_runtime.JSX.Element;
|
|
256
|
+
}>;
|
|
257
|
+
type PhoneAuthFormProps = {
|
|
258
|
+
onSignIn?: (credential: UserCredential) => void;
|
|
259
|
+
};
|
|
260
|
+
declare function PhoneAuthForm(props: PhoneAuthFormProps): react_jsx_runtime.JSX.Element;
|
|
261
|
+
|
|
262
|
+
type SignInAuthFormProps = {
|
|
263
|
+
onSignIn?: (credential: UserCredential) => void;
|
|
264
|
+
onForgotPasswordClick?: () => void;
|
|
265
|
+
onSignUpClick?: () => void;
|
|
266
|
+
};
|
|
267
|
+
declare function useSignInAuthFormAction(): ({ email, password }: {
|
|
268
|
+
email: string;
|
|
269
|
+
password: string;
|
|
270
|
+
}) => Promise<UserCredential>;
|
|
271
|
+
declare function useSignInAuthForm(onSuccess?: SignInAuthFormProps["onSignIn"]): _tanstack_react_form.AppFieldExtendedReactFormApi<{
|
|
272
|
+
email: string;
|
|
273
|
+
password: string;
|
|
274
|
+
}, _tanstack_react_form.FormValidateOrFn<{
|
|
275
|
+
email: string;
|
|
276
|
+
password: string;
|
|
277
|
+
}> | undefined, _tanstack_react_form.FormValidateOrFn<{
|
|
278
|
+
email: string;
|
|
279
|
+
password: string;
|
|
280
|
+
}> | undefined, _tanstack_react_form.FormAsyncValidateOrFn<{
|
|
281
|
+
email: string;
|
|
282
|
+
password: string;
|
|
283
|
+
}> | undefined, zod.ZodObject<{
|
|
284
|
+
email: zod.ZodEmail;
|
|
285
|
+
password: zod.ZodString;
|
|
286
|
+
}, zod_v4_core.$strip>, _tanstack_react_form.FormAsyncValidateOrFn<{
|
|
287
|
+
email: string;
|
|
288
|
+
password: string;
|
|
289
|
+
}> | undefined, zod.ZodObject<{
|
|
290
|
+
email: zod.ZodEmail;
|
|
291
|
+
password: zod.ZodString;
|
|
292
|
+
}, zod_v4_core.$strip>, ({ value }: {
|
|
293
|
+
value: {
|
|
294
|
+
email: string;
|
|
295
|
+
password: string;
|
|
296
|
+
};
|
|
297
|
+
formApi: _tanstack_react_form.FormApi<{
|
|
298
|
+
email: string;
|
|
299
|
+
password: string;
|
|
300
|
+
}, any, any, any, any, any, any, any, any, any, any, any>;
|
|
301
|
+
signal: AbortSignal;
|
|
302
|
+
}) => Promise<string | void>, _tanstack_react_form.FormValidateOrFn<{
|
|
303
|
+
email: string;
|
|
304
|
+
password: string;
|
|
305
|
+
}> | undefined, _tanstack_react_form.FormAsyncValidateOrFn<{
|
|
306
|
+
email: string;
|
|
307
|
+
password: string;
|
|
308
|
+
}> | undefined, _tanstack_react_form.FormAsyncValidateOrFn<{
|
|
309
|
+
email: string;
|
|
310
|
+
password: string;
|
|
311
|
+
}> | undefined, unknown, {
|
|
312
|
+
readonly Input: ({ children, before, label, action, ...props }: react.PropsWithChildren<react.ComponentProps<"input"> & {
|
|
313
|
+
label: string;
|
|
314
|
+
before?: react.ReactNode;
|
|
315
|
+
action?: react.ReactNode;
|
|
316
|
+
}>) => react_jsx_runtime.JSX.Element;
|
|
317
|
+
}, {
|
|
318
|
+
readonly SubmitButton: (props: react.ComponentProps<"button">) => react_jsx_runtime.JSX.Element;
|
|
319
|
+
readonly ErrorMessage: () => react_jsx_runtime.JSX.Element;
|
|
320
|
+
readonly Action: ({ className, ...props }: react.ComponentProps<"button">) => react_jsx_runtime.JSX.Element;
|
|
321
|
+
}>;
|
|
322
|
+
declare function SignInAuthForm({ onSignIn, onForgotPasswordClick, onSignUpClick }: SignInAuthFormProps): react_jsx_runtime.JSX.Element;
|
|
323
|
+
|
|
324
|
+
declare function useRequireDisplayName(): boolean;
|
|
325
|
+
type SignUpAuthFormProps = {
|
|
326
|
+
onSignUp?: (credential: UserCredential) => void;
|
|
327
|
+
onBackToSignInClick?: () => void;
|
|
328
|
+
};
|
|
329
|
+
declare function useSignUpAuthFormAction(): ({ email, password, displayName }: {
|
|
330
|
+
email: string;
|
|
331
|
+
password: string;
|
|
332
|
+
displayName?: string;
|
|
333
|
+
}) => Promise<UserCredential>;
|
|
334
|
+
declare function useSignUpAuthForm(onSuccess?: SignUpAuthFormProps["onSignUp"]): _tanstack_react_form.AppFieldExtendedReactFormApi<{
|
|
335
|
+
email: string;
|
|
336
|
+
password: string;
|
|
337
|
+
displayName: string | undefined;
|
|
338
|
+
}, _tanstack_react_form.FormValidateOrFn<{
|
|
339
|
+
email: string;
|
|
340
|
+
password: string;
|
|
341
|
+
displayName: string | undefined;
|
|
342
|
+
}> | undefined, _tanstack_react_form.FormValidateOrFn<{
|
|
343
|
+
email: string;
|
|
344
|
+
password: string;
|
|
345
|
+
displayName: string | undefined;
|
|
346
|
+
}> | undefined, _tanstack_react_form.FormAsyncValidateOrFn<{
|
|
347
|
+
email: string;
|
|
348
|
+
password: string;
|
|
349
|
+
displayName: string | undefined;
|
|
350
|
+
}> | undefined, z.ZodObject<{
|
|
351
|
+
email: z.ZodEmail;
|
|
352
|
+
password: z.ZodString;
|
|
353
|
+
displayName: z.ZodString | z.ZodOptional<z.ZodString>;
|
|
354
|
+
}, z.core.$strip>, _tanstack_react_form.FormAsyncValidateOrFn<{
|
|
355
|
+
email: string;
|
|
356
|
+
password: string;
|
|
357
|
+
displayName: string | undefined;
|
|
358
|
+
}> | undefined, z.ZodObject<{
|
|
359
|
+
email: z.ZodEmail;
|
|
360
|
+
password: z.ZodString;
|
|
361
|
+
displayName: z.ZodString | z.ZodOptional<z.ZodString>;
|
|
362
|
+
}, z.core.$strip>, ({ value }: {
|
|
363
|
+
value: {
|
|
364
|
+
email: string;
|
|
365
|
+
password: string;
|
|
366
|
+
displayName: string | undefined;
|
|
367
|
+
};
|
|
368
|
+
formApi: _tanstack_react_form.FormApi<{
|
|
369
|
+
email: string;
|
|
370
|
+
password: string;
|
|
371
|
+
displayName: string | undefined;
|
|
372
|
+
}, any, any, any, any, any, any, any, any, any, any, any>;
|
|
373
|
+
signal: AbortSignal;
|
|
374
|
+
}) => Promise<string | void>, _tanstack_react_form.FormValidateOrFn<{
|
|
375
|
+
email: string;
|
|
376
|
+
password: string;
|
|
377
|
+
displayName: string | undefined;
|
|
378
|
+
}> | undefined, _tanstack_react_form.FormAsyncValidateOrFn<{
|
|
379
|
+
email: string;
|
|
380
|
+
password: string;
|
|
381
|
+
displayName: string | undefined;
|
|
382
|
+
}> | undefined, _tanstack_react_form.FormAsyncValidateOrFn<{
|
|
383
|
+
email: string;
|
|
384
|
+
password: string;
|
|
385
|
+
displayName: string | undefined;
|
|
386
|
+
}> | undefined, unknown, {
|
|
387
|
+
readonly Input: ({ children, before, label, action, ...props }: react.PropsWithChildren<react.ComponentProps<"input"> & {
|
|
388
|
+
label: string;
|
|
389
|
+
before?: react.ReactNode;
|
|
390
|
+
action?: react.ReactNode;
|
|
391
|
+
}>) => react_jsx_runtime.JSX.Element;
|
|
392
|
+
}, {
|
|
393
|
+
readonly SubmitButton: (props: react.ComponentProps<"button">) => react_jsx_runtime.JSX.Element;
|
|
394
|
+
readonly ErrorMessage: () => react_jsx_runtime.JSX.Element;
|
|
395
|
+
readonly Action: ({ className, ...props }: react.ComponentProps<"button">) => react_jsx_runtime.JSX.Element;
|
|
396
|
+
}>;
|
|
397
|
+
declare function SignUpAuthForm({ onBackToSignInClick, onSignUp }: SignUpAuthFormProps): react_jsx_runtime.JSX.Element;
|
|
398
|
+
|
|
399
|
+
type EmailLinkAuthScreenProps = PropsWithChildren<EmailLinkAuthFormProps>;
|
|
400
|
+
declare function EmailLinkAuthScreen({ children, onEmailSent }: EmailLinkAuthScreenProps): react_jsx_runtime.JSX.Element;
|
|
401
|
+
|
|
402
|
+
type ForgotPasswordAuthScreenProps = ForgotPasswordAuthFormProps;
|
|
403
|
+
declare function ForgotPasswordAuthScreen(props: ForgotPasswordAuthScreenProps): react_jsx_runtime.JSX.Element;
|
|
404
|
+
|
|
405
|
+
type OAuthScreenProps = PropsWithChildren;
|
|
406
|
+
declare function OAuthScreen({ children }: OAuthScreenProps): react_jsx_runtime.JSX.Element;
|
|
407
|
+
|
|
408
|
+
type PhoneAuthScreenProps = PropsWithChildren<PhoneAuthFormProps>;
|
|
409
|
+
declare function PhoneAuthScreen({ children, ...props }: PhoneAuthScreenProps): react_jsx_runtime.JSX.Element;
|
|
410
|
+
|
|
411
|
+
type SignInAuthScreenProps = PropsWithChildren<SignInAuthFormProps>;
|
|
412
|
+
declare function SignInAuthScreen({ children, ...props }: SignInAuthScreenProps): react_jsx_runtime.JSX.Element;
|
|
413
|
+
|
|
414
|
+
type SignUpAuthScreenProps = PropsWithChildren<SignUpAuthFormProps>;
|
|
415
|
+
declare function SignUpAuthScreen({ children, ...props }: SignUpAuthScreenProps): react_jsx_runtime.JSX.Element;
|
|
416
|
+
|
|
417
|
+
type AppleSignInButtonProps = {
|
|
418
|
+
provider?: OAuthProvider;
|
|
419
|
+
themed?: boolean;
|
|
420
|
+
};
|
|
421
|
+
declare function AppleSignInButton({ provider, themed }: AppleSignInButtonProps): react_jsx_runtime.JSX.Element;
|
|
422
|
+
declare function AppleLogo({ className, ...props }: React.SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
|
|
423
|
+
|
|
424
|
+
type FacebookSignInButtonProps = {
|
|
425
|
+
provider?: FacebookAuthProvider;
|
|
426
|
+
themed?: boolean;
|
|
427
|
+
};
|
|
428
|
+
declare function FacebookSignInButton({ provider, themed }: FacebookSignInButtonProps): react_jsx_runtime.JSX.Element;
|
|
429
|
+
declare function FacebookLogo({ className, ...props }: React.SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
|
|
430
|
+
|
|
431
|
+
type GitHubSignInButtonProps = {
|
|
432
|
+
provider?: GithubAuthProvider;
|
|
433
|
+
themed?: boolean;
|
|
434
|
+
};
|
|
435
|
+
declare function GitHubSignInButton({ provider, themed }: GitHubSignInButtonProps): react_jsx_runtime.JSX.Element;
|
|
436
|
+
declare function GitHubLogo({ className, ...props }: React.SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
|
|
437
|
+
|
|
438
|
+
type GoogleSignInButtonProps = {
|
|
439
|
+
provider?: GoogleAuthProvider;
|
|
440
|
+
themed?: boolean | "neutral";
|
|
441
|
+
};
|
|
442
|
+
declare function GoogleSignInButton({ provider, themed }: GoogleSignInButtonProps): react_jsx_runtime.JSX.Element;
|
|
443
|
+
declare function GoogleLogo({ className, ...props }: React.SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
|
|
444
|
+
|
|
445
|
+
type MicrosoftSignInButtonProps = {
|
|
446
|
+
provider?: OAuthProvider;
|
|
447
|
+
themed?: boolean;
|
|
448
|
+
};
|
|
449
|
+
declare function MicrosoftSignInButton({ provider, themed }: MicrosoftSignInButtonProps): react_jsx_runtime.JSX.Element;
|
|
450
|
+
declare function MicrosoftLogo({ className, ...props }: React.SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
|
|
451
|
+
|
|
452
|
+
type TwitterSignInButtonProps = {
|
|
453
|
+
provider?: TwitterAuthProvider;
|
|
454
|
+
themed?: boolean;
|
|
455
|
+
};
|
|
456
|
+
declare function TwitterSignInButton({ provider, themed }: TwitterSignInButtonProps): react_jsx_runtime.JSX.Element;
|
|
457
|
+
declare function TwitterLogo({ className, ...props }: React.SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
|
|
458
|
+
|
|
459
|
+
type OAuthButtonProps = PropsWithChildren<{
|
|
460
|
+
provider: AuthProvider;
|
|
461
|
+
themed?: boolean | string;
|
|
462
|
+
}>;
|
|
463
|
+
declare function useSignInWithProvider(provider: AuthProvider): {
|
|
464
|
+
error: string | null;
|
|
465
|
+
callback: () => Promise<void>;
|
|
466
|
+
};
|
|
467
|
+
declare function OAuthButton({ provider, children, themed }: OAuthButtonProps): react_jsx_runtime.JSX.Element;
|
|
468
|
+
|
|
469
|
+
type Hint = (typeof FactorId)[keyof typeof FactorId];
|
|
470
|
+
type MultiFactorAuthEnrollmentFormProps = {
|
|
471
|
+
onEnrollment?: () => void;
|
|
472
|
+
hints?: Hint[];
|
|
473
|
+
};
|
|
474
|
+
declare function MultiFactorAuthEnrollmentForm(props: MultiFactorAuthEnrollmentFormProps): react_jsx_runtime.JSX.Element;
|
|
475
|
+
|
|
476
|
+
type MultiFactorAuthEnrollmentScreenProps = MultiFactorAuthEnrollmentFormProps;
|
|
477
|
+
declare function MultiFactorAuthEnrollmentScreen(props: MultiFactorAuthEnrollmentScreenProps): react_jsx_runtime.JSX.Element;
|
|
478
|
+
|
|
479
|
+
declare function useSmsMultiFactorAssertionPhoneFormAction(): ({ hint, recaptchaVerifier }: {
|
|
480
|
+
hint: MultiFactorInfo;
|
|
481
|
+
recaptchaVerifier: RecaptchaVerifier;
|
|
482
|
+
}) => Promise<string>;
|
|
483
|
+
declare function useSmsMultiFactorAssertionVerifyFormAction(): ({ verificationId, verificationCode }: {
|
|
484
|
+
verificationId: string;
|
|
485
|
+
verificationCode: string;
|
|
486
|
+
}) => Promise<firebase_auth.UserCredential | undefined>;
|
|
487
|
+
type SmsMultiFactorAssertionFormProps = {
|
|
488
|
+
hint: MultiFactorInfo;
|
|
489
|
+
onSuccess?: () => void;
|
|
490
|
+
};
|
|
491
|
+
declare function SmsMultiFactorAssertionForm(props: SmsMultiFactorAssertionFormProps): react_jsx_runtime.JSX.Element;
|
|
492
|
+
|
|
493
|
+
declare function useTotpMultiFactorAssertionFormAction(): ({ verificationCode, hint }: {
|
|
494
|
+
verificationCode: string;
|
|
495
|
+
hint: MultiFactorInfo;
|
|
496
|
+
}) => Promise<firebase_auth.UserCredential | undefined>;
|
|
497
|
+
type TotpMultiFactorAssertionFormProps = {
|
|
498
|
+
hint: MultiFactorInfo;
|
|
499
|
+
onSuccess?: () => void;
|
|
500
|
+
};
|
|
501
|
+
declare function TotpMultiFactorAssertionForm(props: TotpMultiFactorAssertionFormProps): react_jsx_runtime.JSX.Element;
|
|
502
|
+
|
|
503
|
+
/**
|
|
504
|
+
* Get the UI configuration from the context.
|
|
505
|
+
*/
|
|
506
|
+
declare function useUI(): _firebase_oss_ui_core.FirebaseUI;
|
|
507
|
+
declare function useRedirectError(): string | undefined;
|
|
508
|
+
declare function useSignInAuthFormSchema(): zod.ZodObject<{
|
|
509
|
+
email: zod.ZodEmail;
|
|
510
|
+
password: zod.ZodString;
|
|
511
|
+
}, zod_v4_core.$strip>;
|
|
512
|
+
declare function useSignUpAuthFormSchema(): zod.ZodObject<{
|
|
513
|
+
email: zod.ZodEmail;
|
|
514
|
+
password: zod.ZodString;
|
|
515
|
+
displayName: zod.ZodString | zod.ZodOptional<zod.ZodString>;
|
|
516
|
+
}, zod_v4_core.$strip>;
|
|
517
|
+
declare function useForgotPasswordAuthFormSchema(): zod.ZodObject<{
|
|
518
|
+
email: zod.ZodEmail;
|
|
519
|
+
}, zod_v4_core.$strip>;
|
|
520
|
+
declare function useEmailLinkAuthFormSchema(): zod.ZodObject<{
|
|
521
|
+
email: zod.ZodEmail;
|
|
522
|
+
}, zod_v4_core.$strip>;
|
|
523
|
+
declare function usePhoneAuthNumberFormSchema(): zod.ZodObject<{
|
|
524
|
+
phoneNumber: zod.ZodString;
|
|
525
|
+
}, zod_v4_core.$strip>;
|
|
526
|
+
declare function usePhoneAuthVerifyFormSchema(): zod.ZodObject<{
|
|
527
|
+
verificationId: zod.ZodString;
|
|
528
|
+
verificationCode: zod.ZodString;
|
|
529
|
+
}, zod_v4_core.$strip>;
|
|
530
|
+
declare function useMultiFactorPhoneAuthNumberFormSchema(): zod.ZodObject<{
|
|
531
|
+
phoneNumber: zod.ZodString;
|
|
532
|
+
displayName: zod.ZodString;
|
|
533
|
+
}, zod_v4_core.$strip>;
|
|
534
|
+
declare function useMultiFactorPhoneAuthVerifyFormSchema(): zod.ZodObject<{
|
|
535
|
+
verificationId: zod.ZodString;
|
|
536
|
+
verificationCode: zod.ZodString;
|
|
537
|
+
}, zod_v4_core.$strip>;
|
|
538
|
+
declare function useMultiFactorTotpAuthNumberFormSchema(): zod.ZodObject<{
|
|
539
|
+
displayName: zod.ZodString;
|
|
540
|
+
}, zod_v4_core.$strip>;
|
|
541
|
+
declare function useMultiFactorTotpAuthVerifyFormSchema(): zod.ZodObject<{
|
|
542
|
+
verificationCode: zod.ZodString;
|
|
543
|
+
}, zod_v4_core.$strip>;
|
|
544
|
+
declare function useRecaptchaVerifier(ref: React.RefObject<HTMLDivElement | null>): RecaptchaVerifier | null;
|
|
545
|
+
|
|
546
|
+
type ButtonProps = ComponentProps<"button"> & {
|
|
547
|
+
variant?: ButtonVariant;
|
|
548
|
+
asChild?: boolean;
|
|
549
|
+
};
|
|
550
|
+
declare function Button({ className, variant, asChild, ...props }: ButtonProps): react_jsx_runtime.JSX.Element;
|
|
551
|
+
|
|
552
|
+
type CardProps = PropsWithChildren<ComponentProps<"div">>;
|
|
553
|
+
declare function Card({ children, className, ...props }: CardProps): react_jsx_runtime.JSX.Element;
|
|
554
|
+
declare function CardHeader({ children, className, ...props }: CardProps): react_jsx_runtime.JSX.Element;
|
|
555
|
+
declare function CardTitle({ children, className, ...props }: ComponentProps<"h2">): react_jsx_runtime.JSX.Element;
|
|
556
|
+
declare function CardSubtitle({ children, className, ...props }: ComponentProps<"p">): react_jsx_runtime.JSX.Element;
|
|
557
|
+
declare function CardContent({ children, className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
558
|
+
|
|
559
|
+
interface CountrySelectorRef {
|
|
560
|
+
getCountry: () => CountryData;
|
|
561
|
+
setCountry: (code: CountryCode) => void;
|
|
562
|
+
}
|
|
563
|
+
type CountrySelectorProps = ComponentProps<"div">;
|
|
564
|
+
declare function useCountries(): ({
|
|
565
|
+
readonly name: "Afghanistan";
|
|
566
|
+
readonly dialCode: "+93";
|
|
567
|
+
readonly code: "AF";
|
|
568
|
+
readonly emoji: "🇦🇫";
|
|
569
|
+
} | {
|
|
570
|
+
readonly name: "Albania";
|
|
571
|
+
readonly dialCode: "+355";
|
|
572
|
+
readonly code: "AL";
|
|
573
|
+
readonly emoji: "🇦🇱";
|
|
574
|
+
} | {
|
|
575
|
+
readonly name: "Algeria";
|
|
576
|
+
readonly dialCode: "+213";
|
|
577
|
+
readonly code: "DZ";
|
|
578
|
+
readonly emoji: "🇩🇿";
|
|
579
|
+
} | {
|
|
580
|
+
readonly name: "American Samoa";
|
|
581
|
+
readonly dialCode: "+1";
|
|
582
|
+
readonly code: "AS";
|
|
583
|
+
readonly emoji: "🇦🇸";
|
|
584
|
+
} | {
|
|
585
|
+
readonly name: "Andorra";
|
|
586
|
+
readonly dialCode: "+376";
|
|
587
|
+
readonly code: "AD";
|
|
588
|
+
readonly emoji: "🇦🇩";
|
|
589
|
+
} | {
|
|
590
|
+
readonly name: "Angola";
|
|
591
|
+
readonly dialCode: "+244";
|
|
592
|
+
readonly code: "AO";
|
|
593
|
+
readonly emoji: "🇦🇴";
|
|
594
|
+
} | {
|
|
595
|
+
readonly name: "Anguilla";
|
|
596
|
+
readonly dialCode: "+1";
|
|
597
|
+
readonly code: "AI";
|
|
598
|
+
readonly emoji: "🇦🇮";
|
|
599
|
+
} | {
|
|
600
|
+
readonly name: "Antigua and Barbuda";
|
|
601
|
+
readonly dialCode: "+1";
|
|
602
|
+
readonly code: "AG";
|
|
603
|
+
readonly emoji: "🇦🇬";
|
|
604
|
+
} | {
|
|
605
|
+
readonly name: "Argentina";
|
|
606
|
+
readonly dialCode: "+54";
|
|
607
|
+
readonly code: "AR";
|
|
608
|
+
readonly emoji: "🇦🇷";
|
|
609
|
+
} | {
|
|
610
|
+
readonly name: "Armenia";
|
|
611
|
+
readonly dialCode: "+374";
|
|
612
|
+
readonly code: "AM";
|
|
613
|
+
readonly emoji: "🇦🇲";
|
|
614
|
+
} | {
|
|
615
|
+
readonly name: "Aruba";
|
|
616
|
+
readonly dialCode: "+297";
|
|
617
|
+
readonly code: "AW";
|
|
618
|
+
readonly emoji: "🇦🇼";
|
|
619
|
+
} | {
|
|
620
|
+
readonly name: "Ascension Island";
|
|
621
|
+
readonly dialCode: "+247";
|
|
622
|
+
readonly code: "AC";
|
|
623
|
+
readonly emoji: "🇦🇨";
|
|
624
|
+
} | {
|
|
625
|
+
readonly name: "Australia";
|
|
626
|
+
readonly dialCode: "+61";
|
|
627
|
+
readonly code: "AU";
|
|
628
|
+
readonly emoji: "🇦🇺";
|
|
629
|
+
} | {
|
|
630
|
+
readonly name: "Austria";
|
|
631
|
+
readonly dialCode: "+43";
|
|
632
|
+
readonly code: "AT";
|
|
633
|
+
readonly emoji: "🇦🇹";
|
|
634
|
+
} | {
|
|
635
|
+
readonly name: "Azerbaijan";
|
|
636
|
+
readonly dialCode: "+994";
|
|
637
|
+
readonly code: "AZ";
|
|
638
|
+
readonly emoji: "🇦🇿";
|
|
639
|
+
} | {
|
|
640
|
+
readonly name: "Bahamas";
|
|
641
|
+
readonly dialCode: "+1";
|
|
642
|
+
readonly code: "BS";
|
|
643
|
+
readonly emoji: "🇧🇸";
|
|
644
|
+
} | {
|
|
645
|
+
readonly name: "Bahrain";
|
|
646
|
+
readonly dialCode: "+973";
|
|
647
|
+
readonly code: "BH";
|
|
648
|
+
readonly emoji: "🇧🇭";
|
|
649
|
+
} | {
|
|
650
|
+
readonly name: "Bangladesh";
|
|
651
|
+
readonly dialCode: "+880";
|
|
652
|
+
readonly code: "BD";
|
|
653
|
+
readonly emoji: "🇧🇩";
|
|
654
|
+
} | {
|
|
655
|
+
readonly name: "Barbados";
|
|
656
|
+
readonly dialCode: "+1";
|
|
657
|
+
readonly code: "BB";
|
|
658
|
+
readonly emoji: "🇧🇧";
|
|
659
|
+
} | {
|
|
660
|
+
readonly name: "Belarus";
|
|
661
|
+
readonly dialCode: "+375";
|
|
662
|
+
readonly code: "BY";
|
|
663
|
+
readonly emoji: "🇧🇾";
|
|
664
|
+
} | {
|
|
665
|
+
readonly name: "Belgium";
|
|
666
|
+
readonly dialCode: "+32";
|
|
667
|
+
readonly code: "BE";
|
|
668
|
+
readonly emoji: "🇧🇪";
|
|
669
|
+
} | {
|
|
670
|
+
readonly name: "Belize";
|
|
671
|
+
readonly dialCode: "+501";
|
|
672
|
+
readonly code: "BZ";
|
|
673
|
+
readonly emoji: "🇧🇿";
|
|
674
|
+
} | {
|
|
675
|
+
readonly name: "Benin";
|
|
676
|
+
readonly dialCode: "+229";
|
|
677
|
+
readonly code: "BJ";
|
|
678
|
+
readonly emoji: "🇧🇯";
|
|
679
|
+
} | {
|
|
680
|
+
readonly name: "Bermuda";
|
|
681
|
+
readonly dialCode: "+1";
|
|
682
|
+
readonly code: "BM";
|
|
683
|
+
readonly emoji: "🇧🇲";
|
|
684
|
+
} | {
|
|
685
|
+
readonly name: "Bhutan";
|
|
686
|
+
readonly dialCode: "+975";
|
|
687
|
+
readonly code: "BT";
|
|
688
|
+
readonly emoji: "🇧🇹";
|
|
689
|
+
} | {
|
|
690
|
+
readonly name: "Bolivia";
|
|
691
|
+
readonly dialCode: "+591";
|
|
692
|
+
readonly code: "BO";
|
|
693
|
+
readonly emoji: "🇧🇴";
|
|
694
|
+
} | {
|
|
695
|
+
readonly name: "Bosnia and Herzegovina";
|
|
696
|
+
readonly dialCode: "+387";
|
|
697
|
+
readonly code: "BA";
|
|
698
|
+
readonly emoji: "🇧🇦";
|
|
699
|
+
} | {
|
|
700
|
+
readonly name: "Botswana";
|
|
701
|
+
readonly dialCode: "+267";
|
|
702
|
+
readonly code: "BW";
|
|
703
|
+
readonly emoji: "🇧🇼";
|
|
704
|
+
} | {
|
|
705
|
+
readonly name: "Brazil";
|
|
706
|
+
readonly dialCode: "+55";
|
|
707
|
+
readonly code: "BR";
|
|
708
|
+
readonly emoji: "🇧🇷";
|
|
709
|
+
} | {
|
|
710
|
+
readonly name: "British Indian Ocean Territory";
|
|
711
|
+
readonly dialCode: "+246";
|
|
712
|
+
readonly code: "IO";
|
|
713
|
+
readonly emoji: "🇮🇴";
|
|
714
|
+
} | {
|
|
715
|
+
readonly name: "British Virgin Islands";
|
|
716
|
+
readonly dialCode: "+1";
|
|
717
|
+
readonly code: "VG";
|
|
718
|
+
readonly emoji: "🇻🇬";
|
|
719
|
+
} | {
|
|
720
|
+
readonly name: "Brunei";
|
|
721
|
+
readonly dialCode: "+673";
|
|
722
|
+
readonly code: "BN";
|
|
723
|
+
readonly emoji: "🇧🇳";
|
|
724
|
+
} | {
|
|
725
|
+
readonly name: "Bulgaria";
|
|
726
|
+
readonly dialCode: "+359";
|
|
727
|
+
readonly code: "BG";
|
|
728
|
+
readonly emoji: "🇧🇬";
|
|
729
|
+
} | {
|
|
730
|
+
readonly name: "Burkina Faso";
|
|
731
|
+
readonly dialCode: "+226";
|
|
732
|
+
readonly code: "BF";
|
|
733
|
+
readonly emoji: "🇧🇫";
|
|
734
|
+
} | {
|
|
735
|
+
readonly name: "Burundi";
|
|
736
|
+
readonly dialCode: "+257";
|
|
737
|
+
readonly code: "BI";
|
|
738
|
+
readonly emoji: "🇧🇮";
|
|
739
|
+
} | {
|
|
740
|
+
readonly name: "Cambodia";
|
|
741
|
+
readonly dialCode: "+855";
|
|
742
|
+
readonly code: "KH";
|
|
743
|
+
readonly emoji: "🇰🇭";
|
|
744
|
+
} | {
|
|
745
|
+
readonly name: "Cameroon";
|
|
746
|
+
readonly dialCode: "+237";
|
|
747
|
+
readonly code: "CM";
|
|
748
|
+
readonly emoji: "🇨🇲";
|
|
749
|
+
} | {
|
|
750
|
+
readonly name: "Canada";
|
|
751
|
+
readonly dialCode: "+1";
|
|
752
|
+
readonly code: "CA";
|
|
753
|
+
readonly emoji: "🇨🇦";
|
|
754
|
+
} | {
|
|
755
|
+
readonly name: "Cape Verde";
|
|
756
|
+
readonly dialCode: "+238";
|
|
757
|
+
readonly code: "CV";
|
|
758
|
+
readonly emoji: "🇨🇻";
|
|
759
|
+
} | {
|
|
760
|
+
readonly name: "Caribbean Netherlands";
|
|
761
|
+
readonly dialCode: "+599";
|
|
762
|
+
readonly code: "BQ";
|
|
763
|
+
readonly emoji: "🇧🇶";
|
|
764
|
+
} | {
|
|
765
|
+
readonly name: "Cayman Islands";
|
|
766
|
+
readonly dialCode: "+1";
|
|
767
|
+
readonly code: "KY";
|
|
768
|
+
readonly emoji: "🇰🇾";
|
|
769
|
+
} | {
|
|
770
|
+
readonly name: "Central African Republic";
|
|
771
|
+
readonly dialCode: "+236";
|
|
772
|
+
readonly code: "CF";
|
|
773
|
+
readonly emoji: "🇨🇫";
|
|
774
|
+
} | {
|
|
775
|
+
readonly name: "Chad";
|
|
776
|
+
readonly dialCode: "+235";
|
|
777
|
+
readonly code: "TD";
|
|
778
|
+
readonly emoji: "🇹🇩";
|
|
779
|
+
} | {
|
|
780
|
+
readonly name: "Chile";
|
|
781
|
+
readonly dialCode: "+56";
|
|
782
|
+
readonly code: "CL";
|
|
783
|
+
readonly emoji: "🇨🇱";
|
|
784
|
+
} | {
|
|
785
|
+
readonly name: "China";
|
|
786
|
+
readonly dialCode: "+86";
|
|
787
|
+
readonly code: "CN";
|
|
788
|
+
readonly emoji: "🇨🇳";
|
|
789
|
+
} | {
|
|
790
|
+
readonly name: "Christmas Island";
|
|
791
|
+
readonly dialCode: "+61";
|
|
792
|
+
readonly code: "CX";
|
|
793
|
+
readonly emoji: "🇨🇽";
|
|
794
|
+
} | {
|
|
795
|
+
readonly name: "Cocos [Keeling] Islands";
|
|
796
|
+
readonly dialCode: "+61";
|
|
797
|
+
readonly code: "CC";
|
|
798
|
+
readonly emoji: "🇨🇨";
|
|
799
|
+
} | {
|
|
800
|
+
readonly name: "Colombia";
|
|
801
|
+
readonly dialCode: "+57";
|
|
802
|
+
readonly code: "CO";
|
|
803
|
+
readonly emoji: "🇨🇴";
|
|
804
|
+
} | {
|
|
805
|
+
readonly name: "Comoros";
|
|
806
|
+
readonly dialCode: "+269";
|
|
807
|
+
readonly code: "KM";
|
|
808
|
+
readonly emoji: "🇰🇲";
|
|
809
|
+
} | {
|
|
810
|
+
readonly name: "Democratic Republic Congo";
|
|
811
|
+
readonly dialCode: "+243";
|
|
812
|
+
readonly code: "CD";
|
|
813
|
+
readonly emoji: "🇨🇩";
|
|
814
|
+
} | {
|
|
815
|
+
readonly name: "Republic of Congo";
|
|
816
|
+
readonly dialCode: "+242";
|
|
817
|
+
readonly code: "CG";
|
|
818
|
+
readonly emoji: "🇨🇬";
|
|
819
|
+
} | {
|
|
820
|
+
readonly name: "Cook Islands";
|
|
821
|
+
readonly dialCode: "+682";
|
|
822
|
+
readonly code: "CK";
|
|
823
|
+
readonly emoji: "🇨🇰";
|
|
824
|
+
} | {
|
|
825
|
+
readonly name: "Costa Rica";
|
|
826
|
+
readonly dialCode: "+506";
|
|
827
|
+
readonly code: "CR";
|
|
828
|
+
readonly emoji: "🇨🇷";
|
|
829
|
+
} | {
|
|
830
|
+
readonly name: "Côte d'Ivoire";
|
|
831
|
+
readonly dialCode: "+225";
|
|
832
|
+
readonly code: "CI";
|
|
833
|
+
readonly emoji: "🇨🇮";
|
|
834
|
+
} | {
|
|
835
|
+
readonly name: "Croatia";
|
|
836
|
+
readonly dialCode: "+385";
|
|
837
|
+
readonly code: "HR";
|
|
838
|
+
readonly emoji: "🇭🇷";
|
|
839
|
+
} | {
|
|
840
|
+
readonly name: "Cuba";
|
|
841
|
+
readonly dialCode: "+53";
|
|
842
|
+
readonly code: "CU";
|
|
843
|
+
readonly emoji: "🇨🇺";
|
|
844
|
+
} | {
|
|
845
|
+
readonly name: "Curaçao";
|
|
846
|
+
readonly dialCode: "+599";
|
|
847
|
+
readonly code: "CW";
|
|
848
|
+
readonly emoji: "🇨🇼";
|
|
849
|
+
} | {
|
|
850
|
+
readonly name: "Cyprus";
|
|
851
|
+
readonly dialCode: "+357";
|
|
852
|
+
readonly code: "CY";
|
|
853
|
+
readonly emoji: "🇨🇾";
|
|
854
|
+
} | {
|
|
855
|
+
readonly name: "Czech Republic";
|
|
856
|
+
readonly dialCode: "+420";
|
|
857
|
+
readonly code: "CZ";
|
|
858
|
+
readonly emoji: "🇨🇿";
|
|
859
|
+
} | {
|
|
860
|
+
readonly name: "Denmark";
|
|
861
|
+
readonly dialCode: "+45";
|
|
862
|
+
readonly code: "DK";
|
|
863
|
+
readonly emoji: "🇩🇰";
|
|
864
|
+
} | {
|
|
865
|
+
readonly name: "Djibouti";
|
|
866
|
+
readonly dialCode: "+253";
|
|
867
|
+
readonly code: "DJ";
|
|
868
|
+
readonly emoji: "🇩🇯";
|
|
869
|
+
} | {
|
|
870
|
+
readonly name: "Dominica";
|
|
871
|
+
readonly dialCode: "+1";
|
|
872
|
+
readonly code: "DM";
|
|
873
|
+
readonly emoji: "🇩🇲";
|
|
874
|
+
} | {
|
|
875
|
+
readonly name: "Dominican Republic";
|
|
876
|
+
readonly dialCode: "+1";
|
|
877
|
+
readonly code: "DO";
|
|
878
|
+
readonly emoji: "🇩🇴";
|
|
879
|
+
} | {
|
|
880
|
+
readonly name: "East Timor";
|
|
881
|
+
readonly dialCode: "+670";
|
|
882
|
+
readonly code: "TL";
|
|
883
|
+
readonly emoji: "🇹🇱";
|
|
884
|
+
} | {
|
|
885
|
+
readonly name: "Ecuador";
|
|
886
|
+
readonly dialCode: "+593";
|
|
887
|
+
readonly code: "EC";
|
|
888
|
+
readonly emoji: "🇪🇨";
|
|
889
|
+
} | {
|
|
890
|
+
readonly name: "Egypt";
|
|
891
|
+
readonly dialCode: "+20";
|
|
892
|
+
readonly code: "EG";
|
|
893
|
+
readonly emoji: "🇪🇬";
|
|
894
|
+
} | {
|
|
895
|
+
readonly name: "El Salvador";
|
|
896
|
+
readonly dialCode: "+503";
|
|
897
|
+
readonly code: "SV";
|
|
898
|
+
readonly emoji: "🇸🇻";
|
|
899
|
+
} | {
|
|
900
|
+
readonly name: "Equatorial Guinea";
|
|
901
|
+
readonly dialCode: "+240";
|
|
902
|
+
readonly code: "GQ";
|
|
903
|
+
readonly emoji: "🇬🇶";
|
|
904
|
+
} | {
|
|
905
|
+
readonly name: "Eritrea";
|
|
906
|
+
readonly dialCode: "+291";
|
|
907
|
+
readonly code: "ER";
|
|
908
|
+
readonly emoji: "🇪🇷";
|
|
909
|
+
} | {
|
|
910
|
+
readonly name: "Estonia";
|
|
911
|
+
readonly dialCode: "+372";
|
|
912
|
+
readonly code: "EE";
|
|
913
|
+
readonly emoji: "🇪🇪";
|
|
914
|
+
} | {
|
|
915
|
+
readonly name: "Ethiopia";
|
|
916
|
+
readonly dialCode: "+251";
|
|
917
|
+
readonly code: "ET";
|
|
918
|
+
readonly emoji: "🇪🇹";
|
|
919
|
+
} | {
|
|
920
|
+
readonly name: "Falkland Islands [Islas Malvinas]";
|
|
921
|
+
readonly dialCode: "+500";
|
|
922
|
+
readonly code: "FK";
|
|
923
|
+
readonly emoji: "🇫🇰";
|
|
924
|
+
} | {
|
|
925
|
+
readonly name: "Faroe Islands";
|
|
926
|
+
readonly dialCode: "+298";
|
|
927
|
+
readonly code: "FO";
|
|
928
|
+
readonly emoji: "🇫🇴";
|
|
929
|
+
} | {
|
|
930
|
+
readonly name: "Fiji";
|
|
931
|
+
readonly dialCode: "+679";
|
|
932
|
+
readonly code: "FJ";
|
|
933
|
+
readonly emoji: "🇫🇯";
|
|
934
|
+
} | {
|
|
935
|
+
readonly name: "Finland";
|
|
936
|
+
readonly dialCode: "+358";
|
|
937
|
+
readonly code: "FI";
|
|
938
|
+
readonly emoji: "🇫🇮";
|
|
939
|
+
} | {
|
|
940
|
+
readonly name: "France";
|
|
941
|
+
readonly dialCode: "+33";
|
|
942
|
+
readonly code: "FR";
|
|
943
|
+
readonly emoji: "🇫🇷";
|
|
944
|
+
} | {
|
|
945
|
+
readonly name: "French Guiana";
|
|
946
|
+
readonly dialCode: "+594";
|
|
947
|
+
readonly code: "GF";
|
|
948
|
+
readonly emoji: "🇬🇫";
|
|
949
|
+
} | {
|
|
950
|
+
readonly name: "French Polynesia";
|
|
951
|
+
readonly dialCode: "+689";
|
|
952
|
+
readonly code: "PF";
|
|
953
|
+
readonly emoji: "🇵🇫";
|
|
954
|
+
} | {
|
|
955
|
+
readonly name: "Gabon";
|
|
956
|
+
readonly dialCode: "+241";
|
|
957
|
+
readonly code: "GA";
|
|
958
|
+
readonly emoji: "🇬🇦";
|
|
959
|
+
} | {
|
|
960
|
+
readonly name: "Gambia";
|
|
961
|
+
readonly dialCode: "+220";
|
|
962
|
+
readonly code: "GM";
|
|
963
|
+
readonly emoji: "🇬🇲";
|
|
964
|
+
} | {
|
|
965
|
+
readonly name: "Georgia";
|
|
966
|
+
readonly dialCode: "+995";
|
|
967
|
+
readonly code: "GE";
|
|
968
|
+
readonly emoji: "🇬🇪";
|
|
969
|
+
} | {
|
|
970
|
+
readonly name: "Germany";
|
|
971
|
+
readonly dialCode: "+49";
|
|
972
|
+
readonly code: "DE";
|
|
973
|
+
readonly emoji: "🇩🇪";
|
|
974
|
+
} | {
|
|
975
|
+
readonly name: "Ghana";
|
|
976
|
+
readonly dialCode: "+233";
|
|
977
|
+
readonly code: "GH";
|
|
978
|
+
readonly emoji: "🇬🇭";
|
|
979
|
+
} | {
|
|
980
|
+
readonly name: "Gibraltar";
|
|
981
|
+
readonly dialCode: "+350";
|
|
982
|
+
readonly code: "GI";
|
|
983
|
+
readonly emoji: "🇬🇮";
|
|
984
|
+
} | {
|
|
985
|
+
readonly name: "Greece";
|
|
986
|
+
readonly dialCode: "+30";
|
|
987
|
+
readonly code: "GR";
|
|
988
|
+
readonly emoji: "🇬🇷";
|
|
989
|
+
} | {
|
|
990
|
+
readonly name: "Greenland";
|
|
991
|
+
readonly dialCode: "+299";
|
|
992
|
+
readonly code: "GL";
|
|
993
|
+
readonly emoji: "🇬🇱";
|
|
994
|
+
} | {
|
|
995
|
+
readonly name: "Grenada";
|
|
996
|
+
readonly dialCode: "+1";
|
|
997
|
+
readonly code: "GD";
|
|
998
|
+
readonly emoji: "🇬🇩";
|
|
999
|
+
} | {
|
|
1000
|
+
readonly name: "Guadeloupe";
|
|
1001
|
+
readonly dialCode: "+590";
|
|
1002
|
+
readonly code: "GP";
|
|
1003
|
+
readonly emoji: "🇬🇵";
|
|
1004
|
+
} | {
|
|
1005
|
+
readonly name: "Guam";
|
|
1006
|
+
readonly dialCode: "+1";
|
|
1007
|
+
readonly code: "GU";
|
|
1008
|
+
readonly emoji: "🇬🇺";
|
|
1009
|
+
} | {
|
|
1010
|
+
readonly name: "Guatemala";
|
|
1011
|
+
readonly dialCode: "+502";
|
|
1012
|
+
readonly code: "GT";
|
|
1013
|
+
readonly emoji: "🇬🇹";
|
|
1014
|
+
} | {
|
|
1015
|
+
readonly name: "Guernsey";
|
|
1016
|
+
readonly dialCode: "+44";
|
|
1017
|
+
readonly code: "GG";
|
|
1018
|
+
readonly emoji: "🇬🇬";
|
|
1019
|
+
} | {
|
|
1020
|
+
readonly name: "Guinea Conakry";
|
|
1021
|
+
readonly dialCode: "+224";
|
|
1022
|
+
readonly code: "GN";
|
|
1023
|
+
readonly emoji: "🇬🇳";
|
|
1024
|
+
} | {
|
|
1025
|
+
readonly name: "Guinea-Bissau";
|
|
1026
|
+
readonly dialCode: "+245";
|
|
1027
|
+
readonly code: "GW";
|
|
1028
|
+
readonly emoji: "🇬🇼";
|
|
1029
|
+
} | {
|
|
1030
|
+
readonly name: "Guyana";
|
|
1031
|
+
readonly dialCode: "+592";
|
|
1032
|
+
readonly code: "GY";
|
|
1033
|
+
readonly emoji: "🇬🇾";
|
|
1034
|
+
} | {
|
|
1035
|
+
readonly name: "Haiti";
|
|
1036
|
+
readonly dialCode: "+509";
|
|
1037
|
+
readonly code: "HT";
|
|
1038
|
+
readonly emoji: "🇭🇹";
|
|
1039
|
+
} | {
|
|
1040
|
+
readonly name: "Honduras";
|
|
1041
|
+
readonly dialCode: "+504";
|
|
1042
|
+
readonly code: "HN";
|
|
1043
|
+
readonly emoji: "🇭🇳";
|
|
1044
|
+
} | {
|
|
1045
|
+
readonly name: "Hong Kong";
|
|
1046
|
+
readonly dialCode: "+852";
|
|
1047
|
+
readonly code: "HK";
|
|
1048
|
+
readonly emoji: "🇭🇰";
|
|
1049
|
+
} | {
|
|
1050
|
+
readonly name: "Hungary";
|
|
1051
|
+
readonly dialCode: "+36";
|
|
1052
|
+
readonly code: "HU";
|
|
1053
|
+
readonly emoji: "🇭🇺";
|
|
1054
|
+
} | {
|
|
1055
|
+
readonly name: "Iceland";
|
|
1056
|
+
readonly dialCode: "+354";
|
|
1057
|
+
readonly code: "IS";
|
|
1058
|
+
readonly emoji: "🇮🇸";
|
|
1059
|
+
} | {
|
|
1060
|
+
readonly name: "India";
|
|
1061
|
+
readonly dialCode: "+91";
|
|
1062
|
+
readonly code: "IN";
|
|
1063
|
+
readonly emoji: "🇮🇳";
|
|
1064
|
+
} | {
|
|
1065
|
+
readonly name: "Indonesia";
|
|
1066
|
+
readonly dialCode: "+62";
|
|
1067
|
+
readonly code: "ID";
|
|
1068
|
+
readonly emoji: "🇮🇩";
|
|
1069
|
+
} | {
|
|
1070
|
+
readonly name: "Iran";
|
|
1071
|
+
readonly dialCode: "+98";
|
|
1072
|
+
readonly code: "IR";
|
|
1073
|
+
readonly emoji: "🇮🇷";
|
|
1074
|
+
} | {
|
|
1075
|
+
readonly name: "Iraq";
|
|
1076
|
+
readonly dialCode: "+964";
|
|
1077
|
+
readonly code: "IQ";
|
|
1078
|
+
readonly emoji: "🇮🇶";
|
|
1079
|
+
} | {
|
|
1080
|
+
readonly name: "Ireland";
|
|
1081
|
+
readonly dialCode: "+353";
|
|
1082
|
+
readonly code: "IE";
|
|
1083
|
+
readonly emoji: "🇮🇪";
|
|
1084
|
+
} | {
|
|
1085
|
+
readonly name: "Isle of Man";
|
|
1086
|
+
readonly dialCode: "+44";
|
|
1087
|
+
readonly code: "IM";
|
|
1088
|
+
readonly emoji: "🇮🇲";
|
|
1089
|
+
} | {
|
|
1090
|
+
readonly name: "Israel";
|
|
1091
|
+
readonly dialCode: "+972";
|
|
1092
|
+
readonly code: "IL";
|
|
1093
|
+
readonly emoji: "🇮🇱";
|
|
1094
|
+
} | {
|
|
1095
|
+
readonly name: "Italy";
|
|
1096
|
+
readonly dialCode: "+39";
|
|
1097
|
+
readonly code: "IT";
|
|
1098
|
+
readonly emoji: "🇮🇹";
|
|
1099
|
+
} | {
|
|
1100
|
+
readonly name: "Jamaica";
|
|
1101
|
+
readonly dialCode: "+1";
|
|
1102
|
+
readonly code: "JM";
|
|
1103
|
+
readonly emoji: "🇯🇲";
|
|
1104
|
+
} | {
|
|
1105
|
+
readonly name: "Japan";
|
|
1106
|
+
readonly dialCode: "+81";
|
|
1107
|
+
readonly code: "JP";
|
|
1108
|
+
readonly emoji: "🇯🇵";
|
|
1109
|
+
} | {
|
|
1110
|
+
readonly name: "Jersey";
|
|
1111
|
+
readonly dialCode: "+44";
|
|
1112
|
+
readonly code: "JE";
|
|
1113
|
+
readonly emoji: "🇯🇪";
|
|
1114
|
+
} | {
|
|
1115
|
+
readonly name: "Jordan";
|
|
1116
|
+
readonly dialCode: "+962";
|
|
1117
|
+
readonly code: "JO";
|
|
1118
|
+
readonly emoji: "🇯🇴";
|
|
1119
|
+
} | {
|
|
1120
|
+
readonly name: "Kazakhstan";
|
|
1121
|
+
readonly dialCode: "+7";
|
|
1122
|
+
readonly code: "KZ";
|
|
1123
|
+
readonly emoji: "🇰🇿";
|
|
1124
|
+
} | {
|
|
1125
|
+
readonly name: "Kenya";
|
|
1126
|
+
readonly dialCode: "+254";
|
|
1127
|
+
readonly code: "KE";
|
|
1128
|
+
readonly emoji: "🇰🇪";
|
|
1129
|
+
} | {
|
|
1130
|
+
readonly name: "Kiribati";
|
|
1131
|
+
readonly dialCode: "+686";
|
|
1132
|
+
readonly code: "KI";
|
|
1133
|
+
readonly emoji: "🇰🇮";
|
|
1134
|
+
} | {
|
|
1135
|
+
readonly name: "Kosovo";
|
|
1136
|
+
readonly dialCode: "+377";
|
|
1137
|
+
readonly code: "XK";
|
|
1138
|
+
readonly emoji: "🇽🇰";
|
|
1139
|
+
} | {
|
|
1140
|
+
readonly name: "Kosovo";
|
|
1141
|
+
readonly dialCode: "+381";
|
|
1142
|
+
readonly code: "XK";
|
|
1143
|
+
readonly emoji: "🇽🇰";
|
|
1144
|
+
} | {
|
|
1145
|
+
readonly name: "Kosovo";
|
|
1146
|
+
readonly dialCode: "+386";
|
|
1147
|
+
readonly code: "XK";
|
|
1148
|
+
readonly emoji: "🇽🇰";
|
|
1149
|
+
} | {
|
|
1150
|
+
readonly name: "Kuwait";
|
|
1151
|
+
readonly dialCode: "+965";
|
|
1152
|
+
readonly code: "KW";
|
|
1153
|
+
readonly emoji: "🇰🇼";
|
|
1154
|
+
} | {
|
|
1155
|
+
readonly name: "Kyrgyzstan";
|
|
1156
|
+
readonly dialCode: "+996";
|
|
1157
|
+
readonly code: "KG";
|
|
1158
|
+
readonly emoji: "🇰🇬";
|
|
1159
|
+
} | {
|
|
1160
|
+
readonly name: "Laos";
|
|
1161
|
+
readonly dialCode: "+856";
|
|
1162
|
+
readonly code: "LA";
|
|
1163
|
+
readonly emoji: "🇱🇦";
|
|
1164
|
+
} | {
|
|
1165
|
+
readonly name: "Latvia";
|
|
1166
|
+
readonly dialCode: "+371";
|
|
1167
|
+
readonly code: "LV";
|
|
1168
|
+
readonly emoji: "🇱🇻";
|
|
1169
|
+
} | {
|
|
1170
|
+
readonly name: "Lebanon";
|
|
1171
|
+
readonly dialCode: "+961";
|
|
1172
|
+
readonly code: "LB";
|
|
1173
|
+
readonly emoji: "🇱🇧";
|
|
1174
|
+
} | {
|
|
1175
|
+
readonly name: "Lesotho";
|
|
1176
|
+
readonly dialCode: "+266";
|
|
1177
|
+
readonly code: "LS";
|
|
1178
|
+
readonly emoji: "🇱🇸";
|
|
1179
|
+
} | {
|
|
1180
|
+
readonly name: "Liberia";
|
|
1181
|
+
readonly dialCode: "+231";
|
|
1182
|
+
readonly code: "LR";
|
|
1183
|
+
readonly emoji: "🇱🇷";
|
|
1184
|
+
} | {
|
|
1185
|
+
readonly name: "Libya";
|
|
1186
|
+
readonly dialCode: "+218";
|
|
1187
|
+
readonly code: "LY";
|
|
1188
|
+
readonly emoji: "🇱🇾";
|
|
1189
|
+
} | {
|
|
1190
|
+
readonly name: "Liechtenstein";
|
|
1191
|
+
readonly dialCode: "+423";
|
|
1192
|
+
readonly code: "LI";
|
|
1193
|
+
readonly emoji: "🇱🇮";
|
|
1194
|
+
} | {
|
|
1195
|
+
readonly name: "Lithuania";
|
|
1196
|
+
readonly dialCode: "+370";
|
|
1197
|
+
readonly code: "LT";
|
|
1198
|
+
readonly emoji: "🇱🇹";
|
|
1199
|
+
} | {
|
|
1200
|
+
readonly name: "Luxembourg";
|
|
1201
|
+
readonly dialCode: "+352";
|
|
1202
|
+
readonly code: "LU";
|
|
1203
|
+
readonly emoji: "🇱🇺";
|
|
1204
|
+
} | {
|
|
1205
|
+
readonly name: "Macau";
|
|
1206
|
+
readonly dialCode: "+853";
|
|
1207
|
+
readonly code: "MO";
|
|
1208
|
+
readonly emoji: "🇲🇴";
|
|
1209
|
+
} | {
|
|
1210
|
+
readonly name: "Macedonia";
|
|
1211
|
+
readonly dialCode: "+389";
|
|
1212
|
+
readonly code: "MK";
|
|
1213
|
+
readonly emoji: "🇲🇰";
|
|
1214
|
+
} | {
|
|
1215
|
+
readonly name: "Madagascar";
|
|
1216
|
+
readonly dialCode: "+261";
|
|
1217
|
+
readonly code: "MG";
|
|
1218
|
+
readonly emoji: "🇲🇬";
|
|
1219
|
+
} | {
|
|
1220
|
+
readonly name: "Malawi";
|
|
1221
|
+
readonly dialCode: "+265";
|
|
1222
|
+
readonly code: "MW";
|
|
1223
|
+
readonly emoji: "🇲🇼";
|
|
1224
|
+
} | {
|
|
1225
|
+
readonly name: "Malaysia";
|
|
1226
|
+
readonly dialCode: "+60";
|
|
1227
|
+
readonly code: "MY";
|
|
1228
|
+
readonly emoji: "🇲🇾";
|
|
1229
|
+
} | {
|
|
1230
|
+
readonly name: "Maldives";
|
|
1231
|
+
readonly dialCode: "+960";
|
|
1232
|
+
readonly code: "MV";
|
|
1233
|
+
readonly emoji: "🇲🇻";
|
|
1234
|
+
} | {
|
|
1235
|
+
readonly name: "Mali";
|
|
1236
|
+
readonly dialCode: "+223";
|
|
1237
|
+
readonly code: "ML";
|
|
1238
|
+
readonly emoji: "🇲🇱";
|
|
1239
|
+
} | {
|
|
1240
|
+
readonly name: "Malta";
|
|
1241
|
+
readonly dialCode: "+356";
|
|
1242
|
+
readonly code: "MT";
|
|
1243
|
+
readonly emoji: "🇲🇹";
|
|
1244
|
+
} | {
|
|
1245
|
+
readonly name: "Marshall Islands";
|
|
1246
|
+
readonly dialCode: "+692";
|
|
1247
|
+
readonly code: "MH";
|
|
1248
|
+
readonly emoji: "🇲🇭";
|
|
1249
|
+
} | {
|
|
1250
|
+
readonly name: "Martinique";
|
|
1251
|
+
readonly dialCode: "+596";
|
|
1252
|
+
readonly code: "MQ";
|
|
1253
|
+
readonly emoji: "🇲🇶";
|
|
1254
|
+
} | {
|
|
1255
|
+
readonly name: "Mauritania";
|
|
1256
|
+
readonly dialCode: "+222";
|
|
1257
|
+
readonly code: "MR";
|
|
1258
|
+
readonly emoji: "🇲🇷";
|
|
1259
|
+
} | {
|
|
1260
|
+
readonly name: "Mauritius";
|
|
1261
|
+
readonly dialCode: "+230";
|
|
1262
|
+
readonly code: "MU";
|
|
1263
|
+
readonly emoji: "🇲🇺";
|
|
1264
|
+
} | {
|
|
1265
|
+
readonly name: "Mayotte";
|
|
1266
|
+
readonly dialCode: "+262";
|
|
1267
|
+
readonly code: "YT";
|
|
1268
|
+
readonly emoji: "🇾🇹";
|
|
1269
|
+
} | {
|
|
1270
|
+
readonly name: "Mexico";
|
|
1271
|
+
readonly dialCode: "+52";
|
|
1272
|
+
readonly code: "MX";
|
|
1273
|
+
readonly emoji: "🇲🇽";
|
|
1274
|
+
} | {
|
|
1275
|
+
readonly name: "Micronesia";
|
|
1276
|
+
readonly dialCode: "+691";
|
|
1277
|
+
readonly code: "FM";
|
|
1278
|
+
readonly emoji: "🇫🇲";
|
|
1279
|
+
} | {
|
|
1280
|
+
readonly name: "Moldova";
|
|
1281
|
+
readonly dialCode: "+373";
|
|
1282
|
+
readonly code: "MD";
|
|
1283
|
+
readonly emoji: "🇲🇩";
|
|
1284
|
+
} | {
|
|
1285
|
+
readonly name: "Monaco";
|
|
1286
|
+
readonly dialCode: "+377";
|
|
1287
|
+
readonly code: "MC";
|
|
1288
|
+
readonly emoji: "🇲🇨";
|
|
1289
|
+
} | {
|
|
1290
|
+
readonly name: "Mongolia";
|
|
1291
|
+
readonly dialCode: "+976";
|
|
1292
|
+
readonly code: "MN";
|
|
1293
|
+
readonly emoji: "🇲🇳";
|
|
1294
|
+
} | {
|
|
1295
|
+
readonly name: "Montenegro";
|
|
1296
|
+
readonly dialCode: "+382";
|
|
1297
|
+
readonly code: "ME";
|
|
1298
|
+
readonly emoji: "🇲🇪";
|
|
1299
|
+
} | {
|
|
1300
|
+
readonly name: "Montserrat";
|
|
1301
|
+
readonly dialCode: "+1";
|
|
1302
|
+
readonly code: "MS";
|
|
1303
|
+
readonly emoji: "🇲🇸";
|
|
1304
|
+
} | {
|
|
1305
|
+
readonly name: "Morocco";
|
|
1306
|
+
readonly dialCode: "+212";
|
|
1307
|
+
readonly code: "MA";
|
|
1308
|
+
readonly emoji: "🇲🇦";
|
|
1309
|
+
} | {
|
|
1310
|
+
readonly name: "Mozambique";
|
|
1311
|
+
readonly dialCode: "+258";
|
|
1312
|
+
readonly code: "MZ";
|
|
1313
|
+
readonly emoji: "🇲🇿";
|
|
1314
|
+
} | {
|
|
1315
|
+
readonly name: "Myanmar [Burma]";
|
|
1316
|
+
readonly dialCode: "+95";
|
|
1317
|
+
readonly code: "MM";
|
|
1318
|
+
readonly emoji: "🇲🇲";
|
|
1319
|
+
} | {
|
|
1320
|
+
readonly name: "Namibia";
|
|
1321
|
+
readonly dialCode: "+264";
|
|
1322
|
+
readonly code: "NA";
|
|
1323
|
+
readonly emoji: "🇳🇦";
|
|
1324
|
+
} | {
|
|
1325
|
+
readonly name: "Nauru";
|
|
1326
|
+
readonly dialCode: "+674";
|
|
1327
|
+
readonly code: "NR";
|
|
1328
|
+
readonly emoji: "🇳🇷";
|
|
1329
|
+
} | {
|
|
1330
|
+
readonly name: "Nepal";
|
|
1331
|
+
readonly dialCode: "+977";
|
|
1332
|
+
readonly code: "NP";
|
|
1333
|
+
readonly emoji: "🇳🇵";
|
|
1334
|
+
} | {
|
|
1335
|
+
readonly name: "Netherlands";
|
|
1336
|
+
readonly dialCode: "+31";
|
|
1337
|
+
readonly code: "NL";
|
|
1338
|
+
readonly emoji: "🇳🇱";
|
|
1339
|
+
} | {
|
|
1340
|
+
readonly name: "New Caledonia";
|
|
1341
|
+
readonly dialCode: "+687";
|
|
1342
|
+
readonly code: "NC";
|
|
1343
|
+
readonly emoji: "🇳🇨";
|
|
1344
|
+
} | {
|
|
1345
|
+
readonly name: "New Zealand";
|
|
1346
|
+
readonly dialCode: "+64";
|
|
1347
|
+
readonly code: "NZ";
|
|
1348
|
+
readonly emoji: "🇳🇿";
|
|
1349
|
+
} | {
|
|
1350
|
+
readonly name: "Nicaragua";
|
|
1351
|
+
readonly dialCode: "+505";
|
|
1352
|
+
readonly code: "NI";
|
|
1353
|
+
readonly emoji: "🇳🇮";
|
|
1354
|
+
} | {
|
|
1355
|
+
readonly name: "Niger";
|
|
1356
|
+
readonly dialCode: "+227";
|
|
1357
|
+
readonly code: "NE";
|
|
1358
|
+
readonly emoji: "🇳🇪";
|
|
1359
|
+
} | {
|
|
1360
|
+
readonly name: "Nigeria";
|
|
1361
|
+
readonly dialCode: "+234";
|
|
1362
|
+
readonly code: "NG";
|
|
1363
|
+
readonly emoji: "🇳🇬";
|
|
1364
|
+
} | {
|
|
1365
|
+
readonly name: "Niue";
|
|
1366
|
+
readonly dialCode: "+683";
|
|
1367
|
+
readonly code: "NU";
|
|
1368
|
+
readonly emoji: "🇳🇺";
|
|
1369
|
+
} | {
|
|
1370
|
+
readonly name: "Norfolk Island";
|
|
1371
|
+
readonly dialCode: "+672";
|
|
1372
|
+
readonly code: "NF";
|
|
1373
|
+
readonly emoji: "🇳🇫";
|
|
1374
|
+
} | {
|
|
1375
|
+
readonly name: "North Korea";
|
|
1376
|
+
readonly dialCode: "+850";
|
|
1377
|
+
readonly code: "KP";
|
|
1378
|
+
readonly emoji: "🇰🇵";
|
|
1379
|
+
} | {
|
|
1380
|
+
readonly name: "Northern Mariana Islands";
|
|
1381
|
+
readonly dialCode: "+1";
|
|
1382
|
+
readonly code: "MP";
|
|
1383
|
+
readonly emoji: "🇲🇵";
|
|
1384
|
+
} | {
|
|
1385
|
+
readonly name: "Norway";
|
|
1386
|
+
readonly dialCode: "+47";
|
|
1387
|
+
readonly code: "NO";
|
|
1388
|
+
readonly emoji: "🇳🇴";
|
|
1389
|
+
} | {
|
|
1390
|
+
readonly name: "Oman";
|
|
1391
|
+
readonly dialCode: "+968";
|
|
1392
|
+
readonly code: "OM";
|
|
1393
|
+
readonly emoji: "🇴🇲";
|
|
1394
|
+
} | {
|
|
1395
|
+
readonly name: "Pakistan";
|
|
1396
|
+
readonly dialCode: "+92";
|
|
1397
|
+
readonly code: "PK";
|
|
1398
|
+
readonly emoji: "🇵🇰";
|
|
1399
|
+
} | {
|
|
1400
|
+
readonly name: "Palau";
|
|
1401
|
+
readonly dialCode: "+680";
|
|
1402
|
+
readonly code: "PW";
|
|
1403
|
+
readonly emoji: "🇵🇼";
|
|
1404
|
+
} | {
|
|
1405
|
+
readonly name: "Palestinian Territories";
|
|
1406
|
+
readonly dialCode: "+970";
|
|
1407
|
+
readonly code: "PS";
|
|
1408
|
+
readonly emoji: "🇵🇸";
|
|
1409
|
+
} | {
|
|
1410
|
+
readonly name: "Panama";
|
|
1411
|
+
readonly dialCode: "+507";
|
|
1412
|
+
readonly code: "PA";
|
|
1413
|
+
readonly emoji: "🇵🇦";
|
|
1414
|
+
} | {
|
|
1415
|
+
readonly name: "Papua New Guinea";
|
|
1416
|
+
readonly dialCode: "+675";
|
|
1417
|
+
readonly code: "PG";
|
|
1418
|
+
readonly emoji: "🇵🇬";
|
|
1419
|
+
} | {
|
|
1420
|
+
readonly name: "Paraguay";
|
|
1421
|
+
readonly dialCode: "+595";
|
|
1422
|
+
readonly code: "PY";
|
|
1423
|
+
readonly emoji: "🇵🇾";
|
|
1424
|
+
} | {
|
|
1425
|
+
readonly name: "Peru";
|
|
1426
|
+
readonly dialCode: "+51";
|
|
1427
|
+
readonly code: "PE";
|
|
1428
|
+
readonly emoji: "🇵🇪";
|
|
1429
|
+
} | {
|
|
1430
|
+
readonly name: "Philippines";
|
|
1431
|
+
readonly dialCode: "+63";
|
|
1432
|
+
readonly code: "PH";
|
|
1433
|
+
readonly emoji: "🇵🇭";
|
|
1434
|
+
} | {
|
|
1435
|
+
readonly name: "Poland";
|
|
1436
|
+
readonly dialCode: "+48";
|
|
1437
|
+
readonly code: "PL";
|
|
1438
|
+
readonly emoji: "🇵🇱";
|
|
1439
|
+
} | {
|
|
1440
|
+
readonly name: "Portugal";
|
|
1441
|
+
readonly dialCode: "+351";
|
|
1442
|
+
readonly code: "PT";
|
|
1443
|
+
readonly emoji: "🇵🇹";
|
|
1444
|
+
} | {
|
|
1445
|
+
readonly name: "Puerto Rico";
|
|
1446
|
+
readonly dialCode: "+1";
|
|
1447
|
+
readonly code: "PR";
|
|
1448
|
+
readonly emoji: "🇵🇷";
|
|
1449
|
+
} | {
|
|
1450
|
+
readonly name: "Qatar";
|
|
1451
|
+
readonly dialCode: "+974";
|
|
1452
|
+
readonly code: "QA";
|
|
1453
|
+
readonly emoji: "🇶🇦";
|
|
1454
|
+
} | {
|
|
1455
|
+
readonly name: "Réunion";
|
|
1456
|
+
readonly dialCode: "+262";
|
|
1457
|
+
readonly code: "RE";
|
|
1458
|
+
readonly emoji: "🇷🇪";
|
|
1459
|
+
} | {
|
|
1460
|
+
readonly name: "Romania";
|
|
1461
|
+
readonly dialCode: "+40";
|
|
1462
|
+
readonly code: "RO";
|
|
1463
|
+
readonly emoji: "🇷🇴";
|
|
1464
|
+
} | {
|
|
1465
|
+
readonly name: "Russia";
|
|
1466
|
+
readonly dialCode: "+7";
|
|
1467
|
+
readonly code: "RU";
|
|
1468
|
+
readonly emoji: "🇷🇺";
|
|
1469
|
+
} | {
|
|
1470
|
+
readonly name: "Rwanda";
|
|
1471
|
+
readonly dialCode: "+250";
|
|
1472
|
+
readonly code: "RW";
|
|
1473
|
+
readonly emoji: "🇷🇼";
|
|
1474
|
+
} | {
|
|
1475
|
+
readonly name: "Saint Barthélemy";
|
|
1476
|
+
readonly dialCode: "+590";
|
|
1477
|
+
readonly code: "BL";
|
|
1478
|
+
readonly emoji: "🇧🇱";
|
|
1479
|
+
} | {
|
|
1480
|
+
readonly name: "Saint Helena";
|
|
1481
|
+
readonly dialCode: "+290";
|
|
1482
|
+
readonly code: "SH";
|
|
1483
|
+
readonly emoji: "🇸🇭";
|
|
1484
|
+
} | {
|
|
1485
|
+
readonly name: "St. Kitts";
|
|
1486
|
+
readonly dialCode: "+1";
|
|
1487
|
+
readonly code: "KN";
|
|
1488
|
+
readonly emoji: "🇰🇳";
|
|
1489
|
+
} | {
|
|
1490
|
+
readonly name: "St. Lucia";
|
|
1491
|
+
readonly dialCode: "+1";
|
|
1492
|
+
readonly code: "LC";
|
|
1493
|
+
readonly emoji: "🇱🇨";
|
|
1494
|
+
} | {
|
|
1495
|
+
readonly name: "Saint Martin";
|
|
1496
|
+
readonly dialCode: "+590";
|
|
1497
|
+
readonly code: "MF";
|
|
1498
|
+
readonly emoji: "🇲🇫";
|
|
1499
|
+
} | {
|
|
1500
|
+
readonly name: "Saint Pierre and Miquelon";
|
|
1501
|
+
readonly dialCode: "+508";
|
|
1502
|
+
readonly code: "PM";
|
|
1503
|
+
readonly emoji: "🇵🇲";
|
|
1504
|
+
} | {
|
|
1505
|
+
readonly name: "St. Vincent";
|
|
1506
|
+
readonly dialCode: "+1";
|
|
1507
|
+
readonly code: "VC";
|
|
1508
|
+
readonly emoji: "🇻🇨";
|
|
1509
|
+
} | {
|
|
1510
|
+
readonly name: "Samoa";
|
|
1511
|
+
readonly dialCode: "+685";
|
|
1512
|
+
readonly code: "WS";
|
|
1513
|
+
readonly emoji: "🇼🇸";
|
|
1514
|
+
} | {
|
|
1515
|
+
readonly name: "San Marino";
|
|
1516
|
+
readonly dialCode: "+378";
|
|
1517
|
+
readonly code: "SM";
|
|
1518
|
+
readonly emoji: "🇸🇲";
|
|
1519
|
+
} | {
|
|
1520
|
+
readonly name: "São Tomé and Príncipe";
|
|
1521
|
+
readonly dialCode: "+239";
|
|
1522
|
+
readonly code: "ST";
|
|
1523
|
+
readonly emoji: "🇸🇹";
|
|
1524
|
+
} | {
|
|
1525
|
+
readonly name: "Saudi Arabia";
|
|
1526
|
+
readonly dialCode: "+966";
|
|
1527
|
+
readonly code: "SA";
|
|
1528
|
+
readonly emoji: "🇸🇦";
|
|
1529
|
+
} | {
|
|
1530
|
+
readonly name: "Senegal";
|
|
1531
|
+
readonly dialCode: "+221";
|
|
1532
|
+
readonly code: "SN";
|
|
1533
|
+
readonly emoji: "🇸🇳";
|
|
1534
|
+
} | {
|
|
1535
|
+
readonly name: "Serbia";
|
|
1536
|
+
readonly dialCode: "+381";
|
|
1537
|
+
readonly code: "RS";
|
|
1538
|
+
readonly emoji: "🇷🇸";
|
|
1539
|
+
} | {
|
|
1540
|
+
readonly name: "Seychelles";
|
|
1541
|
+
readonly dialCode: "+248";
|
|
1542
|
+
readonly code: "SC";
|
|
1543
|
+
readonly emoji: "🇸🇨";
|
|
1544
|
+
} | {
|
|
1545
|
+
readonly name: "Sierra Leone";
|
|
1546
|
+
readonly dialCode: "+232";
|
|
1547
|
+
readonly code: "SL";
|
|
1548
|
+
readonly emoji: "🇸🇱";
|
|
1549
|
+
} | {
|
|
1550
|
+
readonly name: "Singapore";
|
|
1551
|
+
readonly dialCode: "+65";
|
|
1552
|
+
readonly code: "SG";
|
|
1553
|
+
readonly emoji: "🇸🇬";
|
|
1554
|
+
} | {
|
|
1555
|
+
readonly name: "Sint Maarten";
|
|
1556
|
+
readonly dialCode: "+1";
|
|
1557
|
+
readonly code: "SX";
|
|
1558
|
+
readonly emoji: "🇸🇽";
|
|
1559
|
+
} | {
|
|
1560
|
+
readonly name: "Slovakia";
|
|
1561
|
+
readonly dialCode: "+421";
|
|
1562
|
+
readonly code: "SK";
|
|
1563
|
+
readonly emoji: "🇸🇰";
|
|
1564
|
+
} | {
|
|
1565
|
+
readonly name: "Slovenia";
|
|
1566
|
+
readonly dialCode: "+386";
|
|
1567
|
+
readonly code: "SI";
|
|
1568
|
+
readonly emoji: "🇸🇮";
|
|
1569
|
+
} | {
|
|
1570
|
+
readonly name: "Solomon Islands";
|
|
1571
|
+
readonly dialCode: "+677";
|
|
1572
|
+
readonly code: "SB";
|
|
1573
|
+
readonly emoji: "🇸🇧";
|
|
1574
|
+
} | {
|
|
1575
|
+
readonly name: "Somalia";
|
|
1576
|
+
readonly dialCode: "+252";
|
|
1577
|
+
readonly code: "SO";
|
|
1578
|
+
readonly emoji: "🇸🇴";
|
|
1579
|
+
} | {
|
|
1580
|
+
readonly name: "South Africa";
|
|
1581
|
+
readonly dialCode: "+27";
|
|
1582
|
+
readonly code: "ZA";
|
|
1583
|
+
readonly emoji: "🇿🇦";
|
|
1584
|
+
} | {
|
|
1585
|
+
readonly name: "South Korea";
|
|
1586
|
+
readonly dialCode: "+82";
|
|
1587
|
+
readonly code: "KR";
|
|
1588
|
+
readonly emoji: "🇰🇷";
|
|
1589
|
+
} | {
|
|
1590
|
+
readonly name: "South Sudan";
|
|
1591
|
+
readonly dialCode: "+211";
|
|
1592
|
+
readonly code: "SS";
|
|
1593
|
+
readonly emoji: "🇸🇸";
|
|
1594
|
+
} | {
|
|
1595
|
+
readonly name: "Spain";
|
|
1596
|
+
readonly dialCode: "+34";
|
|
1597
|
+
readonly code: "ES";
|
|
1598
|
+
readonly emoji: "🇪🇸";
|
|
1599
|
+
} | {
|
|
1600
|
+
readonly name: "Sri Lanka";
|
|
1601
|
+
readonly dialCode: "+94";
|
|
1602
|
+
readonly code: "LK";
|
|
1603
|
+
readonly emoji: "🇱🇰";
|
|
1604
|
+
} | {
|
|
1605
|
+
readonly name: "Sudan";
|
|
1606
|
+
readonly dialCode: "+249";
|
|
1607
|
+
readonly code: "SD";
|
|
1608
|
+
readonly emoji: "🇸🇩";
|
|
1609
|
+
} | {
|
|
1610
|
+
readonly name: "Suriname";
|
|
1611
|
+
readonly dialCode: "+597";
|
|
1612
|
+
readonly code: "SR";
|
|
1613
|
+
readonly emoji: "🇸🇷";
|
|
1614
|
+
} | {
|
|
1615
|
+
readonly name: "Svalbard and Jan Mayen";
|
|
1616
|
+
readonly dialCode: "+47";
|
|
1617
|
+
readonly code: "SJ";
|
|
1618
|
+
readonly emoji: "🇸🇯";
|
|
1619
|
+
} | {
|
|
1620
|
+
readonly name: "Swaziland";
|
|
1621
|
+
readonly dialCode: "+268";
|
|
1622
|
+
readonly code: "SZ";
|
|
1623
|
+
readonly emoji: "🇸🇿";
|
|
1624
|
+
} | {
|
|
1625
|
+
readonly name: "Sweden";
|
|
1626
|
+
readonly dialCode: "+46";
|
|
1627
|
+
readonly code: "SE";
|
|
1628
|
+
readonly emoji: "🇸🇪";
|
|
1629
|
+
} | {
|
|
1630
|
+
readonly name: "Switzerland";
|
|
1631
|
+
readonly dialCode: "+41";
|
|
1632
|
+
readonly code: "CH";
|
|
1633
|
+
readonly emoji: "🇨🇭";
|
|
1634
|
+
} | {
|
|
1635
|
+
readonly name: "Syria";
|
|
1636
|
+
readonly dialCode: "+963";
|
|
1637
|
+
readonly code: "SY";
|
|
1638
|
+
readonly emoji: "🇸🇾";
|
|
1639
|
+
} | {
|
|
1640
|
+
readonly name: "Taiwan";
|
|
1641
|
+
readonly dialCode: "+886";
|
|
1642
|
+
readonly code: "TW";
|
|
1643
|
+
readonly emoji: "🇹🇼";
|
|
1644
|
+
} | {
|
|
1645
|
+
readonly name: "Tajikistan";
|
|
1646
|
+
readonly dialCode: "+992";
|
|
1647
|
+
readonly code: "TJ";
|
|
1648
|
+
readonly emoji: "🇹🇯";
|
|
1649
|
+
} | {
|
|
1650
|
+
readonly name: "Tanzania";
|
|
1651
|
+
readonly dialCode: "+255";
|
|
1652
|
+
readonly code: "TZ";
|
|
1653
|
+
readonly emoji: "🇹🇿";
|
|
1654
|
+
} | {
|
|
1655
|
+
readonly name: "Thailand";
|
|
1656
|
+
readonly dialCode: "+66";
|
|
1657
|
+
readonly code: "TH";
|
|
1658
|
+
readonly emoji: "🇹🇭";
|
|
1659
|
+
} | {
|
|
1660
|
+
readonly name: "Togo";
|
|
1661
|
+
readonly dialCode: "+228";
|
|
1662
|
+
readonly code: "TG";
|
|
1663
|
+
readonly emoji: "🇹🇬";
|
|
1664
|
+
} | {
|
|
1665
|
+
readonly name: "Tokelau";
|
|
1666
|
+
readonly dialCode: "+690";
|
|
1667
|
+
readonly code: "TK";
|
|
1668
|
+
readonly emoji: "🇹🇰";
|
|
1669
|
+
} | {
|
|
1670
|
+
readonly name: "Tonga";
|
|
1671
|
+
readonly dialCode: "+676";
|
|
1672
|
+
readonly code: "TO";
|
|
1673
|
+
readonly emoji: "🇹🇴";
|
|
1674
|
+
} | {
|
|
1675
|
+
readonly name: "Trinidad/Tobago";
|
|
1676
|
+
readonly dialCode: "+1";
|
|
1677
|
+
readonly code: "TT";
|
|
1678
|
+
readonly emoji: "🇹🇹";
|
|
1679
|
+
} | {
|
|
1680
|
+
readonly name: "Tunisia";
|
|
1681
|
+
readonly dialCode: "+216";
|
|
1682
|
+
readonly code: "TN";
|
|
1683
|
+
readonly emoji: "🇹🇳";
|
|
1684
|
+
} | {
|
|
1685
|
+
readonly name: "Turkey";
|
|
1686
|
+
readonly dialCode: "+90";
|
|
1687
|
+
readonly code: "TR";
|
|
1688
|
+
readonly emoji: "🇹🇷";
|
|
1689
|
+
} | {
|
|
1690
|
+
readonly name: "Turkmenistan";
|
|
1691
|
+
readonly dialCode: "+993";
|
|
1692
|
+
readonly code: "TM";
|
|
1693
|
+
readonly emoji: "🇹🇲";
|
|
1694
|
+
} | {
|
|
1695
|
+
readonly name: "Turks and Caicos Islands";
|
|
1696
|
+
readonly dialCode: "+1";
|
|
1697
|
+
readonly code: "TC";
|
|
1698
|
+
readonly emoji: "🇹🇨";
|
|
1699
|
+
} | {
|
|
1700
|
+
readonly name: "Tuvalu";
|
|
1701
|
+
readonly dialCode: "+688";
|
|
1702
|
+
readonly code: "TV";
|
|
1703
|
+
readonly emoji: "🇹🇻";
|
|
1704
|
+
} | {
|
|
1705
|
+
readonly name: "U.S. Virgin Islands";
|
|
1706
|
+
readonly dialCode: "+1";
|
|
1707
|
+
readonly code: "VI";
|
|
1708
|
+
readonly emoji: "🇻🇮";
|
|
1709
|
+
} | {
|
|
1710
|
+
readonly name: "Uganda";
|
|
1711
|
+
readonly dialCode: "+256";
|
|
1712
|
+
readonly code: "UG";
|
|
1713
|
+
readonly emoji: "🇺🇬";
|
|
1714
|
+
} | {
|
|
1715
|
+
readonly name: "Ukraine";
|
|
1716
|
+
readonly dialCode: "+380";
|
|
1717
|
+
readonly code: "UA";
|
|
1718
|
+
readonly emoji: "🇺🇦";
|
|
1719
|
+
} | {
|
|
1720
|
+
readonly name: "United Arab Emirates";
|
|
1721
|
+
readonly dialCode: "+971";
|
|
1722
|
+
readonly code: "AE";
|
|
1723
|
+
readonly emoji: "🇦🇪";
|
|
1724
|
+
} | {
|
|
1725
|
+
readonly name: "United Kingdom";
|
|
1726
|
+
readonly dialCode: "+44";
|
|
1727
|
+
readonly code: "GB";
|
|
1728
|
+
readonly emoji: "🇬🇧";
|
|
1729
|
+
} | {
|
|
1730
|
+
readonly name: "United States";
|
|
1731
|
+
readonly dialCode: "+1";
|
|
1732
|
+
readonly code: "US";
|
|
1733
|
+
readonly emoji: "🇺🇸";
|
|
1734
|
+
} | {
|
|
1735
|
+
readonly name: "Uruguay";
|
|
1736
|
+
readonly dialCode: "+598";
|
|
1737
|
+
readonly code: "UY";
|
|
1738
|
+
readonly emoji: "🇺🇾";
|
|
1739
|
+
} | {
|
|
1740
|
+
readonly name: "Uzbekistan";
|
|
1741
|
+
readonly dialCode: "+998";
|
|
1742
|
+
readonly code: "UZ";
|
|
1743
|
+
readonly emoji: "🇺🇿";
|
|
1744
|
+
} | {
|
|
1745
|
+
readonly name: "Vanuatu";
|
|
1746
|
+
readonly dialCode: "+678";
|
|
1747
|
+
readonly code: "VU";
|
|
1748
|
+
readonly emoji: "🇻🇺";
|
|
1749
|
+
} | {
|
|
1750
|
+
readonly name: "Vatican City";
|
|
1751
|
+
readonly dialCode: "+379";
|
|
1752
|
+
readonly code: "VA";
|
|
1753
|
+
readonly emoji: "🇻🇦";
|
|
1754
|
+
} | {
|
|
1755
|
+
readonly name: "Venezuela";
|
|
1756
|
+
readonly dialCode: "+58";
|
|
1757
|
+
readonly code: "VE";
|
|
1758
|
+
readonly emoji: "🇻🇪";
|
|
1759
|
+
} | {
|
|
1760
|
+
readonly name: "Vietnam";
|
|
1761
|
+
readonly dialCode: "+84";
|
|
1762
|
+
readonly code: "VN";
|
|
1763
|
+
readonly emoji: "🇻🇳";
|
|
1764
|
+
} | {
|
|
1765
|
+
readonly name: "Wallis and Futuna";
|
|
1766
|
+
readonly dialCode: "+681";
|
|
1767
|
+
readonly code: "WF";
|
|
1768
|
+
readonly emoji: "🇼🇫";
|
|
1769
|
+
} | {
|
|
1770
|
+
readonly name: "Western Sahara";
|
|
1771
|
+
readonly dialCode: "+212";
|
|
1772
|
+
readonly code: "EH";
|
|
1773
|
+
readonly emoji: "🇪🇭";
|
|
1774
|
+
} | {
|
|
1775
|
+
readonly name: "Yemen";
|
|
1776
|
+
readonly dialCode: "+967";
|
|
1777
|
+
readonly code: "YE";
|
|
1778
|
+
readonly emoji: "🇾🇪";
|
|
1779
|
+
} | {
|
|
1780
|
+
readonly name: "Zambia";
|
|
1781
|
+
readonly dialCode: "+260";
|
|
1782
|
+
readonly code: "ZM";
|
|
1783
|
+
readonly emoji: "🇿🇲";
|
|
1784
|
+
} | {
|
|
1785
|
+
readonly name: "Zimbabwe";
|
|
1786
|
+
readonly dialCode: "+263";
|
|
1787
|
+
readonly code: "ZW";
|
|
1788
|
+
readonly emoji: "🇿🇼";
|
|
1789
|
+
} | {
|
|
1790
|
+
readonly name: "Åland Islands";
|
|
1791
|
+
readonly dialCode: "+358";
|
|
1792
|
+
readonly code: "AX";
|
|
1793
|
+
readonly emoji: "🇦🇽";
|
|
1794
|
+
})[];
|
|
1795
|
+
declare function useDefaultCountry(): {
|
|
1796
|
+
readonly name: "Afghanistan";
|
|
1797
|
+
readonly dialCode: "+93";
|
|
1798
|
+
readonly code: "AF";
|
|
1799
|
+
readonly emoji: "🇦🇫";
|
|
1800
|
+
} | {
|
|
1801
|
+
readonly name: "Albania";
|
|
1802
|
+
readonly dialCode: "+355";
|
|
1803
|
+
readonly code: "AL";
|
|
1804
|
+
readonly emoji: "🇦🇱";
|
|
1805
|
+
} | {
|
|
1806
|
+
readonly name: "Algeria";
|
|
1807
|
+
readonly dialCode: "+213";
|
|
1808
|
+
readonly code: "DZ";
|
|
1809
|
+
readonly emoji: "🇩🇿";
|
|
1810
|
+
} | {
|
|
1811
|
+
readonly name: "American Samoa";
|
|
1812
|
+
readonly dialCode: "+1";
|
|
1813
|
+
readonly code: "AS";
|
|
1814
|
+
readonly emoji: "🇦🇸";
|
|
1815
|
+
} | {
|
|
1816
|
+
readonly name: "Andorra";
|
|
1817
|
+
readonly dialCode: "+376";
|
|
1818
|
+
readonly code: "AD";
|
|
1819
|
+
readonly emoji: "🇦🇩";
|
|
1820
|
+
} | {
|
|
1821
|
+
readonly name: "Angola";
|
|
1822
|
+
readonly dialCode: "+244";
|
|
1823
|
+
readonly code: "AO";
|
|
1824
|
+
readonly emoji: "🇦🇴";
|
|
1825
|
+
} | {
|
|
1826
|
+
readonly name: "Anguilla";
|
|
1827
|
+
readonly dialCode: "+1";
|
|
1828
|
+
readonly code: "AI";
|
|
1829
|
+
readonly emoji: "🇦🇮";
|
|
1830
|
+
} | {
|
|
1831
|
+
readonly name: "Antigua and Barbuda";
|
|
1832
|
+
readonly dialCode: "+1";
|
|
1833
|
+
readonly code: "AG";
|
|
1834
|
+
readonly emoji: "🇦🇬";
|
|
1835
|
+
} | {
|
|
1836
|
+
readonly name: "Argentina";
|
|
1837
|
+
readonly dialCode: "+54";
|
|
1838
|
+
readonly code: "AR";
|
|
1839
|
+
readonly emoji: "🇦🇷";
|
|
1840
|
+
} | {
|
|
1841
|
+
readonly name: "Armenia";
|
|
1842
|
+
readonly dialCode: "+374";
|
|
1843
|
+
readonly code: "AM";
|
|
1844
|
+
readonly emoji: "🇦🇲";
|
|
1845
|
+
} | {
|
|
1846
|
+
readonly name: "Aruba";
|
|
1847
|
+
readonly dialCode: "+297";
|
|
1848
|
+
readonly code: "AW";
|
|
1849
|
+
readonly emoji: "🇦🇼";
|
|
1850
|
+
} | {
|
|
1851
|
+
readonly name: "Ascension Island";
|
|
1852
|
+
readonly dialCode: "+247";
|
|
1853
|
+
readonly code: "AC";
|
|
1854
|
+
readonly emoji: "🇦🇨";
|
|
1855
|
+
} | {
|
|
1856
|
+
readonly name: "Australia";
|
|
1857
|
+
readonly dialCode: "+61";
|
|
1858
|
+
readonly code: "AU";
|
|
1859
|
+
readonly emoji: "🇦🇺";
|
|
1860
|
+
} | {
|
|
1861
|
+
readonly name: "Austria";
|
|
1862
|
+
readonly dialCode: "+43";
|
|
1863
|
+
readonly code: "AT";
|
|
1864
|
+
readonly emoji: "🇦🇹";
|
|
1865
|
+
} | {
|
|
1866
|
+
readonly name: "Azerbaijan";
|
|
1867
|
+
readonly dialCode: "+994";
|
|
1868
|
+
readonly code: "AZ";
|
|
1869
|
+
readonly emoji: "🇦🇿";
|
|
1870
|
+
} | {
|
|
1871
|
+
readonly name: "Bahamas";
|
|
1872
|
+
readonly dialCode: "+1";
|
|
1873
|
+
readonly code: "BS";
|
|
1874
|
+
readonly emoji: "🇧🇸";
|
|
1875
|
+
} | {
|
|
1876
|
+
readonly name: "Bahrain";
|
|
1877
|
+
readonly dialCode: "+973";
|
|
1878
|
+
readonly code: "BH";
|
|
1879
|
+
readonly emoji: "🇧🇭";
|
|
1880
|
+
} | {
|
|
1881
|
+
readonly name: "Bangladesh";
|
|
1882
|
+
readonly dialCode: "+880";
|
|
1883
|
+
readonly code: "BD";
|
|
1884
|
+
readonly emoji: "🇧🇩";
|
|
1885
|
+
} | {
|
|
1886
|
+
readonly name: "Barbados";
|
|
1887
|
+
readonly dialCode: "+1";
|
|
1888
|
+
readonly code: "BB";
|
|
1889
|
+
readonly emoji: "🇧🇧";
|
|
1890
|
+
} | {
|
|
1891
|
+
readonly name: "Belarus";
|
|
1892
|
+
readonly dialCode: "+375";
|
|
1893
|
+
readonly code: "BY";
|
|
1894
|
+
readonly emoji: "🇧🇾";
|
|
1895
|
+
} | {
|
|
1896
|
+
readonly name: "Belgium";
|
|
1897
|
+
readonly dialCode: "+32";
|
|
1898
|
+
readonly code: "BE";
|
|
1899
|
+
readonly emoji: "🇧🇪";
|
|
1900
|
+
} | {
|
|
1901
|
+
readonly name: "Belize";
|
|
1902
|
+
readonly dialCode: "+501";
|
|
1903
|
+
readonly code: "BZ";
|
|
1904
|
+
readonly emoji: "🇧🇿";
|
|
1905
|
+
} | {
|
|
1906
|
+
readonly name: "Benin";
|
|
1907
|
+
readonly dialCode: "+229";
|
|
1908
|
+
readonly code: "BJ";
|
|
1909
|
+
readonly emoji: "🇧🇯";
|
|
1910
|
+
} | {
|
|
1911
|
+
readonly name: "Bermuda";
|
|
1912
|
+
readonly dialCode: "+1";
|
|
1913
|
+
readonly code: "BM";
|
|
1914
|
+
readonly emoji: "🇧🇲";
|
|
1915
|
+
} | {
|
|
1916
|
+
readonly name: "Bhutan";
|
|
1917
|
+
readonly dialCode: "+975";
|
|
1918
|
+
readonly code: "BT";
|
|
1919
|
+
readonly emoji: "🇧🇹";
|
|
1920
|
+
} | {
|
|
1921
|
+
readonly name: "Bolivia";
|
|
1922
|
+
readonly dialCode: "+591";
|
|
1923
|
+
readonly code: "BO";
|
|
1924
|
+
readonly emoji: "🇧🇴";
|
|
1925
|
+
} | {
|
|
1926
|
+
readonly name: "Bosnia and Herzegovina";
|
|
1927
|
+
readonly dialCode: "+387";
|
|
1928
|
+
readonly code: "BA";
|
|
1929
|
+
readonly emoji: "🇧🇦";
|
|
1930
|
+
} | {
|
|
1931
|
+
readonly name: "Botswana";
|
|
1932
|
+
readonly dialCode: "+267";
|
|
1933
|
+
readonly code: "BW";
|
|
1934
|
+
readonly emoji: "🇧🇼";
|
|
1935
|
+
} | {
|
|
1936
|
+
readonly name: "Brazil";
|
|
1937
|
+
readonly dialCode: "+55";
|
|
1938
|
+
readonly code: "BR";
|
|
1939
|
+
readonly emoji: "🇧🇷";
|
|
1940
|
+
} | {
|
|
1941
|
+
readonly name: "British Indian Ocean Territory";
|
|
1942
|
+
readonly dialCode: "+246";
|
|
1943
|
+
readonly code: "IO";
|
|
1944
|
+
readonly emoji: "🇮🇴";
|
|
1945
|
+
} | {
|
|
1946
|
+
readonly name: "British Virgin Islands";
|
|
1947
|
+
readonly dialCode: "+1";
|
|
1948
|
+
readonly code: "VG";
|
|
1949
|
+
readonly emoji: "🇻🇬";
|
|
1950
|
+
} | {
|
|
1951
|
+
readonly name: "Brunei";
|
|
1952
|
+
readonly dialCode: "+673";
|
|
1953
|
+
readonly code: "BN";
|
|
1954
|
+
readonly emoji: "🇧🇳";
|
|
1955
|
+
} | {
|
|
1956
|
+
readonly name: "Bulgaria";
|
|
1957
|
+
readonly dialCode: "+359";
|
|
1958
|
+
readonly code: "BG";
|
|
1959
|
+
readonly emoji: "🇧🇬";
|
|
1960
|
+
} | {
|
|
1961
|
+
readonly name: "Burkina Faso";
|
|
1962
|
+
readonly dialCode: "+226";
|
|
1963
|
+
readonly code: "BF";
|
|
1964
|
+
readonly emoji: "🇧🇫";
|
|
1965
|
+
} | {
|
|
1966
|
+
readonly name: "Burundi";
|
|
1967
|
+
readonly dialCode: "+257";
|
|
1968
|
+
readonly code: "BI";
|
|
1969
|
+
readonly emoji: "🇧🇮";
|
|
1970
|
+
} | {
|
|
1971
|
+
readonly name: "Cambodia";
|
|
1972
|
+
readonly dialCode: "+855";
|
|
1973
|
+
readonly code: "KH";
|
|
1974
|
+
readonly emoji: "🇰🇭";
|
|
1975
|
+
} | {
|
|
1976
|
+
readonly name: "Cameroon";
|
|
1977
|
+
readonly dialCode: "+237";
|
|
1978
|
+
readonly code: "CM";
|
|
1979
|
+
readonly emoji: "🇨🇲";
|
|
1980
|
+
} | {
|
|
1981
|
+
readonly name: "Canada";
|
|
1982
|
+
readonly dialCode: "+1";
|
|
1983
|
+
readonly code: "CA";
|
|
1984
|
+
readonly emoji: "🇨🇦";
|
|
1985
|
+
} | {
|
|
1986
|
+
readonly name: "Cape Verde";
|
|
1987
|
+
readonly dialCode: "+238";
|
|
1988
|
+
readonly code: "CV";
|
|
1989
|
+
readonly emoji: "🇨🇻";
|
|
1990
|
+
} | {
|
|
1991
|
+
readonly name: "Caribbean Netherlands";
|
|
1992
|
+
readonly dialCode: "+599";
|
|
1993
|
+
readonly code: "BQ";
|
|
1994
|
+
readonly emoji: "🇧🇶";
|
|
1995
|
+
} | {
|
|
1996
|
+
readonly name: "Cayman Islands";
|
|
1997
|
+
readonly dialCode: "+1";
|
|
1998
|
+
readonly code: "KY";
|
|
1999
|
+
readonly emoji: "🇰🇾";
|
|
2000
|
+
} | {
|
|
2001
|
+
readonly name: "Central African Republic";
|
|
2002
|
+
readonly dialCode: "+236";
|
|
2003
|
+
readonly code: "CF";
|
|
2004
|
+
readonly emoji: "🇨🇫";
|
|
2005
|
+
} | {
|
|
2006
|
+
readonly name: "Chad";
|
|
2007
|
+
readonly dialCode: "+235";
|
|
2008
|
+
readonly code: "TD";
|
|
2009
|
+
readonly emoji: "🇹🇩";
|
|
2010
|
+
} | {
|
|
2011
|
+
readonly name: "Chile";
|
|
2012
|
+
readonly dialCode: "+56";
|
|
2013
|
+
readonly code: "CL";
|
|
2014
|
+
readonly emoji: "🇨🇱";
|
|
2015
|
+
} | {
|
|
2016
|
+
readonly name: "China";
|
|
2017
|
+
readonly dialCode: "+86";
|
|
2018
|
+
readonly code: "CN";
|
|
2019
|
+
readonly emoji: "🇨🇳";
|
|
2020
|
+
} | {
|
|
2021
|
+
readonly name: "Christmas Island";
|
|
2022
|
+
readonly dialCode: "+61";
|
|
2023
|
+
readonly code: "CX";
|
|
2024
|
+
readonly emoji: "🇨🇽";
|
|
2025
|
+
} | {
|
|
2026
|
+
readonly name: "Cocos [Keeling] Islands";
|
|
2027
|
+
readonly dialCode: "+61";
|
|
2028
|
+
readonly code: "CC";
|
|
2029
|
+
readonly emoji: "🇨🇨";
|
|
2030
|
+
} | {
|
|
2031
|
+
readonly name: "Colombia";
|
|
2032
|
+
readonly dialCode: "+57";
|
|
2033
|
+
readonly code: "CO";
|
|
2034
|
+
readonly emoji: "🇨🇴";
|
|
2035
|
+
} | {
|
|
2036
|
+
readonly name: "Comoros";
|
|
2037
|
+
readonly dialCode: "+269";
|
|
2038
|
+
readonly code: "KM";
|
|
2039
|
+
readonly emoji: "🇰🇲";
|
|
2040
|
+
} | {
|
|
2041
|
+
readonly name: "Democratic Republic Congo";
|
|
2042
|
+
readonly dialCode: "+243";
|
|
2043
|
+
readonly code: "CD";
|
|
2044
|
+
readonly emoji: "🇨🇩";
|
|
2045
|
+
} | {
|
|
2046
|
+
readonly name: "Republic of Congo";
|
|
2047
|
+
readonly dialCode: "+242";
|
|
2048
|
+
readonly code: "CG";
|
|
2049
|
+
readonly emoji: "🇨🇬";
|
|
2050
|
+
} | {
|
|
2051
|
+
readonly name: "Cook Islands";
|
|
2052
|
+
readonly dialCode: "+682";
|
|
2053
|
+
readonly code: "CK";
|
|
2054
|
+
readonly emoji: "🇨🇰";
|
|
2055
|
+
} | {
|
|
2056
|
+
readonly name: "Costa Rica";
|
|
2057
|
+
readonly dialCode: "+506";
|
|
2058
|
+
readonly code: "CR";
|
|
2059
|
+
readonly emoji: "🇨🇷";
|
|
2060
|
+
} | {
|
|
2061
|
+
readonly name: "Côte d'Ivoire";
|
|
2062
|
+
readonly dialCode: "+225";
|
|
2063
|
+
readonly code: "CI";
|
|
2064
|
+
readonly emoji: "🇨🇮";
|
|
2065
|
+
} | {
|
|
2066
|
+
readonly name: "Croatia";
|
|
2067
|
+
readonly dialCode: "+385";
|
|
2068
|
+
readonly code: "HR";
|
|
2069
|
+
readonly emoji: "🇭🇷";
|
|
2070
|
+
} | {
|
|
2071
|
+
readonly name: "Cuba";
|
|
2072
|
+
readonly dialCode: "+53";
|
|
2073
|
+
readonly code: "CU";
|
|
2074
|
+
readonly emoji: "🇨🇺";
|
|
2075
|
+
} | {
|
|
2076
|
+
readonly name: "Curaçao";
|
|
2077
|
+
readonly dialCode: "+599";
|
|
2078
|
+
readonly code: "CW";
|
|
2079
|
+
readonly emoji: "🇨🇼";
|
|
2080
|
+
} | {
|
|
2081
|
+
readonly name: "Cyprus";
|
|
2082
|
+
readonly dialCode: "+357";
|
|
2083
|
+
readonly code: "CY";
|
|
2084
|
+
readonly emoji: "🇨🇾";
|
|
2085
|
+
} | {
|
|
2086
|
+
readonly name: "Czech Republic";
|
|
2087
|
+
readonly dialCode: "+420";
|
|
2088
|
+
readonly code: "CZ";
|
|
2089
|
+
readonly emoji: "🇨🇿";
|
|
2090
|
+
} | {
|
|
2091
|
+
readonly name: "Denmark";
|
|
2092
|
+
readonly dialCode: "+45";
|
|
2093
|
+
readonly code: "DK";
|
|
2094
|
+
readonly emoji: "🇩🇰";
|
|
2095
|
+
} | {
|
|
2096
|
+
readonly name: "Djibouti";
|
|
2097
|
+
readonly dialCode: "+253";
|
|
2098
|
+
readonly code: "DJ";
|
|
2099
|
+
readonly emoji: "🇩🇯";
|
|
2100
|
+
} | {
|
|
2101
|
+
readonly name: "Dominica";
|
|
2102
|
+
readonly dialCode: "+1";
|
|
2103
|
+
readonly code: "DM";
|
|
2104
|
+
readonly emoji: "🇩🇲";
|
|
2105
|
+
} | {
|
|
2106
|
+
readonly name: "Dominican Republic";
|
|
2107
|
+
readonly dialCode: "+1";
|
|
2108
|
+
readonly code: "DO";
|
|
2109
|
+
readonly emoji: "🇩🇴";
|
|
2110
|
+
} | {
|
|
2111
|
+
readonly name: "East Timor";
|
|
2112
|
+
readonly dialCode: "+670";
|
|
2113
|
+
readonly code: "TL";
|
|
2114
|
+
readonly emoji: "🇹🇱";
|
|
2115
|
+
} | {
|
|
2116
|
+
readonly name: "Ecuador";
|
|
2117
|
+
readonly dialCode: "+593";
|
|
2118
|
+
readonly code: "EC";
|
|
2119
|
+
readonly emoji: "🇪🇨";
|
|
2120
|
+
} | {
|
|
2121
|
+
readonly name: "Egypt";
|
|
2122
|
+
readonly dialCode: "+20";
|
|
2123
|
+
readonly code: "EG";
|
|
2124
|
+
readonly emoji: "🇪🇬";
|
|
2125
|
+
} | {
|
|
2126
|
+
readonly name: "El Salvador";
|
|
2127
|
+
readonly dialCode: "+503";
|
|
2128
|
+
readonly code: "SV";
|
|
2129
|
+
readonly emoji: "🇸🇻";
|
|
2130
|
+
} | {
|
|
2131
|
+
readonly name: "Equatorial Guinea";
|
|
2132
|
+
readonly dialCode: "+240";
|
|
2133
|
+
readonly code: "GQ";
|
|
2134
|
+
readonly emoji: "🇬🇶";
|
|
2135
|
+
} | {
|
|
2136
|
+
readonly name: "Eritrea";
|
|
2137
|
+
readonly dialCode: "+291";
|
|
2138
|
+
readonly code: "ER";
|
|
2139
|
+
readonly emoji: "🇪🇷";
|
|
2140
|
+
} | {
|
|
2141
|
+
readonly name: "Estonia";
|
|
2142
|
+
readonly dialCode: "+372";
|
|
2143
|
+
readonly code: "EE";
|
|
2144
|
+
readonly emoji: "🇪🇪";
|
|
2145
|
+
} | {
|
|
2146
|
+
readonly name: "Ethiopia";
|
|
2147
|
+
readonly dialCode: "+251";
|
|
2148
|
+
readonly code: "ET";
|
|
2149
|
+
readonly emoji: "🇪🇹";
|
|
2150
|
+
} | {
|
|
2151
|
+
readonly name: "Falkland Islands [Islas Malvinas]";
|
|
2152
|
+
readonly dialCode: "+500";
|
|
2153
|
+
readonly code: "FK";
|
|
2154
|
+
readonly emoji: "🇫🇰";
|
|
2155
|
+
} | {
|
|
2156
|
+
readonly name: "Faroe Islands";
|
|
2157
|
+
readonly dialCode: "+298";
|
|
2158
|
+
readonly code: "FO";
|
|
2159
|
+
readonly emoji: "🇫🇴";
|
|
2160
|
+
} | {
|
|
2161
|
+
readonly name: "Fiji";
|
|
2162
|
+
readonly dialCode: "+679";
|
|
2163
|
+
readonly code: "FJ";
|
|
2164
|
+
readonly emoji: "🇫🇯";
|
|
2165
|
+
} | {
|
|
2166
|
+
readonly name: "Finland";
|
|
2167
|
+
readonly dialCode: "+358";
|
|
2168
|
+
readonly code: "FI";
|
|
2169
|
+
readonly emoji: "🇫🇮";
|
|
2170
|
+
} | {
|
|
2171
|
+
readonly name: "France";
|
|
2172
|
+
readonly dialCode: "+33";
|
|
2173
|
+
readonly code: "FR";
|
|
2174
|
+
readonly emoji: "🇫🇷";
|
|
2175
|
+
} | {
|
|
2176
|
+
readonly name: "French Guiana";
|
|
2177
|
+
readonly dialCode: "+594";
|
|
2178
|
+
readonly code: "GF";
|
|
2179
|
+
readonly emoji: "🇬🇫";
|
|
2180
|
+
} | {
|
|
2181
|
+
readonly name: "French Polynesia";
|
|
2182
|
+
readonly dialCode: "+689";
|
|
2183
|
+
readonly code: "PF";
|
|
2184
|
+
readonly emoji: "🇵🇫";
|
|
2185
|
+
} | {
|
|
2186
|
+
readonly name: "Gabon";
|
|
2187
|
+
readonly dialCode: "+241";
|
|
2188
|
+
readonly code: "GA";
|
|
2189
|
+
readonly emoji: "🇬🇦";
|
|
2190
|
+
} | {
|
|
2191
|
+
readonly name: "Gambia";
|
|
2192
|
+
readonly dialCode: "+220";
|
|
2193
|
+
readonly code: "GM";
|
|
2194
|
+
readonly emoji: "🇬🇲";
|
|
2195
|
+
} | {
|
|
2196
|
+
readonly name: "Georgia";
|
|
2197
|
+
readonly dialCode: "+995";
|
|
2198
|
+
readonly code: "GE";
|
|
2199
|
+
readonly emoji: "🇬🇪";
|
|
2200
|
+
} | {
|
|
2201
|
+
readonly name: "Germany";
|
|
2202
|
+
readonly dialCode: "+49";
|
|
2203
|
+
readonly code: "DE";
|
|
2204
|
+
readonly emoji: "🇩🇪";
|
|
2205
|
+
} | {
|
|
2206
|
+
readonly name: "Ghana";
|
|
2207
|
+
readonly dialCode: "+233";
|
|
2208
|
+
readonly code: "GH";
|
|
2209
|
+
readonly emoji: "🇬🇭";
|
|
2210
|
+
} | {
|
|
2211
|
+
readonly name: "Gibraltar";
|
|
2212
|
+
readonly dialCode: "+350";
|
|
2213
|
+
readonly code: "GI";
|
|
2214
|
+
readonly emoji: "🇬🇮";
|
|
2215
|
+
} | {
|
|
2216
|
+
readonly name: "Greece";
|
|
2217
|
+
readonly dialCode: "+30";
|
|
2218
|
+
readonly code: "GR";
|
|
2219
|
+
readonly emoji: "🇬🇷";
|
|
2220
|
+
} | {
|
|
2221
|
+
readonly name: "Greenland";
|
|
2222
|
+
readonly dialCode: "+299";
|
|
2223
|
+
readonly code: "GL";
|
|
2224
|
+
readonly emoji: "🇬🇱";
|
|
2225
|
+
} | {
|
|
2226
|
+
readonly name: "Grenada";
|
|
2227
|
+
readonly dialCode: "+1";
|
|
2228
|
+
readonly code: "GD";
|
|
2229
|
+
readonly emoji: "🇬🇩";
|
|
2230
|
+
} | {
|
|
2231
|
+
readonly name: "Guadeloupe";
|
|
2232
|
+
readonly dialCode: "+590";
|
|
2233
|
+
readonly code: "GP";
|
|
2234
|
+
readonly emoji: "🇬🇵";
|
|
2235
|
+
} | {
|
|
2236
|
+
readonly name: "Guam";
|
|
2237
|
+
readonly dialCode: "+1";
|
|
2238
|
+
readonly code: "GU";
|
|
2239
|
+
readonly emoji: "🇬🇺";
|
|
2240
|
+
} | {
|
|
2241
|
+
readonly name: "Guatemala";
|
|
2242
|
+
readonly dialCode: "+502";
|
|
2243
|
+
readonly code: "GT";
|
|
2244
|
+
readonly emoji: "🇬🇹";
|
|
2245
|
+
} | {
|
|
2246
|
+
readonly name: "Guernsey";
|
|
2247
|
+
readonly dialCode: "+44";
|
|
2248
|
+
readonly code: "GG";
|
|
2249
|
+
readonly emoji: "🇬🇬";
|
|
2250
|
+
} | {
|
|
2251
|
+
readonly name: "Guinea Conakry";
|
|
2252
|
+
readonly dialCode: "+224";
|
|
2253
|
+
readonly code: "GN";
|
|
2254
|
+
readonly emoji: "🇬🇳";
|
|
2255
|
+
} | {
|
|
2256
|
+
readonly name: "Guinea-Bissau";
|
|
2257
|
+
readonly dialCode: "+245";
|
|
2258
|
+
readonly code: "GW";
|
|
2259
|
+
readonly emoji: "🇬🇼";
|
|
2260
|
+
} | {
|
|
2261
|
+
readonly name: "Guyana";
|
|
2262
|
+
readonly dialCode: "+592";
|
|
2263
|
+
readonly code: "GY";
|
|
2264
|
+
readonly emoji: "🇬🇾";
|
|
2265
|
+
} | {
|
|
2266
|
+
readonly name: "Haiti";
|
|
2267
|
+
readonly dialCode: "+509";
|
|
2268
|
+
readonly code: "HT";
|
|
2269
|
+
readonly emoji: "🇭🇹";
|
|
2270
|
+
} | {
|
|
2271
|
+
readonly name: "Honduras";
|
|
2272
|
+
readonly dialCode: "+504";
|
|
2273
|
+
readonly code: "HN";
|
|
2274
|
+
readonly emoji: "🇭🇳";
|
|
2275
|
+
} | {
|
|
2276
|
+
readonly name: "Hong Kong";
|
|
2277
|
+
readonly dialCode: "+852";
|
|
2278
|
+
readonly code: "HK";
|
|
2279
|
+
readonly emoji: "🇭🇰";
|
|
2280
|
+
} | {
|
|
2281
|
+
readonly name: "Hungary";
|
|
2282
|
+
readonly dialCode: "+36";
|
|
2283
|
+
readonly code: "HU";
|
|
2284
|
+
readonly emoji: "🇭🇺";
|
|
2285
|
+
} | {
|
|
2286
|
+
readonly name: "Iceland";
|
|
2287
|
+
readonly dialCode: "+354";
|
|
2288
|
+
readonly code: "IS";
|
|
2289
|
+
readonly emoji: "🇮🇸";
|
|
2290
|
+
} | {
|
|
2291
|
+
readonly name: "India";
|
|
2292
|
+
readonly dialCode: "+91";
|
|
2293
|
+
readonly code: "IN";
|
|
2294
|
+
readonly emoji: "🇮🇳";
|
|
2295
|
+
} | {
|
|
2296
|
+
readonly name: "Indonesia";
|
|
2297
|
+
readonly dialCode: "+62";
|
|
2298
|
+
readonly code: "ID";
|
|
2299
|
+
readonly emoji: "🇮🇩";
|
|
2300
|
+
} | {
|
|
2301
|
+
readonly name: "Iran";
|
|
2302
|
+
readonly dialCode: "+98";
|
|
2303
|
+
readonly code: "IR";
|
|
2304
|
+
readonly emoji: "🇮🇷";
|
|
2305
|
+
} | {
|
|
2306
|
+
readonly name: "Iraq";
|
|
2307
|
+
readonly dialCode: "+964";
|
|
2308
|
+
readonly code: "IQ";
|
|
2309
|
+
readonly emoji: "🇮🇶";
|
|
2310
|
+
} | {
|
|
2311
|
+
readonly name: "Ireland";
|
|
2312
|
+
readonly dialCode: "+353";
|
|
2313
|
+
readonly code: "IE";
|
|
2314
|
+
readonly emoji: "🇮🇪";
|
|
2315
|
+
} | {
|
|
2316
|
+
readonly name: "Isle of Man";
|
|
2317
|
+
readonly dialCode: "+44";
|
|
2318
|
+
readonly code: "IM";
|
|
2319
|
+
readonly emoji: "🇮🇲";
|
|
2320
|
+
} | {
|
|
2321
|
+
readonly name: "Israel";
|
|
2322
|
+
readonly dialCode: "+972";
|
|
2323
|
+
readonly code: "IL";
|
|
2324
|
+
readonly emoji: "🇮🇱";
|
|
2325
|
+
} | {
|
|
2326
|
+
readonly name: "Italy";
|
|
2327
|
+
readonly dialCode: "+39";
|
|
2328
|
+
readonly code: "IT";
|
|
2329
|
+
readonly emoji: "🇮🇹";
|
|
2330
|
+
} | {
|
|
2331
|
+
readonly name: "Jamaica";
|
|
2332
|
+
readonly dialCode: "+1";
|
|
2333
|
+
readonly code: "JM";
|
|
2334
|
+
readonly emoji: "🇯🇲";
|
|
2335
|
+
} | {
|
|
2336
|
+
readonly name: "Japan";
|
|
2337
|
+
readonly dialCode: "+81";
|
|
2338
|
+
readonly code: "JP";
|
|
2339
|
+
readonly emoji: "🇯🇵";
|
|
2340
|
+
} | {
|
|
2341
|
+
readonly name: "Jersey";
|
|
2342
|
+
readonly dialCode: "+44";
|
|
2343
|
+
readonly code: "JE";
|
|
2344
|
+
readonly emoji: "🇯🇪";
|
|
2345
|
+
} | {
|
|
2346
|
+
readonly name: "Jordan";
|
|
2347
|
+
readonly dialCode: "+962";
|
|
2348
|
+
readonly code: "JO";
|
|
2349
|
+
readonly emoji: "🇯🇴";
|
|
2350
|
+
} | {
|
|
2351
|
+
readonly name: "Kazakhstan";
|
|
2352
|
+
readonly dialCode: "+7";
|
|
2353
|
+
readonly code: "KZ";
|
|
2354
|
+
readonly emoji: "🇰🇿";
|
|
2355
|
+
} | {
|
|
2356
|
+
readonly name: "Kenya";
|
|
2357
|
+
readonly dialCode: "+254";
|
|
2358
|
+
readonly code: "KE";
|
|
2359
|
+
readonly emoji: "🇰🇪";
|
|
2360
|
+
} | {
|
|
2361
|
+
readonly name: "Kiribati";
|
|
2362
|
+
readonly dialCode: "+686";
|
|
2363
|
+
readonly code: "KI";
|
|
2364
|
+
readonly emoji: "🇰🇮";
|
|
2365
|
+
} | {
|
|
2366
|
+
readonly name: "Kosovo";
|
|
2367
|
+
readonly dialCode: "+377";
|
|
2368
|
+
readonly code: "XK";
|
|
2369
|
+
readonly emoji: "🇽🇰";
|
|
2370
|
+
} | {
|
|
2371
|
+
readonly name: "Kosovo";
|
|
2372
|
+
readonly dialCode: "+381";
|
|
2373
|
+
readonly code: "XK";
|
|
2374
|
+
readonly emoji: "🇽🇰";
|
|
2375
|
+
} | {
|
|
2376
|
+
readonly name: "Kosovo";
|
|
2377
|
+
readonly dialCode: "+386";
|
|
2378
|
+
readonly code: "XK";
|
|
2379
|
+
readonly emoji: "🇽🇰";
|
|
2380
|
+
} | {
|
|
2381
|
+
readonly name: "Kuwait";
|
|
2382
|
+
readonly dialCode: "+965";
|
|
2383
|
+
readonly code: "KW";
|
|
2384
|
+
readonly emoji: "🇰🇼";
|
|
2385
|
+
} | {
|
|
2386
|
+
readonly name: "Kyrgyzstan";
|
|
2387
|
+
readonly dialCode: "+996";
|
|
2388
|
+
readonly code: "KG";
|
|
2389
|
+
readonly emoji: "🇰🇬";
|
|
2390
|
+
} | {
|
|
2391
|
+
readonly name: "Laos";
|
|
2392
|
+
readonly dialCode: "+856";
|
|
2393
|
+
readonly code: "LA";
|
|
2394
|
+
readonly emoji: "🇱🇦";
|
|
2395
|
+
} | {
|
|
2396
|
+
readonly name: "Latvia";
|
|
2397
|
+
readonly dialCode: "+371";
|
|
2398
|
+
readonly code: "LV";
|
|
2399
|
+
readonly emoji: "🇱🇻";
|
|
2400
|
+
} | {
|
|
2401
|
+
readonly name: "Lebanon";
|
|
2402
|
+
readonly dialCode: "+961";
|
|
2403
|
+
readonly code: "LB";
|
|
2404
|
+
readonly emoji: "🇱🇧";
|
|
2405
|
+
} | {
|
|
2406
|
+
readonly name: "Lesotho";
|
|
2407
|
+
readonly dialCode: "+266";
|
|
2408
|
+
readonly code: "LS";
|
|
2409
|
+
readonly emoji: "🇱🇸";
|
|
2410
|
+
} | {
|
|
2411
|
+
readonly name: "Liberia";
|
|
2412
|
+
readonly dialCode: "+231";
|
|
2413
|
+
readonly code: "LR";
|
|
2414
|
+
readonly emoji: "🇱🇷";
|
|
2415
|
+
} | {
|
|
2416
|
+
readonly name: "Libya";
|
|
2417
|
+
readonly dialCode: "+218";
|
|
2418
|
+
readonly code: "LY";
|
|
2419
|
+
readonly emoji: "🇱🇾";
|
|
2420
|
+
} | {
|
|
2421
|
+
readonly name: "Liechtenstein";
|
|
2422
|
+
readonly dialCode: "+423";
|
|
2423
|
+
readonly code: "LI";
|
|
2424
|
+
readonly emoji: "🇱🇮";
|
|
2425
|
+
} | {
|
|
2426
|
+
readonly name: "Lithuania";
|
|
2427
|
+
readonly dialCode: "+370";
|
|
2428
|
+
readonly code: "LT";
|
|
2429
|
+
readonly emoji: "🇱🇹";
|
|
2430
|
+
} | {
|
|
2431
|
+
readonly name: "Luxembourg";
|
|
2432
|
+
readonly dialCode: "+352";
|
|
2433
|
+
readonly code: "LU";
|
|
2434
|
+
readonly emoji: "🇱🇺";
|
|
2435
|
+
} | {
|
|
2436
|
+
readonly name: "Macau";
|
|
2437
|
+
readonly dialCode: "+853";
|
|
2438
|
+
readonly code: "MO";
|
|
2439
|
+
readonly emoji: "🇲🇴";
|
|
2440
|
+
} | {
|
|
2441
|
+
readonly name: "Macedonia";
|
|
2442
|
+
readonly dialCode: "+389";
|
|
2443
|
+
readonly code: "MK";
|
|
2444
|
+
readonly emoji: "🇲🇰";
|
|
2445
|
+
} | {
|
|
2446
|
+
readonly name: "Madagascar";
|
|
2447
|
+
readonly dialCode: "+261";
|
|
2448
|
+
readonly code: "MG";
|
|
2449
|
+
readonly emoji: "🇲🇬";
|
|
2450
|
+
} | {
|
|
2451
|
+
readonly name: "Malawi";
|
|
2452
|
+
readonly dialCode: "+265";
|
|
2453
|
+
readonly code: "MW";
|
|
2454
|
+
readonly emoji: "🇲🇼";
|
|
2455
|
+
} | {
|
|
2456
|
+
readonly name: "Malaysia";
|
|
2457
|
+
readonly dialCode: "+60";
|
|
2458
|
+
readonly code: "MY";
|
|
2459
|
+
readonly emoji: "🇲🇾";
|
|
2460
|
+
} | {
|
|
2461
|
+
readonly name: "Maldives";
|
|
2462
|
+
readonly dialCode: "+960";
|
|
2463
|
+
readonly code: "MV";
|
|
2464
|
+
readonly emoji: "🇲🇻";
|
|
2465
|
+
} | {
|
|
2466
|
+
readonly name: "Mali";
|
|
2467
|
+
readonly dialCode: "+223";
|
|
2468
|
+
readonly code: "ML";
|
|
2469
|
+
readonly emoji: "🇲🇱";
|
|
2470
|
+
} | {
|
|
2471
|
+
readonly name: "Malta";
|
|
2472
|
+
readonly dialCode: "+356";
|
|
2473
|
+
readonly code: "MT";
|
|
2474
|
+
readonly emoji: "🇲🇹";
|
|
2475
|
+
} | {
|
|
2476
|
+
readonly name: "Marshall Islands";
|
|
2477
|
+
readonly dialCode: "+692";
|
|
2478
|
+
readonly code: "MH";
|
|
2479
|
+
readonly emoji: "🇲🇭";
|
|
2480
|
+
} | {
|
|
2481
|
+
readonly name: "Martinique";
|
|
2482
|
+
readonly dialCode: "+596";
|
|
2483
|
+
readonly code: "MQ";
|
|
2484
|
+
readonly emoji: "🇲🇶";
|
|
2485
|
+
} | {
|
|
2486
|
+
readonly name: "Mauritania";
|
|
2487
|
+
readonly dialCode: "+222";
|
|
2488
|
+
readonly code: "MR";
|
|
2489
|
+
readonly emoji: "🇲🇷";
|
|
2490
|
+
} | {
|
|
2491
|
+
readonly name: "Mauritius";
|
|
2492
|
+
readonly dialCode: "+230";
|
|
2493
|
+
readonly code: "MU";
|
|
2494
|
+
readonly emoji: "🇲🇺";
|
|
2495
|
+
} | {
|
|
2496
|
+
readonly name: "Mayotte";
|
|
2497
|
+
readonly dialCode: "+262";
|
|
2498
|
+
readonly code: "YT";
|
|
2499
|
+
readonly emoji: "🇾🇹";
|
|
2500
|
+
} | {
|
|
2501
|
+
readonly name: "Mexico";
|
|
2502
|
+
readonly dialCode: "+52";
|
|
2503
|
+
readonly code: "MX";
|
|
2504
|
+
readonly emoji: "🇲🇽";
|
|
2505
|
+
} | {
|
|
2506
|
+
readonly name: "Micronesia";
|
|
2507
|
+
readonly dialCode: "+691";
|
|
2508
|
+
readonly code: "FM";
|
|
2509
|
+
readonly emoji: "🇫🇲";
|
|
2510
|
+
} | {
|
|
2511
|
+
readonly name: "Moldova";
|
|
2512
|
+
readonly dialCode: "+373";
|
|
2513
|
+
readonly code: "MD";
|
|
2514
|
+
readonly emoji: "🇲🇩";
|
|
2515
|
+
} | {
|
|
2516
|
+
readonly name: "Monaco";
|
|
2517
|
+
readonly dialCode: "+377";
|
|
2518
|
+
readonly code: "MC";
|
|
2519
|
+
readonly emoji: "🇲🇨";
|
|
2520
|
+
} | {
|
|
2521
|
+
readonly name: "Mongolia";
|
|
2522
|
+
readonly dialCode: "+976";
|
|
2523
|
+
readonly code: "MN";
|
|
2524
|
+
readonly emoji: "🇲🇳";
|
|
2525
|
+
} | {
|
|
2526
|
+
readonly name: "Montenegro";
|
|
2527
|
+
readonly dialCode: "+382";
|
|
2528
|
+
readonly code: "ME";
|
|
2529
|
+
readonly emoji: "🇲🇪";
|
|
2530
|
+
} | {
|
|
2531
|
+
readonly name: "Montserrat";
|
|
2532
|
+
readonly dialCode: "+1";
|
|
2533
|
+
readonly code: "MS";
|
|
2534
|
+
readonly emoji: "🇲🇸";
|
|
2535
|
+
} | {
|
|
2536
|
+
readonly name: "Morocco";
|
|
2537
|
+
readonly dialCode: "+212";
|
|
2538
|
+
readonly code: "MA";
|
|
2539
|
+
readonly emoji: "🇲🇦";
|
|
2540
|
+
} | {
|
|
2541
|
+
readonly name: "Mozambique";
|
|
2542
|
+
readonly dialCode: "+258";
|
|
2543
|
+
readonly code: "MZ";
|
|
2544
|
+
readonly emoji: "🇲🇿";
|
|
2545
|
+
} | {
|
|
2546
|
+
readonly name: "Myanmar [Burma]";
|
|
2547
|
+
readonly dialCode: "+95";
|
|
2548
|
+
readonly code: "MM";
|
|
2549
|
+
readonly emoji: "🇲🇲";
|
|
2550
|
+
} | {
|
|
2551
|
+
readonly name: "Namibia";
|
|
2552
|
+
readonly dialCode: "+264";
|
|
2553
|
+
readonly code: "NA";
|
|
2554
|
+
readonly emoji: "🇳🇦";
|
|
2555
|
+
} | {
|
|
2556
|
+
readonly name: "Nauru";
|
|
2557
|
+
readonly dialCode: "+674";
|
|
2558
|
+
readonly code: "NR";
|
|
2559
|
+
readonly emoji: "🇳🇷";
|
|
2560
|
+
} | {
|
|
2561
|
+
readonly name: "Nepal";
|
|
2562
|
+
readonly dialCode: "+977";
|
|
2563
|
+
readonly code: "NP";
|
|
2564
|
+
readonly emoji: "🇳🇵";
|
|
2565
|
+
} | {
|
|
2566
|
+
readonly name: "Netherlands";
|
|
2567
|
+
readonly dialCode: "+31";
|
|
2568
|
+
readonly code: "NL";
|
|
2569
|
+
readonly emoji: "🇳🇱";
|
|
2570
|
+
} | {
|
|
2571
|
+
readonly name: "New Caledonia";
|
|
2572
|
+
readonly dialCode: "+687";
|
|
2573
|
+
readonly code: "NC";
|
|
2574
|
+
readonly emoji: "🇳🇨";
|
|
2575
|
+
} | {
|
|
2576
|
+
readonly name: "New Zealand";
|
|
2577
|
+
readonly dialCode: "+64";
|
|
2578
|
+
readonly code: "NZ";
|
|
2579
|
+
readonly emoji: "🇳🇿";
|
|
2580
|
+
} | {
|
|
2581
|
+
readonly name: "Nicaragua";
|
|
2582
|
+
readonly dialCode: "+505";
|
|
2583
|
+
readonly code: "NI";
|
|
2584
|
+
readonly emoji: "🇳🇮";
|
|
2585
|
+
} | {
|
|
2586
|
+
readonly name: "Niger";
|
|
2587
|
+
readonly dialCode: "+227";
|
|
2588
|
+
readonly code: "NE";
|
|
2589
|
+
readonly emoji: "🇳🇪";
|
|
2590
|
+
} | {
|
|
2591
|
+
readonly name: "Nigeria";
|
|
2592
|
+
readonly dialCode: "+234";
|
|
2593
|
+
readonly code: "NG";
|
|
2594
|
+
readonly emoji: "🇳🇬";
|
|
2595
|
+
} | {
|
|
2596
|
+
readonly name: "Niue";
|
|
2597
|
+
readonly dialCode: "+683";
|
|
2598
|
+
readonly code: "NU";
|
|
2599
|
+
readonly emoji: "🇳🇺";
|
|
2600
|
+
} | {
|
|
2601
|
+
readonly name: "Norfolk Island";
|
|
2602
|
+
readonly dialCode: "+672";
|
|
2603
|
+
readonly code: "NF";
|
|
2604
|
+
readonly emoji: "🇳🇫";
|
|
2605
|
+
} | {
|
|
2606
|
+
readonly name: "North Korea";
|
|
2607
|
+
readonly dialCode: "+850";
|
|
2608
|
+
readonly code: "KP";
|
|
2609
|
+
readonly emoji: "🇰🇵";
|
|
2610
|
+
} | {
|
|
2611
|
+
readonly name: "Northern Mariana Islands";
|
|
2612
|
+
readonly dialCode: "+1";
|
|
2613
|
+
readonly code: "MP";
|
|
2614
|
+
readonly emoji: "🇲🇵";
|
|
2615
|
+
} | {
|
|
2616
|
+
readonly name: "Norway";
|
|
2617
|
+
readonly dialCode: "+47";
|
|
2618
|
+
readonly code: "NO";
|
|
2619
|
+
readonly emoji: "🇳🇴";
|
|
2620
|
+
} | {
|
|
2621
|
+
readonly name: "Oman";
|
|
2622
|
+
readonly dialCode: "+968";
|
|
2623
|
+
readonly code: "OM";
|
|
2624
|
+
readonly emoji: "🇴🇲";
|
|
2625
|
+
} | {
|
|
2626
|
+
readonly name: "Pakistan";
|
|
2627
|
+
readonly dialCode: "+92";
|
|
2628
|
+
readonly code: "PK";
|
|
2629
|
+
readonly emoji: "🇵🇰";
|
|
2630
|
+
} | {
|
|
2631
|
+
readonly name: "Palau";
|
|
2632
|
+
readonly dialCode: "+680";
|
|
2633
|
+
readonly code: "PW";
|
|
2634
|
+
readonly emoji: "🇵🇼";
|
|
2635
|
+
} | {
|
|
2636
|
+
readonly name: "Palestinian Territories";
|
|
2637
|
+
readonly dialCode: "+970";
|
|
2638
|
+
readonly code: "PS";
|
|
2639
|
+
readonly emoji: "🇵🇸";
|
|
2640
|
+
} | {
|
|
2641
|
+
readonly name: "Panama";
|
|
2642
|
+
readonly dialCode: "+507";
|
|
2643
|
+
readonly code: "PA";
|
|
2644
|
+
readonly emoji: "🇵🇦";
|
|
2645
|
+
} | {
|
|
2646
|
+
readonly name: "Papua New Guinea";
|
|
2647
|
+
readonly dialCode: "+675";
|
|
2648
|
+
readonly code: "PG";
|
|
2649
|
+
readonly emoji: "🇵🇬";
|
|
2650
|
+
} | {
|
|
2651
|
+
readonly name: "Paraguay";
|
|
2652
|
+
readonly dialCode: "+595";
|
|
2653
|
+
readonly code: "PY";
|
|
2654
|
+
readonly emoji: "🇵🇾";
|
|
2655
|
+
} | {
|
|
2656
|
+
readonly name: "Peru";
|
|
2657
|
+
readonly dialCode: "+51";
|
|
2658
|
+
readonly code: "PE";
|
|
2659
|
+
readonly emoji: "🇵🇪";
|
|
2660
|
+
} | {
|
|
2661
|
+
readonly name: "Philippines";
|
|
2662
|
+
readonly dialCode: "+63";
|
|
2663
|
+
readonly code: "PH";
|
|
2664
|
+
readonly emoji: "🇵🇭";
|
|
2665
|
+
} | {
|
|
2666
|
+
readonly name: "Poland";
|
|
2667
|
+
readonly dialCode: "+48";
|
|
2668
|
+
readonly code: "PL";
|
|
2669
|
+
readonly emoji: "🇵🇱";
|
|
2670
|
+
} | {
|
|
2671
|
+
readonly name: "Portugal";
|
|
2672
|
+
readonly dialCode: "+351";
|
|
2673
|
+
readonly code: "PT";
|
|
2674
|
+
readonly emoji: "🇵🇹";
|
|
2675
|
+
} | {
|
|
2676
|
+
readonly name: "Puerto Rico";
|
|
2677
|
+
readonly dialCode: "+1";
|
|
2678
|
+
readonly code: "PR";
|
|
2679
|
+
readonly emoji: "🇵🇷";
|
|
2680
|
+
} | {
|
|
2681
|
+
readonly name: "Qatar";
|
|
2682
|
+
readonly dialCode: "+974";
|
|
2683
|
+
readonly code: "QA";
|
|
2684
|
+
readonly emoji: "🇶🇦";
|
|
2685
|
+
} | {
|
|
2686
|
+
readonly name: "Réunion";
|
|
2687
|
+
readonly dialCode: "+262";
|
|
2688
|
+
readonly code: "RE";
|
|
2689
|
+
readonly emoji: "🇷🇪";
|
|
2690
|
+
} | {
|
|
2691
|
+
readonly name: "Romania";
|
|
2692
|
+
readonly dialCode: "+40";
|
|
2693
|
+
readonly code: "RO";
|
|
2694
|
+
readonly emoji: "🇷🇴";
|
|
2695
|
+
} | {
|
|
2696
|
+
readonly name: "Russia";
|
|
2697
|
+
readonly dialCode: "+7";
|
|
2698
|
+
readonly code: "RU";
|
|
2699
|
+
readonly emoji: "🇷🇺";
|
|
2700
|
+
} | {
|
|
2701
|
+
readonly name: "Rwanda";
|
|
2702
|
+
readonly dialCode: "+250";
|
|
2703
|
+
readonly code: "RW";
|
|
2704
|
+
readonly emoji: "🇷🇼";
|
|
2705
|
+
} | {
|
|
2706
|
+
readonly name: "Saint Barthélemy";
|
|
2707
|
+
readonly dialCode: "+590";
|
|
2708
|
+
readonly code: "BL";
|
|
2709
|
+
readonly emoji: "🇧🇱";
|
|
2710
|
+
} | {
|
|
2711
|
+
readonly name: "Saint Helena";
|
|
2712
|
+
readonly dialCode: "+290";
|
|
2713
|
+
readonly code: "SH";
|
|
2714
|
+
readonly emoji: "🇸🇭";
|
|
2715
|
+
} | {
|
|
2716
|
+
readonly name: "St. Kitts";
|
|
2717
|
+
readonly dialCode: "+1";
|
|
2718
|
+
readonly code: "KN";
|
|
2719
|
+
readonly emoji: "🇰🇳";
|
|
2720
|
+
} | {
|
|
2721
|
+
readonly name: "St. Lucia";
|
|
2722
|
+
readonly dialCode: "+1";
|
|
2723
|
+
readonly code: "LC";
|
|
2724
|
+
readonly emoji: "🇱🇨";
|
|
2725
|
+
} | {
|
|
2726
|
+
readonly name: "Saint Martin";
|
|
2727
|
+
readonly dialCode: "+590";
|
|
2728
|
+
readonly code: "MF";
|
|
2729
|
+
readonly emoji: "🇲🇫";
|
|
2730
|
+
} | {
|
|
2731
|
+
readonly name: "Saint Pierre and Miquelon";
|
|
2732
|
+
readonly dialCode: "+508";
|
|
2733
|
+
readonly code: "PM";
|
|
2734
|
+
readonly emoji: "🇵🇲";
|
|
2735
|
+
} | {
|
|
2736
|
+
readonly name: "St. Vincent";
|
|
2737
|
+
readonly dialCode: "+1";
|
|
2738
|
+
readonly code: "VC";
|
|
2739
|
+
readonly emoji: "🇻🇨";
|
|
2740
|
+
} | {
|
|
2741
|
+
readonly name: "Samoa";
|
|
2742
|
+
readonly dialCode: "+685";
|
|
2743
|
+
readonly code: "WS";
|
|
2744
|
+
readonly emoji: "🇼🇸";
|
|
2745
|
+
} | {
|
|
2746
|
+
readonly name: "San Marino";
|
|
2747
|
+
readonly dialCode: "+378";
|
|
2748
|
+
readonly code: "SM";
|
|
2749
|
+
readonly emoji: "🇸🇲";
|
|
2750
|
+
} | {
|
|
2751
|
+
readonly name: "São Tomé and Príncipe";
|
|
2752
|
+
readonly dialCode: "+239";
|
|
2753
|
+
readonly code: "ST";
|
|
2754
|
+
readonly emoji: "🇸🇹";
|
|
2755
|
+
} | {
|
|
2756
|
+
readonly name: "Saudi Arabia";
|
|
2757
|
+
readonly dialCode: "+966";
|
|
2758
|
+
readonly code: "SA";
|
|
2759
|
+
readonly emoji: "🇸🇦";
|
|
2760
|
+
} | {
|
|
2761
|
+
readonly name: "Senegal";
|
|
2762
|
+
readonly dialCode: "+221";
|
|
2763
|
+
readonly code: "SN";
|
|
2764
|
+
readonly emoji: "🇸🇳";
|
|
2765
|
+
} | {
|
|
2766
|
+
readonly name: "Serbia";
|
|
2767
|
+
readonly dialCode: "+381";
|
|
2768
|
+
readonly code: "RS";
|
|
2769
|
+
readonly emoji: "🇷🇸";
|
|
2770
|
+
} | {
|
|
2771
|
+
readonly name: "Seychelles";
|
|
2772
|
+
readonly dialCode: "+248";
|
|
2773
|
+
readonly code: "SC";
|
|
2774
|
+
readonly emoji: "🇸🇨";
|
|
2775
|
+
} | {
|
|
2776
|
+
readonly name: "Sierra Leone";
|
|
2777
|
+
readonly dialCode: "+232";
|
|
2778
|
+
readonly code: "SL";
|
|
2779
|
+
readonly emoji: "🇸🇱";
|
|
2780
|
+
} | {
|
|
2781
|
+
readonly name: "Singapore";
|
|
2782
|
+
readonly dialCode: "+65";
|
|
2783
|
+
readonly code: "SG";
|
|
2784
|
+
readonly emoji: "🇸🇬";
|
|
2785
|
+
} | {
|
|
2786
|
+
readonly name: "Sint Maarten";
|
|
2787
|
+
readonly dialCode: "+1";
|
|
2788
|
+
readonly code: "SX";
|
|
2789
|
+
readonly emoji: "🇸🇽";
|
|
2790
|
+
} | {
|
|
2791
|
+
readonly name: "Slovakia";
|
|
2792
|
+
readonly dialCode: "+421";
|
|
2793
|
+
readonly code: "SK";
|
|
2794
|
+
readonly emoji: "🇸🇰";
|
|
2795
|
+
} | {
|
|
2796
|
+
readonly name: "Slovenia";
|
|
2797
|
+
readonly dialCode: "+386";
|
|
2798
|
+
readonly code: "SI";
|
|
2799
|
+
readonly emoji: "🇸🇮";
|
|
2800
|
+
} | {
|
|
2801
|
+
readonly name: "Solomon Islands";
|
|
2802
|
+
readonly dialCode: "+677";
|
|
2803
|
+
readonly code: "SB";
|
|
2804
|
+
readonly emoji: "🇸🇧";
|
|
2805
|
+
} | {
|
|
2806
|
+
readonly name: "Somalia";
|
|
2807
|
+
readonly dialCode: "+252";
|
|
2808
|
+
readonly code: "SO";
|
|
2809
|
+
readonly emoji: "🇸🇴";
|
|
2810
|
+
} | {
|
|
2811
|
+
readonly name: "South Africa";
|
|
2812
|
+
readonly dialCode: "+27";
|
|
2813
|
+
readonly code: "ZA";
|
|
2814
|
+
readonly emoji: "🇿🇦";
|
|
2815
|
+
} | {
|
|
2816
|
+
readonly name: "South Korea";
|
|
2817
|
+
readonly dialCode: "+82";
|
|
2818
|
+
readonly code: "KR";
|
|
2819
|
+
readonly emoji: "🇰🇷";
|
|
2820
|
+
} | {
|
|
2821
|
+
readonly name: "South Sudan";
|
|
2822
|
+
readonly dialCode: "+211";
|
|
2823
|
+
readonly code: "SS";
|
|
2824
|
+
readonly emoji: "🇸🇸";
|
|
2825
|
+
} | {
|
|
2826
|
+
readonly name: "Spain";
|
|
2827
|
+
readonly dialCode: "+34";
|
|
2828
|
+
readonly code: "ES";
|
|
2829
|
+
readonly emoji: "🇪🇸";
|
|
2830
|
+
} | {
|
|
2831
|
+
readonly name: "Sri Lanka";
|
|
2832
|
+
readonly dialCode: "+94";
|
|
2833
|
+
readonly code: "LK";
|
|
2834
|
+
readonly emoji: "🇱🇰";
|
|
2835
|
+
} | {
|
|
2836
|
+
readonly name: "Sudan";
|
|
2837
|
+
readonly dialCode: "+249";
|
|
2838
|
+
readonly code: "SD";
|
|
2839
|
+
readonly emoji: "🇸🇩";
|
|
2840
|
+
} | {
|
|
2841
|
+
readonly name: "Suriname";
|
|
2842
|
+
readonly dialCode: "+597";
|
|
2843
|
+
readonly code: "SR";
|
|
2844
|
+
readonly emoji: "🇸🇷";
|
|
2845
|
+
} | {
|
|
2846
|
+
readonly name: "Svalbard and Jan Mayen";
|
|
2847
|
+
readonly dialCode: "+47";
|
|
2848
|
+
readonly code: "SJ";
|
|
2849
|
+
readonly emoji: "🇸🇯";
|
|
2850
|
+
} | {
|
|
2851
|
+
readonly name: "Swaziland";
|
|
2852
|
+
readonly dialCode: "+268";
|
|
2853
|
+
readonly code: "SZ";
|
|
2854
|
+
readonly emoji: "🇸🇿";
|
|
2855
|
+
} | {
|
|
2856
|
+
readonly name: "Sweden";
|
|
2857
|
+
readonly dialCode: "+46";
|
|
2858
|
+
readonly code: "SE";
|
|
2859
|
+
readonly emoji: "🇸🇪";
|
|
2860
|
+
} | {
|
|
2861
|
+
readonly name: "Switzerland";
|
|
2862
|
+
readonly dialCode: "+41";
|
|
2863
|
+
readonly code: "CH";
|
|
2864
|
+
readonly emoji: "🇨🇭";
|
|
2865
|
+
} | {
|
|
2866
|
+
readonly name: "Syria";
|
|
2867
|
+
readonly dialCode: "+963";
|
|
2868
|
+
readonly code: "SY";
|
|
2869
|
+
readonly emoji: "🇸🇾";
|
|
2870
|
+
} | {
|
|
2871
|
+
readonly name: "Taiwan";
|
|
2872
|
+
readonly dialCode: "+886";
|
|
2873
|
+
readonly code: "TW";
|
|
2874
|
+
readonly emoji: "🇹🇼";
|
|
2875
|
+
} | {
|
|
2876
|
+
readonly name: "Tajikistan";
|
|
2877
|
+
readonly dialCode: "+992";
|
|
2878
|
+
readonly code: "TJ";
|
|
2879
|
+
readonly emoji: "🇹🇯";
|
|
2880
|
+
} | {
|
|
2881
|
+
readonly name: "Tanzania";
|
|
2882
|
+
readonly dialCode: "+255";
|
|
2883
|
+
readonly code: "TZ";
|
|
2884
|
+
readonly emoji: "🇹🇿";
|
|
2885
|
+
} | {
|
|
2886
|
+
readonly name: "Thailand";
|
|
2887
|
+
readonly dialCode: "+66";
|
|
2888
|
+
readonly code: "TH";
|
|
2889
|
+
readonly emoji: "🇹🇭";
|
|
2890
|
+
} | {
|
|
2891
|
+
readonly name: "Togo";
|
|
2892
|
+
readonly dialCode: "+228";
|
|
2893
|
+
readonly code: "TG";
|
|
2894
|
+
readonly emoji: "🇹🇬";
|
|
2895
|
+
} | {
|
|
2896
|
+
readonly name: "Tokelau";
|
|
2897
|
+
readonly dialCode: "+690";
|
|
2898
|
+
readonly code: "TK";
|
|
2899
|
+
readonly emoji: "🇹🇰";
|
|
2900
|
+
} | {
|
|
2901
|
+
readonly name: "Tonga";
|
|
2902
|
+
readonly dialCode: "+676";
|
|
2903
|
+
readonly code: "TO";
|
|
2904
|
+
readonly emoji: "🇹🇴";
|
|
2905
|
+
} | {
|
|
2906
|
+
readonly name: "Trinidad/Tobago";
|
|
2907
|
+
readonly dialCode: "+1";
|
|
2908
|
+
readonly code: "TT";
|
|
2909
|
+
readonly emoji: "🇹🇹";
|
|
2910
|
+
} | {
|
|
2911
|
+
readonly name: "Tunisia";
|
|
2912
|
+
readonly dialCode: "+216";
|
|
2913
|
+
readonly code: "TN";
|
|
2914
|
+
readonly emoji: "🇹🇳";
|
|
2915
|
+
} | {
|
|
2916
|
+
readonly name: "Turkey";
|
|
2917
|
+
readonly dialCode: "+90";
|
|
2918
|
+
readonly code: "TR";
|
|
2919
|
+
readonly emoji: "🇹🇷";
|
|
2920
|
+
} | {
|
|
2921
|
+
readonly name: "Turkmenistan";
|
|
2922
|
+
readonly dialCode: "+993";
|
|
2923
|
+
readonly code: "TM";
|
|
2924
|
+
readonly emoji: "🇹🇲";
|
|
2925
|
+
} | {
|
|
2926
|
+
readonly name: "Turks and Caicos Islands";
|
|
2927
|
+
readonly dialCode: "+1";
|
|
2928
|
+
readonly code: "TC";
|
|
2929
|
+
readonly emoji: "🇹🇨";
|
|
2930
|
+
} | {
|
|
2931
|
+
readonly name: "Tuvalu";
|
|
2932
|
+
readonly dialCode: "+688";
|
|
2933
|
+
readonly code: "TV";
|
|
2934
|
+
readonly emoji: "🇹🇻";
|
|
2935
|
+
} | {
|
|
2936
|
+
readonly name: "U.S. Virgin Islands";
|
|
2937
|
+
readonly dialCode: "+1";
|
|
2938
|
+
readonly code: "VI";
|
|
2939
|
+
readonly emoji: "🇻🇮";
|
|
2940
|
+
} | {
|
|
2941
|
+
readonly name: "Uganda";
|
|
2942
|
+
readonly dialCode: "+256";
|
|
2943
|
+
readonly code: "UG";
|
|
2944
|
+
readonly emoji: "🇺🇬";
|
|
2945
|
+
} | {
|
|
2946
|
+
readonly name: "Ukraine";
|
|
2947
|
+
readonly dialCode: "+380";
|
|
2948
|
+
readonly code: "UA";
|
|
2949
|
+
readonly emoji: "🇺🇦";
|
|
2950
|
+
} | {
|
|
2951
|
+
readonly name: "United Arab Emirates";
|
|
2952
|
+
readonly dialCode: "+971";
|
|
2953
|
+
readonly code: "AE";
|
|
2954
|
+
readonly emoji: "🇦🇪";
|
|
2955
|
+
} | {
|
|
2956
|
+
readonly name: "United Kingdom";
|
|
2957
|
+
readonly dialCode: "+44";
|
|
2958
|
+
readonly code: "GB";
|
|
2959
|
+
readonly emoji: "🇬🇧";
|
|
2960
|
+
} | {
|
|
2961
|
+
readonly name: "United States";
|
|
2962
|
+
readonly dialCode: "+1";
|
|
2963
|
+
readonly code: "US";
|
|
2964
|
+
readonly emoji: "🇺🇸";
|
|
2965
|
+
} | {
|
|
2966
|
+
readonly name: "Uruguay";
|
|
2967
|
+
readonly dialCode: "+598";
|
|
2968
|
+
readonly code: "UY";
|
|
2969
|
+
readonly emoji: "🇺🇾";
|
|
2970
|
+
} | {
|
|
2971
|
+
readonly name: "Uzbekistan";
|
|
2972
|
+
readonly dialCode: "+998";
|
|
2973
|
+
readonly code: "UZ";
|
|
2974
|
+
readonly emoji: "🇺🇿";
|
|
2975
|
+
} | {
|
|
2976
|
+
readonly name: "Vanuatu";
|
|
2977
|
+
readonly dialCode: "+678";
|
|
2978
|
+
readonly code: "VU";
|
|
2979
|
+
readonly emoji: "🇻🇺";
|
|
2980
|
+
} | {
|
|
2981
|
+
readonly name: "Vatican City";
|
|
2982
|
+
readonly dialCode: "+379";
|
|
2983
|
+
readonly code: "VA";
|
|
2984
|
+
readonly emoji: "🇻🇦";
|
|
2985
|
+
} | {
|
|
2986
|
+
readonly name: "Venezuela";
|
|
2987
|
+
readonly dialCode: "+58";
|
|
2988
|
+
readonly code: "VE";
|
|
2989
|
+
readonly emoji: "🇻🇪";
|
|
2990
|
+
} | {
|
|
2991
|
+
readonly name: "Vietnam";
|
|
2992
|
+
readonly dialCode: "+84";
|
|
2993
|
+
readonly code: "VN";
|
|
2994
|
+
readonly emoji: "🇻🇳";
|
|
2995
|
+
} | {
|
|
2996
|
+
readonly name: "Wallis and Futuna";
|
|
2997
|
+
readonly dialCode: "+681";
|
|
2998
|
+
readonly code: "WF";
|
|
2999
|
+
readonly emoji: "🇼🇫";
|
|
3000
|
+
} | {
|
|
3001
|
+
readonly name: "Western Sahara";
|
|
3002
|
+
readonly dialCode: "+212";
|
|
3003
|
+
readonly code: "EH";
|
|
3004
|
+
readonly emoji: "🇪🇭";
|
|
3005
|
+
} | {
|
|
3006
|
+
readonly name: "Yemen";
|
|
3007
|
+
readonly dialCode: "+967";
|
|
3008
|
+
readonly code: "YE";
|
|
3009
|
+
readonly emoji: "🇾🇪";
|
|
3010
|
+
} | {
|
|
3011
|
+
readonly name: "Zambia";
|
|
3012
|
+
readonly dialCode: "+260";
|
|
3013
|
+
readonly code: "ZM";
|
|
3014
|
+
readonly emoji: "🇿🇲";
|
|
3015
|
+
} | {
|
|
3016
|
+
readonly name: "Zimbabwe";
|
|
3017
|
+
readonly dialCode: "+263";
|
|
3018
|
+
readonly code: "ZW";
|
|
3019
|
+
readonly emoji: "🇿🇼";
|
|
3020
|
+
} | {
|
|
3021
|
+
readonly name: "Åland Islands";
|
|
3022
|
+
readonly dialCode: "+358";
|
|
3023
|
+
readonly code: "AX";
|
|
3024
|
+
readonly emoji: "🇦🇽";
|
|
3025
|
+
};
|
|
3026
|
+
declare const CountrySelector: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & react.RefAttributes<CountrySelectorRef>>;
|
|
3027
|
+
|
|
3028
|
+
type DividerProps = PropsWithChildren<ComponentProps<"div">>;
|
|
3029
|
+
declare function Divider({ className, children, ...props }: DividerProps): react_jsx_runtime.JSX.Element;
|
|
3030
|
+
|
|
3031
|
+
declare function Input({ children, before, label, action, ...props }: PropsWithChildren<ComponentProps<"input"> & {
|
|
3032
|
+
label: string;
|
|
3033
|
+
before?: ReactNode;
|
|
3034
|
+
action?: ReactNode;
|
|
3035
|
+
}>): react_jsx_runtime.JSX.Element;
|
|
3036
|
+
declare function Action({ className, ...props }: ComponentProps<"button">): react_jsx_runtime.JSX.Element;
|
|
3037
|
+
declare function SubmitButton(props: ComponentProps<"button">): react_jsx_runtime.JSX.Element;
|
|
3038
|
+
declare function ErrorMessage(): react_jsx_runtime.JSX.Element;
|
|
3039
|
+
declare const form: {
|
|
3040
|
+
useAppForm: <TFormData, TOnMount extends _tanstack_react_form.FormValidateOrFn<TFormData> | undefined, TOnChange extends _tanstack_react_form.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync extends _tanstack_react_form.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur extends _tanstack_react_form.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync extends _tanstack_react_form.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit extends _tanstack_react_form.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync extends _tanstack_react_form.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic extends _tanstack_react_form.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync extends _tanstack_react_form.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer extends _tanstack_react_form.FormAsyncValidateOrFn<TFormData> | undefined, TSubmitMeta>(props: _tanstack_react_form.FormOptions<TFormData, TOnMount, TOnChange, TOnChangeAsync, TOnBlur, TOnBlurAsync, TOnSubmit, TOnSubmitAsync, TOnDynamic, TOnDynamicAsync, TOnServer, TSubmitMeta>) => _tanstack_react_form.AppFieldExtendedReactFormApi<TFormData, TOnMount, TOnChange, TOnChangeAsync, TOnBlur, TOnBlurAsync, TOnSubmit, TOnSubmitAsync, TOnDynamic, TOnDynamicAsync, TOnServer, TSubmitMeta, {
|
|
3041
|
+
readonly Input: typeof Input;
|
|
3042
|
+
}, {
|
|
3043
|
+
readonly SubmitButton: typeof SubmitButton;
|
|
3044
|
+
readonly ErrorMessage: typeof ErrorMessage;
|
|
3045
|
+
readonly Action: typeof Action;
|
|
3046
|
+
}>;
|
|
3047
|
+
withForm: <TFormData, TOnMount extends _tanstack_react_form.FormValidateOrFn<TFormData> | undefined, TOnChange extends _tanstack_react_form.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync extends _tanstack_react_form.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur extends _tanstack_react_form.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync extends _tanstack_react_form.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit extends _tanstack_react_form.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync extends _tanstack_react_form.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic extends _tanstack_react_form.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync extends _tanstack_react_form.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer extends _tanstack_react_form.FormAsyncValidateOrFn<TFormData> | undefined, TSubmitMeta, TRenderProps extends object = {}>({ render, props, }: _tanstack_react_form.WithFormProps<TFormData, TOnMount, TOnChange, TOnChangeAsync, TOnBlur, TOnBlurAsync, TOnSubmit, TOnSubmitAsync, TOnDynamic, TOnDynamicAsync, TOnServer, TSubmitMeta, {
|
|
3048
|
+
readonly Input: typeof Input;
|
|
3049
|
+
}, {
|
|
3050
|
+
readonly SubmitButton: typeof SubmitButton;
|
|
3051
|
+
readonly ErrorMessage: typeof ErrorMessage;
|
|
3052
|
+
readonly Action: typeof Action;
|
|
3053
|
+
}, TRenderProps>) => (props: PropsWithChildren<NoInfer<[unknown] extends [TRenderProps] ? any : TRenderProps> & {
|
|
3054
|
+
form: _tanstack_react_form.AppFieldExtendedReactFormApi<[unknown] extends [TFormData] ? any : TFormData, [_tanstack_react_form.FormValidateOrFn<TFormData> | undefined] extends [TOnMount] ? [TOnMount] extends [TOnMount & (_tanstack_react_form.FormValidateOrFn<TFormData> | undefined)] ? any : TOnMount : TOnMount, [_tanstack_react_form.FormValidateOrFn<TFormData> | undefined] extends [TOnChange] ? [TOnChange] extends [TOnChange & (_tanstack_react_form.FormValidateOrFn<TFormData> | undefined)] ? any : TOnChange : TOnChange, [_tanstack_react_form.FormValidateOrFn<TFormData> | undefined] extends [TOnChangeAsync] ? [TOnChangeAsync] extends [TOnChangeAsync & (_tanstack_react_form.FormValidateOrFn<TFormData> | undefined)] ? any : TOnChangeAsync : TOnChangeAsync, [_tanstack_react_form.FormValidateOrFn<TFormData> | undefined] extends [TOnBlur] ? [TOnBlur] extends [TOnBlur & (_tanstack_react_form.FormValidateOrFn<TFormData> | undefined)] ? any : TOnBlur : TOnBlur, [_tanstack_react_form.FormValidateOrFn<TFormData> | undefined] extends [TOnBlurAsync] ? [TOnBlurAsync] extends [TOnBlurAsync & (_tanstack_react_form.FormValidateOrFn<TFormData> | undefined)] ? any : TOnBlurAsync : TOnBlurAsync, [_tanstack_react_form.FormValidateOrFn<TFormData> | undefined] extends [TOnSubmit] ? [TOnSubmit] extends [TOnSubmit & (_tanstack_react_form.FormValidateOrFn<TFormData> | undefined)] ? any : TOnSubmit : TOnSubmit, [_tanstack_react_form.FormValidateOrFn<TFormData> | undefined] extends [TOnSubmitAsync] ? [TOnSubmitAsync] extends [TOnSubmitAsync & (_tanstack_react_form.FormValidateOrFn<TFormData> | undefined)] ? any : TOnSubmitAsync : TOnSubmitAsync, [_tanstack_react_form.FormValidateOrFn<TFormData> | undefined] extends [TOnDynamic] ? [TOnDynamic] extends [TOnDynamic & (_tanstack_react_form.FormValidateOrFn<TFormData> | undefined)] ? any : TOnDynamic : TOnDynamic, [_tanstack_react_form.FormValidateOrFn<TFormData> | undefined] extends [TOnDynamicAsync] ? [TOnDynamicAsync] extends [TOnDynamicAsync & (_tanstack_react_form.FormValidateOrFn<TFormData> | undefined)] ? any : TOnDynamicAsync : TOnDynamicAsync, [_tanstack_react_form.FormValidateOrFn<TFormData> | undefined] extends [TOnServer] ? [TOnServer] extends [TOnServer & (_tanstack_react_form.FormValidateOrFn<TFormData> | undefined)] ? any : TOnServer : TOnServer, [unknown] extends [TSubmitMeta] ? any : TSubmitMeta, {
|
|
3055
|
+
readonly Input: typeof Input;
|
|
3056
|
+
}, {
|
|
3057
|
+
readonly SubmitButton: typeof SubmitButton;
|
|
3058
|
+
readonly ErrorMessage: typeof ErrorMessage;
|
|
3059
|
+
readonly Action: typeof Action;
|
|
3060
|
+
}>;
|
|
3061
|
+
}>) => react.JSX.Element;
|
|
3062
|
+
withFieldGroup: <TFieldGroupData, TSubmitMeta, TRenderProps extends Record<string, unknown> = {}>({ render, props, defaultValues, }: _tanstack_react_form.WithFieldGroupProps<TFieldGroupData, {
|
|
3063
|
+
readonly Input: typeof Input;
|
|
3064
|
+
}, {
|
|
3065
|
+
readonly SubmitButton: typeof SubmitButton;
|
|
3066
|
+
readonly ErrorMessage: typeof ErrorMessage;
|
|
3067
|
+
readonly Action: typeof Action;
|
|
3068
|
+
}, TSubmitMeta, TRenderProps>) => <TFormData, TFields extends _tanstack_react_form.DeepKeysOfType<TFormData, TFieldGroupData | null | undefined> | _tanstack_react_form.FieldsMap<TFormData, TFieldGroupData>, TOnMount extends _tanstack_react_form.FormValidateOrFn<TFormData> | undefined, TOnChange extends _tanstack_react_form.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync extends _tanstack_react_form.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur extends _tanstack_react_form.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync extends _tanstack_react_form.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit extends _tanstack_react_form.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync extends _tanstack_react_form.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic extends _tanstack_react_form.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync extends _tanstack_react_form.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer extends _tanstack_react_form.FormAsyncValidateOrFn<TFormData> | undefined, TFormSubmitMeta>(params: PropsWithChildren<NoInfer<TRenderProps> & {
|
|
3069
|
+
form: _tanstack_react_form.AppFieldExtendedReactFormApi<TFormData, TOnMount, TOnChange, TOnChangeAsync, TOnBlur, TOnBlurAsync, TOnSubmit, TOnSubmitAsync, TOnDynamic, TOnDynamicAsync, TOnServer, unknown extends TSubmitMeta ? TFormSubmitMeta : TSubmitMeta, {
|
|
3070
|
+
readonly Input: typeof Input;
|
|
3071
|
+
}, {
|
|
3072
|
+
readonly SubmitButton: typeof SubmitButton;
|
|
3073
|
+
readonly ErrorMessage: typeof ErrorMessage;
|
|
3074
|
+
readonly Action: typeof Action;
|
|
3075
|
+
}> | _tanstack_react_form.AppFieldExtendedReactFieldGroupApi<unknown, TFormData, string | _tanstack_react_form.FieldsMap<unknown, TFormData>, any, any, any, any, any, any, any, any, any, any, unknown extends TSubmitMeta ? TFormSubmitMeta : TSubmitMeta, {
|
|
3076
|
+
readonly Input: typeof Input;
|
|
3077
|
+
}, {
|
|
3078
|
+
readonly SubmitButton: typeof SubmitButton;
|
|
3079
|
+
readonly ErrorMessage: typeof ErrorMessage;
|
|
3080
|
+
readonly Action: typeof Action;
|
|
3081
|
+
}>;
|
|
3082
|
+
fields: TFields;
|
|
3083
|
+
}>) => react.JSX.Element;
|
|
3084
|
+
};
|
|
3085
|
+
|
|
3086
|
+
type FirebaseUIProviderProps = {
|
|
3087
|
+
children: React.ReactNode;
|
|
3088
|
+
ui: FirebaseUIStore;
|
|
3089
|
+
policies?: PolicyProps;
|
|
3090
|
+
};
|
|
3091
|
+
declare function FirebaseUIProvider({ children, ui, policies }: FirebaseUIProviderProps): react_jsx_runtime.JSX.Element;
|
|
3092
|
+
|
|
3093
|
+
export { AppleLogo, AppleSignInButton, type AppleSignInButtonProps, Button, type ButtonProps, Card, CardContent, CardHeader, type CardProps, CardSubtitle, CardTitle, CountrySelector, type CountrySelectorProps, type CountrySelectorRef, Divider, type DividerProps, EmailLinkAuthForm, type EmailLinkAuthFormProps, EmailLinkAuthScreen, type EmailLinkAuthScreenProps, FacebookLogo, FacebookSignInButton, type FacebookSignInButtonProps, FirebaseUIProvider, type FirebaseUIProviderProps, ForgotPasswordAuthForm, type ForgotPasswordAuthFormProps, ForgotPasswordAuthScreen, type ForgotPasswordAuthScreenProps, GitHubLogo, GitHubSignInButton, type GitHubSignInButtonProps, GoogleLogo, GoogleSignInButton, type GoogleSignInButtonProps, MicrosoftLogo, MicrosoftSignInButton, type MicrosoftSignInButtonProps, MultiFactorAuthEnrollmentForm, type MultiFactorAuthEnrollmentFormProps, MultiFactorAuthEnrollmentScreen, type MultiFactorAuthEnrollmentScreenProps, OAuthButton, type OAuthButtonProps, OAuthScreen, type OAuthScreenProps, PhoneAuthForm, type PhoneAuthFormProps, PhoneAuthScreen, type PhoneAuthScreenProps, Policies, PolicyContext, type PolicyProps, type PolicyURL, SignInAuthForm, type SignInAuthFormProps, SignInAuthScreen, type SignInAuthScreenProps, SignUpAuthForm, type SignUpAuthFormProps, SignUpAuthScreen, type SignUpAuthScreenProps, SmsMultiFactorAssertionForm, type SmsMultiFactorAssertionFormProps, TotpMultiFactorAssertionForm, TwitterLogo, TwitterSignInButton, type TwitterSignInButtonProps, form, useCountries, useDefaultCountry, useEmailLinkAuthForm, useEmailLinkAuthFormAction, useEmailLinkAuthFormCompleteSignIn, useEmailLinkAuthFormSchema, useForgotPasswordAuthForm, useForgotPasswordAuthFormAction, useForgotPasswordAuthFormSchema, useMultiFactorPhoneAuthNumberFormSchema, useMultiFactorPhoneAuthVerifyFormSchema, useMultiFactorTotpAuthNumberFormSchema, useMultiFactorTotpAuthVerifyFormSchema, usePhoneAuthNumberFormSchema, usePhoneAuthVerifyFormSchema, usePhoneNumberForm, usePhoneNumberFormAction, useRecaptchaVerifier, useRedirectError, useRequireDisplayName, useSignInAuthForm, useSignInAuthFormAction, useSignInAuthFormSchema, useSignInWithProvider, useSignUpAuthForm, useSignUpAuthFormAction, useSignUpAuthFormSchema, useSmsMultiFactorAssertionPhoneFormAction, useSmsMultiFactorAssertionVerifyFormAction, useTotpMultiFactorAssertionFormAction, useUI, useVerifyPhoneNumberForm, useVerifyPhoneNumberFormAction };
|