@sikka/hawa 0.2.41-next → 0.2.43-next
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/dist/index.css +245 -13
- package/dist/index.d.mts +104 -2
- package/dist/index.d.ts +104 -2
- package/dist/index.js +2288 -50
- package/dist/index.mjs +2329 -67
- package/package.json +4 -1
package/dist/index.js
CHANGED
|
@@ -224,6 +224,9 @@ __export(components_exports, {
|
|
|
224
224
|
AppStores: function() {
|
|
225
225
|
return AppStores;
|
|
226
226
|
},
|
|
227
|
+
BackToTop: function() {
|
|
228
|
+
return BackToTop;
|
|
229
|
+
},
|
|
227
230
|
Breadcrumb: function() {
|
|
228
231
|
return Breadcrumb;
|
|
229
232
|
},
|
|
@@ -257,6 +260,9 @@ __export(components_exports, {
|
|
|
257
260
|
CodeBlock: function() {
|
|
258
261
|
return CodeBlock;
|
|
259
262
|
},
|
|
263
|
+
ColorPicker: function() {
|
|
264
|
+
return ColorPicker;
|
|
265
|
+
},
|
|
260
266
|
Dialog: function() {
|
|
261
267
|
return Dialog;
|
|
262
268
|
},
|
|
@@ -281,12 +287,21 @@ __export(components_exports, {
|
|
|
281
287
|
DropdownMenu: function() {
|
|
282
288
|
return DropdownMenu;
|
|
283
289
|
},
|
|
290
|
+
FileDropzone: function() {
|
|
291
|
+
return FileDropzone;
|
|
292
|
+
},
|
|
293
|
+
Input: function() {
|
|
294
|
+
return Input;
|
|
295
|
+
},
|
|
284
296
|
Label: function() {
|
|
285
297
|
return Label;
|
|
286
298
|
},
|
|
287
299
|
Loading: function() {
|
|
288
300
|
return Loading;
|
|
289
301
|
},
|
|
302
|
+
PhoneInput: function() {
|
|
303
|
+
return PhoneInput;
|
|
304
|
+
},
|
|
290
305
|
PinInput: function() {
|
|
291
306
|
return PinInput;
|
|
292
307
|
},
|
|
@@ -308,6 +323,18 @@ __export(components_exports, {
|
|
|
308
323
|
Switch: function() {
|
|
309
324
|
return Switch;
|
|
310
325
|
},
|
|
326
|
+
Tabs: function() {
|
|
327
|
+
return Tabs;
|
|
328
|
+
},
|
|
329
|
+
TabsContent: function() {
|
|
330
|
+
return TabsContent;
|
|
331
|
+
},
|
|
332
|
+
TabsList: function() {
|
|
333
|
+
return TabsList;
|
|
334
|
+
},
|
|
335
|
+
TabsTrigger: function() {
|
|
336
|
+
return TabsTrigger;
|
|
337
|
+
},
|
|
311
338
|
Textarea: function() {
|
|
312
339
|
return Textarea;
|
|
313
340
|
},
|
|
@@ -1691,8 +1718,41 @@ var DropdownMenu = function(param) {
|
|
|
1691
1718
|
}
|
|
1692
1719
|
}))));
|
|
1693
1720
|
};
|
|
1694
|
-
// components/elements/
|
|
1721
|
+
// components/elements/ColorPicker.tsx
|
|
1695
1722
|
var import_react11 = __toESM(require("react"));
|
|
1723
|
+
var ColorPicker = function(props) {
|
|
1724
|
+
var _ref = _sliced_to_array((0, import_react11.useState)(props.color), 2), selectedColor = _ref[0], setSelectedColor = _ref[1];
|
|
1725
|
+
return /* @__PURE__ */ import_react11.default.createElement("div", {
|
|
1726
|
+
className: "hawa-flex hawa-w-fit hawa-flex-row hawa-rounded hawa-border hawa-p-0"
|
|
1727
|
+
}, /* @__PURE__ */ import_react11.default.createElement("div", {
|
|
1728
|
+
style: {
|
|
1729
|
+
backgroundColor: selectedColor
|
|
1730
|
+
},
|
|
1731
|
+
className: "hawa-rounded-bl-lg hawa-rounded-tl-lg"
|
|
1732
|
+
}, /* @__PURE__ */ import_react11.default.createElement("input", {
|
|
1733
|
+
type: "color",
|
|
1734
|
+
value: selectedColor,
|
|
1735
|
+
onChange: function(e) {
|
|
1736
|
+
setSelectedColor(e.target.value);
|
|
1737
|
+
if (props.handleChange) {
|
|
1738
|
+
props.handleChange(e);
|
|
1739
|
+
}
|
|
1740
|
+
},
|
|
1741
|
+
className: "hawa-opacity-0"
|
|
1742
|
+
})), /* @__PURE__ */ import_react11.default.createElement("input", {
|
|
1743
|
+
type: "text",
|
|
1744
|
+
onChange: function(e) {
|
|
1745
|
+
setSelectedColor(e.target.value);
|
|
1746
|
+
if (props.handleChange) {
|
|
1747
|
+
props.handleChange(e);
|
|
1748
|
+
}
|
|
1749
|
+
},
|
|
1750
|
+
value: selectedColor,
|
|
1751
|
+
className: "hawa-w-24 hawa-bg-background hawa-rounded-br-lg hawa-rounded-tr-lg hawa-pl-2 hawa-pr-2"
|
|
1752
|
+
}));
|
|
1753
|
+
};
|
|
1754
|
+
// components/elements/PinInput.tsx
|
|
1755
|
+
var import_react12 = __toESM(require("react"));
|
|
1696
1756
|
var import_clsx5 = __toESM(require("clsx"));
|
|
1697
1757
|
var PinInput = function(_param) {
|
|
1698
1758
|
var label = _param.label, icon = _param.icon, digits = _param.digits, _param_width = _param.width, width = _param_width === void 0 ? "normal" : _param_width, getPins = _param.getPins, props = _object_without_properties(_param, [
|
|
@@ -1702,7 +1762,7 @@ var PinInput = function(_param) {
|
|
|
1702
1762
|
"width",
|
|
1703
1763
|
"getPins"
|
|
1704
1764
|
]);
|
|
1705
|
-
var _ref = _sliced_to_array((0,
|
|
1765
|
+
var _ref = _sliced_to_array((0, import_react12.useState)(Array.from(Array(digits))), 2), pin = _ref[0], setPin = _ref[1];
|
|
1706
1766
|
var handleKeyDown = function(e, index) {
|
|
1707
1767
|
var backTo = 0;
|
|
1708
1768
|
if (e.key === "Backspace") {
|
|
@@ -1711,7 +1771,7 @@ var PinInput = function(_param) {
|
|
|
1711
1771
|
previousInput === null || previousInput === void 0 ? void 0 : previousInput.focus();
|
|
1712
1772
|
}
|
|
1713
1773
|
};
|
|
1714
|
-
(0,
|
|
1774
|
+
(0, import_react12.useEffect)(function() {
|
|
1715
1775
|
var unfilled = pin.includes(void 0);
|
|
1716
1776
|
if (!unfilled && getPins) {
|
|
1717
1777
|
getPins(pin);
|
|
@@ -1736,10 +1796,10 @@ var PinInput = function(_param) {
|
|
|
1736
1796
|
}
|
|
1737
1797
|
}
|
|
1738
1798
|
};
|
|
1739
|
-
return /* @__PURE__ */
|
|
1799
|
+
return /* @__PURE__ */ import_react12.default.createElement("div", {
|
|
1740
1800
|
className: "hawa-flex hawa-w-full hawa-flex-row hawa-justify-center hawa-gap-2"
|
|
1741
1801
|
}, pin.map(function(value, index) {
|
|
1742
|
-
return /* @__PURE__ */
|
|
1802
|
+
return /* @__PURE__ */ import_react12.default.createElement("input", _object_spread({
|
|
1743
1803
|
key: index,
|
|
1744
1804
|
type: "text",
|
|
1745
1805
|
maxLength: 1,
|
|
@@ -1760,12 +1820,12 @@ var PinInput = function(_param) {
|
|
|
1760
1820
|
}));
|
|
1761
1821
|
};
|
|
1762
1822
|
// components/elements/ActionCard.tsx
|
|
1763
|
-
var
|
|
1823
|
+
var import_react13 = __toESM(require("react"));
|
|
1764
1824
|
var ActionCard = function(props) {
|
|
1765
|
-
var _ref = _sliced_to_array((0,
|
|
1766
|
-
return /* @__PURE__ */
|
|
1825
|
+
var _ref = _sliced_to_array((0, import_react13.useState)(false), 2), hovered = _ref[0], setHovered = _ref[1];
|
|
1826
|
+
return /* @__PURE__ */ import_react13.default.createElement("div", {
|
|
1767
1827
|
className: "hawa-flex hawa-h-full hawa-w-full hawa-flex-col hawa-gap-1"
|
|
1768
|
-
}, /* @__PURE__ */
|
|
1828
|
+
}, /* @__PURE__ */ import_react13.default.createElement("div", {
|
|
1769
1829
|
className: "hawa-group hawa-relative hawa-h-full hawa-w-full hawa-rounded hawa-border hawa-bg-background hawa-bg-cover hawa-bg-center hawa-transition-all hawa-duration-500 hover:hawa-drop-shadow-2xl",
|
|
1770
1830
|
style: {
|
|
1771
1831
|
backgroundImage: "url(".concat(props.blank ? "" : props.cardImage, ")")
|
|
@@ -1776,9 +1836,9 @@ var ActionCard = function(props) {
|
|
|
1776
1836
|
onMouseLeave: function() {
|
|
1777
1837
|
return setHovered(false);
|
|
1778
1838
|
}
|
|
1779
|
-
}, props.blank ? /* @__PURE__ */
|
|
1839
|
+
}, props.blank ? /* @__PURE__ */ import_react13.default.createElement("div", {
|
|
1780
1840
|
className: "hawa-flex hawa-h-full hawa-flex-col hawa-items-center hawa-justify-center "
|
|
1781
|
-
}, /* @__PURE__ */
|
|
1841
|
+
}, /* @__PURE__ */ import_react13.default.createElement("svg", {
|
|
1782
1842
|
className: "hawa-h-10 hawa-w-10 hawa-text-foreground",
|
|
1783
1843
|
stroke: "currentColor",
|
|
1784
1844
|
fill: "currentColor",
|
|
@@ -1787,108 +1847,2278 @@ var ActionCard = function(props) {
|
|
|
1787
1847
|
height: "1em",
|
|
1788
1848
|
width: "1em",
|
|
1789
1849
|
xmlns: "http://www.w3.org/2000/svg"
|
|
1790
|
-
}, /* @__PURE__ */
|
|
1850
|
+
}, /* @__PURE__ */ import_react13.default.createElement("path", {
|
|
1791
1851
|
d: "M19 11h-6V5h-2v6H5v2h6v6h2v-6h6z"
|
|
1792
|
-
}))) : /* @__PURE__ */
|
|
1852
|
+
}))) : /* @__PURE__ */ import_react13.default.createElement("div", {
|
|
1793
1853
|
className: "hawa-absolute hawa-inset-0 hawa-rounded hawa-bg-black hawa-opacity-50"
|
|
1794
|
-
}), /* @__PURE__ */
|
|
1854
|
+
}), /* @__PURE__ */ import_react13.default.createElement("div", {
|
|
1795
1855
|
className: "hawa-absolute hawa-bottom-2 hawa-right-2 hawa-z-10 hawa-opacity-0 hawa-transition-all hawa-duration-200 group-hover:hawa-opacity-100"
|
|
1796
|
-
}, props.inCardActions), !props.blank && /* @__PURE__ */
|
|
1856
|
+
}, props.inCardActions), !props.blank && /* @__PURE__ */ import_react13.default.createElement("div", {
|
|
1797
1857
|
className: "hawa-relative hawa-p-4"
|
|
1798
|
-
}, /* @__PURE__ */
|
|
1858
|
+
}, /* @__PURE__ */ import_react13.default.createElement("h1", {
|
|
1799
1859
|
className: "hawa-text-white"
|
|
1800
|
-
}, props.title), /* @__PURE__ */
|
|
1860
|
+
}, props.title), /* @__PURE__ */ import_react13.default.createElement("p", {
|
|
1801
1861
|
className: "hawa-text-white"
|
|
1802
|
-
}, props.subtitle))), /* @__PURE__ */
|
|
1862
|
+
}, props.subtitle))), /* @__PURE__ */ import_react13.default.createElement("div", {
|
|
1803
1863
|
className: "hawa-flex hawa-flex-row hawa-justify-between hawa-text-sm hawa-transition-all hawa-duration-200 ".concat(hovered ? "hawa-opacity-100" : "hawa-opacity-0")
|
|
1804
1864
|
}, props.bottomElement));
|
|
1805
1865
|
};
|
|
1866
|
+
// components/elements/FileDropzone.tsx
|
|
1867
|
+
var import_react14 = __toESM(require("react"));
|
|
1868
|
+
var import_react_dropzone = require("react-dropzone");
|
|
1869
|
+
var import_clsx6 = __toESM(require("clsx"));
|
|
1870
|
+
var FileDropzone = function(param) {
|
|
1871
|
+
var texts = param.texts, files = param.files, setFiles = param.setFiles, setDeletedFiles = param.setDeletedFiles, onAcceptedFiles = param.onAcceptedFiles, errorMessages = param.errorMessages, maxFiles = param.maxFiles, accept = param.accept, showPreview = param.showPreview, onDeleteFile = param.onDeleteFile, onClearFiles = param.onClearFiles, disclaimer = param.disclaimer, maxSize = param.maxSize, label = param.label, termsLink = param.termsLink, privacyLink = param.privacyLink;
|
|
1872
|
+
var _fileRejections__errors_, _fileRejections_;
|
|
1873
|
+
var _ref = _sliced_to_array((0, import_react14.useState)(0), 2), cmp = _ref[0], setCmp = _ref[1];
|
|
1874
|
+
var _ref1 = _sliced_to_array((0, import_react14.useState)(0), 2), max = _ref1[0], setMax = _ref1[1];
|
|
1875
|
+
var _ref2 = (0, import_react_dropzone.useDropzone)({
|
|
1876
|
+
multiple: true,
|
|
1877
|
+
accept: accept,
|
|
1878
|
+
maxSize: maxSize,
|
|
1879
|
+
maxFiles: maxFiles,
|
|
1880
|
+
onDrop: function(acceptedFiles2) {
|
|
1881
|
+
setFiles(acceptedFiles2.map(function(file, index) {
|
|
1882
|
+
return Object.assign(file, {
|
|
1883
|
+
preview: URL.createObjectURL(file)
|
|
1884
|
+
});
|
|
1885
|
+
}));
|
|
1886
|
+
}
|
|
1887
|
+
}), getRootProps = _ref2.getRootProps, getInputProps = _ref2.getInputProps, fileRejections = _ref2.fileRejections, acceptedFiles = _ref2.acceptedFiles, isDragActive = _ref2.isDragActive;
|
|
1888
|
+
(0, import_react14.useEffect)(function() {
|
|
1889
|
+
return function() {
|
|
1890
|
+
files === null || files === void 0 ? void 0 : files.forEach(function(file) {
|
|
1891
|
+
URL.revokeObjectURL(file.preview);
|
|
1892
|
+
});
|
|
1893
|
+
};
|
|
1894
|
+
}, [
|
|
1895
|
+
files
|
|
1896
|
+
]);
|
|
1897
|
+
(0, import_react14.useEffect)(function() {
|
|
1898
|
+
setFiles(acceptedFiles);
|
|
1899
|
+
}, [
|
|
1900
|
+
acceptedFiles,
|
|
1901
|
+
cmp
|
|
1902
|
+
]);
|
|
1903
|
+
onClearFiles = function() {
|
|
1904
|
+
acceptedFiles.length = 0;
|
|
1905
|
+
acceptedFiles.splice(0, acceptedFiles.length);
|
|
1906
|
+
setFiles([]);
|
|
1907
|
+
};
|
|
1908
|
+
var clearAllFiles = function() {
|
|
1909
|
+
acceptedFiles.length = 0;
|
|
1910
|
+
setFiles([]);
|
|
1911
|
+
};
|
|
1912
|
+
(0, import_react14.useEffect)(function() {
|
|
1913
|
+
if (maxSize > 0) {
|
|
1914
|
+
var k = 1024;
|
|
1915
|
+
var sizes = [
|
|
1916
|
+
"Bytes",
|
|
1917
|
+
"KB",
|
|
1918
|
+
"MB",
|
|
1919
|
+
"GB",
|
|
1920
|
+
"TB",
|
|
1921
|
+
"PB",
|
|
1922
|
+
"EB",
|
|
1923
|
+
"ZB",
|
|
1924
|
+
"YB"
|
|
1925
|
+
];
|
|
1926
|
+
var i = Math.floor(Math.log(maxSize) / Math.log(1024));
|
|
1927
|
+
setMax(parseFloat((maxSize / Math.pow(1024, i)).toFixed(2)) + " " + sizes[i]);
|
|
1928
|
+
}
|
|
1929
|
+
}, [
|
|
1930
|
+
maxSize
|
|
1931
|
+
]);
|
|
1932
|
+
var errs = fileRejections.map(function(rej, i) {
|
|
1933
|
+
switch(rej.errors[0].code){
|
|
1934
|
+
case "file-too-large":
|
|
1935
|
+
return /* @__PURE__ */ import_react14.default.createElement(Alert, {
|
|
1936
|
+
text: rej.file.name,
|
|
1937
|
+
title: texts.fileTooLarge,
|
|
1938
|
+
severity: "error"
|
|
1939
|
+
});
|
|
1940
|
+
case "too-many-files":
|
|
1941
|
+
return /* @__PURE__ */ import_react14.default.createElement(Alert, {
|
|
1942
|
+
text: rej.file.name,
|
|
1943
|
+
title: texts.tooManyFiles,
|
|
1944
|
+
severity: "error"
|
|
1945
|
+
});
|
|
1946
|
+
case "file-invalid-type":
|
|
1947
|
+
return /* @__PURE__ */ import_react14.default.createElement(Alert, {
|
|
1948
|
+
text: rej.file.name,
|
|
1949
|
+
title: texts.invalidFileType,
|
|
1950
|
+
severity: "error"
|
|
1951
|
+
});
|
|
1952
|
+
default:
|
|
1953
|
+
return /* @__PURE__ */ import_react14.default.createElement(Alert, {
|
|
1954
|
+
text: rej.file.name,
|
|
1955
|
+
title: rej.errors[0].code,
|
|
1956
|
+
severity: "error"
|
|
1957
|
+
});
|
|
1958
|
+
}
|
|
1959
|
+
});
|
|
1960
|
+
var thumbs = files === null || files === void 0 ? void 0 : files.map(function(file, index) {
|
|
1961
|
+
return /* @__PURE__ */ import_react14.default.createElement("div", {
|
|
1962
|
+
className: "hawa-relative hawa-rounded"
|
|
1963
|
+
}, /* @__PURE__ */ import_react14.default.createElement("button", {
|
|
1964
|
+
onClick: function(e) {
|
|
1965
|
+
e.stopPropagation();
|
|
1966
|
+
acceptedFiles.splice(acceptedFiles.indexOf(file), 1);
|
|
1967
|
+
setCmp(Math.random);
|
|
1968
|
+
onDeleteFile(file);
|
|
1969
|
+
},
|
|
1970
|
+
type: "button",
|
|
1971
|
+
className: "hawa-absolute hawa-left-0 hawa-ml-auto hawa-inline-flex hawa-items-center hawa-rounded-inner hawa-rounded-bl-none hawa-rounded-tr-none hawa-bg-gray-900 hawa-p-1.5 hawa-text-sm hawa-text-gray-400 hawa-transition-all hover:hawa-bg-gray-200 hover:hawa-text-gray-900 dark:hover:hawa-bg-gray-600 dark:hover:hawa-text-white",
|
|
1972
|
+
"data-modal-toggle": "defaultModal"
|
|
1973
|
+
}, /* @__PURE__ */ import_react14.default.createElement("svg", {
|
|
1974
|
+
"aria-hidden": "true",
|
|
1975
|
+
className: "hawa-h-5 hawa-w-5",
|
|
1976
|
+
fill: "currentColor",
|
|
1977
|
+
viewBox: "0 0 20 20"
|
|
1978
|
+
}, /* @__PURE__ */ import_react14.default.createElement("path", {
|
|
1979
|
+
fillRule: "evenodd",
|
|
1980
|
+
d: "M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z",
|
|
1981
|
+
clipRule: "evenodd"
|
|
1982
|
+
})), /* @__PURE__ */ import_react14.default.createElement("span", {
|
|
1983
|
+
className: "hawa-sr-only"
|
|
1984
|
+
}, "Close modal")), /* @__PURE__ */ import_react14.default.createElement("div", {
|
|
1985
|
+
style: {
|
|
1986
|
+
display: "flex",
|
|
1987
|
+
justifyContent: "center",
|
|
1988
|
+
alignItems: "center",
|
|
1989
|
+
overflow: "hidden",
|
|
1990
|
+
height: 100,
|
|
1991
|
+
width: 100,
|
|
1992
|
+
backgroundImage: "url(".concat(file.preview, ")"),
|
|
1993
|
+
backgroundSize: "cover",
|
|
1994
|
+
backgroundPosition: "center",
|
|
1995
|
+
border: "1px solid black"
|
|
1996
|
+
},
|
|
1997
|
+
className: "hawa-rounded",
|
|
1998
|
+
key: file.name
|
|
1999
|
+
}));
|
|
2000
|
+
});
|
|
2001
|
+
var _texts_disclaimer, _texts_terms, _texts_and, _texts_privacyPolicy;
|
|
2002
|
+
return /* @__PURE__ */ import_react14.default.createElement("div", null, label && /* @__PURE__ */ import_react14.default.createElement("div", {
|
|
2003
|
+
className: "hawa-mb-2 hawa-block hawa-text-sm hawa-font-medium hawa-text-gray-900 dark:hawa-text-gray-300"
|
|
2004
|
+
}, label), /* @__PURE__ */ import_react14.default.createElement("div", {
|
|
2005
|
+
className: (0, import_clsx6.default)("hawa-flex hawa-flex-col hawa-justify-center hawa-rounded hawa-border hawa-border-dashed hawa-p-6 hawa-transition-all ", isDragActive ? "hawa-bg-muted" : "hawa-bg-muted/20 hover:hawa-bg-muted/50 ")
|
|
2006
|
+
}, /* @__PURE__ */ import_react14.default.createElement("div", _object_spread({}, getRootProps({})), /* @__PURE__ */ import_react14.default.createElement("p", _object_spread({}, getInputProps())), /* @__PURE__ */ import_react14.default.createElement("div", {
|
|
2007
|
+
className: "hawa-flex hawa-flex-col hawa-items-center hawa-justify-center hawa-gap-2 hawa-pt-4 hawa-text-center"
|
|
2008
|
+
}, /* @__PURE__ */ import_react14.default.createElement("svg", {
|
|
2009
|
+
stroke: "currentColor",
|
|
2010
|
+
fill: "none",
|
|
2011
|
+
strokeWidth: "2",
|
|
2012
|
+
viewBox: "0 0 24 24",
|
|
2013
|
+
strokeLinecap: "round",
|
|
2014
|
+
strokeLinejoin: "round",
|
|
2015
|
+
height: "1.5em",
|
|
2016
|
+
width: "1.5em"
|
|
2017
|
+
}, /* @__PURE__ */ import_react14.default.createElement("path", {
|
|
2018
|
+
stroke: "none",
|
|
2019
|
+
d: "M0 0h24v24H0z",
|
|
2020
|
+
fill: "none"
|
|
2021
|
+
}), /* @__PURE__ */ import_react14.default.createElement("path", {
|
|
2022
|
+
d: "M19 11v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"
|
|
2023
|
+
}), /* @__PURE__ */ import_react14.default.createElement("path", {
|
|
2024
|
+
d: "M13 13l9 3l-4 2l-2 4l-3 -9"
|
|
2025
|
+
}), /* @__PURE__ */ import_react14.default.createElement("path", {
|
|
2026
|
+
d: "M3 3l0 .01"
|
|
2027
|
+
}), /* @__PURE__ */ import_react14.default.createElement("path", {
|
|
2028
|
+
d: "M7 3l0 .01"
|
|
2029
|
+
}), /* @__PURE__ */ import_react14.default.createElement("path", {
|
|
2030
|
+
d: "M11 3l0 .01"
|
|
2031
|
+
}), /* @__PURE__ */ import_react14.default.createElement("path", {
|
|
2032
|
+
d: "M15 3l0 .01"
|
|
2033
|
+
}), /* @__PURE__ */ import_react14.default.createElement("path", {
|
|
2034
|
+
d: "M3 7l0 .01"
|
|
2035
|
+
}), /* @__PURE__ */ import_react14.default.createElement("path", {
|
|
2036
|
+
d: "M3 11l0 .01"
|
|
2037
|
+
}), /* @__PURE__ */ import_react14.default.createElement("path", {
|
|
2038
|
+
d: "M3 15l0 .01"
|
|
2039
|
+
})), typeof texts.clickHereToUpload === "function" ? texts.clickHereToUpload() : texts.clickHereToUpload), /* @__PURE__ */ import_react14.default.createElement("div", {
|
|
2040
|
+
className: "hawa-pt-2 hawa-text-center hawa-text-xs hawa-select-none"
|
|
2041
|
+
}, texts.acceptedFileTypes, " ", accept.split(",")), /* @__PURE__ */ import_react14.default.createElement("div", {
|
|
2042
|
+
className: "hawa-pb-2 hawa-pt-1 hawa-text-center hawa-text-xs hawa-select-none"
|
|
2043
|
+
}, texts.maxFileSize, " ", max)), acceptedFiles.length > 0 && /* @__PURE__ */ import_react14.default.createElement("div", {
|
|
2044
|
+
className: "hawa-flex hawa-justify-center hawa-rounded-lg hawa-p-2 "
|
|
2045
|
+
}, /* @__PURE__ */ import_react14.default.createElement(Button, {
|
|
2046
|
+
onClick: clearAllFiles
|
|
2047
|
+
}, "Clear All")), acceptedFiles.length > 0 && thumbs && showPreview ? /* @__PURE__ */ import_react14.default.createElement("aside", {
|
|
2048
|
+
className: "hawa-flex hawa-flex-row hawa-flex-wrap hawa-justify-center hawa-gap-2 hawa-rounded-lg hawa-p-2"
|
|
2049
|
+
}, thumbs) : null, /* @__PURE__ */ import_react14.default.createElement("div", {
|
|
2050
|
+
className: "px-4"
|
|
2051
|
+
}, ((_fileRejections_ = fileRejections[0]) === null || _fileRejections_ === void 0 ? void 0 : (_fileRejections__errors_ = _fileRejections_.errors[0]) === null || _fileRejections__errors_ === void 0 ? void 0 : _fileRejections__errors_.code) && errs)), disclaimer && /* @__PURE__ */ import_react14.default.createElement("div", {
|
|
2052
|
+
className: "hawa-mt-2 hawa-text-sm hawa-text-muted-foreground/50"
|
|
2053
|
+
}, (_texts_disclaimer = texts.disclaimer) !== null && _texts_disclaimer !== void 0 ? _texts_disclaimer : "By uploading a file you agree to our", " ", /* @__PURE__ */ import_react14.default.createElement("a", {
|
|
2054
|
+
href: termsLink,
|
|
2055
|
+
className: "clickable-link hawa-text-muted-foreground/50"
|
|
2056
|
+
}, (_texts_terms = texts.terms) !== null && _texts_terms !== void 0 ? _texts_terms : "Terms"), " ", (_texts_and = texts.and) !== null && _texts_and !== void 0 ? _texts_and : "and", " ", /* @__PURE__ */ import_react14.default.createElement("a", {
|
|
2057
|
+
href: privacyLink,
|
|
2058
|
+
className: "clickable-link hawa-text-muted-foreground/50"
|
|
2059
|
+
}, (_texts_privacyPolicy = texts.privacyPolicy) !== null && _texts_privacyPolicy !== void 0 ? _texts_privacyPolicy : "Privacy Policy")));
|
|
2060
|
+
};
|
|
2061
|
+
// components/elements/PhoneInput.tsx
|
|
2062
|
+
var import_react15 = __toESM(require("react"));
|
|
2063
|
+
// components/countries.ts
|
|
2064
|
+
var countries = [
|
|
2065
|
+
{
|
|
2066
|
+
country_label: "Saudi Arabia",
|
|
2067
|
+
code: "SA",
|
|
2068
|
+
unicode: "🇸🇦",
|
|
2069
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SA.svg",
|
|
2070
|
+
label: "+966"
|
|
2071
|
+
},
|
|
2072
|
+
{
|
|
2073
|
+
country_label: "United Arab Emirates",
|
|
2074
|
+
code: "AE",
|
|
2075
|
+
unicode: "🇦🇪",
|
|
2076
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AE.svg",
|
|
2077
|
+
label: "+971"
|
|
2078
|
+
},
|
|
2079
|
+
{
|
|
2080
|
+
country_label: "Bahrain",
|
|
2081
|
+
code: "BH",
|
|
2082
|
+
unicode: "🇧🇭",
|
|
2083
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BH.svg",
|
|
2084
|
+
label: "+973"
|
|
2085
|
+
},
|
|
2086
|
+
{
|
|
2087
|
+
country_label: "Kuwait",
|
|
2088
|
+
code: "KW",
|
|
2089
|
+
unicode: "🇰🇼",
|
|
2090
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/KW.svg",
|
|
2091
|
+
label: "+965"
|
|
2092
|
+
},
|
|
2093
|
+
{
|
|
2094
|
+
country_label: "Qatar",
|
|
2095
|
+
code: "QA",
|
|
2096
|
+
unicode: "🇶🇦",
|
|
2097
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/QA.svg",
|
|
2098
|
+
label: "+974"
|
|
2099
|
+
},
|
|
2100
|
+
{
|
|
2101
|
+
country_label: "Oman",
|
|
2102
|
+
code: "OM",
|
|
2103
|
+
unicode: "🇴🇲",
|
|
2104
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/OM.svg",
|
|
2105
|
+
label: "+968"
|
|
2106
|
+
},
|
|
2107
|
+
{
|
|
2108
|
+
country_label: "Andorra",
|
|
2109
|
+
value: "Andorra",
|
|
2110
|
+
code: "AD",
|
|
2111
|
+
unicode: "🇦🇩",
|
|
2112
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AD.svg",
|
|
2113
|
+
label: "+376"
|
|
2114
|
+
},
|
|
2115
|
+
{
|
|
2116
|
+
country_label: "Afghanistan",
|
|
2117
|
+
code: "AF",
|
|
2118
|
+
unicode: "🇦🇫",
|
|
2119
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AF.svg",
|
|
2120
|
+
label: "+93"
|
|
2121
|
+
},
|
|
2122
|
+
{
|
|
2123
|
+
country_label: "Antigua & Barbuda",
|
|
2124
|
+
code: "AG",
|
|
2125
|
+
unicode: "🇦🇬",
|
|
2126
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AG.svg",
|
|
2127
|
+
label: "+1268"
|
|
2128
|
+
},
|
|
2129
|
+
{
|
|
2130
|
+
country_label: "Anguilla",
|
|
2131
|
+
code: "AI",
|
|
2132
|
+
unicode: "🇦🇮",
|
|
2133
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AI.svg",
|
|
2134
|
+
label: "+1264"
|
|
2135
|
+
},
|
|
2136
|
+
{
|
|
2137
|
+
country_label: "Albania",
|
|
2138
|
+
code: "AL",
|
|
2139
|
+
unicode: "🇦🇱",
|
|
2140
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AL.svg",
|
|
2141
|
+
label: "+355"
|
|
2142
|
+
},
|
|
2143
|
+
{
|
|
2144
|
+
country_label: "Armenia",
|
|
2145
|
+
code: "AM",
|
|
2146
|
+
unicode: "🇦🇲",
|
|
2147
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AM.svg",
|
|
2148
|
+
label: "+374"
|
|
2149
|
+
},
|
|
2150
|
+
{
|
|
2151
|
+
country_label: "Angola",
|
|
2152
|
+
code: "AO",
|
|
2153
|
+
unicode: "🇦🇴",
|
|
2154
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AO.svg",
|
|
2155
|
+
label: "+244"
|
|
2156
|
+
},
|
|
2157
|
+
{
|
|
2158
|
+
country_label: "Antarctica",
|
|
2159
|
+
code: "AQ",
|
|
2160
|
+
unicode: "🇦🇶",
|
|
2161
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AQ.svg",
|
|
2162
|
+
label: "+672"
|
|
2163
|
+
},
|
|
2164
|
+
{
|
|
2165
|
+
country_label: "Argentina",
|
|
2166
|
+
code: "AR",
|
|
2167
|
+
unicode: "🇦🇷",
|
|
2168
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AR.svg",
|
|
2169
|
+
label: "+54"
|
|
2170
|
+
},
|
|
2171
|
+
{
|
|
2172
|
+
country_label: "American Samoa",
|
|
2173
|
+
code: "AS",
|
|
2174
|
+
unicode: "🇦🇸",
|
|
2175
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AS.svg",
|
|
2176
|
+
label: "+1684"
|
|
2177
|
+
},
|
|
2178
|
+
{
|
|
2179
|
+
country_label: "Austria",
|
|
2180
|
+
code: "AT",
|
|
2181
|
+
unicode: "🇦🇹",
|
|
2182
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AT.svg",
|
|
2183
|
+
label: "+43"
|
|
2184
|
+
},
|
|
2185
|
+
{
|
|
2186
|
+
country_label: "Australia",
|
|
2187
|
+
code: "AU",
|
|
2188
|
+
unicode: "🇦🇺",
|
|
2189
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AU.svg",
|
|
2190
|
+
label: "+61"
|
|
2191
|
+
},
|
|
2192
|
+
{
|
|
2193
|
+
country_label: "Aruba",
|
|
2194
|
+
code: "AW",
|
|
2195
|
+
unicode: "🇦🇼",
|
|
2196
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AW.svg",
|
|
2197
|
+
label: "+297"
|
|
2198
|
+
},
|
|
2199
|
+
{
|
|
2200
|
+
country_label: "\xc5land Islands",
|
|
2201
|
+
code: "AX",
|
|
2202
|
+
unicode: "🇦🇽",
|
|
2203
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AX.svg",
|
|
2204
|
+
label: "+358"
|
|
2205
|
+
},
|
|
2206
|
+
{
|
|
2207
|
+
country_label: "Azerbaijan",
|
|
2208
|
+
code: "AZ",
|
|
2209
|
+
unicode: "🇦🇿",
|
|
2210
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AZ.svg",
|
|
2211
|
+
label: "+994"
|
|
2212
|
+
},
|
|
2213
|
+
{
|
|
2214
|
+
country_label: "Bosnia & Herzegovina",
|
|
2215
|
+
code: "BA",
|
|
2216
|
+
unicode: "🇧🇦",
|
|
2217
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BA.svg",
|
|
2218
|
+
label: "+387"
|
|
2219
|
+
},
|
|
2220
|
+
{
|
|
2221
|
+
country_label: "Barbados",
|
|
2222
|
+
code: "BB",
|
|
2223
|
+
unicode: "🇧🇧",
|
|
2224
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BB.svg",
|
|
2225
|
+
label: "+1246"
|
|
2226
|
+
},
|
|
2227
|
+
{
|
|
2228
|
+
country_label: "Bangladesh",
|
|
2229
|
+
code: "BD",
|
|
2230
|
+
unicode: "🇧🇩",
|
|
2231
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BD.svg",
|
|
2232
|
+
label: "+880"
|
|
2233
|
+
},
|
|
2234
|
+
{
|
|
2235
|
+
country_label: "Belgium",
|
|
2236
|
+
code: "BE",
|
|
2237
|
+
unicode: "🇧🇪",
|
|
2238
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BE.svg",
|
|
2239
|
+
label: "+32"
|
|
2240
|
+
},
|
|
2241
|
+
{
|
|
2242
|
+
country_label: "Burkina Faso",
|
|
2243
|
+
code: "BF",
|
|
2244
|
+
unicode: "🇧🇫",
|
|
2245
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BF.svg",
|
|
2246
|
+
label: "+226"
|
|
2247
|
+
},
|
|
2248
|
+
{
|
|
2249
|
+
country_label: "Bulgaria",
|
|
2250
|
+
code: "BG",
|
|
2251
|
+
unicode: "🇧🇬",
|
|
2252
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BG.svg",
|
|
2253
|
+
label: "+359"
|
|
2254
|
+
},
|
|
2255
|
+
{
|
|
2256
|
+
country_label: "Burundi",
|
|
2257
|
+
code: "BI",
|
|
2258
|
+
unicode: "🇧🇮",
|
|
2259
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BI.svg",
|
|
2260
|
+
label: "+257"
|
|
2261
|
+
},
|
|
2262
|
+
{
|
|
2263
|
+
country_label: "Benin",
|
|
2264
|
+
code: "BJ",
|
|
2265
|
+
unicode: "🇧🇯",
|
|
2266
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BJ.svg",
|
|
2267
|
+
label: "+229"
|
|
2268
|
+
},
|
|
2269
|
+
{
|
|
2270
|
+
country_label: "St. Barth\xe9lemy",
|
|
2271
|
+
code: "BL",
|
|
2272
|
+
unicode: "🇧🇱",
|
|
2273
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BL.svg",
|
|
2274
|
+
label: "+590"
|
|
2275
|
+
},
|
|
2276
|
+
{
|
|
2277
|
+
country_label: "Bermuda",
|
|
2278
|
+
code: "BM",
|
|
2279
|
+
unicode: "🇧🇲",
|
|
2280
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BM.svg",
|
|
2281
|
+
label: "+1441"
|
|
2282
|
+
},
|
|
2283
|
+
{
|
|
2284
|
+
country_label: "Brunei",
|
|
2285
|
+
code: "BN",
|
|
2286
|
+
unicode: "🇧🇳",
|
|
2287
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BN.svg",
|
|
2288
|
+
label: "+673"
|
|
2289
|
+
},
|
|
2290
|
+
{
|
|
2291
|
+
country_label: "Bolivia",
|
|
2292
|
+
code: "BO",
|
|
2293
|
+
unicode: "🇧🇴",
|
|
2294
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BO.svg",
|
|
2295
|
+
label: "+591"
|
|
2296
|
+
},
|
|
2297
|
+
{
|
|
2298
|
+
country_label: "Brazil",
|
|
2299
|
+
code: "BR",
|
|
2300
|
+
unicode: "🇧🇷",
|
|
2301
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BR.svg",
|
|
2302
|
+
label: "+55"
|
|
2303
|
+
},
|
|
2304
|
+
{
|
|
2305
|
+
country_label: "Bahamas",
|
|
2306
|
+
code: "BS",
|
|
2307
|
+
unicode: "🇧🇸",
|
|
2308
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BS.svg",
|
|
2309
|
+
label: "+1242"
|
|
2310
|
+
},
|
|
2311
|
+
{
|
|
2312
|
+
country_label: "Bhutan",
|
|
2313
|
+
code: "BT",
|
|
2314
|
+
unicode: "🇧🇹",
|
|
2315
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BT.svg",
|
|
2316
|
+
label: "+975"
|
|
2317
|
+
},
|
|
2318
|
+
{
|
|
2319
|
+
country_label: "Botswana",
|
|
2320
|
+
code: "BW",
|
|
2321
|
+
unicode: "🇧🇼",
|
|
2322
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BW.svg",
|
|
2323
|
+
label: "+267"
|
|
2324
|
+
},
|
|
2325
|
+
{
|
|
2326
|
+
country_label: "Belarus",
|
|
2327
|
+
code: "BY",
|
|
2328
|
+
unicode: "🇧🇾",
|
|
2329
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BY.svg",
|
|
2330
|
+
label: "+375"
|
|
2331
|
+
},
|
|
2332
|
+
{
|
|
2333
|
+
country_label: "Belize",
|
|
2334
|
+
code: "BZ",
|
|
2335
|
+
unicode: "🇧🇿",
|
|
2336
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BZ.svg",
|
|
2337
|
+
label: "+501"
|
|
2338
|
+
},
|
|
2339
|
+
{
|
|
2340
|
+
country_label: "Canada",
|
|
2341
|
+
code: "CA",
|
|
2342
|
+
unicode: "🇨🇦",
|
|
2343
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CA.svg",
|
|
2344
|
+
label: "+1"
|
|
2345
|
+
},
|
|
2346
|
+
{
|
|
2347
|
+
country_label: "Cocos (Keeling) Islands",
|
|
2348
|
+
code: "CC",
|
|
2349
|
+
unicode: "🇨🇨",
|
|
2350
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CC.svg",
|
|
2351
|
+
label: "+61"
|
|
2352
|
+
},
|
|
2353
|
+
{
|
|
2354
|
+
country_label: "Congo - Kinshasa",
|
|
2355
|
+
code: "CD",
|
|
2356
|
+
unicode: "🇨🇩",
|
|
2357
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CD.svg",
|
|
2358
|
+
label: "+243"
|
|
2359
|
+
},
|
|
2360
|
+
{
|
|
2361
|
+
country_label: "Central African Republic",
|
|
2362
|
+
code: "CF",
|
|
2363
|
+
unicode: "🇨🇫",
|
|
2364
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CF.svg",
|
|
2365
|
+
label: "+236"
|
|
2366
|
+
},
|
|
2367
|
+
{
|
|
2368
|
+
country_label: "Congo - Brazzaville",
|
|
2369
|
+
code: "CG",
|
|
2370
|
+
unicode: "🇨🇬",
|
|
2371
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CG.svg",
|
|
2372
|
+
label: "+242"
|
|
2373
|
+
},
|
|
2374
|
+
{
|
|
2375
|
+
country_label: "Switzerland",
|
|
2376
|
+
code: "CH",
|
|
2377
|
+
unicode: "🇨🇭",
|
|
2378
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CH.svg",
|
|
2379
|
+
label: "+41"
|
|
2380
|
+
},
|
|
2381
|
+
{
|
|
2382
|
+
country_label: "C\xf4te d’Ivoire",
|
|
2383
|
+
code: "CI",
|
|
2384
|
+
unicode: "🇨🇮",
|
|
2385
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CI.svg",
|
|
2386
|
+
label: "+225"
|
|
2387
|
+
},
|
|
2388
|
+
{
|
|
2389
|
+
country_label: "Cook Islands",
|
|
2390
|
+
code: "CK",
|
|
2391
|
+
unicode: "🇨🇰",
|
|
2392
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CK.svg",
|
|
2393
|
+
label: "+682"
|
|
2394
|
+
},
|
|
2395
|
+
{
|
|
2396
|
+
country_label: "Chile",
|
|
2397
|
+
code: "CL",
|
|
2398
|
+
unicode: "🇨🇱",
|
|
2399
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CL.svg",
|
|
2400
|
+
label: "+56"
|
|
2401
|
+
},
|
|
2402
|
+
{
|
|
2403
|
+
country_label: "Cameroon",
|
|
2404
|
+
code: "CM",
|
|
2405
|
+
unicode: "🇨🇲",
|
|
2406
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CM.svg",
|
|
2407
|
+
label: "+237"
|
|
2408
|
+
},
|
|
2409
|
+
{
|
|
2410
|
+
country_label: "China",
|
|
2411
|
+
code: "CN",
|
|
2412
|
+
unicode: "🇨🇳",
|
|
2413
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CN.svg",
|
|
2414
|
+
label: "+86"
|
|
2415
|
+
},
|
|
2416
|
+
{
|
|
2417
|
+
country_label: "Colombia",
|
|
2418
|
+
code: "CO",
|
|
2419
|
+
unicode: "🇨🇴",
|
|
2420
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CO.svg",
|
|
2421
|
+
label: "+57"
|
|
2422
|
+
},
|
|
2423
|
+
{
|
|
2424
|
+
country_label: "Costa Rica",
|
|
2425
|
+
code: "CR",
|
|
2426
|
+
unicode: "🇨🇷",
|
|
2427
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CR.svg",
|
|
2428
|
+
label: "+506"
|
|
2429
|
+
},
|
|
2430
|
+
{
|
|
2431
|
+
country_label: "Cuba",
|
|
2432
|
+
code: "CU",
|
|
2433
|
+
unicode: "🇨🇺",
|
|
2434
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CU.svg",
|
|
2435
|
+
label: "+53"
|
|
2436
|
+
},
|
|
2437
|
+
{
|
|
2438
|
+
country_label: "Cape Verde",
|
|
2439
|
+
code: "CV",
|
|
2440
|
+
unicode: "🇨🇻",
|
|
2441
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CV.svg",
|
|
2442
|
+
label: "+238"
|
|
2443
|
+
},
|
|
2444
|
+
{
|
|
2445
|
+
country_label: "Christmas Island",
|
|
2446
|
+
code: "CX",
|
|
2447
|
+
unicode: "🇨🇽",
|
|
2448
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CX.svg",
|
|
2449
|
+
label: "+61"
|
|
2450
|
+
},
|
|
2451
|
+
{
|
|
2452
|
+
country_label: "Cyprus",
|
|
2453
|
+
code: "CY",
|
|
2454
|
+
unicode: "🇨🇾",
|
|
2455
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CY.svg",
|
|
2456
|
+
label: "+357"
|
|
2457
|
+
},
|
|
2458
|
+
{
|
|
2459
|
+
country_label: "Czechia",
|
|
2460
|
+
code: "CZ",
|
|
2461
|
+
unicode: "🇨🇿",
|
|
2462
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CZ.svg",
|
|
2463
|
+
label: "+420"
|
|
2464
|
+
},
|
|
2465
|
+
{
|
|
2466
|
+
country_label: "Germany",
|
|
2467
|
+
code: "DE",
|
|
2468
|
+
unicode: "🇩🇪",
|
|
2469
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/DE.svg",
|
|
2470
|
+
label: "+49"
|
|
2471
|
+
},
|
|
2472
|
+
{
|
|
2473
|
+
country_label: "Djibouti",
|
|
2474
|
+
code: "DJ",
|
|
2475
|
+
unicode: "🇩🇯",
|
|
2476
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/DJ.svg",
|
|
2477
|
+
label: "+253"
|
|
2478
|
+
},
|
|
2479
|
+
{
|
|
2480
|
+
country_label: "Denmark",
|
|
2481
|
+
code: "DK",
|
|
2482
|
+
unicode: "🇩🇰",
|
|
2483
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/DK.svg",
|
|
2484
|
+
label: "+45"
|
|
2485
|
+
},
|
|
2486
|
+
{
|
|
2487
|
+
country_label: "Dominica",
|
|
2488
|
+
code: "DM",
|
|
2489
|
+
unicode: "🇩🇲",
|
|
2490
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/DM.svg",
|
|
2491
|
+
label: "+1767"
|
|
2492
|
+
},
|
|
2493
|
+
{
|
|
2494
|
+
country_label: "Dominican Republic",
|
|
2495
|
+
code: "DO",
|
|
2496
|
+
unicode: "🇩🇴",
|
|
2497
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/DO.svg",
|
|
2498
|
+
label: "+1849"
|
|
2499
|
+
},
|
|
2500
|
+
{
|
|
2501
|
+
country_label: "Algeria",
|
|
2502
|
+
code: "DZ",
|
|
2503
|
+
unicode: "🇩🇿",
|
|
2504
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/DZ.svg",
|
|
2505
|
+
label: "+213"
|
|
2506
|
+
},
|
|
2507
|
+
{
|
|
2508
|
+
country_label: "Ecuador",
|
|
2509
|
+
code: "EC",
|
|
2510
|
+
unicode: "🇪🇨",
|
|
2511
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/EC.svg",
|
|
2512
|
+
label: "+593"
|
|
2513
|
+
},
|
|
2514
|
+
{
|
|
2515
|
+
country_label: "Estonia",
|
|
2516
|
+
code: "EE",
|
|
2517
|
+
unicode: "🇪🇪",
|
|
2518
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/EE.svg",
|
|
2519
|
+
label: "+372"
|
|
2520
|
+
},
|
|
2521
|
+
{
|
|
2522
|
+
country_label: "Egypt",
|
|
2523
|
+
code: "EG",
|
|
2524
|
+
unicode: "🇪🇬",
|
|
2525
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/EG.svg",
|
|
2526
|
+
label: "+20"
|
|
2527
|
+
},
|
|
2528
|
+
{
|
|
2529
|
+
country_label: "Eritrea",
|
|
2530
|
+
code: "ER",
|
|
2531
|
+
unicode: "🇪🇷",
|
|
2532
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/ER.svg",
|
|
2533
|
+
label: "+291"
|
|
2534
|
+
},
|
|
2535
|
+
{
|
|
2536
|
+
country_label: "Spain",
|
|
2537
|
+
code: "ES",
|
|
2538
|
+
unicode: "🇪🇸",
|
|
2539
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/ES.svg",
|
|
2540
|
+
label: "+34"
|
|
2541
|
+
},
|
|
2542
|
+
{
|
|
2543
|
+
country_label: "Ethiopia",
|
|
2544
|
+
code: "ET",
|
|
2545
|
+
unicode: "🇪🇹",
|
|
2546
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/ET.svg",
|
|
2547
|
+
label: "+251"
|
|
2548
|
+
},
|
|
2549
|
+
{
|
|
2550
|
+
country_label: "Finland",
|
|
2551
|
+
code: "FI",
|
|
2552
|
+
unicode: "🇫🇮",
|
|
2553
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/FI.svg",
|
|
2554
|
+
label: "+358"
|
|
2555
|
+
},
|
|
2556
|
+
{
|
|
2557
|
+
country_label: "Fiji",
|
|
2558
|
+
code: "FJ",
|
|
2559
|
+
unicode: "🇫🇯",
|
|
2560
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/FJ.svg",
|
|
2561
|
+
label: "+679"
|
|
2562
|
+
},
|
|
2563
|
+
{
|
|
2564
|
+
country_label: "Falkland Islands",
|
|
2565
|
+
code: "FK",
|
|
2566
|
+
unicode: "🇫🇰",
|
|
2567
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/FK.svg",
|
|
2568
|
+
label: "+500"
|
|
2569
|
+
},
|
|
2570
|
+
{
|
|
2571
|
+
country_label: "Micronesia",
|
|
2572
|
+
code: "FM",
|
|
2573
|
+
unicode: "🇫🇲",
|
|
2574
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/FM.svg",
|
|
2575
|
+
label: "+691"
|
|
2576
|
+
},
|
|
2577
|
+
{
|
|
2578
|
+
country_label: "Faroe Islands",
|
|
2579
|
+
code: "FO",
|
|
2580
|
+
unicode: "🇫🇴",
|
|
2581
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/FO.svg",
|
|
2582
|
+
label: "+298"
|
|
2583
|
+
},
|
|
2584
|
+
{
|
|
2585
|
+
country_label: "France",
|
|
2586
|
+
code: "FR",
|
|
2587
|
+
unicode: "🇫🇷",
|
|
2588
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/FR.svg",
|
|
2589
|
+
label: "+33"
|
|
2590
|
+
},
|
|
2591
|
+
{
|
|
2592
|
+
country_label: "Gabon",
|
|
2593
|
+
code: "GA",
|
|
2594
|
+
unicode: "🇬🇦",
|
|
2595
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GA.svg",
|
|
2596
|
+
label: "+241"
|
|
2597
|
+
},
|
|
2598
|
+
{
|
|
2599
|
+
country_label: "United Kingdom",
|
|
2600
|
+
code: "GB",
|
|
2601
|
+
unicode: "🇬🇧",
|
|
2602
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GB.svg",
|
|
2603
|
+
label: "+44"
|
|
2604
|
+
},
|
|
2605
|
+
{
|
|
2606
|
+
country_label: "Grenada",
|
|
2607
|
+
code: "GD",
|
|
2608
|
+
unicode: "🇬🇩",
|
|
2609
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GD.svg",
|
|
2610
|
+
label: "+1473"
|
|
2611
|
+
},
|
|
2612
|
+
{
|
|
2613
|
+
country_label: "Georgia",
|
|
2614
|
+
code: "GE",
|
|
2615
|
+
unicode: "🇬🇪",
|
|
2616
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GE.svg",
|
|
2617
|
+
label: "+995"
|
|
2618
|
+
},
|
|
2619
|
+
{
|
|
2620
|
+
country_label: "French Guiana",
|
|
2621
|
+
code: "GF",
|
|
2622
|
+
unicode: "🇬🇫",
|
|
2623
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GF.svg",
|
|
2624
|
+
label: "+594"
|
|
2625
|
+
},
|
|
2626
|
+
{
|
|
2627
|
+
country_label: "Guernsey",
|
|
2628
|
+
code: "GG",
|
|
2629
|
+
unicode: "🇬🇬",
|
|
2630
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GG.svg",
|
|
2631
|
+
label: "+44"
|
|
2632
|
+
},
|
|
2633
|
+
{
|
|
2634
|
+
country_label: "Ghana",
|
|
2635
|
+
code: "GH",
|
|
2636
|
+
unicode: "🇬🇭",
|
|
2637
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GH.svg",
|
|
2638
|
+
label: "+233"
|
|
2639
|
+
},
|
|
2640
|
+
{
|
|
2641
|
+
country_label: "Gibraltar",
|
|
2642
|
+
code: "GI",
|
|
2643
|
+
unicode: "🇬🇮",
|
|
2644
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GI.svg",
|
|
2645
|
+
label: "+350"
|
|
2646
|
+
},
|
|
2647
|
+
{
|
|
2648
|
+
country_label: "Greenland",
|
|
2649
|
+
code: "GL",
|
|
2650
|
+
unicode: "🇬🇱",
|
|
2651
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GL.svg",
|
|
2652
|
+
label: "+299"
|
|
2653
|
+
},
|
|
2654
|
+
{
|
|
2655
|
+
country_label: "Gambia",
|
|
2656
|
+
code: "GM",
|
|
2657
|
+
unicode: "🇬🇲",
|
|
2658
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GM.svg",
|
|
2659
|
+
label: "+220"
|
|
2660
|
+
},
|
|
2661
|
+
{
|
|
2662
|
+
country_label: "Guinea",
|
|
2663
|
+
code: "GN",
|
|
2664
|
+
unicode: "🇬🇳",
|
|
2665
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GN.svg",
|
|
2666
|
+
label: "+224"
|
|
2667
|
+
},
|
|
2668
|
+
{
|
|
2669
|
+
country_label: "Guadeloupe",
|
|
2670
|
+
code: "GP",
|
|
2671
|
+
unicode: "🇬🇵",
|
|
2672
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GP.svg",
|
|
2673
|
+
label: "+590"
|
|
2674
|
+
},
|
|
2675
|
+
{
|
|
2676
|
+
country_label: "Equatorial Guinea",
|
|
2677
|
+
code: "GQ",
|
|
2678
|
+
unicode: "🇬🇶",
|
|
2679
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GQ.svg",
|
|
2680
|
+
label: "+240"
|
|
2681
|
+
},
|
|
2682
|
+
{
|
|
2683
|
+
country_label: "Greece",
|
|
2684
|
+
code: "GR",
|
|
2685
|
+
unicode: "🇬🇷",
|
|
2686
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GR.svg",
|
|
2687
|
+
label: "+30"
|
|
2688
|
+
},
|
|
2689
|
+
{
|
|
2690
|
+
country_label: "South Georgia & South Sandwich Islands",
|
|
2691
|
+
code: "GS",
|
|
2692
|
+
unicode: "🇬🇸",
|
|
2693
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GS.svg",
|
|
2694
|
+
label: "+500"
|
|
2695
|
+
},
|
|
2696
|
+
{
|
|
2697
|
+
country_label: "Guatemala",
|
|
2698
|
+
code: "GT",
|
|
2699
|
+
unicode: "🇬🇹",
|
|
2700
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GT.svg",
|
|
2701
|
+
label: "+502"
|
|
2702
|
+
},
|
|
2703
|
+
{
|
|
2704
|
+
country_label: "Guam",
|
|
2705
|
+
code: "GU",
|
|
2706
|
+
unicode: "🇬🇺",
|
|
2707
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GU.svg",
|
|
2708
|
+
label: "+1671"
|
|
2709
|
+
},
|
|
2710
|
+
{
|
|
2711
|
+
country_label: "Guinea-Bissau",
|
|
2712
|
+
code: "GW",
|
|
2713
|
+
unicode: "🇬🇼",
|
|
2714
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GW.svg",
|
|
2715
|
+
label: "+245"
|
|
2716
|
+
},
|
|
2717
|
+
{
|
|
2718
|
+
country_label: "Guyana",
|
|
2719
|
+
code: "GY",
|
|
2720
|
+
unicode: "🇬🇾",
|
|
2721
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GY.svg",
|
|
2722
|
+
label: "+595"
|
|
2723
|
+
},
|
|
2724
|
+
{
|
|
2725
|
+
country_label: "Hong Kong SAR China",
|
|
2726
|
+
code: "HK",
|
|
2727
|
+
unicode: "🇭🇰",
|
|
2728
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/HK.svg",
|
|
2729
|
+
label: "+852"
|
|
2730
|
+
},
|
|
2731
|
+
{
|
|
2732
|
+
country_label: "Honduras",
|
|
2733
|
+
code: "HN",
|
|
2734
|
+
unicode: "🇭🇳",
|
|
2735
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/HN.svg",
|
|
2736
|
+
label: "+504"
|
|
2737
|
+
},
|
|
2738
|
+
{
|
|
2739
|
+
country_label: "Croatia",
|
|
2740
|
+
code: "HR",
|
|
2741
|
+
unicode: "🇭🇷",
|
|
2742
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/HR.svg",
|
|
2743
|
+
label: "+385"
|
|
2744
|
+
},
|
|
2745
|
+
{
|
|
2746
|
+
country_label: "Haiti",
|
|
2747
|
+
code: "HT",
|
|
2748
|
+
unicode: "🇭🇹",
|
|
2749
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/HT.svg",
|
|
2750
|
+
label: "+509"
|
|
2751
|
+
},
|
|
2752
|
+
{
|
|
2753
|
+
country_label: "Hungary",
|
|
2754
|
+
code: "HU",
|
|
2755
|
+
unicode: "🇭🇺",
|
|
2756
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/HU.svg",
|
|
2757
|
+
label: "+36"
|
|
2758
|
+
},
|
|
2759
|
+
{
|
|
2760
|
+
country_label: "Indonesia",
|
|
2761
|
+
code: "ID",
|
|
2762
|
+
unicode: "🇮🇩",
|
|
2763
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/ID.svg",
|
|
2764
|
+
label: "+62"
|
|
2765
|
+
},
|
|
2766
|
+
{
|
|
2767
|
+
country_label: "Ireland",
|
|
2768
|
+
code: "IE",
|
|
2769
|
+
unicode: "🇮🇪",
|
|
2770
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/IE.svg",
|
|
2771
|
+
label: "+353"
|
|
2772
|
+
},
|
|
2773
|
+
{
|
|
2774
|
+
country_label: "Israel",
|
|
2775
|
+
code: "IL",
|
|
2776
|
+
unicode: "🇮🇱",
|
|
2777
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/IL.svg",
|
|
2778
|
+
label: "+972"
|
|
2779
|
+
},
|
|
2780
|
+
{
|
|
2781
|
+
country_label: "Isle of Man",
|
|
2782
|
+
code: "IM",
|
|
2783
|
+
unicode: "🇮🇲",
|
|
2784
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/IM.svg",
|
|
2785
|
+
label: "+44"
|
|
2786
|
+
},
|
|
2787
|
+
{
|
|
2788
|
+
country_label: "India",
|
|
2789
|
+
code: "IN",
|
|
2790
|
+
unicode: "🇮🇳",
|
|
2791
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/IN.svg",
|
|
2792
|
+
label: "+91"
|
|
2793
|
+
},
|
|
2794
|
+
{
|
|
2795
|
+
country_label: "British Indian Ocean Territory",
|
|
2796
|
+
code: "IO",
|
|
2797
|
+
unicode: "🇮🇴",
|
|
2798
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/IO.svg",
|
|
2799
|
+
label: "+246"
|
|
2800
|
+
},
|
|
2801
|
+
{
|
|
2802
|
+
country_label: "Iraq",
|
|
2803
|
+
code: "IQ",
|
|
2804
|
+
unicode: "🇮🇶",
|
|
2805
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/IQ.svg",
|
|
2806
|
+
label: "+964"
|
|
2807
|
+
},
|
|
2808
|
+
{
|
|
2809
|
+
country_label: "Iran",
|
|
2810
|
+
code: "IR",
|
|
2811
|
+
unicode: "🇮🇷",
|
|
2812
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/IR.svg",
|
|
2813
|
+
label: "+98"
|
|
2814
|
+
},
|
|
2815
|
+
{
|
|
2816
|
+
country_label: "Iceland",
|
|
2817
|
+
code: "IS",
|
|
2818
|
+
unicode: "🇮🇸",
|
|
2819
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/IS.svg",
|
|
2820
|
+
label: "+354"
|
|
2821
|
+
},
|
|
2822
|
+
{
|
|
2823
|
+
country_label: "Italy",
|
|
2824
|
+
code: "IT",
|
|
2825
|
+
unicode: "🇮🇹",
|
|
2826
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/IT.svg",
|
|
2827
|
+
label: "+39"
|
|
2828
|
+
},
|
|
2829
|
+
{
|
|
2830
|
+
country_label: "Jersey",
|
|
2831
|
+
code: "JE",
|
|
2832
|
+
unicode: "🇯🇪",
|
|
2833
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/JE.svg",
|
|
2834
|
+
label: "+44"
|
|
2835
|
+
},
|
|
2836
|
+
{
|
|
2837
|
+
country_label: "Jamaica",
|
|
2838
|
+
code: "JM",
|
|
2839
|
+
unicode: "🇯🇲",
|
|
2840
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/JM.svg",
|
|
2841
|
+
label: "+1876"
|
|
2842
|
+
},
|
|
2843
|
+
{
|
|
2844
|
+
country_label: "Jordan",
|
|
2845
|
+
code: "JO",
|
|
2846
|
+
unicode: "🇯🇴",
|
|
2847
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/JO.svg",
|
|
2848
|
+
label: "+962"
|
|
2849
|
+
},
|
|
2850
|
+
{
|
|
2851
|
+
country_label: "Japan",
|
|
2852
|
+
code: "JP",
|
|
2853
|
+
unicode: "🇯🇵",
|
|
2854
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/JP.svg",
|
|
2855
|
+
label: "+81"
|
|
2856
|
+
},
|
|
2857
|
+
{
|
|
2858
|
+
country_label: "Kenya",
|
|
2859
|
+
code: "KE",
|
|
2860
|
+
unicode: "🇰🇪",
|
|
2861
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/KE.svg",
|
|
2862
|
+
label: "+254"
|
|
2863
|
+
},
|
|
2864
|
+
{
|
|
2865
|
+
country_label: "Kyrgyzstan",
|
|
2866
|
+
code: "KG",
|
|
2867
|
+
unicode: "🇰🇬",
|
|
2868
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/KG.svg",
|
|
2869
|
+
label: "+996"
|
|
2870
|
+
},
|
|
2871
|
+
{
|
|
2872
|
+
country_label: "Cambodia",
|
|
2873
|
+
code: "KH",
|
|
2874
|
+
unicode: "🇰🇭",
|
|
2875
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/KH.svg",
|
|
2876
|
+
label: "+855"
|
|
2877
|
+
},
|
|
2878
|
+
{
|
|
2879
|
+
country_label: "Kiribati",
|
|
2880
|
+
code: "KI",
|
|
2881
|
+
unicode: "🇰🇮",
|
|
2882
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/KI.svg",
|
|
2883
|
+
label: "+686"
|
|
2884
|
+
},
|
|
2885
|
+
{
|
|
2886
|
+
country_label: "Comoros",
|
|
2887
|
+
code: "KM",
|
|
2888
|
+
unicode: "🇰🇲",
|
|
2889
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/KM.svg",
|
|
2890
|
+
label: "+269"
|
|
2891
|
+
},
|
|
2892
|
+
{
|
|
2893
|
+
country_label: "St. Kitts & Nevis",
|
|
2894
|
+
code: "KN",
|
|
2895
|
+
unicode: "🇰🇳",
|
|
2896
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/KN.svg",
|
|
2897
|
+
label: "+1869"
|
|
2898
|
+
},
|
|
2899
|
+
{
|
|
2900
|
+
country_label: "North Korea",
|
|
2901
|
+
code: "KP",
|
|
2902
|
+
unicode: "🇰🇵",
|
|
2903
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/KP.svg",
|
|
2904
|
+
label: "+850"
|
|
2905
|
+
},
|
|
2906
|
+
{
|
|
2907
|
+
country_label: "South Korea",
|
|
2908
|
+
code: "KR",
|
|
2909
|
+
unicode: "🇰🇷",
|
|
2910
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/KR.svg",
|
|
2911
|
+
label: "+82"
|
|
2912
|
+
},
|
|
2913
|
+
{
|
|
2914
|
+
country_label: "Cayman Islands",
|
|
2915
|
+
code: "KY",
|
|
2916
|
+
unicode: "🇰🇾",
|
|
2917
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/KY.svg",
|
|
2918
|
+
label: "+ 345"
|
|
2919
|
+
},
|
|
2920
|
+
{
|
|
2921
|
+
country_label: "Kazakhstan",
|
|
2922
|
+
code: "KZ",
|
|
2923
|
+
unicode: "🇰🇿",
|
|
2924
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/KZ.svg",
|
|
2925
|
+
label: "+77"
|
|
2926
|
+
},
|
|
2927
|
+
{
|
|
2928
|
+
country_label: "Laos",
|
|
2929
|
+
code: "LA",
|
|
2930
|
+
unicode: "🇱🇦",
|
|
2931
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/LA.svg",
|
|
2932
|
+
label: "+856"
|
|
2933
|
+
},
|
|
2934
|
+
{
|
|
2935
|
+
country_label: "Lebanon",
|
|
2936
|
+
code: "LB",
|
|
2937
|
+
unicode: "🇱🇧",
|
|
2938
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/LB.svg",
|
|
2939
|
+
label: "+961"
|
|
2940
|
+
},
|
|
2941
|
+
{
|
|
2942
|
+
country_label: "St. Lucia",
|
|
2943
|
+
code: "LC",
|
|
2944
|
+
unicode: "🇱🇨",
|
|
2945
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/LC.svg",
|
|
2946
|
+
label: "+1758"
|
|
2947
|
+
},
|
|
2948
|
+
{
|
|
2949
|
+
country_label: "Liechtenstein",
|
|
2950
|
+
code: "LI",
|
|
2951
|
+
unicode: "🇱🇮",
|
|
2952
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/LI.svg",
|
|
2953
|
+
label: "+423"
|
|
2954
|
+
},
|
|
2955
|
+
{
|
|
2956
|
+
country_label: "Sri Lanka",
|
|
2957
|
+
code: "LK",
|
|
2958
|
+
unicode: "🇱🇰",
|
|
2959
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/LK.svg",
|
|
2960
|
+
label: "+94"
|
|
2961
|
+
},
|
|
2962
|
+
{
|
|
2963
|
+
country_label: "Liberia",
|
|
2964
|
+
code: "LR",
|
|
2965
|
+
unicode: "🇱🇷",
|
|
2966
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/LR.svg",
|
|
2967
|
+
label: "+231"
|
|
2968
|
+
},
|
|
2969
|
+
{
|
|
2970
|
+
country_label: "Lesotho",
|
|
2971
|
+
code: "LS",
|
|
2972
|
+
unicode: "🇱🇸",
|
|
2973
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/LS.svg",
|
|
2974
|
+
label: "+266"
|
|
2975
|
+
},
|
|
2976
|
+
{
|
|
2977
|
+
country_label: "Lithuania",
|
|
2978
|
+
code: "LT",
|
|
2979
|
+
unicode: "🇱🇹",
|
|
2980
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/LT.svg",
|
|
2981
|
+
label: "+370"
|
|
2982
|
+
},
|
|
2983
|
+
{
|
|
2984
|
+
country_label: "Luxembourg",
|
|
2985
|
+
code: "LU",
|
|
2986
|
+
unicode: "🇱🇺",
|
|
2987
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/LU.svg",
|
|
2988
|
+
label: "+352"
|
|
2989
|
+
},
|
|
2990
|
+
{
|
|
2991
|
+
country_label: "Latvia",
|
|
2992
|
+
code: "LV",
|
|
2993
|
+
unicode: "🇱🇻",
|
|
2994
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/LV.svg",
|
|
2995
|
+
label: "+371"
|
|
2996
|
+
},
|
|
2997
|
+
{
|
|
2998
|
+
country_label: "Libya",
|
|
2999
|
+
code: "LY",
|
|
3000
|
+
unicode: "🇱🇾",
|
|
3001
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/LY.svg",
|
|
3002
|
+
label: "+218"
|
|
3003
|
+
},
|
|
3004
|
+
{
|
|
3005
|
+
country_label: "Morocco",
|
|
3006
|
+
code: "MA",
|
|
3007
|
+
unicode: "🇲🇦",
|
|
3008
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MA.svg",
|
|
3009
|
+
label: "+212"
|
|
3010
|
+
},
|
|
3011
|
+
{
|
|
3012
|
+
country_label: "Monaco",
|
|
3013
|
+
code: "MC",
|
|
3014
|
+
unicode: "🇲🇨",
|
|
3015
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MC.svg",
|
|
3016
|
+
label: "+377"
|
|
3017
|
+
},
|
|
3018
|
+
{
|
|
3019
|
+
country_label: "Moldova",
|
|
3020
|
+
code: "MD",
|
|
3021
|
+
unicode: "🇲🇩",
|
|
3022
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MD.svg",
|
|
3023
|
+
label: "+373"
|
|
3024
|
+
},
|
|
3025
|
+
{
|
|
3026
|
+
country_label: "Montenegro",
|
|
3027
|
+
code: "ME",
|
|
3028
|
+
unicode: "🇲🇪",
|
|
3029
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/ME.svg",
|
|
3030
|
+
label: "+382"
|
|
3031
|
+
},
|
|
3032
|
+
{
|
|
3033
|
+
country_label: "St. Martin",
|
|
3034
|
+
code: "MF",
|
|
3035
|
+
unicode: "🇲🇫",
|
|
3036
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MF.svg",
|
|
3037
|
+
label: "+590"
|
|
3038
|
+
},
|
|
3039
|
+
{
|
|
3040
|
+
country_label: "Madagascar",
|
|
3041
|
+
code: "MG",
|
|
3042
|
+
unicode: "🇲🇬",
|
|
3043
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MG.svg",
|
|
3044
|
+
label: "+261"
|
|
3045
|
+
},
|
|
3046
|
+
{
|
|
3047
|
+
country_label: "Marshall Islands",
|
|
3048
|
+
code: "MH",
|
|
3049
|
+
unicode: "🇲🇭",
|
|
3050
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MH.svg",
|
|
3051
|
+
label: "+692"
|
|
3052
|
+
},
|
|
3053
|
+
{
|
|
3054
|
+
country_label: "North Macedonia",
|
|
3055
|
+
code: "MK",
|
|
3056
|
+
unicode: "🇲🇰",
|
|
3057
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MK.svg",
|
|
3058
|
+
label: "+389"
|
|
3059
|
+
},
|
|
3060
|
+
{
|
|
3061
|
+
country_label: "Mali",
|
|
3062
|
+
code: "ML",
|
|
3063
|
+
unicode: "🇲🇱",
|
|
3064
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/ML.svg",
|
|
3065
|
+
label: "+223"
|
|
3066
|
+
},
|
|
3067
|
+
{
|
|
3068
|
+
country_label: "Myanmar (Burma)",
|
|
3069
|
+
code: "MM",
|
|
3070
|
+
unicode: "🇲🇲",
|
|
3071
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MM.svg",
|
|
3072
|
+
label: "+95"
|
|
3073
|
+
},
|
|
3074
|
+
{
|
|
3075
|
+
country_label: "Mongolia",
|
|
3076
|
+
code: "MN",
|
|
3077
|
+
unicode: "🇲🇳",
|
|
3078
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MN.svg",
|
|
3079
|
+
label: "+976"
|
|
3080
|
+
},
|
|
3081
|
+
{
|
|
3082
|
+
country_label: "Macao SAR China",
|
|
3083
|
+
code: "MO",
|
|
3084
|
+
unicode: "🇲🇴",
|
|
3085
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MO.svg",
|
|
3086
|
+
label: "+853"
|
|
3087
|
+
},
|
|
3088
|
+
{
|
|
3089
|
+
country_label: "Northern Mariana Islands",
|
|
3090
|
+
code: "MP",
|
|
3091
|
+
unicode: "🇲🇵",
|
|
3092
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MP.svg",
|
|
3093
|
+
label: "+1670"
|
|
3094
|
+
},
|
|
3095
|
+
{
|
|
3096
|
+
country_label: "Martinique",
|
|
3097
|
+
code: "MQ",
|
|
3098
|
+
unicode: "🇲🇶",
|
|
3099
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MQ.svg",
|
|
3100
|
+
label: "+596"
|
|
3101
|
+
},
|
|
3102
|
+
{
|
|
3103
|
+
country_label: "Mauritania",
|
|
3104
|
+
code: "MR",
|
|
3105
|
+
unicode: "🇲🇷",
|
|
3106
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MR.svg",
|
|
3107
|
+
label: "+222"
|
|
3108
|
+
},
|
|
3109
|
+
{
|
|
3110
|
+
country_label: "Montserrat",
|
|
3111
|
+
code: "MS",
|
|
3112
|
+
unicode: "🇲🇸",
|
|
3113
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MS.svg",
|
|
3114
|
+
label: "+1664"
|
|
3115
|
+
},
|
|
3116
|
+
{
|
|
3117
|
+
country_label: "Malta",
|
|
3118
|
+
code: "MT",
|
|
3119
|
+
unicode: "🇲🇹",
|
|
3120
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MT.svg",
|
|
3121
|
+
label: "+356"
|
|
3122
|
+
},
|
|
3123
|
+
{
|
|
3124
|
+
country_label: "Mauritius",
|
|
3125
|
+
code: "MU",
|
|
3126
|
+
unicode: "🇲🇺",
|
|
3127
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MU.svg",
|
|
3128
|
+
label: "+230"
|
|
3129
|
+
},
|
|
3130
|
+
{
|
|
3131
|
+
country_label: "Maldives",
|
|
3132
|
+
code: "MV",
|
|
3133
|
+
unicode: "🇲🇻",
|
|
3134
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MV.svg",
|
|
3135
|
+
label: "+960"
|
|
3136
|
+
},
|
|
3137
|
+
{
|
|
3138
|
+
country_label: "Malawi",
|
|
3139
|
+
code: "MW",
|
|
3140
|
+
unicode: "🇲🇼",
|
|
3141
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MW.svg",
|
|
3142
|
+
label: "+265"
|
|
3143
|
+
},
|
|
3144
|
+
{
|
|
3145
|
+
country_label: "Mexico",
|
|
3146
|
+
code: "MX",
|
|
3147
|
+
unicode: "🇲🇽",
|
|
3148
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MX.svg",
|
|
3149
|
+
label: "+52"
|
|
3150
|
+
},
|
|
3151
|
+
{
|
|
3152
|
+
country_label: "Malaysia",
|
|
3153
|
+
code: "MY",
|
|
3154
|
+
unicode: "🇲🇾",
|
|
3155
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MY.svg",
|
|
3156
|
+
label: "+60"
|
|
3157
|
+
},
|
|
3158
|
+
{
|
|
3159
|
+
country_label: "Mozambique",
|
|
3160
|
+
code: "MZ",
|
|
3161
|
+
unicode: "🇲🇿",
|
|
3162
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MZ.svg",
|
|
3163
|
+
label: "+258"
|
|
3164
|
+
},
|
|
3165
|
+
{
|
|
3166
|
+
country_label: "Namibia",
|
|
3167
|
+
code: "NA",
|
|
3168
|
+
unicode: "🇳🇦",
|
|
3169
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/NA.svg",
|
|
3170
|
+
label: "+264"
|
|
3171
|
+
},
|
|
3172
|
+
{
|
|
3173
|
+
country_label: "New Caledonia",
|
|
3174
|
+
code: "NC",
|
|
3175
|
+
unicode: "🇳🇨",
|
|
3176
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/NC.svg",
|
|
3177
|
+
label: "+687"
|
|
3178
|
+
},
|
|
3179
|
+
{
|
|
3180
|
+
country_label: "Niger",
|
|
3181
|
+
code: "NE",
|
|
3182
|
+
unicode: "🇳🇪",
|
|
3183
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/NE.svg",
|
|
3184
|
+
label: "+227"
|
|
3185
|
+
},
|
|
3186
|
+
{
|
|
3187
|
+
country_label: "Norfolk Island",
|
|
3188
|
+
code: "NF",
|
|
3189
|
+
unicode: "🇳🇫",
|
|
3190
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/NF.svg",
|
|
3191
|
+
label: "+672"
|
|
3192
|
+
},
|
|
3193
|
+
{
|
|
3194
|
+
country_label: "Nigeria",
|
|
3195
|
+
code: "NG",
|
|
3196
|
+
unicode: "🇳🇬",
|
|
3197
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/NG.svg",
|
|
3198
|
+
label: "+234"
|
|
3199
|
+
},
|
|
3200
|
+
{
|
|
3201
|
+
country_label: "Nicaragua",
|
|
3202
|
+
code: "NI",
|
|
3203
|
+
unicode: "🇳🇮",
|
|
3204
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/NI.svg",
|
|
3205
|
+
label: "+505"
|
|
3206
|
+
},
|
|
3207
|
+
{
|
|
3208
|
+
country_label: "Netherlands",
|
|
3209
|
+
code: "NL",
|
|
3210
|
+
unicode: "🇳🇱",
|
|
3211
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/NL.svg",
|
|
3212
|
+
label: "+31"
|
|
3213
|
+
},
|
|
3214
|
+
{
|
|
3215
|
+
country_label: "Norway",
|
|
3216
|
+
code: "NO",
|
|
3217
|
+
unicode: "🇳🇴",
|
|
3218
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/NO.svg",
|
|
3219
|
+
label: "+47"
|
|
3220
|
+
},
|
|
3221
|
+
{
|
|
3222
|
+
country_label: "Nepal",
|
|
3223
|
+
code: "NP",
|
|
3224
|
+
unicode: "🇳🇵",
|
|
3225
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/NP.svg",
|
|
3226
|
+
label: "+977"
|
|
3227
|
+
},
|
|
3228
|
+
{
|
|
3229
|
+
country_label: "Nauru",
|
|
3230
|
+
code: "NR",
|
|
3231
|
+
unicode: "🇳🇷",
|
|
3232
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/NR.svg",
|
|
3233
|
+
label: "+674"
|
|
3234
|
+
},
|
|
3235
|
+
{
|
|
3236
|
+
country_label: "Niue",
|
|
3237
|
+
code: "NU",
|
|
3238
|
+
unicode: "🇳🇺",
|
|
3239
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/NU.svg",
|
|
3240
|
+
label: "+683"
|
|
3241
|
+
},
|
|
3242
|
+
{
|
|
3243
|
+
country_label: "New Zealand",
|
|
3244
|
+
code: "NZ",
|
|
3245
|
+
unicode: "🇳🇿",
|
|
3246
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/NZ.svg",
|
|
3247
|
+
label: "+64"
|
|
3248
|
+
},
|
|
3249
|
+
{
|
|
3250
|
+
country_label: "Panama",
|
|
3251
|
+
code: "PA",
|
|
3252
|
+
unicode: "🇵🇦",
|
|
3253
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/PA.svg",
|
|
3254
|
+
label: "+507"
|
|
3255
|
+
},
|
|
3256
|
+
{
|
|
3257
|
+
country_label: "Peru",
|
|
3258
|
+
code: "PE",
|
|
3259
|
+
unicode: "🇵🇪",
|
|
3260
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/PE.svg",
|
|
3261
|
+
label: "+51"
|
|
3262
|
+
},
|
|
3263
|
+
{
|
|
3264
|
+
country_label: "French Polynesia",
|
|
3265
|
+
code: "PF",
|
|
3266
|
+
unicode: "🇵🇫",
|
|
3267
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/PF.svg",
|
|
3268
|
+
label: "+689"
|
|
3269
|
+
},
|
|
3270
|
+
{
|
|
3271
|
+
country_label: "Papua New Guinea",
|
|
3272
|
+
code: "PG",
|
|
3273
|
+
unicode: "🇵🇬",
|
|
3274
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/PG.svg",
|
|
3275
|
+
label: "+675"
|
|
3276
|
+
},
|
|
3277
|
+
{
|
|
3278
|
+
country_label: "Philippines",
|
|
3279
|
+
code: "PH",
|
|
3280
|
+
unicode: "🇵🇭",
|
|
3281
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/PH.svg",
|
|
3282
|
+
label: "+63"
|
|
3283
|
+
},
|
|
3284
|
+
{
|
|
3285
|
+
country_label: "Pakistan",
|
|
3286
|
+
code: "PK",
|
|
3287
|
+
unicode: "🇵🇰",
|
|
3288
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/PK.svg",
|
|
3289
|
+
label: "+92"
|
|
3290
|
+
},
|
|
3291
|
+
{
|
|
3292
|
+
country_label: "Poland",
|
|
3293
|
+
code: "PL",
|
|
3294
|
+
unicode: "🇵🇱",
|
|
3295
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/PL.svg",
|
|
3296
|
+
label: "+48"
|
|
3297
|
+
},
|
|
3298
|
+
{
|
|
3299
|
+
country_label: "St. Pierre & Miquelon",
|
|
3300
|
+
code: "PM",
|
|
3301
|
+
unicode: "🇵🇲",
|
|
3302
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/PM.svg",
|
|
3303
|
+
label: "+508"
|
|
3304
|
+
},
|
|
3305
|
+
{
|
|
3306
|
+
country_label: "Pitcairn Islands",
|
|
3307
|
+
code: "PN",
|
|
3308
|
+
unicode: "🇵🇳",
|
|
3309
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/PN.svg",
|
|
3310
|
+
label: "+872"
|
|
3311
|
+
},
|
|
3312
|
+
{
|
|
3313
|
+
country_label: "Puerto Rico",
|
|
3314
|
+
code: "PR",
|
|
3315
|
+
unicode: "🇵🇷",
|
|
3316
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/PR.svg",
|
|
3317
|
+
label: "+1939"
|
|
3318
|
+
},
|
|
3319
|
+
{
|
|
3320
|
+
country_label: "Palestinian Territories",
|
|
3321
|
+
code: "PS",
|
|
3322
|
+
unicode: "🇵🇸",
|
|
3323
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/PS.svg",
|
|
3324
|
+
label: "+970"
|
|
3325
|
+
},
|
|
3326
|
+
{
|
|
3327
|
+
country_label: "Portugal",
|
|
3328
|
+
code: "PT",
|
|
3329
|
+
unicode: "🇵🇹",
|
|
3330
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/PT.svg",
|
|
3331
|
+
label: "+351"
|
|
3332
|
+
},
|
|
3333
|
+
{
|
|
3334
|
+
country_label: "Palau",
|
|
3335
|
+
code: "PW",
|
|
3336
|
+
unicode: "🇵🇼",
|
|
3337
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/PW.svg",
|
|
3338
|
+
label: "+680"
|
|
3339
|
+
},
|
|
3340
|
+
{
|
|
3341
|
+
country_label: "Paraguay",
|
|
3342
|
+
code: "PY",
|
|
3343
|
+
unicode: "🇵🇾",
|
|
3344
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/PY.svg",
|
|
3345
|
+
label: "+595"
|
|
3346
|
+
},
|
|
3347
|
+
{
|
|
3348
|
+
country_label: "R\xe9union",
|
|
3349
|
+
code: "RE",
|
|
3350
|
+
unicode: "🇷🇪",
|
|
3351
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/RE.svg",
|
|
3352
|
+
label: "+262"
|
|
3353
|
+
},
|
|
3354
|
+
{
|
|
3355
|
+
country_label: "Romania",
|
|
3356
|
+
code: "RO",
|
|
3357
|
+
unicode: "🇷🇴",
|
|
3358
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/RO.svg",
|
|
3359
|
+
label: "+40"
|
|
3360
|
+
},
|
|
3361
|
+
{
|
|
3362
|
+
country_label: "Serbia",
|
|
3363
|
+
code: "RS",
|
|
3364
|
+
unicode: "🇷🇸",
|
|
3365
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/RS.svg",
|
|
3366
|
+
label: "+381"
|
|
3367
|
+
},
|
|
3368
|
+
{
|
|
3369
|
+
country_label: "Russia",
|
|
3370
|
+
code: "RU",
|
|
3371
|
+
unicode: "🇷🇺",
|
|
3372
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/RU.svg",
|
|
3373
|
+
label: "+7"
|
|
3374
|
+
},
|
|
3375
|
+
{
|
|
3376
|
+
country_label: "Rwanda",
|
|
3377
|
+
code: "RW",
|
|
3378
|
+
unicode: "🇷🇼",
|
|
3379
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/RW.svg",
|
|
3380
|
+
label: "+250"
|
|
3381
|
+
},
|
|
3382
|
+
{
|
|
3383
|
+
country_label: "Solomon Islands",
|
|
3384
|
+
code: "SB",
|
|
3385
|
+
unicode: "🇸🇧",
|
|
3386
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SB.svg",
|
|
3387
|
+
label: "+677"
|
|
3388
|
+
},
|
|
3389
|
+
{
|
|
3390
|
+
country_label: "Seychelles",
|
|
3391
|
+
code: "SC",
|
|
3392
|
+
unicode: "🇸🇨",
|
|
3393
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SC.svg",
|
|
3394
|
+
label: "+248"
|
|
3395
|
+
},
|
|
3396
|
+
{
|
|
3397
|
+
country_label: "Sudan",
|
|
3398
|
+
code: "SD",
|
|
3399
|
+
unicode: "🇸🇩",
|
|
3400
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SD.svg",
|
|
3401
|
+
label: "+249"
|
|
3402
|
+
},
|
|
3403
|
+
{
|
|
3404
|
+
country_label: "Sweden",
|
|
3405
|
+
code: "SE",
|
|
3406
|
+
unicode: "🇸🇪",
|
|
3407
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SE.svg",
|
|
3408
|
+
label: "+46"
|
|
3409
|
+
},
|
|
3410
|
+
{
|
|
3411
|
+
country_label: "Singapore",
|
|
3412
|
+
code: "SG",
|
|
3413
|
+
unicode: "🇸🇬",
|
|
3414
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SG.svg",
|
|
3415
|
+
label: "+65"
|
|
3416
|
+
},
|
|
3417
|
+
{
|
|
3418
|
+
country_label: "St. Helena",
|
|
3419
|
+
code: "SH",
|
|
3420
|
+
unicode: "🇸🇭",
|
|
3421
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SH.svg",
|
|
3422
|
+
label: "+290"
|
|
3423
|
+
},
|
|
3424
|
+
{
|
|
3425
|
+
country_label: "Slovenia",
|
|
3426
|
+
code: "SI",
|
|
3427
|
+
unicode: "🇸🇮",
|
|
3428
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SI.svg",
|
|
3429
|
+
label: "+386"
|
|
3430
|
+
},
|
|
3431
|
+
{
|
|
3432
|
+
country_label: "Svalbard & Jan Mayen",
|
|
3433
|
+
code: "SJ",
|
|
3434
|
+
unicode: "🇸🇯",
|
|
3435
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SJ.svg",
|
|
3436
|
+
label: "+47"
|
|
3437
|
+
},
|
|
3438
|
+
{
|
|
3439
|
+
country_label: "Slovakia",
|
|
3440
|
+
code: "SK",
|
|
3441
|
+
unicode: "🇸🇰",
|
|
3442
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SK.svg",
|
|
3443
|
+
label: "+421"
|
|
3444
|
+
},
|
|
3445
|
+
{
|
|
3446
|
+
country_label: "Sierra Leone",
|
|
3447
|
+
code: "SL",
|
|
3448
|
+
unicode: "🇸🇱",
|
|
3449
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SL.svg",
|
|
3450
|
+
label: "+232"
|
|
3451
|
+
},
|
|
3452
|
+
{
|
|
3453
|
+
country_label: "San Marino",
|
|
3454
|
+
code: "SM",
|
|
3455
|
+
unicode: "🇸🇲",
|
|
3456
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SM.svg",
|
|
3457
|
+
label: "+378"
|
|
3458
|
+
},
|
|
3459
|
+
{
|
|
3460
|
+
country_label: "Senegal",
|
|
3461
|
+
code: "SN",
|
|
3462
|
+
unicode: "🇸🇳",
|
|
3463
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SN.svg",
|
|
3464
|
+
label: "+221"
|
|
3465
|
+
},
|
|
3466
|
+
{
|
|
3467
|
+
country_label: "Somalia",
|
|
3468
|
+
code: "SO",
|
|
3469
|
+
unicode: "🇸🇴",
|
|
3470
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SO.svg",
|
|
3471
|
+
label: "+252"
|
|
3472
|
+
},
|
|
3473
|
+
{
|
|
3474
|
+
country_label: "Suriname",
|
|
3475
|
+
code: "SR",
|
|
3476
|
+
unicode: "🇸🇷",
|
|
3477
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SR.svg",
|
|
3478
|
+
label: "+597"
|
|
3479
|
+
},
|
|
3480
|
+
{
|
|
3481
|
+
country_label: "South Sudan",
|
|
3482
|
+
code: "SS",
|
|
3483
|
+
unicode: "🇸🇸",
|
|
3484
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SS.svg",
|
|
3485
|
+
label: "+211"
|
|
3486
|
+
},
|
|
3487
|
+
{
|
|
3488
|
+
country_label: "S\xe3o Tom\xe9 & Pr\xedncipe",
|
|
3489
|
+
code: "ST",
|
|
3490
|
+
unicode: "🇸🇹",
|
|
3491
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/ST.svg",
|
|
3492
|
+
label: "+239"
|
|
3493
|
+
},
|
|
3494
|
+
{
|
|
3495
|
+
country_label: "El Salvador",
|
|
3496
|
+
code: "SV",
|
|
3497
|
+
unicode: "🇸🇻",
|
|
3498
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SV.svg",
|
|
3499
|
+
label: "+503"
|
|
3500
|
+
},
|
|
3501
|
+
{
|
|
3502
|
+
country_label: "Syria",
|
|
3503
|
+
code: "SY",
|
|
3504
|
+
unicode: "🇸🇾",
|
|
3505
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SY.svg",
|
|
3506
|
+
label: "+963"
|
|
3507
|
+
},
|
|
3508
|
+
{
|
|
3509
|
+
country_label: "Eswatini",
|
|
3510
|
+
code: "SZ",
|
|
3511
|
+
unicode: "🇸🇿",
|
|
3512
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SZ.svg",
|
|
3513
|
+
label: "+268"
|
|
3514
|
+
},
|
|
3515
|
+
{
|
|
3516
|
+
country_label: "Turks & Caicos Islands",
|
|
3517
|
+
code: "TC",
|
|
3518
|
+
unicode: "🇹🇨",
|
|
3519
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TC.svg",
|
|
3520
|
+
label: "+1649"
|
|
3521
|
+
},
|
|
3522
|
+
{
|
|
3523
|
+
country_label: "Chad",
|
|
3524
|
+
code: "TD",
|
|
3525
|
+
unicode: "🇹🇩",
|
|
3526
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TD.svg",
|
|
3527
|
+
label: "+235"
|
|
3528
|
+
},
|
|
3529
|
+
{
|
|
3530
|
+
country_label: "Togo",
|
|
3531
|
+
code: "TG",
|
|
3532
|
+
unicode: "🇹🇬",
|
|
3533
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TG.svg",
|
|
3534
|
+
label: "+228"
|
|
3535
|
+
},
|
|
3536
|
+
{
|
|
3537
|
+
country_label: "Thailand",
|
|
3538
|
+
code: "TH",
|
|
3539
|
+
unicode: "🇹🇭",
|
|
3540
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TH.svg",
|
|
3541
|
+
label: "+66"
|
|
3542
|
+
},
|
|
3543
|
+
{
|
|
3544
|
+
country_label: "Tajikistan",
|
|
3545
|
+
code: "TJ",
|
|
3546
|
+
unicode: "🇹🇯",
|
|
3547
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TJ.svg",
|
|
3548
|
+
label: "+992"
|
|
3549
|
+
},
|
|
3550
|
+
{
|
|
3551
|
+
country_label: "Tokelau",
|
|
3552
|
+
code: "TK",
|
|
3553
|
+
unicode: "🇹🇰",
|
|
3554
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TK.svg",
|
|
3555
|
+
label: "+690"
|
|
3556
|
+
},
|
|
3557
|
+
{
|
|
3558
|
+
country_label: "Timor-Leste",
|
|
3559
|
+
code: "TL",
|
|
3560
|
+
unicode: "🇹🇱",
|
|
3561
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TL.svg",
|
|
3562
|
+
label: "+670"
|
|
3563
|
+
},
|
|
3564
|
+
{
|
|
3565
|
+
country_label: "Turkmenistan",
|
|
3566
|
+
code: "TM",
|
|
3567
|
+
unicode: "🇹🇲",
|
|
3568
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TM.svg",
|
|
3569
|
+
label: "+993"
|
|
3570
|
+
},
|
|
3571
|
+
{
|
|
3572
|
+
country_label: "Tunisia",
|
|
3573
|
+
code: "TN",
|
|
3574
|
+
unicode: "🇹🇳",
|
|
3575
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TN.svg",
|
|
3576
|
+
label: "+216"
|
|
3577
|
+
},
|
|
3578
|
+
{
|
|
3579
|
+
country_label: "Tonga",
|
|
3580
|
+
code: "TO",
|
|
3581
|
+
unicode: "🇹🇴",
|
|
3582
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TO.svg",
|
|
3583
|
+
label: "+676"
|
|
3584
|
+
},
|
|
3585
|
+
{
|
|
3586
|
+
country_label: "Turkey",
|
|
3587
|
+
code: "TR",
|
|
3588
|
+
unicode: "🇹🇷",
|
|
3589
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TR.svg",
|
|
3590
|
+
label: "+90"
|
|
3591
|
+
},
|
|
3592
|
+
{
|
|
3593
|
+
country_label: "Trinidad & Tobago",
|
|
3594
|
+
code: "TT",
|
|
3595
|
+
unicode: "🇹🇹",
|
|
3596
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TT.svg",
|
|
3597
|
+
label: "+1868"
|
|
3598
|
+
},
|
|
3599
|
+
{
|
|
3600
|
+
country_label: "Tuvalu",
|
|
3601
|
+
code: "TV",
|
|
3602
|
+
unicode: "🇹🇻",
|
|
3603
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TV.svg",
|
|
3604
|
+
label: "+688"
|
|
3605
|
+
},
|
|
3606
|
+
{
|
|
3607
|
+
country_label: "Taiwan",
|
|
3608
|
+
code: "TW",
|
|
3609
|
+
unicode: "🇹🇼",
|
|
3610
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TW.svg",
|
|
3611
|
+
label: "+886"
|
|
3612
|
+
},
|
|
3613
|
+
{
|
|
3614
|
+
country_label: "Tanzania",
|
|
3615
|
+
code: "TZ",
|
|
3616
|
+
unicode: "🇹🇿",
|
|
3617
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TZ.svg",
|
|
3618
|
+
label: "+255"
|
|
3619
|
+
},
|
|
3620
|
+
{
|
|
3621
|
+
country_label: "Ukraine",
|
|
3622
|
+
code: "UA",
|
|
3623
|
+
unicode: "🇺🇦",
|
|
3624
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/UA.svg",
|
|
3625
|
+
label: "+380"
|
|
3626
|
+
},
|
|
3627
|
+
{
|
|
3628
|
+
country_label: "Uganda",
|
|
3629
|
+
code: "UG",
|
|
3630
|
+
unicode: "🇺🇬",
|
|
3631
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/UG.svg",
|
|
3632
|
+
label: "+256"
|
|
3633
|
+
},
|
|
3634
|
+
{
|
|
3635
|
+
country_label: "United States",
|
|
3636
|
+
code: "US",
|
|
3637
|
+
unicode: "🇺🇸",
|
|
3638
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/US.svg",
|
|
3639
|
+
label: "+1"
|
|
3640
|
+
},
|
|
3641
|
+
{
|
|
3642
|
+
country_label: "Uruguay",
|
|
3643
|
+
code: "UY",
|
|
3644
|
+
unicode: "🇺🇾",
|
|
3645
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/UY.svg",
|
|
3646
|
+
label: "+598"
|
|
3647
|
+
},
|
|
3648
|
+
{
|
|
3649
|
+
country_label: "Uzbekistan",
|
|
3650
|
+
code: "UZ",
|
|
3651
|
+
unicode: "🇺🇿",
|
|
3652
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/UZ.svg",
|
|
3653
|
+
label: "+998"
|
|
3654
|
+
},
|
|
3655
|
+
{
|
|
3656
|
+
country_label: "Vatican City",
|
|
3657
|
+
code: "VA",
|
|
3658
|
+
unicode: "🇻🇦",
|
|
3659
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/VA.svg",
|
|
3660
|
+
label: "+379"
|
|
3661
|
+
},
|
|
3662
|
+
{
|
|
3663
|
+
country_label: "St. Vincent & Grenadines",
|
|
3664
|
+
code: "VC",
|
|
3665
|
+
unicode: "🇻🇨",
|
|
3666
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/VC.svg",
|
|
3667
|
+
label: "+1784"
|
|
3668
|
+
},
|
|
3669
|
+
{
|
|
3670
|
+
country_label: "Venezuela",
|
|
3671
|
+
code: "VE",
|
|
3672
|
+
unicode: "🇻🇪",
|
|
3673
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/VE.svg",
|
|
3674
|
+
label: "+58"
|
|
3675
|
+
},
|
|
3676
|
+
{
|
|
3677
|
+
country_label: "British Virgin Islands",
|
|
3678
|
+
code: "VG",
|
|
3679
|
+
unicode: "🇻🇬",
|
|
3680
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/VG.svg",
|
|
3681
|
+
label: "+1284"
|
|
3682
|
+
},
|
|
3683
|
+
{
|
|
3684
|
+
country_label: "U.S. Virgin Islands",
|
|
3685
|
+
code: "VI",
|
|
3686
|
+
unicode: "🇻🇮",
|
|
3687
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/VI.svg",
|
|
3688
|
+
label: "+1340"
|
|
3689
|
+
},
|
|
3690
|
+
{
|
|
3691
|
+
country_label: "Vietnam",
|
|
3692
|
+
code: "VN",
|
|
3693
|
+
unicode: "🇻🇳",
|
|
3694
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/VN.svg",
|
|
3695
|
+
label: "+84"
|
|
3696
|
+
},
|
|
3697
|
+
{
|
|
3698
|
+
country_label: "Vanuatu",
|
|
3699
|
+
code: "VU",
|
|
3700
|
+
unicode: "🇻🇺",
|
|
3701
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/VU.svg",
|
|
3702
|
+
label: "+678"
|
|
3703
|
+
},
|
|
3704
|
+
{
|
|
3705
|
+
country_label: "Wallis & Futuna",
|
|
3706
|
+
code: "WF",
|
|
3707
|
+
unicode: "🇼🇫",
|
|
3708
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/WF.svg",
|
|
3709
|
+
label: "+681"
|
|
3710
|
+
},
|
|
3711
|
+
{
|
|
3712
|
+
country_label: "Samoa",
|
|
3713
|
+
code: "WS",
|
|
3714
|
+
unicode: "🇼🇸",
|
|
3715
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/WS.svg",
|
|
3716
|
+
label: "+685"
|
|
3717
|
+
},
|
|
3718
|
+
{
|
|
3719
|
+
country_label: "Yemen",
|
|
3720
|
+
code: "YE",
|
|
3721
|
+
unicode: "🇾🇪",
|
|
3722
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/YE.svg",
|
|
3723
|
+
label: "+967"
|
|
3724
|
+
},
|
|
3725
|
+
{
|
|
3726
|
+
country_label: "Mayotte",
|
|
3727
|
+
code: "YT",
|
|
3728
|
+
unicode: "🇾🇹",
|
|
3729
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/YT.svg",
|
|
3730
|
+
label: "+262"
|
|
3731
|
+
},
|
|
3732
|
+
{
|
|
3733
|
+
country_label: "South Africa",
|
|
3734
|
+
code: "ZA",
|
|
3735
|
+
unicode: "🇿🇦",
|
|
3736
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/ZA.svg",
|
|
3737
|
+
label: "+27"
|
|
3738
|
+
},
|
|
3739
|
+
{
|
|
3740
|
+
country_label: "Zambia",
|
|
3741
|
+
code: "ZM",
|
|
3742
|
+
unicode: "🇿🇲",
|
|
3743
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/ZM.svg",
|
|
3744
|
+
label: "+260"
|
|
3745
|
+
},
|
|
3746
|
+
{
|
|
3747
|
+
country_label: "Zimbabwe",
|
|
3748
|
+
code: "ZW",
|
|
3749
|
+
unicode: "🇿🇼",
|
|
3750
|
+
image: "https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/ZW.svg",
|
|
3751
|
+
label: "+263"
|
|
3752
|
+
}
|
|
3753
|
+
];
|
|
3754
|
+
var countries_default = countries;
|
|
3755
|
+
// components/elements/PhoneInput.tsx
|
|
3756
|
+
var import_react_select = __toESM(require("react-select"));
|
|
3757
|
+
var Menu = function(_param) {
|
|
3758
|
+
var cx = _param.cx, children = _param.children, getStyles = _param.getStyles, innerProps = _param.innerProps, innerRef = _param.innerRef, props = _object_without_properties(_param, [
|
|
3759
|
+
"cx",
|
|
3760
|
+
"children",
|
|
3761
|
+
"getStyles",
|
|
3762
|
+
"innerProps",
|
|
3763
|
+
"innerRef"
|
|
3764
|
+
]);
|
|
3765
|
+
return /* @__PURE__ */ import_react15.default.createElement("div", _object_spread({
|
|
3766
|
+
className: "hawa-absolute hawa-z-50 hawa-w-[190px] hawa-rounded hawa-border hawa-bg-background",
|
|
3767
|
+
ref: innerRef
|
|
3768
|
+
}, innerProps), children);
|
|
3769
|
+
};
|
|
3770
|
+
var Option = function(_param) /* @__PURE__ */ {
|
|
3771
|
+
var cx = _param.cx, children = _param.children, getStyles = _param.getStyles, innerProps = _param.innerProps, innerRef = _param.innerRef, props = _object_without_properties(_param, [
|
|
3772
|
+
"cx",
|
|
3773
|
+
"children",
|
|
3774
|
+
"getStyles",
|
|
3775
|
+
"innerProps",
|
|
3776
|
+
"innerRef"
|
|
3777
|
+
]);
|
|
3778
|
+
return import_react15.default.createElement("div", _object_spread({
|
|
3779
|
+
ref: innerRef,
|
|
3780
|
+
className: "hawa-m-2 hawa-flex hawa-cursor-pointer hawa-flex-row hawa-items-center hawa-justify-between hawa-rounded-inner hawa-p-1 hawa-px-2 hover:hawa-bg-primary hover:hawa-text-primary-foreground"
|
|
3781
|
+
}, innerProps), /* @__PURE__ */ import_react15.default.createElement("div", {
|
|
3782
|
+
className: "hawa-flex hawa-flex-row hawa-items-center hawa-justify-center hawa-gap-1"
|
|
3783
|
+
}, /* @__PURE__ */ import_react15.default.createElement("img", {
|
|
3784
|
+
className: "hawa-h-8 hawa-w-8",
|
|
3785
|
+
src: props.data.image
|
|
3786
|
+
}), /* @__PURE__ */ import_react15.default.createElement("span", {
|
|
3787
|
+
className: "hawa-text-[10px]"
|
|
3788
|
+
}, props.data.country_label)), children);
|
|
3789
|
+
};
|
|
3790
|
+
var PhoneInput = function(props) {
|
|
3791
|
+
var _ref = _sliced_to_array((0, import_react15.useState)("+966"), 2), selectedCountry = _ref[0], setSelectedCountry = _ref[1];
|
|
3792
|
+
return /* @__PURE__ */ import_react15.default.createElement("div", {
|
|
3793
|
+
className: "hawa-mb-3 hawa-flex hawa-flex-col"
|
|
3794
|
+
}, props.label && /* @__PURE__ */ import_react15.default.createElement("label", {
|
|
3795
|
+
className: "hawa-mb-2 hawa-block hawa-text-sm hawa-font-medium"
|
|
3796
|
+
}, props.label), /* @__PURE__ */ import_react15.default.createElement("div", {
|
|
3797
|
+
dir: "ltr",
|
|
3798
|
+
className: "hawa-flex hawa-flex-row "
|
|
3799
|
+
}, /* @__PURE__ */ import_react15.default.createElement(import_react_select.default, {
|
|
3800
|
+
classNames: {
|
|
3801
|
+
control: function() {
|
|
3802
|
+
return "hawa-w-[64px] hawa-text-right hawa-pr-2 hawa-cursor-pointer hawa-z-10 hawa-border hawa-rounded-l hawa-bg-background";
|
|
3803
|
+
},
|
|
3804
|
+
placeholder: function(state) {
|
|
3805
|
+
return "hawa-text-muted-foreground hawa-text-right ";
|
|
3806
|
+
},
|
|
3807
|
+
input: function(state) {
|
|
3808
|
+
return "hawa-bg-transparent hawa-cursor-pointer dark:hawa-text-white hawa-p-2 hawa-rounded-l hawa-text-[0.875rem] ";
|
|
3809
|
+
},
|
|
3810
|
+
valueContainer: function() {
|
|
3811
|
+
return "hawa-rounded-l hawa-h-auto hawa-text-[0.875rem]";
|
|
3812
|
+
}
|
|
3813
|
+
},
|
|
3814
|
+
styles: {
|
|
3815
|
+
placeholder: function(base) {
|
|
3816
|
+
return _object_spread_props(_object_spread({}, base), {
|
|
3817
|
+
fontSize: "0.875rem",
|
|
3818
|
+
textAlign: "right"
|
|
3819
|
+
});
|
|
3820
|
+
}
|
|
3821
|
+
},
|
|
3822
|
+
components: {
|
|
3823
|
+
Option: Option,
|
|
3824
|
+
Menu: Menu,
|
|
3825
|
+
DropdownIndicator: function() {
|
|
3826
|
+
return null;
|
|
3827
|
+
},
|
|
3828
|
+
IndicatorSeparator: function() {
|
|
3829
|
+
return null;
|
|
3830
|
+
}
|
|
3831
|
+
},
|
|
3832
|
+
options: countries_default,
|
|
3833
|
+
isMulti: false,
|
|
3834
|
+
isSearchable: true,
|
|
3835
|
+
isClearable: false,
|
|
3836
|
+
placeholder: "+966",
|
|
3837
|
+
unstyled: true,
|
|
3838
|
+
defaultValue: props.preferredCountry,
|
|
3839
|
+
value: selectedCountry,
|
|
3840
|
+
onChange: function(newValue, action) {
|
|
3841
|
+
return setSelectedCountry(newValue);
|
|
3842
|
+
}
|
|
3843
|
+
}), /* @__PURE__ */ import_react15.default.createElement("input", {
|
|
3844
|
+
onChange: props.handleChange,
|
|
3845
|
+
type: "number",
|
|
3846
|
+
placeholder: "531045453",
|
|
3847
|
+
className: "hawa-block hawa-w-full hawa-rounded-r hawa-z-50 hawa-border hawa-bg-background hawa-p-2 hawa-text-sm hawa-text-gray-900 focus:hawa-border-blue-500 focus:hawa-ring-blue-500"
|
|
3848
|
+
}), props.helperText && /* @__PURE__ */ import_react15.default.createElement("p", {
|
|
3849
|
+
className: "hawa-mb-1 hawa-mt-1 hawa-text-xs hawa-text-red-600 dark:hawa-text-red-500"
|
|
3850
|
+
}, props.helperText)));
|
|
3851
|
+
};
|
|
1806
3852
|
// components/elements/AppStores.tsx
|
|
1807
|
-
var
|
|
3853
|
+
var import_react16 = __toESM(require("react"));
|
|
1808
3854
|
var AppStores = function(props) {
|
|
1809
|
-
return /* @__PURE__ */
|
|
3855
|
+
return /* @__PURE__ */ import_react16.default.createElement("div", {
|
|
1810
3856
|
className: "hawa-flex hawa-justify-center"
|
|
1811
|
-
}, /* @__PURE__ */
|
|
3857
|
+
}, /* @__PURE__ */ import_react16.default.createElement("div", null, props.store === "apple" ? props.mode === "dark" ? /* @__PURE__ */ import_react16.default.createElement("div", {
|
|
1812
3858
|
className: "hawa-mt-3 hawa-flex hawa-h-14 hawa-w-48 hawa-items-center hawa-justify-center hawa-rounded-lg hawa-bg-black hawa-text-white"
|
|
1813
|
-
}, /* @__PURE__ */
|
|
3859
|
+
}, /* @__PURE__ */ import_react16.default.createElement("div", {
|
|
1814
3860
|
className: "hawa-mr-3"
|
|
1815
|
-
}, /* @__PURE__ */
|
|
3861
|
+
}, /* @__PURE__ */ import_react16.default.createElement("svg", {
|
|
1816
3862
|
viewBox: "0 0 384 512",
|
|
1817
3863
|
width: "30"
|
|
1818
|
-
}, /* @__PURE__ */
|
|
3864
|
+
}, /* @__PURE__ */ import_react16.default.createElement("path", {
|
|
1819
3865
|
fill: "currentColor",
|
|
1820
3866
|
d: "M318.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C63.3 141.2 4 184.8 4 273.5q0 39.3 14.4 81.2c12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z"
|
|
1821
|
-
}))), /* @__PURE__ */
|
|
3867
|
+
}))), /* @__PURE__ */ import_react16.default.createElement("div", null, /* @__PURE__ */ import_react16.default.createElement("div", {
|
|
1822
3868
|
className: "hawa-text-xs"
|
|
1823
|
-
}, "Download on the"), /* @__PURE__ */
|
|
3869
|
+
}, "Download on the"), /* @__PURE__ */ import_react16.default.createElement("div", {
|
|
1824
3870
|
className: "hawa-font-sans hawa--mt-1 hawa-text-2xl hawa-font-semibold"
|
|
1825
|
-
}, "App Store"))) : /* @__PURE__ */
|
|
3871
|
+
}, "App Store"))) : /* @__PURE__ */ import_react16.default.createElement("div", {
|
|
1826
3872
|
className: "hawa-mt-3 hawa-flex hawa-h-14 hawa-w-48 hawa-items-center hawa-justify-center hawa-rounded-lg hawa-border hawa-border-black hawa-bg-transparent hawa-text-black"
|
|
1827
|
-
}, /* @__PURE__ */
|
|
3873
|
+
}, /* @__PURE__ */ import_react16.default.createElement("div", {
|
|
1828
3874
|
className: "hawa-mr-3"
|
|
1829
|
-
}, /* @__PURE__ */
|
|
3875
|
+
}, /* @__PURE__ */ import_react16.default.createElement("svg", {
|
|
1830
3876
|
viewBox: "0 0 384 512",
|
|
1831
3877
|
width: "30"
|
|
1832
|
-
}, /* @__PURE__ */
|
|
3878
|
+
}, /* @__PURE__ */ import_react16.default.createElement("path", {
|
|
1833
3879
|
fill: "currentColor",
|
|
1834
3880
|
d: "M318.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C63.3 141.2 4 184.8 4 273.5q0 39.3 14.4 81.2c12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z"
|
|
1835
|
-
}))), /* @__PURE__ */
|
|
3881
|
+
}))), /* @__PURE__ */ import_react16.default.createElement("div", null, /* @__PURE__ */ import_react16.default.createElement("div", {
|
|
1836
3882
|
className: "hawa-text-xs"
|
|
1837
|
-
}, "Download on the"), /* @__PURE__ */
|
|
3883
|
+
}, "Download on the"), /* @__PURE__ */ import_react16.default.createElement("div", {
|
|
1838
3884
|
className: "hawa-font-sans hawa--mt-1 hawa-text-2xl hawa-font-semibold"
|
|
1839
|
-
}, "App Store"))) : props.mode === "dark" ? /* @__PURE__ */
|
|
3885
|
+
}, "App Store"))) : props.mode === "dark" ? /* @__PURE__ */ import_react16.default.createElement("div", {
|
|
1840
3886
|
className: "hawa-mt-3 hawa-flex hawa-h-14 hawa-w-48 hawa-items-center hawa-justify-center hawa-rounded-lg hawa-bg-black hawa-text-white"
|
|
1841
|
-
}, /* @__PURE__ */
|
|
3887
|
+
}, /* @__PURE__ */ import_react16.default.createElement("div", {
|
|
1842
3888
|
className: "hawa-mr-3"
|
|
1843
|
-
}, /* @__PURE__ */
|
|
3889
|
+
}, /* @__PURE__ */ import_react16.default.createElement("svg", {
|
|
1844
3890
|
viewBox: "30 336.7 120.9 129.2",
|
|
1845
3891
|
width: "30"
|
|
1846
|
-
}, /* @__PURE__ */
|
|
3892
|
+
}, /* @__PURE__ */ import_react16.default.createElement("path", {
|
|
1847
3893
|
fill: "#FFD400",
|
|
1848
3894
|
d: "M119.2,421.2c15.3-8.4,27-14.8,28-15.3c3.2-1.7,6.5-6.2,0-9.7 c-2.1-1.1-13.4-7.3-28-15.3l-20.1,20.2L119.2,421.2z"
|
|
1849
|
-
}), /* @__PURE__ */
|
|
3895
|
+
}), /* @__PURE__ */ import_react16.default.createElement("path", {
|
|
1850
3896
|
fill: "#FF3333",
|
|
1851
3897
|
d: "M99.1,401.1l-64.2,64.7c1.5,0.2,3.2-0.2,5.2-1.3 c4.2-2.3,48.8-26.7,79.1-43.3L99.1,401.1L99.1,401.1z"
|
|
1852
|
-
}), /* @__PURE__ */
|
|
3898
|
+
}), /* @__PURE__ */ import_react16.default.createElement("path", {
|
|
1853
3899
|
fill: "#48FF48",
|
|
1854
3900
|
d: "M99.1,401.1l20.1-20.2c0,0-74.6-40.7-79.1-43.1 c-1.7-1-3.6-1.3-5.3-1L99.1,401.1z"
|
|
1855
|
-
}), /* @__PURE__ */
|
|
3901
|
+
}), /* @__PURE__ */ import_react16.default.createElement("path", {
|
|
1856
3902
|
fill: "#3BCCFF",
|
|
1857
3903
|
d: "M99.1,401.1l-64.3-64.3c-2.6,0.6-4.8,2.9-4.8,7.6 c0,7.5,0,107.5,0,113.8c0,4.3,1.7,7.4,4.9,7.7L99.1,401.1z"
|
|
1858
|
-
}))), /* @__PURE__ */
|
|
3904
|
+
}))), /* @__PURE__ */ import_react16.default.createElement("div", null, /* @__PURE__ */ import_react16.default.createElement("div", {
|
|
1859
3905
|
className: "hawa-text-xs"
|
|
1860
|
-
}, "GET IT ON"), /* @__PURE__ */
|
|
3906
|
+
}, "GET IT ON"), /* @__PURE__ */ import_react16.default.createElement("div", {
|
|
1861
3907
|
className: "hawa-font-sans hawa--mt-1 hawa-text-xl hawa-font-semibold"
|
|
1862
|
-
}, "Google Play"))) : /* @__PURE__ */
|
|
3908
|
+
}, "Google Play"))) : /* @__PURE__ */ import_react16.default.createElement("div", {
|
|
1863
3909
|
className: "hawa-mt-3 hawa-flex hawa-h-14 hawa-w-48 hawa-items-center hawa-justify-center hawa-rounded-lg hawa-border hawa-border-black hawa-bg-white hawa-text-black"
|
|
1864
|
-
}, /* @__PURE__ */
|
|
3910
|
+
}, /* @__PURE__ */ import_react16.default.createElement("div", {
|
|
1865
3911
|
className: "hawa-mr-3"
|
|
1866
|
-
}, /* @__PURE__ */
|
|
3912
|
+
}, /* @__PURE__ */ import_react16.default.createElement("svg", {
|
|
1867
3913
|
viewBox: "30 336.7 120.9 129.2",
|
|
1868
3914
|
width: "30"
|
|
1869
|
-
}, /* @__PURE__ */
|
|
3915
|
+
}, /* @__PURE__ */ import_react16.default.createElement("path", {
|
|
1870
3916
|
fill: "#FFD400",
|
|
1871
3917
|
d: "M119.2,421.2c15.3-8.4,27-14.8,28-15.3c3.2-1.7,6.5-6.2,0-9.7 c-2.1-1.1-13.4-7.3-28-15.3l-20.1,20.2L119.2,421.2z"
|
|
1872
|
-
}), /* @__PURE__ */
|
|
3918
|
+
}), /* @__PURE__ */ import_react16.default.createElement("path", {
|
|
1873
3919
|
fill: "#FF3333",
|
|
1874
3920
|
d: "M99.1,401.1l-64.2,64.7c1.5,0.2,3.2-0.2,5.2-1.3 c4.2-2.3,48.8-26.7,79.1-43.3L99.1,401.1L99.1,401.1z"
|
|
1875
|
-
}), /* @__PURE__ */
|
|
3921
|
+
}), /* @__PURE__ */ import_react16.default.createElement("path", {
|
|
1876
3922
|
fill: "#48FF48",
|
|
1877
3923
|
d: "M99.1,401.1l20.1-20.2c0,0-74.6-40.7-79.1-43.1 c-1.7-1-3.6-1.3-5.3-1L99.1,401.1z"
|
|
1878
|
-
}), /* @__PURE__ */
|
|
3924
|
+
}), /* @__PURE__ */ import_react16.default.createElement("path", {
|
|
1879
3925
|
fill: "#3BCCFF",
|
|
1880
3926
|
d: "M99.1,401.1l-64.3-64.3c-2.6,0.6-4.8,2.9-4.8,7.6 c0,7.5,0,107.5,0,113.8c0,4.3,1.7,7.4,4.9,7.7L99.1,401.1z"
|
|
1881
|
-
}))), /* @__PURE__ */
|
|
3927
|
+
}))), /* @__PURE__ */ import_react16.default.createElement("div", null, /* @__PURE__ */ import_react16.default.createElement("div", {
|
|
1882
3928
|
className: "hawa-text-xs"
|
|
1883
|
-
}, "GET IT ON"), /* @__PURE__ */
|
|
3929
|
+
}, "GET IT ON"), /* @__PURE__ */ import_react16.default.createElement("div", {
|
|
1884
3930
|
className: "hawa-font-sans hawa--mt-1 hawa-text-xl hawa-font-semibold"
|
|
1885
3931
|
}, "Google Play")))));
|
|
1886
3932
|
};
|
|
3933
|
+
// components/elements/BackToTop.tsx
|
|
3934
|
+
var import_react17 = __toESM(require("react"));
|
|
3935
|
+
var import_clsx7 = require("clsx");
|
|
3936
|
+
var BackToTop = function(_param) {
|
|
3937
|
+
var props = _extends({}, _object_destructuring_empty(_param));
|
|
3938
|
+
var _ref = _sliced_to_array((0, import_react17.useState)(false), 2), visible = _ref[0], setVisible = _ref[1];
|
|
3939
|
+
var _ref1 = _sliced_to_array((0, import_react17.useState)(null), 2), rect = _ref1[0], _setRect = _ref1[1];
|
|
3940
|
+
var self = (0, import_react17.useRef)(null);
|
|
3941
|
+
var _rect = (0, import_react17.useRef)(rect);
|
|
3942
|
+
var setRect = function(data) {
|
|
3943
|
+
_rect.current = data;
|
|
3944
|
+
_setRect(data);
|
|
3945
|
+
};
|
|
3946
|
+
var getCoords = function() {
|
|
3947
|
+
var anchor = props.anchor.current;
|
|
3948
|
+
if (anchor) {
|
|
3949
|
+
return [
|
|
3950
|
+
anchor.scrollTop,
|
|
3951
|
+
anchor.scrollLeft
|
|
3952
|
+
];
|
|
3953
|
+
}
|
|
3954
|
+
return [
|
|
3955
|
+
0,
|
|
3956
|
+
0
|
|
3957
|
+
];
|
|
3958
|
+
};
|
|
3959
|
+
var onScroll = function() {
|
|
3960
|
+
var _props_anchor_current;
|
|
3961
|
+
var _getCoords = _sliced_to_array(getCoords(), 2), scrollTop = _getCoords[0], scrollLeft = _getCoords[1];
|
|
3962
|
+
var rect2 = (_props_anchor_current = props.anchor.current) === null || _props_anchor_current === void 0 ? void 0 : _props_anchor_current.getBoundingClientRect();
|
|
3963
|
+
if (rect2) {
|
|
3964
|
+
setVisible(scrollTop >= rect2.height + (props.paddingThreshold || 100));
|
|
3965
|
+
}
|
|
3966
|
+
};
|
|
3967
|
+
var backToTop = function() {
|
|
3968
|
+
if (props.anchor.current) {
|
|
3969
|
+
props.anchor.current.scrollTo({
|
|
3970
|
+
top: 0,
|
|
3971
|
+
behavior: "smooth"
|
|
3972
|
+
});
|
|
3973
|
+
}
|
|
3974
|
+
};
|
|
3975
|
+
(0, import_react17.useEffect)(function() {
|
|
3976
|
+
if (!props.anchor.current) return;
|
|
3977
|
+
props.anchor.current.addEventListener("scroll", onScroll);
|
|
3978
|
+
var interval = setInterval(function() {
|
|
3979
|
+
if (!props.anchor.current) return;
|
|
3980
|
+
var newRect = props.anchor.current.getBoundingClientRect();
|
|
3981
|
+
if (_rect.current == null) return setRect(newRect);
|
|
3982
|
+
if (!(_rect.current.top == newRect.top && _rect.current.left == newRect.left && _rect.current.width == newRect.width && _rect.current.height == newRect.height)) {
|
|
3983
|
+
setRect(newRect);
|
|
3984
|
+
}
|
|
3985
|
+
}, 1);
|
|
3986
|
+
return function() {
|
|
3987
|
+
var _props_anchor_current;
|
|
3988
|
+
(_props_anchor_current = props.anchor.current) === null || _props_anchor_current === void 0 ? void 0 : _props_anchor_current.removeEventListener("scroll", onScroll);
|
|
3989
|
+
clearInterval(interval);
|
|
3990
|
+
};
|
|
3991
|
+
}, []);
|
|
3992
|
+
var getStyles = function() {
|
|
3993
|
+
var _self_current;
|
|
3994
|
+
if (!props.anchor.current || !self.current) return {};
|
|
3995
|
+
var corner = props.corner || "bottom-right";
|
|
3996
|
+
var _corner_split = _sliced_to_array(corner.split("-"), 2), vertical = _corner_split[0], horizontal = _corner_split[1];
|
|
3997
|
+
var anchorRect = props.anchor.current.getBoundingClientRect();
|
|
3998
|
+
var selfRect = (_self_current = self.current) === null || _self_current === void 0 ? void 0 : _self_current.getBoundingClientRect();
|
|
3999
|
+
var width = horizontal == "right" ? anchorRect.width - selfRect.width : 0;
|
|
4000
|
+
var height = vertical == "bottom" ? anchorRect.height - selfRect.height : 0;
|
|
4001
|
+
var style = {
|
|
4002
|
+
top: anchorRect.y + height + (vertical == "bottom" ? -1 : 1) * (props.paddingX || 10),
|
|
4003
|
+
left: anchorRect.x + width + (horizontal == "right" ? -1 : 1) * (props.paddingX || 25)
|
|
4004
|
+
};
|
|
4005
|
+
return style;
|
|
4006
|
+
};
|
|
4007
|
+
return /* @__PURE__ */ import_react17.default.createElement(Button, {
|
|
4008
|
+
className: cn("hawa-fixed hawa-cursor-pointer hawa-rounded hawa-transition-all", visible ? "hawa-pointer-events-all hawa-opacity-100" : "hawa-pointer-events-none hawa-opacity-0"),
|
|
4009
|
+
onClick: backToTop,
|
|
4010
|
+
style: _object_spread_props(_object_spread({}, getStyles()), {
|
|
4011
|
+
transitionProperty: "opacity, background-color"
|
|
4012
|
+
}),
|
|
4013
|
+
ref: self,
|
|
4014
|
+
size: "icon"
|
|
4015
|
+
}, /* @__PURE__ */ import_react17.default.createElement("svg", {
|
|
4016
|
+
className: (0, import_clsx7.clsx)("hawa-h-6 hawa-w-6 hawa-shrink-0 hawa-rotate-180 hawa-transition-all disabled:hawa-bg-gray-200"),
|
|
4017
|
+
"aria-label": "Arrow Icon",
|
|
4018
|
+
viewBox: "0 0 20 20",
|
|
4019
|
+
fill: "currentColor"
|
|
4020
|
+
}, /* @__PURE__ */ import_react17.default.createElement("path", {
|
|
4021
|
+
d: "M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
|
|
4022
|
+
})));
|
|
4023
|
+
};
|
|
4024
|
+
// components/elements/Input.tsx
|
|
4025
|
+
var import_react18 = __toESM(require("react"));
|
|
4026
|
+
var Input = function(_param) {
|
|
4027
|
+
var _param_margin = _param.margin, margin = _param_margin === void 0 ? "none" : _param_margin, _param_width = _param.width, width = _param_width === void 0 ? "full" : _param_width, _param_preview = _param.preview, preview = _param_preview === void 0 ? false : _param_preview, props = _object_without_properties(_param, [
|
|
4028
|
+
"margin",
|
|
4029
|
+
"width",
|
|
4030
|
+
"preview"
|
|
4031
|
+
]);
|
|
4032
|
+
var marginStyles = {
|
|
4033
|
+
none: "hawa-mb-0",
|
|
4034
|
+
normal: "hawa-mb-3",
|
|
4035
|
+
large: "hawa-mb-5"
|
|
4036
|
+
};
|
|
4037
|
+
var widthStyles = {
|
|
4038
|
+
small: "hawa-w-full hawa-max-w-2xs",
|
|
4039
|
+
normal: "hawa-w-1/2",
|
|
4040
|
+
full: "hawa-w-full"
|
|
4041
|
+
};
|
|
4042
|
+
var defaultStyle = "hawa-flex hawa-max-h-fit hawa-relative hawa-flex-col hawa-justify-center hawa-gap-2";
|
|
4043
|
+
var defaultInputStyle = "hawa-block hawa-w-full hawa-rounded hawa-border hawa-transition-all hawa-bg-background hawa-p-2 hawa-text-sm hawa-text-black dark:hawa-text-white ";
|
|
4044
|
+
return /* @__PURE__ */ import_react18.default.createElement("div", {
|
|
4045
|
+
className: cn(defaultStyle, marginStyles[margin], widthStyles[width], props.className)
|
|
4046
|
+
}, props.label && /* @__PURE__ */ import_react18.default.createElement(Label, null, props.label), props.isLoading ? /* @__PURE__ */ import_react18.default.createElement(Skeleton, {
|
|
4047
|
+
className: "hawa-h-[38px] hawa-w-full"
|
|
4048
|
+
}) : /* @__PURE__ */ import_react18.default.createElement(import_react18.default.Fragment, null, /* @__PURE__ */ import_react18.default.createElement("div", {
|
|
4049
|
+
className: cn("hawa-absolute hawa-top-[22px] hawa-h-[0.8px] hawa-w-full hawa-bg-gray-200 hawa-transition-all dark:hawa-bg-gray-800", preview ? "hawa-opacity-100" : "hawa-opacity-0")
|
|
4050
|
+
}), /* @__PURE__ */ import_react18.default.createElement(import_react18.default.Fragment, null, /* @__PURE__ */ import_react18.default.createElement("div", {
|
|
4051
|
+
className: cn("hawa-relative")
|
|
4052
|
+
}, props.icon && /* @__PURE__ */ import_react18.default.createElement("div", {
|
|
4053
|
+
className: "hawa-absolute hawa-left-3 hawa-top-1/2 hawa--translate-y-1/2"
|
|
4054
|
+
}, props.icon), /* @__PURE__ */ import_react18.default.createElement("input", _object_spread_props(_object_spread({}, props), {
|
|
4055
|
+
className: cn(defaultInputStyle, props.icon && "hawa-pl-10", "focus-visible:hawa-outline-none focus-visible:hawa-ring-2 focus-visible:hawa-ring-ring focus-visible:hawa-ring-offset-2", preview && "hawa-border-transparent hawa-bg-transparent hawa-px-0"),
|
|
4056
|
+
disabled: preview
|
|
4057
|
+
}))), props.iconInside && /* @__PURE__ */ import_react18.default.createElement("div", {
|
|
4058
|
+
className: "hawa-absolute hawa-right-1 hawa-top-[41px] hawa--translate-y-1/2"
|
|
4059
|
+
}, props.iconInside), props.helperText && /* @__PURE__ */ import_react18.default.createElement("p", {
|
|
4060
|
+
className: "hawa-mb-0 hawa-mt-0 hawa-text-xs hawa-text-red-600 dark:hawa-text-red-500"
|
|
4061
|
+
}, props.helperText))));
|
|
4062
|
+
};
|
|
4063
|
+
// components/elements/Tabs.tsx
|
|
4064
|
+
var React30 = __toESM(require("react"));
|
|
4065
|
+
var TabsPrimitive = __toESM(require("@radix-ui/react-tabs"));
|
|
4066
|
+
var TabsContext = React30.createContext({
|
|
4067
|
+
orientation: "vertical"
|
|
4068
|
+
});
|
|
4069
|
+
var Tabs = React30.forwardRef(function(_param, ref) /* @__PURE__ */ {
|
|
4070
|
+
var className = _param.className, orientation = _param.orientation, props = _object_without_properties(_param, [
|
|
4071
|
+
"className",
|
|
4072
|
+
"orientation"
|
|
4073
|
+
]);
|
|
4074
|
+
return React30.createElement(TabsPrimitive.Root, _object_spread({
|
|
4075
|
+
ref: ref,
|
|
4076
|
+
className: cn("hawa-flex hawa-gap-2", orientation === "vertical" ? "hawa-flex-row" : "hawa-flex-col", className)
|
|
4077
|
+
}, props), /* @__PURE__ */ React30.createElement(TabsContext.Provider, {
|
|
4078
|
+
value: {
|
|
4079
|
+
orientation: orientation
|
|
4080
|
+
}
|
|
4081
|
+
}, props.children));
|
|
4082
|
+
});
|
|
4083
|
+
Tabs.displayName = TabsPrimitive.Root.displayName;
|
|
4084
|
+
var TabsList = React30.forwardRef(function(_param, ref) {
|
|
4085
|
+
var className = _param.className, props = _object_without_properties(_param, [
|
|
4086
|
+
"className"
|
|
4087
|
+
]);
|
|
4088
|
+
var orientation = React30.useContext(TabsContext).orientation;
|
|
4089
|
+
console.log("orient ", orientation);
|
|
4090
|
+
return /* @__PURE__ */ React30.createElement(TabsPrimitive.List, _object_spread({
|
|
4091
|
+
ref: ref,
|
|
4092
|
+
className: cn("hawa-flex hawa-w-fit hawa-flex-wrap hawa-items-center hawa-justify-start hawa-gap-1 hawa-rounded hawa-border hawa-bg-muted hawa-p-1 hawa-text-muted-foreground dark:hawa-border-primary/10", orientation === "vertical" ? "hawa-flex-col" : "hawa-flex-row", className)
|
|
4093
|
+
}, props));
|
|
4094
|
+
});
|
|
4095
|
+
TabsList.displayName = TabsPrimitive.List.displayName;
|
|
4096
|
+
var TabsTrigger = React30.forwardRef(function(_param, ref) {
|
|
4097
|
+
var className = _param.className, props = _object_without_properties(_param, [
|
|
4098
|
+
"className"
|
|
4099
|
+
]);
|
|
4100
|
+
return /* @__PURE__ */ React30.createElement(TabsPrimitive.Trigger, _object_spread({
|
|
4101
|
+
ref: ref,
|
|
4102
|
+
className: cn("hawa-inline-flex hawa-w-full hawa-flex-1 hawa-select-none hawa-items-center hawa-justify-center hawa-whitespace-nowrap hawa-rounded hawa-border hawa-px-3 hawa-py-1.5 hawa-text-sm hawa-font-medium hawa-ring-offset-background hawa-transition-all focus-visible:hawa-outline-none focus-visible:hawa-ring-2 focus-visible:hawa-ring-ring focus-visible:hawa-ring-offset-2 disabled:hawa-pointer-events-none disabled:hawa-opacity-50 data-[state=active]:hawa-bg-primary data-[state=active]:hawa-text-primary-foreground data-[state=active]:hawa-shadow-sm dark:hawa-border-primary/10", className)
|
|
4103
|
+
}, props));
|
|
4104
|
+
});
|
|
4105
|
+
TabsTrigger.displayName = TabsPrimitive.Trigger.displayName;
|
|
4106
|
+
var TabsContent = React30.forwardRef(function(_param, ref) /* @__PURE__ */ {
|
|
4107
|
+
var className = _param.className, props = _object_without_properties(_param, [
|
|
4108
|
+
"className"
|
|
4109
|
+
]);
|
|
4110
|
+
return React30.createElement(TabsPrimitive.Content, _object_spread({
|
|
4111
|
+
ref: ref,
|
|
4112
|
+
className: cn("hawa-w-full hawa-ring-offset-hawa-background focus-visible:hawa-outline-none focus-visible:hawa-ring-2 focus-visible:hawa-ring-ring focus-visible:hawa-ring-offset-2", className)
|
|
4113
|
+
}, props));
|
|
4114
|
+
});
|
|
4115
|
+
TabsContent.displayName = TabsPrimitive.Content.displayName;
|
|
1887
4116
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1888
4117
|
0 && (module.exports = {
|
|
1889
4118
|
ActionCard: ActionCard,
|
|
1890
4119
|
Alert: Alert,
|
|
1891
4120
|
AppStores: AppStores,
|
|
4121
|
+
BackToTop: BackToTop,
|
|
1892
4122
|
Breadcrumb: Breadcrumb,
|
|
1893
4123
|
Button: Button,
|
|
1894
4124
|
Card: Card,
|
|
@@ -1900,6 +4130,7 @@ var AppStores = function(props) {
|
|
|
1900
4130
|
Checkbox: Checkbox,
|
|
1901
4131
|
Chip: Chip,
|
|
1902
4132
|
CodeBlock: CodeBlock,
|
|
4133
|
+
ColorPicker: ColorPicker,
|
|
1903
4134
|
Dialog: Dialog,
|
|
1904
4135
|
DialogContent: DialogContent,
|
|
1905
4136
|
DialogDescription: DialogDescription,
|
|
@@ -1908,8 +4139,11 @@ var AppStores = function(props) {
|
|
|
1908
4139
|
DialogTitle: DialogTitle,
|
|
1909
4140
|
DialogTrigger: DialogTrigger,
|
|
1910
4141
|
DropdownMenu: DropdownMenu,
|
|
4142
|
+
FileDropzone: FileDropzone,
|
|
4143
|
+
Input: Input,
|
|
1911
4144
|
Label: Label,
|
|
1912
4145
|
Loading: Loading,
|
|
4146
|
+
PhoneInput: PhoneInput,
|
|
1913
4147
|
PinInput: PinInput,
|
|
1914
4148
|
Popover: Popover,
|
|
1915
4149
|
PopoverContent: PopoverContent,
|
|
@@ -1917,6 +4151,10 @@ var AppStores = function(props) {
|
|
|
1917
4151
|
Skeleton: Skeleton,
|
|
1918
4152
|
Slider: Slider,
|
|
1919
4153
|
Switch: Switch,
|
|
4154
|
+
Tabs: Tabs,
|
|
4155
|
+
TabsContent: TabsContent,
|
|
4156
|
+
TabsList: TabsList,
|
|
4157
|
+
TabsTrigger: TabsTrigger,
|
|
1920
4158
|
Textarea: Textarea,
|
|
1921
4159
|
Toast: Toast,
|
|
1922
4160
|
ToastAction: ToastAction,
|