ecotransac-shared-js 1.1.2 → 1.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/dist/index.d.mts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +262 -0
- package/dist/index.mjs +261 -0
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/index.d.mts
CHANGED
|
@@ -950,9 +950,11 @@ declare const LEGAL_NATURE: SelectOption[];
|
|
|
950
950
|
declare const MARITAL_STATUS: SelectOption[];
|
|
951
951
|
declare const PRENUP_TYPES: SelectOption[];
|
|
952
952
|
|
|
953
|
+
declare const COUNTRIES: SelectOption[];
|
|
954
|
+
|
|
953
955
|
declare const MANDATE_EXCLUSIVITY: {
|
|
954
956
|
value: MandateExclusivity;
|
|
955
957
|
label: string;
|
|
956
958
|
}[];
|
|
957
959
|
|
|
958
|
-
export { COMPANY_INFO, CONDITIONS, ESTATE_CONDITION, EXPOSURES, GENDER, HEATING_ENERGY, IDENTIFICATION_DOCUMENTS, KITCHEN_TYPE, LEASE_ESTABLISHMENT, LEASE_TRANSFERT_PERMISSIONS, LEGAL_NATURE, MANDATE_EXCLUSIVITY, MARITAL_STATUS, PRENUP_TYPES, SHARING_CONFIGURATION, STANDINGS, VIEWS, featuresFormFields, formatAddress, formatDate, formatPrice, formatSeconds, propertyFields, surfacesFormFields, technicalFormFields };
|
|
960
|
+
export { COMPANY_INFO, CONDITIONS, COUNTRIES, ESTATE_CONDITION, EXPOSURES, GENDER, HEATING_ENERGY, IDENTIFICATION_DOCUMENTS, KITCHEN_TYPE, LEASE_ESTABLISHMENT, LEASE_TRANSFERT_PERMISSIONS, LEGAL_NATURE, MANDATE_EXCLUSIVITY, MARITAL_STATUS, PRENUP_TYPES, SHARING_CONFIGURATION, STANDINGS, VIEWS, featuresFormFields, formatAddress, formatDate, formatPrice, formatSeconds, propertyFields, surfacesFormFields, technicalFormFields };
|
package/dist/index.d.ts
CHANGED
|
@@ -950,9 +950,11 @@ declare const LEGAL_NATURE: SelectOption[];
|
|
|
950
950
|
declare const MARITAL_STATUS: SelectOption[];
|
|
951
951
|
declare const PRENUP_TYPES: SelectOption[];
|
|
952
952
|
|
|
953
|
+
declare const COUNTRIES: SelectOption[];
|
|
954
|
+
|
|
953
955
|
declare const MANDATE_EXCLUSIVITY: {
|
|
954
956
|
value: MandateExclusivity;
|
|
955
957
|
label: string;
|
|
956
958
|
}[];
|
|
957
959
|
|
|
958
|
-
export { COMPANY_INFO, CONDITIONS, ESTATE_CONDITION, EXPOSURES, GENDER, HEATING_ENERGY, IDENTIFICATION_DOCUMENTS, KITCHEN_TYPE, LEASE_ESTABLISHMENT, LEASE_TRANSFERT_PERMISSIONS, LEGAL_NATURE, MANDATE_EXCLUSIVITY, MARITAL_STATUS, PRENUP_TYPES, SHARING_CONFIGURATION, STANDINGS, VIEWS, featuresFormFields, formatAddress, formatDate, formatPrice, formatSeconds, propertyFields, surfacesFormFields, technicalFormFields };
|
|
960
|
+
export { COMPANY_INFO, CONDITIONS, COUNTRIES, ESTATE_CONDITION, EXPOSURES, GENDER, HEATING_ENERGY, IDENTIFICATION_DOCUMENTS, KITCHEN_TYPE, LEASE_ESTABLISHMENT, LEASE_TRANSFERT_PERMISSIONS, LEGAL_NATURE, MANDATE_EXCLUSIVITY, MARITAL_STATUS, PRENUP_TYPES, SHARING_CONFIGURATION, STANDINGS, VIEWS, featuresFormFields, formatAddress, formatDate, formatPrice, formatSeconds, propertyFields, surfacesFormFields, technicalFormFields };
|
package/dist/index.js
CHANGED
|
@@ -32,6 +32,7 @@ var src_exports = {};
|
|
|
32
32
|
__export(src_exports, {
|
|
33
33
|
COMPANY_INFO: () => COMPANY_INFO,
|
|
34
34
|
CONDITIONS: () => CONDITIONS,
|
|
35
|
+
COUNTRIES: () => COUNTRIES,
|
|
35
36
|
ESTATE_CONDITION: () => ESTATE_CONDITION,
|
|
36
37
|
EXPOSURES: () => EXPOSURES,
|
|
37
38
|
GENDER: () => GENDER,
|
|
@@ -886,6 +887,266 @@ var PRENUP_TYPES = [
|
|
|
886
887
|
}
|
|
887
888
|
];
|
|
888
889
|
|
|
890
|
+
// src/static/countries.ts
|
|
891
|
+
var COUNTRIES = [
|
|
892
|
+
{ value: "FR", label: "France" },
|
|
893
|
+
{ value: "AF", label: "Afghanistan" },
|
|
894
|
+
{ value: "AL", label: "Albanie" },
|
|
895
|
+
{ value: "DZ", label: "Alg\xE9rie" },
|
|
896
|
+
{ value: "AS", label: "Samoa am\xE9ricaines" },
|
|
897
|
+
{ value: "AD", label: "Andorre" },
|
|
898
|
+
{ value: "AO", label: "Angola" },
|
|
899
|
+
{ value: "AI", label: "Anguilla" },
|
|
900
|
+
{ value: "AQ", label: "Antarctique" },
|
|
901
|
+
{ value: "AG", label: "Antigua-et-Barbuda" },
|
|
902
|
+
{ value: "AR", label: "Argentine" },
|
|
903
|
+
{ value: "AM", label: "Arm\xE9nie" },
|
|
904
|
+
{ value: "AW", label: "Aruba" },
|
|
905
|
+
{ value: "AC", label: "Ascension" },
|
|
906
|
+
{ value: "AU", label: "Australie" },
|
|
907
|
+
{ value: "AT", label: "Autriche" },
|
|
908
|
+
{ value: "AZ", label: "Azerba\xEFdjan" },
|
|
909
|
+
{ value: "BS", label: "Bahamas" },
|
|
910
|
+
{ value: "BH", label: "Bahre\xEFn" },
|
|
911
|
+
{ value: "BD", label: "Bangladesh" },
|
|
912
|
+
{ value: "BB", label: "Barbade" },
|
|
913
|
+
{ value: "BY", label: "Bi\xE9lorussie" },
|
|
914
|
+
{ value: "BE", label: "Belgique" },
|
|
915
|
+
{ value: "BZ", label: "Belize" },
|
|
916
|
+
{ value: "BJ", label: "B\xE9nin" },
|
|
917
|
+
{ value: "BM", label: "Bermudes" },
|
|
918
|
+
{ value: "BT", label: "Bhoutan" },
|
|
919
|
+
{ value: "BO", label: "Bolivie" },
|
|
920
|
+
{ value: "BA", label: "Bosnie-Herz\xE9govine" },
|
|
921
|
+
{ value: "BW", label: "Botswana" },
|
|
922
|
+
{ value: "BV", label: "\xCEle Bouvet" },
|
|
923
|
+
{ value: "BR", label: "Br\xE9sil" },
|
|
924
|
+
{ value: "IO", label: "Territoire britannique de l'oc\xE9an Indien" },
|
|
925
|
+
{ value: "VG", label: "\xCEles Vierges britanniques" },
|
|
926
|
+
{ value: "BN", label: "Brunei" },
|
|
927
|
+
{ value: "BG", label: "Bulgarie" },
|
|
928
|
+
{ value: "BF", label: "Burkina Faso" },
|
|
929
|
+
{ value: "BI", label: "Burundi" },
|
|
930
|
+
{ value: "KH", label: "Cambodge" },
|
|
931
|
+
{ value: "CM", label: "Cameroun" },
|
|
932
|
+
{ value: "CA", label: "Canada" },
|
|
933
|
+
{ value: "IC", label: "\xCEles Canaries" },
|
|
934
|
+
{ value: "CV", label: "Cap-Vert" },
|
|
935
|
+
{ value: "BQ", label: "Pays-Bas carib\xE9ens" },
|
|
936
|
+
{ value: "KY", label: "\xCEles Ca\xEFmans" },
|
|
937
|
+
{ value: "CF", label: "R\xE9publique centrafricaine" },
|
|
938
|
+
{ value: "EA", label: "Ceuta et Melilla" },
|
|
939
|
+
{ value: "TD", label: "Tchad" },
|
|
940
|
+
{ value: "CL", label: "Chili" },
|
|
941
|
+
{ value: "CN", label: "Chine" },
|
|
942
|
+
{ value: "CX", label: "\xCEle Christmas" },
|
|
943
|
+
{ value: "CP", label: "Clipperton" },
|
|
944
|
+
{ value: "CC", label: "\xCEles Cocos" },
|
|
945
|
+
{ value: "CO", label: "Colombie" },
|
|
946
|
+
{ value: "KM", label: "Comores" },
|
|
947
|
+
{ value: "CG", label: "Congo" },
|
|
948
|
+
{ value: "CD", label: "R\xE9publique d\xE9mocratique du Congo" },
|
|
949
|
+
{ value: "CK", label: "\xCEles Cook" },
|
|
950
|
+
{ value: "CR", label: "Costa Rica" },
|
|
951
|
+
{ value: "HR", label: "Croatie" },
|
|
952
|
+
{ value: "CU", label: "Cuba" },
|
|
953
|
+
{ value: "CW", label: "Cura\xE7ao" },
|
|
954
|
+
{ value: "CY", label: "Chypre" },
|
|
955
|
+
{ value: "CZ", label: "Tch\xE9quie" },
|
|
956
|
+
{ value: "CI", label: "C\xF4te d'Ivoire" },
|
|
957
|
+
{ value: "DK", label: "Danemark" },
|
|
958
|
+
{ value: "DG", label: "Diego Garcia" },
|
|
959
|
+
{ value: "DJ", label: "Djibouti" },
|
|
960
|
+
{ value: "DM", label: "Dominique" },
|
|
961
|
+
{ value: "DO", label: "R\xE9publique dominicaine" },
|
|
962
|
+
{ value: "EC", label: "\xC9quateur" },
|
|
963
|
+
{ value: "EG", label: "\xC9gypte" },
|
|
964
|
+
{ value: "SV", label: "El Salvador" },
|
|
965
|
+
{ value: "GQ", label: "Guin\xE9e \xE9quatoriale" },
|
|
966
|
+
{ value: "ER", label: "\xC9rythr\xE9e" },
|
|
967
|
+
{ value: "EE", label: "Estonie" },
|
|
968
|
+
{ value: "SZ", label: "Eswatini" },
|
|
969
|
+
{ value: "ET", label: "\xC9thiopie" },
|
|
970
|
+
{ value: "FK", label: "\xCEles Falkland" },
|
|
971
|
+
{ value: "FO", label: "\xCEles F\xE9ro\xE9" },
|
|
972
|
+
{ value: "FJ", label: "Fidji" },
|
|
973
|
+
{ value: "FI", label: "Finlande" },
|
|
974
|
+
{ value: "GF", label: "Guyane" },
|
|
975
|
+
{ value: "PF", label: "Polyn\xE9sie fran\xE7aise" },
|
|
976
|
+
{ value: "TF", label: "Terres australes et antarctiques fran\xE7aises" },
|
|
977
|
+
{ value: "GA", label: "Gabon" },
|
|
978
|
+
{ value: "GM", label: "Gambie" },
|
|
979
|
+
{ value: "GE", label: "G\xE9orgie" },
|
|
980
|
+
{ value: "DE", label: "Allemagne" },
|
|
981
|
+
{ value: "GH", label: "Ghana" },
|
|
982
|
+
{ value: "GI", label: "Gibraltar" },
|
|
983
|
+
{ value: "GR", label: "Gr\xE8ce" },
|
|
984
|
+
{ value: "GL", label: "Groenland" },
|
|
985
|
+
{ value: "GD", label: "Grenade" },
|
|
986
|
+
{ value: "GP", label: "Guadeloupe" },
|
|
987
|
+
{ value: "GU", label: "Guam" },
|
|
988
|
+
{ value: "GT", label: "Guatemala" },
|
|
989
|
+
{ value: "GG", label: "Guernesey" },
|
|
990
|
+
{ value: "GN", label: "Guin\xE9e" },
|
|
991
|
+
{ value: "GW", label: "Guin\xE9e-Bissau" },
|
|
992
|
+
{ value: "GY", label: "Guyana" },
|
|
993
|
+
{ value: "HT", label: "Ha\xEFti" },
|
|
994
|
+
{ value: "HM", label: "\xCEles Heard et McDonald" },
|
|
995
|
+
{ value: "HN", label: "Honduras" },
|
|
996
|
+
{ value: "HK", label: "Hong Kong" },
|
|
997
|
+
{ value: "HU", label: "Hongrie" },
|
|
998
|
+
{ value: "IS", label: "Islande" },
|
|
999
|
+
{ value: "IN", label: "Inde" },
|
|
1000
|
+
{ value: "ID", label: "Indon\xE9sie" },
|
|
1001
|
+
{ value: "IR", label: "Iran" },
|
|
1002
|
+
{ value: "IQ", label: "Iraq" },
|
|
1003
|
+
{ value: "IE", label: "Irlande" },
|
|
1004
|
+
{ value: "IM", label: "\xCEle de Man" },
|
|
1005
|
+
{ value: "IL", label: "Isra\xEBl" },
|
|
1006
|
+
{ value: "IT", label: "Italie" },
|
|
1007
|
+
{ value: "JM", label: "Jama\xEFque" },
|
|
1008
|
+
{ value: "JP", label: "Japon" },
|
|
1009
|
+
{ value: "JE", label: "Jersey" },
|
|
1010
|
+
{ value: "JO", label: "Jordanie" },
|
|
1011
|
+
{ value: "KZ", label: "Kazakhstan" },
|
|
1012
|
+
{ value: "KE", label: "Kenya" },
|
|
1013
|
+
{ value: "KI", label: "Kiribati" },
|
|
1014
|
+
{ value: "XK", label: "Kosovo" },
|
|
1015
|
+
{ value: "KW", label: "Kowe\xEFt" },
|
|
1016
|
+
{ value: "KG", label: "Kirghizstan" },
|
|
1017
|
+
{ value: "LA", label: "Laos" },
|
|
1018
|
+
{ value: "LV", label: "Lettonie" },
|
|
1019
|
+
{ value: "LB", label: "Liban" },
|
|
1020
|
+
{ value: "LS", label: "Lesotho" },
|
|
1021
|
+
{ value: "LR", label: "Liberia" },
|
|
1022
|
+
{ value: "LY", label: "Libye" },
|
|
1023
|
+
{ value: "LI", label: "Liechtenstein" },
|
|
1024
|
+
{ value: "LT", label: "Lituanie" },
|
|
1025
|
+
{ value: "LU", label: "Luxembourg" },
|
|
1026
|
+
{ value: "MO", label: "Macao" },
|
|
1027
|
+
{ value: "MG", label: "Madagascar" },
|
|
1028
|
+
{ value: "MW", label: "Malawi" },
|
|
1029
|
+
{ value: "MY", label: "Malaisie" },
|
|
1030
|
+
{ value: "MV", label: "Maldives" },
|
|
1031
|
+
{ value: "ML", label: "Mali" },
|
|
1032
|
+
{ value: "MT", label: "Malte" },
|
|
1033
|
+
{ value: "MH", label: "\xCEles Marshall" },
|
|
1034
|
+
{ value: "MQ", label: "Martinique" },
|
|
1035
|
+
{ value: "MR", label: "Mauritanie" },
|
|
1036
|
+
{ value: "MU", label: "Maurice" },
|
|
1037
|
+
{ value: "YT", label: "Mayotte" },
|
|
1038
|
+
{ value: "MX", label: "Mexico" },
|
|
1039
|
+
{ value: "FM", label: "Micron\xE9sie" },
|
|
1040
|
+
{ value: "MD", label: "Moldavie" },
|
|
1041
|
+
{ value: "MC", label: "Monaco" },
|
|
1042
|
+
{ value: "MN", label: "Mongolie" },
|
|
1043
|
+
{ value: "ME", label: "Mont\xE9n\xE9gro" },
|
|
1044
|
+
{ value: "MS", label: "Montserrat" },
|
|
1045
|
+
{ value: "MA", label: "Maroc" },
|
|
1046
|
+
{ value: "MZ", label: "Mozambique" },
|
|
1047
|
+
{ value: "MM", label: "Myanmar (Birmanie)" },
|
|
1048
|
+
{ value: "NA", label: "Namibie" },
|
|
1049
|
+
{ value: "NR", label: "Nauru" },
|
|
1050
|
+
{ value: "NP", label: "N\xE9pal" },
|
|
1051
|
+
{ value: "NL", label: "Pays-Bas" },
|
|
1052
|
+
{ value: "NC", label: "Nouvelle-Cal\xE9donie" },
|
|
1053
|
+
{ value: "NZ", label: "Nouvelle-Z\xE9lande" },
|
|
1054
|
+
{ value: "NI", label: "Nicaragua" },
|
|
1055
|
+
{ value: "NE", label: "Niger" },
|
|
1056
|
+
{ value: "NG", label: "Nigeria" },
|
|
1057
|
+
{ value: "NU", label: "Niue" },
|
|
1058
|
+
{ value: "NF", label: "\xCEle Norfolk" },
|
|
1059
|
+
{ value: "KP", label: "Cor\xE9e du Nord" },
|
|
1060
|
+
{ value: "MK", label: "Mac\xE9doine du Nord" },
|
|
1061
|
+
{ value: "MP", label: "\xCEles Mariannes du Nord" },
|
|
1062
|
+
{ value: "NO", label: "Norv\xE8ge" },
|
|
1063
|
+
{ value: "OM", label: "Oman" },
|
|
1064
|
+
{ value: "PK", label: "Pakistan" },
|
|
1065
|
+
{ value: "PW", label: "Palaos" },
|
|
1066
|
+
{ value: "PS", label: "Palestine" },
|
|
1067
|
+
{ value: "PA", label: "Panama" },
|
|
1068
|
+
{ value: "PG", label: "Papouasie-Nouvelle-Guin\xE9e" },
|
|
1069
|
+
{ value: "PY", label: "Paraguay" },
|
|
1070
|
+
{ value: "PE", label: "P\xE9rou" },
|
|
1071
|
+
{ value: "PH", label: "Philippines" },
|
|
1072
|
+
{ value: "PN", label: "\xCEles Pitcairn" },
|
|
1073
|
+
{ value: "PL", label: "Pologne" },
|
|
1074
|
+
{ value: "PT", label: "Portugal" },
|
|
1075
|
+
{ value: "PR", label: "Porto Rico" },
|
|
1076
|
+
{ value: "QA", label: "Qatar" },
|
|
1077
|
+
{ value: "RO", label: "Roumanie" },
|
|
1078
|
+
{ value: "RU", label: "Russie" },
|
|
1079
|
+
{ value: "RW", label: "Rwanda" },
|
|
1080
|
+
{ value: "RE", label: "R\xE9union" },
|
|
1081
|
+
{ value: "WS", label: "Samoa" },
|
|
1082
|
+
{ value: "SM", label: "Saint-Marin" },
|
|
1083
|
+
{ value: "SA", label: "Arabie saoudite" },
|
|
1084
|
+
{ value: "SN", label: "S\xE9n\xE9gal" },
|
|
1085
|
+
{ value: "RS", label: "Serbie" },
|
|
1086
|
+
{ value: "SC", label: "Seychelles" },
|
|
1087
|
+
{ value: "SL", label: "Sierra Leone" },
|
|
1088
|
+
{ value: "SG", label: "Singapour" },
|
|
1089
|
+
{ value: "SX", label: "Sint-Maarten" },
|
|
1090
|
+
{ value: "SK", label: "Slovaquie" },
|
|
1091
|
+
{ value: "SI", label: "Slov\xE9nie" },
|
|
1092
|
+
{ value: "SB", label: "\xCEles Salomon" },
|
|
1093
|
+
{ value: "SO", label: "Somalie" },
|
|
1094
|
+
{ value: "ZA", label: "Afrique du Sud" },
|
|
1095
|
+
{ value: "GS", label: "\xCEles G\xE9orgie du Sud et Sandwich du Sud" },
|
|
1096
|
+
{ value: "KR", label: "Cor\xE9e du Sud" },
|
|
1097
|
+
{ value: "SS", label: "Soudan du Sud" },
|
|
1098
|
+
{ value: "ES", label: "Espagne" },
|
|
1099
|
+
{ value: "LK", label: "Sri Lanka" },
|
|
1100
|
+
{ value: "BL", label: "Saint-Barth\xE9lemy" },
|
|
1101
|
+
{ value: "SH", label: "Sainte-H\xE9l\xE8ne" },
|
|
1102
|
+
{ value: "KN", label: "Saint-Christophe-et-Ni\xE9v\xE8s" },
|
|
1103
|
+
{ value: "LC", label: "Sainte-Lucie" },
|
|
1104
|
+
{ value: "MF", label: "Saint-Martin" },
|
|
1105
|
+
{ value: "PM", label: "Saint-Pierre-et-Miquelon" },
|
|
1106
|
+
{ value: "VC", label: "Saint-Vincent-et-les-Grenadines" },
|
|
1107
|
+
{ value: "SD", label: "Soudan" },
|
|
1108
|
+
{ value: "SR", label: "Suriname" },
|
|
1109
|
+
{ value: "SJ", label: "Svalbard et Jan Mayen" },
|
|
1110
|
+
{ value: "SE", label: "Su\xE8de" },
|
|
1111
|
+
{ value: "CH", label: "Suisse" },
|
|
1112
|
+
{ value: "SY", label: "Syrie" },
|
|
1113
|
+
{ value: "ST", label: "Sao Tom\xE9-et-Principe" },
|
|
1114
|
+
{ value: "TW", label: "Ta\xEFwan" },
|
|
1115
|
+
{ value: "TJ", label: "Tadjikistan" },
|
|
1116
|
+
{ value: "TZ", label: "Tanzanie" },
|
|
1117
|
+
{ value: "TH", label: "Tha\xEFlande" },
|
|
1118
|
+
{ value: "TL", label: "Timor-Oriental" },
|
|
1119
|
+
{ value: "TG", label: "Togo" },
|
|
1120
|
+
{ value: "TK", label: "Tok\xE9laou" },
|
|
1121
|
+
{ value: "TO", label: "Tonga" },
|
|
1122
|
+
{ value: "TT", label: "Trinit\xE9-et-Tobago" },
|
|
1123
|
+
{ value: "TA", label: "Tristan da Cunha" },
|
|
1124
|
+
{ value: "TN", label: "Tunisie" },
|
|
1125
|
+
{ value: "TR", label: "Turquie" },
|
|
1126
|
+
{ value: "TM", label: "Turkm\xE9nistan" },
|
|
1127
|
+
{ value: "TC", label: "\xCEles Turks-et-Ca\xEFcos" },
|
|
1128
|
+
{ value: "TV", label: "Tuvalu" },
|
|
1129
|
+
{ value: "UM", label: "\xCEles mineures \xE9loign\xE9es des \xC9tats-Unis" },
|
|
1130
|
+
{ value: "VI", label: "\xCEles Vierges am\xE9ricaines" },
|
|
1131
|
+
{ value: "UG", label: "Ouganda" },
|
|
1132
|
+
{ value: "UA", label: "Ukraine" },
|
|
1133
|
+
{ value: "AE", label: "\xC9mirats arabes unis" },
|
|
1134
|
+
{ value: "GB", label: "Royaume-Uni" },
|
|
1135
|
+
{ value: "US", label: "\xC9tats-Unis" },
|
|
1136
|
+
{ value: "UY", label: "Uruguay" },
|
|
1137
|
+
{ value: "UZ", label: "Ouzb\xE9kistan" },
|
|
1138
|
+
{ value: "VU", label: "Vanuatu" },
|
|
1139
|
+
{ value: "VA", label: "Vatican" },
|
|
1140
|
+
{ value: "VE", label: "Venezuela" },
|
|
1141
|
+
{ value: "VN", label: "Vi\xEAt Nam" },
|
|
1142
|
+
{ value: "WF", label: "Wallis-et-Futuna" },
|
|
1143
|
+
{ value: "EH", label: "Sahara occidental" },
|
|
1144
|
+
{ value: "YE", label: "Y\xE9men" },
|
|
1145
|
+
{ value: "ZM", label: "Zambie" },
|
|
1146
|
+
{ value: "ZW", label: "Zimbabwe" },
|
|
1147
|
+
{ value: "AX", label: "\xCEles \xC5land " }
|
|
1148
|
+
];
|
|
1149
|
+
|
|
889
1150
|
// src/static/mandate-select-options.ts
|
|
890
1151
|
var MANDATE_EXCLUSIVITY = [
|
|
891
1152
|
{
|
|
@@ -905,6 +1166,7 @@ var MANDATE_EXCLUSIVITY = [
|
|
|
905
1166
|
0 && (module.exports = {
|
|
906
1167
|
COMPANY_INFO,
|
|
907
1168
|
CONDITIONS,
|
|
1169
|
+
COUNTRIES,
|
|
908
1170
|
ESTATE_CONDITION,
|
|
909
1171
|
EXPOSURES,
|
|
910
1172
|
GENDER,
|
package/dist/index.mjs
CHANGED
|
@@ -826,6 +826,266 @@ var PRENUP_TYPES = [
|
|
|
826
826
|
}
|
|
827
827
|
];
|
|
828
828
|
|
|
829
|
+
// src/static/countries.ts
|
|
830
|
+
var COUNTRIES = [
|
|
831
|
+
{ value: "FR", label: "France" },
|
|
832
|
+
{ value: "AF", label: "Afghanistan" },
|
|
833
|
+
{ value: "AL", label: "Albanie" },
|
|
834
|
+
{ value: "DZ", label: "Alg\xE9rie" },
|
|
835
|
+
{ value: "AS", label: "Samoa am\xE9ricaines" },
|
|
836
|
+
{ value: "AD", label: "Andorre" },
|
|
837
|
+
{ value: "AO", label: "Angola" },
|
|
838
|
+
{ value: "AI", label: "Anguilla" },
|
|
839
|
+
{ value: "AQ", label: "Antarctique" },
|
|
840
|
+
{ value: "AG", label: "Antigua-et-Barbuda" },
|
|
841
|
+
{ value: "AR", label: "Argentine" },
|
|
842
|
+
{ value: "AM", label: "Arm\xE9nie" },
|
|
843
|
+
{ value: "AW", label: "Aruba" },
|
|
844
|
+
{ value: "AC", label: "Ascension" },
|
|
845
|
+
{ value: "AU", label: "Australie" },
|
|
846
|
+
{ value: "AT", label: "Autriche" },
|
|
847
|
+
{ value: "AZ", label: "Azerba\xEFdjan" },
|
|
848
|
+
{ value: "BS", label: "Bahamas" },
|
|
849
|
+
{ value: "BH", label: "Bahre\xEFn" },
|
|
850
|
+
{ value: "BD", label: "Bangladesh" },
|
|
851
|
+
{ value: "BB", label: "Barbade" },
|
|
852
|
+
{ value: "BY", label: "Bi\xE9lorussie" },
|
|
853
|
+
{ value: "BE", label: "Belgique" },
|
|
854
|
+
{ value: "BZ", label: "Belize" },
|
|
855
|
+
{ value: "BJ", label: "B\xE9nin" },
|
|
856
|
+
{ value: "BM", label: "Bermudes" },
|
|
857
|
+
{ value: "BT", label: "Bhoutan" },
|
|
858
|
+
{ value: "BO", label: "Bolivie" },
|
|
859
|
+
{ value: "BA", label: "Bosnie-Herz\xE9govine" },
|
|
860
|
+
{ value: "BW", label: "Botswana" },
|
|
861
|
+
{ value: "BV", label: "\xCEle Bouvet" },
|
|
862
|
+
{ value: "BR", label: "Br\xE9sil" },
|
|
863
|
+
{ value: "IO", label: "Territoire britannique de l'oc\xE9an Indien" },
|
|
864
|
+
{ value: "VG", label: "\xCEles Vierges britanniques" },
|
|
865
|
+
{ value: "BN", label: "Brunei" },
|
|
866
|
+
{ value: "BG", label: "Bulgarie" },
|
|
867
|
+
{ value: "BF", label: "Burkina Faso" },
|
|
868
|
+
{ value: "BI", label: "Burundi" },
|
|
869
|
+
{ value: "KH", label: "Cambodge" },
|
|
870
|
+
{ value: "CM", label: "Cameroun" },
|
|
871
|
+
{ value: "CA", label: "Canada" },
|
|
872
|
+
{ value: "IC", label: "\xCEles Canaries" },
|
|
873
|
+
{ value: "CV", label: "Cap-Vert" },
|
|
874
|
+
{ value: "BQ", label: "Pays-Bas carib\xE9ens" },
|
|
875
|
+
{ value: "KY", label: "\xCEles Ca\xEFmans" },
|
|
876
|
+
{ value: "CF", label: "R\xE9publique centrafricaine" },
|
|
877
|
+
{ value: "EA", label: "Ceuta et Melilla" },
|
|
878
|
+
{ value: "TD", label: "Tchad" },
|
|
879
|
+
{ value: "CL", label: "Chili" },
|
|
880
|
+
{ value: "CN", label: "Chine" },
|
|
881
|
+
{ value: "CX", label: "\xCEle Christmas" },
|
|
882
|
+
{ value: "CP", label: "Clipperton" },
|
|
883
|
+
{ value: "CC", label: "\xCEles Cocos" },
|
|
884
|
+
{ value: "CO", label: "Colombie" },
|
|
885
|
+
{ value: "KM", label: "Comores" },
|
|
886
|
+
{ value: "CG", label: "Congo" },
|
|
887
|
+
{ value: "CD", label: "R\xE9publique d\xE9mocratique du Congo" },
|
|
888
|
+
{ value: "CK", label: "\xCEles Cook" },
|
|
889
|
+
{ value: "CR", label: "Costa Rica" },
|
|
890
|
+
{ value: "HR", label: "Croatie" },
|
|
891
|
+
{ value: "CU", label: "Cuba" },
|
|
892
|
+
{ value: "CW", label: "Cura\xE7ao" },
|
|
893
|
+
{ value: "CY", label: "Chypre" },
|
|
894
|
+
{ value: "CZ", label: "Tch\xE9quie" },
|
|
895
|
+
{ value: "CI", label: "C\xF4te d'Ivoire" },
|
|
896
|
+
{ value: "DK", label: "Danemark" },
|
|
897
|
+
{ value: "DG", label: "Diego Garcia" },
|
|
898
|
+
{ value: "DJ", label: "Djibouti" },
|
|
899
|
+
{ value: "DM", label: "Dominique" },
|
|
900
|
+
{ value: "DO", label: "R\xE9publique dominicaine" },
|
|
901
|
+
{ value: "EC", label: "\xC9quateur" },
|
|
902
|
+
{ value: "EG", label: "\xC9gypte" },
|
|
903
|
+
{ value: "SV", label: "El Salvador" },
|
|
904
|
+
{ value: "GQ", label: "Guin\xE9e \xE9quatoriale" },
|
|
905
|
+
{ value: "ER", label: "\xC9rythr\xE9e" },
|
|
906
|
+
{ value: "EE", label: "Estonie" },
|
|
907
|
+
{ value: "SZ", label: "Eswatini" },
|
|
908
|
+
{ value: "ET", label: "\xC9thiopie" },
|
|
909
|
+
{ value: "FK", label: "\xCEles Falkland" },
|
|
910
|
+
{ value: "FO", label: "\xCEles F\xE9ro\xE9" },
|
|
911
|
+
{ value: "FJ", label: "Fidji" },
|
|
912
|
+
{ value: "FI", label: "Finlande" },
|
|
913
|
+
{ value: "GF", label: "Guyane" },
|
|
914
|
+
{ value: "PF", label: "Polyn\xE9sie fran\xE7aise" },
|
|
915
|
+
{ value: "TF", label: "Terres australes et antarctiques fran\xE7aises" },
|
|
916
|
+
{ value: "GA", label: "Gabon" },
|
|
917
|
+
{ value: "GM", label: "Gambie" },
|
|
918
|
+
{ value: "GE", label: "G\xE9orgie" },
|
|
919
|
+
{ value: "DE", label: "Allemagne" },
|
|
920
|
+
{ value: "GH", label: "Ghana" },
|
|
921
|
+
{ value: "GI", label: "Gibraltar" },
|
|
922
|
+
{ value: "GR", label: "Gr\xE8ce" },
|
|
923
|
+
{ value: "GL", label: "Groenland" },
|
|
924
|
+
{ value: "GD", label: "Grenade" },
|
|
925
|
+
{ value: "GP", label: "Guadeloupe" },
|
|
926
|
+
{ value: "GU", label: "Guam" },
|
|
927
|
+
{ value: "GT", label: "Guatemala" },
|
|
928
|
+
{ value: "GG", label: "Guernesey" },
|
|
929
|
+
{ value: "GN", label: "Guin\xE9e" },
|
|
930
|
+
{ value: "GW", label: "Guin\xE9e-Bissau" },
|
|
931
|
+
{ value: "GY", label: "Guyana" },
|
|
932
|
+
{ value: "HT", label: "Ha\xEFti" },
|
|
933
|
+
{ value: "HM", label: "\xCEles Heard et McDonald" },
|
|
934
|
+
{ value: "HN", label: "Honduras" },
|
|
935
|
+
{ value: "HK", label: "Hong Kong" },
|
|
936
|
+
{ value: "HU", label: "Hongrie" },
|
|
937
|
+
{ value: "IS", label: "Islande" },
|
|
938
|
+
{ value: "IN", label: "Inde" },
|
|
939
|
+
{ value: "ID", label: "Indon\xE9sie" },
|
|
940
|
+
{ value: "IR", label: "Iran" },
|
|
941
|
+
{ value: "IQ", label: "Iraq" },
|
|
942
|
+
{ value: "IE", label: "Irlande" },
|
|
943
|
+
{ value: "IM", label: "\xCEle de Man" },
|
|
944
|
+
{ value: "IL", label: "Isra\xEBl" },
|
|
945
|
+
{ value: "IT", label: "Italie" },
|
|
946
|
+
{ value: "JM", label: "Jama\xEFque" },
|
|
947
|
+
{ value: "JP", label: "Japon" },
|
|
948
|
+
{ value: "JE", label: "Jersey" },
|
|
949
|
+
{ value: "JO", label: "Jordanie" },
|
|
950
|
+
{ value: "KZ", label: "Kazakhstan" },
|
|
951
|
+
{ value: "KE", label: "Kenya" },
|
|
952
|
+
{ value: "KI", label: "Kiribati" },
|
|
953
|
+
{ value: "XK", label: "Kosovo" },
|
|
954
|
+
{ value: "KW", label: "Kowe\xEFt" },
|
|
955
|
+
{ value: "KG", label: "Kirghizstan" },
|
|
956
|
+
{ value: "LA", label: "Laos" },
|
|
957
|
+
{ value: "LV", label: "Lettonie" },
|
|
958
|
+
{ value: "LB", label: "Liban" },
|
|
959
|
+
{ value: "LS", label: "Lesotho" },
|
|
960
|
+
{ value: "LR", label: "Liberia" },
|
|
961
|
+
{ value: "LY", label: "Libye" },
|
|
962
|
+
{ value: "LI", label: "Liechtenstein" },
|
|
963
|
+
{ value: "LT", label: "Lituanie" },
|
|
964
|
+
{ value: "LU", label: "Luxembourg" },
|
|
965
|
+
{ value: "MO", label: "Macao" },
|
|
966
|
+
{ value: "MG", label: "Madagascar" },
|
|
967
|
+
{ value: "MW", label: "Malawi" },
|
|
968
|
+
{ value: "MY", label: "Malaisie" },
|
|
969
|
+
{ value: "MV", label: "Maldives" },
|
|
970
|
+
{ value: "ML", label: "Mali" },
|
|
971
|
+
{ value: "MT", label: "Malte" },
|
|
972
|
+
{ value: "MH", label: "\xCEles Marshall" },
|
|
973
|
+
{ value: "MQ", label: "Martinique" },
|
|
974
|
+
{ value: "MR", label: "Mauritanie" },
|
|
975
|
+
{ value: "MU", label: "Maurice" },
|
|
976
|
+
{ value: "YT", label: "Mayotte" },
|
|
977
|
+
{ value: "MX", label: "Mexico" },
|
|
978
|
+
{ value: "FM", label: "Micron\xE9sie" },
|
|
979
|
+
{ value: "MD", label: "Moldavie" },
|
|
980
|
+
{ value: "MC", label: "Monaco" },
|
|
981
|
+
{ value: "MN", label: "Mongolie" },
|
|
982
|
+
{ value: "ME", label: "Mont\xE9n\xE9gro" },
|
|
983
|
+
{ value: "MS", label: "Montserrat" },
|
|
984
|
+
{ value: "MA", label: "Maroc" },
|
|
985
|
+
{ value: "MZ", label: "Mozambique" },
|
|
986
|
+
{ value: "MM", label: "Myanmar (Birmanie)" },
|
|
987
|
+
{ value: "NA", label: "Namibie" },
|
|
988
|
+
{ value: "NR", label: "Nauru" },
|
|
989
|
+
{ value: "NP", label: "N\xE9pal" },
|
|
990
|
+
{ value: "NL", label: "Pays-Bas" },
|
|
991
|
+
{ value: "NC", label: "Nouvelle-Cal\xE9donie" },
|
|
992
|
+
{ value: "NZ", label: "Nouvelle-Z\xE9lande" },
|
|
993
|
+
{ value: "NI", label: "Nicaragua" },
|
|
994
|
+
{ value: "NE", label: "Niger" },
|
|
995
|
+
{ value: "NG", label: "Nigeria" },
|
|
996
|
+
{ value: "NU", label: "Niue" },
|
|
997
|
+
{ value: "NF", label: "\xCEle Norfolk" },
|
|
998
|
+
{ value: "KP", label: "Cor\xE9e du Nord" },
|
|
999
|
+
{ value: "MK", label: "Mac\xE9doine du Nord" },
|
|
1000
|
+
{ value: "MP", label: "\xCEles Mariannes du Nord" },
|
|
1001
|
+
{ value: "NO", label: "Norv\xE8ge" },
|
|
1002
|
+
{ value: "OM", label: "Oman" },
|
|
1003
|
+
{ value: "PK", label: "Pakistan" },
|
|
1004
|
+
{ value: "PW", label: "Palaos" },
|
|
1005
|
+
{ value: "PS", label: "Palestine" },
|
|
1006
|
+
{ value: "PA", label: "Panama" },
|
|
1007
|
+
{ value: "PG", label: "Papouasie-Nouvelle-Guin\xE9e" },
|
|
1008
|
+
{ value: "PY", label: "Paraguay" },
|
|
1009
|
+
{ value: "PE", label: "P\xE9rou" },
|
|
1010
|
+
{ value: "PH", label: "Philippines" },
|
|
1011
|
+
{ value: "PN", label: "\xCEles Pitcairn" },
|
|
1012
|
+
{ value: "PL", label: "Pologne" },
|
|
1013
|
+
{ value: "PT", label: "Portugal" },
|
|
1014
|
+
{ value: "PR", label: "Porto Rico" },
|
|
1015
|
+
{ value: "QA", label: "Qatar" },
|
|
1016
|
+
{ value: "RO", label: "Roumanie" },
|
|
1017
|
+
{ value: "RU", label: "Russie" },
|
|
1018
|
+
{ value: "RW", label: "Rwanda" },
|
|
1019
|
+
{ value: "RE", label: "R\xE9union" },
|
|
1020
|
+
{ value: "WS", label: "Samoa" },
|
|
1021
|
+
{ value: "SM", label: "Saint-Marin" },
|
|
1022
|
+
{ value: "SA", label: "Arabie saoudite" },
|
|
1023
|
+
{ value: "SN", label: "S\xE9n\xE9gal" },
|
|
1024
|
+
{ value: "RS", label: "Serbie" },
|
|
1025
|
+
{ value: "SC", label: "Seychelles" },
|
|
1026
|
+
{ value: "SL", label: "Sierra Leone" },
|
|
1027
|
+
{ value: "SG", label: "Singapour" },
|
|
1028
|
+
{ value: "SX", label: "Sint-Maarten" },
|
|
1029
|
+
{ value: "SK", label: "Slovaquie" },
|
|
1030
|
+
{ value: "SI", label: "Slov\xE9nie" },
|
|
1031
|
+
{ value: "SB", label: "\xCEles Salomon" },
|
|
1032
|
+
{ value: "SO", label: "Somalie" },
|
|
1033
|
+
{ value: "ZA", label: "Afrique du Sud" },
|
|
1034
|
+
{ value: "GS", label: "\xCEles G\xE9orgie du Sud et Sandwich du Sud" },
|
|
1035
|
+
{ value: "KR", label: "Cor\xE9e du Sud" },
|
|
1036
|
+
{ value: "SS", label: "Soudan du Sud" },
|
|
1037
|
+
{ value: "ES", label: "Espagne" },
|
|
1038
|
+
{ value: "LK", label: "Sri Lanka" },
|
|
1039
|
+
{ value: "BL", label: "Saint-Barth\xE9lemy" },
|
|
1040
|
+
{ value: "SH", label: "Sainte-H\xE9l\xE8ne" },
|
|
1041
|
+
{ value: "KN", label: "Saint-Christophe-et-Ni\xE9v\xE8s" },
|
|
1042
|
+
{ value: "LC", label: "Sainte-Lucie" },
|
|
1043
|
+
{ value: "MF", label: "Saint-Martin" },
|
|
1044
|
+
{ value: "PM", label: "Saint-Pierre-et-Miquelon" },
|
|
1045
|
+
{ value: "VC", label: "Saint-Vincent-et-les-Grenadines" },
|
|
1046
|
+
{ value: "SD", label: "Soudan" },
|
|
1047
|
+
{ value: "SR", label: "Suriname" },
|
|
1048
|
+
{ value: "SJ", label: "Svalbard et Jan Mayen" },
|
|
1049
|
+
{ value: "SE", label: "Su\xE8de" },
|
|
1050
|
+
{ value: "CH", label: "Suisse" },
|
|
1051
|
+
{ value: "SY", label: "Syrie" },
|
|
1052
|
+
{ value: "ST", label: "Sao Tom\xE9-et-Principe" },
|
|
1053
|
+
{ value: "TW", label: "Ta\xEFwan" },
|
|
1054
|
+
{ value: "TJ", label: "Tadjikistan" },
|
|
1055
|
+
{ value: "TZ", label: "Tanzanie" },
|
|
1056
|
+
{ value: "TH", label: "Tha\xEFlande" },
|
|
1057
|
+
{ value: "TL", label: "Timor-Oriental" },
|
|
1058
|
+
{ value: "TG", label: "Togo" },
|
|
1059
|
+
{ value: "TK", label: "Tok\xE9laou" },
|
|
1060
|
+
{ value: "TO", label: "Tonga" },
|
|
1061
|
+
{ value: "TT", label: "Trinit\xE9-et-Tobago" },
|
|
1062
|
+
{ value: "TA", label: "Tristan da Cunha" },
|
|
1063
|
+
{ value: "TN", label: "Tunisie" },
|
|
1064
|
+
{ value: "TR", label: "Turquie" },
|
|
1065
|
+
{ value: "TM", label: "Turkm\xE9nistan" },
|
|
1066
|
+
{ value: "TC", label: "\xCEles Turks-et-Ca\xEFcos" },
|
|
1067
|
+
{ value: "TV", label: "Tuvalu" },
|
|
1068
|
+
{ value: "UM", label: "\xCEles mineures \xE9loign\xE9es des \xC9tats-Unis" },
|
|
1069
|
+
{ value: "VI", label: "\xCEles Vierges am\xE9ricaines" },
|
|
1070
|
+
{ value: "UG", label: "Ouganda" },
|
|
1071
|
+
{ value: "UA", label: "Ukraine" },
|
|
1072
|
+
{ value: "AE", label: "\xC9mirats arabes unis" },
|
|
1073
|
+
{ value: "GB", label: "Royaume-Uni" },
|
|
1074
|
+
{ value: "US", label: "\xC9tats-Unis" },
|
|
1075
|
+
{ value: "UY", label: "Uruguay" },
|
|
1076
|
+
{ value: "UZ", label: "Ouzb\xE9kistan" },
|
|
1077
|
+
{ value: "VU", label: "Vanuatu" },
|
|
1078
|
+
{ value: "VA", label: "Vatican" },
|
|
1079
|
+
{ value: "VE", label: "Venezuela" },
|
|
1080
|
+
{ value: "VN", label: "Vi\xEAt Nam" },
|
|
1081
|
+
{ value: "WF", label: "Wallis-et-Futuna" },
|
|
1082
|
+
{ value: "EH", label: "Sahara occidental" },
|
|
1083
|
+
{ value: "YE", label: "Y\xE9men" },
|
|
1084
|
+
{ value: "ZM", label: "Zambie" },
|
|
1085
|
+
{ value: "ZW", label: "Zimbabwe" },
|
|
1086
|
+
{ value: "AX", label: "\xCEles \xC5land " }
|
|
1087
|
+
];
|
|
1088
|
+
|
|
829
1089
|
// src/static/mandate-select-options.ts
|
|
830
1090
|
var MANDATE_EXCLUSIVITY = [
|
|
831
1091
|
{
|
|
@@ -844,6 +1104,7 @@ var MANDATE_EXCLUSIVITY = [
|
|
|
844
1104
|
export {
|
|
845
1105
|
COMPANY_INFO,
|
|
846
1106
|
CONDITIONS,
|
|
1107
|
+
COUNTRIES,
|
|
847
1108
|
ESTATE_CONDITION,
|
|
848
1109
|
EXPOSURES,
|
|
849
1110
|
GENDER,
|