@stndrds/constants 1.0.0-alpha.295 → 1.0.0-alpha.296
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.d.mts +19 -6
- package/dist/index.d.ts +19 -6
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -9,10 +9,17 @@ import { ClassValue } from 'clsx';
|
|
|
9
9
|
*/
|
|
10
10
|
/** Image MIME types supported by AI chat (subset of all image types) */
|
|
11
11
|
declare const AI_CHAT_SUPPORTED_IMAGES: readonly ["image/jpeg", "image/png", "image/webp", "image/gif", "image/svg+xml"];
|
|
12
|
-
/**
|
|
13
|
-
|
|
12
|
+
/**
|
|
13
|
+
* Document MIME types supported by AI chat.
|
|
14
|
+
*
|
|
15
|
+
* The two JavaScript spellings and XLSX are here so the agent can be handed the
|
|
16
|
+
* files people actually attach (#3169). JavaScript is read as prompt text like
|
|
17
|
+
* any other source file — nothing executes an attachment — and XLSX reaches the
|
|
18
|
+
* agent's sandbox, which is where a spreadsheet is useful.
|
|
19
|
+
*/
|
|
20
|
+
declare const AI_CHAT_SUPPORTED_DOCUMENTS: readonly ["application/pdf", "application/msword", "application/vnd.openxmlformats-officedocument.wordprocessingml.document", "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "text/plain", "text/markdown", "text/csv", "text/javascript", "application/javascript"];
|
|
14
21
|
/** All MIME types supported by AI chat */
|
|
15
|
-
declare const AI_CHAT_SUPPORTED_MIME_TYPES: readonly ["image/jpeg", "image/png", "image/webp", "image/gif", "image/svg+xml", "application/pdf", "application/msword", "application/vnd.openxmlformats-officedocument.wordprocessingml.document", "text/plain", "text/markdown", "text/csv"];
|
|
22
|
+
declare const AI_CHAT_SUPPORTED_MIME_TYPES: readonly ["image/jpeg", "image/png", "image/webp", "image/gif", "image/svg+xml", "application/pdf", "application/msword", "application/vnd.openxmlformats-officedocument.wordprocessingml.document", "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "text/plain", "text/markdown", "text/csv", "text/javascript", "application/javascript"];
|
|
16
23
|
/** Comma-separated accept string for file inputs */
|
|
17
24
|
declare const AI_CHAT_ACCEPTED_TYPES: string;
|
|
18
25
|
/** Maximum file size for AI chat attachments (50 MB) */
|
|
@@ -1653,6 +1660,12 @@ declare const VIDEO_MIME_TYPES: {
|
|
|
1653
1660
|
declare const VIDEO_MIME_TYPES_ARRAY: ("video/mp4" | "video/webm" | "video/ogg" | "video/x-msvideo" | "video/quicktime" | "video/x-matroska" | "video/x-flv" | "video/x-ms-wmv" | "video/mpeg")[];
|
|
1654
1661
|
declare const CODE_MIME_TYPES: {
|
|
1655
1662
|
readonly JAVASCRIPT: "text/javascript";
|
|
1663
|
+
/**
|
|
1664
|
+
* The pre-WHATWG spelling, still what some browsers and platforms report for
|
|
1665
|
+
* a `.js` file. Accepting only the canonical one rejects the same file
|
|
1666
|
+
* depending on the machine it is picked from (#3169).
|
|
1667
|
+
*/
|
|
1668
|
+
readonly JAVASCRIPT_LEGACY: "application/javascript";
|
|
1656
1669
|
readonly TYPESCRIPT: "text/typescript";
|
|
1657
1670
|
readonly JSON: "application/json";
|
|
1658
1671
|
readonly XML: "application/xml";
|
|
@@ -1665,7 +1678,7 @@ declare const CODE_MIME_TYPES: {
|
|
|
1665
1678
|
readonly YAML: "application/x-yaml";
|
|
1666
1679
|
readonly SQL: "application/sql";
|
|
1667
1680
|
};
|
|
1668
|
-
declare const CODE_MIME_TYPES_ARRAY: ("text/javascript" | "text/typescript" | "application/json" | "application/xml" | "text/html" | "text/css" | "text/x-python" | "text/x-java-source" | "text/x-c" | "text/x-c++" | "application/x-yaml" | "application/sql")[];
|
|
1681
|
+
declare const CODE_MIME_TYPES_ARRAY: ("text/javascript" | "application/javascript" | "text/typescript" | "application/json" | "application/xml" | "text/html" | "text/css" | "text/x-python" | "text/x-java-source" | "text/x-c" | "text/x-c++" | "application/x-yaml" | "application/sql")[];
|
|
1669
1682
|
declare const FONT_MIME_TYPES: {
|
|
1670
1683
|
readonly TTF: "font/ttf";
|
|
1671
1684
|
readonly OTF: "font/otf";
|
|
@@ -1697,7 +1710,7 @@ declare const VIDEO: ("video/mp4" | "video/webm" | "video/ogg" | "video/x-msvide
|
|
|
1697
1710
|
/**
|
|
1698
1711
|
* All code MIME types
|
|
1699
1712
|
*/
|
|
1700
|
-
declare const CODE: ("text/javascript" | "text/typescript" | "application/json" | "application/xml" | "text/html" | "text/css" | "text/x-python" | "text/x-java-source" | "text/x-c" | "text/x-c++" | "application/x-yaml" | "application/sql")[];
|
|
1713
|
+
declare const CODE: ("text/javascript" | "application/javascript" | "text/typescript" | "application/json" | "application/xml" | "text/html" | "text/css" | "text/x-python" | "text/x-java-source" | "text/x-c" | "text/x-c++" | "application/x-yaml" | "application/sql")[];
|
|
1701
1714
|
/**
|
|
1702
1715
|
* All font MIME types
|
|
1703
1716
|
*/
|
|
@@ -1717,7 +1730,7 @@ declare const MEDIA: readonly ("image/jpeg" | "image/png" | "image/gif" | "image
|
|
|
1717
1730
|
/**
|
|
1718
1731
|
* All MIME types combined
|
|
1719
1732
|
*/
|
|
1720
|
-
declare const ALL_MIME_TYPES: readonly ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/svg+xml" | "image/bmp" | "image/tiff" | "image/x-icon" | "image/heic" | "image/heif" | "application/pdf" | "application/msword" | "application/vnd.openxmlformats-officedocument.wordprocessingml.document" | "application/vnd.ms-excel" | "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" | "application/vnd.ms-powerpoint" | "application/vnd.openxmlformats-officedocument.presentationml.presentation" | "application/vnd.oasis.opendocument.text" | "application/vnd.oasis.opendocument.spreadsheet" | "application/vnd.oasis.opendocument.presentation" | "application/rtf" | "text/plain" | "text/csv" | "text/markdown" | "application/zip" | "application/vnd.rar" | "application/x-tar" | "application/gzip" | "application/x-7z-compressed" | "application/x-bzip2" | "audio/mpeg" | "audio/wav" | "audio/ogg" | "audio/aac" | "audio/flac" | "audio/mp4" | "audio/webm" | "video/mp4" | "video/webm" | "video/ogg" | "video/x-msvideo" | "video/quicktime" | "video/x-matroska" | "video/x-flv" | "video/x-ms-wmv" | "video/mpeg" | "text/javascript" | "text/typescript" | "application/json" | "application/xml" | "text/html" | "text/css" | "text/x-python" | "text/x-java-source" | "text/x-c" | "text/x-c++" | "application/x-yaml" | "application/sql" | "font/ttf" | "font/otf" | "font/woff" | "font/woff2" | "application/vnd.ms-fontobject")[];
|
|
1733
|
+
declare const ALL_MIME_TYPES: readonly ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/svg+xml" | "image/bmp" | "image/tiff" | "image/x-icon" | "image/heic" | "image/heif" | "application/pdf" | "application/msword" | "application/vnd.openxmlformats-officedocument.wordprocessingml.document" | "application/vnd.ms-excel" | "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" | "application/vnd.ms-powerpoint" | "application/vnd.openxmlformats-officedocument.presentationml.presentation" | "application/vnd.oasis.opendocument.text" | "application/vnd.oasis.opendocument.spreadsheet" | "application/vnd.oasis.opendocument.presentation" | "application/rtf" | "text/plain" | "text/csv" | "text/markdown" | "application/zip" | "application/vnd.rar" | "application/x-tar" | "application/gzip" | "application/x-7z-compressed" | "application/x-bzip2" | "audio/mpeg" | "audio/wav" | "audio/ogg" | "audio/aac" | "audio/flac" | "audio/mp4" | "audio/webm" | "video/mp4" | "video/webm" | "video/ogg" | "video/x-msvideo" | "video/quicktime" | "video/x-matroska" | "video/x-flv" | "video/x-ms-wmv" | "video/mpeg" | "text/javascript" | "application/javascript" | "text/typescript" | "application/json" | "application/xml" | "text/html" | "text/css" | "text/x-python" | "text/x-java-source" | "text/x-c" | "text/x-c++" | "application/x-yaml" | "application/sql" | "font/ttf" | "font/otf" | "font/woff" | "font/woff2" | "application/vnd.ms-fontobject")[];
|
|
1721
1734
|
/**
|
|
1722
1735
|
* Union type of all valid MIME types
|
|
1723
1736
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -9,10 +9,17 @@ import { ClassValue } from 'clsx';
|
|
|
9
9
|
*/
|
|
10
10
|
/** Image MIME types supported by AI chat (subset of all image types) */
|
|
11
11
|
declare const AI_CHAT_SUPPORTED_IMAGES: readonly ["image/jpeg", "image/png", "image/webp", "image/gif", "image/svg+xml"];
|
|
12
|
-
/**
|
|
13
|
-
|
|
12
|
+
/**
|
|
13
|
+
* Document MIME types supported by AI chat.
|
|
14
|
+
*
|
|
15
|
+
* The two JavaScript spellings and XLSX are here so the agent can be handed the
|
|
16
|
+
* files people actually attach (#3169). JavaScript is read as prompt text like
|
|
17
|
+
* any other source file — nothing executes an attachment — and XLSX reaches the
|
|
18
|
+
* agent's sandbox, which is where a spreadsheet is useful.
|
|
19
|
+
*/
|
|
20
|
+
declare const AI_CHAT_SUPPORTED_DOCUMENTS: readonly ["application/pdf", "application/msword", "application/vnd.openxmlformats-officedocument.wordprocessingml.document", "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "text/plain", "text/markdown", "text/csv", "text/javascript", "application/javascript"];
|
|
14
21
|
/** All MIME types supported by AI chat */
|
|
15
|
-
declare const AI_CHAT_SUPPORTED_MIME_TYPES: readonly ["image/jpeg", "image/png", "image/webp", "image/gif", "image/svg+xml", "application/pdf", "application/msword", "application/vnd.openxmlformats-officedocument.wordprocessingml.document", "text/plain", "text/markdown", "text/csv"];
|
|
22
|
+
declare const AI_CHAT_SUPPORTED_MIME_TYPES: readonly ["image/jpeg", "image/png", "image/webp", "image/gif", "image/svg+xml", "application/pdf", "application/msword", "application/vnd.openxmlformats-officedocument.wordprocessingml.document", "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "text/plain", "text/markdown", "text/csv", "text/javascript", "application/javascript"];
|
|
16
23
|
/** Comma-separated accept string for file inputs */
|
|
17
24
|
declare const AI_CHAT_ACCEPTED_TYPES: string;
|
|
18
25
|
/** Maximum file size for AI chat attachments (50 MB) */
|
|
@@ -1653,6 +1660,12 @@ declare const VIDEO_MIME_TYPES: {
|
|
|
1653
1660
|
declare const VIDEO_MIME_TYPES_ARRAY: ("video/mp4" | "video/webm" | "video/ogg" | "video/x-msvideo" | "video/quicktime" | "video/x-matroska" | "video/x-flv" | "video/x-ms-wmv" | "video/mpeg")[];
|
|
1654
1661
|
declare const CODE_MIME_TYPES: {
|
|
1655
1662
|
readonly JAVASCRIPT: "text/javascript";
|
|
1663
|
+
/**
|
|
1664
|
+
* The pre-WHATWG spelling, still what some browsers and platforms report for
|
|
1665
|
+
* a `.js` file. Accepting only the canonical one rejects the same file
|
|
1666
|
+
* depending on the machine it is picked from (#3169).
|
|
1667
|
+
*/
|
|
1668
|
+
readonly JAVASCRIPT_LEGACY: "application/javascript";
|
|
1656
1669
|
readonly TYPESCRIPT: "text/typescript";
|
|
1657
1670
|
readonly JSON: "application/json";
|
|
1658
1671
|
readonly XML: "application/xml";
|
|
@@ -1665,7 +1678,7 @@ declare const CODE_MIME_TYPES: {
|
|
|
1665
1678
|
readonly YAML: "application/x-yaml";
|
|
1666
1679
|
readonly SQL: "application/sql";
|
|
1667
1680
|
};
|
|
1668
|
-
declare const CODE_MIME_TYPES_ARRAY: ("text/javascript" | "text/typescript" | "application/json" | "application/xml" | "text/html" | "text/css" | "text/x-python" | "text/x-java-source" | "text/x-c" | "text/x-c++" | "application/x-yaml" | "application/sql")[];
|
|
1681
|
+
declare const CODE_MIME_TYPES_ARRAY: ("text/javascript" | "application/javascript" | "text/typescript" | "application/json" | "application/xml" | "text/html" | "text/css" | "text/x-python" | "text/x-java-source" | "text/x-c" | "text/x-c++" | "application/x-yaml" | "application/sql")[];
|
|
1669
1682
|
declare const FONT_MIME_TYPES: {
|
|
1670
1683
|
readonly TTF: "font/ttf";
|
|
1671
1684
|
readonly OTF: "font/otf";
|
|
@@ -1697,7 +1710,7 @@ declare const VIDEO: ("video/mp4" | "video/webm" | "video/ogg" | "video/x-msvide
|
|
|
1697
1710
|
/**
|
|
1698
1711
|
* All code MIME types
|
|
1699
1712
|
*/
|
|
1700
|
-
declare const CODE: ("text/javascript" | "text/typescript" | "application/json" | "application/xml" | "text/html" | "text/css" | "text/x-python" | "text/x-java-source" | "text/x-c" | "text/x-c++" | "application/x-yaml" | "application/sql")[];
|
|
1713
|
+
declare const CODE: ("text/javascript" | "application/javascript" | "text/typescript" | "application/json" | "application/xml" | "text/html" | "text/css" | "text/x-python" | "text/x-java-source" | "text/x-c" | "text/x-c++" | "application/x-yaml" | "application/sql")[];
|
|
1701
1714
|
/**
|
|
1702
1715
|
* All font MIME types
|
|
1703
1716
|
*/
|
|
@@ -1717,7 +1730,7 @@ declare const MEDIA: readonly ("image/jpeg" | "image/png" | "image/gif" | "image
|
|
|
1717
1730
|
/**
|
|
1718
1731
|
* All MIME types combined
|
|
1719
1732
|
*/
|
|
1720
|
-
declare const ALL_MIME_TYPES: readonly ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/svg+xml" | "image/bmp" | "image/tiff" | "image/x-icon" | "image/heic" | "image/heif" | "application/pdf" | "application/msword" | "application/vnd.openxmlformats-officedocument.wordprocessingml.document" | "application/vnd.ms-excel" | "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" | "application/vnd.ms-powerpoint" | "application/vnd.openxmlformats-officedocument.presentationml.presentation" | "application/vnd.oasis.opendocument.text" | "application/vnd.oasis.opendocument.spreadsheet" | "application/vnd.oasis.opendocument.presentation" | "application/rtf" | "text/plain" | "text/csv" | "text/markdown" | "application/zip" | "application/vnd.rar" | "application/x-tar" | "application/gzip" | "application/x-7z-compressed" | "application/x-bzip2" | "audio/mpeg" | "audio/wav" | "audio/ogg" | "audio/aac" | "audio/flac" | "audio/mp4" | "audio/webm" | "video/mp4" | "video/webm" | "video/ogg" | "video/x-msvideo" | "video/quicktime" | "video/x-matroska" | "video/x-flv" | "video/x-ms-wmv" | "video/mpeg" | "text/javascript" | "text/typescript" | "application/json" | "application/xml" | "text/html" | "text/css" | "text/x-python" | "text/x-java-source" | "text/x-c" | "text/x-c++" | "application/x-yaml" | "application/sql" | "font/ttf" | "font/otf" | "font/woff" | "font/woff2" | "application/vnd.ms-fontobject")[];
|
|
1733
|
+
declare const ALL_MIME_TYPES: readonly ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/svg+xml" | "image/bmp" | "image/tiff" | "image/x-icon" | "image/heic" | "image/heif" | "application/pdf" | "application/msword" | "application/vnd.openxmlformats-officedocument.wordprocessingml.document" | "application/vnd.ms-excel" | "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" | "application/vnd.ms-powerpoint" | "application/vnd.openxmlformats-officedocument.presentationml.presentation" | "application/vnd.oasis.opendocument.text" | "application/vnd.oasis.opendocument.spreadsheet" | "application/vnd.oasis.opendocument.presentation" | "application/rtf" | "text/plain" | "text/csv" | "text/markdown" | "application/zip" | "application/vnd.rar" | "application/x-tar" | "application/gzip" | "application/x-7z-compressed" | "application/x-bzip2" | "audio/mpeg" | "audio/wav" | "audio/ogg" | "audio/aac" | "audio/flac" | "audio/mp4" | "audio/webm" | "video/mp4" | "video/webm" | "video/ogg" | "video/x-msvideo" | "video/quicktime" | "video/x-matroska" | "video/x-flv" | "video/x-ms-wmv" | "video/mpeg" | "text/javascript" | "application/javascript" | "text/typescript" | "application/json" | "application/xml" | "text/html" | "text/css" | "text/x-python" | "text/x-java-source" | "text/x-c" | "text/x-c++" | "application/x-yaml" | "application/sql" | "font/ttf" | "font/otf" | "font/woff" | "font/woff2" | "application/vnd.ms-fontobject")[];
|
|
1721
1734
|
/**
|
|
1722
1735
|
* Union type of all valid MIME types
|
|
1723
1736
|
*/
|
package/dist/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/*! © 2025-2026 AND YOU CREATE SAS (RCS Paris 940 190 614). Proprietary — see LICENSE (Standards SDK License 1.0). */
|
|
2
|
-
"use strict";var g=Object.defineProperty;var ee=Object.getOwnPropertyDescriptor;var oe=Object.getOwnPropertyNames;var re=Object.prototype.hasOwnProperty;var o=(e,r)=>g(e,"name",{value:r,configurable:!0});var ne=(e,r)=>{for(var t in r)g(e,t,{get:r[t],enumerable:!0})},te=(e,r,t,c)=>{if(r&&typeof r=="object"||typeof r=="function")for(let s of oe(r))!re.call(e,s)&&s!==t&&g(e,s,{get:()=>r[s],enumerable:!(c=ee(r,s))||c.enumerable});return e};var ae=e=>te(g({},"__esModule",{value:!0}),e);var Je={};ne(Je,{AI_CHAT_ACCEPTED_TYPES:()=>xe,AI_CHAT_MAX_FILES:()=>Ce,AI_CHAT_MAX_FILE_SIZE:()=>fe,AI_CHAT_SUPPORTED_DOCUMENTS:()=>L,AI_CHAT_SUPPORTED_IMAGES:()=>U,AI_CHAT_SUPPORTED_MIME_TYPES:()=>F,ALL_MIME_TYPES:()=>le,ARCHIVES:()=>w,ARCHIVE_MIME_TYPES:()=>E,ARCHIVE_MIME_TYPES_ARRAY:()=>_,AUDIO:()=>f,AUDIO_MIME_TYPES:()=>P,AUDIO_MIME_TYPES_ARRAY:()=>A,BUILT_IN_AGENT_TOOL_GROUPS:()=>G,BUILT_IN_AGENT_TOOL_NAMES:()=>be,BYTES:()=>X,CODE:()=>k,CODE_MIME_TYPES:()=>S,CODE_MIME_TYPES_ARRAY:()=>N,COLORS:()=>p,COLOR_GROUPS:()=>V,COUNTRIES:()=>l,CURRENCIES:()=>u,DEFAULT_ATTRIBUTE_ICONS:()=>K,DEFAULT_TAB_ICONS:()=>Y,DEFAULT_TENANT_ID:()=>We,DOCUMENTS:()=>y,DOCUMENT_MIME_TYPES:()=>a,DOCUMENT_MIME_TYPES_ARRAY:()=>D,FILE_SIZE:()=>d,FONTS:()=>q,FONT_MIME_TYPES:()=>O,FONT_MIME_TYPES_ARRAY:()=>B,GIGABYTES:()=>J,ICONS:()=>Xe,IMAGES:()=>x,IMAGE_MIME_TYPES:()=>i,IMAGE_MIME_TYPES_ARRAY:()=>M,KILOBYTES:()=>W,MEDIA:()=>ce,MEGABYTES:()=>$,MEMORY_DESCRIPTION_MAX_LENGTH:()=>ko,MEMORY_NAME_MAX_LENGTH:()=>wo,OFFICE_DOCUMENTS:()=>se,RECOMMENDED_MAX_SIZES:()=>Ye,SKILL_DESCRIPTION_MAX_LENGTH:()=>Mo,SKILL_NAME_MAX_LENGTH:()=>vo,STATUS_COLORS:()=>Pe,TEXT_FORMAT_PRESETS:()=>$e,VIDEO:()=>C,VIDEO_MIME_TYPES:()=>I,VIDEO_MIME_TYPES_ARRAY:()=>R,WEB_IMAGES:()=>ie,bytesToGb:()=>Ze,bytesToMb:()=>Ve,cn:()=>Te,gbToBytes:()=>ze,getAllColors:()=>Me,getAllCountries:()=>j,getAllCurrencies:()=>Fe,getColor:()=>ve,getColorIds:()=>De,getColorsByGroup:()=>_e,getCountryByIso2:()=>Ae,getCountryByIso3:()=>Z,getCountryDisplayName:()=>b,getCountryDisplayNameByIso3:()=>Be,getCurrency:()=>Le,getCurrencySymbol:()=>Ge,getDefaultAttributeIcon:()=>ye,getDefaultTabIcon:()=>we,getPhoneMaxDigits:()=>Ie,getPhoneTrunkPrefix:()=>Re,getSortedCountries:()=>qe,isArchiveMimeType:()=>ue,isAudioMimeType:()=>me,isCodeMimeType:()=>ge,isDocumentMimeType:()=>pe,isImageMimeType:()=>de,isValidColorId:()=>Ee,isValidCurrencyCode:()=>Ke,isValidIso2:()=>Se,isValidIso3:()=>Ne,isVideoMimeType:()=>he,isWithinSizeLimit:()=>je,mbToBytes:()=>He,stripTrunkPrefix:()=>Ue});module.exports=ae(Je);var i={JPEG:"image/jpeg",PNG:"image/png",GIF:"image/gif",WEBP:"image/webp",SVG:"image/svg+xml",BMP:"image/bmp",TIFF:"image/tiff",ICO:"image/x-icon",HEIC:"image/heic",HEIF:"image/heif"},M=Object.values(i),a={PDF:"application/pdf",DOC:"application/msword",DOCX:"application/vnd.openxmlformats-officedocument.wordprocessingml.document",XLS:"application/vnd.ms-excel",XLSX:"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",PPT:"application/vnd.ms-powerpoint",PPTX:"application/vnd.openxmlformats-officedocument.presentationml.presentation",ODT:"application/vnd.oasis.opendocument.text",ODS:"application/vnd.oasis.opendocument.spreadsheet",ODP:"application/vnd.oasis.opendocument.presentation",RTF:"application/rtf",TXT:"text/plain",CSV:"text/csv",MARKDOWN:"text/markdown"},D=Object.values(a),E={ZIP:"application/zip",RAR:"application/vnd.rar",TAR:"application/x-tar",GZIP:"application/gzip","7Z":"application/x-7z-compressed",BZ2:"application/x-bzip2"},_=Object.values(E),P={MP3:"audio/mpeg",WAV:"audio/wav",OGG:"audio/ogg",AAC:"audio/aac",FLAC:"audio/flac",M4A:"audio/mp4",WEBM:"audio/webm"},A=Object.values(P),I={MP4:"video/mp4",WEBM:"video/webm",OGG:"video/ogg",AVI:"video/x-msvideo",MOV:"video/quicktime",MKV:"video/x-matroska",FLV:"video/x-flv",WMV:"video/x-ms-wmv",MPEG:"video/mpeg"},R=Object.values(I),S={JAVASCRIPT:"text/javascript",TYPESCRIPT:"text/typescript",JSON:"application/json",XML:"application/xml",HTML:"text/html",CSS:"text/css",PYTHON:"text/x-python",JAVA:"text/x-java-source",C:"text/x-c",CPP:"text/x-c++",YAML:"application/x-yaml",SQL:"application/sql"},N=Object.values(S),O={TTF:"font/ttf",OTF:"font/otf",WOFF:"font/woff",WOFF2:"font/woff2",EOT:"application/vnd.ms-fontobject"},B=Object.values(O),x=M,y=D,w=_,f=A,C=R,k=N,q=B,ie=[i.JPEG,i.PNG,i.GIF,i.WEBP],se=[a.PDF,a.DOC,a.DOCX,a.XLS,a.XLSX,a.PPT,a.PPTX],ce=[...x,...f,...C],le=[...x,...y,...w,...f,...C,...k,...q],de=o(e=>x.includes(e),"isImageMimeType"),pe=o(e=>y.includes(e),"isDocumentMimeType"),ue=o(e=>w.includes(e),"isArchiveMimeType"),me=o(e=>f.includes(e),"isAudioMimeType"),he=o(e=>C.includes(e),"isVideoMimeType"),ge=o(e=>k.includes(e),"isCodeMimeType");var U=[i.JPEG,i.PNG,i.WEBP,i.GIF,i.SVG],L=[a.PDF,a.DOC,a.DOCX,a.TXT,a.MARKDOWN,a.CSV],F=[...U,...L],xe=F.join(","),fe=50*1024*1024,Ce=5;var G={bulk:["bulk_create_records","bulk_delete_records","bulk_search","bulk_update_records"],calendar:["get_calendar_event","get_meeting_transcript","search_calendar_events"],core:["archive_document","ask_questions","attach_file","call_reflex","create_folder","create_record","delete_record","exec_command","get_record","get_schema","get_skill","global_search","initialize_record_drive_structure","list_record_drive","list_workspace_users","load_toolset","publish_artifact","read_document","remove_file","request_work_mode","sandbox_get_file","sandbox_upload_file","sandbox_validate_payload","search_records","update_document","update_record","write_todos"],email:["download_email_attachments","get_email","get_email_thread","search_emails"],memory:["get_memory","save_memory","search_memories"],orchestration:["message_agent","spawn_agent"],schema:["apply_architect_operation","describe_architect_operation","discard_architect_draft","get_default_view","get_schema_history","request_design_review","search_icons"],web:["read_webpage","web_search"]},be=Object.values(G).flat();var K={text:"text-align-left",textarea:"align-left",number:"hash",checkbox:"check-square",date:"calendar",phone:"telephone",currency:"dollar-circle",status:"activity",location:"location",timestamp:"clock-circle",select:"chevron-down-circle",multiselect:"list-check",file:"file",user:"user",relation:"link",rating:"star",formula:"math",rollup:"chart-bar-stacked"};function ye(e){return K[e]??"circle"}o(ye,"getDefaultAttributeIcon");var Y={form:"layout",table:"table",custom:"puzzle",activity:"activity",richtext:"file-text",documents:"folder",forms:"clipboard",emails:"envelope",meetings:"calendar"};function we(e){return Y[e]??"circle"}o(we,"getDefaultTabIcon");var H=require("clsx"),z=require("tailwind-merge");var ke=(0,z.extendTailwindMerge)({extend:{classGroups:{"font-size":["text-control-2xs","text-control-xs","text-control-sm","text-control-default","text-control-lg","text-row-sm","text-row-default","text-row-lg","text-metric"],h:["h-control-sm","h-control-default","h-control-lg","h-row-sm","h-row-default","h-row-lg"],w:["w-control-sm","w-control-default","w-control-lg","w-query-popover"],size:["size-control-sm","size-control-default","size-control-lg"],p:["p-surface-sm","p-surface-default","p-surface-lg"]}}});function Te(...e){return ke((0,H.clsx)(e))}o(Te,"cn");var T=o((e,r)=>`light-dark(${e}, ${r})`,"lightDark");function n(e,r,t){let c=Number.parseInt(e.slice(1,3),16),s=Number.parseInt(e.slice(3,5),16),m=Number.parseInt(e.slice(5,7),16),h=o(Q=>`rgba(${c}, ${s}, ${m}, ${Q})`,"alpha");return{background:T(h(.15),h(.22)),border:T(h(.3),h(.42)),text:T(r,t),icon:e}}o(n,"defineColor");var p={gray:n("#6B7280","#374151","#D1D5DB"),slate:n("#64748B","#334155","#CBD5E1"),blue:n("#3B82F6","#1D4ED8","#93C5FD"),sky:n("#0EA5E9","#0369A1","#7DD3FC"),indigo:n("#6366F1","#4338CA","#A5B4FC"),green:n("#22C55E","#15803D","#86EFAC"),emerald:n("#10B981","#047857","#6EE7B7"),teal:n("#14B8A6","#0F766E","#5EEAD4"),red:n("#EF4444","#B91C1C","#FCA5A5"),rose:n("#F43F5E","#BE123C","#FDA4AF"),yellow:n("#EAB308","#A16207","#FDE047"),amber:n("#F59E0B","#B45309","#FCD34D"),orange:n("#F97316","#C2410C","#FDBA74"),purple:n("#A855F7","#7E22CE","#D8B4FE"),violet:n("#8B5CF6","#6D28D9","#C4B5FD"),fuchsia:n("#D946EF","#A21CAF","#F0ABFC"),pink:n("#EC4899","#BE185D","#F9A8D4"),cyan:n("#06B6D4","#0E7490","#67E8F9"),lime:n("#84CC16","#4D7C0F","#BEF264")},ve=o(e=>p[e],"getColor"),Me=o(()=>Object.values(p),"getAllColors"),De=o(()=>Object.keys(p),"getColorIds"),Ee=o(e=>e in p,"isValidColorId"),V={neutral:["gray","slate"],primary:["blue","indigo","sky"],success:["green","emerald","teal","lime"],danger:["red","rose"],warning:["yellow","amber","orange"],info:["blue","cyan","sky"],special:["purple","violet","fuchsia"],accent:["pink"]},_e=o(e=>[...V[e]],"getColorsByGroup"),Pe={idle:["gray","slate"],in_progress:["blue","indigo","sky","cyan","purple"],finished:["green","emerald","teal"],cancelled:["red","rose"],warning:["yellow","amber","orange"]};var l={FR:{name:"France",iso2:"FR",iso3:"FRA",numericCode:"250",phoneCode:"+33",phoneMaxDigits:10,phoneTrunkPrefix:"0"},US:{name:"United States",iso2:"US",iso3:"USA",numericCode:"840",phoneCode:"+1",phoneMaxDigits:10,phoneTrunkPrefix:""},GB:{name:"United Kingdom",iso2:"GB",iso3:"GBR",numericCode:"826",phoneCode:"+44",phoneMaxDigits:11,phoneTrunkPrefix:"0"},DE:{name:"Germany",iso2:"DE",iso3:"DEU",numericCode:"276",phoneCode:"+49",phoneMaxDigits:11,phoneTrunkPrefix:"0"},ES:{name:"Spain",iso2:"ES",iso3:"ESP",numericCode:"724",phoneCode:"+34",phoneMaxDigits:9,phoneTrunkPrefix:""},IT:{name:"Italy",iso2:"IT",iso3:"ITA",numericCode:"380",phoneCode:"+39",phoneMaxDigits:10,phoneTrunkPrefix:"0"},BE:{name:"Belgium",iso2:"BE",iso3:"BEL",numericCode:"056",phoneCode:"+32",phoneMaxDigits:9,phoneTrunkPrefix:"0"},CH:{name:"Switzerland",iso2:"CH",iso3:"CHE",numericCode:"756",phoneCode:"+41",phoneMaxDigits:10,phoneTrunkPrefix:"0"},NL:{name:"Netherlands",iso2:"NL",iso3:"NLD",numericCode:"528",phoneCode:"+31",phoneMaxDigits:9,phoneTrunkPrefix:"0"},PT:{name:"Portugal",iso2:"PT",iso3:"PRT",numericCode:"620",phoneCode:"+351",phoneMaxDigits:9,phoneTrunkPrefix:""},CA:{name:"Canada",iso2:"CA",iso3:"CAN",numericCode:"124",phoneCode:"+1",phoneMaxDigits:10,phoneTrunkPrefix:""},AU:{name:"Australia",iso2:"AU",iso3:"AUS",numericCode:"036",phoneCode:"+61",phoneMaxDigits:9,phoneTrunkPrefix:"0"},AT:{name:"Austria",iso2:"AT",iso3:"AUT",numericCode:"040",phoneCode:"+43",phoneMaxDigits:11,phoneTrunkPrefix:"0"},SE:{name:"Sweden",iso2:"SE",iso3:"SWE",numericCode:"752",phoneCode:"+46",phoneMaxDigits:10,phoneTrunkPrefix:"0"},NO:{name:"Norway",iso2:"NO",iso3:"NOR",numericCode:"578",phoneCode:"+47",phoneMaxDigits:8,phoneTrunkPrefix:""},DK:{name:"Denmark",iso2:"DK",iso3:"DNK",numericCode:"208",phoneCode:"+45",phoneMaxDigits:8,phoneTrunkPrefix:""},FI:{name:"Finland",iso2:"FI",iso3:"FIN",numericCode:"246",phoneCode:"+358",phoneMaxDigits:10,phoneTrunkPrefix:"0"},IE:{name:"Ireland",iso2:"IE",iso3:"IRL",numericCode:"372",phoneCode:"+353",phoneMaxDigits:10,phoneTrunkPrefix:"0"},PL:{name:"Poland",iso2:"PL",iso3:"POL",numericCode:"616",phoneCode:"+48",phoneMaxDigits:9,phoneTrunkPrefix:""},CZ:{name:"Czech Republic",iso2:"CZ",iso3:"CZE",numericCode:"203",phoneCode:"+420",phoneMaxDigits:9,phoneTrunkPrefix:""},GR:{name:"Greece",iso2:"GR",iso3:"GRC",numericCode:"300",phoneCode:"+30",phoneMaxDigits:10,phoneTrunkPrefix:""},RO:{name:"Romania",iso2:"RO",iso3:"ROU",numericCode:"642",phoneCode:"+40",phoneMaxDigits:10,phoneTrunkPrefix:"0"},HU:{name:"Hungary",iso2:"HU",iso3:"HUN",numericCode:"348",phoneCode:"+36",phoneMaxDigits:9,phoneTrunkPrefix:"06"},LU:{name:"Luxembourg",iso2:"LU",iso3:"LUX",numericCode:"442",phoneCode:"+352",phoneMaxDigits:9,phoneTrunkPrefix:""},SK:{name:"Slovakia",iso2:"SK",iso3:"SVK",numericCode:"703",phoneCode:"+421",phoneMaxDigits:9,phoneTrunkPrefix:"0"},BG:{name:"Bulgaria",iso2:"BG",iso3:"BGR",numericCode:"100",phoneCode:"+359",phoneMaxDigits:9,phoneTrunkPrefix:"0"},HR:{name:"Croatia",iso2:"HR",iso3:"HRV",numericCode:"191",phoneCode:"+385",phoneMaxDigits:9,phoneTrunkPrefix:"0"},SI:{name:"Slovenia",iso2:"SI",iso3:"SVN",numericCode:"705",phoneCode:"+386",phoneMaxDigits:8,phoneTrunkPrefix:"0"},EE:{name:"Estonia",iso2:"EE",iso3:"EST",numericCode:"233",phoneCode:"+372",phoneMaxDigits:8,phoneTrunkPrefix:""},LV:{name:"Latvia",iso2:"LV",iso3:"LVA",numericCode:"428",phoneCode:"+371",phoneMaxDigits:8,phoneTrunkPrefix:""},LT:{name:"Lithuania",iso2:"LT",iso3:"LTU",numericCode:"440",phoneCode:"+370",phoneMaxDigits:8,phoneTrunkPrefix:""},IS:{name:"Iceland",iso2:"IS",iso3:"ISL",numericCode:"352",phoneCode:"+354",phoneMaxDigits:7,phoneTrunkPrefix:""},MT:{name:"Malta",iso2:"MT",iso3:"MLT",numericCode:"470",phoneCode:"+356",phoneMaxDigits:8,phoneTrunkPrefix:""},CY:{name:"Cyprus",iso2:"CY",iso3:"CYP",numericCode:"196",phoneCode:"+357",phoneMaxDigits:8,phoneTrunkPrefix:""},MC:{name:"Monaco",iso2:"MC",iso3:"MCO",numericCode:"492",phoneCode:"+377",phoneMaxDigits:8,phoneTrunkPrefix:""},MX:{name:"Mexico",iso2:"MX",iso3:"MEX",numericCode:"484",phoneCode:"+52",phoneMaxDigits:10,phoneTrunkPrefix:""},BR:{name:"Brazil",iso2:"BR",iso3:"BRA",numericCode:"076",phoneCode:"+55",phoneMaxDigits:11,phoneTrunkPrefix:""},AR:{name:"Argentina",iso2:"AR",iso3:"ARG",numericCode:"032",phoneCode:"+54",phoneMaxDigits:10,phoneTrunkPrefix:""},CL:{name:"Chile",iso2:"CL",iso3:"CHL",numericCode:"152",phoneCode:"+56",phoneMaxDigits:9,phoneTrunkPrefix:""},CO:{name:"Colombia",iso2:"CO",iso3:"COL",numericCode:"170",phoneCode:"+57",phoneMaxDigits:10,phoneTrunkPrefix:""},PE:{name:"Peru",iso2:"PE",iso3:"PER",numericCode:"604",phoneCode:"+51",phoneMaxDigits:9,phoneTrunkPrefix:""},VE:{name:"Venezuela",iso2:"VE",iso3:"VEN",numericCode:"862",phoneCode:"+58",phoneMaxDigits:10,phoneTrunkPrefix:""},EC:{name:"Ecuador",iso2:"EC",iso3:"ECU",numericCode:"218",phoneCode:"+593",phoneMaxDigits:9,phoneTrunkPrefix:""},UY:{name:"Uruguay",iso2:"UY",iso3:"URY",numericCode:"858",phoneCode:"+598",phoneMaxDigits:8,phoneTrunkPrefix:""},PY:{name:"Paraguay",iso2:"PY",iso3:"PRY",numericCode:"600",phoneCode:"+595",phoneMaxDigits:9,phoneTrunkPrefix:""},BO:{name:"Bolivia",iso2:"BO",iso3:"BOL",numericCode:"068",phoneCode:"+591",phoneMaxDigits:8,phoneTrunkPrefix:""},CR:{name:"Costa Rica",iso2:"CR",iso3:"CRI",numericCode:"188",phoneCode:"+506",phoneMaxDigits:8,phoneTrunkPrefix:""},PA:{name:"Panama",iso2:"PA",iso3:"PAN",numericCode:"591",phoneCode:"+507",phoneMaxDigits:8,phoneTrunkPrefix:""},CN:{name:"China",iso2:"CN",iso3:"CHN",numericCode:"156",phoneCode:"+86",phoneMaxDigits:11,phoneTrunkPrefix:""},JP:{name:"Japan",iso2:"JP",iso3:"JPN",numericCode:"392",phoneCode:"+81",phoneMaxDigits:11,phoneTrunkPrefix:"0"},IN:{name:"India",iso2:"IN",iso3:"IND",numericCode:"356",phoneCode:"+91",phoneMaxDigits:10,phoneTrunkPrefix:""},KR:{name:"South Korea",iso2:"KR",iso3:"KOR",numericCode:"410",phoneCode:"+82",phoneMaxDigits:11,phoneTrunkPrefix:"0"},SG:{name:"Singapore",iso2:"SG",iso3:"SGP",numericCode:"702",phoneCode:"+65",phoneMaxDigits:8,phoneTrunkPrefix:""},HK:{name:"Hong Kong",iso2:"HK",iso3:"HKG",numericCode:"344",phoneCode:"+852",phoneMaxDigits:8,phoneTrunkPrefix:""},TW:{name:"Taiwan",iso2:"TW",iso3:"TWN",numericCode:"158",phoneCode:"+886",phoneMaxDigits:10,phoneTrunkPrefix:"0"},TH:{name:"Thailand",iso2:"TH",iso3:"THA",numericCode:"764",phoneCode:"+66",phoneMaxDigits:9,phoneTrunkPrefix:"0"},MY:{name:"Malaysia",iso2:"MY",iso3:"MYS",numericCode:"458",phoneCode:"+60",phoneMaxDigits:10,phoneTrunkPrefix:"0"},ID:{name:"Indonesia",iso2:"ID",iso3:"IDN",numericCode:"360",phoneCode:"+62",phoneMaxDigits:12,phoneTrunkPrefix:"0"},PH:{name:"Philippines",iso2:"PH",iso3:"PHL",numericCode:"608",phoneCode:"+63",phoneMaxDigits:10,phoneTrunkPrefix:"0"},VN:{name:"Vietnam",iso2:"VN",iso3:"VNM",numericCode:"704",phoneCode:"+84",phoneMaxDigits:10,phoneTrunkPrefix:"0"},PK:{name:"Pakistan",iso2:"PK",iso3:"PAK",numericCode:"586",phoneCode:"+92",phoneMaxDigits:10,phoneTrunkPrefix:"0"},BD:{name:"Bangladesh",iso2:"BD",iso3:"BGD",numericCode:"050",phoneCode:"+880",phoneMaxDigits:10,phoneTrunkPrefix:"0"},IL:{name:"Israel",iso2:"IL",iso3:"ISR",numericCode:"376",phoneCode:"+972",phoneMaxDigits:10,phoneTrunkPrefix:"0"},AE:{name:"United Arab Emirates",iso2:"AE",iso3:"ARE",numericCode:"784",phoneCode:"+971",phoneMaxDigits:9,phoneTrunkPrefix:""},SA:{name:"Saudi Arabia",iso2:"SA",iso3:"SAU",numericCode:"682",phoneCode:"+966",phoneMaxDigits:9,phoneTrunkPrefix:""},TR:{name:"Turkey",iso2:"TR",iso3:"TUR",numericCode:"792",phoneCode:"+90",phoneMaxDigits:10,phoneTrunkPrefix:"0"},NZ:{name:"New Zealand",iso2:"NZ",iso3:"NZL",numericCode:"554",phoneCode:"+64",phoneMaxDigits:10,phoneTrunkPrefix:"0"},ZA:{name:"South Africa",iso2:"ZA",iso3:"ZAF",numericCode:"710",phoneCode:"+27",phoneMaxDigits:9,phoneTrunkPrefix:"0"},EG:{name:"Egypt",iso2:"EG",iso3:"EGY",numericCode:"818",phoneCode:"+20",phoneMaxDigits:10,phoneTrunkPrefix:"0"},NG:{name:"Nigeria",iso2:"NG",iso3:"NGA",numericCode:"566",phoneCode:"+234",phoneMaxDigits:10,phoneTrunkPrefix:"0"},KE:{name:"Kenya",iso2:"KE",iso3:"KEN",numericCode:"404",phoneCode:"+254",phoneMaxDigits:9,phoneTrunkPrefix:"0"},MA:{name:"Morocco",iso2:"MA",iso3:"MAR",numericCode:"504",phoneCode:"+212",phoneMaxDigits:9,phoneTrunkPrefix:"0"},TN:{name:"Tunisia",iso2:"TN",iso3:"TUN",numericCode:"788",phoneCode:"+216",phoneMaxDigits:8,phoneTrunkPrefix:""},DZ:{name:"Algeria",iso2:"DZ",iso3:"DZA",numericCode:"012",phoneCode:"+213",phoneMaxDigits:9,phoneTrunkPrefix:"0"},QA:{name:"Qatar",iso2:"QA",iso3:"QAT",numericCode:"634",phoneCode:"+974",phoneMaxDigits:8,phoneTrunkPrefix:""},KW:{name:"Kuwait",iso2:"KW",iso3:"KWT",numericCode:"414",phoneCode:"+965",phoneMaxDigits:8,phoneTrunkPrefix:""},OM:{name:"Oman",iso2:"OM",iso3:"OMN",numericCode:"512",phoneCode:"+968",phoneMaxDigits:8,phoneTrunkPrefix:""},BH:{name:"Bahrain",iso2:"BH",iso3:"BHR",numericCode:"048",phoneCode:"+973",phoneMaxDigits:8,phoneTrunkPrefix:""},LB:{name:"Lebanon",iso2:"LB",iso3:"LBN",numericCode:"422",phoneCode:"+961",phoneMaxDigits:8,phoneTrunkPrefix:"0"},JO:{name:"Jordan",iso2:"JO",iso3:"JOR",numericCode:"400",phoneCode:"+962",phoneMaxDigits:9,phoneTrunkPrefix:"0"},RU:{name:"Russia",iso2:"RU",iso3:"RUS",numericCode:"643",phoneCode:"+7",phoneMaxDigits:10,phoneTrunkPrefix:""},UA:{name:"Ukraine",iso2:"UA",iso3:"UKR",numericCode:"804",phoneCode:"+380",phoneMaxDigits:9,phoneTrunkPrefix:"0"},BY:{name:"Belarus",iso2:"BY",iso3:"BLR",numericCode:"112",phoneCode:"+375",phoneMaxDigits:9,phoneTrunkPrefix:""},KZ:{name:"Kazakhstan",iso2:"KZ",iso3:"KAZ",numericCode:"398",phoneCode:"+7",phoneMaxDigits:10,phoneTrunkPrefix:""}},Ae=o(e=>l[e.toUpperCase()],"getCountryByIso2"),Z=o(e=>Object.values(l).find(r=>r.iso3.toUpperCase()===e.toUpperCase()),"getCountryByIso3"),j=o(()=>Object.values(l),"getAllCountries"),Ie=o(e=>l[e.toUpperCase()]?.phoneMaxDigits??15,"getPhoneMaxDigits"),Re=o(e=>l[e.toUpperCase()]?.phoneTrunkPrefix??"","getPhoneTrunkPrefix"),Se=o(e=>e.toUpperCase()in l,"isValidIso2"),Ne=o(e=>Object.values(l).some(r=>r.iso3.toUpperCase()===e.toUpperCase()),"isValidIso3"),v=new Map;function Oe(e){let r=e.join("\0"),t=v.get(r);if(t!==void 0)return t;try{let c=new Intl.DisplayNames(e,{type:"region"});return v.set(r,c),c}catch{return v.set(r,null),null}}o(Oe,"_getDisplayNames");function b(e,r=["fr","en"]){let t=e.toUpperCase(),c=Array.isArray(r)?r:[r],s=Oe(c);if(s)try{let m=s.of(t);if(m)return m}catch{}return l[t]?.name??t}o(b,"getCountryDisplayName");function Be(e,r){let t=Z(e);return t?b(t.iso2,r):e}o(Be,"getCountryDisplayNameByIso3");function qe(e="fr"){return j().sort((r,t)=>b(r.iso2,e).localeCompare(b(t.iso2,e),e))}o(qe,"getSortedCountries");function Ue(e,r){return r&&e.startsWith(r)?e.slice(r.length):e}o(Ue,"stripTrunkPrefix");var u={USD:{code:"USD",name:"US Dollar",symbol:"$",decimals:2},EUR:{code:"EUR",name:"Euro",symbol:"\u20AC",decimals:2},GBP:{code:"GBP",name:"British Pound",symbol:"\xA3",decimals:2},JPY:{code:"JPY",name:"Japanese Yen",symbol:"\xA5",decimals:0},CNY:{code:"CNY",name:"Chinese Yuan",symbol:"\xA5",decimals:2},CHF:{code:"CHF",name:"Swiss Franc",symbol:"CHF",decimals:2},SEK:{code:"SEK",name:"Swedish Krona",symbol:"kr",decimals:2},NOK:{code:"NOK",name:"Norwegian Krone",symbol:"kr",decimals:2},DKK:{code:"DKK",name:"Danish Krone",symbol:"kr",decimals:2},PLN:{code:"PLN",name:"Polish Zloty",symbol:"z\u0142",decimals:2},CZK:{code:"CZK",name:"Czech Koruna",symbol:"K\u010D",decimals:2},HUF:{code:"HUF",name:"Hungarian Forint",symbol:"Ft",decimals:0},RON:{code:"RON",name:"Romanian Leu",symbol:"lei",decimals:2},BGN:{code:"BGN",name:"Bulgarian Lev",symbol:"\u043B\u0432",decimals:2},HRK:{code:"HRK",name:"Croatian Kuna",symbol:"kn",decimals:2},ISK:{code:"ISK",name:"Icelandic Krona",symbol:"kr",decimals:0},RUB:{code:"RUB",name:"Russian Ruble",symbol:"\u20BD",decimals:2},UAH:{code:"UAH",name:"Ukrainian Hryvnia",symbol:"\u20B4",decimals:2},TRY:{code:"TRY",name:"Turkish Lira",symbol:"\u20BA",decimals:2},CAD:{code:"CAD",name:"Canadian Dollar",symbol:"CA$",decimals:2},MXN:{code:"MXN",name:"Mexican Peso",symbol:"MX$",decimals:2},BRL:{code:"BRL",name:"Brazilian Real",symbol:"R$",decimals:2},ARS:{code:"ARS",name:"Argentine Peso",symbol:"AR$",decimals:2},CLP:{code:"CLP",name:"Chilean Peso",symbol:"CL$",decimals:0},COP:{code:"COP",name:"Colombian Peso",symbol:"COL$",decimals:0},PEN:{code:"PEN",name:"Peruvian Sol",symbol:"S/",decimals:2},UYU:{code:"UYU",name:"Uruguayan Peso",symbol:"UY$",decimals:2},AUD:{code:"AUD",name:"Australian Dollar",symbol:"A$",decimals:2},NZD:{code:"NZD",name:"New Zealand Dollar",symbol:"NZ$",decimals:2},HKD:{code:"HKD",name:"Hong Kong Dollar",symbol:"HK$",decimals:2},SGD:{code:"SGD",name:"Singapore Dollar",symbol:"S$",decimals:2},KRW:{code:"KRW",name:"South Korean Won",symbol:"\u20A9",decimals:0},INR:{code:"INR",name:"Indian Rupee",symbol:"\u20B9",decimals:2},IDR:{code:"IDR",name:"Indonesian Rupiah",symbol:"Rp",decimals:0},MYR:{code:"MYR",name:"Malaysian Ringgit",symbol:"RM",decimals:2},PHP:{code:"PHP",name:"Philippine Peso",symbol:"\u20B1",decimals:2},THB:{code:"THB",name:"Thai Baht",symbol:"\u0E3F",decimals:2},VND:{code:"VND",name:"Vietnamese Dong",symbol:"\u20AB",decimals:0},TWD:{code:"TWD",name:"Taiwan Dollar",symbol:"NT$",decimals:0},PKR:{code:"PKR",name:"Pakistani Rupee",symbol:"\u20A8",decimals:2},BDT:{code:"BDT",name:"Bangladeshi Taka",symbol:"\u09F3",decimals:2},AED:{code:"AED",name:"UAE Dirham",symbol:"\u062F.\u0625",decimals:2},SAR:{code:"SAR",name:"Saudi Riyal",symbol:"\uFDFC",decimals:2},ILS:{code:"ILS",name:"Israeli Shekel",symbol:"\u20AA",decimals:2},QAR:{code:"QAR",name:"Qatari Riyal",symbol:"\uFDFC",decimals:2},KWD:{code:"KWD",name:"Kuwaiti Dinar",symbol:"\u062F.\u0643",decimals:3},BHD:{code:"BHD",name:"Bahraini Dinar",symbol:"\u062F.\u0628",decimals:3},OMR:{code:"OMR",name:"Omani Rial",symbol:"\uFDFC",decimals:3},JOD:{code:"JOD",name:"Jordanian Dinar",symbol:"\u062F.\u0627",decimals:3},LBP:{code:"LBP",name:"Lebanese Pound",symbol:"\u0644.\u0644",decimals:0},ZAR:{code:"ZAR",name:"South African Rand",symbol:"R",decimals:2},EGP:{code:"EGP",name:"Egyptian Pound",symbol:"\xA3",decimals:2},NGN:{code:"NGN",name:"Nigerian Naira",symbol:"\u20A6",decimals:2},KES:{code:"KES",name:"Kenyan Shilling",symbol:"KSh",decimals:2},MAD:{code:"MAD",name:"Moroccan Dirham",symbol:"\u062F.\u0645.",decimals:2},TND:{code:"TND",name:"Tunisian Dinar",symbol:"\u062F.\u062A",decimals:3},DZD:{code:"DZD",name:"Algerian Dinar",symbol:"\u062F.\u062C",decimals:2},NIS:{code:"NIS",name:"Israeli New Shekel",symbol:"\u20AA",decimals:2}},Le=o(e=>u[e.toUpperCase()],"getCurrency"),Fe=o(()=>Object.values(u),"getAllCurrencies"),Ge=o(e=>u[e.toUpperCase()]?.symbol||e,"getCurrencySymbol"),Ke=o(e=>e.toUpperCase()in u,"isValidCurrencyCode");var X={B_1:1,B_10:10,B_100:100,B_512:512},W={KB_1:1024,KB_2:2*1024,KB_5:5*1024,KB_10:10*1024,KB_50:50*1024,KB_100:100*1024,KB_500:500*1024},$={MB_1:1024*1024,MB_2:2*1024*1024,MB_5:5*1024*1024,MB_10:10*1024*1024,MB_20:20*1024*1024,MB_25:25*1024*1024,MB_50:50*1024*1024,MB_100:100*1024*1024,MB_200:200*1024*1024,MB_500:500*1024*1024},J={GB_1:1024*1024*1024,GB_2:2*1024*1024*1024,GB_5:5*1024*1024*1024,GB_10:10*1024*1024*1024},d={...X,...W,...$,...J},Ye={AVATAR:d.MB_2,IMAGE:d.MB_5,DOCUMENT:d.MB_10,PRESENTATION:d.MB_25,AUDIO:d.MB_50,VIDEO:d.MB_500,ARCHIVE:d.GB_1},He=o(e=>e*1024*1024,"mbToBytes"),ze=o(e=>e*1024*1024*1024,"gbToBytes"),Ve=o(e=>e/(1024*1024),"bytesToMb"),Ze=o(e=>e/(1024*1024*1024),"bytesToGb"),je=o((e,r)=>e<=r,"isWithinSizeLimit");var Xe=["a-arrow-down","a-arrow-up","academic-hat","accessibility","activity-square","activity","add-queue","aeroplane","air-conditioner","airplay","airpods","alarm-check","alarm-minus","alarm-plus","alarm-smoke","alarm-snooze","alarm-x","alarm","album","align-bottom","align-horizontal","align-left","align-right","align-top","align-vertical","alt","ambulance","ampersand-square","ampersand","ampersands","anchor","angry-circle","angry-ghost","angry-square","annoyed-circle","annoyed-ghost","annoyed-square","aperture","api","ar","archive","arrow-diagonal-one","arrow-diagonal-two","arrow-down-circle","arrow-down-left-circle","arrow-down-left-square","arrow-down-left-waves","arrow-down-left","arrow-down-right-circle","arrow-down-right-square","arrow-down-right-waves","arrow-down-right","arrow-down-square","arrow-down-waves","arrow-down","arrow-left-circle","arrow-left-right","arrow-left-square","arrow-left-waves","arrow-left","arrow-long-down-left","arrow-long-down-right","arrow-long-down","arrow-long-left","arrow-long-right","arrow-long-up-left","arrow-long-up-right","arrow-long-up","arrow-right-circle","arrow-right-square","arrow-right-waves","arrow-right","arrow-up-circle","arrow-up-down","arrow-up-left-circle","arrow-up-left-square","arrow-up-left-waves","arrow-up-left","arrow-up-right-circle","arrow-up-right-square","arrow-up-right-waves","arrow-up-right","arrow-up-square","arrow-up-waves","arrow-up","asterisk-circle","asterisk-diamond","asterisk-hexagon","asterisk-octagon","asterisk-square","asterisk-waves","at","atom","baby","backpack","badge","baggage-claim","ban","bank","baseball","bath","battery-charging-four","battery-charging-one","battery-charging-three","battery-charging-two","battery-charging","battery-check","battery-empty","battery-full","battery-minus","battery-plus","battery-x","bell-check","bell-home","bell-minus","bell-on","bell-plus","bell-slash","bell-snooze","bell-user","bell-x","bell","binoculars","bitcoin-circle","bitcoin-diamond","bitcoin-hexagon","bitcoin-octagon","bitcoin-square","bitcoin-waves","bitcoin","bluetooth","boat","book-check","book-dot","book-home","book-image","book-minus","book-open","book-plus","book-slash","book-snooze","book-user","book-x","book","bookmark-check","bookmark-dot","bookmark-home","bookmark-minus","bookmark-plus","bookmark-slash","bookmark-snooze","bookmark-user","bookmark-x","bookmark","bounding-box","bowl","box","brand-chrome","brand-codepen","brand-codesandbox","brand-dribbble","brand-facebook","brand-figma","brand-framer","brand-github","brand-gitlab","brand-google","brand-instagram","brand-linkedin","brand-pinterest","brand-pocket","brand-slack","brand-spotify","brand-telegram","brand-threads","brand-trello","brand-twitch","brand-twitter","brand-x","brand-youtube","briefcase-conveyor-belt","briefcase","brightness-high","brightness-low","bubbles","building-one","building","cable-car","cake","calendar-check","calendar-down","calendar-minus","calendar-plus","calendar-slash","calendar-up","calendar-x","calendar","camera-slash","camera","campfire","cannabis","caravan","cart-check","cart-minus","cart-plus","cart-x","cart","cast-screen","center-focus","chart-area","chart-bar-big","chart-bar-decreasing","chart-bar-increasing","chart-bar-one","chart-bar-stacked","chart-bar","chart-bubble","chart-candlestick","chart-column-big","chart-column-decreasing","chart-column-increasing","chart-column-stacked","chart-column","chart-gantt","chart-graph","chart-line","chart-network","chart-no-axes-column-decreasing","chart-no-axes-column-increasing","chart-no-axes-column","chart-no-axes-combined","chart-no-axes-gantt","chart-pie-one","chart-pie-two","chart-pie","chart-scatter","chart-spline","chat-check","chat-dots","chat-messages","chat-minus","chat-plus","chat-x","chat","check-circle-one","check-circle","check-diamond","check-hexagon","check-octagon","check-square-one","check-square","check-waves","check","chevron-double-down-left","chevron-double-down-right","chevron-double-down","chevron-double-left","chevron-double-right","chevron-double-up-left","chevron-double-up-right","chevron-double-up","chevron-down-circle","chevron-down-left-circle","chevron-down-left-square","chevron-down-left-waves","chevron-down-left","chevron-down-right-circle","chevron-down-right-square","chevron-down-right-waves","chevron-down-right","chevron-down-square","chevron-down-waves","chevron-down","chevron-left-circle","chevron-left-square","chevron-left-waves","chevron-left","chevron-right-circle","chevron-right-square","chevron-right-waves","chevron-right","chevron-up-circle","chevron-up-down","chevron-up-left-circle","chevron-up-left-square","chevron-up-left-waves","chevron-up-left","chevron-up-right-circle","chevron-up-right-square","chevron-up-right-waves","chevron-up-right","chevron-up-square","chevron-up-waves","chevron-up","chip","cigarette-off","cigarette","circle-dashed","circle-half-circle","circle-half","circle-notch","circle","click","clipboard","clock-circle","clock-diamond","clock-eight","clock-eleven","clock-five","clock-four","clock-hand","clock-hexagon","clock-nine","clock-octagon","clock-one","clock-seven","clock-six","clock-square","clock-ten","clock-three","clock-twelve","clock-two","clock-waves","cloud-download","cloud-drizzle","cloud-fog","cloud-hail","cloud-lightning","cloud-moon-rain","cloud-moon","cloud-off","cloud-rain-wind","cloud-rain","cloud-snow","cloud-sun-rain","cloud-sun","cloud-upload","cloud","cloudy","cocktail","code-circle","code-diamond","code-hexagon","code-octagon","code-square","code-waves","code","coffee","cog-four","cog-one","cog-three","cog-two","cog","columns","command","compass","components","confetti","config-vertical","config","contactless-circle","contactless","controller","cookie","copy","copyleft","copyright-slash","copyright","corner-down-left","corner-down-right","corner-left-down","corner-left-up","corner-right-down","corner-right-up","corner-up-left","corner-up-right","credit-card-check","credit-card-minus","credit-card-plus","credit-card-x","credit-card","croissant","crop","crosshair","cupcake","danger-circle","danger-diamond","danger-hexagon","danger-octagon","danger-square","danger-triangle","danger-waves","danger","database","daze-circle","daze-ghost","daze-square","delete","desktop","diamond","dice-five","dice-four","dice-one","dice-six","dice-three","dice-two","dislike","divide","dollar-circle","dollar-diamond","dollar-hexagon","dollar-octagon","dollar-square","dollar-waves","dollar","door-closed-locked","door-closed","door-open","dots-circle","dots-diamond","dots-hexagon","dots-octagon","dots-square","dots-vertical-circle","dots-vertical-diamond","dots-vertical-hexagon","dots-vertical-octagon","dots-vertical-square","dots-vertical-waves","dots-vertical","dots-waves","dots","download","drop","droplet-off","droplet","droplets","ear-slash","ear","earth","eclipse","edit-one","edit","egg","eight-circle","eight-diamond","eight-hexagon","eight-octagon","eight-square","eight-waves","eight","elevator","envelope-open","envelope","euro-circle","euro-diamond","euro-hexagon","euro-octagon","euro-square","euro-waves","euro","exclude","external-link","eye-slash","eye","face-id","fat-arrow-down-left","fat-arrow-down-right","fat-arrow-down","fat-arrow-left","fat-arrow-right","fat-arrow-up-left","fat-arrow-up-right","fat-arrow-up","fat-corner-down-left","fat-corner-down-right","fat-corner-left-down","fat-corner-left-up","fat-corner-right-down","fat-corner-right-up","fat-corner-up-left","fat-corner-up-right","female","file-check","file-minus","file-plus","file-text","file-x","file","film","filter-one","filter","fine-tune","fire","five-circle","five-diamond","five-hexagon","five-octagon","five-square","five-waves","five","flag-one","flag","flame-kindling","flame","flask","flower-2","flower","folder-check","folder-heart","folder-kanban","folder-minus","folder-one","folder-plus","folder-slash","folder-two","folder-x","folder","forward-circle","forward-diamond","forward-hexagon","forward-octagon","forward-square","forward-waves","forward","four-circle","four-diamond","four-hexagon","four-octagon","four-square","four-waves","four","frame","funny-circle","funny-ghost","funny-square","gift","git-branch","git-circle","git-commit","git-diamond","git-diff","git-hexagon","git-merge","git-octagon","git-pull-request","git-square","git-waves","glasses","globe","grid-one","grid","hand","hard-drive","hash-circle","hash-diamond","hash-hexagon","hash-octagon","hash-square","hash-waves","hash","haze","heading-five","heading-four","heading-one","heading-six","heading-three","heading-two","heading","headphones","heart-broken","heart-check","heart-circle","heart-diamond","heart-dot","heart-hexagon","heart-home","heart-minus","heart-octagon","heart-plus","heart-slash","heart-snooze","heart-square","heart-user","heart-waves","heart-x","heart","hexagon","home-check","home-minus","home-plus","home-smile","home-x","home","image-circle","image-rectangle","image","inbox-archive","inbox-check","inbox-down","inbox-minus","inbox-plus","inbox-up","inbox-x","inbox","incognito","indifferent-circle","indifferent-ghost","indifferent-square","infinity","info-circle","info-diamond","info-hexagon","info-octagon","info-square","info-triangle","info-waves","info","intersect","kanban","key","keyboard-brightness-high","keyboard-brightness-low","keyboard","label","lamp","layers-one","layers-three","layers-two","layout","leaf","leaves","letter-a-circle","letter-a-diamond","letter-a-hexagon","letter-a-octagon","letter-a-square","letter-a-waves","letter-a","letter-b-circle","letter-b-diamond","letter-b-hexagon","letter-b-octagon","letter-b-square","letter-b-waves","letter-b","letter-c-circle","letter-c-diamond","letter-c-hexagon","letter-c-octagon","letter-c-square","letter-c-waves","letter-c","letter-d-circle","letter-d-diamond","letter-d-hexagon","letter-d-octagon","letter-d-square","letter-d-waves","letter-d","letter-e-circle","letter-e-diamond","letter-e-hexagon","letter-e-octagon","letter-e-square","letter-e-waves","letter-e","letter-f-circle","letter-f-diamond","letter-f-hexagon","letter-f-octagon","letter-f-square","letter-f-waves","letter-f","letter-g-circle","letter-g-diamond","letter-g-hexagon","letter-g-octagon","letter-g-square","letter-g-waves","letter-g","letter-h-circle","letter-h-diamond","letter-h-hexagon","letter-h-octagon","letter-h-square","letter-h-waves","letter-h","letter-i-circle","letter-i-diamond","letter-i-hexagon","letter-i-octagon","letter-i-square","letter-i-waves","letter-i","letter-j-circle","letter-j-diamond","letter-j-hexagon","letter-j-octagon","letter-j-square","letter-j-waves","letter-j","letter-k-circle","letter-k-diamond","letter-k-hexagon","letter-k-octagon","letter-k-square","letter-k-waves","letter-k","letter-l-circle","letter-l-diamond","letter-l-hexagon","letter-l-octagon","letter-l-square","letter-l-waves","letter-l","letter-m-circle","letter-m-diamond","letter-m-hexagon","letter-m-octagon","letter-m-square","letter-m-waves","letter-m","letter-n-circle","letter-n-diamond","letter-n-hexagon","letter-n-octagon","letter-n-square","letter-n-waves","letter-n","letter-o-circle","letter-o-diamond","letter-o-hexagon","letter-o-octagon","letter-o-square","letter-o-waves","letter-o","letter-p-circle","letter-p-diamond","letter-p-hexagon","letter-p-octagon","letter-p-square","letter-p-waves","letter-p","letter-q-circle","letter-q-diamond","letter-q-hexagon","letter-q-octagon","letter-q-square","letter-q-waves","letter-q","letter-r-circle","letter-r-diamond","letter-r-hexagon","letter-r-octagon","letter-r-square","letter-r-waves","letter-r","letter-s-circle","letter-s-diamond","letter-s-hexagon","letter-s-octagon","letter-s-square","letter-s-waves","letter-s","letter-t-circle","letter-t-diamond","letter-t-hexagon","letter-t-octagon","letter-t-square","letter-t-waves","letter-t","letter-u-circle","letter-u-diamond","letter-u-hexagon","letter-u-octagon","letter-u-square","letter-u-waves","letter-u","letter-v-circle","letter-v-diamond","letter-v-hexagon","letter-v-octagon","letter-v-square","letter-v-waves","letter-v","letter-w-circle","letter-w-diamond","letter-w-hexagon","letter-w-octagon","letter-w-square","letter-w-waves","letter-w","letter-x-circle","letter-x-diamond","letter-x-hexagon","letter-x-octagon","letter-x-square","letter-x-waves","letter-x","letter-y-circle","letter-y-diamond","letter-y-hexagon","letter-y-octagon","letter-y-square","letter-y-waves","letter-y","letter-z-circle","letter-z-diamond","letter-z-hexagon","letter-z-octagon","letter-z-square","letter-z-waves","letter-z","lightning-off","lightning","like","line-chart-circle","line-chart-diamond","line-chart-hexagon","line-chart-octagon","line-chart-square","line-chart-waves","link-one","link-two","link","list-check","list-number","list","location-check","location-home","location-minus","location-plus","location-selected","location-slash","location-snooze","location-user","location-x","location","lock-circle","lock-diamond","lock-hexagon","lock-keyhole","lock-octagon","lock-open-keyhole","lock-open-password","lock-open","lock-password","lock-square","lock-waves","lock","login","logout","magnet","male","map","mask","math-square","math","maximize-one","maximize","menu","message-check","message-dots","message-minus","message-plus","message-reply","message-x","message","microphone-slash","microphone","minimize-one","minimize","minus-circle","minus-diamond","minus-hexagon","minus-octagon","minus-square","minus-waves","minus","mobile-signal-five","mobile-signal-four","mobile-signal-one","mobile-signal-three","mobile-signal-two","mobile","moon-star","moon","mountain-snow","mountain","mouse-pointer","move-diagonal-one","move-diagonal","move-horizontal","move-vertical","move","music-circle","music-diamond","music-hexagon","music-octagon","music-square","music-waves","music","myna","navigation-one","navigation","nine-circle","nine-diamond","nine-hexagon","nine-octagon","nine-square","nine-waves","nine","notification","octagon","one-circle","one-diamond","one-hexagon","one-octagon","one-square","one-waves","one","option","package","paint","panel-bottom-close","panel-bottom-inactive","panel-bottom-open","panel-bottom","panel-left-close","panel-left-inactive","panel-left-open","panel-left","panel-right-close","panel-right-inactive","panel-right-open","panel-right","panel-top-close","panel-top-inactive","panel-top-open","panel-top","paperclip","parking","password","path","pause-circle","pause-diamond","pause-hexagon","pause-octagon","pause-square","pause-waves","pause","pen","pencil","percentage-circle","percentage-diamond","percentage-hexagon","percentage-octagon","percentage-square","percentage-waves","percentage","pin","pizza","planet","play-circle","play-diamond","play-hexagon","play-octagon","play-square","play-waves","play","plus-circle","plus-diamond","plus-hexagon","plus-octagon","plus-square","plus-waves","plus","pokeball","power","presentation","printer","puzzle","question-circle","question-diamond","question-hexagon","question-octagon","question-square","question-waves","question","radio","rainbow","reception-bell","record","rectangle-vertical","rectangle","redo","refresh-alt","refresh","repeat","rewind-circle","rewind-diamond","rewind-hexagon","rewind-octagon","rewind-square","rewind-waves","rewind","rhombus","ribbon","rocket","room-service","rows","rss","ruler","rupee-circle","rupee-diamond","rupee-hexagon","rupee-octagon","rupee-square","rupee-waves","rupee","sad-circle","sad-ghost","sad-square","save","scan","scissors","sea-waves","search-check","search-circle","search-diamond","search-dot","search-hexagon","search-home","search-minus","search-octagon","search-plus","search-slash","search-snooze","search-square","search-user","search-waves","search-x","search","select-multiple","send","servers","seven-circle","seven-diamond","seven-hexagon","seven-octagon","seven-square","seven-waves","seven","share","shell","shield-check","shield-crossed","shield-minus","shield-one","shield-plus","shield-slash","shield-two","shield-x","shield","shooting-star","shopping-bag","shovel","shrub","shuffle-alt","shuffle","sidebar-alt","sidebar","signal-circle","signal-diamond","signal-hexagon","signal-octagon","signal-square","signal-waves","signal","six-circle","six-diamond","six-hexagon","six-octagon","six-square","six-waves","six","skip-back","skip-forward","slash-circle","slash-diamond","slash-hexagon","slash-octagon","slash-square","slash-waves","smile-circle","smile-ghost","smile-square","snow","snowflake","sofa","sort","sparkles","speaker","spinner-one","spinner","sprout","square-chart-gantt","square-dashed-kanban","square-dashed","square-half","square-kanban","square","star","stop-circle","stop-diamond","stop-hexagon","stop-octagon","stop-square","stop-waves","stop","store","subtract","sun-dim","sun-medium","sun-snow","sun","sunrise","sunset","support","swatches","table","tablet","tag-plus","tag","tally-five","tally-four","tally-one","tally-three","tally-two","target","telephone-call","telephone-forward","telephone-in","telephone-missed","telephone-out","telephone-slash","telephone","tent-tree","tent","terminal","text-align-center","text-align-left","text-align-right","text-justify","thermometer-snowflake","thermometer-sun","thermometer","three-circle","three-diamond","three-hexagon","three-octagon","three-square","three-waves","three","ticket-slash","ticket","toggle-left","toggle-right","tool","tornado","train","trash-one","trash-two","trash","tree-deciduous","tree-palm","tree-pine","tree","trees","trending-down","trending-up-down","trending-up","triangle","truck","tv","two-circle","two-diamond","two-hexagon","two-octagon","two-square","two-waves","two","type-bold","type-italic","type-text","type-underline","umbrella-off","umbrella","undo","union","unlink","upload","user-check","user-circle","user-diamond","user-hexagon","user-minus","user-octagon","user-plus","user-settings","user-square","user-waves","user-x","user","users-group","users","video-slash","video","volume-check","volume-high","volume-low","volume-minus","volume-none","volume-plus","volume-slash","volume-x","watch","waves","webcam","wheel","wheelchair","wifi-check","wifi-low","wifi-medium","wifi-minus","wifi-plus","wifi-slash","wifi-x","wifi","wind-arrow-down","wind","winds","wine","wink-circle","wink-ghost","wink-square","wrench","x-circle","x-diamond","x-hexagon","x-octagon","x-square","x-triangle","x-waves","x","yen-circle","yen-diamond","yen-hexagon","yen-octagon","yen-square","yen-waves","yen","zap-off","zap","zero-circle","zero-diamond","zero-hexagon","zero-octagon","zero-square","zero-waves","zero"];var wo=100,ko=160;var vo=100,Mo=160;var We="00000000-0000-0000-0000-000000000000";var $e=[{id:"email",label:"Email",icon:"envelope",group:"communication",storage:{kind:"format",value:"email"}},{id:"url",label:"URL",icon:"link",group:"communication",storage:{kind:"format",value:"url"}},{id:"phone_fr",label:"T\xE9l\xE9phone (FR)",icon:"telephone",group:"communication",storage:{kind:"pattern",regex:"^0[1-9]([-. ]?[0-9]{2}){4}$"}},{id:"slug",label:"Slug (kebab-case)",icon:"hash",group:"identifiants",storage:{kind:"format",value:"slug"}},{id:"alphanumeric",label:"Alphanum\xE9rique",icon:"type-text",group:"identifiants",storage:{kind:"pattern",regex:"^[a-zA-Z0-9]+$"}},{id:"siren",label:"SIREN",icon:"building",group:"business_fr",storage:{kind:"pattern",regex:"^[0-9]{9}$"}},{id:"siret",label:"SIRET",icon:"building",group:"business_fr",storage:{kind:"pattern",regex:"^[0-9]{14}$"}},{id:"postcode_fr",label:"Code postal (FR)",icon:"location",group:"business_fr",storage:{kind:"pattern",regex:"^[0-9]{5}$"}},{id:"iban",label:"IBAN",icon:"credit-card",group:"business_fr",storage:{kind:"pattern",regex:"^[A-Z]{2}[0-9]{2}[A-Z0-9]{1,30}$"}},{id:"vat_fr",label:"TVA intracom",icon:"credit-card",group:"business_fr",storage:{kind:"pattern",regex:"^[A-Z]{2}[0-9A-Z]{2,12}$"}},{id:"hex_color",label:"Code couleur hex",icon:"paint",group:"design",storage:{kind:"pattern",regex:"^#[0-9A-Fa-f]{6}$"}}];0&&(module.exports={AI_CHAT_ACCEPTED_TYPES,AI_CHAT_MAX_FILES,AI_CHAT_MAX_FILE_SIZE,AI_CHAT_SUPPORTED_DOCUMENTS,AI_CHAT_SUPPORTED_IMAGES,AI_CHAT_SUPPORTED_MIME_TYPES,ALL_MIME_TYPES,ARCHIVES,ARCHIVE_MIME_TYPES,ARCHIVE_MIME_TYPES_ARRAY,AUDIO,AUDIO_MIME_TYPES,AUDIO_MIME_TYPES_ARRAY,BUILT_IN_AGENT_TOOL_GROUPS,BUILT_IN_AGENT_TOOL_NAMES,BYTES,CODE,CODE_MIME_TYPES,CODE_MIME_TYPES_ARRAY,COLORS,COLOR_GROUPS,COUNTRIES,CURRENCIES,DEFAULT_ATTRIBUTE_ICONS,DEFAULT_TAB_ICONS,DEFAULT_TENANT_ID,DOCUMENTS,DOCUMENT_MIME_TYPES,DOCUMENT_MIME_TYPES_ARRAY,FILE_SIZE,FONTS,FONT_MIME_TYPES,FONT_MIME_TYPES_ARRAY,GIGABYTES,ICONS,IMAGES,IMAGE_MIME_TYPES,IMAGE_MIME_TYPES_ARRAY,KILOBYTES,MEDIA,MEGABYTES,MEMORY_DESCRIPTION_MAX_LENGTH,MEMORY_NAME_MAX_LENGTH,OFFICE_DOCUMENTS,RECOMMENDED_MAX_SIZES,SKILL_DESCRIPTION_MAX_LENGTH,SKILL_NAME_MAX_LENGTH,STATUS_COLORS,TEXT_FORMAT_PRESETS,VIDEO,VIDEO_MIME_TYPES,VIDEO_MIME_TYPES_ARRAY,WEB_IMAGES,bytesToGb,bytesToMb,cn,gbToBytes,getAllColors,getAllCountries,getAllCurrencies,getColor,getColorIds,getColorsByGroup,getCountryByIso2,getCountryByIso3,getCountryDisplayName,getCountryDisplayNameByIso3,getCurrency,getCurrencySymbol,getDefaultAttributeIcon,getDefaultTabIcon,getPhoneMaxDigits,getPhoneTrunkPrefix,getSortedCountries,isArchiveMimeType,isAudioMimeType,isCodeMimeType,isDocumentMimeType,isImageMimeType,isValidColorId,isValidCurrencyCode,isValidIso2,isValidIso3,isVideoMimeType,isWithinSizeLimit,mbToBytes,stripTrunkPrefix});
|
|
2
|
+
"use strict";var x=Object.defineProperty;var ee=Object.getOwnPropertyDescriptor;var oe=Object.getOwnPropertyNames;var re=Object.prototype.hasOwnProperty;var o=(e,r)=>x(e,"name",{value:r,configurable:!0});var ne=(e,r)=>{for(var a in r)x(e,a,{get:r[a],enumerable:!0})},ae=(e,r,a,c)=>{if(r&&typeof r=="object"||typeof r=="function")for(let s of oe(r))!re.call(e,s)&&s!==a&&x(e,s,{get:()=>r[s],enumerable:!(c=ee(r,s))||c.enumerable});return e};var te=e=>ae(x({},"__esModule",{value:!0}),e);var Je={};ne(Je,{AI_CHAT_ACCEPTED_TYPES:()=>xe,AI_CHAT_MAX_FILES:()=>Ce,AI_CHAT_MAX_FILE_SIZE:()=>fe,AI_CHAT_SUPPORTED_DOCUMENTS:()=>L,AI_CHAT_SUPPORTED_IMAGES:()=>U,AI_CHAT_SUPPORTED_MIME_TYPES:()=>G,ALL_MIME_TYPES:()=>le,ARCHIVES:()=>k,ARCHIVE_MIME_TYPES:()=>_,ARCHIVE_MIME_TYPES_ARRAY:()=>P,AUDIO:()=>C,AUDIO_MIME_TYPES:()=>A,AUDIO_MIME_TYPES_ARRAY:()=>I,BUILT_IN_AGENT_TOOL_GROUPS:()=>F,BUILT_IN_AGENT_TOOL_NAMES:()=>be,BYTES:()=>j,CODE:()=>T,CODE_MIME_TYPES:()=>p,CODE_MIME_TYPES_ARRAY:()=>N,COLORS:()=>u,COLOR_GROUPS:()=>V,COUNTRIES:()=>l,CURRENCIES:()=>m,DEFAULT_ATTRIBUTE_ICONS:()=>K,DEFAULT_TAB_ICONS:()=>Y,DEFAULT_TENANT_ID:()=>We,DOCUMENTS:()=>w,DOCUMENT_MIME_TYPES:()=>t,DOCUMENT_MIME_TYPES_ARRAY:()=>D,FILE_SIZE:()=>d,FONTS:()=>q,FONT_MIME_TYPES:()=>O,FONT_MIME_TYPES_ARRAY:()=>B,GIGABYTES:()=>J,ICONS:()=>je,IMAGES:()=>f,IMAGE_MIME_TYPES:()=>i,IMAGE_MIME_TYPES_ARRAY:()=>E,KILOBYTES:()=>W,MEDIA:()=>ce,MEGABYTES:()=>$,MEMORY_DESCRIPTION_MAX_LENGTH:()=>ko,MEMORY_NAME_MAX_LENGTH:()=>wo,OFFICE_DOCUMENTS:()=>se,RECOMMENDED_MAX_SIZES:()=>Ye,SKILL_DESCRIPTION_MAX_LENGTH:()=>Mo,SKILL_NAME_MAX_LENGTH:()=>vo,STATUS_COLORS:()=>Pe,TEXT_FORMAT_PRESETS:()=>$e,VIDEO:()=>b,VIDEO_MIME_TYPES:()=>R,VIDEO_MIME_TYPES_ARRAY:()=>S,WEB_IMAGES:()=>ie,bytesToGb:()=>Ze,bytesToMb:()=>Ve,cn:()=>Te,gbToBytes:()=>ze,getAllColors:()=>Me,getAllCountries:()=>X,getAllCurrencies:()=>Ge,getColor:()=>ve,getColorIds:()=>Ee,getColorsByGroup:()=>_e,getCountryByIso2:()=>Ae,getCountryByIso3:()=>Z,getCountryDisplayName:()=>y,getCountryDisplayNameByIso3:()=>Be,getCurrency:()=>Le,getCurrencySymbol:()=>Fe,getDefaultAttributeIcon:()=>ye,getDefaultTabIcon:()=>we,getPhoneMaxDigits:()=>Ie,getPhoneTrunkPrefix:()=>Re,getSortedCountries:()=>qe,isArchiveMimeType:()=>ue,isAudioMimeType:()=>me,isCodeMimeType:()=>ge,isDocumentMimeType:()=>pe,isImageMimeType:()=>de,isValidColorId:()=>De,isValidCurrencyCode:()=>Ke,isValidIso2:()=>Se,isValidIso3:()=>Ne,isVideoMimeType:()=>he,isWithinSizeLimit:()=>Xe,mbToBytes:()=>He,stripTrunkPrefix:()=>Ue});module.exports=te(Je);var i={JPEG:"image/jpeg",PNG:"image/png",GIF:"image/gif",WEBP:"image/webp",SVG:"image/svg+xml",BMP:"image/bmp",TIFF:"image/tiff",ICO:"image/x-icon",HEIC:"image/heic",HEIF:"image/heif"},E=Object.values(i),t={PDF:"application/pdf",DOC:"application/msword",DOCX:"application/vnd.openxmlformats-officedocument.wordprocessingml.document",XLS:"application/vnd.ms-excel",XLSX:"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",PPT:"application/vnd.ms-powerpoint",PPTX:"application/vnd.openxmlformats-officedocument.presentationml.presentation",ODT:"application/vnd.oasis.opendocument.text",ODS:"application/vnd.oasis.opendocument.spreadsheet",ODP:"application/vnd.oasis.opendocument.presentation",RTF:"application/rtf",TXT:"text/plain",CSV:"text/csv",MARKDOWN:"text/markdown"},D=Object.values(t),_={ZIP:"application/zip",RAR:"application/vnd.rar",TAR:"application/x-tar",GZIP:"application/gzip","7Z":"application/x-7z-compressed",BZ2:"application/x-bzip2"},P=Object.values(_),A={MP3:"audio/mpeg",WAV:"audio/wav",OGG:"audio/ogg",AAC:"audio/aac",FLAC:"audio/flac",M4A:"audio/mp4",WEBM:"audio/webm"},I=Object.values(A),R={MP4:"video/mp4",WEBM:"video/webm",OGG:"video/ogg",AVI:"video/x-msvideo",MOV:"video/quicktime",MKV:"video/x-matroska",FLV:"video/x-flv",WMV:"video/x-ms-wmv",MPEG:"video/mpeg"},S=Object.values(R),p={JAVASCRIPT:"text/javascript",JAVASCRIPT_LEGACY:"application/javascript",TYPESCRIPT:"text/typescript",JSON:"application/json",XML:"application/xml",HTML:"text/html",CSS:"text/css",PYTHON:"text/x-python",JAVA:"text/x-java-source",C:"text/x-c",CPP:"text/x-c++",YAML:"application/x-yaml",SQL:"application/sql"},N=Object.values(p),O={TTF:"font/ttf",OTF:"font/otf",WOFF:"font/woff",WOFF2:"font/woff2",EOT:"application/vnd.ms-fontobject"},B=Object.values(O),f=E,w=D,k=P,C=I,b=S,T=N,q=B,ie=[i.JPEG,i.PNG,i.GIF,i.WEBP],se=[t.PDF,t.DOC,t.DOCX,t.XLS,t.XLSX,t.PPT,t.PPTX],ce=[...f,...C,...b],le=[...f,...w,...k,...C,...b,...T,...q],de=o(e=>f.includes(e),"isImageMimeType"),pe=o(e=>w.includes(e),"isDocumentMimeType"),ue=o(e=>k.includes(e),"isArchiveMimeType"),me=o(e=>C.includes(e),"isAudioMimeType"),he=o(e=>b.includes(e),"isVideoMimeType"),ge=o(e=>T.includes(e),"isCodeMimeType");var U=[i.JPEG,i.PNG,i.WEBP,i.GIF,i.SVG],L=[t.PDF,t.DOC,t.DOCX,t.XLSX,t.TXT,t.MARKDOWN,t.CSV,p.JAVASCRIPT,p.JAVASCRIPT_LEGACY],G=[...U,...L],xe=G.join(","),fe=50*1024*1024,Ce=5;var F={bulk:["bulk_create_records","bulk_delete_records","bulk_search","bulk_update_records"],calendar:["get_calendar_event","get_meeting_transcript","search_calendar_events"],core:["archive_document","ask_questions","attach_file","call_reflex","create_folder","create_record","delete_record","exec_command","get_record","get_schema","get_skill","global_search","initialize_record_drive_structure","list_record_drive","list_workspace_users","load_toolset","publish_artifact","read_document","remove_file","request_work_mode","sandbox_get_file","sandbox_upload_file","sandbox_validate_payload","search_records","update_document","update_record","write_todos"],email:["download_email_attachments","get_email","get_email_thread","search_emails"],memory:["get_memory","save_memory","search_memories"],orchestration:["message_agent","spawn_agent"],schema:["apply_architect_operation","describe_architect_operation","discard_architect_draft","get_default_view","get_schema_history","request_design_review","search_icons"],web:["read_webpage","web_search"]},be=Object.values(F).flat();var K={text:"text-align-left",textarea:"align-left",number:"hash",checkbox:"check-square",date:"calendar",phone:"telephone",currency:"dollar-circle",status:"activity",location:"location",timestamp:"clock-circle",select:"chevron-down-circle",multiselect:"list-check",file:"file",user:"user",relation:"link",rating:"star",formula:"math",rollup:"chart-bar-stacked"};function ye(e){return K[e]??"circle"}o(ye,"getDefaultAttributeIcon");var Y={form:"layout",table:"table",custom:"puzzle",activity:"activity",richtext:"file-text",documents:"folder",forms:"clipboard",emails:"envelope",meetings:"calendar"};function we(e){return Y[e]??"circle"}o(we,"getDefaultTabIcon");var H=require("clsx"),z=require("tailwind-merge");var ke=(0,z.extendTailwindMerge)({extend:{classGroups:{"font-size":["text-control-2xs","text-control-xs","text-control-sm","text-control-default","text-control-lg","text-row-sm","text-row-default","text-row-lg","text-metric"],h:["h-control-sm","h-control-default","h-control-lg","h-row-sm","h-row-default","h-row-lg"],w:["w-control-sm","w-control-default","w-control-lg","w-query-popover"],size:["size-control-sm","size-control-default","size-control-lg"],p:["p-surface-sm","p-surface-default","p-surface-lg"]}}});function Te(...e){return ke((0,H.clsx)(e))}o(Te,"cn");var v=o((e,r)=>`light-dark(${e}, ${r})`,"lightDark");function n(e,r,a){let c=Number.parseInt(e.slice(1,3),16),s=Number.parseInt(e.slice(3,5),16),h=Number.parseInt(e.slice(5,7),16),g=o(Q=>`rgba(${c}, ${s}, ${h}, ${Q})`,"alpha");return{background:v(g(.15),g(.22)),border:v(g(.3),g(.42)),text:v(r,a),icon:e}}o(n,"defineColor");var u={gray:n("#6B7280","#374151","#D1D5DB"),slate:n("#64748B","#334155","#CBD5E1"),blue:n("#3B82F6","#1D4ED8","#93C5FD"),sky:n("#0EA5E9","#0369A1","#7DD3FC"),indigo:n("#6366F1","#4338CA","#A5B4FC"),green:n("#22C55E","#15803D","#86EFAC"),emerald:n("#10B981","#047857","#6EE7B7"),teal:n("#14B8A6","#0F766E","#5EEAD4"),red:n("#EF4444","#B91C1C","#FCA5A5"),rose:n("#F43F5E","#BE123C","#FDA4AF"),yellow:n("#EAB308","#A16207","#FDE047"),amber:n("#F59E0B","#B45309","#FCD34D"),orange:n("#F97316","#C2410C","#FDBA74"),purple:n("#A855F7","#7E22CE","#D8B4FE"),violet:n("#8B5CF6","#6D28D9","#C4B5FD"),fuchsia:n("#D946EF","#A21CAF","#F0ABFC"),pink:n("#EC4899","#BE185D","#F9A8D4"),cyan:n("#06B6D4","#0E7490","#67E8F9"),lime:n("#84CC16","#4D7C0F","#BEF264")},ve=o(e=>u[e],"getColor"),Me=o(()=>Object.values(u),"getAllColors"),Ee=o(()=>Object.keys(u),"getColorIds"),De=o(e=>e in u,"isValidColorId"),V={neutral:["gray","slate"],primary:["blue","indigo","sky"],success:["green","emerald","teal","lime"],danger:["red","rose"],warning:["yellow","amber","orange"],info:["blue","cyan","sky"],special:["purple","violet","fuchsia"],accent:["pink"]},_e=o(e=>[...V[e]],"getColorsByGroup"),Pe={idle:["gray","slate"],in_progress:["blue","indigo","sky","cyan","purple"],finished:["green","emerald","teal"],cancelled:["red","rose"],warning:["yellow","amber","orange"]};var l={FR:{name:"France",iso2:"FR",iso3:"FRA",numericCode:"250",phoneCode:"+33",phoneMaxDigits:10,phoneTrunkPrefix:"0"},US:{name:"United States",iso2:"US",iso3:"USA",numericCode:"840",phoneCode:"+1",phoneMaxDigits:10,phoneTrunkPrefix:""},GB:{name:"United Kingdom",iso2:"GB",iso3:"GBR",numericCode:"826",phoneCode:"+44",phoneMaxDigits:11,phoneTrunkPrefix:"0"},DE:{name:"Germany",iso2:"DE",iso3:"DEU",numericCode:"276",phoneCode:"+49",phoneMaxDigits:11,phoneTrunkPrefix:"0"},ES:{name:"Spain",iso2:"ES",iso3:"ESP",numericCode:"724",phoneCode:"+34",phoneMaxDigits:9,phoneTrunkPrefix:""},IT:{name:"Italy",iso2:"IT",iso3:"ITA",numericCode:"380",phoneCode:"+39",phoneMaxDigits:10,phoneTrunkPrefix:"0"},BE:{name:"Belgium",iso2:"BE",iso3:"BEL",numericCode:"056",phoneCode:"+32",phoneMaxDigits:9,phoneTrunkPrefix:"0"},CH:{name:"Switzerland",iso2:"CH",iso3:"CHE",numericCode:"756",phoneCode:"+41",phoneMaxDigits:10,phoneTrunkPrefix:"0"},NL:{name:"Netherlands",iso2:"NL",iso3:"NLD",numericCode:"528",phoneCode:"+31",phoneMaxDigits:9,phoneTrunkPrefix:"0"},PT:{name:"Portugal",iso2:"PT",iso3:"PRT",numericCode:"620",phoneCode:"+351",phoneMaxDigits:9,phoneTrunkPrefix:""},CA:{name:"Canada",iso2:"CA",iso3:"CAN",numericCode:"124",phoneCode:"+1",phoneMaxDigits:10,phoneTrunkPrefix:""},AU:{name:"Australia",iso2:"AU",iso3:"AUS",numericCode:"036",phoneCode:"+61",phoneMaxDigits:9,phoneTrunkPrefix:"0"},AT:{name:"Austria",iso2:"AT",iso3:"AUT",numericCode:"040",phoneCode:"+43",phoneMaxDigits:11,phoneTrunkPrefix:"0"},SE:{name:"Sweden",iso2:"SE",iso3:"SWE",numericCode:"752",phoneCode:"+46",phoneMaxDigits:10,phoneTrunkPrefix:"0"},NO:{name:"Norway",iso2:"NO",iso3:"NOR",numericCode:"578",phoneCode:"+47",phoneMaxDigits:8,phoneTrunkPrefix:""},DK:{name:"Denmark",iso2:"DK",iso3:"DNK",numericCode:"208",phoneCode:"+45",phoneMaxDigits:8,phoneTrunkPrefix:""},FI:{name:"Finland",iso2:"FI",iso3:"FIN",numericCode:"246",phoneCode:"+358",phoneMaxDigits:10,phoneTrunkPrefix:"0"},IE:{name:"Ireland",iso2:"IE",iso3:"IRL",numericCode:"372",phoneCode:"+353",phoneMaxDigits:10,phoneTrunkPrefix:"0"},PL:{name:"Poland",iso2:"PL",iso3:"POL",numericCode:"616",phoneCode:"+48",phoneMaxDigits:9,phoneTrunkPrefix:""},CZ:{name:"Czech Republic",iso2:"CZ",iso3:"CZE",numericCode:"203",phoneCode:"+420",phoneMaxDigits:9,phoneTrunkPrefix:""},GR:{name:"Greece",iso2:"GR",iso3:"GRC",numericCode:"300",phoneCode:"+30",phoneMaxDigits:10,phoneTrunkPrefix:""},RO:{name:"Romania",iso2:"RO",iso3:"ROU",numericCode:"642",phoneCode:"+40",phoneMaxDigits:10,phoneTrunkPrefix:"0"},HU:{name:"Hungary",iso2:"HU",iso3:"HUN",numericCode:"348",phoneCode:"+36",phoneMaxDigits:9,phoneTrunkPrefix:"06"},LU:{name:"Luxembourg",iso2:"LU",iso3:"LUX",numericCode:"442",phoneCode:"+352",phoneMaxDigits:9,phoneTrunkPrefix:""},SK:{name:"Slovakia",iso2:"SK",iso3:"SVK",numericCode:"703",phoneCode:"+421",phoneMaxDigits:9,phoneTrunkPrefix:"0"},BG:{name:"Bulgaria",iso2:"BG",iso3:"BGR",numericCode:"100",phoneCode:"+359",phoneMaxDigits:9,phoneTrunkPrefix:"0"},HR:{name:"Croatia",iso2:"HR",iso3:"HRV",numericCode:"191",phoneCode:"+385",phoneMaxDigits:9,phoneTrunkPrefix:"0"},SI:{name:"Slovenia",iso2:"SI",iso3:"SVN",numericCode:"705",phoneCode:"+386",phoneMaxDigits:8,phoneTrunkPrefix:"0"},EE:{name:"Estonia",iso2:"EE",iso3:"EST",numericCode:"233",phoneCode:"+372",phoneMaxDigits:8,phoneTrunkPrefix:""},LV:{name:"Latvia",iso2:"LV",iso3:"LVA",numericCode:"428",phoneCode:"+371",phoneMaxDigits:8,phoneTrunkPrefix:""},LT:{name:"Lithuania",iso2:"LT",iso3:"LTU",numericCode:"440",phoneCode:"+370",phoneMaxDigits:8,phoneTrunkPrefix:""},IS:{name:"Iceland",iso2:"IS",iso3:"ISL",numericCode:"352",phoneCode:"+354",phoneMaxDigits:7,phoneTrunkPrefix:""},MT:{name:"Malta",iso2:"MT",iso3:"MLT",numericCode:"470",phoneCode:"+356",phoneMaxDigits:8,phoneTrunkPrefix:""},CY:{name:"Cyprus",iso2:"CY",iso3:"CYP",numericCode:"196",phoneCode:"+357",phoneMaxDigits:8,phoneTrunkPrefix:""},MC:{name:"Monaco",iso2:"MC",iso3:"MCO",numericCode:"492",phoneCode:"+377",phoneMaxDigits:8,phoneTrunkPrefix:""},MX:{name:"Mexico",iso2:"MX",iso3:"MEX",numericCode:"484",phoneCode:"+52",phoneMaxDigits:10,phoneTrunkPrefix:""},BR:{name:"Brazil",iso2:"BR",iso3:"BRA",numericCode:"076",phoneCode:"+55",phoneMaxDigits:11,phoneTrunkPrefix:""},AR:{name:"Argentina",iso2:"AR",iso3:"ARG",numericCode:"032",phoneCode:"+54",phoneMaxDigits:10,phoneTrunkPrefix:""},CL:{name:"Chile",iso2:"CL",iso3:"CHL",numericCode:"152",phoneCode:"+56",phoneMaxDigits:9,phoneTrunkPrefix:""},CO:{name:"Colombia",iso2:"CO",iso3:"COL",numericCode:"170",phoneCode:"+57",phoneMaxDigits:10,phoneTrunkPrefix:""},PE:{name:"Peru",iso2:"PE",iso3:"PER",numericCode:"604",phoneCode:"+51",phoneMaxDigits:9,phoneTrunkPrefix:""},VE:{name:"Venezuela",iso2:"VE",iso3:"VEN",numericCode:"862",phoneCode:"+58",phoneMaxDigits:10,phoneTrunkPrefix:""},EC:{name:"Ecuador",iso2:"EC",iso3:"ECU",numericCode:"218",phoneCode:"+593",phoneMaxDigits:9,phoneTrunkPrefix:""},UY:{name:"Uruguay",iso2:"UY",iso3:"URY",numericCode:"858",phoneCode:"+598",phoneMaxDigits:8,phoneTrunkPrefix:""},PY:{name:"Paraguay",iso2:"PY",iso3:"PRY",numericCode:"600",phoneCode:"+595",phoneMaxDigits:9,phoneTrunkPrefix:""},BO:{name:"Bolivia",iso2:"BO",iso3:"BOL",numericCode:"068",phoneCode:"+591",phoneMaxDigits:8,phoneTrunkPrefix:""},CR:{name:"Costa Rica",iso2:"CR",iso3:"CRI",numericCode:"188",phoneCode:"+506",phoneMaxDigits:8,phoneTrunkPrefix:""},PA:{name:"Panama",iso2:"PA",iso3:"PAN",numericCode:"591",phoneCode:"+507",phoneMaxDigits:8,phoneTrunkPrefix:""},CN:{name:"China",iso2:"CN",iso3:"CHN",numericCode:"156",phoneCode:"+86",phoneMaxDigits:11,phoneTrunkPrefix:""},JP:{name:"Japan",iso2:"JP",iso3:"JPN",numericCode:"392",phoneCode:"+81",phoneMaxDigits:11,phoneTrunkPrefix:"0"},IN:{name:"India",iso2:"IN",iso3:"IND",numericCode:"356",phoneCode:"+91",phoneMaxDigits:10,phoneTrunkPrefix:""},KR:{name:"South Korea",iso2:"KR",iso3:"KOR",numericCode:"410",phoneCode:"+82",phoneMaxDigits:11,phoneTrunkPrefix:"0"},SG:{name:"Singapore",iso2:"SG",iso3:"SGP",numericCode:"702",phoneCode:"+65",phoneMaxDigits:8,phoneTrunkPrefix:""},HK:{name:"Hong Kong",iso2:"HK",iso3:"HKG",numericCode:"344",phoneCode:"+852",phoneMaxDigits:8,phoneTrunkPrefix:""},TW:{name:"Taiwan",iso2:"TW",iso3:"TWN",numericCode:"158",phoneCode:"+886",phoneMaxDigits:10,phoneTrunkPrefix:"0"},TH:{name:"Thailand",iso2:"TH",iso3:"THA",numericCode:"764",phoneCode:"+66",phoneMaxDigits:9,phoneTrunkPrefix:"0"},MY:{name:"Malaysia",iso2:"MY",iso3:"MYS",numericCode:"458",phoneCode:"+60",phoneMaxDigits:10,phoneTrunkPrefix:"0"},ID:{name:"Indonesia",iso2:"ID",iso3:"IDN",numericCode:"360",phoneCode:"+62",phoneMaxDigits:12,phoneTrunkPrefix:"0"},PH:{name:"Philippines",iso2:"PH",iso3:"PHL",numericCode:"608",phoneCode:"+63",phoneMaxDigits:10,phoneTrunkPrefix:"0"},VN:{name:"Vietnam",iso2:"VN",iso3:"VNM",numericCode:"704",phoneCode:"+84",phoneMaxDigits:10,phoneTrunkPrefix:"0"},PK:{name:"Pakistan",iso2:"PK",iso3:"PAK",numericCode:"586",phoneCode:"+92",phoneMaxDigits:10,phoneTrunkPrefix:"0"},BD:{name:"Bangladesh",iso2:"BD",iso3:"BGD",numericCode:"050",phoneCode:"+880",phoneMaxDigits:10,phoneTrunkPrefix:"0"},IL:{name:"Israel",iso2:"IL",iso3:"ISR",numericCode:"376",phoneCode:"+972",phoneMaxDigits:10,phoneTrunkPrefix:"0"},AE:{name:"United Arab Emirates",iso2:"AE",iso3:"ARE",numericCode:"784",phoneCode:"+971",phoneMaxDigits:9,phoneTrunkPrefix:""},SA:{name:"Saudi Arabia",iso2:"SA",iso3:"SAU",numericCode:"682",phoneCode:"+966",phoneMaxDigits:9,phoneTrunkPrefix:""},TR:{name:"Turkey",iso2:"TR",iso3:"TUR",numericCode:"792",phoneCode:"+90",phoneMaxDigits:10,phoneTrunkPrefix:"0"},NZ:{name:"New Zealand",iso2:"NZ",iso3:"NZL",numericCode:"554",phoneCode:"+64",phoneMaxDigits:10,phoneTrunkPrefix:"0"},ZA:{name:"South Africa",iso2:"ZA",iso3:"ZAF",numericCode:"710",phoneCode:"+27",phoneMaxDigits:9,phoneTrunkPrefix:"0"},EG:{name:"Egypt",iso2:"EG",iso3:"EGY",numericCode:"818",phoneCode:"+20",phoneMaxDigits:10,phoneTrunkPrefix:"0"},NG:{name:"Nigeria",iso2:"NG",iso3:"NGA",numericCode:"566",phoneCode:"+234",phoneMaxDigits:10,phoneTrunkPrefix:"0"},KE:{name:"Kenya",iso2:"KE",iso3:"KEN",numericCode:"404",phoneCode:"+254",phoneMaxDigits:9,phoneTrunkPrefix:"0"},MA:{name:"Morocco",iso2:"MA",iso3:"MAR",numericCode:"504",phoneCode:"+212",phoneMaxDigits:9,phoneTrunkPrefix:"0"},TN:{name:"Tunisia",iso2:"TN",iso3:"TUN",numericCode:"788",phoneCode:"+216",phoneMaxDigits:8,phoneTrunkPrefix:""},DZ:{name:"Algeria",iso2:"DZ",iso3:"DZA",numericCode:"012",phoneCode:"+213",phoneMaxDigits:9,phoneTrunkPrefix:"0"},QA:{name:"Qatar",iso2:"QA",iso3:"QAT",numericCode:"634",phoneCode:"+974",phoneMaxDigits:8,phoneTrunkPrefix:""},KW:{name:"Kuwait",iso2:"KW",iso3:"KWT",numericCode:"414",phoneCode:"+965",phoneMaxDigits:8,phoneTrunkPrefix:""},OM:{name:"Oman",iso2:"OM",iso3:"OMN",numericCode:"512",phoneCode:"+968",phoneMaxDigits:8,phoneTrunkPrefix:""},BH:{name:"Bahrain",iso2:"BH",iso3:"BHR",numericCode:"048",phoneCode:"+973",phoneMaxDigits:8,phoneTrunkPrefix:""},LB:{name:"Lebanon",iso2:"LB",iso3:"LBN",numericCode:"422",phoneCode:"+961",phoneMaxDigits:8,phoneTrunkPrefix:"0"},JO:{name:"Jordan",iso2:"JO",iso3:"JOR",numericCode:"400",phoneCode:"+962",phoneMaxDigits:9,phoneTrunkPrefix:"0"},RU:{name:"Russia",iso2:"RU",iso3:"RUS",numericCode:"643",phoneCode:"+7",phoneMaxDigits:10,phoneTrunkPrefix:""},UA:{name:"Ukraine",iso2:"UA",iso3:"UKR",numericCode:"804",phoneCode:"+380",phoneMaxDigits:9,phoneTrunkPrefix:"0"},BY:{name:"Belarus",iso2:"BY",iso3:"BLR",numericCode:"112",phoneCode:"+375",phoneMaxDigits:9,phoneTrunkPrefix:""},KZ:{name:"Kazakhstan",iso2:"KZ",iso3:"KAZ",numericCode:"398",phoneCode:"+7",phoneMaxDigits:10,phoneTrunkPrefix:""}},Ae=o(e=>l[e.toUpperCase()],"getCountryByIso2"),Z=o(e=>Object.values(l).find(r=>r.iso3.toUpperCase()===e.toUpperCase()),"getCountryByIso3"),X=o(()=>Object.values(l),"getAllCountries"),Ie=o(e=>l[e.toUpperCase()]?.phoneMaxDigits??15,"getPhoneMaxDigits"),Re=o(e=>l[e.toUpperCase()]?.phoneTrunkPrefix??"","getPhoneTrunkPrefix"),Se=o(e=>e.toUpperCase()in l,"isValidIso2"),Ne=o(e=>Object.values(l).some(r=>r.iso3.toUpperCase()===e.toUpperCase()),"isValidIso3"),M=new Map;function Oe(e){let r=e.join("\0"),a=M.get(r);if(a!==void 0)return a;try{let c=new Intl.DisplayNames(e,{type:"region"});return M.set(r,c),c}catch{return M.set(r,null),null}}o(Oe,"_getDisplayNames");function y(e,r=["fr","en"]){let a=e.toUpperCase(),c=Array.isArray(r)?r:[r],s=Oe(c);if(s)try{let h=s.of(a);if(h)return h}catch{}return l[a]?.name??a}o(y,"getCountryDisplayName");function Be(e,r){let a=Z(e);return a?y(a.iso2,r):e}o(Be,"getCountryDisplayNameByIso3");function qe(e="fr"){return X().sort((r,a)=>y(r.iso2,e).localeCompare(y(a.iso2,e),e))}o(qe,"getSortedCountries");function Ue(e,r){return r&&e.startsWith(r)?e.slice(r.length):e}o(Ue,"stripTrunkPrefix");var m={USD:{code:"USD",name:"US Dollar",symbol:"$",decimals:2},EUR:{code:"EUR",name:"Euro",symbol:"\u20AC",decimals:2},GBP:{code:"GBP",name:"British Pound",symbol:"\xA3",decimals:2},JPY:{code:"JPY",name:"Japanese Yen",symbol:"\xA5",decimals:0},CNY:{code:"CNY",name:"Chinese Yuan",symbol:"\xA5",decimals:2},CHF:{code:"CHF",name:"Swiss Franc",symbol:"CHF",decimals:2},SEK:{code:"SEK",name:"Swedish Krona",symbol:"kr",decimals:2},NOK:{code:"NOK",name:"Norwegian Krone",symbol:"kr",decimals:2},DKK:{code:"DKK",name:"Danish Krone",symbol:"kr",decimals:2},PLN:{code:"PLN",name:"Polish Zloty",symbol:"z\u0142",decimals:2},CZK:{code:"CZK",name:"Czech Koruna",symbol:"K\u010D",decimals:2},HUF:{code:"HUF",name:"Hungarian Forint",symbol:"Ft",decimals:0},RON:{code:"RON",name:"Romanian Leu",symbol:"lei",decimals:2},BGN:{code:"BGN",name:"Bulgarian Lev",symbol:"\u043B\u0432",decimals:2},HRK:{code:"HRK",name:"Croatian Kuna",symbol:"kn",decimals:2},ISK:{code:"ISK",name:"Icelandic Krona",symbol:"kr",decimals:0},RUB:{code:"RUB",name:"Russian Ruble",symbol:"\u20BD",decimals:2},UAH:{code:"UAH",name:"Ukrainian Hryvnia",symbol:"\u20B4",decimals:2},TRY:{code:"TRY",name:"Turkish Lira",symbol:"\u20BA",decimals:2},CAD:{code:"CAD",name:"Canadian Dollar",symbol:"CA$",decimals:2},MXN:{code:"MXN",name:"Mexican Peso",symbol:"MX$",decimals:2},BRL:{code:"BRL",name:"Brazilian Real",symbol:"R$",decimals:2},ARS:{code:"ARS",name:"Argentine Peso",symbol:"AR$",decimals:2},CLP:{code:"CLP",name:"Chilean Peso",symbol:"CL$",decimals:0},COP:{code:"COP",name:"Colombian Peso",symbol:"COL$",decimals:0},PEN:{code:"PEN",name:"Peruvian Sol",symbol:"S/",decimals:2},UYU:{code:"UYU",name:"Uruguayan Peso",symbol:"UY$",decimals:2},AUD:{code:"AUD",name:"Australian Dollar",symbol:"A$",decimals:2},NZD:{code:"NZD",name:"New Zealand Dollar",symbol:"NZ$",decimals:2},HKD:{code:"HKD",name:"Hong Kong Dollar",symbol:"HK$",decimals:2},SGD:{code:"SGD",name:"Singapore Dollar",symbol:"S$",decimals:2},KRW:{code:"KRW",name:"South Korean Won",symbol:"\u20A9",decimals:0},INR:{code:"INR",name:"Indian Rupee",symbol:"\u20B9",decimals:2},IDR:{code:"IDR",name:"Indonesian Rupiah",symbol:"Rp",decimals:0},MYR:{code:"MYR",name:"Malaysian Ringgit",symbol:"RM",decimals:2},PHP:{code:"PHP",name:"Philippine Peso",symbol:"\u20B1",decimals:2},THB:{code:"THB",name:"Thai Baht",symbol:"\u0E3F",decimals:2},VND:{code:"VND",name:"Vietnamese Dong",symbol:"\u20AB",decimals:0},TWD:{code:"TWD",name:"Taiwan Dollar",symbol:"NT$",decimals:0},PKR:{code:"PKR",name:"Pakistani Rupee",symbol:"\u20A8",decimals:2},BDT:{code:"BDT",name:"Bangladeshi Taka",symbol:"\u09F3",decimals:2},AED:{code:"AED",name:"UAE Dirham",symbol:"\u062F.\u0625",decimals:2},SAR:{code:"SAR",name:"Saudi Riyal",symbol:"\uFDFC",decimals:2},ILS:{code:"ILS",name:"Israeli Shekel",symbol:"\u20AA",decimals:2},QAR:{code:"QAR",name:"Qatari Riyal",symbol:"\uFDFC",decimals:2},KWD:{code:"KWD",name:"Kuwaiti Dinar",symbol:"\u062F.\u0643",decimals:3},BHD:{code:"BHD",name:"Bahraini Dinar",symbol:"\u062F.\u0628",decimals:3},OMR:{code:"OMR",name:"Omani Rial",symbol:"\uFDFC",decimals:3},JOD:{code:"JOD",name:"Jordanian Dinar",symbol:"\u062F.\u0627",decimals:3},LBP:{code:"LBP",name:"Lebanese Pound",symbol:"\u0644.\u0644",decimals:0},ZAR:{code:"ZAR",name:"South African Rand",symbol:"R",decimals:2},EGP:{code:"EGP",name:"Egyptian Pound",symbol:"\xA3",decimals:2},NGN:{code:"NGN",name:"Nigerian Naira",symbol:"\u20A6",decimals:2},KES:{code:"KES",name:"Kenyan Shilling",symbol:"KSh",decimals:2},MAD:{code:"MAD",name:"Moroccan Dirham",symbol:"\u062F.\u0645.",decimals:2},TND:{code:"TND",name:"Tunisian Dinar",symbol:"\u062F.\u062A",decimals:3},DZD:{code:"DZD",name:"Algerian Dinar",symbol:"\u062F.\u062C",decimals:2},NIS:{code:"NIS",name:"Israeli New Shekel",symbol:"\u20AA",decimals:2}},Le=o(e=>m[e.toUpperCase()],"getCurrency"),Ge=o(()=>Object.values(m),"getAllCurrencies"),Fe=o(e=>m[e.toUpperCase()]?.symbol||e,"getCurrencySymbol"),Ke=o(e=>e.toUpperCase()in m,"isValidCurrencyCode");var j={B_1:1,B_10:10,B_100:100,B_512:512},W={KB_1:1024,KB_2:2*1024,KB_5:5*1024,KB_10:10*1024,KB_50:50*1024,KB_100:100*1024,KB_500:500*1024},$={MB_1:1024*1024,MB_2:2*1024*1024,MB_5:5*1024*1024,MB_10:10*1024*1024,MB_20:20*1024*1024,MB_25:25*1024*1024,MB_50:50*1024*1024,MB_100:100*1024*1024,MB_200:200*1024*1024,MB_500:500*1024*1024},J={GB_1:1024*1024*1024,GB_2:2*1024*1024*1024,GB_5:5*1024*1024*1024,GB_10:10*1024*1024*1024},d={...j,...W,...$,...J},Ye={AVATAR:d.MB_2,IMAGE:d.MB_5,DOCUMENT:d.MB_10,PRESENTATION:d.MB_25,AUDIO:d.MB_50,VIDEO:d.MB_500,ARCHIVE:d.GB_1},He=o(e=>e*1024*1024,"mbToBytes"),ze=o(e=>e*1024*1024*1024,"gbToBytes"),Ve=o(e=>e/(1024*1024),"bytesToMb"),Ze=o(e=>e/(1024*1024*1024),"bytesToGb"),Xe=o((e,r)=>e<=r,"isWithinSizeLimit");var je=["a-arrow-down","a-arrow-up","academic-hat","accessibility","activity-square","activity","add-queue","aeroplane","air-conditioner","airplay","airpods","alarm-check","alarm-minus","alarm-plus","alarm-smoke","alarm-snooze","alarm-x","alarm","album","align-bottom","align-horizontal","align-left","align-right","align-top","align-vertical","alt","ambulance","ampersand-square","ampersand","ampersands","anchor","angry-circle","angry-ghost","angry-square","annoyed-circle","annoyed-ghost","annoyed-square","aperture","api","ar","archive","arrow-diagonal-one","arrow-diagonal-two","arrow-down-circle","arrow-down-left-circle","arrow-down-left-square","arrow-down-left-waves","arrow-down-left","arrow-down-right-circle","arrow-down-right-square","arrow-down-right-waves","arrow-down-right","arrow-down-square","arrow-down-waves","arrow-down","arrow-left-circle","arrow-left-right","arrow-left-square","arrow-left-waves","arrow-left","arrow-long-down-left","arrow-long-down-right","arrow-long-down","arrow-long-left","arrow-long-right","arrow-long-up-left","arrow-long-up-right","arrow-long-up","arrow-right-circle","arrow-right-square","arrow-right-waves","arrow-right","arrow-up-circle","arrow-up-down","arrow-up-left-circle","arrow-up-left-square","arrow-up-left-waves","arrow-up-left","arrow-up-right-circle","arrow-up-right-square","arrow-up-right-waves","arrow-up-right","arrow-up-square","arrow-up-waves","arrow-up","asterisk-circle","asterisk-diamond","asterisk-hexagon","asterisk-octagon","asterisk-square","asterisk-waves","at","atom","baby","backpack","badge","baggage-claim","ban","bank","baseball","bath","battery-charging-four","battery-charging-one","battery-charging-three","battery-charging-two","battery-charging","battery-check","battery-empty","battery-full","battery-minus","battery-plus","battery-x","bell-check","bell-home","bell-minus","bell-on","bell-plus","bell-slash","bell-snooze","bell-user","bell-x","bell","binoculars","bitcoin-circle","bitcoin-diamond","bitcoin-hexagon","bitcoin-octagon","bitcoin-square","bitcoin-waves","bitcoin","bluetooth","boat","book-check","book-dot","book-home","book-image","book-minus","book-open","book-plus","book-slash","book-snooze","book-user","book-x","book","bookmark-check","bookmark-dot","bookmark-home","bookmark-minus","bookmark-plus","bookmark-slash","bookmark-snooze","bookmark-user","bookmark-x","bookmark","bounding-box","bowl","box","brand-chrome","brand-codepen","brand-codesandbox","brand-dribbble","brand-facebook","brand-figma","brand-framer","brand-github","brand-gitlab","brand-google","brand-instagram","brand-linkedin","brand-pinterest","brand-pocket","brand-slack","brand-spotify","brand-telegram","brand-threads","brand-trello","brand-twitch","brand-twitter","brand-x","brand-youtube","briefcase-conveyor-belt","briefcase","brightness-high","brightness-low","bubbles","building-one","building","cable-car","cake","calendar-check","calendar-down","calendar-minus","calendar-plus","calendar-slash","calendar-up","calendar-x","calendar","camera-slash","camera","campfire","cannabis","caravan","cart-check","cart-minus","cart-plus","cart-x","cart","cast-screen","center-focus","chart-area","chart-bar-big","chart-bar-decreasing","chart-bar-increasing","chart-bar-one","chart-bar-stacked","chart-bar","chart-bubble","chart-candlestick","chart-column-big","chart-column-decreasing","chart-column-increasing","chart-column-stacked","chart-column","chart-gantt","chart-graph","chart-line","chart-network","chart-no-axes-column-decreasing","chart-no-axes-column-increasing","chart-no-axes-column","chart-no-axes-combined","chart-no-axes-gantt","chart-pie-one","chart-pie-two","chart-pie","chart-scatter","chart-spline","chat-check","chat-dots","chat-messages","chat-minus","chat-plus","chat-x","chat","check-circle-one","check-circle","check-diamond","check-hexagon","check-octagon","check-square-one","check-square","check-waves","check","chevron-double-down-left","chevron-double-down-right","chevron-double-down","chevron-double-left","chevron-double-right","chevron-double-up-left","chevron-double-up-right","chevron-double-up","chevron-down-circle","chevron-down-left-circle","chevron-down-left-square","chevron-down-left-waves","chevron-down-left","chevron-down-right-circle","chevron-down-right-square","chevron-down-right-waves","chevron-down-right","chevron-down-square","chevron-down-waves","chevron-down","chevron-left-circle","chevron-left-square","chevron-left-waves","chevron-left","chevron-right-circle","chevron-right-square","chevron-right-waves","chevron-right","chevron-up-circle","chevron-up-down","chevron-up-left-circle","chevron-up-left-square","chevron-up-left-waves","chevron-up-left","chevron-up-right-circle","chevron-up-right-square","chevron-up-right-waves","chevron-up-right","chevron-up-square","chevron-up-waves","chevron-up","chip","cigarette-off","cigarette","circle-dashed","circle-half-circle","circle-half","circle-notch","circle","click","clipboard","clock-circle","clock-diamond","clock-eight","clock-eleven","clock-five","clock-four","clock-hand","clock-hexagon","clock-nine","clock-octagon","clock-one","clock-seven","clock-six","clock-square","clock-ten","clock-three","clock-twelve","clock-two","clock-waves","cloud-download","cloud-drizzle","cloud-fog","cloud-hail","cloud-lightning","cloud-moon-rain","cloud-moon","cloud-off","cloud-rain-wind","cloud-rain","cloud-snow","cloud-sun-rain","cloud-sun","cloud-upload","cloud","cloudy","cocktail","code-circle","code-diamond","code-hexagon","code-octagon","code-square","code-waves","code","coffee","cog-four","cog-one","cog-three","cog-two","cog","columns","command","compass","components","confetti","config-vertical","config","contactless-circle","contactless","controller","cookie","copy","copyleft","copyright-slash","copyright","corner-down-left","corner-down-right","corner-left-down","corner-left-up","corner-right-down","corner-right-up","corner-up-left","corner-up-right","credit-card-check","credit-card-minus","credit-card-plus","credit-card-x","credit-card","croissant","crop","crosshair","cupcake","danger-circle","danger-diamond","danger-hexagon","danger-octagon","danger-square","danger-triangle","danger-waves","danger","database","daze-circle","daze-ghost","daze-square","delete","desktop","diamond","dice-five","dice-four","dice-one","dice-six","dice-three","dice-two","dislike","divide","dollar-circle","dollar-diamond","dollar-hexagon","dollar-octagon","dollar-square","dollar-waves","dollar","door-closed-locked","door-closed","door-open","dots-circle","dots-diamond","dots-hexagon","dots-octagon","dots-square","dots-vertical-circle","dots-vertical-diamond","dots-vertical-hexagon","dots-vertical-octagon","dots-vertical-square","dots-vertical-waves","dots-vertical","dots-waves","dots","download","drop","droplet-off","droplet","droplets","ear-slash","ear","earth","eclipse","edit-one","edit","egg","eight-circle","eight-diamond","eight-hexagon","eight-octagon","eight-square","eight-waves","eight","elevator","envelope-open","envelope","euro-circle","euro-diamond","euro-hexagon","euro-octagon","euro-square","euro-waves","euro","exclude","external-link","eye-slash","eye","face-id","fat-arrow-down-left","fat-arrow-down-right","fat-arrow-down","fat-arrow-left","fat-arrow-right","fat-arrow-up-left","fat-arrow-up-right","fat-arrow-up","fat-corner-down-left","fat-corner-down-right","fat-corner-left-down","fat-corner-left-up","fat-corner-right-down","fat-corner-right-up","fat-corner-up-left","fat-corner-up-right","female","file-check","file-minus","file-plus","file-text","file-x","file","film","filter-one","filter","fine-tune","fire","five-circle","five-diamond","five-hexagon","five-octagon","five-square","five-waves","five","flag-one","flag","flame-kindling","flame","flask","flower-2","flower","folder-check","folder-heart","folder-kanban","folder-minus","folder-one","folder-plus","folder-slash","folder-two","folder-x","folder","forward-circle","forward-diamond","forward-hexagon","forward-octagon","forward-square","forward-waves","forward","four-circle","four-diamond","four-hexagon","four-octagon","four-square","four-waves","four","frame","funny-circle","funny-ghost","funny-square","gift","git-branch","git-circle","git-commit","git-diamond","git-diff","git-hexagon","git-merge","git-octagon","git-pull-request","git-square","git-waves","glasses","globe","grid-one","grid","hand","hard-drive","hash-circle","hash-diamond","hash-hexagon","hash-octagon","hash-square","hash-waves","hash","haze","heading-five","heading-four","heading-one","heading-six","heading-three","heading-two","heading","headphones","heart-broken","heart-check","heart-circle","heart-diamond","heart-dot","heart-hexagon","heart-home","heart-minus","heart-octagon","heart-plus","heart-slash","heart-snooze","heart-square","heart-user","heart-waves","heart-x","heart","hexagon","home-check","home-minus","home-plus","home-smile","home-x","home","image-circle","image-rectangle","image","inbox-archive","inbox-check","inbox-down","inbox-minus","inbox-plus","inbox-up","inbox-x","inbox","incognito","indifferent-circle","indifferent-ghost","indifferent-square","infinity","info-circle","info-diamond","info-hexagon","info-octagon","info-square","info-triangle","info-waves","info","intersect","kanban","key","keyboard-brightness-high","keyboard-brightness-low","keyboard","label","lamp","layers-one","layers-three","layers-two","layout","leaf","leaves","letter-a-circle","letter-a-diamond","letter-a-hexagon","letter-a-octagon","letter-a-square","letter-a-waves","letter-a","letter-b-circle","letter-b-diamond","letter-b-hexagon","letter-b-octagon","letter-b-square","letter-b-waves","letter-b","letter-c-circle","letter-c-diamond","letter-c-hexagon","letter-c-octagon","letter-c-square","letter-c-waves","letter-c","letter-d-circle","letter-d-diamond","letter-d-hexagon","letter-d-octagon","letter-d-square","letter-d-waves","letter-d","letter-e-circle","letter-e-diamond","letter-e-hexagon","letter-e-octagon","letter-e-square","letter-e-waves","letter-e","letter-f-circle","letter-f-diamond","letter-f-hexagon","letter-f-octagon","letter-f-square","letter-f-waves","letter-f","letter-g-circle","letter-g-diamond","letter-g-hexagon","letter-g-octagon","letter-g-square","letter-g-waves","letter-g","letter-h-circle","letter-h-diamond","letter-h-hexagon","letter-h-octagon","letter-h-square","letter-h-waves","letter-h","letter-i-circle","letter-i-diamond","letter-i-hexagon","letter-i-octagon","letter-i-square","letter-i-waves","letter-i","letter-j-circle","letter-j-diamond","letter-j-hexagon","letter-j-octagon","letter-j-square","letter-j-waves","letter-j","letter-k-circle","letter-k-diamond","letter-k-hexagon","letter-k-octagon","letter-k-square","letter-k-waves","letter-k","letter-l-circle","letter-l-diamond","letter-l-hexagon","letter-l-octagon","letter-l-square","letter-l-waves","letter-l","letter-m-circle","letter-m-diamond","letter-m-hexagon","letter-m-octagon","letter-m-square","letter-m-waves","letter-m","letter-n-circle","letter-n-diamond","letter-n-hexagon","letter-n-octagon","letter-n-square","letter-n-waves","letter-n","letter-o-circle","letter-o-diamond","letter-o-hexagon","letter-o-octagon","letter-o-square","letter-o-waves","letter-o","letter-p-circle","letter-p-diamond","letter-p-hexagon","letter-p-octagon","letter-p-square","letter-p-waves","letter-p","letter-q-circle","letter-q-diamond","letter-q-hexagon","letter-q-octagon","letter-q-square","letter-q-waves","letter-q","letter-r-circle","letter-r-diamond","letter-r-hexagon","letter-r-octagon","letter-r-square","letter-r-waves","letter-r","letter-s-circle","letter-s-diamond","letter-s-hexagon","letter-s-octagon","letter-s-square","letter-s-waves","letter-s","letter-t-circle","letter-t-diamond","letter-t-hexagon","letter-t-octagon","letter-t-square","letter-t-waves","letter-t","letter-u-circle","letter-u-diamond","letter-u-hexagon","letter-u-octagon","letter-u-square","letter-u-waves","letter-u","letter-v-circle","letter-v-diamond","letter-v-hexagon","letter-v-octagon","letter-v-square","letter-v-waves","letter-v","letter-w-circle","letter-w-diamond","letter-w-hexagon","letter-w-octagon","letter-w-square","letter-w-waves","letter-w","letter-x-circle","letter-x-diamond","letter-x-hexagon","letter-x-octagon","letter-x-square","letter-x-waves","letter-x","letter-y-circle","letter-y-diamond","letter-y-hexagon","letter-y-octagon","letter-y-square","letter-y-waves","letter-y","letter-z-circle","letter-z-diamond","letter-z-hexagon","letter-z-octagon","letter-z-square","letter-z-waves","letter-z","lightning-off","lightning","like","line-chart-circle","line-chart-diamond","line-chart-hexagon","line-chart-octagon","line-chart-square","line-chart-waves","link-one","link-two","link","list-check","list-number","list","location-check","location-home","location-minus","location-plus","location-selected","location-slash","location-snooze","location-user","location-x","location","lock-circle","lock-diamond","lock-hexagon","lock-keyhole","lock-octagon","lock-open-keyhole","lock-open-password","lock-open","lock-password","lock-square","lock-waves","lock","login","logout","magnet","male","map","mask","math-square","math","maximize-one","maximize","menu","message-check","message-dots","message-minus","message-plus","message-reply","message-x","message","microphone-slash","microphone","minimize-one","minimize","minus-circle","minus-diamond","minus-hexagon","minus-octagon","minus-square","minus-waves","minus","mobile-signal-five","mobile-signal-four","mobile-signal-one","mobile-signal-three","mobile-signal-two","mobile","moon-star","moon","mountain-snow","mountain","mouse-pointer","move-diagonal-one","move-diagonal","move-horizontal","move-vertical","move","music-circle","music-diamond","music-hexagon","music-octagon","music-square","music-waves","music","myna","navigation-one","navigation","nine-circle","nine-diamond","nine-hexagon","nine-octagon","nine-square","nine-waves","nine","notification","octagon","one-circle","one-diamond","one-hexagon","one-octagon","one-square","one-waves","one","option","package","paint","panel-bottom-close","panel-bottom-inactive","panel-bottom-open","panel-bottom","panel-left-close","panel-left-inactive","panel-left-open","panel-left","panel-right-close","panel-right-inactive","panel-right-open","panel-right","panel-top-close","panel-top-inactive","panel-top-open","panel-top","paperclip","parking","password","path","pause-circle","pause-diamond","pause-hexagon","pause-octagon","pause-square","pause-waves","pause","pen","pencil","percentage-circle","percentage-diamond","percentage-hexagon","percentage-octagon","percentage-square","percentage-waves","percentage","pin","pizza","planet","play-circle","play-diamond","play-hexagon","play-octagon","play-square","play-waves","play","plus-circle","plus-diamond","plus-hexagon","plus-octagon","plus-square","plus-waves","plus","pokeball","power","presentation","printer","puzzle","question-circle","question-diamond","question-hexagon","question-octagon","question-square","question-waves","question","radio","rainbow","reception-bell","record","rectangle-vertical","rectangle","redo","refresh-alt","refresh","repeat","rewind-circle","rewind-diamond","rewind-hexagon","rewind-octagon","rewind-square","rewind-waves","rewind","rhombus","ribbon","rocket","room-service","rows","rss","ruler","rupee-circle","rupee-diamond","rupee-hexagon","rupee-octagon","rupee-square","rupee-waves","rupee","sad-circle","sad-ghost","sad-square","save","scan","scissors","sea-waves","search-check","search-circle","search-diamond","search-dot","search-hexagon","search-home","search-minus","search-octagon","search-plus","search-slash","search-snooze","search-square","search-user","search-waves","search-x","search","select-multiple","send","servers","seven-circle","seven-diamond","seven-hexagon","seven-octagon","seven-square","seven-waves","seven","share","shell","shield-check","shield-crossed","shield-minus","shield-one","shield-plus","shield-slash","shield-two","shield-x","shield","shooting-star","shopping-bag","shovel","shrub","shuffle-alt","shuffle","sidebar-alt","sidebar","signal-circle","signal-diamond","signal-hexagon","signal-octagon","signal-square","signal-waves","signal","six-circle","six-diamond","six-hexagon","six-octagon","six-square","six-waves","six","skip-back","skip-forward","slash-circle","slash-diamond","slash-hexagon","slash-octagon","slash-square","slash-waves","smile-circle","smile-ghost","smile-square","snow","snowflake","sofa","sort","sparkles","speaker","spinner-one","spinner","sprout","square-chart-gantt","square-dashed-kanban","square-dashed","square-half","square-kanban","square","star","stop-circle","stop-diamond","stop-hexagon","stop-octagon","stop-square","stop-waves","stop","store","subtract","sun-dim","sun-medium","sun-snow","sun","sunrise","sunset","support","swatches","table","tablet","tag-plus","tag","tally-five","tally-four","tally-one","tally-three","tally-two","target","telephone-call","telephone-forward","telephone-in","telephone-missed","telephone-out","telephone-slash","telephone","tent-tree","tent","terminal","text-align-center","text-align-left","text-align-right","text-justify","thermometer-snowflake","thermometer-sun","thermometer","three-circle","three-diamond","three-hexagon","three-octagon","three-square","three-waves","three","ticket-slash","ticket","toggle-left","toggle-right","tool","tornado","train","trash-one","trash-two","trash","tree-deciduous","tree-palm","tree-pine","tree","trees","trending-down","trending-up-down","trending-up","triangle","truck","tv","two-circle","two-diamond","two-hexagon","two-octagon","two-square","two-waves","two","type-bold","type-italic","type-text","type-underline","umbrella-off","umbrella","undo","union","unlink","upload","user-check","user-circle","user-diamond","user-hexagon","user-minus","user-octagon","user-plus","user-settings","user-square","user-waves","user-x","user","users-group","users","video-slash","video","volume-check","volume-high","volume-low","volume-minus","volume-none","volume-plus","volume-slash","volume-x","watch","waves","webcam","wheel","wheelchair","wifi-check","wifi-low","wifi-medium","wifi-minus","wifi-plus","wifi-slash","wifi-x","wifi","wind-arrow-down","wind","winds","wine","wink-circle","wink-ghost","wink-square","wrench","x-circle","x-diamond","x-hexagon","x-octagon","x-square","x-triangle","x-waves","x","yen-circle","yen-diamond","yen-hexagon","yen-octagon","yen-square","yen-waves","yen","zap-off","zap","zero-circle","zero-diamond","zero-hexagon","zero-octagon","zero-square","zero-waves","zero"];var wo=100,ko=160;var vo=100,Mo=160;var We="00000000-0000-0000-0000-000000000000";var $e=[{id:"email",label:"Email",icon:"envelope",group:"communication",storage:{kind:"format",value:"email"}},{id:"url",label:"URL",icon:"link",group:"communication",storage:{kind:"format",value:"url"}},{id:"phone_fr",label:"T\xE9l\xE9phone (FR)",icon:"telephone",group:"communication",storage:{kind:"pattern",regex:"^0[1-9]([-. ]?[0-9]{2}){4}$"}},{id:"slug",label:"Slug (kebab-case)",icon:"hash",group:"identifiants",storage:{kind:"format",value:"slug"}},{id:"alphanumeric",label:"Alphanum\xE9rique",icon:"type-text",group:"identifiants",storage:{kind:"pattern",regex:"^[a-zA-Z0-9]+$"}},{id:"siren",label:"SIREN",icon:"building",group:"business_fr",storage:{kind:"pattern",regex:"^[0-9]{9}$"}},{id:"siret",label:"SIRET",icon:"building",group:"business_fr",storage:{kind:"pattern",regex:"^[0-9]{14}$"}},{id:"postcode_fr",label:"Code postal (FR)",icon:"location",group:"business_fr",storage:{kind:"pattern",regex:"^[0-9]{5}$"}},{id:"iban",label:"IBAN",icon:"credit-card",group:"business_fr",storage:{kind:"pattern",regex:"^[A-Z]{2}[0-9]{2}[A-Z0-9]{1,30}$"}},{id:"vat_fr",label:"TVA intracom",icon:"credit-card",group:"business_fr",storage:{kind:"pattern",regex:"^[A-Z]{2}[0-9A-Z]{2,12}$"}},{id:"hex_color",label:"Code couleur hex",icon:"paint",group:"design",storage:{kind:"pattern",regex:"^#[0-9A-Fa-f]{6}$"}}];0&&(module.exports={AI_CHAT_ACCEPTED_TYPES,AI_CHAT_MAX_FILES,AI_CHAT_MAX_FILE_SIZE,AI_CHAT_SUPPORTED_DOCUMENTS,AI_CHAT_SUPPORTED_IMAGES,AI_CHAT_SUPPORTED_MIME_TYPES,ALL_MIME_TYPES,ARCHIVES,ARCHIVE_MIME_TYPES,ARCHIVE_MIME_TYPES_ARRAY,AUDIO,AUDIO_MIME_TYPES,AUDIO_MIME_TYPES_ARRAY,BUILT_IN_AGENT_TOOL_GROUPS,BUILT_IN_AGENT_TOOL_NAMES,BYTES,CODE,CODE_MIME_TYPES,CODE_MIME_TYPES_ARRAY,COLORS,COLOR_GROUPS,COUNTRIES,CURRENCIES,DEFAULT_ATTRIBUTE_ICONS,DEFAULT_TAB_ICONS,DEFAULT_TENANT_ID,DOCUMENTS,DOCUMENT_MIME_TYPES,DOCUMENT_MIME_TYPES_ARRAY,FILE_SIZE,FONTS,FONT_MIME_TYPES,FONT_MIME_TYPES_ARRAY,GIGABYTES,ICONS,IMAGES,IMAGE_MIME_TYPES,IMAGE_MIME_TYPES_ARRAY,KILOBYTES,MEDIA,MEGABYTES,MEMORY_DESCRIPTION_MAX_LENGTH,MEMORY_NAME_MAX_LENGTH,OFFICE_DOCUMENTS,RECOMMENDED_MAX_SIZES,SKILL_DESCRIPTION_MAX_LENGTH,SKILL_NAME_MAX_LENGTH,STATUS_COLORS,TEXT_FORMAT_PRESETS,VIDEO,VIDEO_MIME_TYPES,VIDEO_MIME_TYPES_ARRAY,WEB_IMAGES,bytesToGb,bytesToMb,cn,gbToBytes,getAllColors,getAllCountries,getAllCurrencies,getColor,getColorIds,getColorsByGroup,getCountryByIso2,getCountryByIso3,getCountryDisplayName,getCountryDisplayNameByIso3,getCurrency,getCurrencySymbol,getDefaultAttributeIcon,getDefaultTabIcon,getPhoneMaxDigits,getPhoneTrunkPrefix,getSortedCountries,isArchiveMimeType,isAudioMimeType,isCodeMimeType,isDocumentMimeType,isImageMimeType,isValidColorId,isValidCurrencyCode,isValidIso2,isValidIso3,isVideoMimeType,isWithinSizeLimit,mbToBytes,stripTrunkPrefix});
|
package/dist/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/*! © 2025-2026 AND YOU CREATE SAS (RCS Paris 940 190 614). Proprietary — see LICENSE (Standards SDK License 1.0). */
|
|
2
|
-
var M=Object.defineProperty;var o=(e,r)=>M(e,"name",{value:r,configurable:!0});var i={JPEG:"image/jpeg",PNG:"image/png",GIF:"image/gif",WEBP:"image/webp",SVG:"image/svg+xml",BMP:"image/bmp",TIFF:"image/tiff",ICO:"image/x-icon",HEIC:"image/heic",HEIF:"image/heif"},D=Object.values(i),t={PDF:"application/pdf",DOC:"application/msword",DOCX:"application/vnd.openxmlformats-officedocument.wordprocessingml.document",XLS:"application/vnd.ms-excel",XLSX:"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",PPT:"application/vnd.ms-powerpoint",PPTX:"application/vnd.openxmlformats-officedocument.presentationml.presentation",ODT:"application/vnd.oasis.opendocument.text",ODS:"application/vnd.oasis.opendocument.spreadsheet",ODP:"application/vnd.oasis.opendocument.presentation",RTF:"application/rtf",TXT:"text/plain",CSV:"text/csv",MARKDOWN:"text/markdown"},E=Object.values(t),_={ZIP:"application/zip",RAR:"application/vnd.rar",TAR:"application/x-tar",GZIP:"application/gzip","7Z":"application/x-7z-compressed",BZ2:"application/x-bzip2"},P=Object.values(_),A={MP3:"audio/mpeg",WAV:"audio/wav",OGG:"audio/ogg",AAC:"audio/aac",FLAC:"audio/flac",M4A:"audio/mp4",WEBM:"audio/webm"},I=Object.values(A),R={MP4:"video/mp4",WEBM:"video/webm",OGG:"video/ogg",AVI:"video/x-msvideo",MOV:"video/quicktime",MKV:"video/x-matroska",FLV:"video/x-flv",WMV:"video/x-ms-wmv",MPEG:"video/mpeg"},S=Object.values(R),N={JAVASCRIPT:"text/javascript",TYPESCRIPT:"text/typescript",JSON:"application/json",XML:"application/xml",HTML:"text/html",CSS:"text/css",PYTHON:"text/x-python",JAVA:"text/x-java-source",C:"text/x-c",CPP:"text/x-c++",YAML:"application/x-yaml",SQL:"application/sql"},O=Object.values(N),B={TTF:"font/ttf",OTF:"font/otf",WOFF:"font/woff",WOFF2:"font/woff2",EOT:"application/vnd.ms-fontobject"},q=Object.values(B),g=D,w=E,k=P,x=I,f=S,T=O,U=q,ne=[i.JPEG,i.PNG,i.GIF,i.WEBP],te=[t.PDF,t.DOC,t.DOCX,t.XLS,t.XLSX,t.PPT,t.PPTX],ae=[...g,...x,...f],ie=[...g,...w,...k,...x,...f,...T,...U],se=o(e=>g.includes(e),"isImageMimeType"),ce=o(e=>w.includes(e),"isDocumentMimeType"),le=o(e=>k.includes(e),"isArchiveMimeType"),de=o(e=>x.includes(e),"isAudioMimeType"),pe=o(e=>f.includes(e),"isVideoMimeType"),ue=o(e=>T.includes(e),"isCodeMimeType");var L=[i.JPEG,i.PNG,i.WEBP,i.GIF,i.SVG],F=[t.PDF,t.DOC,t.DOCX,t.TXT,t.MARKDOWN,t.CSV],G=[...L,...F],xe=G.join(","),fe=50*1024*1024,Ce=5;var K={bulk:["bulk_create_records","bulk_delete_records","bulk_search","bulk_update_records"],calendar:["get_calendar_event","get_meeting_transcript","search_calendar_events"],core:["archive_document","ask_questions","attach_file","call_reflex","create_folder","create_record","delete_record","exec_command","get_record","get_schema","get_skill","global_search","initialize_record_drive_structure","list_record_drive","list_workspace_users","load_toolset","publish_artifact","read_document","remove_file","request_work_mode","sandbox_get_file","sandbox_upload_file","sandbox_validate_payload","search_records","update_document","update_record","write_todos"],email:["download_email_attachments","get_email","get_email_thread","search_emails"],memory:["get_memory","save_memory","search_memories"],orchestration:["message_agent","spawn_agent"],schema:["apply_architect_operation","describe_architect_operation","discard_architect_draft","get_default_view","get_schema_history","request_design_review","search_icons"],web:["read_webpage","web_search"]},ye=Object.values(K).flat();var Y={text:"text-align-left",textarea:"align-left",number:"hash",checkbox:"check-square",date:"calendar",phone:"telephone",currency:"dollar-circle",status:"activity",location:"location",timestamp:"clock-circle",select:"chevron-down-circle",multiselect:"list-check",file:"file",user:"user",relation:"link",rating:"star",formula:"math",rollup:"chart-bar-stacked"};function ke(e){return Y[e]??"circle"}o(ke,"getDefaultAttributeIcon");var H={form:"layout",table:"table",custom:"puzzle",activity:"activity",richtext:"file-text",documents:"folder",forms:"clipboard",emails:"envelope",meetings:"calendar"};function Me(e){return H[e]??"circle"}o(Me,"getDefaultTabIcon");import{clsx as z}from"clsx";import{extendTailwindMerge as V}from"tailwind-merge";var Z=V({extend:{classGroups:{"font-size":["text-control-2xs","text-control-xs","text-control-sm","text-control-default","text-control-lg","text-row-sm","text-row-default","text-row-lg","text-metric"],h:["h-control-sm","h-control-default","h-control-lg","h-row-sm","h-row-default","h-row-lg"],w:["w-control-sm","w-control-default","w-control-lg","w-query-popover"],size:["size-control-sm","size-control-default","size-control-lg"],p:["p-surface-sm","p-surface-default","p-surface-lg"]}}});function Ae(...e){return Z(z(e))}o(Ae,"cn");var C=o((e,r)=>`light-dark(${e}, ${r})`,"lightDark");function n(e,r,a){let l=Number.parseInt(e.slice(1,3),16),d=Number.parseInt(e.slice(3,5),16),p=Number.parseInt(e.slice(5,7),16),u=o(v=>`rgba(${l}, ${d}, ${p}, ${v})`,"alpha");return{background:C(u(.15),u(.22)),border:C(u(.3),u(.42)),text:C(r,a),icon:e}}o(n,"defineColor");var m={gray:n("#6B7280","#374151","#D1D5DB"),slate:n("#64748B","#334155","#CBD5E1"),blue:n("#3B82F6","#1D4ED8","#93C5FD"),sky:n("#0EA5E9","#0369A1","#7DD3FC"),indigo:n("#6366F1","#4338CA","#A5B4FC"),green:n("#22C55E","#15803D","#86EFAC"),emerald:n("#10B981","#047857","#6EE7B7"),teal:n("#14B8A6","#0F766E","#5EEAD4"),red:n("#EF4444","#B91C1C","#FCA5A5"),rose:n("#F43F5E","#BE123C","#FDA4AF"),yellow:n("#EAB308","#A16207","#FDE047"),amber:n("#F59E0B","#B45309","#FCD34D"),orange:n("#F97316","#C2410C","#FDBA74"),purple:n("#A855F7","#7E22CE","#D8B4FE"),violet:n("#8B5CF6","#6D28D9","#C4B5FD"),fuchsia:n("#D946EF","#A21CAF","#F0ABFC"),pink:n("#EC4899","#BE185D","#F9A8D4"),cyan:n("#06B6D4","#0E7490","#67E8F9"),lime:n("#84CC16","#4D7C0F","#BEF264")},Se=o(e=>m[e],"getColor"),Ne=o(()=>Object.values(m),"getAllColors"),Oe=o(()=>Object.keys(m),"getColorIds"),Be=o(e=>e in m,"isValidColorId"),j={neutral:["gray","slate"],primary:["blue","indigo","sky"],success:["green","emerald","teal","lime"],danger:["red","rose"],warning:["yellow","amber","orange"],info:["blue","cyan","sky"],special:["purple","violet","fuchsia"],accent:["pink"]},qe=o(e=>[...j[e]],"getColorsByGroup"),Ue={idle:["gray","slate"],in_progress:["blue","indigo","sky","cyan","purple"],finished:["green","emerald","teal"],cancelled:["red","rose"],warning:["yellow","amber","orange"]};var s={FR:{name:"France",iso2:"FR",iso3:"FRA",numericCode:"250",phoneCode:"+33",phoneMaxDigits:10,phoneTrunkPrefix:"0"},US:{name:"United States",iso2:"US",iso3:"USA",numericCode:"840",phoneCode:"+1",phoneMaxDigits:10,phoneTrunkPrefix:""},GB:{name:"United Kingdom",iso2:"GB",iso3:"GBR",numericCode:"826",phoneCode:"+44",phoneMaxDigits:11,phoneTrunkPrefix:"0"},DE:{name:"Germany",iso2:"DE",iso3:"DEU",numericCode:"276",phoneCode:"+49",phoneMaxDigits:11,phoneTrunkPrefix:"0"},ES:{name:"Spain",iso2:"ES",iso3:"ESP",numericCode:"724",phoneCode:"+34",phoneMaxDigits:9,phoneTrunkPrefix:""},IT:{name:"Italy",iso2:"IT",iso3:"ITA",numericCode:"380",phoneCode:"+39",phoneMaxDigits:10,phoneTrunkPrefix:"0"},BE:{name:"Belgium",iso2:"BE",iso3:"BEL",numericCode:"056",phoneCode:"+32",phoneMaxDigits:9,phoneTrunkPrefix:"0"},CH:{name:"Switzerland",iso2:"CH",iso3:"CHE",numericCode:"756",phoneCode:"+41",phoneMaxDigits:10,phoneTrunkPrefix:"0"},NL:{name:"Netherlands",iso2:"NL",iso3:"NLD",numericCode:"528",phoneCode:"+31",phoneMaxDigits:9,phoneTrunkPrefix:"0"},PT:{name:"Portugal",iso2:"PT",iso3:"PRT",numericCode:"620",phoneCode:"+351",phoneMaxDigits:9,phoneTrunkPrefix:""},CA:{name:"Canada",iso2:"CA",iso3:"CAN",numericCode:"124",phoneCode:"+1",phoneMaxDigits:10,phoneTrunkPrefix:""},AU:{name:"Australia",iso2:"AU",iso3:"AUS",numericCode:"036",phoneCode:"+61",phoneMaxDigits:9,phoneTrunkPrefix:"0"},AT:{name:"Austria",iso2:"AT",iso3:"AUT",numericCode:"040",phoneCode:"+43",phoneMaxDigits:11,phoneTrunkPrefix:"0"},SE:{name:"Sweden",iso2:"SE",iso3:"SWE",numericCode:"752",phoneCode:"+46",phoneMaxDigits:10,phoneTrunkPrefix:"0"},NO:{name:"Norway",iso2:"NO",iso3:"NOR",numericCode:"578",phoneCode:"+47",phoneMaxDigits:8,phoneTrunkPrefix:""},DK:{name:"Denmark",iso2:"DK",iso3:"DNK",numericCode:"208",phoneCode:"+45",phoneMaxDigits:8,phoneTrunkPrefix:""},FI:{name:"Finland",iso2:"FI",iso3:"FIN",numericCode:"246",phoneCode:"+358",phoneMaxDigits:10,phoneTrunkPrefix:"0"},IE:{name:"Ireland",iso2:"IE",iso3:"IRL",numericCode:"372",phoneCode:"+353",phoneMaxDigits:10,phoneTrunkPrefix:"0"},PL:{name:"Poland",iso2:"PL",iso3:"POL",numericCode:"616",phoneCode:"+48",phoneMaxDigits:9,phoneTrunkPrefix:""},CZ:{name:"Czech Republic",iso2:"CZ",iso3:"CZE",numericCode:"203",phoneCode:"+420",phoneMaxDigits:9,phoneTrunkPrefix:""},GR:{name:"Greece",iso2:"GR",iso3:"GRC",numericCode:"300",phoneCode:"+30",phoneMaxDigits:10,phoneTrunkPrefix:""},RO:{name:"Romania",iso2:"RO",iso3:"ROU",numericCode:"642",phoneCode:"+40",phoneMaxDigits:10,phoneTrunkPrefix:"0"},HU:{name:"Hungary",iso2:"HU",iso3:"HUN",numericCode:"348",phoneCode:"+36",phoneMaxDigits:9,phoneTrunkPrefix:"06"},LU:{name:"Luxembourg",iso2:"LU",iso3:"LUX",numericCode:"442",phoneCode:"+352",phoneMaxDigits:9,phoneTrunkPrefix:""},SK:{name:"Slovakia",iso2:"SK",iso3:"SVK",numericCode:"703",phoneCode:"+421",phoneMaxDigits:9,phoneTrunkPrefix:"0"},BG:{name:"Bulgaria",iso2:"BG",iso3:"BGR",numericCode:"100",phoneCode:"+359",phoneMaxDigits:9,phoneTrunkPrefix:"0"},HR:{name:"Croatia",iso2:"HR",iso3:"HRV",numericCode:"191",phoneCode:"+385",phoneMaxDigits:9,phoneTrunkPrefix:"0"},SI:{name:"Slovenia",iso2:"SI",iso3:"SVN",numericCode:"705",phoneCode:"+386",phoneMaxDigits:8,phoneTrunkPrefix:"0"},EE:{name:"Estonia",iso2:"EE",iso3:"EST",numericCode:"233",phoneCode:"+372",phoneMaxDigits:8,phoneTrunkPrefix:""},LV:{name:"Latvia",iso2:"LV",iso3:"LVA",numericCode:"428",phoneCode:"+371",phoneMaxDigits:8,phoneTrunkPrefix:""},LT:{name:"Lithuania",iso2:"LT",iso3:"LTU",numericCode:"440",phoneCode:"+370",phoneMaxDigits:8,phoneTrunkPrefix:""},IS:{name:"Iceland",iso2:"IS",iso3:"ISL",numericCode:"352",phoneCode:"+354",phoneMaxDigits:7,phoneTrunkPrefix:""},MT:{name:"Malta",iso2:"MT",iso3:"MLT",numericCode:"470",phoneCode:"+356",phoneMaxDigits:8,phoneTrunkPrefix:""},CY:{name:"Cyprus",iso2:"CY",iso3:"CYP",numericCode:"196",phoneCode:"+357",phoneMaxDigits:8,phoneTrunkPrefix:""},MC:{name:"Monaco",iso2:"MC",iso3:"MCO",numericCode:"492",phoneCode:"+377",phoneMaxDigits:8,phoneTrunkPrefix:""},MX:{name:"Mexico",iso2:"MX",iso3:"MEX",numericCode:"484",phoneCode:"+52",phoneMaxDigits:10,phoneTrunkPrefix:""},BR:{name:"Brazil",iso2:"BR",iso3:"BRA",numericCode:"076",phoneCode:"+55",phoneMaxDigits:11,phoneTrunkPrefix:""},AR:{name:"Argentina",iso2:"AR",iso3:"ARG",numericCode:"032",phoneCode:"+54",phoneMaxDigits:10,phoneTrunkPrefix:""},CL:{name:"Chile",iso2:"CL",iso3:"CHL",numericCode:"152",phoneCode:"+56",phoneMaxDigits:9,phoneTrunkPrefix:""},CO:{name:"Colombia",iso2:"CO",iso3:"COL",numericCode:"170",phoneCode:"+57",phoneMaxDigits:10,phoneTrunkPrefix:""},PE:{name:"Peru",iso2:"PE",iso3:"PER",numericCode:"604",phoneCode:"+51",phoneMaxDigits:9,phoneTrunkPrefix:""},VE:{name:"Venezuela",iso2:"VE",iso3:"VEN",numericCode:"862",phoneCode:"+58",phoneMaxDigits:10,phoneTrunkPrefix:""},EC:{name:"Ecuador",iso2:"EC",iso3:"ECU",numericCode:"218",phoneCode:"+593",phoneMaxDigits:9,phoneTrunkPrefix:""},UY:{name:"Uruguay",iso2:"UY",iso3:"URY",numericCode:"858",phoneCode:"+598",phoneMaxDigits:8,phoneTrunkPrefix:""},PY:{name:"Paraguay",iso2:"PY",iso3:"PRY",numericCode:"600",phoneCode:"+595",phoneMaxDigits:9,phoneTrunkPrefix:""},BO:{name:"Bolivia",iso2:"BO",iso3:"BOL",numericCode:"068",phoneCode:"+591",phoneMaxDigits:8,phoneTrunkPrefix:""},CR:{name:"Costa Rica",iso2:"CR",iso3:"CRI",numericCode:"188",phoneCode:"+506",phoneMaxDigits:8,phoneTrunkPrefix:""},PA:{name:"Panama",iso2:"PA",iso3:"PAN",numericCode:"591",phoneCode:"+507",phoneMaxDigits:8,phoneTrunkPrefix:""},CN:{name:"China",iso2:"CN",iso3:"CHN",numericCode:"156",phoneCode:"+86",phoneMaxDigits:11,phoneTrunkPrefix:""},JP:{name:"Japan",iso2:"JP",iso3:"JPN",numericCode:"392",phoneCode:"+81",phoneMaxDigits:11,phoneTrunkPrefix:"0"},IN:{name:"India",iso2:"IN",iso3:"IND",numericCode:"356",phoneCode:"+91",phoneMaxDigits:10,phoneTrunkPrefix:""},KR:{name:"South Korea",iso2:"KR",iso3:"KOR",numericCode:"410",phoneCode:"+82",phoneMaxDigits:11,phoneTrunkPrefix:"0"},SG:{name:"Singapore",iso2:"SG",iso3:"SGP",numericCode:"702",phoneCode:"+65",phoneMaxDigits:8,phoneTrunkPrefix:""},HK:{name:"Hong Kong",iso2:"HK",iso3:"HKG",numericCode:"344",phoneCode:"+852",phoneMaxDigits:8,phoneTrunkPrefix:""},TW:{name:"Taiwan",iso2:"TW",iso3:"TWN",numericCode:"158",phoneCode:"+886",phoneMaxDigits:10,phoneTrunkPrefix:"0"},TH:{name:"Thailand",iso2:"TH",iso3:"THA",numericCode:"764",phoneCode:"+66",phoneMaxDigits:9,phoneTrunkPrefix:"0"},MY:{name:"Malaysia",iso2:"MY",iso3:"MYS",numericCode:"458",phoneCode:"+60",phoneMaxDigits:10,phoneTrunkPrefix:"0"},ID:{name:"Indonesia",iso2:"ID",iso3:"IDN",numericCode:"360",phoneCode:"+62",phoneMaxDigits:12,phoneTrunkPrefix:"0"},PH:{name:"Philippines",iso2:"PH",iso3:"PHL",numericCode:"608",phoneCode:"+63",phoneMaxDigits:10,phoneTrunkPrefix:"0"},VN:{name:"Vietnam",iso2:"VN",iso3:"VNM",numericCode:"704",phoneCode:"+84",phoneMaxDigits:10,phoneTrunkPrefix:"0"},PK:{name:"Pakistan",iso2:"PK",iso3:"PAK",numericCode:"586",phoneCode:"+92",phoneMaxDigits:10,phoneTrunkPrefix:"0"},BD:{name:"Bangladesh",iso2:"BD",iso3:"BGD",numericCode:"050",phoneCode:"+880",phoneMaxDigits:10,phoneTrunkPrefix:"0"},IL:{name:"Israel",iso2:"IL",iso3:"ISR",numericCode:"376",phoneCode:"+972",phoneMaxDigits:10,phoneTrunkPrefix:"0"},AE:{name:"United Arab Emirates",iso2:"AE",iso3:"ARE",numericCode:"784",phoneCode:"+971",phoneMaxDigits:9,phoneTrunkPrefix:""},SA:{name:"Saudi Arabia",iso2:"SA",iso3:"SAU",numericCode:"682",phoneCode:"+966",phoneMaxDigits:9,phoneTrunkPrefix:""},TR:{name:"Turkey",iso2:"TR",iso3:"TUR",numericCode:"792",phoneCode:"+90",phoneMaxDigits:10,phoneTrunkPrefix:"0"},NZ:{name:"New Zealand",iso2:"NZ",iso3:"NZL",numericCode:"554",phoneCode:"+64",phoneMaxDigits:10,phoneTrunkPrefix:"0"},ZA:{name:"South Africa",iso2:"ZA",iso3:"ZAF",numericCode:"710",phoneCode:"+27",phoneMaxDigits:9,phoneTrunkPrefix:"0"},EG:{name:"Egypt",iso2:"EG",iso3:"EGY",numericCode:"818",phoneCode:"+20",phoneMaxDigits:10,phoneTrunkPrefix:"0"},NG:{name:"Nigeria",iso2:"NG",iso3:"NGA",numericCode:"566",phoneCode:"+234",phoneMaxDigits:10,phoneTrunkPrefix:"0"},KE:{name:"Kenya",iso2:"KE",iso3:"KEN",numericCode:"404",phoneCode:"+254",phoneMaxDigits:9,phoneTrunkPrefix:"0"},MA:{name:"Morocco",iso2:"MA",iso3:"MAR",numericCode:"504",phoneCode:"+212",phoneMaxDigits:9,phoneTrunkPrefix:"0"},TN:{name:"Tunisia",iso2:"TN",iso3:"TUN",numericCode:"788",phoneCode:"+216",phoneMaxDigits:8,phoneTrunkPrefix:""},DZ:{name:"Algeria",iso2:"DZ",iso3:"DZA",numericCode:"012",phoneCode:"+213",phoneMaxDigits:9,phoneTrunkPrefix:"0"},QA:{name:"Qatar",iso2:"QA",iso3:"QAT",numericCode:"634",phoneCode:"+974",phoneMaxDigits:8,phoneTrunkPrefix:""},KW:{name:"Kuwait",iso2:"KW",iso3:"KWT",numericCode:"414",phoneCode:"+965",phoneMaxDigits:8,phoneTrunkPrefix:""},OM:{name:"Oman",iso2:"OM",iso3:"OMN",numericCode:"512",phoneCode:"+968",phoneMaxDigits:8,phoneTrunkPrefix:""},BH:{name:"Bahrain",iso2:"BH",iso3:"BHR",numericCode:"048",phoneCode:"+973",phoneMaxDigits:8,phoneTrunkPrefix:""},LB:{name:"Lebanon",iso2:"LB",iso3:"LBN",numericCode:"422",phoneCode:"+961",phoneMaxDigits:8,phoneTrunkPrefix:"0"},JO:{name:"Jordan",iso2:"JO",iso3:"JOR",numericCode:"400",phoneCode:"+962",phoneMaxDigits:9,phoneTrunkPrefix:"0"},RU:{name:"Russia",iso2:"RU",iso3:"RUS",numericCode:"643",phoneCode:"+7",phoneMaxDigits:10,phoneTrunkPrefix:""},UA:{name:"Ukraine",iso2:"UA",iso3:"UKR",numericCode:"804",phoneCode:"+380",phoneMaxDigits:9,phoneTrunkPrefix:"0"},BY:{name:"Belarus",iso2:"BY",iso3:"BLR",numericCode:"112",phoneCode:"+375",phoneMaxDigits:9,phoneTrunkPrefix:""},KZ:{name:"Kazakhstan",iso2:"KZ",iso3:"KAZ",numericCode:"398",phoneCode:"+7",phoneMaxDigits:10,phoneTrunkPrefix:""}},Ge=o(e=>s[e.toUpperCase()],"getCountryByIso2"),X=o(e=>Object.values(s).find(r=>r.iso3.toUpperCase()===e.toUpperCase()),"getCountryByIso3"),W=o(()=>Object.values(s),"getAllCountries"),Ke=o(e=>s[e.toUpperCase()]?.phoneMaxDigits??15,"getPhoneMaxDigits"),Ye=o(e=>s[e.toUpperCase()]?.phoneTrunkPrefix??"","getPhoneTrunkPrefix"),He=o(e=>e.toUpperCase()in s,"isValidIso2"),ze=o(e=>Object.values(s).some(r=>r.iso3.toUpperCase()===e.toUpperCase()),"isValidIso3"),b=new Map;function $(e){let r=e.join("\0"),a=b.get(r);if(a!==void 0)return a;try{let l=new Intl.DisplayNames(e,{type:"region"});return b.set(r,l),l}catch{return b.set(r,null),null}}o($,"_getDisplayNames");function y(e,r=["fr","en"]){let a=e.toUpperCase(),l=Array.isArray(r)?r:[r],d=$(l);if(d)try{let p=d.of(a);if(p)return p}catch{}return s[a]?.name??a}o(y,"getCountryDisplayName");function Ve(e,r){let a=X(e);return a?y(a.iso2,r):e}o(Ve,"getCountryDisplayNameByIso3");function Ze(e="fr"){return W().sort((r,a)=>y(r.iso2,e).localeCompare(y(a.iso2,e),e))}o(Ze,"getSortedCountries");function je(e,r){return r&&e.startsWith(r)?e.slice(r.length):e}o(je,"stripTrunkPrefix");var h={USD:{code:"USD",name:"US Dollar",symbol:"$",decimals:2},EUR:{code:"EUR",name:"Euro",symbol:"\u20AC",decimals:2},GBP:{code:"GBP",name:"British Pound",symbol:"\xA3",decimals:2},JPY:{code:"JPY",name:"Japanese Yen",symbol:"\xA5",decimals:0},CNY:{code:"CNY",name:"Chinese Yuan",symbol:"\xA5",decimals:2},CHF:{code:"CHF",name:"Swiss Franc",symbol:"CHF",decimals:2},SEK:{code:"SEK",name:"Swedish Krona",symbol:"kr",decimals:2},NOK:{code:"NOK",name:"Norwegian Krone",symbol:"kr",decimals:2},DKK:{code:"DKK",name:"Danish Krone",symbol:"kr",decimals:2},PLN:{code:"PLN",name:"Polish Zloty",symbol:"z\u0142",decimals:2},CZK:{code:"CZK",name:"Czech Koruna",symbol:"K\u010D",decimals:2},HUF:{code:"HUF",name:"Hungarian Forint",symbol:"Ft",decimals:0},RON:{code:"RON",name:"Romanian Leu",symbol:"lei",decimals:2},BGN:{code:"BGN",name:"Bulgarian Lev",symbol:"\u043B\u0432",decimals:2},HRK:{code:"HRK",name:"Croatian Kuna",symbol:"kn",decimals:2},ISK:{code:"ISK",name:"Icelandic Krona",symbol:"kr",decimals:0},RUB:{code:"RUB",name:"Russian Ruble",symbol:"\u20BD",decimals:2},UAH:{code:"UAH",name:"Ukrainian Hryvnia",symbol:"\u20B4",decimals:2},TRY:{code:"TRY",name:"Turkish Lira",symbol:"\u20BA",decimals:2},CAD:{code:"CAD",name:"Canadian Dollar",symbol:"CA$",decimals:2},MXN:{code:"MXN",name:"Mexican Peso",symbol:"MX$",decimals:2},BRL:{code:"BRL",name:"Brazilian Real",symbol:"R$",decimals:2},ARS:{code:"ARS",name:"Argentine Peso",symbol:"AR$",decimals:2},CLP:{code:"CLP",name:"Chilean Peso",symbol:"CL$",decimals:0},COP:{code:"COP",name:"Colombian Peso",symbol:"COL$",decimals:0},PEN:{code:"PEN",name:"Peruvian Sol",symbol:"S/",decimals:2},UYU:{code:"UYU",name:"Uruguayan Peso",symbol:"UY$",decimals:2},AUD:{code:"AUD",name:"Australian Dollar",symbol:"A$",decimals:2},NZD:{code:"NZD",name:"New Zealand Dollar",symbol:"NZ$",decimals:2},HKD:{code:"HKD",name:"Hong Kong Dollar",symbol:"HK$",decimals:2},SGD:{code:"SGD",name:"Singapore Dollar",symbol:"S$",decimals:2},KRW:{code:"KRW",name:"South Korean Won",symbol:"\u20A9",decimals:0},INR:{code:"INR",name:"Indian Rupee",symbol:"\u20B9",decimals:2},IDR:{code:"IDR",name:"Indonesian Rupiah",symbol:"Rp",decimals:0},MYR:{code:"MYR",name:"Malaysian Ringgit",symbol:"RM",decimals:2},PHP:{code:"PHP",name:"Philippine Peso",symbol:"\u20B1",decimals:2},THB:{code:"THB",name:"Thai Baht",symbol:"\u0E3F",decimals:2},VND:{code:"VND",name:"Vietnamese Dong",symbol:"\u20AB",decimals:0},TWD:{code:"TWD",name:"Taiwan Dollar",symbol:"NT$",decimals:0},PKR:{code:"PKR",name:"Pakistani Rupee",symbol:"\u20A8",decimals:2},BDT:{code:"BDT",name:"Bangladeshi Taka",symbol:"\u09F3",decimals:2},AED:{code:"AED",name:"UAE Dirham",symbol:"\u062F.\u0625",decimals:2},SAR:{code:"SAR",name:"Saudi Riyal",symbol:"\uFDFC",decimals:2},ILS:{code:"ILS",name:"Israeli Shekel",symbol:"\u20AA",decimals:2},QAR:{code:"QAR",name:"Qatari Riyal",symbol:"\uFDFC",decimals:2},KWD:{code:"KWD",name:"Kuwaiti Dinar",symbol:"\u062F.\u0643",decimals:3},BHD:{code:"BHD",name:"Bahraini Dinar",symbol:"\u062F.\u0628",decimals:3},OMR:{code:"OMR",name:"Omani Rial",symbol:"\uFDFC",decimals:3},JOD:{code:"JOD",name:"Jordanian Dinar",symbol:"\u062F.\u0627",decimals:3},LBP:{code:"LBP",name:"Lebanese Pound",symbol:"\u0644.\u0644",decimals:0},ZAR:{code:"ZAR",name:"South African Rand",symbol:"R",decimals:2},EGP:{code:"EGP",name:"Egyptian Pound",symbol:"\xA3",decimals:2},NGN:{code:"NGN",name:"Nigerian Naira",symbol:"\u20A6",decimals:2},KES:{code:"KES",name:"Kenyan Shilling",symbol:"KSh",decimals:2},MAD:{code:"MAD",name:"Moroccan Dirham",symbol:"\u062F.\u0645.",decimals:2},TND:{code:"TND",name:"Tunisian Dinar",symbol:"\u062F.\u062A",decimals:3},DZD:{code:"DZD",name:"Algerian Dinar",symbol:"\u062F.\u062C",decimals:2},NIS:{code:"NIS",name:"Israeli New Shekel",symbol:"\u20AA",decimals:2}},$e=o(e=>h[e.toUpperCase()],"getCurrency"),Je=o(()=>Object.values(h),"getAllCurrencies"),Qe=o(e=>h[e.toUpperCase()]?.symbol||e,"getCurrencySymbol"),eo=o(e=>e.toUpperCase()in h,"isValidCurrencyCode");var J={B_1:1,B_10:10,B_100:100,B_512:512},Q={KB_1:1024,KB_2:2*1024,KB_5:5*1024,KB_10:10*1024,KB_50:50*1024,KB_100:100*1024,KB_500:500*1024},ee={MB_1:1024*1024,MB_2:2*1024*1024,MB_5:5*1024*1024,MB_10:10*1024*1024,MB_20:20*1024*1024,MB_25:25*1024*1024,MB_50:50*1024*1024,MB_100:100*1024*1024,MB_200:200*1024*1024,MB_500:500*1024*1024},oe={GB_1:1024*1024*1024,GB_2:2*1024*1024*1024,GB_5:5*1024*1024*1024,GB_10:10*1024*1024*1024},c={...J,...Q,...ee,...oe},no={AVATAR:c.MB_2,IMAGE:c.MB_5,DOCUMENT:c.MB_10,PRESENTATION:c.MB_25,AUDIO:c.MB_50,VIDEO:c.MB_500,ARCHIVE:c.GB_1},to=o(e=>e*1024*1024,"mbToBytes"),ao=o(e=>e*1024*1024*1024,"gbToBytes"),io=o(e=>e/(1024*1024),"bytesToMb"),so=o(e=>e/(1024*1024*1024),"bytesToGb"),co=o((e,r)=>e<=r,"isWithinSizeLimit");var uo=["a-arrow-down","a-arrow-up","academic-hat","accessibility","activity-square","activity","add-queue","aeroplane","air-conditioner","airplay","airpods","alarm-check","alarm-minus","alarm-plus","alarm-smoke","alarm-snooze","alarm-x","alarm","album","align-bottom","align-horizontal","align-left","align-right","align-top","align-vertical","alt","ambulance","ampersand-square","ampersand","ampersands","anchor","angry-circle","angry-ghost","angry-square","annoyed-circle","annoyed-ghost","annoyed-square","aperture","api","ar","archive","arrow-diagonal-one","arrow-diagonal-two","arrow-down-circle","arrow-down-left-circle","arrow-down-left-square","arrow-down-left-waves","arrow-down-left","arrow-down-right-circle","arrow-down-right-square","arrow-down-right-waves","arrow-down-right","arrow-down-square","arrow-down-waves","arrow-down","arrow-left-circle","arrow-left-right","arrow-left-square","arrow-left-waves","arrow-left","arrow-long-down-left","arrow-long-down-right","arrow-long-down","arrow-long-left","arrow-long-right","arrow-long-up-left","arrow-long-up-right","arrow-long-up","arrow-right-circle","arrow-right-square","arrow-right-waves","arrow-right","arrow-up-circle","arrow-up-down","arrow-up-left-circle","arrow-up-left-square","arrow-up-left-waves","arrow-up-left","arrow-up-right-circle","arrow-up-right-square","arrow-up-right-waves","arrow-up-right","arrow-up-square","arrow-up-waves","arrow-up","asterisk-circle","asterisk-diamond","asterisk-hexagon","asterisk-octagon","asterisk-square","asterisk-waves","at","atom","baby","backpack","badge","baggage-claim","ban","bank","baseball","bath","battery-charging-four","battery-charging-one","battery-charging-three","battery-charging-two","battery-charging","battery-check","battery-empty","battery-full","battery-minus","battery-plus","battery-x","bell-check","bell-home","bell-minus","bell-on","bell-plus","bell-slash","bell-snooze","bell-user","bell-x","bell","binoculars","bitcoin-circle","bitcoin-diamond","bitcoin-hexagon","bitcoin-octagon","bitcoin-square","bitcoin-waves","bitcoin","bluetooth","boat","book-check","book-dot","book-home","book-image","book-minus","book-open","book-plus","book-slash","book-snooze","book-user","book-x","book","bookmark-check","bookmark-dot","bookmark-home","bookmark-minus","bookmark-plus","bookmark-slash","bookmark-snooze","bookmark-user","bookmark-x","bookmark","bounding-box","bowl","box","brand-chrome","brand-codepen","brand-codesandbox","brand-dribbble","brand-facebook","brand-figma","brand-framer","brand-github","brand-gitlab","brand-google","brand-instagram","brand-linkedin","brand-pinterest","brand-pocket","brand-slack","brand-spotify","brand-telegram","brand-threads","brand-trello","brand-twitch","brand-twitter","brand-x","brand-youtube","briefcase-conveyor-belt","briefcase","brightness-high","brightness-low","bubbles","building-one","building","cable-car","cake","calendar-check","calendar-down","calendar-minus","calendar-plus","calendar-slash","calendar-up","calendar-x","calendar","camera-slash","camera","campfire","cannabis","caravan","cart-check","cart-minus","cart-plus","cart-x","cart","cast-screen","center-focus","chart-area","chart-bar-big","chart-bar-decreasing","chart-bar-increasing","chart-bar-one","chart-bar-stacked","chart-bar","chart-bubble","chart-candlestick","chart-column-big","chart-column-decreasing","chart-column-increasing","chart-column-stacked","chart-column","chart-gantt","chart-graph","chart-line","chart-network","chart-no-axes-column-decreasing","chart-no-axes-column-increasing","chart-no-axes-column","chart-no-axes-combined","chart-no-axes-gantt","chart-pie-one","chart-pie-two","chart-pie","chart-scatter","chart-spline","chat-check","chat-dots","chat-messages","chat-minus","chat-plus","chat-x","chat","check-circle-one","check-circle","check-diamond","check-hexagon","check-octagon","check-square-one","check-square","check-waves","check","chevron-double-down-left","chevron-double-down-right","chevron-double-down","chevron-double-left","chevron-double-right","chevron-double-up-left","chevron-double-up-right","chevron-double-up","chevron-down-circle","chevron-down-left-circle","chevron-down-left-square","chevron-down-left-waves","chevron-down-left","chevron-down-right-circle","chevron-down-right-square","chevron-down-right-waves","chevron-down-right","chevron-down-square","chevron-down-waves","chevron-down","chevron-left-circle","chevron-left-square","chevron-left-waves","chevron-left","chevron-right-circle","chevron-right-square","chevron-right-waves","chevron-right","chevron-up-circle","chevron-up-down","chevron-up-left-circle","chevron-up-left-square","chevron-up-left-waves","chevron-up-left","chevron-up-right-circle","chevron-up-right-square","chevron-up-right-waves","chevron-up-right","chevron-up-square","chevron-up-waves","chevron-up","chip","cigarette-off","cigarette","circle-dashed","circle-half-circle","circle-half","circle-notch","circle","click","clipboard","clock-circle","clock-diamond","clock-eight","clock-eleven","clock-five","clock-four","clock-hand","clock-hexagon","clock-nine","clock-octagon","clock-one","clock-seven","clock-six","clock-square","clock-ten","clock-three","clock-twelve","clock-two","clock-waves","cloud-download","cloud-drizzle","cloud-fog","cloud-hail","cloud-lightning","cloud-moon-rain","cloud-moon","cloud-off","cloud-rain-wind","cloud-rain","cloud-snow","cloud-sun-rain","cloud-sun","cloud-upload","cloud","cloudy","cocktail","code-circle","code-diamond","code-hexagon","code-octagon","code-square","code-waves","code","coffee","cog-four","cog-one","cog-three","cog-two","cog","columns","command","compass","components","confetti","config-vertical","config","contactless-circle","contactless","controller","cookie","copy","copyleft","copyright-slash","copyright","corner-down-left","corner-down-right","corner-left-down","corner-left-up","corner-right-down","corner-right-up","corner-up-left","corner-up-right","credit-card-check","credit-card-minus","credit-card-plus","credit-card-x","credit-card","croissant","crop","crosshair","cupcake","danger-circle","danger-diamond","danger-hexagon","danger-octagon","danger-square","danger-triangle","danger-waves","danger","database","daze-circle","daze-ghost","daze-square","delete","desktop","diamond","dice-five","dice-four","dice-one","dice-six","dice-three","dice-two","dislike","divide","dollar-circle","dollar-diamond","dollar-hexagon","dollar-octagon","dollar-square","dollar-waves","dollar","door-closed-locked","door-closed","door-open","dots-circle","dots-diamond","dots-hexagon","dots-octagon","dots-square","dots-vertical-circle","dots-vertical-diamond","dots-vertical-hexagon","dots-vertical-octagon","dots-vertical-square","dots-vertical-waves","dots-vertical","dots-waves","dots","download","drop","droplet-off","droplet","droplets","ear-slash","ear","earth","eclipse","edit-one","edit","egg","eight-circle","eight-diamond","eight-hexagon","eight-octagon","eight-square","eight-waves","eight","elevator","envelope-open","envelope","euro-circle","euro-diamond","euro-hexagon","euro-octagon","euro-square","euro-waves","euro","exclude","external-link","eye-slash","eye","face-id","fat-arrow-down-left","fat-arrow-down-right","fat-arrow-down","fat-arrow-left","fat-arrow-right","fat-arrow-up-left","fat-arrow-up-right","fat-arrow-up","fat-corner-down-left","fat-corner-down-right","fat-corner-left-down","fat-corner-left-up","fat-corner-right-down","fat-corner-right-up","fat-corner-up-left","fat-corner-up-right","female","file-check","file-minus","file-plus","file-text","file-x","file","film","filter-one","filter","fine-tune","fire","five-circle","five-diamond","five-hexagon","five-octagon","five-square","five-waves","five","flag-one","flag","flame-kindling","flame","flask","flower-2","flower","folder-check","folder-heart","folder-kanban","folder-minus","folder-one","folder-plus","folder-slash","folder-two","folder-x","folder","forward-circle","forward-diamond","forward-hexagon","forward-octagon","forward-square","forward-waves","forward","four-circle","four-diamond","four-hexagon","four-octagon","four-square","four-waves","four","frame","funny-circle","funny-ghost","funny-square","gift","git-branch","git-circle","git-commit","git-diamond","git-diff","git-hexagon","git-merge","git-octagon","git-pull-request","git-square","git-waves","glasses","globe","grid-one","grid","hand","hard-drive","hash-circle","hash-diamond","hash-hexagon","hash-octagon","hash-square","hash-waves","hash","haze","heading-five","heading-four","heading-one","heading-six","heading-three","heading-two","heading","headphones","heart-broken","heart-check","heart-circle","heart-diamond","heart-dot","heart-hexagon","heart-home","heart-minus","heart-octagon","heart-plus","heart-slash","heart-snooze","heart-square","heart-user","heart-waves","heart-x","heart","hexagon","home-check","home-minus","home-plus","home-smile","home-x","home","image-circle","image-rectangle","image","inbox-archive","inbox-check","inbox-down","inbox-minus","inbox-plus","inbox-up","inbox-x","inbox","incognito","indifferent-circle","indifferent-ghost","indifferent-square","infinity","info-circle","info-diamond","info-hexagon","info-octagon","info-square","info-triangle","info-waves","info","intersect","kanban","key","keyboard-brightness-high","keyboard-brightness-low","keyboard","label","lamp","layers-one","layers-three","layers-two","layout","leaf","leaves","letter-a-circle","letter-a-diamond","letter-a-hexagon","letter-a-octagon","letter-a-square","letter-a-waves","letter-a","letter-b-circle","letter-b-diamond","letter-b-hexagon","letter-b-octagon","letter-b-square","letter-b-waves","letter-b","letter-c-circle","letter-c-diamond","letter-c-hexagon","letter-c-octagon","letter-c-square","letter-c-waves","letter-c","letter-d-circle","letter-d-diamond","letter-d-hexagon","letter-d-octagon","letter-d-square","letter-d-waves","letter-d","letter-e-circle","letter-e-diamond","letter-e-hexagon","letter-e-octagon","letter-e-square","letter-e-waves","letter-e","letter-f-circle","letter-f-diamond","letter-f-hexagon","letter-f-octagon","letter-f-square","letter-f-waves","letter-f","letter-g-circle","letter-g-diamond","letter-g-hexagon","letter-g-octagon","letter-g-square","letter-g-waves","letter-g","letter-h-circle","letter-h-diamond","letter-h-hexagon","letter-h-octagon","letter-h-square","letter-h-waves","letter-h","letter-i-circle","letter-i-diamond","letter-i-hexagon","letter-i-octagon","letter-i-square","letter-i-waves","letter-i","letter-j-circle","letter-j-diamond","letter-j-hexagon","letter-j-octagon","letter-j-square","letter-j-waves","letter-j","letter-k-circle","letter-k-diamond","letter-k-hexagon","letter-k-octagon","letter-k-square","letter-k-waves","letter-k","letter-l-circle","letter-l-diamond","letter-l-hexagon","letter-l-octagon","letter-l-square","letter-l-waves","letter-l","letter-m-circle","letter-m-diamond","letter-m-hexagon","letter-m-octagon","letter-m-square","letter-m-waves","letter-m","letter-n-circle","letter-n-diamond","letter-n-hexagon","letter-n-octagon","letter-n-square","letter-n-waves","letter-n","letter-o-circle","letter-o-diamond","letter-o-hexagon","letter-o-octagon","letter-o-square","letter-o-waves","letter-o","letter-p-circle","letter-p-diamond","letter-p-hexagon","letter-p-octagon","letter-p-square","letter-p-waves","letter-p","letter-q-circle","letter-q-diamond","letter-q-hexagon","letter-q-octagon","letter-q-square","letter-q-waves","letter-q","letter-r-circle","letter-r-diamond","letter-r-hexagon","letter-r-octagon","letter-r-square","letter-r-waves","letter-r","letter-s-circle","letter-s-diamond","letter-s-hexagon","letter-s-octagon","letter-s-square","letter-s-waves","letter-s","letter-t-circle","letter-t-diamond","letter-t-hexagon","letter-t-octagon","letter-t-square","letter-t-waves","letter-t","letter-u-circle","letter-u-diamond","letter-u-hexagon","letter-u-octagon","letter-u-square","letter-u-waves","letter-u","letter-v-circle","letter-v-diamond","letter-v-hexagon","letter-v-octagon","letter-v-square","letter-v-waves","letter-v","letter-w-circle","letter-w-diamond","letter-w-hexagon","letter-w-octagon","letter-w-square","letter-w-waves","letter-w","letter-x-circle","letter-x-diamond","letter-x-hexagon","letter-x-octagon","letter-x-square","letter-x-waves","letter-x","letter-y-circle","letter-y-diamond","letter-y-hexagon","letter-y-octagon","letter-y-square","letter-y-waves","letter-y","letter-z-circle","letter-z-diamond","letter-z-hexagon","letter-z-octagon","letter-z-square","letter-z-waves","letter-z","lightning-off","lightning","like","line-chart-circle","line-chart-diamond","line-chart-hexagon","line-chart-octagon","line-chart-square","line-chart-waves","link-one","link-two","link","list-check","list-number","list","location-check","location-home","location-minus","location-plus","location-selected","location-slash","location-snooze","location-user","location-x","location","lock-circle","lock-diamond","lock-hexagon","lock-keyhole","lock-octagon","lock-open-keyhole","lock-open-password","lock-open","lock-password","lock-square","lock-waves","lock","login","logout","magnet","male","map","mask","math-square","math","maximize-one","maximize","menu","message-check","message-dots","message-minus","message-plus","message-reply","message-x","message","microphone-slash","microphone","minimize-one","minimize","minus-circle","minus-diamond","minus-hexagon","minus-octagon","minus-square","minus-waves","minus","mobile-signal-five","mobile-signal-four","mobile-signal-one","mobile-signal-three","mobile-signal-two","mobile","moon-star","moon","mountain-snow","mountain","mouse-pointer","move-diagonal-one","move-diagonal","move-horizontal","move-vertical","move","music-circle","music-diamond","music-hexagon","music-octagon","music-square","music-waves","music","myna","navigation-one","navigation","nine-circle","nine-diamond","nine-hexagon","nine-octagon","nine-square","nine-waves","nine","notification","octagon","one-circle","one-diamond","one-hexagon","one-octagon","one-square","one-waves","one","option","package","paint","panel-bottom-close","panel-bottom-inactive","panel-bottom-open","panel-bottom","panel-left-close","panel-left-inactive","panel-left-open","panel-left","panel-right-close","panel-right-inactive","panel-right-open","panel-right","panel-top-close","panel-top-inactive","panel-top-open","panel-top","paperclip","parking","password","path","pause-circle","pause-diamond","pause-hexagon","pause-octagon","pause-square","pause-waves","pause","pen","pencil","percentage-circle","percentage-diamond","percentage-hexagon","percentage-octagon","percentage-square","percentage-waves","percentage","pin","pizza","planet","play-circle","play-diamond","play-hexagon","play-octagon","play-square","play-waves","play","plus-circle","plus-diamond","plus-hexagon","plus-octagon","plus-square","plus-waves","plus","pokeball","power","presentation","printer","puzzle","question-circle","question-diamond","question-hexagon","question-octagon","question-square","question-waves","question","radio","rainbow","reception-bell","record","rectangle-vertical","rectangle","redo","refresh-alt","refresh","repeat","rewind-circle","rewind-diamond","rewind-hexagon","rewind-octagon","rewind-square","rewind-waves","rewind","rhombus","ribbon","rocket","room-service","rows","rss","ruler","rupee-circle","rupee-diamond","rupee-hexagon","rupee-octagon","rupee-square","rupee-waves","rupee","sad-circle","sad-ghost","sad-square","save","scan","scissors","sea-waves","search-check","search-circle","search-diamond","search-dot","search-hexagon","search-home","search-minus","search-octagon","search-plus","search-slash","search-snooze","search-square","search-user","search-waves","search-x","search","select-multiple","send","servers","seven-circle","seven-diamond","seven-hexagon","seven-octagon","seven-square","seven-waves","seven","share","shell","shield-check","shield-crossed","shield-minus","shield-one","shield-plus","shield-slash","shield-two","shield-x","shield","shooting-star","shopping-bag","shovel","shrub","shuffle-alt","shuffle","sidebar-alt","sidebar","signal-circle","signal-diamond","signal-hexagon","signal-octagon","signal-square","signal-waves","signal","six-circle","six-diamond","six-hexagon","six-octagon","six-square","six-waves","six","skip-back","skip-forward","slash-circle","slash-diamond","slash-hexagon","slash-octagon","slash-square","slash-waves","smile-circle","smile-ghost","smile-square","snow","snowflake","sofa","sort","sparkles","speaker","spinner-one","spinner","sprout","square-chart-gantt","square-dashed-kanban","square-dashed","square-half","square-kanban","square","star","stop-circle","stop-diamond","stop-hexagon","stop-octagon","stop-square","stop-waves","stop","store","subtract","sun-dim","sun-medium","sun-snow","sun","sunrise","sunset","support","swatches","table","tablet","tag-plus","tag","tally-five","tally-four","tally-one","tally-three","tally-two","target","telephone-call","telephone-forward","telephone-in","telephone-missed","telephone-out","telephone-slash","telephone","tent-tree","tent","terminal","text-align-center","text-align-left","text-align-right","text-justify","thermometer-snowflake","thermometer-sun","thermometer","three-circle","three-diamond","three-hexagon","three-octagon","three-square","three-waves","three","ticket-slash","ticket","toggle-left","toggle-right","tool","tornado","train","trash-one","trash-two","trash","tree-deciduous","tree-palm","tree-pine","tree","trees","trending-down","trending-up-down","trending-up","triangle","truck","tv","two-circle","two-diamond","two-hexagon","two-octagon","two-square","two-waves","two","type-bold","type-italic","type-text","type-underline","umbrella-off","umbrella","undo","union","unlink","upload","user-check","user-circle","user-diamond","user-hexagon","user-minus","user-octagon","user-plus","user-settings","user-square","user-waves","user-x","user","users-group","users","video-slash","video","volume-check","volume-high","volume-low","volume-minus","volume-none","volume-plus","volume-slash","volume-x","watch","waves","webcam","wheel","wheelchair","wifi-check","wifi-low","wifi-medium","wifi-minus","wifi-plus","wifi-slash","wifi-x","wifi","wind-arrow-down","wind","winds","wine","wink-circle","wink-ghost","wink-square","wrench","x-circle","x-diamond","x-hexagon","x-octagon","x-square","x-triangle","x-waves","x","yen-circle","yen-diamond","yen-hexagon","yen-octagon","yen-square","yen-waves","yen","zap-off","zap","zero-circle","zero-diamond","zero-hexagon","zero-octagon","zero-square","zero-waves","zero"];var ho=100,go=160;var fo=100,Co=160;var yo="00000000-0000-0000-0000-000000000000";var ko=[{id:"email",label:"Email",icon:"envelope",group:"communication",storage:{kind:"format",value:"email"}},{id:"url",label:"URL",icon:"link",group:"communication",storage:{kind:"format",value:"url"}},{id:"phone_fr",label:"T\xE9l\xE9phone (FR)",icon:"telephone",group:"communication",storage:{kind:"pattern",regex:"^0[1-9]([-. ]?[0-9]{2}){4}$"}},{id:"slug",label:"Slug (kebab-case)",icon:"hash",group:"identifiants",storage:{kind:"format",value:"slug"}},{id:"alphanumeric",label:"Alphanum\xE9rique",icon:"type-text",group:"identifiants",storage:{kind:"pattern",regex:"^[a-zA-Z0-9]+$"}},{id:"siren",label:"SIREN",icon:"building",group:"business_fr",storage:{kind:"pattern",regex:"^[0-9]{9}$"}},{id:"siret",label:"SIRET",icon:"building",group:"business_fr",storage:{kind:"pattern",regex:"^[0-9]{14}$"}},{id:"postcode_fr",label:"Code postal (FR)",icon:"location",group:"business_fr",storage:{kind:"pattern",regex:"^[0-9]{5}$"}},{id:"iban",label:"IBAN",icon:"credit-card",group:"business_fr",storage:{kind:"pattern",regex:"^[A-Z]{2}[0-9]{2}[A-Z0-9]{1,30}$"}},{id:"vat_fr",label:"TVA intracom",icon:"credit-card",group:"business_fr",storage:{kind:"pattern",regex:"^[A-Z]{2}[0-9A-Z]{2,12}$"}},{id:"hex_color",label:"Code couleur hex",icon:"paint",group:"design",storage:{kind:"pattern",regex:"^#[0-9A-Fa-f]{6}$"}}];export{xe as AI_CHAT_ACCEPTED_TYPES,Ce as AI_CHAT_MAX_FILES,fe as AI_CHAT_MAX_FILE_SIZE,F as AI_CHAT_SUPPORTED_DOCUMENTS,L as AI_CHAT_SUPPORTED_IMAGES,G as AI_CHAT_SUPPORTED_MIME_TYPES,ie as ALL_MIME_TYPES,k as ARCHIVES,_ as ARCHIVE_MIME_TYPES,P as ARCHIVE_MIME_TYPES_ARRAY,x as AUDIO,A as AUDIO_MIME_TYPES,I as AUDIO_MIME_TYPES_ARRAY,K as BUILT_IN_AGENT_TOOL_GROUPS,ye as BUILT_IN_AGENT_TOOL_NAMES,J as BYTES,T as CODE,N as CODE_MIME_TYPES,O as CODE_MIME_TYPES_ARRAY,m as COLORS,j as COLOR_GROUPS,s as COUNTRIES,h as CURRENCIES,Y as DEFAULT_ATTRIBUTE_ICONS,H as DEFAULT_TAB_ICONS,yo as DEFAULT_TENANT_ID,w as DOCUMENTS,t as DOCUMENT_MIME_TYPES,E as DOCUMENT_MIME_TYPES_ARRAY,c as FILE_SIZE,U as FONTS,B as FONT_MIME_TYPES,q as FONT_MIME_TYPES_ARRAY,oe as GIGABYTES,uo as ICONS,g as IMAGES,i as IMAGE_MIME_TYPES,D as IMAGE_MIME_TYPES_ARRAY,Q as KILOBYTES,ae as MEDIA,ee as MEGABYTES,go as MEMORY_DESCRIPTION_MAX_LENGTH,ho as MEMORY_NAME_MAX_LENGTH,te as OFFICE_DOCUMENTS,no as RECOMMENDED_MAX_SIZES,Co as SKILL_DESCRIPTION_MAX_LENGTH,fo as SKILL_NAME_MAX_LENGTH,Ue as STATUS_COLORS,ko as TEXT_FORMAT_PRESETS,f as VIDEO,R as VIDEO_MIME_TYPES,S as VIDEO_MIME_TYPES_ARRAY,ne as WEB_IMAGES,so as bytesToGb,io as bytesToMb,Ae as cn,ao as gbToBytes,Ne as getAllColors,W as getAllCountries,Je as getAllCurrencies,Se as getColor,Oe as getColorIds,qe as getColorsByGroup,Ge as getCountryByIso2,X as getCountryByIso3,y as getCountryDisplayName,Ve as getCountryDisplayNameByIso3,$e as getCurrency,Qe as getCurrencySymbol,ke as getDefaultAttributeIcon,Me as getDefaultTabIcon,Ke as getPhoneMaxDigits,Ye as getPhoneTrunkPrefix,Ze as getSortedCountries,le as isArchiveMimeType,de as isAudioMimeType,ue as isCodeMimeType,ce as isDocumentMimeType,se as isImageMimeType,Be as isValidColorId,eo as isValidCurrencyCode,He as isValidIso2,ze as isValidIso3,pe as isVideoMimeType,co as isWithinSizeLimit,to as mbToBytes,je as stripTrunkPrefix};
|
|
2
|
+
var E=Object.defineProperty;var o=(e,r)=>E(e,"name",{value:r,configurable:!0});var i={JPEG:"image/jpeg",PNG:"image/png",GIF:"image/gif",WEBP:"image/webp",SVG:"image/svg+xml",BMP:"image/bmp",TIFF:"image/tiff",ICO:"image/x-icon",HEIC:"image/heic",HEIF:"image/heif"},D=Object.values(i),a={PDF:"application/pdf",DOC:"application/msword",DOCX:"application/vnd.openxmlformats-officedocument.wordprocessingml.document",XLS:"application/vnd.ms-excel",XLSX:"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",PPT:"application/vnd.ms-powerpoint",PPTX:"application/vnd.openxmlformats-officedocument.presentationml.presentation",ODT:"application/vnd.oasis.opendocument.text",ODS:"application/vnd.oasis.opendocument.spreadsheet",ODP:"application/vnd.oasis.opendocument.presentation",RTF:"application/rtf",TXT:"text/plain",CSV:"text/csv",MARKDOWN:"text/markdown"},_=Object.values(a),P={ZIP:"application/zip",RAR:"application/vnd.rar",TAR:"application/x-tar",GZIP:"application/gzip","7Z":"application/x-7z-compressed",BZ2:"application/x-bzip2"},A=Object.values(P),I={MP3:"audio/mpeg",WAV:"audio/wav",OGG:"audio/ogg",AAC:"audio/aac",FLAC:"audio/flac",M4A:"audio/mp4",WEBM:"audio/webm"},R=Object.values(I),S={MP4:"video/mp4",WEBM:"video/webm",OGG:"video/ogg",AVI:"video/x-msvideo",MOV:"video/quicktime",MKV:"video/x-matroska",FLV:"video/x-flv",WMV:"video/x-ms-wmv",MPEG:"video/mpeg"},N=Object.values(S),m={JAVASCRIPT:"text/javascript",JAVASCRIPT_LEGACY:"application/javascript",TYPESCRIPT:"text/typescript",JSON:"application/json",XML:"application/xml",HTML:"text/html",CSS:"text/css",PYTHON:"text/x-python",JAVA:"text/x-java-source",C:"text/x-c",CPP:"text/x-c++",YAML:"application/x-yaml",SQL:"application/sql"},O=Object.values(m),B={TTF:"font/ttf",OTF:"font/otf",WOFF:"font/woff",WOFF2:"font/woff2",EOT:"application/vnd.ms-fontobject"},q=Object.values(B),x=D,k=_,T=A,f=R,C=N,v=O,U=q,ne=[i.JPEG,i.PNG,i.GIF,i.WEBP],ae=[a.PDF,a.DOC,a.DOCX,a.XLS,a.XLSX,a.PPT,a.PPTX],te=[...x,...f,...C],ie=[...x,...k,...T,...f,...C,...v,...U],se=o(e=>x.includes(e),"isImageMimeType"),ce=o(e=>k.includes(e),"isDocumentMimeType"),le=o(e=>T.includes(e),"isArchiveMimeType"),de=o(e=>f.includes(e),"isAudioMimeType"),pe=o(e=>C.includes(e),"isVideoMimeType"),ue=o(e=>v.includes(e),"isCodeMimeType");var L=[i.JPEG,i.PNG,i.WEBP,i.GIF,i.SVG],G=[a.PDF,a.DOC,a.DOCX,a.XLSX,a.TXT,a.MARKDOWN,a.CSV,m.JAVASCRIPT,m.JAVASCRIPT_LEGACY],F=[...L,...G],xe=F.join(","),fe=50*1024*1024,Ce=5;var K={bulk:["bulk_create_records","bulk_delete_records","bulk_search","bulk_update_records"],calendar:["get_calendar_event","get_meeting_transcript","search_calendar_events"],core:["archive_document","ask_questions","attach_file","call_reflex","create_folder","create_record","delete_record","exec_command","get_record","get_schema","get_skill","global_search","initialize_record_drive_structure","list_record_drive","list_workspace_users","load_toolset","publish_artifact","read_document","remove_file","request_work_mode","sandbox_get_file","sandbox_upload_file","sandbox_validate_payload","search_records","update_document","update_record","write_todos"],email:["download_email_attachments","get_email","get_email_thread","search_emails"],memory:["get_memory","save_memory","search_memories"],orchestration:["message_agent","spawn_agent"],schema:["apply_architect_operation","describe_architect_operation","discard_architect_draft","get_default_view","get_schema_history","request_design_review","search_icons"],web:["read_webpage","web_search"]},ye=Object.values(K).flat();var Y={text:"text-align-left",textarea:"align-left",number:"hash",checkbox:"check-square",date:"calendar",phone:"telephone",currency:"dollar-circle",status:"activity",location:"location",timestamp:"clock-circle",select:"chevron-down-circle",multiselect:"list-check",file:"file",user:"user",relation:"link",rating:"star",formula:"math",rollup:"chart-bar-stacked"};function ke(e){return Y[e]??"circle"}o(ke,"getDefaultAttributeIcon");var H={form:"layout",table:"table",custom:"puzzle",activity:"activity",richtext:"file-text",documents:"folder",forms:"clipboard",emails:"envelope",meetings:"calendar"};function Me(e){return H[e]??"circle"}o(Me,"getDefaultTabIcon");import{clsx as z}from"clsx";import{extendTailwindMerge as V}from"tailwind-merge";var Z=V({extend:{classGroups:{"font-size":["text-control-2xs","text-control-xs","text-control-sm","text-control-default","text-control-lg","text-row-sm","text-row-default","text-row-lg","text-metric"],h:["h-control-sm","h-control-default","h-control-lg","h-row-sm","h-row-default","h-row-lg"],w:["w-control-sm","w-control-default","w-control-lg","w-query-popover"],size:["size-control-sm","size-control-default","size-control-lg"],p:["p-surface-sm","p-surface-default","p-surface-lg"]}}});function Ae(...e){return Z(z(e))}o(Ae,"cn");var b=o((e,r)=>`light-dark(${e}, ${r})`,"lightDark");function n(e,r,t){let l=Number.parseInt(e.slice(1,3),16),d=Number.parseInt(e.slice(3,5),16),p=Number.parseInt(e.slice(5,7),16),u=o(M=>`rgba(${l}, ${d}, ${p}, ${M})`,"alpha");return{background:b(u(.15),u(.22)),border:b(u(.3),u(.42)),text:b(r,t),icon:e}}o(n,"defineColor");var h={gray:n("#6B7280","#374151","#D1D5DB"),slate:n("#64748B","#334155","#CBD5E1"),blue:n("#3B82F6","#1D4ED8","#93C5FD"),sky:n("#0EA5E9","#0369A1","#7DD3FC"),indigo:n("#6366F1","#4338CA","#A5B4FC"),green:n("#22C55E","#15803D","#86EFAC"),emerald:n("#10B981","#047857","#6EE7B7"),teal:n("#14B8A6","#0F766E","#5EEAD4"),red:n("#EF4444","#B91C1C","#FCA5A5"),rose:n("#F43F5E","#BE123C","#FDA4AF"),yellow:n("#EAB308","#A16207","#FDE047"),amber:n("#F59E0B","#B45309","#FCD34D"),orange:n("#F97316","#C2410C","#FDBA74"),purple:n("#A855F7","#7E22CE","#D8B4FE"),violet:n("#8B5CF6","#6D28D9","#C4B5FD"),fuchsia:n("#D946EF","#A21CAF","#F0ABFC"),pink:n("#EC4899","#BE185D","#F9A8D4"),cyan:n("#06B6D4","#0E7490","#67E8F9"),lime:n("#84CC16","#4D7C0F","#BEF264")},Se=o(e=>h[e],"getColor"),Ne=o(()=>Object.values(h),"getAllColors"),Oe=o(()=>Object.keys(h),"getColorIds"),Be=o(e=>e in h,"isValidColorId"),X={neutral:["gray","slate"],primary:["blue","indigo","sky"],success:["green","emerald","teal","lime"],danger:["red","rose"],warning:["yellow","amber","orange"],info:["blue","cyan","sky"],special:["purple","violet","fuchsia"],accent:["pink"]},qe=o(e=>[...X[e]],"getColorsByGroup"),Ue={idle:["gray","slate"],in_progress:["blue","indigo","sky","cyan","purple"],finished:["green","emerald","teal"],cancelled:["red","rose"],warning:["yellow","amber","orange"]};var s={FR:{name:"France",iso2:"FR",iso3:"FRA",numericCode:"250",phoneCode:"+33",phoneMaxDigits:10,phoneTrunkPrefix:"0"},US:{name:"United States",iso2:"US",iso3:"USA",numericCode:"840",phoneCode:"+1",phoneMaxDigits:10,phoneTrunkPrefix:""},GB:{name:"United Kingdom",iso2:"GB",iso3:"GBR",numericCode:"826",phoneCode:"+44",phoneMaxDigits:11,phoneTrunkPrefix:"0"},DE:{name:"Germany",iso2:"DE",iso3:"DEU",numericCode:"276",phoneCode:"+49",phoneMaxDigits:11,phoneTrunkPrefix:"0"},ES:{name:"Spain",iso2:"ES",iso3:"ESP",numericCode:"724",phoneCode:"+34",phoneMaxDigits:9,phoneTrunkPrefix:""},IT:{name:"Italy",iso2:"IT",iso3:"ITA",numericCode:"380",phoneCode:"+39",phoneMaxDigits:10,phoneTrunkPrefix:"0"},BE:{name:"Belgium",iso2:"BE",iso3:"BEL",numericCode:"056",phoneCode:"+32",phoneMaxDigits:9,phoneTrunkPrefix:"0"},CH:{name:"Switzerland",iso2:"CH",iso3:"CHE",numericCode:"756",phoneCode:"+41",phoneMaxDigits:10,phoneTrunkPrefix:"0"},NL:{name:"Netherlands",iso2:"NL",iso3:"NLD",numericCode:"528",phoneCode:"+31",phoneMaxDigits:9,phoneTrunkPrefix:"0"},PT:{name:"Portugal",iso2:"PT",iso3:"PRT",numericCode:"620",phoneCode:"+351",phoneMaxDigits:9,phoneTrunkPrefix:""},CA:{name:"Canada",iso2:"CA",iso3:"CAN",numericCode:"124",phoneCode:"+1",phoneMaxDigits:10,phoneTrunkPrefix:""},AU:{name:"Australia",iso2:"AU",iso3:"AUS",numericCode:"036",phoneCode:"+61",phoneMaxDigits:9,phoneTrunkPrefix:"0"},AT:{name:"Austria",iso2:"AT",iso3:"AUT",numericCode:"040",phoneCode:"+43",phoneMaxDigits:11,phoneTrunkPrefix:"0"},SE:{name:"Sweden",iso2:"SE",iso3:"SWE",numericCode:"752",phoneCode:"+46",phoneMaxDigits:10,phoneTrunkPrefix:"0"},NO:{name:"Norway",iso2:"NO",iso3:"NOR",numericCode:"578",phoneCode:"+47",phoneMaxDigits:8,phoneTrunkPrefix:""},DK:{name:"Denmark",iso2:"DK",iso3:"DNK",numericCode:"208",phoneCode:"+45",phoneMaxDigits:8,phoneTrunkPrefix:""},FI:{name:"Finland",iso2:"FI",iso3:"FIN",numericCode:"246",phoneCode:"+358",phoneMaxDigits:10,phoneTrunkPrefix:"0"},IE:{name:"Ireland",iso2:"IE",iso3:"IRL",numericCode:"372",phoneCode:"+353",phoneMaxDigits:10,phoneTrunkPrefix:"0"},PL:{name:"Poland",iso2:"PL",iso3:"POL",numericCode:"616",phoneCode:"+48",phoneMaxDigits:9,phoneTrunkPrefix:""},CZ:{name:"Czech Republic",iso2:"CZ",iso3:"CZE",numericCode:"203",phoneCode:"+420",phoneMaxDigits:9,phoneTrunkPrefix:""},GR:{name:"Greece",iso2:"GR",iso3:"GRC",numericCode:"300",phoneCode:"+30",phoneMaxDigits:10,phoneTrunkPrefix:""},RO:{name:"Romania",iso2:"RO",iso3:"ROU",numericCode:"642",phoneCode:"+40",phoneMaxDigits:10,phoneTrunkPrefix:"0"},HU:{name:"Hungary",iso2:"HU",iso3:"HUN",numericCode:"348",phoneCode:"+36",phoneMaxDigits:9,phoneTrunkPrefix:"06"},LU:{name:"Luxembourg",iso2:"LU",iso3:"LUX",numericCode:"442",phoneCode:"+352",phoneMaxDigits:9,phoneTrunkPrefix:""},SK:{name:"Slovakia",iso2:"SK",iso3:"SVK",numericCode:"703",phoneCode:"+421",phoneMaxDigits:9,phoneTrunkPrefix:"0"},BG:{name:"Bulgaria",iso2:"BG",iso3:"BGR",numericCode:"100",phoneCode:"+359",phoneMaxDigits:9,phoneTrunkPrefix:"0"},HR:{name:"Croatia",iso2:"HR",iso3:"HRV",numericCode:"191",phoneCode:"+385",phoneMaxDigits:9,phoneTrunkPrefix:"0"},SI:{name:"Slovenia",iso2:"SI",iso3:"SVN",numericCode:"705",phoneCode:"+386",phoneMaxDigits:8,phoneTrunkPrefix:"0"},EE:{name:"Estonia",iso2:"EE",iso3:"EST",numericCode:"233",phoneCode:"+372",phoneMaxDigits:8,phoneTrunkPrefix:""},LV:{name:"Latvia",iso2:"LV",iso3:"LVA",numericCode:"428",phoneCode:"+371",phoneMaxDigits:8,phoneTrunkPrefix:""},LT:{name:"Lithuania",iso2:"LT",iso3:"LTU",numericCode:"440",phoneCode:"+370",phoneMaxDigits:8,phoneTrunkPrefix:""},IS:{name:"Iceland",iso2:"IS",iso3:"ISL",numericCode:"352",phoneCode:"+354",phoneMaxDigits:7,phoneTrunkPrefix:""},MT:{name:"Malta",iso2:"MT",iso3:"MLT",numericCode:"470",phoneCode:"+356",phoneMaxDigits:8,phoneTrunkPrefix:""},CY:{name:"Cyprus",iso2:"CY",iso3:"CYP",numericCode:"196",phoneCode:"+357",phoneMaxDigits:8,phoneTrunkPrefix:""},MC:{name:"Monaco",iso2:"MC",iso3:"MCO",numericCode:"492",phoneCode:"+377",phoneMaxDigits:8,phoneTrunkPrefix:""},MX:{name:"Mexico",iso2:"MX",iso3:"MEX",numericCode:"484",phoneCode:"+52",phoneMaxDigits:10,phoneTrunkPrefix:""},BR:{name:"Brazil",iso2:"BR",iso3:"BRA",numericCode:"076",phoneCode:"+55",phoneMaxDigits:11,phoneTrunkPrefix:""},AR:{name:"Argentina",iso2:"AR",iso3:"ARG",numericCode:"032",phoneCode:"+54",phoneMaxDigits:10,phoneTrunkPrefix:""},CL:{name:"Chile",iso2:"CL",iso3:"CHL",numericCode:"152",phoneCode:"+56",phoneMaxDigits:9,phoneTrunkPrefix:""},CO:{name:"Colombia",iso2:"CO",iso3:"COL",numericCode:"170",phoneCode:"+57",phoneMaxDigits:10,phoneTrunkPrefix:""},PE:{name:"Peru",iso2:"PE",iso3:"PER",numericCode:"604",phoneCode:"+51",phoneMaxDigits:9,phoneTrunkPrefix:""},VE:{name:"Venezuela",iso2:"VE",iso3:"VEN",numericCode:"862",phoneCode:"+58",phoneMaxDigits:10,phoneTrunkPrefix:""},EC:{name:"Ecuador",iso2:"EC",iso3:"ECU",numericCode:"218",phoneCode:"+593",phoneMaxDigits:9,phoneTrunkPrefix:""},UY:{name:"Uruguay",iso2:"UY",iso3:"URY",numericCode:"858",phoneCode:"+598",phoneMaxDigits:8,phoneTrunkPrefix:""},PY:{name:"Paraguay",iso2:"PY",iso3:"PRY",numericCode:"600",phoneCode:"+595",phoneMaxDigits:9,phoneTrunkPrefix:""},BO:{name:"Bolivia",iso2:"BO",iso3:"BOL",numericCode:"068",phoneCode:"+591",phoneMaxDigits:8,phoneTrunkPrefix:""},CR:{name:"Costa Rica",iso2:"CR",iso3:"CRI",numericCode:"188",phoneCode:"+506",phoneMaxDigits:8,phoneTrunkPrefix:""},PA:{name:"Panama",iso2:"PA",iso3:"PAN",numericCode:"591",phoneCode:"+507",phoneMaxDigits:8,phoneTrunkPrefix:""},CN:{name:"China",iso2:"CN",iso3:"CHN",numericCode:"156",phoneCode:"+86",phoneMaxDigits:11,phoneTrunkPrefix:""},JP:{name:"Japan",iso2:"JP",iso3:"JPN",numericCode:"392",phoneCode:"+81",phoneMaxDigits:11,phoneTrunkPrefix:"0"},IN:{name:"India",iso2:"IN",iso3:"IND",numericCode:"356",phoneCode:"+91",phoneMaxDigits:10,phoneTrunkPrefix:""},KR:{name:"South Korea",iso2:"KR",iso3:"KOR",numericCode:"410",phoneCode:"+82",phoneMaxDigits:11,phoneTrunkPrefix:"0"},SG:{name:"Singapore",iso2:"SG",iso3:"SGP",numericCode:"702",phoneCode:"+65",phoneMaxDigits:8,phoneTrunkPrefix:""},HK:{name:"Hong Kong",iso2:"HK",iso3:"HKG",numericCode:"344",phoneCode:"+852",phoneMaxDigits:8,phoneTrunkPrefix:""},TW:{name:"Taiwan",iso2:"TW",iso3:"TWN",numericCode:"158",phoneCode:"+886",phoneMaxDigits:10,phoneTrunkPrefix:"0"},TH:{name:"Thailand",iso2:"TH",iso3:"THA",numericCode:"764",phoneCode:"+66",phoneMaxDigits:9,phoneTrunkPrefix:"0"},MY:{name:"Malaysia",iso2:"MY",iso3:"MYS",numericCode:"458",phoneCode:"+60",phoneMaxDigits:10,phoneTrunkPrefix:"0"},ID:{name:"Indonesia",iso2:"ID",iso3:"IDN",numericCode:"360",phoneCode:"+62",phoneMaxDigits:12,phoneTrunkPrefix:"0"},PH:{name:"Philippines",iso2:"PH",iso3:"PHL",numericCode:"608",phoneCode:"+63",phoneMaxDigits:10,phoneTrunkPrefix:"0"},VN:{name:"Vietnam",iso2:"VN",iso3:"VNM",numericCode:"704",phoneCode:"+84",phoneMaxDigits:10,phoneTrunkPrefix:"0"},PK:{name:"Pakistan",iso2:"PK",iso3:"PAK",numericCode:"586",phoneCode:"+92",phoneMaxDigits:10,phoneTrunkPrefix:"0"},BD:{name:"Bangladesh",iso2:"BD",iso3:"BGD",numericCode:"050",phoneCode:"+880",phoneMaxDigits:10,phoneTrunkPrefix:"0"},IL:{name:"Israel",iso2:"IL",iso3:"ISR",numericCode:"376",phoneCode:"+972",phoneMaxDigits:10,phoneTrunkPrefix:"0"},AE:{name:"United Arab Emirates",iso2:"AE",iso3:"ARE",numericCode:"784",phoneCode:"+971",phoneMaxDigits:9,phoneTrunkPrefix:""},SA:{name:"Saudi Arabia",iso2:"SA",iso3:"SAU",numericCode:"682",phoneCode:"+966",phoneMaxDigits:9,phoneTrunkPrefix:""},TR:{name:"Turkey",iso2:"TR",iso3:"TUR",numericCode:"792",phoneCode:"+90",phoneMaxDigits:10,phoneTrunkPrefix:"0"},NZ:{name:"New Zealand",iso2:"NZ",iso3:"NZL",numericCode:"554",phoneCode:"+64",phoneMaxDigits:10,phoneTrunkPrefix:"0"},ZA:{name:"South Africa",iso2:"ZA",iso3:"ZAF",numericCode:"710",phoneCode:"+27",phoneMaxDigits:9,phoneTrunkPrefix:"0"},EG:{name:"Egypt",iso2:"EG",iso3:"EGY",numericCode:"818",phoneCode:"+20",phoneMaxDigits:10,phoneTrunkPrefix:"0"},NG:{name:"Nigeria",iso2:"NG",iso3:"NGA",numericCode:"566",phoneCode:"+234",phoneMaxDigits:10,phoneTrunkPrefix:"0"},KE:{name:"Kenya",iso2:"KE",iso3:"KEN",numericCode:"404",phoneCode:"+254",phoneMaxDigits:9,phoneTrunkPrefix:"0"},MA:{name:"Morocco",iso2:"MA",iso3:"MAR",numericCode:"504",phoneCode:"+212",phoneMaxDigits:9,phoneTrunkPrefix:"0"},TN:{name:"Tunisia",iso2:"TN",iso3:"TUN",numericCode:"788",phoneCode:"+216",phoneMaxDigits:8,phoneTrunkPrefix:""},DZ:{name:"Algeria",iso2:"DZ",iso3:"DZA",numericCode:"012",phoneCode:"+213",phoneMaxDigits:9,phoneTrunkPrefix:"0"},QA:{name:"Qatar",iso2:"QA",iso3:"QAT",numericCode:"634",phoneCode:"+974",phoneMaxDigits:8,phoneTrunkPrefix:""},KW:{name:"Kuwait",iso2:"KW",iso3:"KWT",numericCode:"414",phoneCode:"+965",phoneMaxDigits:8,phoneTrunkPrefix:""},OM:{name:"Oman",iso2:"OM",iso3:"OMN",numericCode:"512",phoneCode:"+968",phoneMaxDigits:8,phoneTrunkPrefix:""},BH:{name:"Bahrain",iso2:"BH",iso3:"BHR",numericCode:"048",phoneCode:"+973",phoneMaxDigits:8,phoneTrunkPrefix:""},LB:{name:"Lebanon",iso2:"LB",iso3:"LBN",numericCode:"422",phoneCode:"+961",phoneMaxDigits:8,phoneTrunkPrefix:"0"},JO:{name:"Jordan",iso2:"JO",iso3:"JOR",numericCode:"400",phoneCode:"+962",phoneMaxDigits:9,phoneTrunkPrefix:"0"},RU:{name:"Russia",iso2:"RU",iso3:"RUS",numericCode:"643",phoneCode:"+7",phoneMaxDigits:10,phoneTrunkPrefix:""},UA:{name:"Ukraine",iso2:"UA",iso3:"UKR",numericCode:"804",phoneCode:"+380",phoneMaxDigits:9,phoneTrunkPrefix:"0"},BY:{name:"Belarus",iso2:"BY",iso3:"BLR",numericCode:"112",phoneCode:"+375",phoneMaxDigits:9,phoneTrunkPrefix:""},KZ:{name:"Kazakhstan",iso2:"KZ",iso3:"KAZ",numericCode:"398",phoneCode:"+7",phoneMaxDigits:10,phoneTrunkPrefix:""}},Fe=o(e=>s[e.toUpperCase()],"getCountryByIso2"),j=o(e=>Object.values(s).find(r=>r.iso3.toUpperCase()===e.toUpperCase()),"getCountryByIso3"),W=o(()=>Object.values(s),"getAllCountries"),Ke=o(e=>s[e.toUpperCase()]?.phoneMaxDigits??15,"getPhoneMaxDigits"),Ye=o(e=>s[e.toUpperCase()]?.phoneTrunkPrefix??"","getPhoneTrunkPrefix"),He=o(e=>e.toUpperCase()in s,"isValidIso2"),ze=o(e=>Object.values(s).some(r=>r.iso3.toUpperCase()===e.toUpperCase()),"isValidIso3"),y=new Map;function $(e){let r=e.join("\0"),t=y.get(r);if(t!==void 0)return t;try{let l=new Intl.DisplayNames(e,{type:"region"});return y.set(r,l),l}catch{return y.set(r,null),null}}o($,"_getDisplayNames");function w(e,r=["fr","en"]){let t=e.toUpperCase(),l=Array.isArray(r)?r:[r],d=$(l);if(d)try{let p=d.of(t);if(p)return p}catch{}return s[t]?.name??t}o(w,"getCountryDisplayName");function Ve(e,r){let t=j(e);return t?w(t.iso2,r):e}o(Ve,"getCountryDisplayNameByIso3");function Ze(e="fr"){return W().sort((r,t)=>w(r.iso2,e).localeCompare(w(t.iso2,e),e))}o(Ze,"getSortedCountries");function Xe(e,r){return r&&e.startsWith(r)?e.slice(r.length):e}o(Xe,"stripTrunkPrefix");var g={USD:{code:"USD",name:"US Dollar",symbol:"$",decimals:2},EUR:{code:"EUR",name:"Euro",symbol:"\u20AC",decimals:2},GBP:{code:"GBP",name:"British Pound",symbol:"\xA3",decimals:2},JPY:{code:"JPY",name:"Japanese Yen",symbol:"\xA5",decimals:0},CNY:{code:"CNY",name:"Chinese Yuan",symbol:"\xA5",decimals:2},CHF:{code:"CHF",name:"Swiss Franc",symbol:"CHF",decimals:2},SEK:{code:"SEK",name:"Swedish Krona",symbol:"kr",decimals:2},NOK:{code:"NOK",name:"Norwegian Krone",symbol:"kr",decimals:2},DKK:{code:"DKK",name:"Danish Krone",symbol:"kr",decimals:2},PLN:{code:"PLN",name:"Polish Zloty",symbol:"z\u0142",decimals:2},CZK:{code:"CZK",name:"Czech Koruna",symbol:"K\u010D",decimals:2},HUF:{code:"HUF",name:"Hungarian Forint",symbol:"Ft",decimals:0},RON:{code:"RON",name:"Romanian Leu",symbol:"lei",decimals:2},BGN:{code:"BGN",name:"Bulgarian Lev",symbol:"\u043B\u0432",decimals:2},HRK:{code:"HRK",name:"Croatian Kuna",symbol:"kn",decimals:2},ISK:{code:"ISK",name:"Icelandic Krona",symbol:"kr",decimals:0},RUB:{code:"RUB",name:"Russian Ruble",symbol:"\u20BD",decimals:2},UAH:{code:"UAH",name:"Ukrainian Hryvnia",symbol:"\u20B4",decimals:2},TRY:{code:"TRY",name:"Turkish Lira",symbol:"\u20BA",decimals:2},CAD:{code:"CAD",name:"Canadian Dollar",symbol:"CA$",decimals:2},MXN:{code:"MXN",name:"Mexican Peso",symbol:"MX$",decimals:2},BRL:{code:"BRL",name:"Brazilian Real",symbol:"R$",decimals:2},ARS:{code:"ARS",name:"Argentine Peso",symbol:"AR$",decimals:2},CLP:{code:"CLP",name:"Chilean Peso",symbol:"CL$",decimals:0},COP:{code:"COP",name:"Colombian Peso",symbol:"COL$",decimals:0},PEN:{code:"PEN",name:"Peruvian Sol",symbol:"S/",decimals:2},UYU:{code:"UYU",name:"Uruguayan Peso",symbol:"UY$",decimals:2},AUD:{code:"AUD",name:"Australian Dollar",symbol:"A$",decimals:2},NZD:{code:"NZD",name:"New Zealand Dollar",symbol:"NZ$",decimals:2},HKD:{code:"HKD",name:"Hong Kong Dollar",symbol:"HK$",decimals:2},SGD:{code:"SGD",name:"Singapore Dollar",symbol:"S$",decimals:2},KRW:{code:"KRW",name:"South Korean Won",symbol:"\u20A9",decimals:0},INR:{code:"INR",name:"Indian Rupee",symbol:"\u20B9",decimals:2},IDR:{code:"IDR",name:"Indonesian Rupiah",symbol:"Rp",decimals:0},MYR:{code:"MYR",name:"Malaysian Ringgit",symbol:"RM",decimals:2},PHP:{code:"PHP",name:"Philippine Peso",symbol:"\u20B1",decimals:2},THB:{code:"THB",name:"Thai Baht",symbol:"\u0E3F",decimals:2},VND:{code:"VND",name:"Vietnamese Dong",symbol:"\u20AB",decimals:0},TWD:{code:"TWD",name:"Taiwan Dollar",symbol:"NT$",decimals:0},PKR:{code:"PKR",name:"Pakistani Rupee",symbol:"\u20A8",decimals:2},BDT:{code:"BDT",name:"Bangladeshi Taka",symbol:"\u09F3",decimals:2},AED:{code:"AED",name:"UAE Dirham",symbol:"\u062F.\u0625",decimals:2},SAR:{code:"SAR",name:"Saudi Riyal",symbol:"\uFDFC",decimals:2},ILS:{code:"ILS",name:"Israeli Shekel",symbol:"\u20AA",decimals:2},QAR:{code:"QAR",name:"Qatari Riyal",symbol:"\uFDFC",decimals:2},KWD:{code:"KWD",name:"Kuwaiti Dinar",symbol:"\u062F.\u0643",decimals:3},BHD:{code:"BHD",name:"Bahraini Dinar",symbol:"\u062F.\u0628",decimals:3},OMR:{code:"OMR",name:"Omani Rial",symbol:"\uFDFC",decimals:3},JOD:{code:"JOD",name:"Jordanian Dinar",symbol:"\u062F.\u0627",decimals:3},LBP:{code:"LBP",name:"Lebanese Pound",symbol:"\u0644.\u0644",decimals:0},ZAR:{code:"ZAR",name:"South African Rand",symbol:"R",decimals:2},EGP:{code:"EGP",name:"Egyptian Pound",symbol:"\xA3",decimals:2},NGN:{code:"NGN",name:"Nigerian Naira",symbol:"\u20A6",decimals:2},KES:{code:"KES",name:"Kenyan Shilling",symbol:"KSh",decimals:2},MAD:{code:"MAD",name:"Moroccan Dirham",symbol:"\u062F.\u0645.",decimals:2},TND:{code:"TND",name:"Tunisian Dinar",symbol:"\u062F.\u062A",decimals:3},DZD:{code:"DZD",name:"Algerian Dinar",symbol:"\u062F.\u062C",decimals:2},NIS:{code:"NIS",name:"Israeli New Shekel",symbol:"\u20AA",decimals:2}},$e=o(e=>g[e.toUpperCase()],"getCurrency"),Je=o(()=>Object.values(g),"getAllCurrencies"),Qe=o(e=>g[e.toUpperCase()]?.symbol||e,"getCurrencySymbol"),eo=o(e=>e.toUpperCase()in g,"isValidCurrencyCode");var J={B_1:1,B_10:10,B_100:100,B_512:512},Q={KB_1:1024,KB_2:2*1024,KB_5:5*1024,KB_10:10*1024,KB_50:50*1024,KB_100:100*1024,KB_500:500*1024},ee={MB_1:1024*1024,MB_2:2*1024*1024,MB_5:5*1024*1024,MB_10:10*1024*1024,MB_20:20*1024*1024,MB_25:25*1024*1024,MB_50:50*1024*1024,MB_100:100*1024*1024,MB_200:200*1024*1024,MB_500:500*1024*1024},oe={GB_1:1024*1024*1024,GB_2:2*1024*1024*1024,GB_5:5*1024*1024*1024,GB_10:10*1024*1024*1024},c={...J,...Q,...ee,...oe},no={AVATAR:c.MB_2,IMAGE:c.MB_5,DOCUMENT:c.MB_10,PRESENTATION:c.MB_25,AUDIO:c.MB_50,VIDEO:c.MB_500,ARCHIVE:c.GB_1},ao=o(e=>e*1024*1024,"mbToBytes"),to=o(e=>e*1024*1024*1024,"gbToBytes"),io=o(e=>e/(1024*1024),"bytesToMb"),so=o(e=>e/(1024*1024*1024),"bytesToGb"),co=o((e,r)=>e<=r,"isWithinSizeLimit");var uo=["a-arrow-down","a-arrow-up","academic-hat","accessibility","activity-square","activity","add-queue","aeroplane","air-conditioner","airplay","airpods","alarm-check","alarm-minus","alarm-plus","alarm-smoke","alarm-snooze","alarm-x","alarm","album","align-bottom","align-horizontal","align-left","align-right","align-top","align-vertical","alt","ambulance","ampersand-square","ampersand","ampersands","anchor","angry-circle","angry-ghost","angry-square","annoyed-circle","annoyed-ghost","annoyed-square","aperture","api","ar","archive","arrow-diagonal-one","arrow-diagonal-two","arrow-down-circle","arrow-down-left-circle","arrow-down-left-square","arrow-down-left-waves","arrow-down-left","arrow-down-right-circle","arrow-down-right-square","arrow-down-right-waves","arrow-down-right","arrow-down-square","arrow-down-waves","arrow-down","arrow-left-circle","arrow-left-right","arrow-left-square","arrow-left-waves","arrow-left","arrow-long-down-left","arrow-long-down-right","arrow-long-down","arrow-long-left","arrow-long-right","arrow-long-up-left","arrow-long-up-right","arrow-long-up","arrow-right-circle","arrow-right-square","arrow-right-waves","arrow-right","arrow-up-circle","arrow-up-down","arrow-up-left-circle","arrow-up-left-square","arrow-up-left-waves","arrow-up-left","arrow-up-right-circle","arrow-up-right-square","arrow-up-right-waves","arrow-up-right","arrow-up-square","arrow-up-waves","arrow-up","asterisk-circle","asterisk-diamond","asterisk-hexagon","asterisk-octagon","asterisk-square","asterisk-waves","at","atom","baby","backpack","badge","baggage-claim","ban","bank","baseball","bath","battery-charging-four","battery-charging-one","battery-charging-three","battery-charging-two","battery-charging","battery-check","battery-empty","battery-full","battery-minus","battery-plus","battery-x","bell-check","bell-home","bell-minus","bell-on","bell-plus","bell-slash","bell-snooze","bell-user","bell-x","bell","binoculars","bitcoin-circle","bitcoin-diamond","bitcoin-hexagon","bitcoin-octagon","bitcoin-square","bitcoin-waves","bitcoin","bluetooth","boat","book-check","book-dot","book-home","book-image","book-minus","book-open","book-plus","book-slash","book-snooze","book-user","book-x","book","bookmark-check","bookmark-dot","bookmark-home","bookmark-minus","bookmark-plus","bookmark-slash","bookmark-snooze","bookmark-user","bookmark-x","bookmark","bounding-box","bowl","box","brand-chrome","brand-codepen","brand-codesandbox","brand-dribbble","brand-facebook","brand-figma","brand-framer","brand-github","brand-gitlab","brand-google","brand-instagram","brand-linkedin","brand-pinterest","brand-pocket","brand-slack","brand-spotify","brand-telegram","brand-threads","brand-trello","brand-twitch","brand-twitter","brand-x","brand-youtube","briefcase-conveyor-belt","briefcase","brightness-high","brightness-low","bubbles","building-one","building","cable-car","cake","calendar-check","calendar-down","calendar-minus","calendar-plus","calendar-slash","calendar-up","calendar-x","calendar","camera-slash","camera","campfire","cannabis","caravan","cart-check","cart-minus","cart-plus","cart-x","cart","cast-screen","center-focus","chart-area","chart-bar-big","chart-bar-decreasing","chart-bar-increasing","chart-bar-one","chart-bar-stacked","chart-bar","chart-bubble","chart-candlestick","chart-column-big","chart-column-decreasing","chart-column-increasing","chart-column-stacked","chart-column","chart-gantt","chart-graph","chart-line","chart-network","chart-no-axes-column-decreasing","chart-no-axes-column-increasing","chart-no-axes-column","chart-no-axes-combined","chart-no-axes-gantt","chart-pie-one","chart-pie-two","chart-pie","chart-scatter","chart-spline","chat-check","chat-dots","chat-messages","chat-minus","chat-plus","chat-x","chat","check-circle-one","check-circle","check-diamond","check-hexagon","check-octagon","check-square-one","check-square","check-waves","check","chevron-double-down-left","chevron-double-down-right","chevron-double-down","chevron-double-left","chevron-double-right","chevron-double-up-left","chevron-double-up-right","chevron-double-up","chevron-down-circle","chevron-down-left-circle","chevron-down-left-square","chevron-down-left-waves","chevron-down-left","chevron-down-right-circle","chevron-down-right-square","chevron-down-right-waves","chevron-down-right","chevron-down-square","chevron-down-waves","chevron-down","chevron-left-circle","chevron-left-square","chevron-left-waves","chevron-left","chevron-right-circle","chevron-right-square","chevron-right-waves","chevron-right","chevron-up-circle","chevron-up-down","chevron-up-left-circle","chevron-up-left-square","chevron-up-left-waves","chevron-up-left","chevron-up-right-circle","chevron-up-right-square","chevron-up-right-waves","chevron-up-right","chevron-up-square","chevron-up-waves","chevron-up","chip","cigarette-off","cigarette","circle-dashed","circle-half-circle","circle-half","circle-notch","circle","click","clipboard","clock-circle","clock-diamond","clock-eight","clock-eleven","clock-five","clock-four","clock-hand","clock-hexagon","clock-nine","clock-octagon","clock-one","clock-seven","clock-six","clock-square","clock-ten","clock-three","clock-twelve","clock-two","clock-waves","cloud-download","cloud-drizzle","cloud-fog","cloud-hail","cloud-lightning","cloud-moon-rain","cloud-moon","cloud-off","cloud-rain-wind","cloud-rain","cloud-snow","cloud-sun-rain","cloud-sun","cloud-upload","cloud","cloudy","cocktail","code-circle","code-diamond","code-hexagon","code-octagon","code-square","code-waves","code","coffee","cog-four","cog-one","cog-three","cog-two","cog","columns","command","compass","components","confetti","config-vertical","config","contactless-circle","contactless","controller","cookie","copy","copyleft","copyright-slash","copyright","corner-down-left","corner-down-right","corner-left-down","corner-left-up","corner-right-down","corner-right-up","corner-up-left","corner-up-right","credit-card-check","credit-card-minus","credit-card-plus","credit-card-x","credit-card","croissant","crop","crosshair","cupcake","danger-circle","danger-diamond","danger-hexagon","danger-octagon","danger-square","danger-triangle","danger-waves","danger","database","daze-circle","daze-ghost","daze-square","delete","desktop","diamond","dice-five","dice-four","dice-one","dice-six","dice-three","dice-two","dislike","divide","dollar-circle","dollar-diamond","dollar-hexagon","dollar-octagon","dollar-square","dollar-waves","dollar","door-closed-locked","door-closed","door-open","dots-circle","dots-diamond","dots-hexagon","dots-octagon","dots-square","dots-vertical-circle","dots-vertical-diamond","dots-vertical-hexagon","dots-vertical-octagon","dots-vertical-square","dots-vertical-waves","dots-vertical","dots-waves","dots","download","drop","droplet-off","droplet","droplets","ear-slash","ear","earth","eclipse","edit-one","edit","egg","eight-circle","eight-diamond","eight-hexagon","eight-octagon","eight-square","eight-waves","eight","elevator","envelope-open","envelope","euro-circle","euro-diamond","euro-hexagon","euro-octagon","euro-square","euro-waves","euro","exclude","external-link","eye-slash","eye","face-id","fat-arrow-down-left","fat-arrow-down-right","fat-arrow-down","fat-arrow-left","fat-arrow-right","fat-arrow-up-left","fat-arrow-up-right","fat-arrow-up","fat-corner-down-left","fat-corner-down-right","fat-corner-left-down","fat-corner-left-up","fat-corner-right-down","fat-corner-right-up","fat-corner-up-left","fat-corner-up-right","female","file-check","file-minus","file-plus","file-text","file-x","file","film","filter-one","filter","fine-tune","fire","five-circle","five-diamond","five-hexagon","five-octagon","five-square","five-waves","five","flag-one","flag","flame-kindling","flame","flask","flower-2","flower","folder-check","folder-heart","folder-kanban","folder-minus","folder-one","folder-plus","folder-slash","folder-two","folder-x","folder","forward-circle","forward-diamond","forward-hexagon","forward-octagon","forward-square","forward-waves","forward","four-circle","four-diamond","four-hexagon","four-octagon","four-square","four-waves","four","frame","funny-circle","funny-ghost","funny-square","gift","git-branch","git-circle","git-commit","git-diamond","git-diff","git-hexagon","git-merge","git-octagon","git-pull-request","git-square","git-waves","glasses","globe","grid-one","grid","hand","hard-drive","hash-circle","hash-diamond","hash-hexagon","hash-octagon","hash-square","hash-waves","hash","haze","heading-five","heading-four","heading-one","heading-six","heading-three","heading-two","heading","headphones","heart-broken","heart-check","heart-circle","heart-diamond","heart-dot","heart-hexagon","heart-home","heart-minus","heart-octagon","heart-plus","heart-slash","heart-snooze","heart-square","heart-user","heart-waves","heart-x","heart","hexagon","home-check","home-minus","home-plus","home-smile","home-x","home","image-circle","image-rectangle","image","inbox-archive","inbox-check","inbox-down","inbox-minus","inbox-plus","inbox-up","inbox-x","inbox","incognito","indifferent-circle","indifferent-ghost","indifferent-square","infinity","info-circle","info-diamond","info-hexagon","info-octagon","info-square","info-triangle","info-waves","info","intersect","kanban","key","keyboard-brightness-high","keyboard-brightness-low","keyboard","label","lamp","layers-one","layers-three","layers-two","layout","leaf","leaves","letter-a-circle","letter-a-diamond","letter-a-hexagon","letter-a-octagon","letter-a-square","letter-a-waves","letter-a","letter-b-circle","letter-b-diamond","letter-b-hexagon","letter-b-octagon","letter-b-square","letter-b-waves","letter-b","letter-c-circle","letter-c-diamond","letter-c-hexagon","letter-c-octagon","letter-c-square","letter-c-waves","letter-c","letter-d-circle","letter-d-diamond","letter-d-hexagon","letter-d-octagon","letter-d-square","letter-d-waves","letter-d","letter-e-circle","letter-e-diamond","letter-e-hexagon","letter-e-octagon","letter-e-square","letter-e-waves","letter-e","letter-f-circle","letter-f-diamond","letter-f-hexagon","letter-f-octagon","letter-f-square","letter-f-waves","letter-f","letter-g-circle","letter-g-diamond","letter-g-hexagon","letter-g-octagon","letter-g-square","letter-g-waves","letter-g","letter-h-circle","letter-h-diamond","letter-h-hexagon","letter-h-octagon","letter-h-square","letter-h-waves","letter-h","letter-i-circle","letter-i-diamond","letter-i-hexagon","letter-i-octagon","letter-i-square","letter-i-waves","letter-i","letter-j-circle","letter-j-diamond","letter-j-hexagon","letter-j-octagon","letter-j-square","letter-j-waves","letter-j","letter-k-circle","letter-k-diamond","letter-k-hexagon","letter-k-octagon","letter-k-square","letter-k-waves","letter-k","letter-l-circle","letter-l-diamond","letter-l-hexagon","letter-l-octagon","letter-l-square","letter-l-waves","letter-l","letter-m-circle","letter-m-diamond","letter-m-hexagon","letter-m-octagon","letter-m-square","letter-m-waves","letter-m","letter-n-circle","letter-n-diamond","letter-n-hexagon","letter-n-octagon","letter-n-square","letter-n-waves","letter-n","letter-o-circle","letter-o-diamond","letter-o-hexagon","letter-o-octagon","letter-o-square","letter-o-waves","letter-o","letter-p-circle","letter-p-diamond","letter-p-hexagon","letter-p-octagon","letter-p-square","letter-p-waves","letter-p","letter-q-circle","letter-q-diamond","letter-q-hexagon","letter-q-octagon","letter-q-square","letter-q-waves","letter-q","letter-r-circle","letter-r-diamond","letter-r-hexagon","letter-r-octagon","letter-r-square","letter-r-waves","letter-r","letter-s-circle","letter-s-diamond","letter-s-hexagon","letter-s-octagon","letter-s-square","letter-s-waves","letter-s","letter-t-circle","letter-t-diamond","letter-t-hexagon","letter-t-octagon","letter-t-square","letter-t-waves","letter-t","letter-u-circle","letter-u-diamond","letter-u-hexagon","letter-u-octagon","letter-u-square","letter-u-waves","letter-u","letter-v-circle","letter-v-diamond","letter-v-hexagon","letter-v-octagon","letter-v-square","letter-v-waves","letter-v","letter-w-circle","letter-w-diamond","letter-w-hexagon","letter-w-octagon","letter-w-square","letter-w-waves","letter-w","letter-x-circle","letter-x-diamond","letter-x-hexagon","letter-x-octagon","letter-x-square","letter-x-waves","letter-x","letter-y-circle","letter-y-diamond","letter-y-hexagon","letter-y-octagon","letter-y-square","letter-y-waves","letter-y","letter-z-circle","letter-z-diamond","letter-z-hexagon","letter-z-octagon","letter-z-square","letter-z-waves","letter-z","lightning-off","lightning","like","line-chart-circle","line-chart-diamond","line-chart-hexagon","line-chart-octagon","line-chart-square","line-chart-waves","link-one","link-two","link","list-check","list-number","list","location-check","location-home","location-minus","location-plus","location-selected","location-slash","location-snooze","location-user","location-x","location","lock-circle","lock-diamond","lock-hexagon","lock-keyhole","lock-octagon","lock-open-keyhole","lock-open-password","lock-open","lock-password","lock-square","lock-waves","lock","login","logout","magnet","male","map","mask","math-square","math","maximize-one","maximize","menu","message-check","message-dots","message-minus","message-plus","message-reply","message-x","message","microphone-slash","microphone","minimize-one","minimize","minus-circle","minus-diamond","minus-hexagon","minus-octagon","minus-square","minus-waves","minus","mobile-signal-five","mobile-signal-four","mobile-signal-one","mobile-signal-three","mobile-signal-two","mobile","moon-star","moon","mountain-snow","mountain","mouse-pointer","move-diagonal-one","move-diagonal","move-horizontal","move-vertical","move","music-circle","music-diamond","music-hexagon","music-octagon","music-square","music-waves","music","myna","navigation-one","navigation","nine-circle","nine-diamond","nine-hexagon","nine-octagon","nine-square","nine-waves","nine","notification","octagon","one-circle","one-diamond","one-hexagon","one-octagon","one-square","one-waves","one","option","package","paint","panel-bottom-close","panel-bottom-inactive","panel-bottom-open","panel-bottom","panel-left-close","panel-left-inactive","panel-left-open","panel-left","panel-right-close","panel-right-inactive","panel-right-open","panel-right","panel-top-close","panel-top-inactive","panel-top-open","panel-top","paperclip","parking","password","path","pause-circle","pause-diamond","pause-hexagon","pause-octagon","pause-square","pause-waves","pause","pen","pencil","percentage-circle","percentage-diamond","percentage-hexagon","percentage-octagon","percentage-square","percentage-waves","percentage","pin","pizza","planet","play-circle","play-diamond","play-hexagon","play-octagon","play-square","play-waves","play","plus-circle","plus-diamond","plus-hexagon","plus-octagon","plus-square","plus-waves","plus","pokeball","power","presentation","printer","puzzle","question-circle","question-diamond","question-hexagon","question-octagon","question-square","question-waves","question","radio","rainbow","reception-bell","record","rectangle-vertical","rectangle","redo","refresh-alt","refresh","repeat","rewind-circle","rewind-diamond","rewind-hexagon","rewind-octagon","rewind-square","rewind-waves","rewind","rhombus","ribbon","rocket","room-service","rows","rss","ruler","rupee-circle","rupee-diamond","rupee-hexagon","rupee-octagon","rupee-square","rupee-waves","rupee","sad-circle","sad-ghost","sad-square","save","scan","scissors","sea-waves","search-check","search-circle","search-diamond","search-dot","search-hexagon","search-home","search-minus","search-octagon","search-plus","search-slash","search-snooze","search-square","search-user","search-waves","search-x","search","select-multiple","send","servers","seven-circle","seven-diamond","seven-hexagon","seven-octagon","seven-square","seven-waves","seven","share","shell","shield-check","shield-crossed","shield-minus","shield-one","shield-plus","shield-slash","shield-two","shield-x","shield","shooting-star","shopping-bag","shovel","shrub","shuffle-alt","shuffle","sidebar-alt","sidebar","signal-circle","signal-diamond","signal-hexagon","signal-octagon","signal-square","signal-waves","signal","six-circle","six-diamond","six-hexagon","six-octagon","six-square","six-waves","six","skip-back","skip-forward","slash-circle","slash-diamond","slash-hexagon","slash-octagon","slash-square","slash-waves","smile-circle","smile-ghost","smile-square","snow","snowflake","sofa","sort","sparkles","speaker","spinner-one","spinner","sprout","square-chart-gantt","square-dashed-kanban","square-dashed","square-half","square-kanban","square","star","stop-circle","stop-diamond","stop-hexagon","stop-octagon","stop-square","stop-waves","stop","store","subtract","sun-dim","sun-medium","sun-snow","sun","sunrise","sunset","support","swatches","table","tablet","tag-plus","tag","tally-five","tally-four","tally-one","tally-three","tally-two","target","telephone-call","telephone-forward","telephone-in","telephone-missed","telephone-out","telephone-slash","telephone","tent-tree","tent","terminal","text-align-center","text-align-left","text-align-right","text-justify","thermometer-snowflake","thermometer-sun","thermometer","three-circle","three-diamond","three-hexagon","three-octagon","three-square","three-waves","three","ticket-slash","ticket","toggle-left","toggle-right","tool","tornado","train","trash-one","trash-two","trash","tree-deciduous","tree-palm","tree-pine","tree","trees","trending-down","trending-up-down","trending-up","triangle","truck","tv","two-circle","two-diamond","two-hexagon","two-octagon","two-square","two-waves","two","type-bold","type-italic","type-text","type-underline","umbrella-off","umbrella","undo","union","unlink","upload","user-check","user-circle","user-diamond","user-hexagon","user-minus","user-octagon","user-plus","user-settings","user-square","user-waves","user-x","user","users-group","users","video-slash","video","volume-check","volume-high","volume-low","volume-minus","volume-none","volume-plus","volume-slash","volume-x","watch","waves","webcam","wheel","wheelchair","wifi-check","wifi-low","wifi-medium","wifi-minus","wifi-plus","wifi-slash","wifi-x","wifi","wind-arrow-down","wind","winds","wine","wink-circle","wink-ghost","wink-square","wrench","x-circle","x-diamond","x-hexagon","x-octagon","x-square","x-triangle","x-waves","x","yen-circle","yen-diamond","yen-hexagon","yen-octagon","yen-square","yen-waves","yen","zap-off","zap","zero-circle","zero-diamond","zero-hexagon","zero-octagon","zero-square","zero-waves","zero"];var ho=100,go=160;var fo=100,Co=160;var yo="00000000-0000-0000-0000-000000000000";var ko=[{id:"email",label:"Email",icon:"envelope",group:"communication",storage:{kind:"format",value:"email"}},{id:"url",label:"URL",icon:"link",group:"communication",storage:{kind:"format",value:"url"}},{id:"phone_fr",label:"T\xE9l\xE9phone (FR)",icon:"telephone",group:"communication",storage:{kind:"pattern",regex:"^0[1-9]([-. ]?[0-9]{2}){4}$"}},{id:"slug",label:"Slug (kebab-case)",icon:"hash",group:"identifiants",storage:{kind:"format",value:"slug"}},{id:"alphanumeric",label:"Alphanum\xE9rique",icon:"type-text",group:"identifiants",storage:{kind:"pattern",regex:"^[a-zA-Z0-9]+$"}},{id:"siren",label:"SIREN",icon:"building",group:"business_fr",storage:{kind:"pattern",regex:"^[0-9]{9}$"}},{id:"siret",label:"SIRET",icon:"building",group:"business_fr",storage:{kind:"pattern",regex:"^[0-9]{14}$"}},{id:"postcode_fr",label:"Code postal (FR)",icon:"location",group:"business_fr",storage:{kind:"pattern",regex:"^[0-9]{5}$"}},{id:"iban",label:"IBAN",icon:"credit-card",group:"business_fr",storage:{kind:"pattern",regex:"^[A-Z]{2}[0-9]{2}[A-Z0-9]{1,30}$"}},{id:"vat_fr",label:"TVA intracom",icon:"credit-card",group:"business_fr",storage:{kind:"pattern",regex:"^[A-Z]{2}[0-9A-Z]{2,12}$"}},{id:"hex_color",label:"Code couleur hex",icon:"paint",group:"design",storage:{kind:"pattern",regex:"^#[0-9A-Fa-f]{6}$"}}];export{xe as AI_CHAT_ACCEPTED_TYPES,Ce as AI_CHAT_MAX_FILES,fe as AI_CHAT_MAX_FILE_SIZE,G as AI_CHAT_SUPPORTED_DOCUMENTS,L as AI_CHAT_SUPPORTED_IMAGES,F as AI_CHAT_SUPPORTED_MIME_TYPES,ie as ALL_MIME_TYPES,T as ARCHIVES,P as ARCHIVE_MIME_TYPES,A as ARCHIVE_MIME_TYPES_ARRAY,f as AUDIO,I as AUDIO_MIME_TYPES,R as AUDIO_MIME_TYPES_ARRAY,K as BUILT_IN_AGENT_TOOL_GROUPS,ye as BUILT_IN_AGENT_TOOL_NAMES,J as BYTES,v as CODE,m as CODE_MIME_TYPES,O as CODE_MIME_TYPES_ARRAY,h as COLORS,X as COLOR_GROUPS,s as COUNTRIES,g as CURRENCIES,Y as DEFAULT_ATTRIBUTE_ICONS,H as DEFAULT_TAB_ICONS,yo as DEFAULT_TENANT_ID,k as DOCUMENTS,a as DOCUMENT_MIME_TYPES,_ as DOCUMENT_MIME_TYPES_ARRAY,c as FILE_SIZE,U as FONTS,B as FONT_MIME_TYPES,q as FONT_MIME_TYPES_ARRAY,oe as GIGABYTES,uo as ICONS,x as IMAGES,i as IMAGE_MIME_TYPES,D as IMAGE_MIME_TYPES_ARRAY,Q as KILOBYTES,te as MEDIA,ee as MEGABYTES,go as MEMORY_DESCRIPTION_MAX_LENGTH,ho as MEMORY_NAME_MAX_LENGTH,ae as OFFICE_DOCUMENTS,no as RECOMMENDED_MAX_SIZES,Co as SKILL_DESCRIPTION_MAX_LENGTH,fo as SKILL_NAME_MAX_LENGTH,Ue as STATUS_COLORS,ko as TEXT_FORMAT_PRESETS,C as VIDEO,S as VIDEO_MIME_TYPES,N as VIDEO_MIME_TYPES_ARRAY,ne as WEB_IMAGES,so as bytesToGb,io as bytesToMb,Ae as cn,to as gbToBytes,Ne as getAllColors,W as getAllCountries,Je as getAllCurrencies,Se as getColor,Oe as getColorIds,qe as getColorsByGroup,Fe as getCountryByIso2,j as getCountryByIso3,w as getCountryDisplayName,Ve as getCountryDisplayNameByIso3,$e as getCurrency,Qe as getCurrencySymbol,ke as getDefaultAttributeIcon,Me as getDefaultTabIcon,Ke as getPhoneMaxDigits,Ye as getPhoneTrunkPrefix,Ze as getSortedCountries,le as isArchiveMimeType,de as isAudioMimeType,ue as isCodeMimeType,ce as isDocumentMimeType,se as isImageMimeType,Be as isValidColorId,eo as isValidCurrencyCode,He as isValidIso2,ze as isValidIso3,pe as isVideoMimeType,co as isWithinSizeLimit,ao as mbToBytes,Xe as stripTrunkPrefix};
|