@cloud-ru/uikit-product-fields-predefined 0.13.3 → 0.13.5
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/CHANGELOG.md +25 -0
- package/dist/cjs/components/AIDisclaimer/AIDisclaimer.d.ts +4 -0
- package/dist/cjs/components/AIDisclaimer/AIDisclaimer.js +13 -0
- package/dist/cjs/components/AIDisclaimer/index.d.ts +1 -0
- package/dist/cjs/components/AIDisclaimer/index.js +17 -0
- package/dist/cjs/components/AIDisclaimer/styles.module.css +21 -0
- package/dist/cjs/components/FieldAi/FieldAi.d.ts +20 -0
- package/dist/cjs/components/FieldAi/FieldAi.js +66 -0
- package/dist/cjs/components/FieldAi/components/CheckItem/CheckItem.d.ts +8 -0
- package/dist/cjs/components/FieldAi/components/CheckItem/CheckItem.js +28 -0
- package/dist/cjs/components/FieldAi/components/CheckItem/index.d.ts +1 -0
- package/dist/cjs/components/FieldAi/components/CheckItem/index.js +17 -0
- package/dist/cjs/components/FieldAi/components/CheckItem/styles.module.css +22 -0
- package/dist/cjs/components/FieldAi/components/MobileFieldAi/MobileFieldAi.d.ts +5 -0
- package/dist/cjs/components/FieldAi/components/MobileFieldAi/MobileFieldAi.js +31 -0
- package/dist/cjs/components/FieldAi/components/MobileFieldAi/index.d.ts +1 -0
- package/dist/cjs/components/FieldAi/components/MobileFieldAi/index.js +17 -0
- package/dist/cjs/components/FieldAi/components/MobileFieldAi/styles.module.css +87 -0
- package/dist/cjs/components/FieldAi/components/PasswordValidation/PasswordValidation.d.ts +6 -0
- package/dist/cjs/components/FieldAi/components/PasswordValidation/PasswordValidation.js +23 -0
- package/dist/cjs/components/FieldAi/components/PasswordValidation/index.d.ts +1 -0
- package/dist/cjs/components/FieldAi/components/PasswordValidation/index.js +17 -0
- package/dist/cjs/components/FieldAi/components/PasswordValidation/styles.module.css +35 -0
- package/dist/cjs/components/FieldAi/components/TextArea/TextArea.d.ts +39 -0
- package/dist/cjs/components/FieldAi/components/TextArea/TextArea.js +33 -0
- package/dist/cjs/components/FieldAi/components/TextArea/index.d.ts +1 -0
- package/dist/cjs/components/FieldAi/components/TextArea/index.js +17 -0
- package/dist/cjs/components/FieldAi/components/TextArea/styles.module.css +32 -0
- package/dist/cjs/components/FieldAi/components/WithPasswordValidation/WithPasswordValidation.d.ts +9 -0
- package/dist/cjs/components/FieldAi/components/WithPasswordValidation/WithPasswordValidation.js +23 -0
- package/dist/cjs/components/FieldAi/components/WithPasswordValidation/index.d.ts +1 -0
- package/dist/cjs/components/FieldAi/components/WithPasswordValidation/index.js +17 -0
- package/dist/cjs/components/FieldAi/components/WithPasswordValidation/styles.module.css +5 -0
- package/dist/cjs/components/FieldAi/index.d.ts +1 -0
- package/dist/cjs/components/FieldAi/index.js +17 -0
- package/dist/cjs/components/FieldAi/styles.module.css +25 -0
- package/dist/cjs/components/FieldAi/utils.d.ts +9 -0
- package/dist/cjs/components/FieldAi/utils.js +19 -0
- package/dist/cjs/components/FieldChat/FieldChat.d.ts +15 -0
- package/dist/cjs/components/FieldChat/FieldChat.js +55 -0
- package/dist/cjs/components/FieldChat/components/Attachments/Attachments.d.ts +6 -0
- package/dist/cjs/components/FieldChat/components/Attachments/Attachments.js +20 -0
- package/dist/cjs/components/FieldChat/components/Attachments/index.d.ts +1 -0
- package/dist/cjs/components/FieldChat/components/Attachments/index.js +17 -0
- package/dist/cjs/components/FieldChat/components/Attachments/styles.module.css +9 -0
- package/dist/cjs/components/FieldChat/index.d.ts +1 -0
- package/dist/cjs/components/FieldChat/index.js +17 -0
- package/dist/cjs/components/FieldChat/styles.module.css +12 -0
- package/dist/cjs/components/FieldPhone/FieldPhone.d.ts +25 -0
- package/dist/cjs/components/FieldPhone/FieldPhone.js +131 -0
- package/dist/cjs/components/FieldPhone/__tests__/constants.d.ts +5 -0
- package/dist/cjs/components/FieldPhone/__tests__/constants.js +29 -0
- package/dist/cjs/components/FieldPhone/__tests__/formatPhoneNumber.spec.d.ts +1 -0
- package/dist/cjs/components/FieldPhone/__tests__/formatPhoneNumber.spec.js +14 -0
- package/dist/cjs/components/FieldPhone/__tests__/matchMedia.d.ts +1 -0
- package/dist/cjs/components/FieldPhone/__tests__/matchMedia.js +16 -0
- package/dist/cjs/components/FieldPhone/constants.d.ts +1 -0
- package/dist/cjs/components/FieldPhone/constants.js +4 -0
- package/dist/cjs/components/FieldPhone/countries.d.ts +3500 -0
- package/dist/cjs/components/FieldPhone/countries.js +1442 -0
- package/dist/cjs/components/FieldPhone/hooks/index.d.ts +2 -0
- package/dist/cjs/components/FieldPhone/hooks/index.js +18 -0
- package/dist/cjs/components/FieldPhone/hooks/useCountries.d.ts +2 -0
- package/dist/cjs/components/FieldPhone/hooks/useCountries.js +36 -0
- package/dist/cjs/components/FieldPhone/hooks/useMapCountryToOptions.d.ts +2 -0
- package/dist/cjs/components/FieldPhone/hooks/useMapCountryToOptions.js +19 -0
- package/dist/cjs/components/FieldPhone/index.d.ts +5 -0
- package/dist/cjs/components/FieldPhone/index.js +23 -0
- package/dist/cjs/components/FieldPhone/styles.module.css +3 -0
- package/dist/cjs/components/FieldPhone/types.d.ts +31 -0
- package/dist/cjs/components/FieldPhone/types.js +2 -0
- package/dist/cjs/components/FieldPhone/utils.d.ts +7 -0
- package/dist/cjs/components/FieldPhone/utils.js +57 -0
- package/dist/cjs/components/SelectCreate/SelectCreate.d.ts +21 -0
- package/dist/cjs/components/SelectCreate/SelectCreate.js +66 -0
- package/dist/cjs/components/SelectCreate/SelectFooter/SelectFooter.d.ts +7 -0
- package/dist/cjs/components/SelectCreate/SelectFooter/SelectFooter.js +16 -0
- package/dist/cjs/components/SelectCreate/SelectFooter/index.d.ts +1 -0
- package/dist/cjs/components/SelectCreate/SelectFooter/index.js +17 -0
- package/dist/cjs/components/SelectCreate/SelectFooter/styles.module.css +6 -0
- package/dist/cjs/components/SelectCreate/index.d.ts +1 -0
- package/dist/cjs/components/SelectCreate/index.js +17 -0
- package/dist/cjs/components/SelectCreate/types.d.ts +28 -0
- package/dist/cjs/components/SelectCreate/types.js +2 -0
- package/dist/cjs/components/SelectCreate/useSelectDataStates.d.ts +10 -0
- package/dist/cjs/components/SelectCreate/useSelectDataStates.js +26 -0
- package/dist/cjs/components/index.d.ts +5 -0
- package/dist/cjs/components/index.js +21 -0
- package/dist/cjs/helperComponents/FieldSubmitButton/FieldSubmitButton.d.ts +9 -0
- package/dist/cjs/helperComponents/FieldSubmitButton/FieldSubmitButton.js +15 -0
- package/dist/cjs/helperComponents/FieldSubmitButton/index.d.ts +1 -0
- package/dist/cjs/helperComponents/FieldSubmitButton/index.js +17 -0
- package/dist/cjs/helperComponents/TextAreaActionsFooter/TextAreaActionsFooter.d.ts +7 -0
- package/dist/cjs/helperComponents/TextAreaActionsFooter/TextAreaActionsFooter.js +12 -0
- package/dist/cjs/helperComponents/TextAreaActionsFooter/index.d.ts +1 -0
- package/dist/cjs/helperComponents/TextAreaActionsFooter/index.js +17 -0
- package/dist/cjs/helperComponents/TextAreaActionsFooter/styles.module.css +21 -0
- package/dist/cjs/helpers/capitalize.d.ts +1 -0
- package/dist/cjs/helpers/capitalize.js +6 -0
- package/dist/cjs/helpers/getSymbolsRangeFromMask.d.ts +8 -0
- package/dist/cjs/helpers/getSymbolsRangeFromMask.js +17 -0
- package/dist/cjs/helpers/index.d.ts +3 -0
- package/dist/cjs/helpers/index.js +19 -0
- package/dist/cjs/helpers/isTouchDevice.d.ts +2 -0
- package/dist/cjs/helpers/isTouchDevice.js +6 -0
- package/dist/cjs/hooks/index.d.ts +1 -0
- package/dist/cjs/hooks/index.js +17 -0
- package/dist/cjs/hooks/useOpen.d.ts +5 -0
- package/dist/cjs/hooks/useOpen.js +18 -0
- package/dist/cjs/index.d.ts +3 -0
- package/dist/cjs/index.js +22 -0
- package/dist/esm/components/AIDisclaimer/AIDisclaimer.d.ts +4 -0
- package/dist/esm/components/AIDisclaimer/AIDisclaimer.js +7 -0
- package/dist/esm/components/AIDisclaimer/index.d.ts +1 -0
- package/dist/esm/components/AIDisclaimer/index.js +1 -0
- package/dist/esm/components/AIDisclaimer/styles.module.css +21 -0
- package/dist/esm/components/FieldAi/FieldAi.d.ts +20 -0
- package/dist/esm/components/FieldAi/FieldAi.js +60 -0
- package/dist/esm/components/FieldAi/components/CheckItem/CheckItem.d.ts +8 -0
- package/dist/esm/components/FieldAi/components/CheckItem/CheckItem.js +22 -0
- package/dist/esm/components/FieldAi/components/CheckItem/index.d.ts +1 -0
- package/dist/esm/components/FieldAi/components/CheckItem/index.js +1 -0
- package/dist/esm/components/FieldAi/components/CheckItem/styles.module.css +22 -0
- package/dist/esm/components/FieldAi/components/MobileFieldAi/MobileFieldAi.d.ts +5 -0
- package/dist/esm/components/FieldAi/components/MobileFieldAi/MobileFieldAi.js +25 -0
- package/dist/esm/components/FieldAi/components/MobileFieldAi/index.d.ts +1 -0
- package/dist/esm/components/FieldAi/components/MobileFieldAi/index.js +1 -0
- package/dist/esm/components/FieldAi/components/MobileFieldAi/styles.module.css +87 -0
- package/dist/esm/components/FieldAi/components/PasswordValidation/PasswordValidation.d.ts +6 -0
- package/dist/esm/components/FieldAi/components/PasswordValidation/PasswordValidation.js +17 -0
- package/dist/esm/components/FieldAi/components/PasswordValidation/index.d.ts +1 -0
- package/dist/esm/components/FieldAi/components/PasswordValidation/index.js +1 -0
- package/dist/esm/components/FieldAi/components/PasswordValidation/styles.module.css +35 -0
- package/dist/esm/components/FieldAi/components/TextArea/TextArea.d.ts +39 -0
- package/dist/esm/components/FieldAi/components/TextArea/TextArea.js +27 -0
- package/dist/esm/components/FieldAi/components/TextArea/index.d.ts +1 -0
- package/dist/esm/components/FieldAi/components/TextArea/index.js +1 -0
- package/dist/esm/components/FieldAi/components/TextArea/styles.module.css +32 -0
- package/dist/esm/components/FieldAi/components/WithPasswordValidation/WithPasswordValidation.d.ts +9 -0
- package/dist/esm/components/FieldAi/components/WithPasswordValidation/WithPasswordValidation.js +17 -0
- package/dist/esm/components/FieldAi/components/WithPasswordValidation/index.d.ts +1 -0
- package/dist/esm/components/FieldAi/components/WithPasswordValidation/index.js +1 -0
- package/dist/esm/components/FieldAi/components/WithPasswordValidation/styles.module.css +5 -0
- package/dist/esm/components/FieldAi/index.d.ts +1 -0
- package/dist/esm/components/FieldAi/index.js +1 -0
- package/dist/esm/components/FieldAi/styles.module.css +25 -0
- package/dist/esm/components/FieldAi/utils.d.ts +9 -0
- package/dist/esm/components/FieldAi/utils.js +15 -0
- package/dist/esm/components/FieldChat/FieldChat.d.ts +15 -0
- package/dist/esm/components/FieldChat/FieldChat.js +49 -0
- package/dist/esm/components/FieldChat/components/Attachments/Attachments.d.ts +6 -0
- package/dist/esm/components/FieldChat/components/Attachments/Attachments.js +14 -0
- package/dist/esm/components/FieldChat/components/Attachments/index.d.ts +1 -0
- package/dist/esm/components/FieldChat/components/Attachments/index.js +1 -0
- package/dist/esm/components/FieldChat/components/Attachments/styles.module.css +9 -0
- package/dist/esm/components/FieldChat/index.d.ts +1 -0
- package/dist/esm/components/FieldChat/index.js +1 -0
- package/dist/esm/components/FieldChat/styles.module.css +12 -0
- package/dist/esm/components/FieldPhone/FieldPhone.d.ts +25 -0
- package/dist/esm/components/FieldPhone/FieldPhone.js +125 -0
- package/dist/esm/components/FieldPhone/__tests__/constants.d.ts +5 -0
- package/dist/esm/components/FieldPhone/__tests__/constants.js +26 -0
- package/dist/esm/components/FieldPhone/__tests__/formatPhoneNumber.spec.d.ts +1 -0
- package/dist/esm/components/FieldPhone/__tests__/formatPhoneNumber.spec.js +12 -0
- package/dist/esm/components/FieldPhone/__tests__/matchMedia.d.ts +1 -0
- package/dist/esm/components/FieldPhone/__tests__/matchMedia.js +14 -0
- package/dist/esm/components/FieldPhone/constants.d.ts +1 -0
- package/dist/esm/components/FieldPhone/constants.js +1 -0
- package/dist/esm/components/FieldPhone/countries.d.ts +3500 -0
- package/dist/esm/components/FieldPhone/countries.js +1436 -0
- package/dist/esm/components/FieldPhone/hooks/index.d.ts +2 -0
- package/dist/esm/components/FieldPhone/hooks/index.js +2 -0
- package/dist/esm/components/FieldPhone/hooks/useCountries.d.ts +2 -0
- package/dist/esm/components/FieldPhone/hooks/useCountries.js +33 -0
- package/dist/esm/components/FieldPhone/hooks/useMapCountryToOptions.d.ts +2 -0
- package/dist/esm/components/FieldPhone/hooks/useMapCountryToOptions.js +16 -0
- package/dist/esm/components/FieldPhone/index.d.ts +5 -0
- package/dist/esm/components/FieldPhone/index.js +4 -0
- package/dist/esm/components/FieldPhone/styles.module.css +3 -0
- package/dist/esm/components/FieldPhone/types.d.ts +31 -0
- package/dist/esm/components/FieldPhone/types.js +1 -0
- package/dist/esm/components/FieldPhone/utils.d.ts +7 -0
- package/dist/esm/components/FieldPhone/utils.js +51 -0
- package/dist/esm/components/SelectCreate/SelectCreate.d.ts +21 -0
- package/dist/esm/components/SelectCreate/SelectCreate.js +63 -0
- package/dist/esm/components/SelectCreate/SelectFooter/SelectFooter.d.ts +7 -0
- package/dist/esm/components/SelectCreate/SelectFooter/SelectFooter.js +10 -0
- package/dist/esm/components/SelectCreate/SelectFooter/index.d.ts +1 -0
- package/dist/esm/components/SelectCreate/SelectFooter/index.js +1 -0
- package/dist/esm/components/SelectCreate/SelectFooter/styles.module.css +6 -0
- package/dist/esm/components/SelectCreate/index.d.ts +1 -0
- package/dist/esm/components/SelectCreate/index.js +1 -0
- package/dist/esm/components/SelectCreate/types.d.ts +28 -0
- package/dist/esm/components/SelectCreate/types.js +1 -0
- package/dist/esm/components/SelectCreate/useSelectDataStates.d.ts +10 -0
- package/dist/esm/components/SelectCreate/useSelectDataStates.js +23 -0
- package/dist/esm/components/index.d.ts +5 -0
- package/dist/esm/components/index.js +5 -0
- package/dist/esm/helperComponents/FieldSubmitButton/FieldSubmitButton.d.ts +9 -0
- package/dist/esm/helperComponents/FieldSubmitButton/FieldSubmitButton.js +12 -0
- package/dist/esm/helperComponents/FieldSubmitButton/index.d.ts +1 -0
- package/dist/esm/helperComponents/FieldSubmitButton/index.js +1 -0
- package/dist/esm/helperComponents/TextAreaActionsFooter/TextAreaActionsFooter.d.ts +7 -0
- package/dist/esm/helperComponents/TextAreaActionsFooter/TextAreaActionsFooter.js +6 -0
- package/dist/esm/helperComponents/TextAreaActionsFooter/index.d.ts +1 -0
- package/dist/esm/helperComponents/TextAreaActionsFooter/index.js +1 -0
- package/dist/esm/helperComponents/TextAreaActionsFooter/styles.module.css +21 -0
- package/dist/esm/helpers/capitalize.d.ts +1 -0
- package/dist/esm/helpers/capitalize.js +3 -0
- package/dist/esm/helpers/getSymbolsRangeFromMask.d.ts +8 -0
- package/dist/esm/helpers/getSymbolsRangeFromMask.js +14 -0
- package/dist/esm/helpers/index.d.ts +3 -0
- package/dist/esm/helpers/index.js +3 -0
- package/dist/esm/helpers/isTouchDevice.d.ts +2 -0
- package/dist/esm/helpers/isTouchDevice.js +3 -0
- package/dist/esm/hooks/index.d.ts +1 -0
- package/dist/esm/hooks/index.js +1 -0
- package/dist/esm/hooks/useOpen.d.ts +5 -0
- package/dist/esm/hooks/useOpen.js +15 -0
- package/dist/esm/index.d.ts +3 -0
- package/dist/esm/index.js +3 -0
- package/dist/tsconfig.cjs.tsbuildinfo +1 -0
- package/dist/tsconfig.esm.tsbuildinfo +1 -0
- package/package.json +9 -8
|
@@ -0,0 +1,3500 @@
|
|
|
1
|
+
export declare const RUSSIA_COUNTRY_CODE: {
|
|
2
|
+
readonly value: "russia";
|
|
3
|
+
readonly iso2: "RU";
|
|
4
|
+
readonly mask: "XXX XXX-XX-XX";
|
|
5
|
+
readonly caption: "+7";
|
|
6
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
readonly enabled: true;
|
|
8
|
+
};
|
|
9
|
+
export declare const ABKHAZIA_COUNTRY_CODE: {
|
|
10
|
+
readonly value: "abkhazia";
|
|
11
|
+
readonly iso2: "RU";
|
|
12
|
+
readonly caption: "+7";
|
|
13
|
+
readonly mask: "XXX XXX-XX-XX";
|
|
14
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
15
|
+
readonly enabled: true;
|
|
16
|
+
};
|
|
17
|
+
export declare const AUSTRALIA_COUNTRY_CODE: {
|
|
18
|
+
readonly value: "australia";
|
|
19
|
+
readonly iso2: "AU";
|
|
20
|
+
readonly caption: "+61";
|
|
21
|
+
readonly mask: "X XXXX-XXXX";
|
|
22
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
23
|
+
readonly enabled: true;
|
|
24
|
+
};
|
|
25
|
+
export declare const AUSTRIA_COUNTRY_CODE: {
|
|
26
|
+
readonly value: "austria";
|
|
27
|
+
readonly iso2: "AT";
|
|
28
|
+
readonly caption: "+43";
|
|
29
|
+
readonly mask: "XXX XXX-XXXX";
|
|
30
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
31
|
+
readonly enabled: true;
|
|
32
|
+
};
|
|
33
|
+
export declare const AZERBAIJAN_COUNTRY_CODE: {
|
|
34
|
+
readonly value: "azerbaijan";
|
|
35
|
+
readonly iso2: "AZ";
|
|
36
|
+
readonly mask: "XX XXX-XX-XX";
|
|
37
|
+
readonly caption: "+994";
|
|
38
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
39
|
+
readonly enabled: false;
|
|
40
|
+
};
|
|
41
|
+
export declare const ALBANIA_COUNTRY_CODE: {
|
|
42
|
+
readonly value: "albania";
|
|
43
|
+
readonly iso2: "AL";
|
|
44
|
+
readonly caption: "+355";
|
|
45
|
+
readonly mask: "XXX XXX-XXX";
|
|
46
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
47
|
+
readonly enabled: true;
|
|
48
|
+
};
|
|
49
|
+
export declare const ALGERIA_COUNTRY_CODE: {
|
|
50
|
+
readonly value: "algeria";
|
|
51
|
+
readonly iso2: "DZ";
|
|
52
|
+
readonly caption: "+213";
|
|
53
|
+
readonly mask: "XX XXX-XXXX";
|
|
54
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
55
|
+
readonly enabled: true;
|
|
56
|
+
};
|
|
57
|
+
export declare const ANGOLA_COUNTRY_CODE: {
|
|
58
|
+
readonly value: "angola";
|
|
59
|
+
readonly iso2: "AO";
|
|
60
|
+
readonly caption: "+244";
|
|
61
|
+
readonly mask: "XXX XXXX";
|
|
62
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
63
|
+
readonly enabled: true;
|
|
64
|
+
};
|
|
65
|
+
export declare const ANDORRA_COUNTRY_CODE: {
|
|
66
|
+
readonly value: "andorra";
|
|
67
|
+
readonly iso2: "AD";
|
|
68
|
+
readonly caption: "+376";
|
|
69
|
+
readonly mask: "XXX XXXX";
|
|
70
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
71
|
+
readonly enabled: true;
|
|
72
|
+
};
|
|
73
|
+
export declare const ANTIGUA_AND_BARBUDA_COUNTRY_CODE: {
|
|
74
|
+
readonly value: "antiguaAndBarbuda";
|
|
75
|
+
readonly iso2: "AG";
|
|
76
|
+
readonly caption: "+1";
|
|
77
|
+
readonly mask: "268 XXX-XXXX";
|
|
78
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
79
|
+
readonly enabled: true;
|
|
80
|
+
};
|
|
81
|
+
export declare const ARMENIA_COUNTRY_CODE: {
|
|
82
|
+
readonly value: "armenia";
|
|
83
|
+
readonly iso2: "AM";
|
|
84
|
+
readonly mask: "XX XXX-XXX";
|
|
85
|
+
readonly caption: "+374";
|
|
86
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
87
|
+
readonly enabled: true;
|
|
88
|
+
};
|
|
89
|
+
export declare const BAHAMAS_COUNTRY_CODE: {
|
|
90
|
+
readonly value: "bahamas";
|
|
91
|
+
readonly iso2: "BS";
|
|
92
|
+
readonly caption: "+1";
|
|
93
|
+
readonly mask: "242 XXX-XXXX";
|
|
94
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
95
|
+
readonly enabled: true;
|
|
96
|
+
};
|
|
97
|
+
export declare const BANGLADESH_COUNTRY_CODE: {
|
|
98
|
+
readonly value: "bangladesh";
|
|
99
|
+
readonly iso2: "BD";
|
|
100
|
+
readonly caption: "+880";
|
|
101
|
+
readonly mask: "X XXX-XXXX";
|
|
102
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
103
|
+
readonly enabled: true;
|
|
104
|
+
};
|
|
105
|
+
export declare const BARBADOS_COUNTRY_CODE: {
|
|
106
|
+
readonly value: "barbados";
|
|
107
|
+
readonly iso2: "BB";
|
|
108
|
+
readonly caption: "+1";
|
|
109
|
+
readonly mask: "246 XXX-XXXX";
|
|
110
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
111
|
+
readonly enabled: true;
|
|
112
|
+
};
|
|
113
|
+
export declare const BAHRAIN_COUNTRY_CODE: {
|
|
114
|
+
readonly value: "bahrain";
|
|
115
|
+
readonly iso2: "BH";
|
|
116
|
+
readonly caption: "+973";
|
|
117
|
+
readonly mask: "XX XXX-XXX";
|
|
118
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
119
|
+
readonly enabled: true;
|
|
120
|
+
};
|
|
121
|
+
export declare const BELARUS_COUNTRY_CODE: {
|
|
122
|
+
readonly value: "belarus";
|
|
123
|
+
readonly iso2: "BY";
|
|
124
|
+
readonly mask: "XX XXX-XX-XX";
|
|
125
|
+
readonly caption: "+375";
|
|
126
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
127
|
+
readonly enabled: true;
|
|
128
|
+
};
|
|
129
|
+
export declare const BELIZE_COUNTRY_CODE: {
|
|
130
|
+
readonly value: "belize";
|
|
131
|
+
readonly iso2: "BZ";
|
|
132
|
+
readonly caption: "+501";
|
|
133
|
+
readonly mask: "XXX XXXX";
|
|
134
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
135
|
+
readonly enabled: true;
|
|
136
|
+
};
|
|
137
|
+
export declare const BELGIUM_COUNTRY_CODE: {
|
|
138
|
+
readonly value: "belgium";
|
|
139
|
+
readonly iso2: "BE";
|
|
140
|
+
readonly caption: "+32";
|
|
141
|
+
readonly mask: "XXX XXX-XXX";
|
|
142
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
143
|
+
readonly enabled: true;
|
|
144
|
+
};
|
|
145
|
+
export declare const BOSNIA_AND_HERZEGOVINA_COUNTRY_CODE: {
|
|
146
|
+
readonly value: "bosniaAndHerzegovina";
|
|
147
|
+
readonly iso2: "BA";
|
|
148
|
+
readonly caption: "+387";
|
|
149
|
+
readonly mask: "XX XXX-XXX";
|
|
150
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
151
|
+
readonly enabled: true;
|
|
152
|
+
};
|
|
153
|
+
export declare const BOTSWANA_COUNTRY_CODE: {
|
|
154
|
+
readonly value: "botswana";
|
|
155
|
+
readonly iso2: "BW";
|
|
156
|
+
readonly caption: "+267";
|
|
157
|
+
readonly mask: "XX XXX-XXX";
|
|
158
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
159
|
+
readonly enabled: true;
|
|
160
|
+
};
|
|
161
|
+
export declare const BRAZIL_COUNTRY_CODE: {
|
|
162
|
+
readonly value: "brazil";
|
|
163
|
+
readonly iso2: "BR";
|
|
164
|
+
readonly mask: "XX XXXXX-XXXX";
|
|
165
|
+
readonly caption: "+55";
|
|
166
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
167
|
+
readonly enabled: true;
|
|
168
|
+
};
|
|
169
|
+
export declare const BHUTAN_COUNTRY_CODE: {
|
|
170
|
+
readonly value: "bhutan";
|
|
171
|
+
readonly iso2: "BT";
|
|
172
|
+
readonly caption: "+975";
|
|
173
|
+
readonly mask: "XX XXX-XXX";
|
|
174
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
175
|
+
readonly enabled: true;
|
|
176
|
+
};
|
|
177
|
+
export declare const VANUATU_COUNTRY_CODE: {
|
|
178
|
+
readonly value: "vanuatu";
|
|
179
|
+
readonly iso2: "VU";
|
|
180
|
+
readonly caption: "+678";
|
|
181
|
+
readonly mask: "XXX XXXX";
|
|
182
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
183
|
+
readonly enabled: true;
|
|
184
|
+
};
|
|
185
|
+
export declare const HUNGARY_COUNTRY_CODE: {
|
|
186
|
+
readonly value: "hungary";
|
|
187
|
+
readonly iso2: "HU";
|
|
188
|
+
readonly caption: "+36";
|
|
189
|
+
readonly mask: "XXX XXX-XXX";
|
|
190
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
191
|
+
readonly enabled: true;
|
|
192
|
+
};
|
|
193
|
+
export declare const GUYANA_COUNTRY_CODE: {
|
|
194
|
+
readonly value: "guyana";
|
|
195
|
+
readonly iso2: "GY";
|
|
196
|
+
readonly caption: "+592";
|
|
197
|
+
readonly mask: "XXX XXXX";
|
|
198
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
199
|
+
readonly enabled: true;
|
|
200
|
+
};
|
|
201
|
+
export declare const GUATEMALA_COUNTRY_CODE: {
|
|
202
|
+
readonly value: "guatemala";
|
|
203
|
+
readonly iso2: "GT";
|
|
204
|
+
readonly caption: "+502";
|
|
205
|
+
readonly mask: "XXXX XXXX";
|
|
206
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
207
|
+
readonly enabled: true;
|
|
208
|
+
};
|
|
209
|
+
export declare const GERMANY_COUNTRY_CODE: {
|
|
210
|
+
readonly value: "germany";
|
|
211
|
+
readonly iso2: "DE";
|
|
212
|
+
readonly caption: "+49";
|
|
213
|
+
readonly mask: "XXX XXX-XXXX";
|
|
214
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
215
|
+
readonly enabled: true;
|
|
216
|
+
};
|
|
217
|
+
export declare const GUERNSEY_COUNTRY_CODE: {
|
|
218
|
+
readonly value: "guernsey";
|
|
219
|
+
readonly iso2: "GG";
|
|
220
|
+
readonly caption: "+44";
|
|
221
|
+
readonly mask: "1481 XXXXXX";
|
|
222
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
223
|
+
readonly enabled: true;
|
|
224
|
+
};
|
|
225
|
+
export declare const GIBRALTAR_COUNTRY_CODE: {
|
|
226
|
+
readonly value: "gibraltar";
|
|
227
|
+
readonly iso2: "GI";
|
|
228
|
+
readonly caption: "+350";
|
|
229
|
+
readonly mask: "XXX XXXXX";
|
|
230
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
231
|
+
readonly enabled: true;
|
|
232
|
+
};
|
|
233
|
+
export declare const HONDURAS_COUNTRY_CODE: {
|
|
234
|
+
readonly value: "honduras";
|
|
235
|
+
readonly iso2: "HN";
|
|
236
|
+
readonly caption: "+504";
|
|
237
|
+
readonly mask: "XXXX XXXX";
|
|
238
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
239
|
+
readonly enabled: true;
|
|
240
|
+
};
|
|
241
|
+
export declare const GREECE_COUNTRY_CODE: {
|
|
242
|
+
readonly value: "greece";
|
|
243
|
+
readonly iso2: "GR";
|
|
244
|
+
readonly caption: "+30";
|
|
245
|
+
readonly mask: "XXX XXX-XXXX";
|
|
246
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
247
|
+
readonly enabled: true;
|
|
248
|
+
};
|
|
249
|
+
export declare const GEORGIA_COUNTRY_CODE: {
|
|
250
|
+
readonly value: "georgia";
|
|
251
|
+
readonly iso2: "GE";
|
|
252
|
+
readonly mask: "XXX XX-XX-XX";
|
|
253
|
+
readonly caption: "+995";
|
|
254
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
255
|
+
readonly enabled: true;
|
|
256
|
+
};
|
|
257
|
+
export declare const DENMARK_COUNTRY_CODE: {
|
|
258
|
+
readonly value: "denmark";
|
|
259
|
+
readonly iso2: "DK";
|
|
260
|
+
readonly caption: "+45";
|
|
261
|
+
readonly mask: "XX XX-XX-XX";
|
|
262
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
263
|
+
readonly enabled: true;
|
|
264
|
+
};
|
|
265
|
+
export declare const DJIBOUTI_COUNTRY_CODE: {
|
|
266
|
+
readonly value: "djibouti";
|
|
267
|
+
readonly iso2: "DJ";
|
|
268
|
+
readonly caption: "+253";
|
|
269
|
+
readonly mask: "XXXX XXXX";
|
|
270
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
271
|
+
readonly enabled: true;
|
|
272
|
+
};
|
|
273
|
+
export declare const DOMINICAN_REPUBLIC_COUNTRY_CODE: {
|
|
274
|
+
readonly value: "dominicanRepublic";
|
|
275
|
+
readonly iso2: "DO";
|
|
276
|
+
readonly caption: "+1";
|
|
277
|
+
readonly mask: "XXX XXX-XXXX";
|
|
278
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
279
|
+
readonly enabled: true;
|
|
280
|
+
};
|
|
281
|
+
export declare const EGYPT_COUNTRY_CODE: {
|
|
282
|
+
readonly value: "egypt";
|
|
283
|
+
readonly iso2: "EG";
|
|
284
|
+
readonly mask: "XX XXXX-XXXX";
|
|
285
|
+
readonly caption: "+20";
|
|
286
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
287
|
+
readonly enabled: true;
|
|
288
|
+
};
|
|
289
|
+
export declare const ZIMBABWE_COUNTRY_CODE: {
|
|
290
|
+
readonly value: "zimbabwe";
|
|
291
|
+
readonly iso2: "ZW";
|
|
292
|
+
readonly caption: "+263";
|
|
293
|
+
readonly mask: "XX XXX-XXXX";
|
|
294
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
295
|
+
readonly enabled: true;
|
|
296
|
+
};
|
|
297
|
+
export declare const ISRAEL_COUNTRY_CODE: {
|
|
298
|
+
readonly value: "israel";
|
|
299
|
+
readonly iso2: "IL";
|
|
300
|
+
readonly caption: "+972";
|
|
301
|
+
readonly mask: "XX XXX-XXXX";
|
|
302
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
303
|
+
readonly enabled: true;
|
|
304
|
+
};
|
|
305
|
+
export declare const INDIA_COUNTRY_CODE: {
|
|
306
|
+
readonly value: "india";
|
|
307
|
+
readonly iso2: "IN";
|
|
308
|
+
readonly mask: "XXXXX-XXXXX";
|
|
309
|
+
readonly caption: "+91";
|
|
310
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
311
|
+
readonly enabled: true;
|
|
312
|
+
};
|
|
313
|
+
export declare const IRAQ_COUNTRY_CODE: {
|
|
314
|
+
readonly value: "iraq";
|
|
315
|
+
readonly iso2: "IQ";
|
|
316
|
+
readonly caption: "+964";
|
|
317
|
+
readonly mask: "XX XXX-XXXX";
|
|
318
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
319
|
+
readonly enabled: true;
|
|
320
|
+
};
|
|
321
|
+
export declare const IRAN_COUNTRY_CODE: {
|
|
322
|
+
readonly value: "iran";
|
|
323
|
+
readonly iso2: "IR";
|
|
324
|
+
readonly mask: "XXX XXX-XXXX";
|
|
325
|
+
readonly caption: "+98";
|
|
326
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
327
|
+
readonly enabled: true;
|
|
328
|
+
};
|
|
329
|
+
export declare const IRELAND_COUNTRY_CODE: {
|
|
330
|
+
readonly value: "ireland";
|
|
331
|
+
readonly iso2: "IE";
|
|
332
|
+
readonly caption: "+353";
|
|
333
|
+
readonly mask: "XXX XXX-XXX";
|
|
334
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
335
|
+
readonly enabled: true;
|
|
336
|
+
};
|
|
337
|
+
export declare const ICELAND_COUNTRY_CODE: {
|
|
338
|
+
readonly value: "iceland";
|
|
339
|
+
readonly iso2: "IS";
|
|
340
|
+
readonly caption: "+354";
|
|
341
|
+
readonly mask: "XXX XXXX";
|
|
342
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
343
|
+
readonly enabled: true;
|
|
344
|
+
};
|
|
345
|
+
export declare const SPAIN_COUNTRY_CODE: {
|
|
346
|
+
readonly value: "spain";
|
|
347
|
+
readonly iso2: "ES";
|
|
348
|
+
readonly caption: "+34";
|
|
349
|
+
readonly mask: "XXX XXX-XXX";
|
|
350
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
351
|
+
readonly enabled: true;
|
|
352
|
+
};
|
|
353
|
+
export declare const ITALY_COUNTRY_CODE: {
|
|
354
|
+
readonly value: "italy";
|
|
355
|
+
readonly iso2: "IT";
|
|
356
|
+
readonly caption: "+39";
|
|
357
|
+
readonly mask: "XXX XXXX-XXX";
|
|
358
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
359
|
+
readonly enabled: true;
|
|
360
|
+
};
|
|
361
|
+
export declare const KAZAKHSTAN_COUNTRY_CODE: {
|
|
362
|
+
readonly value: "kazakhstan";
|
|
363
|
+
readonly iso2: "KZ";
|
|
364
|
+
readonly mask: "XXX XXX-XX-XX";
|
|
365
|
+
readonly caption: "+7";
|
|
366
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
367
|
+
readonly enabled: true;
|
|
368
|
+
};
|
|
369
|
+
export declare const CAYMAN_ISLANDS_COUNTRY_CODE: {
|
|
370
|
+
readonly value: "caymanIslands";
|
|
371
|
+
readonly iso2: "KY";
|
|
372
|
+
readonly caption: "+1";
|
|
373
|
+
readonly mask: "345 XXX-XXXX";
|
|
374
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
375
|
+
readonly enabled: true;
|
|
376
|
+
};
|
|
377
|
+
export declare const CYPRUS_COUNTRY_CODE: {
|
|
378
|
+
readonly value: "cyprus";
|
|
379
|
+
readonly iso2: "CY";
|
|
380
|
+
readonly mask: "XX XXXXXX";
|
|
381
|
+
readonly caption: "+357";
|
|
382
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
383
|
+
readonly enabled: true;
|
|
384
|
+
};
|
|
385
|
+
export declare const KIRIBATI_COUNTRY_CODE: {
|
|
386
|
+
readonly value: "kiribati";
|
|
387
|
+
readonly iso2: "KI";
|
|
388
|
+
readonly caption: "+686";
|
|
389
|
+
readonly mask: "XXX XXXX";
|
|
390
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
391
|
+
readonly enabled: true;
|
|
392
|
+
};
|
|
393
|
+
export declare const COLOMBIA_COUNTRY_CODE: {
|
|
394
|
+
readonly value: "colombia";
|
|
395
|
+
readonly iso2: "CO";
|
|
396
|
+
readonly caption: "+57";
|
|
397
|
+
readonly mask: "XXX XXX-XXXX";
|
|
398
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
399
|
+
readonly enabled: true;
|
|
400
|
+
};
|
|
401
|
+
export declare const KOSOVO_COUNTRY_CODE: {
|
|
402
|
+
readonly value: "kosovo";
|
|
403
|
+
readonly iso2: "XK";
|
|
404
|
+
readonly caption: "+383";
|
|
405
|
+
readonly mask: "XXX XXXX";
|
|
406
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
407
|
+
readonly enabled: true;
|
|
408
|
+
};
|
|
409
|
+
export declare const KYRGYZSTAN_COUNTRY_CODE: {
|
|
410
|
+
readonly value: "kyrgyzstan";
|
|
411
|
+
readonly iso2: "KG";
|
|
412
|
+
readonly mask: "XXX XXX-XXX";
|
|
413
|
+
readonly caption: "+996";
|
|
414
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
415
|
+
readonly enabled: true;
|
|
416
|
+
};
|
|
417
|
+
export declare const LATVIA_COUNTRY_CODE: {
|
|
418
|
+
readonly value: "latvia";
|
|
419
|
+
readonly iso2: "LV";
|
|
420
|
+
readonly caption: "+371";
|
|
421
|
+
readonly mask: "XX XXX-XXX";
|
|
422
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
423
|
+
readonly enabled: true;
|
|
424
|
+
};
|
|
425
|
+
export declare const LESOTHO_COUNTRY_CODE: {
|
|
426
|
+
readonly value: "lesotho";
|
|
427
|
+
readonly iso2: "LS";
|
|
428
|
+
readonly caption: "+266";
|
|
429
|
+
readonly mask: "XXXX XXXX";
|
|
430
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
431
|
+
readonly enabled: true;
|
|
432
|
+
};
|
|
433
|
+
export declare const LEBANON_COUNTRY_CODE: {
|
|
434
|
+
readonly value: "lebanon";
|
|
435
|
+
readonly iso2: "LB";
|
|
436
|
+
readonly caption: "+961";
|
|
437
|
+
readonly mask: "XXX XX-XX";
|
|
438
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
439
|
+
readonly enabled: true;
|
|
440
|
+
};
|
|
441
|
+
export declare const LITHUANIA_COUNTRY_CODE: {
|
|
442
|
+
readonly value: "lithuania";
|
|
443
|
+
readonly iso2: "LT";
|
|
444
|
+
readonly caption: "+370";
|
|
445
|
+
readonly mask: "XXX XX-XXX";
|
|
446
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
447
|
+
readonly enabled: true;
|
|
448
|
+
};
|
|
449
|
+
export declare const LIECHTENSTEIN_COUNTRY_CODE: {
|
|
450
|
+
readonly value: "liechtenstein";
|
|
451
|
+
readonly iso2: "LI";
|
|
452
|
+
readonly caption: "+423";
|
|
453
|
+
readonly mask: "XXXX XXXX";
|
|
454
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
455
|
+
readonly enabled: true;
|
|
456
|
+
};
|
|
457
|
+
export declare const LUXEMBOURG_COUNTRY_CODE: {
|
|
458
|
+
readonly value: "luxembourg";
|
|
459
|
+
readonly iso2: "LU";
|
|
460
|
+
readonly caption: "+352";
|
|
461
|
+
readonly mask: "XXX XXX-XXX";
|
|
462
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
463
|
+
readonly enabled: true;
|
|
464
|
+
};
|
|
465
|
+
export declare const MAURITIUS_COUNTRY_CODE: {
|
|
466
|
+
readonly value: "mauritius";
|
|
467
|
+
readonly iso2: "MU";
|
|
468
|
+
readonly caption: "+230";
|
|
469
|
+
readonly mask: "XXXX XXXX";
|
|
470
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
471
|
+
readonly enabled: true;
|
|
472
|
+
};
|
|
473
|
+
export declare const MAURITANIA_COUNTRY_CODE: {
|
|
474
|
+
readonly value: "mauritania";
|
|
475
|
+
readonly iso2: "MR";
|
|
476
|
+
readonly caption: "+222";
|
|
477
|
+
readonly mask: "XX XX-XX-XX";
|
|
478
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
479
|
+
readonly enabled: true;
|
|
480
|
+
};
|
|
481
|
+
export declare const MADAGASCAR_COUNTRY_CODE: {
|
|
482
|
+
readonly value: "madagascar";
|
|
483
|
+
readonly iso2: "MG";
|
|
484
|
+
readonly caption: "+261";
|
|
485
|
+
readonly mask: "XX XX-XXX-XX";
|
|
486
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
487
|
+
readonly enabled: true;
|
|
488
|
+
};
|
|
489
|
+
export declare const MAYOTTE_COUNTRY_CODE: {
|
|
490
|
+
readonly value: "mayotte";
|
|
491
|
+
readonly iso2: "YT";
|
|
492
|
+
readonly caption: "+262";
|
|
493
|
+
readonly mask: "XXX XX-XX-XX";
|
|
494
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
495
|
+
readonly enabled: true;
|
|
496
|
+
};
|
|
497
|
+
export declare const MALI_COUNTRY_CODE: {
|
|
498
|
+
readonly value: "mali";
|
|
499
|
+
readonly iso2: "ML";
|
|
500
|
+
readonly caption: "+223";
|
|
501
|
+
readonly mask: "XX XX-XX-XX";
|
|
502
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
503
|
+
readonly enabled: true;
|
|
504
|
+
};
|
|
505
|
+
export declare const MALDIVES_COUNTRY_CODE: {
|
|
506
|
+
readonly value: "maldives";
|
|
507
|
+
readonly iso2: "MV";
|
|
508
|
+
readonly caption: "+960";
|
|
509
|
+
readonly mask: "XXX XXXX";
|
|
510
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
511
|
+
readonly enabled: true;
|
|
512
|
+
};
|
|
513
|
+
export declare const MALTA_COUNTRY_CODE: {
|
|
514
|
+
readonly value: "malta";
|
|
515
|
+
readonly iso2: "MT";
|
|
516
|
+
readonly caption: "+356";
|
|
517
|
+
readonly mask: "XXX XXXX";
|
|
518
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
519
|
+
readonly enabled: true;
|
|
520
|
+
};
|
|
521
|
+
export declare const MOROCCO_COUNTRY_CODE: {
|
|
522
|
+
readonly value: "morocco";
|
|
523
|
+
readonly iso2: "MA";
|
|
524
|
+
readonly caption: "+212";
|
|
525
|
+
readonly mask: "XXX XXXXXX";
|
|
526
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
527
|
+
readonly enabled: true;
|
|
528
|
+
};
|
|
529
|
+
export declare const MOLDOVA_COUNTRY_CODE: {
|
|
530
|
+
readonly value: "moldova";
|
|
531
|
+
readonly iso2: "MD";
|
|
532
|
+
readonly mask: "XXXX XXXX";
|
|
533
|
+
readonly caption: "+373";
|
|
534
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
535
|
+
readonly enabled: true;
|
|
536
|
+
};
|
|
537
|
+
export declare const MONACO_COUNTRY_CODE: {
|
|
538
|
+
readonly value: "monaco";
|
|
539
|
+
readonly iso2: "MC";
|
|
540
|
+
readonly caption: "+377";
|
|
541
|
+
readonly mask: "XX XXXXXXX";
|
|
542
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
543
|
+
readonly enabled: true;
|
|
544
|
+
};
|
|
545
|
+
export declare const MYANMAR_COUNTRY_CODE: {
|
|
546
|
+
readonly value: "myanmar";
|
|
547
|
+
readonly iso2: "MM";
|
|
548
|
+
readonly caption: "+95";
|
|
549
|
+
readonly mask: "XXX XXXX";
|
|
550
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
551
|
+
readonly enabled: true;
|
|
552
|
+
};
|
|
553
|
+
export declare const NAMIBIA_COUNTRY_CODE: {
|
|
554
|
+
readonly value: "namibia";
|
|
555
|
+
readonly iso2: "NA";
|
|
556
|
+
readonly caption: "+264";
|
|
557
|
+
readonly mask: "XX XXX-XXXX";
|
|
558
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
559
|
+
readonly enabled: true;
|
|
560
|
+
};
|
|
561
|
+
export declare const NIGER_COUNTRY_CODE: {
|
|
562
|
+
readonly value: "niger";
|
|
563
|
+
readonly iso2: "NE";
|
|
564
|
+
readonly caption: "+227";
|
|
565
|
+
readonly mask: "XX XX-XX-XX";
|
|
566
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
567
|
+
readonly enabled: true;
|
|
568
|
+
};
|
|
569
|
+
export declare const NETHERLANDS_COUNTRY_CODE: {
|
|
570
|
+
readonly value: "netherlands";
|
|
571
|
+
readonly iso2: "NL";
|
|
572
|
+
readonly mask: "XX XXX-XXXX";
|
|
573
|
+
readonly caption: "+31";
|
|
574
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
575
|
+
readonly enabled: true;
|
|
576
|
+
};
|
|
577
|
+
export declare const NEW_ZEALAND_COUNTRY_CODE: {
|
|
578
|
+
readonly value: "newZealand";
|
|
579
|
+
readonly iso2: "NZ";
|
|
580
|
+
readonly caption: "+64";
|
|
581
|
+
readonly mask: "XX XXX-XXXX";
|
|
582
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
583
|
+
readonly enabled: true;
|
|
584
|
+
};
|
|
585
|
+
export declare const NEW_CALEDONIA_COUNTRY_CODE: {
|
|
586
|
+
readonly value: "newCaledonia";
|
|
587
|
+
readonly iso2: "NC";
|
|
588
|
+
readonly caption: "+687";
|
|
589
|
+
readonly mask: "XX XX-XX";
|
|
590
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
591
|
+
readonly enabled: true;
|
|
592
|
+
};
|
|
593
|
+
export declare const UNITED_ARAB_EMIRATES_COUNTRY_CODE: {
|
|
594
|
+
readonly value: "unitedArabEmirates";
|
|
595
|
+
readonly iso2: "AE";
|
|
596
|
+
readonly mask: "XX XXX-XXXX";
|
|
597
|
+
readonly caption: "+971";
|
|
598
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
599
|
+
readonly enabled: true;
|
|
600
|
+
};
|
|
601
|
+
export declare const OMAN_COUNTRY_CODE: {
|
|
602
|
+
readonly value: "oman";
|
|
603
|
+
readonly iso2: "OM";
|
|
604
|
+
readonly caption: "+968";
|
|
605
|
+
readonly mask: "XXXX XXXX";
|
|
606
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
607
|
+
readonly enabled: true;
|
|
608
|
+
};
|
|
609
|
+
export declare const ISLE_OF_MAN_COUNTRY_CODE: {
|
|
610
|
+
readonly value: "isleOfMan";
|
|
611
|
+
readonly iso2: "IM";
|
|
612
|
+
readonly caption: "+44";
|
|
613
|
+
readonly mask: "1624 XXXXXX";
|
|
614
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
615
|
+
readonly enabled: true;
|
|
616
|
+
};
|
|
617
|
+
export declare const NORFOLK_ISLAND_COUNTRY_CODE: {
|
|
618
|
+
readonly value: "norfolkIsland";
|
|
619
|
+
readonly iso2: "NF";
|
|
620
|
+
readonly caption: "+672";
|
|
621
|
+
readonly mask: "X XX-XXX";
|
|
622
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
623
|
+
readonly enabled: true;
|
|
624
|
+
};
|
|
625
|
+
export declare const WALLIS_AND_FUTUNA_ISLANDS_COUNTRY_CODE: {
|
|
626
|
+
readonly value: "wallisAndFutunaIslands";
|
|
627
|
+
readonly iso2: "WF";
|
|
628
|
+
readonly caption: "+681";
|
|
629
|
+
readonly mask: "XX XXXX";
|
|
630
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
631
|
+
readonly enabled: true;
|
|
632
|
+
};
|
|
633
|
+
export declare const PERU_COUNTRY_CODE: {
|
|
634
|
+
readonly value: "peru";
|
|
635
|
+
readonly iso2: "PE";
|
|
636
|
+
readonly caption: "+51";
|
|
637
|
+
readonly mask: "XXX XXX-XXX";
|
|
638
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
639
|
+
readonly enabled: true;
|
|
640
|
+
};
|
|
641
|
+
export declare const POLAND_COUNTRY_CODE: {
|
|
642
|
+
readonly value: "poland";
|
|
643
|
+
readonly iso2: "PL";
|
|
644
|
+
readonly caption: "+48";
|
|
645
|
+
readonly mask: "XXX XXX-XXX";
|
|
646
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
647
|
+
readonly enabled: true;
|
|
648
|
+
};
|
|
649
|
+
export declare const PORTUGAL_COUNTRY_CODE: {
|
|
650
|
+
readonly value: "portugal";
|
|
651
|
+
readonly iso2: "PT";
|
|
652
|
+
readonly caption: "+351";
|
|
653
|
+
readonly mask: "XX XXX-XXXX";
|
|
654
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
655
|
+
readonly enabled: true;
|
|
656
|
+
};
|
|
657
|
+
export declare const TRANSNISTRIA_COUNTRY_CODE: {
|
|
658
|
+
readonly value: "transnistria";
|
|
659
|
+
readonly iso2: "MD";
|
|
660
|
+
readonly caption: "+373";
|
|
661
|
+
readonly mask: "XXX XX-XXX";
|
|
662
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
663
|
+
readonly enabled: true;
|
|
664
|
+
};
|
|
665
|
+
export declare const ROMANIA_COUNTRY_CODE: {
|
|
666
|
+
readonly value: "romania";
|
|
667
|
+
readonly iso2: "RO";
|
|
668
|
+
readonly mask: "XX XXX-XXXX";
|
|
669
|
+
readonly caption: "+40";
|
|
670
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
671
|
+
readonly enabled: true;
|
|
672
|
+
};
|
|
673
|
+
export declare const SAN_MARINO_COUNTRY_CODE: {
|
|
674
|
+
readonly value: "sanMarino";
|
|
675
|
+
readonly iso2: "SM";
|
|
676
|
+
readonly caption: "+378";
|
|
677
|
+
readonly mask: "XXXX XXXXXX";
|
|
678
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
679
|
+
readonly enabled: true;
|
|
680
|
+
};
|
|
681
|
+
export declare const SAO_TOME_AND_PRINCIPE_COUNTRY_CODE: {
|
|
682
|
+
readonly value: "saoTomeAndPrincipe";
|
|
683
|
+
readonly iso2: "ST";
|
|
684
|
+
readonly caption: "+239";
|
|
685
|
+
readonly mask: "XX XXXX";
|
|
686
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
687
|
+
readonly enabled: true;
|
|
688
|
+
};
|
|
689
|
+
export declare const SAUDI_ARABIA_COUNTRY_CODE: {
|
|
690
|
+
readonly value: "saudiArabia";
|
|
691
|
+
readonly iso2: "SA";
|
|
692
|
+
readonly mask: "X XXXX-XXXX";
|
|
693
|
+
readonly caption: "+966";
|
|
694
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
695
|
+
readonly enabled: true;
|
|
696
|
+
};
|
|
697
|
+
export declare const NORTH_MACEDONIA_COUNTRY_CODE: {
|
|
698
|
+
readonly value: "northMacedonia";
|
|
699
|
+
readonly iso2: "MK";
|
|
700
|
+
readonly caption: "+389";
|
|
701
|
+
readonly mask: "XXX XXXXX";
|
|
702
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
703
|
+
readonly enabled: true;
|
|
704
|
+
};
|
|
705
|
+
export declare const SAINT_PIERRE_AND_MIQUELON_COUNTRY_CODE: {
|
|
706
|
+
readonly value: "saintPierreAndMiquelon";
|
|
707
|
+
readonly iso2: "PM";
|
|
708
|
+
readonly caption: "+508";
|
|
709
|
+
readonly mask: "XX XXXX";
|
|
710
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
711
|
+
readonly enabled: true;
|
|
712
|
+
};
|
|
713
|
+
export declare const SERBIA_COUNTRY_CODE: {
|
|
714
|
+
readonly value: "serbia";
|
|
715
|
+
readonly iso2: "RS";
|
|
716
|
+
readonly mask: "XX XXX-XXXX";
|
|
717
|
+
readonly caption: "+381";
|
|
718
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
719
|
+
readonly enabled: true;
|
|
720
|
+
};
|
|
721
|
+
export declare const SINGAPORE_COUNTRY_CODE: {
|
|
722
|
+
readonly value: "singapore";
|
|
723
|
+
readonly iso2: "SG";
|
|
724
|
+
readonly caption: "+65";
|
|
725
|
+
readonly mask: "XXXX XXXX";
|
|
726
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
727
|
+
readonly enabled: true;
|
|
728
|
+
};
|
|
729
|
+
export declare const SINT_MAARTEN_COUNTRY_CODE: {
|
|
730
|
+
readonly value: "sintMaarten";
|
|
731
|
+
readonly iso2: "SX";
|
|
732
|
+
readonly caption: "+1";
|
|
733
|
+
readonly mask: "721 XXX-XXXX";
|
|
734
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
735
|
+
readonly enabled: true;
|
|
736
|
+
};
|
|
737
|
+
export declare const SYRIA_COUNTRY_CODE: {
|
|
738
|
+
readonly value: "syria";
|
|
739
|
+
readonly iso2: "SY";
|
|
740
|
+
readonly mask: "XX XXX-XXXX";
|
|
741
|
+
readonly caption: "+963";
|
|
742
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
743
|
+
readonly enabled: true;
|
|
744
|
+
};
|
|
745
|
+
export declare const SLOVAKIA_COUNTRY_CODE: {
|
|
746
|
+
readonly value: "slovakia";
|
|
747
|
+
readonly iso2: "SK";
|
|
748
|
+
readonly caption: "+421";
|
|
749
|
+
readonly mask: "XXX XXX-XXX";
|
|
750
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
751
|
+
readonly enabled: true;
|
|
752
|
+
};
|
|
753
|
+
export declare const SOMALILAND_COUNTRY_CODE: {
|
|
754
|
+
readonly value: "somaliland";
|
|
755
|
+
readonly iso2: "SO";
|
|
756
|
+
readonly caption: "+252";
|
|
757
|
+
readonly mask: "XX XXXXXXX";
|
|
758
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
759
|
+
readonly enabled: true;
|
|
760
|
+
};
|
|
761
|
+
export declare const SURINAME_COUNTRY_CODE: {
|
|
762
|
+
readonly value: "suriname";
|
|
763
|
+
readonly iso2: "SR";
|
|
764
|
+
readonly caption: "+597";
|
|
765
|
+
readonly mask: "XXX XXXX";
|
|
766
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
767
|
+
readonly enabled: true;
|
|
768
|
+
};
|
|
769
|
+
export declare const SIERRA_LEONE_COUNTRY_CODE: {
|
|
770
|
+
readonly value: "sierraLeone";
|
|
771
|
+
readonly iso2: "SL";
|
|
772
|
+
readonly caption: "+232";
|
|
773
|
+
readonly mask: "XX XXXXXX";
|
|
774
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
775
|
+
readonly enabled: true;
|
|
776
|
+
};
|
|
777
|
+
export declare const TAJIKISTAN_COUNTRY_CODE: {
|
|
778
|
+
readonly value: "tajikistan";
|
|
779
|
+
readonly iso2: "TJ";
|
|
780
|
+
readonly mask: "XX XXX-XXXX";
|
|
781
|
+
readonly caption: "+992";
|
|
782
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
783
|
+
readonly enabled: true;
|
|
784
|
+
};
|
|
785
|
+
export declare const TONGA_COUNTRY_CODE: {
|
|
786
|
+
readonly value: "tonga";
|
|
787
|
+
readonly iso2: "TO";
|
|
788
|
+
readonly caption: "+676";
|
|
789
|
+
readonly mask: "XX XXX";
|
|
790
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
791
|
+
readonly enabled: true;
|
|
792
|
+
};
|
|
793
|
+
export declare const TUVALU_COUNTRY_CODE: {
|
|
794
|
+
readonly value: "tuvalu";
|
|
795
|
+
readonly iso2: "TV";
|
|
796
|
+
readonly caption: "+688";
|
|
797
|
+
readonly mask: "XXXXX";
|
|
798
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
799
|
+
readonly enabled: true;
|
|
800
|
+
};
|
|
801
|
+
export declare const TURKMENISTAN_COUNTRY_CODE: {
|
|
802
|
+
readonly value: "turkmenistan";
|
|
803
|
+
readonly iso2: "TM";
|
|
804
|
+
readonly caption: "+993";
|
|
805
|
+
readonly mask: "XX XXXXXX";
|
|
806
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
807
|
+
readonly enabled: true;
|
|
808
|
+
};
|
|
809
|
+
export declare const TURKEY_COUNTRY_CODE: {
|
|
810
|
+
readonly value: "turkey";
|
|
811
|
+
readonly iso2: "TR";
|
|
812
|
+
readonly caption: "+90";
|
|
813
|
+
readonly mask: "XXX XXX-XXXX";
|
|
814
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
815
|
+
readonly enabled: true;
|
|
816
|
+
};
|
|
817
|
+
export declare const UZBEKISTAN_COUNTRY_CODE: {
|
|
818
|
+
readonly value: "uzbekistan";
|
|
819
|
+
readonly iso2: "UZ";
|
|
820
|
+
readonly mask: "XX XXX-XX-XX";
|
|
821
|
+
readonly caption: "+998";
|
|
822
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
823
|
+
readonly enabled: true;
|
|
824
|
+
};
|
|
825
|
+
export declare const UKRAINE_COUNTRY_CODE: {
|
|
826
|
+
readonly value: "ukraine";
|
|
827
|
+
readonly iso2: "UA";
|
|
828
|
+
readonly caption: "+380";
|
|
829
|
+
readonly mask: "XX XXX-XX-XX";
|
|
830
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
831
|
+
readonly enabled: true;
|
|
832
|
+
};
|
|
833
|
+
export declare const URUGUAY_COUNTRY_CODE: {
|
|
834
|
+
readonly value: "uruguay";
|
|
835
|
+
readonly iso2: "UY";
|
|
836
|
+
readonly caption: "+598";
|
|
837
|
+
readonly mask: "XX XXX-XXX";
|
|
838
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
839
|
+
readonly enabled: true;
|
|
840
|
+
};
|
|
841
|
+
export declare const FIJI_COUNTRY_CODE: {
|
|
842
|
+
readonly value: "fiji";
|
|
843
|
+
readonly iso2: "FJ";
|
|
844
|
+
readonly caption: "+679";
|
|
845
|
+
readonly mask: "XXX XXXX";
|
|
846
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
847
|
+
readonly enabled: true;
|
|
848
|
+
};
|
|
849
|
+
export declare const FINLAND_COUNTRY_CODE: {
|
|
850
|
+
readonly value: "finland";
|
|
851
|
+
readonly iso2: "FI";
|
|
852
|
+
readonly caption: "+358";
|
|
853
|
+
readonly mask: "XXX XXX-XX-XX";
|
|
854
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
855
|
+
readonly enabled: true;
|
|
856
|
+
};
|
|
857
|
+
export declare const FRANCE_COUNTRY_CODE: {
|
|
858
|
+
readonly value: "france";
|
|
859
|
+
readonly iso2: "FR";
|
|
860
|
+
readonly caption: "+33";
|
|
861
|
+
readonly mask: "XXX XXX-XXX";
|
|
862
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
863
|
+
readonly enabled: true;
|
|
864
|
+
};
|
|
865
|
+
export declare const FRENCH_POLYNESIA_COUNTRY_CODE: {
|
|
866
|
+
readonly value: "frenchPolynesia";
|
|
867
|
+
readonly iso2: "PF";
|
|
868
|
+
readonly caption: "+689";
|
|
869
|
+
readonly mask: "XX XXXXXXX";
|
|
870
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
871
|
+
readonly enabled: true;
|
|
872
|
+
};
|
|
873
|
+
export declare const CROATIA_COUNTRY_CODE: {
|
|
874
|
+
readonly value: "croatia";
|
|
875
|
+
readonly iso2: "HR";
|
|
876
|
+
readonly caption: "+385";
|
|
877
|
+
readonly mask: "XX XXX-XXXX";
|
|
878
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
879
|
+
readonly enabled: true;
|
|
880
|
+
};
|
|
881
|
+
export declare const CENTRAL_AFRICAN_REPUBLIC_COUNTRY_CODE: {
|
|
882
|
+
readonly value: "centralAfricanRepublic";
|
|
883
|
+
readonly iso2: "CF";
|
|
884
|
+
readonly caption: "+236";
|
|
885
|
+
readonly mask: "XX XXX-XXX";
|
|
886
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
887
|
+
readonly enabled: true;
|
|
888
|
+
};
|
|
889
|
+
export declare const MONTENEGRO_COUNTRY_CODE: {
|
|
890
|
+
readonly value: "montenegro";
|
|
891
|
+
readonly iso2: "ME";
|
|
892
|
+
readonly caption: "+382";
|
|
893
|
+
readonly mask: "XX XXX-XXX";
|
|
894
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
895
|
+
readonly enabled: true;
|
|
896
|
+
};
|
|
897
|
+
export declare const SWITZERLAND_COUNTRY_CODE: {
|
|
898
|
+
readonly value: "switzerland";
|
|
899
|
+
readonly iso2: "CH";
|
|
900
|
+
readonly caption: "+41";
|
|
901
|
+
readonly mask: "XX XXX-XXXX";
|
|
902
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
903
|
+
readonly enabled: true;
|
|
904
|
+
};
|
|
905
|
+
export declare const ESTONIA_COUNTRY_CODE: {
|
|
906
|
+
readonly value: "estonia";
|
|
907
|
+
readonly iso2: "EE";
|
|
908
|
+
readonly caption: "+372";
|
|
909
|
+
readonly mask: "XXXX XXXX";
|
|
910
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
911
|
+
readonly enabled: true;
|
|
912
|
+
};
|
|
913
|
+
export declare const ETHIOPIA_COUNTRY_CODE: {
|
|
914
|
+
readonly value: "ethiopia";
|
|
915
|
+
readonly iso2: "ET";
|
|
916
|
+
readonly mask: "XX XXX-XXXX";
|
|
917
|
+
readonly caption: "+251";
|
|
918
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
919
|
+
readonly enabled: true;
|
|
920
|
+
};
|
|
921
|
+
export declare const SOUTH_AFRICA_COUNTRY_CODE: {
|
|
922
|
+
readonly value: "southAfrica";
|
|
923
|
+
readonly iso2: "ZA";
|
|
924
|
+
readonly mask: "XX XXX-XXXX";
|
|
925
|
+
readonly caption: "+27";
|
|
926
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
927
|
+
readonly enabled: true;
|
|
928
|
+
};
|
|
929
|
+
export declare const SOUTH_KOREA_COUNTRY_CODE: {
|
|
930
|
+
readonly value: "southKorea";
|
|
931
|
+
readonly iso2: "KR";
|
|
932
|
+
readonly caption: "+82";
|
|
933
|
+
readonly mask: "XX XXXX-XXXX";
|
|
934
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
935
|
+
readonly enabled: true;
|
|
936
|
+
};
|
|
937
|
+
export declare const SOUTH_SUDAN_COUNTRY_CODE: {
|
|
938
|
+
readonly value: "southSudan";
|
|
939
|
+
readonly iso2: "SS";
|
|
940
|
+
readonly caption: "+211";
|
|
941
|
+
readonly mask: "XX XXX-XXXX";
|
|
942
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
943
|
+
readonly enabled: true;
|
|
944
|
+
};
|
|
945
|
+
export declare const JAPAN_COUNTRY_CODE: {
|
|
946
|
+
readonly value: "japan";
|
|
947
|
+
readonly iso2: "JP";
|
|
948
|
+
readonly caption: "+81";
|
|
949
|
+
readonly mask: "XX XXXX-XXXX";
|
|
950
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
951
|
+
readonly enabled: true;
|
|
952
|
+
};
|
|
953
|
+
export declare const TAIWAN_COUNTRY_CODE: {
|
|
954
|
+
readonly value: "taiwan";
|
|
955
|
+
readonly iso2: "TW";
|
|
956
|
+
readonly caption: "+886";
|
|
957
|
+
readonly mask: "XXX XXX XXX";
|
|
958
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
959
|
+
readonly enabled: true;
|
|
960
|
+
};
|
|
961
|
+
export declare const NIGERIA_COUNTRY_CODE: {
|
|
962
|
+
readonly value: "nigeria";
|
|
963
|
+
readonly iso2: "NG";
|
|
964
|
+
readonly caption: "+234";
|
|
965
|
+
readonly mask: "XXX XXX XXXX";
|
|
966
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
967
|
+
readonly enabled: true;
|
|
968
|
+
};
|
|
969
|
+
export declare const BENIN_COUNTRY_CODE: {
|
|
970
|
+
readonly value: "benin";
|
|
971
|
+
readonly iso2: "BJ";
|
|
972
|
+
readonly caption: "+229";
|
|
973
|
+
readonly mask: "XX XX XX XX";
|
|
974
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
975
|
+
readonly enabled: true;
|
|
976
|
+
};
|
|
977
|
+
export declare const CAMEROON_COUNTRY_CODE: {
|
|
978
|
+
readonly value: "cameroon";
|
|
979
|
+
readonly iso2: "CM";
|
|
980
|
+
readonly caption: "+237";
|
|
981
|
+
readonly mask: "XXX XX XX XX";
|
|
982
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
983
|
+
readonly enabled: true;
|
|
984
|
+
};
|
|
985
|
+
export declare const GHANA_COUNTRY_CODE: {
|
|
986
|
+
readonly value: "ghana";
|
|
987
|
+
readonly iso2: "GH";
|
|
988
|
+
readonly caption: "+233";
|
|
989
|
+
readonly mask: "XX XXX XXXX";
|
|
990
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
991
|
+
readonly enabled: true;
|
|
992
|
+
};
|
|
993
|
+
export declare const RWANDA_COUNTRY_CODE: {
|
|
994
|
+
readonly value: "rwanda";
|
|
995
|
+
readonly iso2: "RW";
|
|
996
|
+
readonly caption: "+250";
|
|
997
|
+
readonly mask: "XX XXX XXXX";
|
|
998
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
999
|
+
readonly enabled: true;
|
|
1000
|
+
};
|
|
1001
|
+
export declare const ZAMBIA_COUNTRY_CODE: {
|
|
1002
|
+
readonly value: "zambia";
|
|
1003
|
+
readonly iso2: "ZM";
|
|
1004
|
+
readonly caption: "+260";
|
|
1005
|
+
readonly mask: "XX XXX XXXX";
|
|
1006
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1007
|
+
readonly enabled: true;
|
|
1008
|
+
};
|
|
1009
|
+
export declare const COTE_D_IVOIRE_COUNTRY_CODE: {
|
|
1010
|
+
readonly value: "coteDIvoire";
|
|
1011
|
+
readonly iso2: "CI";
|
|
1012
|
+
readonly caption: "+225";
|
|
1013
|
+
readonly mask: "XX XX XX XX XX";
|
|
1014
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1015
|
+
readonly enabled: true;
|
|
1016
|
+
};
|
|
1017
|
+
export declare const UGANDA_COUNTRY_CODE: {
|
|
1018
|
+
readonly value: "uganda";
|
|
1019
|
+
readonly iso2: "UG";
|
|
1020
|
+
readonly caption: "+256";
|
|
1021
|
+
readonly mask: "7X XXX XXXX";
|
|
1022
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1023
|
+
readonly enabled: true;
|
|
1024
|
+
};
|
|
1025
|
+
export declare const CONGO_COUNTRY_CODE: {
|
|
1026
|
+
readonly value: "congo";
|
|
1027
|
+
readonly iso2: "CG";
|
|
1028
|
+
readonly caption: "+242";
|
|
1029
|
+
readonly mask: "XX XXX XXXX";
|
|
1030
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1031
|
+
readonly enabled: true;
|
|
1032
|
+
};
|
|
1033
|
+
export declare const GUINEA_COUNTRY_CODE: {
|
|
1034
|
+
readonly value: "guinea";
|
|
1035
|
+
readonly iso2: "GN";
|
|
1036
|
+
readonly caption: "+224";
|
|
1037
|
+
readonly mask: "6XX XX XX XX";
|
|
1038
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1039
|
+
readonly enabled: true;
|
|
1040
|
+
};
|
|
1041
|
+
export declare const SUDAN_COUNTRY_CODE: {
|
|
1042
|
+
readonly value: "sudan";
|
|
1043
|
+
readonly iso2: "SD";
|
|
1044
|
+
readonly caption: "+249";
|
|
1045
|
+
readonly mask: "XX XXX XXXX";
|
|
1046
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1047
|
+
readonly enabled: true;
|
|
1048
|
+
};
|
|
1049
|
+
export declare const KENYA_COUNTRY_CODE: {
|
|
1050
|
+
readonly value: "kenya";
|
|
1051
|
+
readonly iso2: "KE";
|
|
1052
|
+
readonly caption: "+254";
|
|
1053
|
+
readonly mask: "XXX XXX XXX";
|
|
1054
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1055
|
+
readonly enabled: true;
|
|
1056
|
+
};
|
|
1057
|
+
export declare const JORDAN_COUNTRY_CODE: {
|
|
1058
|
+
readonly value: "jordan";
|
|
1059
|
+
readonly iso2: "JO";
|
|
1060
|
+
readonly caption: "+962";
|
|
1061
|
+
readonly mask: "7X XXX XXXX";
|
|
1062
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1063
|
+
readonly enabled: true;
|
|
1064
|
+
};
|
|
1065
|
+
export declare const LIBYA_COUNTRY_CODE: {
|
|
1066
|
+
readonly value: "libya";
|
|
1067
|
+
readonly iso2: "LY";
|
|
1068
|
+
readonly caption: "+218";
|
|
1069
|
+
readonly mask: "9X XXX XXXX";
|
|
1070
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1071
|
+
readonly enabled: true;
|
|
1072
|
+
};
|
|
1073
|
+
export declare const SWEDEN_COUNTRY_CODE: {
|
|
1074
|
+
readonly value: "sweden";
|
|
1075
|
+
readonly iso2: "SE";
|
|
1076
|
+
readonly caption: "+46";
|
|
1077
|
+
readonly mask: "7X XXX XX XX";
|
|
1078
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1079
|
+
readonly enabled: true;
|
|
1080
|
+
};
|
|
1081
|
+
export declare const CHAD_COUNTRY_CODE: {
|
|
1082
|
+
readonly value: "chad";
|
|
1083
|
+
readonly iso2: "TD";
|
|
1084
|
+
readonly caption: "+235";
|
|
1085
|
+
readonly mask: "XX XX XX XX";
|
|
1086
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1087
|
+
readonly enabled: true;
|
|
1088
|
+
};
|
|
1089
|
+
export declare const NORWAY_COUNTRY_CODE: {
|
|
1090
|
+
readonly value: "norway";
|
|
1091
|
+
readonly iso2: "NO";
|
|
1092
|
+
readonly caption: "+47";
|
|
1093
|
+
readonly mask: "XXX XX XXX";
|
|
1094
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1095
|
+
readonly enabled: true;
|
|
1096
|
+
};
|
|
1097
|
+
export declare const HONG_KONG_COUNTRY_CODE: {
|
|
1098
|
+
readonly value: "hongKong";
|
|
1099
|
+
readonly iso2: "HK";
|
|
1100
|
+
readonly caption: "+852";
|
|
1101
|
+
readonly mask: "XXXX XXXX";
|
|
1102
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1103
|
+
readonly enabled: true;
|
|
1104
|
+
};
|
|
1105
|
+
export declare const COSTA_RICA_COUNTRY_CODE: {
|
|
1106
|
+
readonly value: "costaRica";
|
|
1107
|
+
readonly iso2: "CR";
|
|
1108
|
+
readonly caption: "+506";
|
|
1109
|
+
readonly mask: "XXXX XXXX";
|
|
1110
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1111
|
+
readonly enabled: true;
|
|
1112
|
+
};
|
|
1113
|
+
export declare const CHILE_COUNTRY_CODE: {
|
|
1114
|
+
readonly value: "chile";
|
|
1115
|
+
readonly iso2: "CL";
|
|
1116
|
+
readonly caption: "+56";
|
|
1117
|
+
readonly mask: "9 XXXX XXXX";
|
|
1118
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1119
|
+
readonly enabled: true;
|
|
1120
|
+
};
|
|
1121
|
+
export declare const ARGENTINA_COUNTRY_CODE: {
|
|
1122
|
+
readonly value: "argentina";
|
|
1123
|
+
readonly iso2: "AR";
|
|
1124
|
+
readonly caption: "+54";
|
|
1125
|
+
readonly mask: "9 XX XXXX XXXX";
|
|
1126
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1127
|
+
readonly enabled: true;
|
|
1128
|
+
};
|
|
1129
|
+
export declare const ECUADOR_COUNTRY_CODE: {
|
|
1130
|
+
readonly value: "ecuador";
|
|
1131
|
+
readonly iso2: "EC";
|
|
1132
|
+
readonly caption: "+593";
|
|
1133
|
+
readonly mask: "9X XXX XXXX";
|
|
1134
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1135
|
+
readonly enabled: true;
|
|
1136
|
+
};
|
|
1137
|
+
export declare const MALAYSIA_COUNTRY_CODE: {
|
|
1138
|
+
readonly value: "malaysia";
|
|
1139
|
+
readonly iso2: "MY";
|
|
1140
|
+
readonly caption: "+60";
|
|
1141
|
+
readonly mask: "1X XXX[X] XXXX";
|
|
1142
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1143
|
+
readonly enabled: true;
|
|
1144
|
+
};
|
|
1145
|
+
export declare const PARAGUAY_COUNTRY_CODE: {
|
|
1146
|
+
readonly value: "paraguay";
|
|
1147
|
+
readonly iso2: "PY";
|
|
1148
|
+
readonly caption: "+595";
|
|
1149
|
+
readonly mask: "9XX XXXXXX";
|
|
1150
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1151
|
+
readonly enabled: true;
|
|
1152
|
+
};
|
|
1153
|
+
export declare const YEMEN_COUNTRY_CODE: {
|
|
1154
|
+
readonly value: "yemen";
|
|
1155
|
+
readonly iso2: "YE";
|
|
1156
|
+
readonly caption: "+967";
|
|
1157
|
+
readonly mask: "7X XXX XXXX";
|
|
1158
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1159
|
+
readonly enabled: true;
|
|
1160
|
+
};
|
|
1161
|
+
export declare const HAITI_COUNTRY_CODE: {
|
|
1162
|
+
readonly value: "haiti";
|
|
1163
|
+
readonly iso2: "HT";
|
|
1164
|
+
readonly caption: "+509";
|
|
1165
|
+
readonly mask: "XXXX XXXX";
|
|
1166
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1167
|
+
readonly enabled: true;
|
|
1168
|
+
};
|
|
1169
|
+
export declare const MOZAMBIQUE_COUNTRY_CODE: {
|
|
1170
|
+
readonly value: "mozambique";
|
|
1171
|
+
readonly iso2: "MZ";
|
|
1172
|
+
readonly caption: "+258";
|
|
1173
|
+
readonly mask: "8X[X] XXX XXXX";
|
|
1174
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1175
|
+
readonly enabled: true;
|
|
1176
|
+
};
|
|
1177
|
+
export declare const NICARAGUA_COUNTRY_CODE: {
|
|
1178
|
+
readonly value: "nicaragua";
|
|
1179
|
+
readonly iso2: "NI";
|
|
1180
|
+
readonly caption: "+505";
|
|
1181
|
+
readonly mask: "XXXX XXXX";
|
|
1182
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1183
|
+
readonly enabled: true;
|
|
1184
|
+
};
|
|
1185
|
+
export declare const SENEGAL_COUNTRY_CODE: {
|
|
1186
|
+
readonly value: "senegal";
|
|
1187
|
+
readonly iso2: "SN";
|
|
1188
|
+
readonly caption: "+221";
|
|
1189
|
+
readonly mask: "XX XXX XX XX";
|
|
1190
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1191
|
+
readonly enabled: true;
|
|
1192
|
+
};
|
|
1193
|
+
export declare const VENEZUELA_COUNTRY_CODE: {
|
|
1194
|
+
readonly value: "venezuela";
|
|
1195
|
+
readonly iso2: "VE";
|
|
1196
|
+
readonly caption: "+58";
|
|
1197
|
+
readonly mask: "XXX XXXXXXX";
|
|
1198
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1199
|
+
readonly enabled: true;
|
|
1200
|
+
};
|
|
1201
|
+
export declare const AFGHANISTAN_COUNTRY_CODE: {
|
|
1202
|
+
readonly value: "afghanistan";
|
|
1203
|
+
readonly iso2: "AF";
|
|
1204
|
+
readonly caption: "+93";
|
|
1205
|
+
readonly mask: "XX XXX XXXX";
|
|
1206
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1207
|
+
readonly enabled: true;
|
|
1208
|
+
};
|
|
1209
|
+
export declare const SRI_LANKA_COUNTRY_CODE: {
|
|
1210
|
+
readonly value: "sriLanka";
|
|
1211
|
+
readonly iso2: "LK";
|
|
1212
|
+
readonly caption: "+94";
|
|
1213
|
+
readonly mask: "XX XXX XXXX";
|
|
1214
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1215
|
+
readonly enabled: true;
|
|
1216
|
+
};
|
|
1217
|
+
export declare const VIETNAM_COUNTRY_CODE: {
|
|
1218
|
+
readonly value: "vietnam";
|
|
1219
|
+
readonly iso2: "VN";
|
|
1220
|
+
readonly caption: "+84";
|
|
1221
|
+
readonly mask: "XX XXX[X] XXXX";
|
|
1222
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1223
|
+
readonly enabled: true;
|
|
1224
|
+
};
|
|
1225
|
+
export declare const THAILAND_COUNTRY_CODE: {
|
|
1226
|
+
readonly value: "thailand";
|
|
1227
|
+
readonly iso2: "TH";
|
|
1228
|
+
readonly caption: "+66";
|
|
1229
|
+
readonly mask: "XX XXX XXXX";
|
|
1230
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1231
|
+
readonly enabled: true;
|
|
1232
|
+
};
|
|
1233
|
+
export declare const INDONESIA_COUNTRY_CODE: {
|
|
1234
|
+
readonly value: "indonesia";
|
|
1235
|
+
readonly iso2: "ID";
|
|
1236
|
+
readonly caption: "+62";
|
|
1237
|
+
readonly mask: "8XX XXXX XXX[XX]";
|
|
1238
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1239
|
+
readonly enabled: true;
|
|
1240
|
+
};
|
|
1241
|
+
export declare const TANZANIA_COUNTRY_CODE: {
|
|
1242
|
+
readonly value: "tanzania";
|
|
1243
|
+
readonly iso2: "TZ";
|
|
1244
|
+
readonly caption: "+255";
|
|
1245
|
+
readonly mask: "XX XXX XXXX";
|
|
1246
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1247
|
+
readonly enabled: true;
|
|
1248
|
+
};
|
|
1249
|
+
export declare const QATAR_COUNTRY_CODE: {
|
|
1250
|
+
readonly value: "qatar";
|
|
1251
|
+
readonly iso2: "QA";
|
|
1252
|
+
readonly caption: "+974";
|
|
1253
|
+
readonly mask: "XXXX XXXX";
|
|
1254
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1255
|
+
readonly enabled: true;
|
|
1256
|
+
};
|
|
1257
|
+
export declare const PALESTINE_COUNTRY_CODE: {
|
|
1258
|
+
readonly value: "palestine";
|
|
1259
|
+
readonly iso2: "PS";
|
|
1260
|
+
readonly caption: "+970";
|
|
1261
|
+
readonly mask: "5X XXX XXXX";
|
|
1262
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1263
|
+
readonly enabled: true;
|
|
1264
|
+
};
|
|
1265
|
+
export declare const CAMBODIA_COUNTRY_CODE: {
|
|
1266
|
+
readonly value: "cambodia";
|
|
1267
|
+
readonly iso2: "KH";
|
|
1268
|
+
readonly caption: "+855";
|
|
1269
|
+
readonly mask: "XX XXX XXX[X]";
|
|
1270
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1271
|
+
readonly enabled: true;
|
|
1272
|
+
};
|
|
1273
|
+
export declare const ALL_COUNTRY_CODES: readonly [{
|
|
1274
|
+
readonly value: "russia";
|
|
1275
|
+
readonly iso2: "RU";
|
|
1276
|
+
readonly mask: "XXX XXX-XX-XX";
|
|
1277
|
+
readonly caption: "+7";
|
|
1278
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1279
|
+
readonly enabled: true;
|
|
1280
|
+
}, {
|
|
1281
|
+
readonly value: "abkhazia";
|
|
1282
|
+
readonly iso2: "RU";
|
|
1283
|
+
readonly caption: "+7";
|
|
1284
|
+
readonly mask: "XXX XXX-XX-XX";
|
|
1285
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1286
|
+
readonly enabled: true;
|
|
1287
|
+
}, {
|
|
1288
|
+
readonly value: "australia";
|
|
1289
|
+
readonly iso2: "AU";
|
|
1290
|
+
readonly caption: "+61";
|
|
1291
|
+
readonly mask: "X XXXX-XXXX";
|
|
1292
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1293
|
+
readonly enabled: true;
|
|
1294
|
+
}, {
|
|
1295
|
+
readonly value: "austria";
|
|
1296
|
+
readonly iso2: "AT";
|
|
1297
|
+
readonly caption: "+43";
|
|
1298
|
+
readonly mask: "XXX XXX-XXXX";
|
|
1299
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1300
|
+
readonly enabled: true;
|
|
1301
|
+
}, {
|
|
1302
|
+
readonly value: "azerbaijan";
|
|
1303
|
+
readonly iso2: "AZ";
|
|
1304
|
+
readonly mask: "XX XXX-XX-XX";
|
|
1305
|
+
readonly caption: "+994";
|
|
1306
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1307
|
+
readonly enabled: false;
|
|
1308
|
+
}, {
|
|
1309
|
+
readonly value: "albania";
|
|
1310
|
+
readonly iso2: "AL";
|
|
1311
|
+
readonly caption: "+355";
|
|
1312
|
+
readonly mask: "XXX XXX-XXX";
|
|
1313
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1314
|
+
readonly enabled: true;
|
|
1315
|
+
}, {
|
|
1316
|
+
readonly value: "algeria";
|
|
1317
|
+
readonly iso2: "DZ";
|
|
1318
|
+
readonly caption: "+213";
|
|
1319
|
+
readonly mask: "XX XXX-XXXX";
|
|
1320
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1321
|
+
readonly enabled: true;
|
|
1322
|
+
}, {
|
|
1323
|
+
readonly value: "angola";
|
|
1324
|
+
readonly iso2: "AO";
|
|
1325
|
+
readonly caption: "+244";
|
|
1326
|
+
readonly mask: "XXX XXXX";
|
|
1327
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1328
|
+
readonly enabled: true;
|
|
1329
|
+
}, {
|
|
1330
|
+
readonly value: "andorra";
|
|
1331
|
+
readonly iso2: "AD";
|
|
1332
|
+
readonly caption: "+376";
|
|
1333
|
+
readonly mask: "XXX XXXX";
|
|
1334
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1335
|
+
readonly enabled: true;
|
|
1336
|
+
}, {
|
|
1337
|
+
readonly value: "antiguaAndBarbuda";
|
|
1338
|
+
readonly iso2: "AG";
|
|
1339
|
+
readonly caption: "+1";
|
|
1340
|
+
readonly mask: "268 XXX-XXXX";
|
|
1341
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1342
|
+
readonly enabled: true;
|
|
1343
|
+
}, {
|
|
1344
|
+
readonly value: "argentina";
|
|
1345
|
+
readonly iso2: "AR";
|
|
1346
|
+
readonly caption: "+54";
|
|
1347
|
+
readonly mask: "9 XX XXXX XXXX";
|
|
1348
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1349
|
+
readonly enabled: true;
|
|
1350
|
+
}, {
|
|
1351
|
+
readonly value: "armenia";
|
|
1352
|
+
readonly iso2: "AM";
|
|
1353
|
+
readonly mask: "XX XXX-XXX";
|
|
1354
|
+
readonly caption: "+374";
|
|
1355
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1356
|
+
readonly enabled: true;
|
|
1357
|
+
}, {
|
|
1358
|
+
readonly value: "afghanistan";
|
|
1359
|
+
readonly iso2: "AF";
|
|
1360
|
+
readonly caption: "+93";
|
|
1361
|
+
readonly mask: "XX XXX XXXX";
|
|
1362
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1363
|
+
readonly enabled: true;
|
|
1364
|
+
}, {
|
|
1365
|
+
readonly value: "bahamas";
|
|
1366
|
+
readonly iso2: "BS";
|
|
1367
|
+
readonly caption: "+1";
|
|
1368
|
+
readonly mask: "242 XXX-XXXX";
|
|
1369
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1370
|
+
readonly enabled: true;
|
|
1371
|
+
}, {
|
|
1372
|
+
readonly value: "bangladesh";
|
|
1373
|
+
readonly iso2: "BD";
|
|
1374
|
+
readonly caption: "+880";
|
|
1375
|
+
readonly mask: "X XXX-XXXX";
|
|
1376
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1377
|
+
readonly enabled: true;
|
|
1378
|
+
}, {
|
|
1379
|
+
readonly value: "barbados";
|
|
1380
|
+
readonly iso2: "BB";
|
|
1381
|
+
readonly caption: "+1";
|
|
1382
|
+
readonly mask: "246 XXX-XXXX";
|
|
1383
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1384
|
+
readonly enabled: true;
|
|
1385
|
+
}, {
|
|
1386
|
+
readonly value: "bahrain";
|
|
1387
|
+
readonly iso2: "BH";
|
|
1388
|
+
readonly caption: "+973";
|
|
1389
|
+
readonly mask: "XX XXX-XXX";
|
|
1390
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1391
|
+
readonly enabled: true;
|
|
1392
|
+
}, {
|
|
1393
|
+
readonly value: "belarus";
|
|
1394
|
+
readonly iso2: "BY";
|
|
1395
|
+
readonly mask: "XX XXX-XX-XX";
|
|
1396
|
+
readonly caption: "+375";
|
|
1397
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1398
|
+
readonly enabled: true;
|
|
1399
|
+
}, {
|
|
1400
|
+
readonly value: "belize";
|
|
1401
|
+
readonly iso2: "BZ";
|
|
1402
|
+
readonly caption: "+501";
|
|
1403
|
+
readonly mask: "XXX XXXX";
|
|
1404
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1405
|
+
readonly enabled: true;
|
|
1406
|
+
}, {
|
|
1407
|
+
readonly value: "belgium";
|
|
1408
|
+
readonly iso2: "BE";
|
|
1409
|
+
readonly caption: "+32";
|
|
1410
|
+
readonly mask: "XXX XXX-XXX";
|
|
1411
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1412
|
+
readonly enabled: true;
|
|
1413
|
+
}, {
|
|
1414
|
+
readonly value: "benin";
|
|
1415
|
+
readonly iso2: "BJ";
|
|
1416
|
+
readonly caption: "+229";
|
|
1417
|
+
readonly mask: "XX XX XX XX";
|
|
1418
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1419
|
+
readonly enabled: true;
|
|
1420
|
+
}, {
|
|
1421
|
+
readonly value: "bosniaAndHerzegovina";
|
|
1422
|
+
readonly iso2: "BA";
|
|
1423
|
+
readonly caption: "+387";
|
|
1424
|
+
readonly mask: "XX XXX-XXX";
|
|
1425
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1426
|
+
readonly enabled: true;
|
|
1427
|
+
}, {
|
|
1428
|
+
readonly value: "botswana";
|
|
1429
|
+
readonly iso2: "BW";
|
|
1430
|
+
readonly caption: "+267";
|
|
1431
|
+
readonly mask: "XX XXX-XXX";
|
|
1432
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1433
|
+
readonly enabled: true;
|
|
1434
|
+
}, {
|
|
1435
|
+
readonly value: "brazil";
|
|
1436
|
+
readonly iso2: "BR";
|
|
1437
|
+
readonly mask: "XX XXXXX-XXXX";
|
|
1438
|
+
readonly caption: "+55";
|
|
1439
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1440
|
+
readonly enabled: true;
|
|
1441
|
+
}, {
|
|
1442
|
+
readonly value: "bhutan";
|
|
1443
|
+
readonly iso2: "BT";
|
|
1444
|
+
readonly caption: "+975";
|
|
1445
|
+
readonly mask: "XX XXX-XXX";
|
|
1446
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1447
|
+
readonly enabled: true;
|
|
1448
|
+
}, {
|
|
1449
|
+
readonly value: "vanuatu";
|
|
1450
|
+
readonly iso2: "VU";
|
|
1451
|
+
readonly caption: "+678";
|
|
1452
|
+
readonly mask: "XXX XXXX";
|
|
1453
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1454
|
+
readonly enabled: true;
|
|
1455
|
+
}, {
|
|
1456
|
+
readonly value: "hungary";
|
|
1457
|
+
readonly iso2: "HU";
|
|
1458
|
+
readonly caption: "+36";
|
|
1459
|
+
readonly mask: "XXX XXX-XXX";
|
|
1460
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1461
|
+
readonly enabled: true;
|
|
1462
|
+
}, {
|
|
1463
|
+
readonly value: "venezuela";
|
|
1464
|
+
readonly iso2: "VE";
|
|
1465
|
+
readonly caption: "+58";
|
|
1466
|
+
readonly mask: "XXX XXXXXXX";
|
|
1467
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1468
|
+
readonly enabled: true;
|
|
1469
|
+
}, {
|
|
1470
|
+
readonly value: "vietnam";
|
|
1471
|
+
readonly iso2: "VN";
|
|
1472
|
+
readonly caption: "+84";
|
|
1473
|
+
readonly mask: "XX XXX[X] XXXX";
|
|
1474
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1475
|
+
readonly enabled: true;
|
|
1476
|
+
}, {
|
|
1477
|
+
readonly value: "haiti";
|
|
1478
|
+
readonly iso2: "HT";
|
|
1479
|
+
readonly caption: "+509";
|
|
1480
|
+
readonly mask: "XXXX XXXX";
|
|
1481
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1482
|
+
readonly enabled: true;
|
|
1483
|
+
}, {
|
|
1484
|
+
readonly value: "guyana";
|
|
1485
|
+
readonly iso2: "GY";
|
|
1486
|
+
readonly caption: "+592";
|
|
1487
|
+
readonly mask: "XXX XXXX";
|
|
1488
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1489
|
+
readonly enabled: true;
|
|
1490
|
+
}, {
|
|
1491
|
+
readonly value: "ghana";
|
|
1492
|
+
readonly iso2: "GH";
|
|
1493
|
+
readonly caption: "+233";
|
|
1494
|
+
readonly mask: "XX XXX XXXX";
|
|
1495
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1496
|
+
readonly enabled: true;
|
|
1497
|
+
}, {
|
|
1498
|
+
readonly value: "guatemala";
|
|
1499
|
+
readonly iso2: "GT";
|
|
1500
|
+
readonly caption: "+502";
|
|
1501
|
+
readonly mask: "XXXX XXXX";
|
|
1502
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1503
|
+
readonly enabled: true;
|
|
1504
|
+
}, {
|
|
1505
|
+
readonly value: "guinea";
|
|
1506
|
+
readonly iso2: "GN";
|
|
1507
|
+
readonly caption: "+224";
|
|
1508
|
+
readonly mask: "6XX XX XX XX";
|
|
1509
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1510
|
+
readonly enabled: true;
|
|
1511
|
+
}, {
|
|
1512
|
+
readonly value: "germany";
|
|
1513
|
+
readonly iso2: "DE";
|
|
1514
|
+
readonly caption: "+49";
|
|
1515
|
+
readonly mask: "XXX XXX-XXXX";
|
|
1516
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1517
|
+
readonly enabled: true;
|
|
1518
|
+
}, {
|
|
1519
|
+
readonly value: "guernsey";
|
|
1520
|
+
readonly iso2: "GG";
|
|
1521
|
+
readonly caption: "+44";
|
|
1522
|
+
readonly mask: "1481 XXXXXX";
|
|
1523
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1524
|
+
readonly enabled: true;
|
|
1525
|
+
}, {
|
|
1526
|
+
readonly value: "gibraltar";
|
|
1527
|
+
readonly iso2: "GI";
|
|
1528
|
+
readonly caption: "+350";
|
|
1529
|
+
readonly mask: "XXX XXXXX";
|
|
1530
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1531
|
+
readonly enabled: true;
|
|
1532
|
+
}, {
|
|
1533
|
+
readonly value: "honduras";
|
|
1534
|
+
readonly iso2: "HN";
|
|
1535
|
+
readonly caption: "+504";
|
|
1536
|
+
readonly mask: "XXXX XXXX";
|
|
1537
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1538
|
+
readonly enabled: true;
|
|
1539
|
+
}, {
|
|
1540
|
+
readonly value: "hongKong";
|
|
1541
|
+
readonly iso2: "HK";
|
|
1542
|
+
readonly caption: "+852";
|
|
1543
|
+
readonly mask: "XXXX XXXX";
|
|
1544
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1545
|
+
readonly enabled: true;
|
|
1546
|
+
}, {
|
|
1547
|
+
readonly value: "greece";
|
|
1548
|
+
readonly iso2: "GR";
|
|
1549
|
+
readonly caption: "+30";
|
|
1550
|
+
readonly mask: "XXX XXX-XXXX";
|
|
1551
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1552
|
+
readonly enabled: true;
|
|
1553
|
+
}, {
|
|
1554
|
+
readonly value: "georgia";
|
|
1555
|
+
readonly iso2: "GE";
|
|
1556
|
+
readonly mask: "XXX XX-XX-XX";
|
|
1557
|
+
readonly caption: "+995";
|
|
1558
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1559
|
+
readonly enabled: true;
|
|
1560
|
+
}, {
|
|
1561
|
+
readonly value: "denmark";
|
|
1562
|
+
readonly iso2: "DK";
|
|
1563
|
+
readonly caption: "+45";
|
|
1564
|
+
readonly mask: "XX XX-XX-XX";
|
|
1565
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1566
|
+
readonly enabled: true;
|
|
1567
|
+
}, {
|
|
1568
|
+
readonly value: "djibouti";
|
|
1569
|
+
readonly iso2: "DJ";
|
|
1570
|
+
readonly caption: "+253";
|
|
1571
|
+
readonly mask: "XXXX XXXX";
|
|
1572
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1573
|
+
readonly enabled: true;
|
|
1574
|
+
}, {
|
|
1575
|
+
readonly value: "dominicanRepublic";
|
|
1576
|
+
readonly iso2: "DO";
|
|
1577
|
+
readonly caption: "+1";
|
|
1578
|
+
readonly mask: "XXX XXX-XXXX";
|
|
1579
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1580
|
+
readonly enabled: true;
|
|
1581
|
+
}, {
|
|
1582
|
+
readonly value: "egypt";
|
|
1583
|
+
readonly iso2: "EG";
|
|
1584
|
+
readonly mask: "XX XXXX-XXXX";
|
|
1585
|
+
readonly caption: "+20";
|
|
1586
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1587
|
+
readonly enabled: true;
|
|
1588
|
+
}, {
|
|
1589
|
+
readonly value: "zambia";
|
|
1590
|
+
readonly iso2: "ZM";
|
|
1591
|
+
readonly caption: "+260";
|
|
1592
|
+
readonly mask: "XX XXX XXXX";
|
|
1593
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1594
|
+
readonly enabled: true;
|
|
1595
|
+
}, {
|
|
1596
|
+
readonly value: "zimbabwe";
|
|
1597
|
+
readonly iso2: "ZW";
|
|
1598
|
+
readonly caption: "+263";
|
|
1599
|
+
readonly mask: "XX XXX-XXXX";
|
|
1600
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1601
|
+
readonly enabled: true;
|
|
1602
|
+
}, {
|
|
1603
|
+
readonly value: "israel";
|
|
1604
|
+
readonly iso2: "IL";
|
|
1605
|
+
readonly caption: "+972";
|
|
1606
|
+
readonly mask: "XX XXX-XXXX";
|
|
1607
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1608
|
+
readonly enabled: true;
|
|
1609
|
+
}, {
|
|
1610
|
+
readonly value: "india";
|
|
1611
|
+
readonly iso2: "IN";
|
|
1612
|
+
readonly mask: "XXXXX-XXXXX";
|
|
1613
|
+
readonly caption: "+91";
|
|
1614
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1615
|
+
readonly enabled: true;
|
|
1616
|
+
}, {
|
|
1617
|
+
readonly value: "indonesia";
|
|
1618
|
+
readonly iso2: "ID";
|
|
1619
|
+
readonly caption: "+62";
|
|
1620
|
+
readonly mask: "8XX XXXX XXX[XX]";
|
|
1621
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1622
|
+
readonly enabled: true;
|
|
1623
|
+
}, {
|
|
1624
|
+
readonly value: "jordan";
|
|
1625
|
+
readonly iso2: "JO";
|
|
1626
|
+
readonly caption: "+962";
|
|
1627
|
+
readonly mask: "7X XXX XXXX";
|
|
1628
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1629
|
+
readonly enabled: true;
|
|
1630
|
+
}, {
|
|
1631
|
+
readonly value: "iraq";
|
|
1632
|
+
readonly iso2: "IQ";
|
|
1633
|
+
readonly caption: "+964";
|
|
1634
|
+
readonly mask: "XX XXX-XXXX";
|
|
1635
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1636
|
+
readonly enabled: true;
|
|
1637
|
+
}, {
|
|
1638
|
+
readonly value: "iran";
|
|
1639
|
+
readonly iso2: "IR";
|
|
1640
|
+
readonly mask: "XXX XXX-XXXX";
|
|
1641
|
+
readonly caption: "+98";
|
|
1642
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1643
|
+
readonly enabled: true;
|
|
1644
|
+
}, {
|
|
1645
|
+
readonly value: "ireland";
|
|
1646
|
+
readonly iso2: "IE";
|
|
1647
|
+
readonly caption: "+353";
|
|
1648
|
+
readonly mask: "XXX XXX-XXX";
|
|
1649
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1650
|
+
readonly enabled: true;
|
|
1651
|
+
}, {
|
|
1652
|
+
readonly value: "iceland";
|
|
1653
|
+
readonly iso2: "IS";
|
|
1654
|
+
readonly caption: "+354";
|
|
1655
|
+
readonly mask: "XXX XXXX";
|
|
1656
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1657
|
+
readonly enabled: true;
|
|
1658
|
+
}, {
|
|
1659
|
+
readonly value: "spain";
|
|
1660
|
+
readonly iso2: "ES";
|
|
1661
|
+
readonly caption: "+34";
|
|
1662
|
+
readonly mask: "XXX XXX-XXX";
|
|
1663
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1664
|
+
readonly enabled: true;
|
|
1665
|
+
}, {
|
|
1666
|
+
readonly value: "italy";
|
|
1667
|
+
readonly iso2: "IT";
|
|
1668
|
+
readonly caption: "+39";
|
|
1669
|
+
readonly mask: "XXX XXXX-XXX";
|
|
1670
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1671
|
+
readonly enabled: true;
|
|
1672
|
+
}, {
|
|
1673
|
+
readonly value: "yemen";
|
|
1674
|
+
readonly iso2: "YE";
|
|
1675
|
+
readonly caption: "+967";
|
|
1676
|
+
readonly mask: "7X XXX XXXX";
|
|
1677
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1678
|
+
readonly enabled: true;
|
|
1679
|
+
}, {
|
|
1680
|
+
readonly value: "kazakhstan";
|
|
1681
|
+
readonly iso2: "KZ";
|
|
1682
|
+
readonly mask: "XXX XXX-XX-XX";
|
|
1683
|
+
readonly caption: "+7";
|
|
1684
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1685
|
+
readonly enabled: true;
|
|
1686
|
+
}, {
|
|
1687
|
+
readonly value: "caymanIslands";
|
|
1688
|
+
readonly iso2: "KY";
|
|
1689
|
+
readonly caption: "+1";
|
|
1690
|
+
readonly mask: "345 XXX-XXXX";
|
|
1691
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1692
|
+
readonly enabled: true;
|
|
1693
|
+
}, {
|
|
1694
|
+
readonly value: "cambodia";
|
|
1695
|
+
readonly iso2: "KH";
|
|
1696
|
+
readonly caption: "+855";
|
|
1697
|
+
readonly mask: "XX XXX XXX[X]";
|
|
1698
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1699
|
+
readonly enabled: true;
|
|
1700
|
+
}, {
|
|
1701
|
+
readonly value: "cameroon";
|
|
1702
|
+
readonly iso2: "CM";
|
|
1703
|
+
readonly caption: "+237";
|
|
1704
|
+
readonly mask: "XXX XX XX XX";
|
|
1705
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1706
|
+
readonly enabled: true;
|
|
1707
|
+
}, {
|
|
1708
|
+
readonly value: "qatar";
|
|
1709
|
+
readonly iso2: "QA";
|
|
1710
|
+
readonly caption: "+974";
|
|
1711
|
+
readonly mask: "XXXX XXXX";
|
|
1712
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1713
|
+
readonly enabled: true;
|
|
1714
|
+
}, {
|
|
1715
|
+
readonly value: "kenya";
|
|
1716
|
+
readonly iso2: "KE";
|
|
1717
|
+
readonly caption: "+254";
|
|
1718
|
+
readonly mask: "XXX XXX XXX";
|
|
1719
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1720
|
+
readonly enabled: true;
|
|
1721
|
+
}, {
|
|
1722
|
+
readonly value: "cyprus";
|
|
1723
|
+
readonly iso2: "CY";
|
|
1724
|
+
readonly mask: "XX XXXXXX";
|
|
1725
|
+
readonly caption: "+357";
|
|
1726
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1727
|
+
readonly enabled: true;
|
|
1728
|
+
}, {
|
|
1729
|
+
readonly value: "kiribati";
|
|
1730
|
+
readonly iso2: "KI";
|
|
1731
|
+
readonly caption: "+686";
|
|
1732
|
+
readonly mask: "XXX XXXX";
|
|
1733
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1734
|
+
readonly enabled: true;
|
|
1735
|
+
}, {
|
|
1736
|
+
readonly value: "colombia";
|
|
1737
|
+
readonly iso2: "CO";
|
|
1738
|
+
readonly caption: "+57";
|
|
1739
|
+
readonly mask: "XXX XXX-XXXX";
|
|
1740
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1741
|
+
readonly enabled: true;
|
|
1742
|
+
}, {
|
|
1743
|
+
readonly value: "costaRica";
|
|
1744
|
+
readonly iso2: "CR";
|
|
1745
|
+
readonly caption: "+506";
|
|
1746
|
+
readonly mask: "XXXX XXXX";
|
|
1747
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1748
|
+
readonly enabled: true;
|
|
1749
|
+
}, {
|
|
1750
|
+
readonly value: "coteDIvoire";
|
|
1751
|
+
readonly iso2: "CI";
|
|
1752
|
+
readonly caption: "+225";
|
|
1753
|
+
readonly mask: "XX XX XX XX XX";
|
|
1754
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1755
|
+
readonly enabled: true;
|
|
1756
|
+
}, {
|
|
1757
|
+
readonly value: "kosovo";
|
|
1758
|
+
readonly iso2: "XK";
|
|
1759
|
+
readonly caption: "+383";
|
|
1760
|
+
readonly mask: "XXX XXXX";
|
|
1761
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1762
|
+
readonly enabled: true;
|
|
1763
|
+
}, {
|
|
1764
|
+
readonly value: "kyrgyzstan";
|
|
1765
|
+
readonly iso2: "KG";
|
|
1766
|
+
readonly mask: "XXX XXX-XXX";
|
|
1767
|
+
readonly caption: "+996";
|
|
1768
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1769
|
+
readonly enabled: true;
|
|
1770
|
+
}, {
|
|
1771
|
+
readonly value: "latvia";
|
|
1772
|
+
readonly iso2: "LV";
|
|
1773
|
+
readonly caption: "+371";
|
|
1774
|
+
readonly mask: "XX XXX-XXX";
|
|
1775
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1776
|
+
readonly enabled: true;
|
|
1777
|
+
}, {
|
|
1778
|
+
readonly value: "lesotho";
|
|
1779
|
+
readonly iso2: "LS";
|
|
1780
|
+
readonly caption: "+266";
|
|
1781
|
+
readonly mask: "XXXX XXXX";
|
|
1782
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1783
|
+
readonly enabled: true;
|
|
1784
|
+
}, {
|
|
1785
|
+
readonly value: "lebanon";
|
|
1786
|
+
readonly iso2: "LB";
|
|
1787
|
+
readonly caption: "+961";
|
|
1788
|
+
readonly mask: "XXX XX-XX";
|
|
1789
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1790
|
+
readonly enabled: true;
|
|
1791
|
+
}, {
|
|
1792
|
+
readonly value: "libya";
|
|
1793
|
+
readonly iso2: "LY";
|
|
1794
|
+
readonly caption: "+218";
|
|
1795
|
+
readonly mask: "9X XXX XXXX";
|
|
1796
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1797
|
+
readonly enabled: true;
|
|
1798
|
+
}, {
|
|
1799
|
+
readonly value: "lithuania";
|
|
1800
|
+
readonly iso2: "LT";
|
|
1801
|
+
readonly caption: "+370";
|
|
1802
|
+
readonly mask: "XXX XX-XXX";
|
|
1803
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1804
|
+
readonly enabled: true;
|
|
1805
|
+
}, {
|
|
1806
|
+
readonly value: "liechtenstein";
|
|
1807
|
+
readonly iso2: "LI";
|
|
1808
|
+
readonly caption: "+423";
|
|
1809
|
+
readonly mask: "XXXX XXXX";
|
|
1810
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1811
|
+
readonly enabled: true;
|
|
1812
|
+
}, {
|
|
1813
|
+
readonly value: "luxembourg";
|
|
1814
|
+
readonly iso2: "LU";
|
|
1815
|
+
readonly caption: "+352";
|
|
1816
|
+
readonly mask: "XXX XXX-XXX";
|
|
1817
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1818
|
+
readonly enabled: true;
|
|
1819
|
+
}, {
|
|
1820
|
+
readonly value: "mauritius";
|
|
1821
|
+
readonly iso2: "MU";
|
|
1822
|
+
readonly caption: "+230";
|
|
1823
|
+
readonly mask: "XXXX XXXX";
|
|
1824
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1825
|
+
readonly enabled: true;
|
|
1826
|
+
}, {
|
|
1827
|
+
readonly value: "mauritania";
|
|
1828
|
+
readonly iso2: "MR";
|
|
1829
|
+
readonly caption: "+222";
|
|
1830
|
+
readonly mask: "XX XX-XX-XX";
|
|
1831
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1832
|
+
readonly enabled: true;
|
|
1833
|
+
}, {
|
|
1834
|
+
readonly value: "madagascar";
|
|
1835
|
+
readonly iso2: "MG";
|
|
1836
|
+
readonly caption: "+261";
|
|
1837
|
+
readonly mask: "XX XX-XXX-XX";
|
|
1838
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1839
|
+
readonly enabled: true;
|
|
1840
|
+
}, {
|
|
1841
|
+
readonly value: "mayotte";
|
|
1842
|
+
readonly iso2: "YT";
|
|
1843
|
+
readonly caption: "+262";
|
|
1844
|
+
readonly mask: "XXX XX-XX-XX";
|
|
1845
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1846
|
+
readonly enabled: true;
|
|
1847
|
+
}, {
|
|
1848
|
+
readonly value: "malaysia";
|
|
1849
|
+
readonly iso2: "MY";
|
|
1850
|
+
readonly caption: "+60";
|
|
1851
|
+
readonly mask: "1X XXX[X] XXXX";
|
|
1852
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1853
|
+
readonly enabled: true;
|
|
1854
|
+
}, {
|
|
1855
|
+
readonly value: "mali";
|
|
1856
|
+
readonly iso2: "ML";
|
|
1857
|
+
readonly caption: "+223";
|
|
1858
|
+
readonly mask: "XX XX-XX-XX";
|
|
1859
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1860
|
+
readonly enabled: true;
|
|
1861
|
+
}, {
|
|
1862
|
+
readonly value: "maldives";
|
|
1863
|
+
readonly iso2: "MV";
|
|
1864
|
+
readonly caption: "+960";
|
|
1865
|
+
readonly mask: "XXX XXXX";
|
|
1866
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1867
|
+
readonly enabled: true;
|
|
1868
|
+
}, {
|
|
1869
|
+
readonly value: "malta";
|
|
1870
|
+
readonly iso2: "MT";
|
|
1871
|
+
readonly caption: "+356";
|
|
1872
|
+
readonly mask: "XXX XXXX";
|
|
1873
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1874
|
+
readonly enabled: true;
|
|
1875
|
+
}, {
|
|
1876
|
+
readonly value: "morocco";
|
|
1877
|
+
readonly iso2: "MA";
|
|
1878
|
+
readonly caption: "+212";
|
|
1879
|
+
readonly mask: "XXX XXXXXX";
|
|
1880
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1881
|
+
readonly enabled: true;
|
|
1882
|
+
}, {
|
|
1883
|
+
readonly value: "mozambique";
|
|
1884
|
+
readonly iso2: "MZ";
|
|
1885
|
+
readonly caption: "+258";
|
|
1886
|
+
readonly mask: "8X[X] XXX XXXX";
|
|
1887
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1888
|
+
readonly enabled: true;
|
|
1889
|
+
}, {
|
|
1890
|
+
readonly value: "moldova";
|
|
1891
|
+
readonly iso2: "MD";
|
|
1892
|
+
readonly mask: "XXXX XXXX";
|
|
1893
|
+
readonly caption: "+373";
|
|
1894
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1895
|
+
readonly enabled: true;
|
|
1896
|
+
}, {
|
|
1897
|
+
readonly value: "monaco";
|
|
1898
|
+
readonly iso2: "MC";
|
|
1899
|
+
readonly caption: "+377";
|
|
1900
|
+
readonly mask: "XX XXXXXXX";
|
|
1901
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1902
|
+
readonly enabled: true;
|
|
1903
|
+
}, {
|
|
1904
|
+
readonly value: "myanmar";
|
|
1905
|
+
readonly iso2: "MM";
|
|
1906
|
+
readonly caption: "+95";
|
|
1907
|
+
readonly mask: "XXX XXXX";
|
|
1908
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1909
|
+
readonly enabled: true;
|
|
1910
|
+
}, {
|
|
1911
|
+
readonly value: "namibia";
|
|
1912
|
+
readonly iso2: "NA";
|
|
1913
|
+
readonly caption: "+264";
|
|
1914
|
+
readonly mask: "XX XXX-XXXX";
|
|
1915
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1916
|
+
readonly enabled: true;
|
|
1917
|
+
}, {
|
|
1918
|
+
readonly value: "niger";
|
|
1919
|
+
readonly iso2: "NE";
|
|
1920
|
+
readonly caption: "+227";
|
|
1921
|
+
readonly mask: "XX XX-XX-XX";
|
|
1922
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1923
|
+
readonly enabled: true;
|
|
1924
|
+
}, {
|
|
1925
|
+
readonly value: "nigeria";
|
|
1926
|
+
readonly iso2: "NG";
|
|
1927
|
+
readonly caption: "+234";
|
|
1928
|
+
readonly mask: "XXX XXX XXXX";
|
|
1929
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1930
|
+
readonly enabled: true;
|
|
1931
|
+
}, {
|
|
1932
|
+
readonly value: "netherlands";
|
|
1933
|
+
readonly iso2: "NL";
|
|
1934
|
+
readonly mask: "XX XXX-XXXX";
|
|
1935
|
+
readonly caption: "+31";
|
|
1936
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1937
|
+
readonly enabled: true;
|
|
1938
|
+
}, {
|
|
1939
|
+
readonly value: "nicaragua";
|
|
1940
|
+
readonly iso2: "NI";
|
|
1941
|
+
readonly caption: "+505";
|
|
1942
|
+
readonly mask: "XXXX XXXX";
|
|
1943
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1944
|
+
readonly enabled: true;
|
|
1945
|
+
}, {
|
|
1946
|
+
readonly value: "newZealand";
|
|
1947
|
+
readonly iso2: "NZ";
|
|
1948
|
+
readonly caption: "+64";
|
|
1949
|
+
readonly mask: "XX XXX-XXXX";
|
|
1950
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1951
|
+
readonly enabled: true;
|
|
1952
|
+
}, {
|
|
1953
|
+
readonly value: "newCaledonia";
|
|
1954
|
+
readonly iso2: "NC";
|
|
1955
|
+
readonly caption: "+687";
|
|
1956
|
+
readonly mask: "XX XX-XX";
|
|
1957
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1958
|
+
readonly enabled: true;
|
|
1959
|
+
}, {
|
|
1960
|
+
readonly value: "norway";
|
|
1961
|
+
readonly iso2: "NO";
|
|
1962
|
+
readonly caption: "+47";
|
|
1963
|
+
readonly mask: "XXX XX XXX";
|
|
1964
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1965
|
+
readonly enabled: true;
|
|
1966
|
+
}, {
|
|
1967
|
+
readonly value: "unitedArabEmirates";
|
|
1968
|
+
readonly iso2: "AE";
|
|
1969
|
+
readonly mask: "XX XXX-XXXX";
|
|
1970
|
+
readonly caption: "+971";
|
|
1971
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1972
|
+
readonly enabled: true;
|
|
1973
|
+
}, {
|
|
1974
|
+
readonly value: "oman";
|
|
1975
|
+
readonly iso2: "OM";
|
|
1976
|
+
readonly caption: "+968";
|
|
1977
|
+
readonly mask: "XXXX XXXX";
|
|
1978
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1979
|
+
readonly enabled: true;
|
|
1980
|
+
}, {
|
|
1981
|
+
readonly value: "isleOfMan";
|
|
1982
|
+
readonly iso2: "IM";
|
|
1983
|
+
readonly caption: "+44";
|
|
1984
|
+
readonly mask: "1624 XXXXXX";
|
|
1985
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1986
|
+
readonly enabled: true;
|
|
1987
|
+
}, {
|
|
1988
|
+
readonly value: "norfolkIsland";
|
|
1989
|
+
readonly iso2: "NF";
|
|
1990
|
+
readonly caption: "+672";
|
|
1991
|
+
readonly mask: "X XX-XXX";
|
|
1992
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
1993
|
+
readonly enabled: true;
|
|
1994
|
+
}, {
|
|
1995
|
+
readonly value: "wallisAndFutunaIslands";
|
|
1996
|
+
readonly iso2: "WF";
|
|
1997
|
+
readonly caption: "+681";
|
|
1998
|
+
readonly mask: "XX XXXX";
|
|
1999
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2000
|
+
readonly enabled: true;
|
|
2001
|
+
}, {
|
|
2002
|
+
readonly value: "palestine";
|
|
2003
|
+
readonly iso2: "PS";
|
|
2004
|
+
readonly caption: "+970";
|
|
2005
|
+
readonly mask: "5X XXX XXXX";
|
|
2006
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2007
|
+
readonly enabled: true;
|
|
2008
|
+
}, {
|
|
2009
|
+
readonly value: "paraguay";
|
|
2010
|
+
readonly iso2: "PY";
|
|
2011
|
+
readonly caption: "+595";
|
|
2012
|
+
readonly mask: "9XX XXXXXX";
|
|
2013
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2014
|
+
readonly enabled: true;
|
|
2015
|
+
}, {
|
|
2016
|
+
readonly value: "peru";
|
|
2017
|
+
readonly iso2: "PE";
|
|
2018
|
+
readonly caption: "+51";
|
|
2019
|
+
readonly mask: "XXX XXX-XXX";
|
|
2020
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2021
|
+
readonly enabled: true;
|
|
2022
|
+
}, {
|
|
2023
|
+
readonly value: "poland";
|
|
2024
|
+
readonly iso2: "PL";
|
|
2025
|
+
readonly caption: "+48";
|
|
2026
|
+
readonly mask: "XXX XXX-XXX";
|
|
2027
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2028
|
+
readonly enabled: true;
|
|
2029
|
+
}, {
|
|
2030
|
+
readonly value: "portugal";
|
|
2031
|
+
readonly iso2: "PT";
|
|
2032
|
+
readonly caption: "+351";
|
|
2033
|
+
readonly mask: "XX XXX-XXXX";
|
|
2034
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2035
|
+
readonly enabled: true;
|
|
2036
|
+
}, {
|
|
2037
|
+
readonly value: "transnistria";
|
|
2038
|
+
readonly iso2: "MD";
|
|
2039
|
+
readonly caption: "+373";
|
|
2040
|
+
readonly mask: "XXX XX-XXX";
|
|
2041
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2042
|
+
readonly enabled: true;
|
|
2043
|
+
}, {
|
|
2044
|
+
readonly value: "congo";
|
|
2045
|
+
readonly iso2: "CG";
|
|
2046
|
+
readonly caption: "+242";
|
|
2047
|
+
readonly mask: "XX XXX XXXX";
|
|
2048
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2049
|
+
readonly enabled: true;
|
|
2050
|
+
}, {
|
|
2051
|
+
readonly value: "rwanda";
|
|
2052
|
+
readonly iso2: "RW";
|
|
2053
|
+
readonly caption: "+250";
|
|
2054
|
+
readonly mask: "XX XXX XXXX";
|
|
2055
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2056
|
+
readonly enabled: true;
|
|
2057
|
+
}, {
|
|
2058
|
+
readonly value: "romania";
|
|
2059
|
+
readonly iso2: "RO";
|
|
2060
|
+
readonly mask: "XX XXX-XXXX";
|
|
2061
|
+
readonly caption: "+40";
|
|
2062
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2063
|
+
readonly enabled: true;
|
|
2064
|
+
}, {
|
|
2065
|
+
readonly value: "sanMarino";
|
|
2066
|
+
readonly iso2: "SM";
|
|
2067
|
+
readonly caption: "+378";
|
|
2068
|
+
readonly mask: "XXXX XXXXXX";
|
|
2069
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2070
|
+
readonly enabled: true;
|
|
2071
|
+
}, {
|
|
2072
|
+
readonly value: "saoTomeAndPrincipe";
|
|
2073
|
+
readonly iso2: "ST";
|
|
2074
|
+
readonly caption: "+239";
|
|
2075
|
+
readonly mask: "XX XXXX";
|
|
2076
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2077
|
+
readonly enabled: true;
|
|
2078
|
+
}, {
|
|
2079
|
+
readonly value: "saudiArabia";
|
|
2080
|
+
readonly iso2: "SA";
|
|
2081
|
+
readonly mask: "X XXXX-XXXX";
|
|
2082
|
+
readonly caption: "+966";
|
|
2083
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2084
|
+
readonly enabled: true;
|
|
2085
|
+
}, {
|
|
2086
|
+
readonly value: "northMacedonia";
|
|
2087
|
+
readonly iso2: "MK";
|
|
2088
|
+
readonly caption: "+389";
|
|
2089
|
+
readonly mask: "XXX XXXXX";
|
|
2090
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2091
|
+
readonly enabled: true;
|
|
2092
|
+
}, {
|
|
2093
|
+
readonly value: "saintPierreAndMiquelon";
|
|
2094
|
+
readonly iso2: "PM";
|
|
2095
|
+
readonly caption: "+508";
|
|
2096
|
+
readonly mask: "XX XXXX";
|
|
2097
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2098
|
+
readonly enabled: true;
|
|
2099
|
+
}, {
|
|
2100
|
+
readonly value: "senegal";
|
|
2101
|
+
readonly iso2: "SN";
|
|
2102
|
+
readonly caption: "+221";
|
|
2103
|
+
readonly mask: "XX XXX XX XX";
|
|
2104
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2105
|
+
readonly enabled: true;
|
|
2106
|
+
}, {
|
|
2107
|
+
readonly value: "serbia";
|
|
2108
|
+
readonly iso2: "RS";
|
|
2109
|
+
readonly mask: "XX XXX-XXXX";
|
|
2110
|
+
readonly caption: "+381";
|
|
2111
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2112
|
+
readonly enabled: true;
|
|
2113
|
+
}, {
|
|
2114
|
+
readonly value: "singapore";
|
|
2115
|
+
readonly iso2: "SG";
|
|
2116
|
+
readonly caption: "+65";
|
|
2117
|
+
readonly mask: "XXXX XXXX";
|
|
2118
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2119
|
+
readonly enabled: true;
|
|
2120
|
+
}, {
|
|
2121
|
+
readonly value: "sintMaarten";
|
|
2122
|
+
readonly iso2: "SX";
|
|
2123
|
+
readonly caption: "+1";
|
|
2124
|
+
readonly mask: "721 XXX-XXXX";
|
|
2125
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2126
|
+
readonly enabled: true;
|
|
2127
|
+
}, {
|
|
2128
|
+
readonly value: "syria";
|
|
2129
|
+
readonly iso2: "SY";
|
|
2130
|
+
readonly mask: "XX XXX-XXXX";
|
|
2131
|
+
readonly caption: "+963";
|
|
2132
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2133
|
+
readonly enabled: true;
|
|
2134
|
+
}, {
|
|
2135
|
+
readonly value: "slovakia";
|
|
2136
|
+
readonly iso2: "SK";
|
|
2137
|
+
readonly caption: "+421";
|
|
2138
|
+
readonly mask: "XXX XXX-XXX";
|
|
2139
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2140
|
+
readonly enabled: true;
|
|
2141
|
+
}, {
|
|
2142
|
+
readonly value: "somaliland";
|
|
2143
|
+
readonly iso2: "SO";
|
|
2144
|
+
readonly caption: "+252";
|
|
2145
|
+
readonly mask: "XX XXXXXXX";
|
|
2146
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2147
|
+
readonly enabled: true;
|
|
2148
|
+
}, {
|
|
2149
|
+
readonly value: "sudan";
|
|
2150
|
+
readonly iso2: "SD";
|
|
2151
|
+
readonly caption: "+249";
|
|
2152
|
+
readonly mask: "XX XXX XXXX";
|
|
2153
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2154
|
+
readonly enabled: true;
|
|
2155
|
+
}, {
|
|
2156
|
+
readonly value: "suriname";
|
|
2157
|
+
readonly iso2: "SR";
|
|
2158
|
+
readonly caption: "+597";
|
|
2159
|
+
readonly mask: "XXX XXXX";
|
|
2160
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2161
|
+
readonly enabled: true;
|
|
2162
|
+
}, {
|
|
2163
|
+
readonly value: "sierraLeone";
|
|
2164
|
+
readonly iso2: "SL";
|
|
2165
|
+
readonly caption: "+232";
|
|
2166
|
+
readonly mask: "XX XXXXXX";
|
|
2167
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2168
|
+
readonly enabled: true;
|
|
2169
|
+
}, {
|
|
2170
|
+
readonly value: "tajikistan";
|
|
2171
|
+
readonly iso2: "TJ";
|
|
2172
|
+
readonly mask: "XX XXX-XXXX";
|
|
2173
|
+
readonly caption: "+992";
|
|
2174
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2175
|
+
readonly enabled: true;
|
|
2176
|
+
}, {
|
|
2177
|
+
readonly value: "thailand";
|
|
2178
|
+
readonly iso2: "TH";
|
|
2179
|
+
readonly caption: "+66";
|
|
2180
|
+
readonly mask: "XX XXX XXXX";
|
|
2181
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2182
|
+
readonly enabled: true;
|
|
2183
|
+
}, {
|
|
2184
|
+
readonly value: "taiwan";
|
|
2185
|
+
readonly iso2: "TW";
|
|
2186
|
+
readonly caption: "+886";
|
|
2187
|
+
readonly mask: "XXX XXX XXX";
|
|
2188
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2189
|
+
readonly enabled: true;
|
|
2190
|
+
}, {
|
|
2191
|
+
readonly value: "tanzania";
|
|
2192
|
+
readonly iso2: "TZ";
|
|
2193
|
+
readonly caption: "+255";
|
|
2194
|
+
readonly mask: "XX XXX XXXX";
|
|
2195
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2196
|
+
readonly enabled: true;
|
|
2197
|
+
}, {
|
|
2198
|
+
readonly value: "tonga";
|
|
2199
|
+
readonly iso2: "TO";
|
|
2200
|
+
readonly caption: "+676";
|
|
2201
|
+
readonly mask: "XX XXX";
|
|
2202
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2203
|
+
readonly enabled: true;
|
|
2204
|
+
}, {
|
|
2205
|
+
readonly value: "tuvalu";
|
|
2206
|
+
readonly iso2: "TV";
|
|
2207
|
+
readonly caption: "+688";
|
|
2208
|
+
readonly mask: "XXXXX";
|
|
2209
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2210
|
+
readonly enabled: true;
|
|
2211
|
+
}, {
|
|
2212
|
+
readonly value: "turkmenistan";
|
|
2213
|
+
readonly iso2: "TM";
|
|
2214
|
+
readonly caption: "+993";
|
|
2215
|
+
readonly mask: "XX XXXXXX";
|
|
2216
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2217
|
+
readonly enabled: true;
|
|
2218
|
+
}, {
|
|
2219
|
+
readonly value: "turkey";
|
|
2220
|
+
readonly iso2: "TR";
|
|
2221
|
+
readonly caption: "+90";
|
|
2222
|
+
readonly mask: "XXX XXX-XXXX";
|
|
2223
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2224
|
+
readonly enabled: true;
|
|
2225
|
+
}, {
|
|
2226
|
+
readonly value: "uganda";
|
|
2227
|
+
readonly iso2: "UG";
|
|
2228
|
+
readonly caption: "+256";
|
|
2229
|
+
readonly mask: "7X XXX XXXX";
|
|
2230
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2231
|
+
readonly enabled: true;
|
|
2232
|
+
}, {
|
|
2233
|
+
readonly value: "uzbekistan";
|
|
2234
|
+
readonly iso2: "UZ";
|
|
2235
|
+
readonly mask: "XX XXX-XX-XX";
|
|
2236
|
+
readonly caption: "+998";
|
|
2237
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2238
|
+
readonly enabled: true;
|
|
2239
|
+
}, {
|
|
2240
|
+
readonly value: "ukraine";
|
|
2241
|
+
readonly iso2: "UA";
|
|
2242
|
+
readonly caption: "+380";
|
|
2243
|
+
readonly mask: "XX XXX-XX-XX";
|
|
2244
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2245
|
+
readonly enabled: true;
|
|
2246
|
+
}, {
|
|
2247
|
+
readonly value: "uruguay";
|
|
2248
|
+
readonly iso2: "UY";
|
|
2249
|
+
readonly caption: "+598";
|
|
2250
|
+
readonly mask: "XX XXX-XXX";
|
|
2251
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2252
|
+
readonly enabled: true;
|
|
2253
|
+
}, {
|
|
2254
|
+
readonly value: "fiji";
|
|
2255
|
+
readonly iso2: "FJ";
|
|
2256
|
+
readonly caption: "+679";
|
|
2257
|
+
readonly mask: "XXX XXXX";
|
|
2258
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2259
|
+
readonly enabled: true;
|
|
2260
|
+
}, {
|
|
2261
|
+
readonly value: "finland";
|
|
2262
|
+
readonly iso2: "FI";
|
|
2263
|
+
readonly caption: "+358";
|
|
2264
|
+
readonly mask: "XXX XXX-XX-XX";
|
|
2265
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2266
|
+
readonly enabled: true;
|
|
2267
|
+
}, {
|
|
2268
|
+
readonly value: "france";
|
|
2269
|
+
readonly iso2: "FR";
|
|
2270
|
+
readonly caption: "+33";
|
|
2271
|
+
readonly mask: "XXX XXX-XXX";
|
|
2272
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2273
|
+
readonly enabled: true;
|
|
2274
|
+
}, {
|
|
2275
|
+
readonly value: "frenchPolynesia";
|
|
2276
|
+
readonly iso2: "PF";
|
|
2277
|
+
readonly caption: "+689";
|
|
2278
|
+
readonly mask: "XX XXXXXXX";
|
|
2279
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2280
|
+
readonly enabled: true;
|
|
2281
|
+
}, {
|
|
2282
|
+
readonly value: "croatia";
|
|
2283
|
+
readonly iso2: "HR";
|
|
2284
|
+
readonly caption: "+385";
|
|
2285
|
+
readonly mask: "XX XXX-XXXX";
|
|
2286
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2287
|
+
readonly enabled: true;
|
|
2288
|
+
}, {
|
|
2289
|
+
readonly value: "centralAfricanRepublic";
|
|
2290
|
+
readonly iso2: "CF";
|
|
2291
|
+
readonly caption: "+236";
|
|
2292
|
+
readonly mask: "XX XXX-XXX";
|
|
2293
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2294
|
+
readonly enabled: true;
|
|
2295
|
+
}, {
|
|
2296
|
+
readonly value: "chad";
|
|
2297
|
+
readonly iso2: "TD";
|
|
2298
|
+
readonly caption: "+235";
|
|
2299
|
+
readonly mask: "XX XX XX XX";
|
|
2300
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2301
|
+
readonly enabled: true;
|
|
2302
|
+
}, {
|
|
2303
|
+
readonly value: "montenegro";
|
|
2304
|
+
readonly iso2: "ME";
|
|
2305
|
+
readonly caption: "+382";
|
|
2306
|
+
readonly mask: "XX XXX-XXX";
|
|
2307
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2308
|
+
readonly enabled: true;
|
|
2309
|
+
}, {
|
|
2310
|
+
readonly value: "chile";
|
|
2311
|
+
readonly iso2: "CL";
|
|
2312
|
+
readonly caption: "+56";
|
|
2313
|
+
readonly mask: "9 XXXX XXXX";
|
|
2314
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2315
|
+
readonly enabled: true;
|
|
2316
|
+
}, {
|
|
2317
|
+
readonly value: "switzerland";
|
|
2318
|
+
readonly iso2: "CH";
|
|
2319
|
+
readonly caption: "+41";
|
|
2320
|
+
readonly mask: "XX XXX-XXXX";
|
|
2321
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2322
|
+
readonly enabled: true;
|
|
2323
|
+
}, {
|
|
2324
|
+
readonly value: "sweden";
|
|
2325
|
+
readonly iso2: "SE";
|
|
2326
|
+
readonly caption: "+46";
|
|
2327
|
+
readonly mask: "7X XXX XX XX";
|
|
2328
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2329
|
+
readonly enabled: true;
|
|
2330
|
+
}, {
|
|
2331
|
+
readonly value: "sriLanka";
|
|
2332
|
+
readonly iso2: "LK";
|
|
2333
|
+
readonly caption: "+94";
|
|
2334
|
+
readonly mask: "XX XXX XXXX";
|
|
2335
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2336
|
+
readonly enabled: true;
|
|
2337
|
+
}, {
|
|
2338
|
+
readonly value: "ecuador";
|
|
2339
|
+
readonly iso2: "EC";
|
|
2340
|
+
readonly caption: "+593";
|
|
2341
|
+
readonly mask: "9X XXX XXXX";
|
|
2342
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2343
|
+
readonly enabled: true;
|
|
2344
|
+
}, {
|
|
2345
|
+
readonly value: "estonia";
|
|
2346
|
+
readonly iso2: "EE";
|
|
2347
|
+
readonly caption: "+372";
|
|
2348
|
+
readonly mask: "XXXX XXXX";
|
|
2349
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2350
|
+
readonly enabled: true;
|
|
2351
|
+
}, {
|
|
2352
|
+
readonly value: "ethiopia";
|
|
2353
|
+
readonly iso2: "ET";
|
|
2354
|
+
readonly mask: "XX XXX-XXXX";
|
|
2355
|
+
readonly caption: "+251";
|
|
2356
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2357
|
+
readonly enabled: true;
|
|
2358
|
+
}, {
|
|
2359
|
+
readonly value: "southAfrica";
|
|
2360
|
+
readonly iso2: "ZA";
|
|
2361
|
+
readonly mask: "XX XXX-XXXX";
|
|
2362
|
+
readonly caption: "+27";
|
|
2363
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2364
|
+
readonly enabled: true;
|
|
2365
|
+
}, {
|
|
2366
|
+
readonly value: "southKorea";
|
|
2367
|
+
readonly iso2: "KR";
|
|
2368
|
+
readonly caption: "+82";
|
|
2369
|
+
readonly mask: "XX XXXX-XXXX";
|
|
2370
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2371
|
+
readonly enabled: true;
|
|
2372
|
+
}, {
|
|
2373
|
+
readonly value: "southSudan";
|
|
2374
|
+
readonly iso2: "SS";
|
|
2375
|
+
readonly caption: "+211";
|
|
2376
|
+
readonly mask: "XX XXX-XXXX";
|
|
2377
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2378
|
+
readonly enabled: true;
|
|
2379
|
+
}, {
|
|
2380
|
+
readonly value: "japan";
|
|
2381
|
+
readonly iso2: "JP";
|
|
2382
|
+
readonly caption: "+81";
|
|
2383
|
+
readonly mask: "XX XXXX-XXXX";
|
|
2384
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2385
|
+
readonly enabled: true;
|
|
2386
|
+
}];
|
|
2387
|
+
export declare const ENABLED_COUNTRY_CODES: ({
|
|
2388
|
+
readonly value: "russia";
|
|
2389
|
+
readonly iso2: "RU";
|
|
2390
|
+
readonly mask: "XXX XXX-XX-XX";
|
|
2391
|
+
readonly caption: "+7";
|
|
2392
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2393
|
+
readonly enabled: true;
|
|
2394
|
+
} | {
|
|
2395
|
+
readonly value: "abkhazia";
|
|
2396
|
+
readonly iso2: "RU";
|
|
2397
|
+
readonly caption: "+7";
|
|
2398
|
+
readonly mask: "XXX XXX-XX-XX";
|
|
2399
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2400
|
+
readonly enabled: true;
|
|
2401
|
+
} | {
|
|
2402
|
+
readonly value: "australia";
|
|
2403
|
+
readonly iso2: "AU";
|
|
2404
|
+
readonly caption: "+61";
|
|
2405
|
+
readonly mask: "X XXXX-XXXX";
|
|
2406
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2407
|
+
readonly enabled: true;
|
|
2408
|
+
} | {
|
|
2409
|
+
readonly value: "austria";
|
|
2410
|
+
readonly iso2: "AT";
|
|
2411
|
+
readonly caption: "+43";
|
|
2412
|
+
readonly mask: "XXX XXX-XXXX";
|
|
2413
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2414
|
+
readonly enabled: true;
|
|
2415
|
+
} | {
|
|
2416
|
+
readonly value: "azerbaijan";
|
|
2417
|
+
readonly iso2: "AZ";
|
|
2418
|
+
readonly mask: "XX XXX-XX-XX";
|
|
2419
|
+
readonly caption: "+994";
|
|
2420
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2421
|
+
readonly enabled: false;
|
|
2422
|
+
} | {
|
|
2423
|
+
readonly value: "albania";
|
|
2424
|
+
readonly iso2: "AL";
|
|
2425
|
+
readonly caption: "+355";
|
|
2426
|
+
readonly mask: "XXX XXX-XXX";
|
|
2427
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2428
|
+
readonly enabled: true;
|
|
2429
|
+
} | {
|
|
2430
|
+
readonly value: "algeria";
|
|
2431
|
+
readonly iso2: "DZ";
|
|
2432
|
+
readonly caption: "+213";
|
|
2433
|
+
readonly mask: "XX XXX-XXXX";
|
|
2434
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2435
|
+
readonly enabled: true;
|
|
2436
|
+
} | {
|
|
2437
|
+
readonly value: "angola";
|
|
2438
|
+
readonly iso2: "AO";
|
|
2439
|
+
readonly caption: "+244";
|
|
2440
|
+
readonly mask: "XXX XXXX";
|
|
2441
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2442
|
+
readonly enabled: true;
|
|
2443
|
+
} | {
|
|
2444
|
+
readonly value: "andorra";
|
|
2445
|
+
readonly iso2: "AD";
|
|
2446
|
+
readonly caption: "+376";
|
|
2447
|
+
readonly mask: "XXX XXXX";
|
|
2448
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2449
|
+
readonly enabled: true;
|
|
2450
|
+
} | {
|
|
2451
|
+
readonly value: "antiguaAndBarbuda";
|
|
2452
|
+
readonly iso2: "AG";
|
|
2453
|
+
readonly caption: "+1";
|
|
2454
|
+
readonly mask: "268 XXX-XXXX";
|
|
2455
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2456
|
+
readonly enabled: true;
|
|
2457
|
+
} | {
|
|
2458
|
+
readonly value: "armenia";
|
|
2459
|
+
readonly iso2: "AM";
|
|
2460
|
+
readonly mask: "XX XXX-XXX";
|
|
2461
|
+
readonly caption: "+374";
|
|
2462
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2463
|
+
readonly enabled: true;
|
|
2464
|
+
} | {
|
|
2465
|
+
readonly value: "bahamas";
|
|
2466
|
+
readonly iso2: "BS";
|
|
2467
|
+
readonly caption: "+1";
|
|
2468
|
+
readonly mask: "242 XXX-XXXX";
|
|
2469
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2470
|
+
readonly enabled: true;
|
|
2471
|
+
} | {
|
|
2472
|
+
readonly value: "bangladesh";
|
|
2473
|
+
readonly iso2: "BD";
|
|
2474
|
+
readonly caption: "+880";
|
|
2475
|
+
readonly mask: "X XXX-XXXX";
|
|
2476
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2477
|
+
readonly enabled: true;
|
|
2478
|
+
} | {
|
|
2479
|
+
readonly value: "barbados";
|
|
2480
|
+
readonly iso2: "BB";
|
|
2481
|
+
readonly caption: "+1";
|
|
2482
|
+
readonly mask: "246 XXX-XXXX";
|
|
2483
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2484
|
+
readonly enabled: true;
|
|
2485
|
+
} | {
|
|
2486
|
+
readonly value: "bahrain";
|
|
2487
|
+
readonly iso2: "BH";
|
|
2488
|
+
readonly caption: "+973";
|
|
2489
|
+
readonly mask: "XX XXX-XXX";
|
|
2490
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2491
|
+
readonly enabled: true;
|
|
2492
|
+
} | {
|
|
2493
|
+
readonly value: "belarus";
|
|
2494
|
+
readonly iso2: "BY";
|
|
2495
|
+
readonly mask: "XX XXX-XX-XX";
|
|
2496
|
+
readonly caption: "+375";
|
|
2497
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2498
|
+
readonly enabled: true;
|
|
2499
|
+
} | {
|
|
2500
|
+
readonly value: "belize";
|
|
2501
|
+
readonly iso2: "BZ";
|
|
2502
|
+
readonly caption: "+501";
|
|
2503
|
+
readonly mask: "XXX XXXX";
|
|
2504
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2505
|
+
readonly enabled: true;
|
|
2506
|
+
} | {
|
|
2507
|
+
readonly value: "belgium";
|
|
2508
|
+
readonly iso2: "BE";
|
|
2509
|
+
readonly caption: "+32";
|
|
2510
|
+
readonly mask: "XXX XXX-XXX";
|
|
2511
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2512
|
+
readonly enabled: true;
|
|
2513
|
+
} | {
|
|
2514
|
+
readonly value: "bosniaAndHerzegovina";
|
|
2515
|
+
readonly iso2: "BA";
|
|
2516
|
+
readonly caption: "+387";
|
|
2517
|
+
readonly mask: "XX XXX-XXX";
|
|
2518
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2519
|
+
readonly enabled: true;
|
|
2520
|
+
} | {
|
|
2521
|
+
readonly value: "botswana";
|
|
2522
|
+
readonly iso2: "BW";
|
|
2523
|
+
readonly caption: "+267";
|
|
2524
|
+
readonly mask: "XX XXX-XXX";
|
|
2525
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2526
|
+
readonly enabled: true;
|
|
2527
|
+
} | {
|
|
2528
|
+
readonly value: "brazil";
|
|
2529
|
+
readonly iso2: "BR";
|
|
2530
|
+
readonly mask: "XX XXXXX-XXXX";
|
|
2531
|
+
readonly caption: "+55";
|
|
2532
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2533
|
+
readonly enabled: true;
|
|
2534
|
+
} | {
|
|
2535
|
+
readonly value: "bhutan";
|
|
2536
|
+
readonly iso2: "BT";
|
|
2537
|
+
readonly caption: "+975";
|
|
2538
|
+
readonly mask: "XX XXX-XXX";
|
|
2539
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2540
|
+
readonly enabled: true;
|
|
2541
|
+
} | {
|
|
2542
|
+
readonly value: "vanuatu";
|
|
2543
|
+
readonly iso2: "VU";
|
|
2544
|
+
readonly caption: "+678";
|
|
2545
|
+
readonly mask: "XXX XXXX";
|
|
2546
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2547
|
+
readonly enabled: true;
|
|
2548
|
+
} | {
|
|
2549
|
+
readonly value: "hungary";
|
|
2550
|
+
readonly iso2: "HU";
|
|
2551
|
+
readonly caption: "+36";
|
|
2552
|
+
readonly mask: "XXX XXX-XXX";
|
|
2553
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2554
|
+
readonly enabled: true;
|
|
2555
|
+
} | {
|
|
2556
|
+
readonly value: "guyana";
|
|
2557
|
+
readonly iso2: "GY";
|
|
2558
|
+
readonly caption: "+592";
|
|
2559
|
+
readonly mask: "XXX XXXX";
|
|
2560
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2561
|
+
readonly enabled: true;
|
|
2562
|
+
} | {
|
|
2563
|
+
readonly value: "guatemala";
|
|
2564
|
+
readonly iso2: "GT";
|
|
2565
|
+
readonly caption: "+502";
|
|
2566
|
+
readonly mask: "XXXX XXXX";
|
|
2567
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2568
|
+
readonly enabled: true;
|
|
2569
|
+
} | {
|
|
2570
|
+
readonly value: "germany";
|
|
2571
|
+
readonly iso2: "DE";
|
|
2572
|
+
readonly caption: "+49";
|
|
2573
|
+
readonly mask: "XXX XXX-XXXX";
|
|
2574
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2575
|
+
readonly enabled: true;
|
|
2576
|
+
} | {
|
|
2577
|
+
readonly value: "guernsey";
|
|
2578
|
+
readonly iso2: "GG";
|
|
2579
|
+
readonly caption: "+44";
|
|
2580
|
+
readonly mask: "1481 XXXXXX";
|
|
2581
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2582
|
+
readonly enabled: true;
|
|
2583
|
+
} | {
|
|
2584
|
+
readonly value: "gibraltar";
|
|
2585
|
+
readonly iso2: "GI";
|
|
2586
|
+
readonly caption: "+350";
|
|
2587
|
+
readonly mask: "XXX XXXXX";
|
|
2588
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2589
|
+
readonly enabled: true;
|
|
2590
|
+
} | {
|
|
2591
|
+
readonly value: "honduras";
|
|
2592
|
+
readonly iso2: "HN";
|
|
2593
|
+
readonly caption: "+504";
|
|
2594
|
+
readonly mask: "XXXX XXXX";
|
|
2595
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2596
|
+
readonly enabled: true;
|
|
2597
|
+
} | {
|
|
2598
|
+
readonly value: "greece";
|
|
2599
|
+
readonly iso2: "GR";
|
|
2600
|
+
readonly caption: "+30";
|
|
2601
|
+
readonly mask: "XXX XXX-XXXX";
|
|
2602
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2603
|
+
readonly enabled: true;
|
|
2604
|
+
} | {
|
|
2605
|
+
readonly value: "georgia";
|
|
2606
|
+
readonly iso2: "GE";
|
|
2607
|
+
readonly mask: "XXX XX-XX-XX";
|
|
2608
|
+
readonly caption: "+995";
|
|
2609
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2610
|
+
readonly enabled: true;
|
|
2611
|
+
} | {
|
|
2612
|
+
readonly value: "denmark";
|
|
2613
|
+
readonly iso2: "DK";
|
|
2614
|
+
readonly caption: "+45";
|
|
2615
|
+
readonly mask: "XX XX-XX-XX";
|
|
2616
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2617
|
+
readonly enabled: true;
|
|
2618
|
+
} | {
|
|
2619
|
+
readonly value: "djibouti";
|
|
2620
|
+
readonly iso2: "DJ";
|
|
2621
|
+
readonly caption: "+253";
|
|
2622
|
+
readonly mask: "XXXX XXXX";
|
|
2623
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2624
|
+
readonly enabled: true;
|
|
2625
|
+
} | {
|
|
2626
|
+
readonly value: "dominicanRepublic";
|
|
2627
|
+
readonly iso2: "DO";
|
|
2628
|
+
readonly caption: "+1";
|
|
2629
|
+
readonly mask: "XXX XXX-XXXX";
|
|
2630
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2631
|
+
readonly enabled: true;
|
|
2632
|
+
} | {
|
|
2633
|
+
readonly value: "egypt";
|
|
2634
|
+
readonly iso2: "EG";
|
|
2635
|
+
readonly mask: "XX XXXX-XXXX";
|
|
2636
|
+
readonly caption: "+20";
|
|
2637
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2638
|
+
readonly enabled: true;
|
|
2639
|
+
} | {
|
|
2640
|
+
readonly value: "zimbabwe";
|
|
2641
|
+
readonly iso2: "ZW";
|
|
2642
|
+
readonly caption: "+263";
|
|
2643
|
+
readonly mask: "XX XXX-XXXX";
|
|
2644
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2645
|
+
readonly enabled: true;
|
|
2646
|
+
} | {
|
|
2647
|
+
readonly value: "israel";
|
|
2648
|
+
readonly iso2: "IL";
|
|
2649
|
+
readonly caption: "+972";
|
|
2650
|
+
readonly mask: "XX XXX-XXXX";
|
|
2651
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2652
|
+
readonly enabled: true;
|
|
2653
|
+
} | {
|
|
2654
|
+
readonly value: "india";
|
|
2655
|
+
readonly iso2: "IN";
|
|
2656
|
+
readonly mask: "XXXXX-XXXXX";
|
|
2657
|
+
readonly caption: "+91";
|
|
2658
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2659
|
+
readonly enabled: true;
|
|
2660
|
+
} | {
|
|
2661
|
+
readonly value: "iraq";
|
|
2662
|
+
readonly iso2: "IQ";
|
|
2663
|
+
readonly caption: "+964";
|
|
2664
|
+
readonly mask: "XX XXX-XXXX";
|
|
2665
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2666
|
+
readonly enabled: true;
|
|
2667
|
+
} | {
|
|
2668
|
+
readonly value: "iran";
|
|
2669
|
+
readonly iso2: "IR";
|
|
2670
|
+
readonly mask: "XXX XXX-XXXX";
|
|
2671
|
+
readonly caption: "+98";
|
|
2672
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2673
|
+
readonly enabled: true;
|
|
2674
|
+
} | {
|
|
2675
|
+
readonly value: "ireland";
|
|
2676
|
+
readonly iso2: "IE";
|
|
2677
|
+
readonly caption: "+353";
|
|
2678
|
+
readonly mask: "XXX XXX-XXX";
|
|
2679
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2680
|
+
readonly enabled: true;
|
|
2681
|
+
} | {
|
|
2682
|
+
readonly value: "iceland";
|
|
2683
|
+
readonly iso2: "IS";
|
|
2684
|
+
readonly caption: "+354";
|
|
2685
|
+
readonly mask: "XXX XXXX";
|
|
2686
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2687
|
+
readonly enabled: true;
|
|
2688
|
+
} | {
|
|
2689
|
+
readonly value: "spain";
|
|
2690
|
+
readonly iso2: "ES";
|
|
2691
|
+
readonly caption: "+34";
|
|
2692
|
+
readonly mask: "XXX XXX-XXX";
|
|
2693
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2694
|
+
readonly enabled: true;
|
|
2695
|
+
} | {
|
|
2696
|
+
readonly value: "italy";
|
|
2697
|
+
readonly iso2: "IT";
|
|
2698
|
+
readonly caption: "+39";
|
|
2699
|
+
readonly mask: "XXX XXXX-XXX";
|
|
2700
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2701
|
+
readonly enabled: true;
|
|
2702
|
+
} | {
|
|
2703
|
+
readonly value: "kazakhstan";
|
|
2704
|
+
readonly iso2: "KZ";
|
|
2705
|
+
readonly mask: "XXX XXX-XX-XX";
|
|
2706
|
+
readonly caption: "+7";
|
|
2707
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2708
|
+
readonly enabled: true;
|
|
2709
|
+
} | {
|
|
2710
|
+
readonly value: "caymanIslands";
|
|
2711
|
+
readonly iso2: "KY";
|
|
2712
|
+
readonly caption: "+1";
|
|
2713
|
+
readonly mask: "345 XXX-XXXX";
|
|
2714
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2715
|
+
readonly enabled: true;
|
|
2716
|
+
} | {
|
|
2717
|
+
readonly value: "cyprus";
|
|
2718
|
+
readonly iso2: "CY";
|
|
2719
|
+
readonly mask: "XX XXXXXX";
|
|
2720
|
+
readonly caption: "+357";
|
|
2721
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2722
|
+
readonly enabled: true;
|
|
2723
|
+
} | {
|
|
2724
|
+
readonly value: "kiribati";
|
|
2725
|
+
readonly iso2: "KI";
|
|
2726
|
+
readonly caption: "+686";
|
|
2727
|
+
readonly mask: "XXX XXXX";
|
|
2728
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2729
|
+
readonly enabled: true;
|
|
2730
|
+
} | {
|
|
2731
|
+
readonly value: "colombia";
|
|
2732
|
+
readonly iso2: "CO";
|
|
2733
|
+
readonly caption: "+57";
|
|
2734
|
+
readonly mask: "XXX XXX-XXXX";
|
|
2735
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2736
|
+
readonly enabled: true;
|
|
2737
|
+
} | {
|
|
2738
|
+
readonly value: "kosovo";
|
|
2739
|
+
readonly iso2: "XK";
|
|
2740
|
+
readonly caption: "+383";
|
|
2741
|
+
readonly mask: "XXX XXXX";
|
|
2742
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2743
|
+
readonly enabled: true;
|
|
2744
|
+
} | {
|
|
2745
|
+
readonly value: "kyrgyzstan";
|
|
2746
|
+
readonly iso2: "KG";
|
|
2747
|
+
readonly mask: "XXX XXX-XXX";
|
|
2748
|
+
readonly caption: "+996";
|
|
2749
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2750
|
+
readonly enabled: true;
|
|
2751
|
+
} | {
|
|
2752
|
+
readonly value: "latvia";
|
|
2753
|
+
readonly iso2: "LV";
|
|
2754
|
+
readonly caption: "+371";
|
|
2755
|
+
readonly mask: "XX XXX-XXX";
|
|
2756
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2757
|
+
readonly enabled: true;
|
|
2758
|
+
} | {
|
|
2759
|
+
readonly value: "lesotho";
|
|
2760
|
+
readonly iso2: "LS";
|
|
2761
|
+
readonly caption: "+266";
|
|
2762
|
+
readonly mask: "XXXX XXXX";
|
|
2763
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2764
|
+
readonly enabled: true;
|
|
2765
|
+
} | {
|
|
2766
|
+
readonly value: "lebanon";
|
|
2767
|
+
readonly iso2: "LB";
|
|
2768
|
+
readonly caption: "+961";
|
|
2769
|
+
readonly mask: "XXX XX-XX";
|
|
2770
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2771
|
+
readonly enabled: true;
|
|
2772
|
+
} | {
|
|
2773
|
+
readonly value: "lithuania";
|
|
2774
|
+
readonly iso2: "LT";
|
|
2775
|
+
readonly caption: "+370";
|
|
2776
|
+
readonly mask: "XXX XX-XXX";
|
|
2777
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2778
|
+
readonly enabled: true;
|
|
2779
|
+
} | {
|
|
2780
|
+
readonly value: "liechtenstein";
|
|
2781
|
+
readonly iso2: "LI";
|
|
2782
|
+
readonly caption: "+423";
|
|
2783
|
+
readonly mask: "XXXX XXXX";
|
|
2784
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2785
|
+
readonly enabled: true;
|
|
2786
|
+
} | {
|
|
2787
|
+
readonly value: "luxembourg";
|
|
2788
|
+
readonly iso2: "LU";
|
|
2789
|
+
readonly caption: "+352";
|
|
2790
|
+
readonly mask: "XXX XXX-XXX";
|
|
2791
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2792
|
+
readonly enabled: true;
|
|
2793
|
+
} | {
|
|
2794
|
+
readonly value: "mauritius";
|
|
2795
|
+
readonly iso2: "MU";
|
|
2796
|
+
readonly caption: "+230";
|
|
2797
|
+
readonly mask: "XXXX XXXX";
|
|
2798
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2799
|
+
readonly enabled: true;
|
|
2800
|
+
} | {
|
|
2801
|
+
readonly value: "mauritania";
|
|
2802
|
+
readonly iso2: "MR";
|
|
2803
|
+
readonly caption: "+222";
|
|
2804
|
+
readonly mask: "XX XX-XX-XX";
|
|
2805
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2806
|
+
readonly enabled: true;
|
|
2807
|
+
} | {
|
|
2808
|
+
readonly value: "madagascar";
|
|
2809
|
+
readonly iso2: "MG";
|
|
2810
|
+
readonly caption: "+261";
|
|
2811
|
+
readonly mask: "XX XX-XXX-XX";
|
|
2812
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2813
|
+
readonly enabled: true;
|
|
2814
|
+
} | {
|
|
2815
|
+
readonly value: "mayotte";
|
|
2816
|
+
readonly iso2: "YT";
|
|
2817
|
+
readonly caption: "+262";
|
|
2818
|
+
readonly mask: "XXX XX-XX-XX";
|
|
2819
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2820
|
+
readonly enabled: true;
|
|
2821
|
+
} | {
|
|
2822
|
+
readonly value: "mali";
|
|
2823
|
+
readonly iso2: "ML";
|
|
2824
|
+
readonly caption: "+223";
|
|
2825
|
+
readonly mask: "XX XX-XX-XX";
|
|
2826
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2827
|
+
readonly enabled: true;
|
|
2828
|
+
} | {
|
|
2829
|
+
readonly value: "maldives";
|
|
2830
|
+
readonly iso2: "MV";
|
|
2831
|
+
readonly caption: "+960";
|
|
2832
|
+
readonly mask: "XXX XXXX";
|
|
2833
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2834
|
+
readonly enabled: true;
|
|
2835
|
+
} | {
|
|
2836
|
+
readonly value: "malta";
|
|
2837
|
+
readonly iso2: "MT";
|
|
2838
|
+
readonly caption: "+356";
|
|
2839
|
+
readonly mask: "XXX XXXX";
|
|
2840
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2841
|
+
readonly enabled: true;
|
|
2842
|
+
} | {
|
|
2843
|
+
readonly value: "morocco";
|
|
2844
|
+
readonly iso2: "MA";
|
|
2845
|
+
readonly caption: "+212";
|
|
2846
|
+
readonly mask: "XXX XXXXXX";
|
|
2847
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2848
|
+
readonly enabled: true;
|
|
2849
|
+
} | {
|
|
2850
|
+
readonly value: "moldova";
|
|
2851
|
+
readonly iso2: "MD";
|
|
2852
|
+
readonly mask: "XXXX XXXX";
|
|
2853
|
+
readonly caption: "+373";
|
|
2854
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2855
|
+
readonly enabled: true;
|
|
2856
|
+
} | {
|
|
2857
|
+
readonly value: "monaco";
|
|
2858
|
+
readonly iso2: "MC";
|
|
2859
|
+
readonly caption: "+377";
|
|
2860
|
+
readonly mask: "XX XXXXXXX";
|
|
2861
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2862
|
+
readonly enabled: true;
|
|
2863
|
+
} | {
|
|
2864
|
+
readonly value: "myanmar";
|
|
2865
|
+
readonly iso2: "MM";
|
|
2866
|
+
readonly caption: "+95";
|
|
2867
|
+
readonly mask: "XXX XXXX";
|
|
2868
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2869
|
+
readonly enabled: true;
|
|
2870
|
+
} | {
|
|
2871
|
+
readonly value: "namibia";
|
|
2872
|
+
readonly iso2: "NA";
|
|
2873
|
+
readonly caption: "+264";
|
|
2874
|
+
readonly mask: "XX XXX-XXXX";
|
|
2875
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2876
|
+
readonly enabled: true;
|
|
2877
|
+
} | {
|
|
2878
|
+
readonly value: "niger";
|
|
2879
|
+
readonly iso2: "NE";
|
|
2880
|
+
readonly caption: "+227";
|
|
2881
|
+
readonly mask: "XX XX-XX-XX";
|
|
2882
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2883
|
+
readonly enabled: true;
|
|
2884
|
+
} | {
|
|
2885
|
+
readonly value: "netherlands";
|
|
2886
|
+
readonly iso2: "NL";
|
|
2887
|
+
readonly mask: "XX XXX-XXXX";
|
|
2888
|
+
readonly caption: "+31";
|
|
2889
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2890
|
+
readonly enabled: true;
|
|
2891
|
+
} | {
|
|
2892
|
+
readonly value: "newZealand";
|
|
2893
|
+
readonly iso2: "NZ";
|
|
2894
|
+
readonly caption: "+64";
|
|
2895
|
+
readonly mask: "XX XXX-XXXX";
|
|
2896
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2897
|
+
readonly enabled: true;
|
|
2898
|
+
} | {
|
|
2899
|
+
readonly value: "newCaledonia";
|
|
2900
|
+
readonly iso2: "NC";
|
|
2901
|
+
readonly caption: "+687";
|
|
2902
|
+
readonly mask: "XX XX-XX";
|
|
2903
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2904
|
+
readonly enabled: true;
|
|
2905
|
+
} | {
|
|
2906
|
+
readonly value: "unitedArabEmirates";
|
|
2907
|
+
readonly iso2: "AE";
|
|
2908
|
+
readonly mask: "XX XXX-XXXX";
|
|
2909
|
+
readonly caption: "+971";
|
|
2910
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2911
|
+
readonly enabled: true;
|
|
2912
|
+
} | {
|
|
2913
|
+
readonly value: "oman";
|
|
2914
|
+
readonly iso2: "OM";
|
|
2915
|
+
readonly caption: "+968";
|
|
2916
|
+
readonly mask: "XXXX XXXX";
|
|
2917
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2918
|
+
readonly enabled: true;
|
|
2919
|
+
} | {
|
|
2920
|
+
readonly value: "isleOfMan";
|
|
2921
|
+
readonly iso2: "IM";
|
|
2922
|
+
readonly caption: "+44";
|
|
2923
|
+
readonly mask: "1624 XXXXXX";
|
|
2924
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2925
|
+
readonly enabled: true;
|
|
2926
|
+
} | {
|
|
2927
|
+
readonly value: "norfolkIsland";
|
|
2928
|
+
readonly iso2: "NF";
|
|
2929
|
+
readonly caption: "+672";
|
|
2930
|
+
readonly mask: "X XX-XXX";
|
|
2931
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2932
|
+
readonly enabled: true;
|
|
2933
|
+
} | {
|
|
2934
|
+
readonly value: "wallisAndFutunaIslands";
|
|
2935
|
+
readonly iso2: "WF";
|
|
2936
|
+
readonly caption: "+681";
|
|
2937
|
+
readonly mask: "XX XXXX";
|
|
2938
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2939
|
+
readonly enabled: true;
|
|
2940
|
+
} | {
|
|
2941
|
+
readonly value: "peru";
|
|
2942
|
+
readonly iso2: "PE";
|
|
2943
|
+
readonly caption: "+51";
|
|
2944
|
+
readonly mask: "XXX XXX-XXX";
|
|
2945
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2946
|
+
readonly enabled: true;
|
|
2947
|
+
} | {
|
|
2948
|
+
readonly value: "poland";
|
|
2949
|
+
readonly iso2: "PL";
|
|
2950
|
+
readonly caption: "+48";
|
|
2951
|
+
readonly mask: "XXX XXX-XXX";
|
|
2952
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2953
|
+
readonly enabled: true;
|
|
2954
|
+
} | {
|
|
2955
|
+
readonly value: "portugal";
|
|
2956
|
+
readonly iso2: "PT";
|
|
2957
|
+
readonly caption: "+351";
|
|
2958
|
+
readonly mask: "XX XXX-XXXX";
|
|
2959
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2960
|
+
readonly enabled: true;
|
|
2961
|
+
} | {
|
|
2962
|
+
readonly value: "transnistria";
|
|
2963
|
+
readonly iso2: "MD";
|
|
2964
|
+
readonly caption: "+373";
|
|
2965
|
+
readonly mask: "XXX XX-XXX";
|
|
2966
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2967
|
+
readonly enabled: true;
|
|
2968
|
+
} | {
|
|
2969
|
+
readonly value: "romania";
|
|
2970
|
+
readonly iso2: "RO";
|
|
2971
|
+
readonly mask: "XX XXX-XXXX";
|
|
2972
|
+
readonly caption: "+40";
|
|
2973
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2974
|
+
readonly enabled: true;
|
|
2975
|
+
} | {
|
|
2976
|
+
readonly value: "sanMarino";
|
|
2977
|
+
readonly iso2: "SM";
|
|
2978
|
+
readonly caption: "+378";
|
|
2979
|
+
readonly mask: "XXXX XXXXXX";
|
|
2980
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2981
|
+
readonly enabled: true;
|
|
2982
|
+
} | {
|
|
2983
|
+
readonly value: "saoTomeAndPrincipe";
|
|
2984
|
+
readonly iso2: "ST";
|
|
2985
|
+
readonly caption: "+239";
|
|
2986
|
+
readonly mask: "XX XXXX";
|
|
2987
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2988
|
+
readonly enabled: true;
|
|
2989
|
+
} | {
|
|
2990
|
+
readonly value: "saudiArabia";
|
|
2991
|
+
readonly iso2: "SA";
|
|
2992
|
+
readonly mask: "X XXXX-XXXX";
|
|
2993
|
+
readonly caption: "+966";
|
|
2994
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
2995
|
+
readonly enabled: true;
|
|
2996
|
+
} | {
|
|
2997
|
+
readonly value: "northMacedonia";
|
|
2998
|
+
readonly iso2: "MK";
|
|
2999
|
+
readonly caption: "+389";
|
|
3000
|
+
readonly mask: "XXX XXXXX";
|
|
3001
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3002
|
+
readonly enabled: true;
|
|
3003
|
+
} | {
|
|
3004
|
+
readonly value: "saintPierreAndMiquelon";
|
|
3005
|
+
readonly iso2: "PM";
|
|
3006
|
+
readonly caption: "+508";
|
|
3007
|
+
readonly mask: "XX XXXX";
|
|
3008
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3009
|
+
readonly enabled: true;
|
|
3010
|
+
} | {
|
|
3011
|
+
readonly value: "serbia";
|
|
3012
|
+
readonly iso2: "RS";
|
|
3013
|
+
readonly mask: "XX XXX-XXXX";
|
|
3014
|
+
readonly caption: "+381";
|
|
3015
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3016
|
+
readonly enabled: true;
|
|
3017
|
+
} | {
|
|
3018
|
+
readonly value: "singapore";
|
|
3019
|
+
readonly iso2: "SG";
|
|
3020
|
+
readonly caption: "+65";
|
|
3021
|
+
readonly mask: "XXXX XXXX";
|
|
3022
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3023
|
+
readonly enabled: true;
|
|
3024
|
+
} | {
|
|
3025
|
+
readonly value: "sintMaarten";
|
|
3026
|
+
readonly iso2: "SX";
|
|
3027
|
+
readonly caption: "+1";
|
|
3028
|
+
readonly mask: "721 XXX-XXXX";
|
|
3029
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3030
|
+
readonly enabled: true;
|
|
3031
|
+
} | {
|
|
3032
|
+
readonly value: "syria";
|
|
3033
|
+
readonly iso2: "SY";
|
|
3034
|
+
readonly mask: "XX XXX-XXXX";
|
|
3035
|
+
readonly caption: "+963";
|
|
3036
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3037
|
+
readonly enabled: true;
|
|
3038
|
+
} | {
|
|
3039
|
+
readonly value: "slovakia";
|
|
3040
|
+
readonly iso2: "SK";
|
|
3041
|
+
readonly caption: "+421";
|
|
3042
|
+
readonly mask: "XXX XXX-XXX";
|
|
3043
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3044
|
+
readonly enabled: true;
|
|
3045
|
+
} | {
|
|
3046
|
+
readonly value: "somaliland";
|
|
3047
|
+
readonly iso2: "SO";
|
|
3048
|
+
readonly caption: "+252";
|
|
3049
|
+
readonly mask: "XX XXXXXXX";
|
|
3050
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3051
|
+
readonly enabled: true;
|
|
3052
|
+
} | {
|
|
3053
|
+
readonly value: "suriname";
|
|
3054
|
+
readonly iso2: "SR";
|
|
3055
|
+
readonly caption: "+597";
|
|
3056
|
+
readonly mask: "XXX XXXX";
|
|
3057
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3058
|
+
readonly enabled: true;
|
|
3059
|
+
} | {
|
|
3060
|
+
readonly value: "sierraLeone";
|
|
3061
|
+
readonly iso2: "SL";
|
|
3062
|
+
readonly caption: "+232";
|
|
3063
|
+
readonly mask: "XX XXXXXX";
|
|
3064
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3065
|
+
readonly enabled: true;
|
|
3066
|
+
} | {
|
|
3067
|
+
readonly value: "tajikistan";
|
|
3068
|
+
readonly iso2: "TJ";
|
|
3069
|
+
readonly mask: "XX XXX-XXXX";
|
|
3070
|
+
readonly caption: "+992";
|
|
3071
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3072
|
+
readonly enabled: true;
|
|
3073
|
+
} | {
|
|
3074
|
+
readonly value: "tonga";
|
|
3075
|
+
readonly iso2: "TO";
|
|
3076
|
+
readonly caption: "+676";
|
|
3077
|
+
readonly mask: "XX XXX";
|
|
3078
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3079
|
+
readonly enabled: true;
|
|
3080
|
+
} | {
|
|
3081
|
+
readonly value: "tuvalu";
|
|
3082
|
+
readonly iso2: "TV";
|
|
3083
|
+
readonly caption: "+688";
|
|
3084
|
+
readonly mask: "XXXXX";
|
|
3085
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3086
|
+
readonly enabled: true;
|
|
3087
|
+
} | {
|
|
3088
|
+
readonly value: "turkmenistan";
|
|
3089
|
+
readonly iso2: "TM";
|
|
3090
|
+
readonly caption: "+993";
|
|
3091
|
+
readonly mask: "XX XXXXXX";
|
|
3092
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3093
|
+
readonly enabled: true;
|
|
3094
|
+
} | {
|
|
3095
|
+
readonly value: "turkey";
|
|
3096
|
+
readonly iso2: "TR";
|
|
3097
|
+
readonly caption: "+90";
|
|
3098
|
+
readonly mask: "XXX XXX-XXXX";
|
|
3099
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3100
|
+
readonly enabled: true;
|
|
3101
|
+
} | {
|
|
3102
|
+
readonly value: "uzbekistan";
|
|
3103
|
+
readonly iso2: "UZ";
|
|
3104
|
+
readonly mask: "XX XXX-XX-XX";
|
|
3105
|
+
readonly caption: "+998";
|
|
3106
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3107
|
+
readonly enabled: true;
|
|
3108
|
+
} | {
|
|
3109
|
+
readonly value: "ukraine";
|
|
3110
|
+
readonly iso2: "UA";
|
|
3111
|
+
readonly caption: "+380";
|
|
3112
|
+
readonly mask: "XX XXX-XX-XX";
|
|
3113
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3114
|
+
readonly enabled: true;
|
|
3115
|
+
} | {
|
|
3116
|
+
readonly value: "uruguay";
|
|
3117
|
+
readonly iso2: "UY";
|
|
3118
|
+
readonly caption: "+598";
|
|
3119
|
+
readonly mask: "XX XXX-XXX";
|
|
3120
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3121
|
+
readonly enabled: true;
|
|
3122
|
+
} | {
|
|
3123
|
+
readonly value: "fiji";
|
|
3124
|
+
readonly iso2: "FJ";
|
|
3125
|
+
readonly caption: "+679";
|
|
3126
|
+
readonly mask: "XXX XXXX";
|
|
3127
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3128
|
+
readonly enabled: true;
|
|
3129
|
+
} | {
|
|
3130
|
+
readonly value: "finland";
|
|
3131
|
+
readonly iso2: "FI";
|
|
3132
|
+
readonly caption: "+358";
|
|
3133
|
+
readonly mask: "XXX XXX-XX-XX";
|
|
3134
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3135
|
+
readonly enabled: true;
|
|
3136
|
+
} | {
|
|
3137
|
+
readonly value: "france";
|
|
3138
|
+
readonly iso2: "FR";
|
|
3139
|
+
readonly caption: "+33";
|
|
3140
|
+
readonly mask: "XXX XXX-XXX";
|
|
3141
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3142
|
+
readonly enabled: true;
|
|
3143
|
+
} | {
|
|
3144
|
+
readonly value: "frenchPolynesia";
|
|
3145
|
+
readonly iso2: "PF";
|
|
3146
|
+
readonly caption: "+689";
|
|
3147
|
+
readonly mask: "XX XXXXXXX";
|
|
3148
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3149
|
+
readonly enabled: true;
|
|
3150
|
+
} | {
|
|
3151
|
+
readonly value: "croatia";
|
|
3152
|
+
readonly iso2: "HR";
|
|
3153
|
+
readonly caption: "+385";
|
|
3154
|
+
readonly mask: "XX XXX-XXXX";
|
|
3155
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3156
|
+
readonly enabled: true;
|
|
3157
|
+
} | {
|
|
3158
|
+
readonly value: "centralAfricanRepublic";
|
|
3159
|
+
readonly iso2: "CF";
|
|
3160
|
+
readonly caption: "+236";
|
|
3161
|
+
readonly mask: "XX XXX-XXX";
|
|
3162
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3163
|
+
readonly enabled: true;
|
|
3164
|
+
} | {
|
|
3165
|
+
readonly value: "montenegro";
|
|
3166
|
+
readonly iso2: "ME";
|
|
3167
|
+
readonly caption: "+382";
|
|
3168
|
+
readonly mask: "XX XXX-XXX";
|
|
3169
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3170
|
+
readonly enabled: true;
|
|
3171
|
+
} | {
|
|
3172
|
+
readonly value: "switzerland";
|
|
3173
|
+
readonly iso2: "CH";
|
|
3174
|
+
readonly caption: "+41";
|
|
3175
|
+
readonly mask: "XX XXX-XXXX";
|
|
3176
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3177
|
+
readonly enabled: true;
|
|
3178
|
+
} | {
|
|
3179
|
+
readonly value: "estonia";
|
|
3180
|
+
readonly iso2: "EE";
|
|
3181
|
+
readonly caption: "+372";
|
|
3182
|
+
readonly mask: "XXXX XXXX";
|
|
3183
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3184
|
+
readonly enabled: true;
|
|
3185
|
+
} | {
|
|
3186
|
+
readonly value: "ethiopia";
|
|
3187
|
+
readonly iso2: "ET";
|
|
3188
|
+
readonly mask: "XX XXX-XXXX";
|
|
3189
|
+
readonly caption: "+251";
|
|
3190
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3191
|
+
readonly enabled: true;
|
|
3192
|
+
} | {
|
|
3193
|
+
readonly value: "southAfrica";
|
|
3194
|
+
readonly iso2: "ZA";
|
|
3195
|
+
readonly mask: "XX XXX-XXXX";
|
|
3196
|
+
readonly caption: "+27";
|
|
3197
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3198
|
+
readonly enabled: true;
|
|
3199
|
+
} | {
|
|
3200
|
+
readonly value: "southKorea";
|
|
3201
|
+
readonly iso2: "KR";
|
|
3202
|
+
readonly caption: "+82";
|
|
3203
|
+
readonly mask: "XX XXXX-XXXX";
|
|
3204
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3205
|
+
readonly enabled: true;
|
|
3206
|
+
} | {
|
|
3207
|
+
readonly value: "southSudan";
|
|
3208
|
+
readonly iso2: "SS";
|
|
3209
|
+
readonly caption: "+211";
|
|
3210
|
+
readonly mask: "XX XXX-XXXX";
|
|
3211
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3212
|
+
readonly enabled: true;
|
|
3213
|
+
} | {
|
|
3214
|
+
readonly value: "japan";
|
|
3215
|
+
readonly iso2: "JP";
|
|
3216
|
+
readonly caption: "+81";
|
|
3217
|
+
readonly mask: "XX XXXX-XXXX";
|
|
3218
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3219
|
+
readonly enabled: true;
|
|
3220
|
+
} | {
|
|
3221
|
+
readonly value: "taiwan";
|
|
3222
|
+
readonly iso2: "TW";
|
|
3223
|
+
readonly caption: "+886";
|
|
3224
|
+
readonly mask: "XXX XXX XXX";
|
|
3225
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3226
|
+
readonly enabled: true;
|
|
3227
|
+
} | {
|
|
3228
|
+
readonly value: "nigeria";
|
|
3229
|
+
readonly iso2: "NG";
|
|
3230
|
+
readonly caption: "+234";
|
|
3231
|
+
readonly mask: "XXX XXX XXXX";
|
|
3232
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3233
|
+
readonly enabled: true;
|
|
3234
|
+
} | {
|
|
3235
|
+
readonly value: "benin";
|
|
3236
|
+
readonly iso2: "BJ";
|
|
3237
|
+
readonly caption: "+229";
|
|
3238
|
+
readonly mask: "XX XX XX XX";
|
|
3239
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3240
|
+
readonly enabled: true;
|
|
3241
|
+
} | {
|
|
3242
|
+
readonly value: "cameroon";
|
|
3243
|
+
readonly iso2: "CM";
|
|
3244
|
+
readonly caption: "+237";
|
|
3245
|
+
readonly mask: "XXX XX XX XX";
|
|
3246
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3247
|
+
readonly enabled: true;
|
|
3248
|
+
} | {
|
|
3249
|
+
readonly value: "ghana";
|
|
3250
|
+
readonly iso2: "GH";
|
|
3251
|
+
readonly caption: "+233";
|
|
3252
|
+
readonly mask: "XX XXX XXXX";
|
|
3253
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3254
|
+
readonly enabled: true;
|
|
3255
|
+
} | {
|
|
3256
|
+
readonly value: "rwanda";
|
|
3257
|
+
readonly iso2: "RW";
|
|
3258
|
+
readonly caption: "+250";
|
|
3259
|
+
readonly mask: "XX XXX XXXX";
|
|
3260
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3261
|
+
readonly enabled: true;
|
|
3262
|
+
} | {
|
|
3263
|
+
readonly value: "zambia";
|
|
3264
|
+
readonly iso2: "ZM";
|
|
3265
|
+
readonly caption: "+260";
|
|
3266
|
+
readonly mask: "XX XXX XXXX";
|
|
3267
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3268
|
+
readonly enabled: true;
|
|
3269
|
+
} | {
|
|
3270
|
+
readonly value: "coteDIvoire";
|
|
3271
|
+
readonly iso2: "CI";
|
|
3272
|
+
readonly caption: "+225";
|
|
3273
|
+
readonly mask: "XX XX XX XX XX";
|
|
3274
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3275
|
+
readonly enabled: true;
|
|
3276
|
+
} | {
|
|
3277
|
+
readonly value: "uganda";
|
|
3278
|
+
readonly iso2: "UG";
|
|
3279
|
+
readonly caption: "+256";
|
|
3280
|
+
readonly mask: "7X XXX XXXX";
|
|
3281
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3282
|
+
readonly enabled: true;
|
|
3283
|
+
} | {
|
|
3284
|
+
readonly value: "congo";
|
|
3285
|
+
readonly iso2: "CG";
|
|
3286
|
+
readonly caption: "+242";
|
|
3287
|
+
readonly mask: "XX XXX XXXX";
|
|
3288
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3289
|
+
readonly enabled: true;
|
|
3290
|
+
} | {
|
|
3291
|
+
readonly value: "guinea";
|
|
3292
|
+
readonly iso2: "GN";
|
|
3293
|
+
readonly caption: "+224";
|
|
3294
|
+
readonly mask: "6XX XX XX XX";
|
|
3295
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3296
|
+
readonly enabled: true;
|
|
3297
|
+
} | {
|
|
3298
|
+
readonly value: "sudan";
|
|
3299
|
+
readonly iso2: "SD";
|
|
3300
|
+
readonly caption: "+249";
|
|
3301
|
+
readonly mask: "XX XXX XXXX";
|
|
3302
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3303
|
+
readonly enabled: true;
|
|
3304
|
+
} | {
|
|
3305
|
+
readonly value: "kenya";
|
|
3306
|
+
readonly iso2: "KE";
|
|
3307
|
+
readonly caption: "+254";
|
|
3308
|
+
readonly mask: "XXX XXX XXX";
|
|
3309
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3310
|
+
readonly enabled: true;
|
|
3311
|
+
} | {
|
|
3312
|
+
readonly value: "jordan";
|
|
3313
|
+
readonly iso2: "JO";
|
|
3314
|
+
readonly caption: "+962";
|
|
3315
|
+
readonly mask: "7X XXX XXXX";
|
|
3316
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3317
|
+
readonly enabled: true;
|
|
3318
|
+
} | {
|
|
3319
|
+
readonly value: "libya";
|
|
3320
|
+
readonly iso2: "LY";
|
|
3321
|
+
readonly caption: "+218";
|
|
3322
|
+
readonly mask: "9X XXX XXXX";
|
|
3323
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3324
|
+
readonly enabled: true;
|
|
3325
|
+
} | {
|
|
3326
|
+
readonly value: "sweden";
|
|
3327
|
+
readonly iso2: "SE";
|
|
3328
|
+
readonly caption: "+46";
|
|
3329
|
+
readonly mask: "7X XXX XX XX";
|
|
3330
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3331
|
+
readonly enabled: true;
|
|
3332
|
+
} | {
|
|
3333
|
+
readonly value: "chad";
|
|
3334
|
+
readonly iso2: "TD";
|
|
3335
|
+
readonly caption: "+235";
|
|
3336
|
+
readonly mask: "XX XX XX XX";
|
|
3337
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3338
|
+
readonly enabled: true;
|
|
3339
|
+
} | {
|
|
3340
|
+
readonly value: "norway";
|
|
3341
|
+
readonly iso2: "NO";
|
|
3342
|
+
readonly caption: "+47";
|
|
3343
|
+
readonly mask: "XXX XX XXX";
|
|
3344
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3345
|
+
readonly enabled: true;
|
|
3346
|
+
} | {
|
|
3347
|
+
readonly value: "hongKong";
|
|
3348
|
+
readonly iso2: "HK";
|
|
3349
|
+
readonly caption: "+852";
|
|
3350
|
+
readonly mask: "XXXX XXXX";
|
|
3351
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3352
|
+
readonly enabled: true;
|
|
3353
|
+
} | {
|
|
3354
|
+
readonly value: "costaRica";
|
|
3355
|
+
readonly iso2: "CR";
|
|
3356
|
+
readonly caption: "+506";
|
|
3357
|
+
readonly mask: "XXXX XXXX";
|
|
3358
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3359
|
+
readonly enabled: true;
|
|
3360
|
+
} | {
|
|
3361
|
+
readonly value: "chile";
|
|
3362
|
+
readonly iso2: "CL";
|
|
3363
|
+
readonly caption: "+56";
|
|
3364
|
+
readonly mask: "9 XXXX XXXX";
|
|
3365
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3366
|
+
readonly enabled: true;
|
|
3367
|
+
} | {
|
|
3368
|
+
readonly value: "argentina";
|
|
3369
|
+
readonly iso2: "AR";
|
|
3370
|
+
readonly caption: "+54";
|
|
3371
|
+
readonly mask: "9 XX XXXX XXXX";
|
|
3372
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3373
|
+
readonly enabled: true;
|
|
3374
|
+
} | {
|
|
3375
|
+
readonly value: "ecuador";
|
|
3376
|
+
readonly iso2: "EC";
|
|
3377
|
+
readonly caption: "+593";
|
|
3378
|
+
readonly mask: "9X XXX XXXX";
|
|
3379
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3380
|
+
readonly enabled: true;
|
|
3381
|
+
} | {
|
|
3382
|
+
readonly value: "malaysia";
|
|
3383
|
+
readonly iso2: "MY";
|
|
3384
|
+
readonly caption: "+60";
|
|
3385
|
+
readonly mask: "1X XXX[X] XXXX";
|
|
3386
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3387
|
+
readonly enabled: true;
|
|
3388
|
+
} | {
|
|
3389
|
+
readonly value: "paraguay";
|
|
3390
|
+
readonly iso2: "PY";
|
|
3391
|
+
readonly caption: "+595";
|
|
3392
|
+
readonly mask: "9XX XXXXXX";
|
|
3393
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3394
|
+
readonly enabled: true;
|
|
3395
|
+
} | {
|
|
3396
|
+
readonly value: "yemen";
|
|
3397
|
+
readonly iso2: "YE";
|
|
3398
|
+
readonly caption: "+967";
|
|
3399
|
+
readonly mask: "7X XXX XXXX";
|
|
3400
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3401
|
+
readonly enabled: true;
|
|
3402
|
+
} | {
|
|
3403
|
+
readonly value: "haiti";
|
|
3404
|
+
readonly iso2: "HT";
|
|
3405
|
+
readonly caption: "+509";
|
|
3406
|
+
readonly mask: "XXXX XXXX";
|
|
3407
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3408
|
+
readonly enabled: true;
|
|
3409
|
+
} | {
|
|
3410
|
+
readonly value: "mozambique";
|
|
3411
|
+
readonly iso2: "MZ";
|
|
3412
|
+
readonly caption: "+258";
|
|
3413
|
+
readonly mask: "8X[X] XXX XXXX";
|
|
3414
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3415
|
+
readonly enabled: true;
|
|
3416
|
+
} | {
|
|
3417
|
+
readonly value: "nicaragua";
|
|
3418
|
+
readonly iso2: "NI";
|
|
3419
|
+
readonly caption: "+505";
|
|
3420
|
+
readonly mask: "XXXX XXXX";
|
|
3421
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3422
|
+
readonly enabled: true;
|
|
3423
|
+
} | {
|
|
3424
|
+
readonly value: "senegal";
|
|
3425
|
+
readonly iso2: "SN";
|
|
3426
|
+
readonly caption: "+221";
|
|
3427
|
+
readonly mask: "XX XXX XX XX";
|
|
3428
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3429
|
+
readonly enabled: true;
|
|
3430
|
+
} | {
|
|
3431
|
+
readonly value: "venezuela";
|
|
3432
|
+
readonly iso2: "VE";
|
|
3433
|
+
readonly caption: "+58";
|
|
3434
|
+
readonly mask: "XXX XXXXXXX";
|
|
3435
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3436
|
+
readonly enabled: true;
|
|
3437
|
+
} | {
|
|
3438
|
+
readonly value: "afghanistan";
|
|
3439
|
+
readonly iso2: "AF";
|
|
3440
|
+
readonly caption: "+93";
|
|
3441
|
+
readonly mask: "XX XXX XXXX";
|
|
3442
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3443
|
+
readonly enabled: true;
|
|
3444
|
+
} | {
|
|
3445
|
+
readonly value: "sriLanka";
|
|
3446
|
+
readonly iso2: "LK";
|
|
3447
|
+
readonly caption: "+94";
|
|
3448
|
+
readonly mask: "XX XXX XXXX";
|
|
3449
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3450
|
+
readonly enabled: true;
|
|
3451
|
+
} | {
|
|
3452
|
+
readonly value: "vietnam";
|
|
3453
|
+
readonly iso2: "VN";
|
|
3454
|
+
readonly caption: "+84";
|
|
3455
|
+
readonly mask: "XX XXX[X] XXXX";
|
|
3456
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3457
|
+
readonly enabled: true;
|
|
3458
|
+
} | {
|
|
3459
|
+
readonly value: "thailand";
|
|
3460
|
+
readonly iso2: "TH";
|
|
3461
|
+
readonly caption: "+66";
|
|
3462
|
+
readonly mask: "XX XXX XXXX";
|
|
3463
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3464
|
+
readonly enabled: true;
|
|
3465
|
+
} | {
|
|
3466
|
+
readonly value: "indonesia";
|
|
3467
|
+
readonly iso2: "ID";
|
|
3468
|
+
readonly caption: "+62";
|
|
3469
|
+
readonly mask: "8XX XXXX XXX[XX]";
|
|
3470
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3471
|
+
readonly enabled: true;
|
|
3472
|
+
} | {
|
|
3473
|
+
readonly value: "tanzania";
|
|
3474
|
+
readonly iso2: "TZ";
|
|
3475
|
+
readonly caption: "+255";
|
|
3476
|
+
readonly mask: "XX XXX XXXX";
|
|
3477
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3478
|
+
readonly enabled: true;
|
|
3479
|
+
} | {
|
|
3480
|
+
readonly value: "qatar";
|
|
3481
|
+
readonly iso2: "QA";
|
|
3482
|
+
readonly caption: "+974";
|
|
3483
|
+
readonly mask: "XXXX XXXX";
|
|
3484
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3485
|
+
readonly enabled: true;
|
|
3486
|
+
} | {
|
|
3487
|
+
readonly value: "palestine";
|
|
3488
|
+
readonly iso2: "PS";
|
|
3489
|
+
readonly caption: "+970";
|
|
3490
|
+
readonly mask: "5X XXX XXXX";
|
|
3491
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3492
|
+
readonly enabled: true;
|
|
3493
|
+
} | {
|
|
3494
|
+
readonly value: "cambodia";
|
|
3495
|
+
readonly iso2: "KH";
|
|
3496
|
+
readonly caption: "+855";
|
|
3497
|
+
readonly mask: "XX XXX XXX[X]";
|
|
3498
|
+
readonly beforeContent: import("react/jsx-runtime").JSX.Element;
|
|
3499
|
+
readonly enabled: true;
|
|
3500
|
+
})[];
|