From 0d4882b81845fccb1820e19368a78f94c799eb44 Mon Sep 17 00:00:00 2001 From: GiuseppeS Date: Wed, 24 Sep 2025 10:48:05 +0200 Subject: [PATCH 1/6] Prima build con podman --- Containerfile | 18 ++++++++++++++++++ build/Jenkinsfile.groovy | 7 ++++--- 2 files changed, 22 insertions(+), 3 deletions(-) create mode 100644 Containerfile diff --git a/Containerfile b/Containerfile new file mode 100644 index 0000000000..20909b7333 --- /dev/null +++ b/Containerfile @@ -0,0 +1,18 @@ +FROM tomcat:9-jre8-alpine + +RUN apk add --no-cache fontconfig ttf-dejavu + +ENV TZ="Europe/Rome" +ENV JAVA_OPTS="-DDISABLE_DROOLS_COMPILE=TRUE -Xms512M -Xmx1G -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005" +ENV USERDOMAIN="STUDIO-ML" + +COPY docker/tomcat/conf/integry/ems.properties /usr/local/tomcat/conf/integry/ +COPY docker/tomcat/conf/integry/ems_automated_operations.json /usr/local/tomcat/conf/integry/ +COPY docker/tomcat/conf/integry/ems_settings.json /usr/local/tomcat/conf/integry/ +COPY ems-engine/target/ems-api.war /usr/local/tomcat/webapps/ + +#COPY docker/FontTest.class . +#ENTRYPOINT ["java","FontTest"] + +EXPOSE 8080 +EXPOSE 5005 \ No newline at end of file diff --git a/build/Jenkinsfile.groovy b/build/Jenkinsfile.groovy index fcf28dba29..b305d8c3ae 100644 --- a/build/Jenkinsfile.groovy +++ b/build/Jenkinsfile.groovy @@ -42,7 +42,7 @@ pipeline { bat(script: 'mvn clean install -t toolchains-jenkins.xml', returnStdout: true) archiveArtifacts(artifacts: 'ems-engine/target/ems-api.war', onlyIfSuccessful: true) } - stash includes: 'ems-engine/target/ems-api.war,docker/**,Dockerfile', name: 'docker-files' + stash includes: 'ems-engine/target/ems-api.war,docker/**,Containerfile', name: 'container-files' } } @@ -118,7 +118,7 @@ sleep 10''', execTimeout: 120000, flatten: false, makeEmptyDirs: false, noDefaul steps { node('server-build') { echo "Building Docker image" - unstash 'docker-files' + unstash 'container-files' script { def branchVersion = "" @@ -127,7 +127,8 @@ sleep 10''', execTimeout: 120000, flatten: false, makeEmptyDirs: false, noDefaul branchVersion = "-${env.GIT_BRANCH.toLowerCase().replace('/', '-')}" } - bat "docker buildx build --platform linux/amd64,linux/arm64 --push -t \"git.studioml.it/integry/ems-api${branchVersion}:latest\" ." + // bat "docker buildx build --platform linux/amd64,linux/arm64 --push -t \"git.studioml.it/integry/ems-api${branchVersion}:latest\" ." + bat "podman build --platform linux/amd64,linux/arm64 ." //containerImageLink "git.studioml.it/integry/ems-api-${env.GIT_BRANCH.toLowerCase().replace('/', '-')}:latest}" } From db9a613fc9eddc73bce10821de9b6452984cdbfe Mon Sep 17 00:00:00 2001 From: GiuseppeS Date: Wed, 24 Sep 2025 10:49:34 +0200 Subject: [PATCH 2/6] Fix build command --- build/Jenkinsfile.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Jenkinsfile.groovy b/build/Jenkinsfile.groovy index b305d8c3ae..83a3a92268 100644 --- a/build/Jenkinsfile.groovy +++ b/build/Jenkinsfile.groovy @@ -128,7 +128,7 @@ sleep 10''', execTimeout: 120000, flatten: false, makeEmptyDirs: false, noDefaul } // bat "docker buildx build --platform linux/amd64,linux/arm64 --push -t \"git.studioml.it/integry/ems-api${branchVersion}:latest\" ." - bat "podman build --platform linux/amd64,linux/arm64 ." + bat "podman build -f .\\Containerfile --platform linux/amd64,linux/arm64 ." //containerImageLink "git.studioml.it/integry/ems-api-${env.GIT_BRANCH.toLowerCase().replace('/', '-')}:latest}" } From a3380775425a0ea590049180a7783a5d02d5b794 Mon Sep 17 00:00:00 2001 From: GiuseppeS Date: Wed, 24 Sep 2025 11:10:54 +0200 Subject: [PATCH 3/6] Fix build command --- build/Jenkinsfile.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Jenkinsfile.groovy b/build/Jenkinsfile.groovy index 83a3a92268..d8f5585e98 100644 --- a/build/Jenkinsfile.groovy +++ b/build/Jenkinsfile.groovy @@ -128,7 +128,7 @@ sleep 10''', execTimeout: 120000, flatten: false, makeEmptyDirs: false, noDefaul } // bat "docker buildx build --platform linux/amd64,linux/arm64 --push -t \"git.studioml.it/integry/ems-api${branchVersion}:latest\" ." - bat "podman build -f .\\Containerfile --platform linux/amd64,linux/arm64 ." + bat "podman build -f .\\Containerfile --platform linux/amd64,linux/arm64 -t \"ems-api${branchVersion}:latest\" ." //containerImageLink "git.studioml.it/integry/ems-api-${env.GIT_BRANCH.toLowerCase().replace('/', '-')}:latest}" } From 9476e994761d4546874a632a42bd0ce7def4d591 Mon Sep 17 00:00:00 2001 From: GiuseppeS Date: Wed, 24 Sep 2025 11:11:27 +0200 Subject: [PATCH 4/6] Fix build command --- build/Jenkinsfile.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Jenkinsfile.groovy b/build/Jenkinsfile.groovy index d8f5585e98..1d8165aec9 100644 --- a/build/Jenkinsfile.groovy +++ b/build/Jenkinsfile.groovy @@ -128,7 +128,7 @@ sleep 10''', execTimeout: 120000, flatten: false, makeEmptyDirs: false, noDefaul } // bat "docker buildx build --platform linux/amd64,linux/arm64 --push -t \"git.studioml.it/integry/ems-api${branchVersion}:latest\" ." - bat "podman build -f .\\Containerfile --platform linux/amd64,linux/arm64 -t \"ems-api${branchVersion}:latest\" ." + bat "podman build -f .\\Containerfile --platform linux/amd64,linux/arm64 -t \"git.studioml.it/integry/ems-api${branchVersion}:latest\" ." //containerImageLink "git.studioml.it/integry/ems-api-${env.GIT_BRANCH.toLowerCase().replace('/', '-')}:latest}" } From ebf9af7b8bd095774d09e4d32913c6b6e62aa842 Mon Sep 17 00:00:00 2001 From: GiuseppeS Date: Wed, 24 Sep 2025 11:29:04 +0200 Subject: [PATCH 5/6] Fix build command --- build/Jenkinsfile.groovy | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build/Jenkinsfile.groovy b/build/Jenkinsfile.groovy index 1d8165aec9..2a550f2a89 100644 --- a/build/Jenkinsfile.groovy +++ b/build/Jenkinsfile.groovy @@ -128,7 +128,8 @@ sleep 10''', execTimeout: 120000, flatten: false, makeEmptyDirs: false, noDefaul } // bat "docker buildx build --platform linux/amd64,linux/arm64 --push -t \"git.studioml.it/integry/ems-api${branchVersion}:latest\" ." - bat "podman build -f .\\Containerfile --platform linux/amd64,linux/arm64 -t \"git.studioml.it/integry/ems-api${branchVersion}:latest\" ." + bat "podman build -f .\\Containerfile -t \"git.studioml.it/integry/ems-api${branchVersion}:latest\" ." + bat "podman push \"git.studioml.it/integry/ems-api${branchVersion}:latest\"" //containerImageLink "git.studioml.it/integry/ems-api-${env.GIT_BRANCH.toLowerCase().replace('/', '-')}:latest}" } From 0f42d5a2ba83b107e9952fd87971f081024bd78f Mon Sep 17 00:00:00 2001 From: GiuseppeS Date: Wed, 24 Sep 2025 11:29:04 +0200 Subject: [PATCH 6/6] Aggiunto campo "backupAfterImport" utilizzato dalle importazioni da SFTP --- .../ImportDirectoryOperationDTO.java | 12 +++++ .../watching/SftpFolderDirectoryWatcher.java | 42 +++++++++++++-- ...{Create-5nY6itgI.js => Create-Df0N-lQr.js} | 2 +- .../webapp/assets/DynamicForm-Crr4ugnC.css | 1 + .../webapp/assets/DynamicForm-DIkU8B8M.css | 1 - ...rm-CXexLuSl.js => DynamicForm-DWX-KwGX.js} | 4 +- .../{Edit-DW9sMVCT.js => Edit-F4sVz2t7.js} | 2 +- .../{Index-MhLTwvCo.js => Index-B6nSF9i_.js} | 2 +- .../{Logs-DBkArgPL.js => Logs-BXHYXSnL.js} | 2 +- ...ons-B5ntuiU0.js => Migrations-BDJEuV9K.js} | 2 +- .../src/main/webapp/assets/Show-Dt5Jwlxb.js | 1 - .../src/main/webapp/assets/Show-fp2Rf64Q.js | 1 + .../src/main/webapp/assets/auto-BhKXhXEV.js | 1 - .../src/main/webapp/assets/auto-IuxBkHCG.js | 1 + .../{index-BNu-F4v_.js => index-CjLz75tu.js} | 6 +-- ...-E72BkL95.js => inputicon.esm-C6x9HzWS.js} | 2 +- ems-engine/src/main/webapp/index.html | 53 ++++++++++--------- 17 files changed, 91 insertions(+), 44 deletions(-) rename ems-engine/src/main/webapp/assets/{Create-5nY6itgI.js => Create-Df0N-lQr.js} (97%) create mode 100644 ems-engine/src/main/webapp/assets/DynamicForm-Crr4ugnC.css delete mode 100644 ems-engine/src/main/webapp/assets/DynamicForm-DIkU8B8M.css rename ems-engine/src/main/webapp/assets/{DynamicForm-CXexLuSl.js => DynamicForm-DWX-KwGX.js} (76%) rename ems-engine/src/main/webapp/assets/{Edit-DW9sMVCT.js => Edit-F4sVz2t7.js} (97%) rename ems-engine/src/main/webapp/assets/{Index-MhLTwvCo.js => Index-B6nSF9i_.js} (90%) rename ems-engine/src/main/webapp/assets/{Logs-DBkArgPL.js => Logs-BXHYXSnL.js} (99%) rename ems-engine/src/main/webapp/assets/{Migrations-B5ntuiU0.js => Migrations-BDJEuV9K.js} (97%) delete mode 100644 ems-engine/src/main/webapp/assets/Show-Dt5Jwlxb.js create mode 100644 ems-engine/src/main/webapp/assets/Show-fp2Rf64Q.js delete mode 100644 ems-engine/src/main/webapp/assets/auto-BhKXhXEV.js create mode 100644 ems-engine/src/main/webapp/assets/auto-IuxBkHCG.js rename ems-engine/src/main/webapp/assets/{index-BNu-F4v_.js => index-CjLz75tu.js} (99%) rename ems-engine/src/main/webapp/assets/{inputicon.esm-E72BkL95.js => inputicon.esm-C6x9HzWS.js} (99%) diff --git a/ems-core/src/main/java/it/integry/ems/schedule/new_cron_job/dto/operations/ImportDirectoryOperationDTO.java b/ems-core/src/main/java/it/integry/ems/schedule/new_cron_job/dto/operations/ImportDirectoryOperationDTO.java index aa2a83bde6..6f52046425 100644 --- a/ems-core/src/main/java/it/integry/ems/schedule/new_cron_job/dto/operations/ImportDirectoryOperationDTO.java +++ b/ems-core/src/main/java/it/integry/ems/schedule/new_cron_job/dto/operations/ImportDirectoryOperationDTO.java @@ -24,6 +24,9 @@ public class ImportDirectoryOperationDTO extends BaseDirectoryOperationDTO { @OperationField(required = true, password = true) private String password; + @OperationField() + private boolean backupAfterImport; + @OperationField() private boolean deleteAfterImport; @@ -75,6 +78,15 @@ public class ImportDirectoryOperationDTO extends BaseDirectoryOperationDTO { return this; } + public boolean isBackupAfterImport() { + return backupAfterImport; + } + + public ImportDirectoryOperationDTO setBackupAfterImport(boolean backupAfterImport) { + this.backupAfterImport = backupAfterImport; + return this; + } + public boolean isDeleteAfterImport() { return deleteAfterImport; } diff --git a/ems-core/src/main/java/it/integry/ems/watching/SftpFolderDirectoryWatcher.java b/ems-core/src/main/java/it/integry/ems/watching/SftpFolderDirectoryWatcher.java index c7e39f647f..2462d54e98 100644 --- a/ems-core/src/main/java/it/integry/ems/watching/SftpFolderDirectoryWatcher.java +++ b/ems-core/src/main/java/it/integry/ems/watching/SftpFolderDirectoryWatcher.java @@ -99,7 +99,6 @@ public class SftpFolderDirectoryWatcher extends DirectoryWatcher { @Override protected void start() throws Exception { - connect(); String baseDirectory = UtilityString.isNull(operationData.getDirectory(), ""); @@ -117,7 +116,11 @@ public class SftpFolderDirectoryWatcher extends DirectoryWatcher { HashMap results = directoryWatcherEvents.onStart(tempFiles); - if (operationData.isDeleteAfterImport() && !tempFiles.isEmpty()) { + if (operationData.isBackupAfterImport() && !tempFiles.isEmpty()) { + backupImportedFiles(results); + } + + if (!operationData.isBackupAfterImport() && operationData.isDeleteAfterImport() && !tempFiles.isEmpty()) { deleteImportedFiles(results); } @@ -155,7 +158,11 @@ public class SftpFolderDirectoryWatcher extends DirectoryWatcher { prevImportedFiles.addAll(ls.stream().map(RemoteResourceInfo::getPath).collect(Collectors.toList())); - if (operationData.isDeleteAfterImport()) { + if (operationData.isBackupAfterImport()) { + backupImportedFiles(importResult); + } + + if (operationData.isDeleteAfterImport() && !operationData.isBackupAfterImport()) { deleteImportedFiles(importResult); } } catch (Exception e) { @@ -187,6 +194,30 @@ public class SftpFolderDirectoryWatcher extends DirectoryWatcher { return new File(tempFilePath); } + private void backupImportedFiles(HashMap results) throws Exception { + final @NotNull List toBeBackupped = results.entrySet().stream() + .filter(Map.Entry::getValue) + .map(Map.Entry::getKey) + .map(File::getName) + .collect(Collectors.toList()); + + + String baseDirectory = UtilityString.isNull(operationData.getDirectory(), ""); + String backupDirectory = Paths.get(UtilityString.isNull(operationData.getDirectory(), ""), "imported").toString(); + + connect(); + + for (String fileToBackup : toBeBackupped) { + String oldPath = Paths.get(baseDirectory, fileToBackup).toString(); + String newPath = Paths.get(backupDirectory, fileToBackup).toString(); + + logger.debug(String.format("Sposto file importato da %s a %s", oldPath, newPath)); + sftpClient.rename(oldPath, newPath); + } + + disconnect(); + } + private void deleteImportedFiles(HashMap results) throws Exception { final @NotNull List toBeDeleted = results.entrySet().stream() .filter(Map.Entry::getValue) @@ -200,7 +231,10 @@ public class SftpFolderDirectoryWatcher extends DirectoryWatcher { connect(); for (String fileToDelete : toBeDeleted) { - sftpClient.rm(Paths.get(baseDirectory, fileToDelete).toString()); + + String oldPath = Paths.get(baseDirectory, fileToDelete).toString(); + logger.debug(String.format("Cancello file importato da %s", oldPath)); + sftpClient.rm(oldPath); } disconnect(); diff --git a/ems-engine/src/main/webapp/assets/Create-5nY6itgI.js b/ems-engine/src/main/webapp/assets/Create-Df0N-lQr.js similarity index 97% rename from ems-engine/src/main/webapp/assets/Create-5nY6itgI.js rename to ems-engine/src/main/webapp/assets/Create-Df0N-lQr.js index f718ac9a0f..50d256979d 100644 --- a/ems-engine/src/main/webapp/assets/Create-5nY6itgI.js +++ b/ems-engine/src/main/webapp/assets/Create-Df0N-lQr.js @@ -1 +1 @@ -import{_ as R}from"./DynamicForm-CXexLuSl.js";import{_ as A,d as S,r as i,f as x,o as v,l as e,i as n,m as b,h as w,k as L,L as C,c as k,M as N,N as E,z as B,X as P,O as V,Q as D,R as F,S as $,J as j,T as z,u as I,a as d,b as T,w as W}from"./index-BNu-F4v_.js";const O=S({name:"SchedulerCreate",components:{DynamicForm:R,RiAddBoxLine:$,RiArrowRightSLine:F,RiErrorWarningLine:D,RiInformationLine:V,RiArrowLeftLine:P,RiAddLine:B,RiCheckLine:E},setup(){const t=j(),s=z(),o=I(),a=d(()=>t.params.type),l=T(!1);W(a,()=>m()),m();function m(){o.dispatch("scheduler/setCurrentCategory",a.value)}const p=d(()=>o.getters["scheduler/getCurrentCategory"]),u=d(()=>o.getters["main/isLoading"]),c=d(()=>o.getters["scheduler/getError"]),g=d(()=>({cronTrigger:"* * * * * *",active:!1,name:"",description:""}));async function f(r){await o.dispatch("scheduler/saveAutomation",{category:a.value,...r}),c.value||(o.dispatch("main/showNotification",{type:"success",message:"Pianificata creata con successo"}),await s.push({name:"scheduler.show",params:{type:a.value}}))}async function h(){l.value=!0;try{const r=document.querySelector("form");if(r){const y=new FormData(r),_=Object.fromEntries(y);await o.dispatch("scheduler/saveAutomation",{category:a.value,..._}),c.value||(o.dispatch("main/showNotification",{type:"success",message:"Pianificata creata con successo. Puoi crearne un'altra."}),window.location.reload())}}finally{l.value=!1}}return{type:a,currentCategory:p,defaultValues:g,onSubmit:f,onSaveAndCreateAnother:h,isLoading:u,isSavingAndCreating:l,error:c}}}),X={class:"view-container"},q={class:"view-card"},J={class:"card-header p-4 border-b border-gray-200"},M={class:"flex items-center justify-between"},Q={class:"flex items-center gap-3"},G={class:"text-sm text-gray-500 mt-1"},H={class:"flex items-center space-x-2 text-sm text-gray-500"},K={class:"card-body p-4 !overflow-auto"},U={key:0,class:"mb-6 p-4 bg-red-50 border border-red-200 rounded-lg flex items-start gap-3"},Y={class:"text-sm text-red-700 mt-1"},Z={class:"p-8"},ee={class:"flex items-center justify-between pt-6 border-t border-gray-200"},te=["disabled","onClick"],se={class:"flex items-center gap-3"},oe=["disabled"];function ne(t,s,o,a,l,m){const p=i("RiAddBoxLine"),u=i("RouterLink"),c=i("RiArrowRightSLine"),g=i("RiErrorWarningLine"),f=i("RiArrowLeftLine"),h=i("RiAddLine"),r=N,y=R;return v(),x("div",X,[e("div",q,[e("div",J,[e("div",M,[e("div",Q,[n(p,{class:"w-6 h-6 text-green-600"}),e("div",null,[s[0]||(s[0]=e("h1",{class:"text-xl font-semibold text-gray-900"}," Crea Nuova Pianificata ",-1)),e("p",G," Configura una nuova azione pianificata per "+b(t.type),1)])]),e("nav",H,[n(u,{to:{name:"scheduler.show",params:{type:t.type}},class:"hover:text-blue-600 transition-colors"},{default:w(()=>[L(" Pianificate "+b(t.type),1)]),_:1},8,["to"]),n(c,{class:"w-4 h-4"}),s[1]||(s[1]=e("span",{class:"text-gray-900"},"Crea Nuova",-1))])])]),e("div",K,[t.error?(v(),x("div",U,[n(g,{class:"w-5 h-5 text-red-600 mt-0.5 flex-shrink-0"}),e("div",null,[s[2]||(s[2]=e("h3",{class:"text-sm font-medium text-red-800"},"Errore durante la creazione",-1)),e("p",Y,b(t.error.message),1)])])):C("",!0),e("div",Z,[n(y,{fields:t.currentCategory,"initial-values":t.defaultValues,onSubmit:t.onSubmit,class:"space-y-6"},{default:w(()=>[e("div",ee,[n(u,{to:{name:"scheduler.show",params:{type:t.type}},custom:""},{default:w(({navigate:_})=>[e("button",{type:"button",class:"inline-flex items-center px-4 py-2 text-sm font-medium text-gray-700 bg-white border border-gray-300 rounded-lg hover:bg-gray-50 focus:ring-2 focus:ring-blue-500 focus:border-blue-500 transition-colors",disabled:t.isLoading,onClick:_},[n(f,{class:"w-4 h-4 mr-2"}),s[3]||(s[3]=L(" Annulla ",-1))],8,te)]),_:1},8,["to"]),e("div",se,[e("button",{type:"submit",class:"inline-flex items-center px-4 py-2 text-sm font-medium text-green-700 bg-green-50 border border-green-200 rounded-lg hover:bg-green-100 focus:ring-2 focus:ring-green-500 transition-colors",disabled:t.isLoading},[n(h,{class:"w-4 h-4 mr-2"}),s[4]||(s[4]=L(" Crea Pianificata ",-1)),t.isLoading&&!t.isSavingAndCreating?(v(),k(r,{key:0,icon:"oval",color:"white",class:"w-4 h-4 ml-2"})):C("",!0)],8,oe)])])]),_:1},8,["fields","initial-values","onSubmit"])])])])])}const ie=A(O,[["render",ne]]);export{ie as default}; +import{_ as R}from"./DynamicForm-DWX-KwGX.js";import{_ as A,d as S,r as i,f as x,o as v,l as e,i as n,m as b,h as w,k as L,L as C,c as k,M as N,N as E,z as B,X as P,O as V,Q as D,R as F,S as $,J as j,T as z,u as I,a as d,b as T,w as W}from"./index-CjLz75tu.js";const O=S({name:"SchedulerCreate",components:{DynamicForm:R,RiAddBoxLine:$,RiArrowRightSLine:F,RiErrorWarningLine:D,RiInformationLine:V,RiArrowLeftLine:P,RiAddLine:B,RiCheckLine:E},setup(){const t=j(),s=z(),o=I(),a=d(()=>t.params.type),l=T(!1);W(a,()=>m()),m();function m(){o.dispatch("scheduler/setCurrentCategory",a.value)}const p=d(()=>o.getters["scheduler/getCurrentCategory"]),u=d(()=>o.getters["main/isLoading"]),c=d(()=>o.getters["scheduler/getError"]),g=d(()=>({cronTrigger:"* * * * * *",active:!1,name:"",description:""}));async function f(r){await o.dispatch("scheduler/saveAutomation",{category:a.value,...r}),c.value||(o.dispatch("main/showNotification",{type:"success",message:"Pianificata creata con successo"}),await s.push({name:"scheduler.show",params:{type:a.value}}))}async function h(){l.value=!0;try{const r=document.querySelector("form");if(r){const y=new FormData(r),_=Object.fromEntries(y);await o.dispatch("scheduler/saveAutomation",{category:a.value,..._}),c.value||(o.dispatch("main/showNotification",{type:"success",message:"Pianificata creata con successo. Puoi crearne un'altra."}),window.location.reload())}}finally{l.value=!1}}return{type:a,currentCategory:p,defaultValues:g,onSubmit:f,onSaveAndCreateAnother:h,isLoading:u,isSavingAndCreating:l,error:c}}}),X={class:"view-container"},q={class:"view-card"},J={class:"card-header p-4 border-b border-gray-200"},M={class:"flex items-center justify-between"},Q={class:"flex items-center gap-3"},G={class:"text-sm text-gray-500 mt-1"},H={class:"flex items-center space-x-2 text-sm text-gray-500"},K={class:"card-body p-4 !overflow-auto"},U={key:0,class:"mb-6 p-4 bg-red-50 border border-red-200 rounded-lg flex items-start gap-3"},Y={class:"text-sm text-red-700 mt-1"},Z={class:"p-8"},ee={class:"flex items-center justify-between pt-6 border-t border-gray-200"},te=["disabled","onClick"],se={class:"flex items-center gap-3"},oe=["disabled"];function ne(t,s,o,a,l,m){const p=i("RiAddBoxLine"),u=i("RouterLink"),c=i("RiArrowRightSLine"),g=i("RiErrorWarningLine"),f=i("RiArrowLeftLine"),h=i("RiAddLine"),r=N,y=R;return v(),x("div",X,[e("div",q,[e("div",J,[e("div",M,[e("div",Q,[n(p,{class:"w-6 h-6 text-green-600"}),e("div",null,[s[0]||(s[0]=e("h1",{class:"text-xl font-semibold text-gray-900"}," Crea Nuova Pianificata ",-1)),e("p",G," Configura una nuova azione pianificata per "+b(t.type),1)])]),e("nav",H,[n(u,{to:{name:"scheduler.show",params:{type:t.type}},class:"hover:text-blue-600 transition-colors"},{default:w(()=>[L(" Pianificate "+b(t.type),1)]),_:1},8,["to"]),n(c,{class:"w-4 h-4"}),s[1]||(s[1]=e("span",{class:"text-gray-900"},"Crea Nuova",-1))])])]),e("div",K,[t.error?(v(),x("div",U,[n(g,{class:"w-5 h-5 text-red-600 mt-0.5 flex-shrink-0"}),e("div",null,[s[2]||(s[2]=e("h3",{class:"text-sm font-medium text-red-800"},"Errore durante la creazione",-1)),e("p",Y,b(t.error.message),1)])])):C("",!0),e("div",Z,[n(y,{fields:t.currentCategory,"initial-values":t.defaultValues,onSubmit:t.onSubmit,class:"space-y-6"},{default:w(()=>[e("div",ee,[n(u,{to:{name:"scheduler.show",params:{type:t.type}},custom:""},{default:w(({navigate:_})=>[e("button",{type:"button",class:"inline-flex items-center px-4 py-2 text-sm font-medium text-gray-700 bg-white border border-gray-300 rounded-lg hover:bg-gray-50 focus:ring-2 focus:ring-blue-500 focus:border-blue-500 transition-colors",disabled:t.isLoading,onClick:_},[n(f,{class:"w-4 h-4 mr-2"}),s[3]||(s[3]=L(" Annulla ",-1))],8,te)]),_:1},8,["to"]),e("div",se,[e("button",{type:"submit",class:"inline-flex items-center px-4 py-2 text-sm font-medium text-green-700 bg-green-50 border border-green-200 rounded-lg hover:bg-green-100 focus:ring-2 focus:ring-green-500 transition-colors",disabled:t.isLoading},[n(h,{class:"w-4 h-4 mr-2"}),s[4]||(s[4]=L(" Crea Pianificata ",-1)),t.isLoading&&!t.isSavingAndCreating?(v(),k(r,{key:0,icon:"oval",color:"white",class:"w-4 h-4 ml-2"})):C("",!0)],8,oe)])])]),_:1},8,["fields","initial-values","onSubmit"])])])])])}const ie=A(O,[["render",ne]]);export{ie as default}; diff --git a/ems-engine/src/main/webapp/assets/DynamicForm-Crr4ugnC.css b/ems-engine/src/main/webapp/assets/DynamicForm-Crr4ugnC.css new file mode 100644 index 0000000000..13bac41694 --- /dev/null +++ b/ems-engine/src/main/webapp/assets/DynamicForm-Crr4ugnC.css @@ -0,0 +1 @@ +.space-y-6[data-v-379ea0b4]>*+*{margin-top:1.5rem}.space-y-2[data-v-379ea0b4]>*+*{margin-top:.5rem}input[data-v-379ea0b4]:focus,textarea[data-v-379ea0b4]:focus,select[data-v-379ea0b4]:focus{outline:none;box-shadow:0 0 0 3px #3b82f61a}input[type=number][data-v-379ea0b4]{-webkit-appearance:textfield;appearance:textfield;-moz-appearance:textfield}input[type=number][data-v-379ea0b4]::-webkit-outer-spin-button,input[type=number][data-v-379ea0b4]::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}textarea[data-v-379ea0b4]{min-height:2.5rem;max-height:12rem} diff --git a/ems-engine/src/main/webapp/assets/DynamicForm-DIkU8B8M.css b/ems-engine/src/main/webapp/assets/DynamicForm-DIkU8B8M.css deleted file mode 100644 index 9f6bf552eb..0000000000 --- a/ems-engine/src/main/webapp/assets/DynamicForm-DIkU8B8M.css +++ /dev/null @@ -1 +0,0 @@ -.space-y-6[data-v-4fa0371f]>*+*{margin-top:1.5rem}.space-y-2[data-v-4fa0371f]>*+*{margin-top:.5rem}input[data-v-4fa0371f]:focus,textarea[data-v-4fa0371f]:focus,select[data-v-4fa0371f]:focus{outline:none;box-shadow:0 0 0 3px #3b82f61a}input[type=number][data-v-4fa0371f]{-webkit-appearance:textfield;appearance:textfield;-moz-appearance:textfield}input[type=number][data-v-4fa0371f]::-webkit-outer-spin-button,input[type=number][data-v-4fa0371f]::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}textarea[data-v-4fa0371f]{min-height:2.5rem;max-height:12rem} diff --git a/ems-engine/src/main/webapp/assets/DynamicForm-CXexLuSl.js b/ems-engine/src/main/webapp/assets/DynamicForm-DWX-KwGX.js similarity index 76% rename from ems-engine/src/main/webapp/assets/DynamicForm-CXexLuSl.js rename to ems-engine/src/main/webapp/assets/DynamicForm-DWX-KwGX.js index 82aff5fba4..64cf1b0425 100644 --- a/ems-engine/src/main/webapp/assets/DynamicForm-CXexLuSl.js +++ b/ems-engine/src/main/webapp/assets/DynamicForm-DWX-KwGX.js @@ -1,2 +1,2 @@ -import{t as Y,b as z,a as M,w as ne,W as Se,i as _,c as k,o as f,L as g,p as E,m as A,Y as C,x as w,F as le,j as fe,k as _e,Z as Ve,h as J,C as we,G as ke,_ as Ce,a0 as Ke,r as ee,Q as We,a1 as Qe,a2 as ze,a3 as Ue,a4 as Ge,l as W,f as R,n as de,a5 as G}from"./index-BNu-F4v_.js";function N(e){return[null,void 0,!1].indexOf(e)!==-1}function ve(e){return String(e).toLowerCase().trim()}function pe(e){return(pe=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(e)}function Q(e,t,l){return t in e?Object.defineProperty(e,t,{value:l,enumerable:!0,configurable:!0,writable:!0}):e[t]=l,e}function Ye(e,t,l){var o=Y(e),O=o.options,S=o.mode,n=o.trackBy,I=o.limit,L=o.hideSelected,$=o.createTag,j=o.label,P=o.appendNewTag,q=o.multipleLabel,s=o.object,v=o.loading,y=o.delay,d=o.resolveOnLoad,m=o.minChars,p=o.filterResults,D=o.clearOnSearch,h=o.clearOnSelect,u=o.valueProp,b=o.canDeselect,T=o.max,r=l.iv,x=l.ev,i=l.search,F=l.blurSearch,he=l.clearSearch,ue=l.update,Me=l.blurInput,Ae=l.pointer,me=z([]),X=z([]),Z=z(!1),U=M(function(){var a,c=X.value||[];return a=c,Object.prototype.toString.call(a)==="[object Object]"&&(c=Object.keys(c).map(function(B){var K,V=c[B];return Q(K={},u.value,B),Q(K,n.value,V),Q(K,j.value,V),K})),c=c.map(function(B,K){var V;return pe(B)==="object"?B:(Q(V={},u.value,B),Q(V,n.value,B),Q(V,j.value,B),V)}),me.value.length&&(c=c.concat(me.value)),c}),re=M(function(){var a=U.value;return Oe.value.length&&(a=Oe.value.concat(a)),i.value&&p.value&&(a=a.filter(function(c){return ve(c[n.value]).indexOf(ve(i.value))!==-1})),L.value&&(a=a.filter(function(c){return!Ne(c)})),I.value>0&&(a=a.slice(0,I.value)),a}),be=M(function(){switch(S.value){case"single":return!N(r.value[u.value]);case"multiple":case"tags":return!N(r.value)&&r.value.length>0}}),je=M(function(){return q!==void 0&&q.value!==void 0?q.value(r.value):r.value&&r.value.length>1?"".concat(r.value.length," options selected"):"1 option selected"}),Ee=M(function(){return!U.value.length&&!Z.value}),Le=M(function(){return U.value.length>0&&re.value.length==0}),Oe=M(function(){var a;return $.value!==!1&&i.value?Re(i.value)!==-1?[]:[(a={},Q(a,u.value,i.value),Q(a,j.value,i.value),Q(a,n.value,i.value),a)]:[]}),$e=M(function(){switch(S.value){case"single":return null;case"multiple":case"tags":return[]}}),Fe=M(function(){return v.value||Z.value}),oe=function(a){switch(pe(a)!=="object"&&(a=H(a)),S.value){case"single":ue(a);break;case"multiple":case"tags":ue(r.value.concat(a))}t.emit("select",Pe(a),a)},te=function(a){switch(pe(a)!=="object"&&(a=H(a)),S.value){case"single":Te();break;case"tags":case"multiple":ue(r.value.filter(function(c){return c[u.value]!=a[u.value]}))}t.emit("deselect",Pe(a),a)},Pe=function(a){return s.value?a:a[u.value]},De=function(a){te(a)},Te=function(){t.emit("clear"),ue($e.value)},ae=function(a){switch(S.value){case"single":return!N(r.value)&&r.value[u.value]==a[u.value];case"tags":case"multiple":return!N(r.value)&&r.value.map(function(c){return c[u.value]}).indexOf(a[u.value])!==-1}},Be=function(a){return a.disabled===!0},ge=function(){return!(T===void 0||T.value===-1||!be.value&&T.value>0)&&r.value.length>=T.value},H=function(a){return U.value[U.value.map(function(c){return String(c[u.value])}).indexOf(String(a))]},Re=function(a){return U.value.map(function(c){return ve(c[n.value])}).indexOf(ve(a))},Ne=function(a){return S.value==="tags"&&L.value&&ae(a)},He=function(a){me.value.push(a)},ie=function(){N(x.value)||(r.value=se(x.value))},ye=function(a){Z.value=!0,O.value(i.value).then(function(c){X.value=c,typeof a=="function"&&a(c),Z.value=!1})},se=function(a){return N(a)?S.value==="single"?{}:[]:s.value?a:S.value==="single"?H(a)||{}:a.filter(function(c){return!!H(c)}).map(function(c){return H(c)})};if(S.value!=="single"&&!N(x.value)&&!Array.isArray(x.value))throw new Error('v-model must be an array when using "'.concat(S.value,'" mode'));return O&&typeof O.value=="function"?d.value?ye(ie):s.value==1&&ie():(X.value=O.value,ie()),y.value>-1&&ne(i,function(a){a.lengthe.length)&&(t=e.length);for(var l=0,o=new Array(t);l[]},id:{type:[String,Number],required:!1,default:"multiselect"},name:{type:[String,Number],required:!1,default:"multiselect"},disabled:{type:Boolean,required:!1,default:!1},label:{type:String,required:!1,default:"label"},trackBy:{type:String,required:!1,default:"label"},valueProp:{type:String,required:!1,default:"value"},placeholder:{type:String,required:!1,default:null},mode:{type:String,required:!1,default:"single"},searchable:{type:Boolean,required:!1,default:!1},limit:{type:Number,required:!1,default:-1},maxHeight:{type:Number,required:!1,default:160},hideSelected:{type:Boolean,required:!1,default:!0},createTag:{type:Boolean,required:!1,default:!1},appendNewTag:{type:Boolean,required:!1,default:!0},caret:{type:Boolean,required:!1,default:!0},loading:{type:Boolean,required:!1,default:!1},noOptionsText:{type:String,required:!1,default:"The list is empty"},noResultsText:{type:String,required:!1,default:"No results found"},multipleLabel:{type:Function,required:!1},object:{type:Boolean,required:!1,default:!1},delay:{type:Number,required:!1,default:-1},minChars:{type:Number,required:!1,default:0},resolveOnLoad:{type:Boolean,required:!1,default:!0},filterResults:{type:Boolean,required:!1,default:!0},clearOnSearch:{type:Boolean,required:!1,default:!1},clearOnSelect:{type:Boolean,required:!1,default:!0},canDeselect:{type:Boolean,required:!1,default:!0},max:{type:Number,required:!1,default:-1},showOptions:{type:Boolean,required:!1,default:!0},addTagOn:{type:Array,required:!1,default:()=>["enter"]},required:{type:Boolean,required:!1,default:!1},openDirection:{type:String,required:!1,default:"bottom"},nativeSupport:{type:Boolean,required:!1,default:!1}},setup(e,t){const l=function(P,q){var s=Y(P),v=s.value,y=s.modelValue,d=s.mode,m=s.valueProp,p=z(d.value!=="single"?[]:{}),D=q.expose!==void 0?y:v,h=M(function(){return d.value==="single"?p.value[m.value]:p.value.map(function(b){return b[m.value]})}),u=M(function(){return d.value!=="single"?p.value.map(function(b){return b[m.value]}).join(","):p.value[m.value]});return{iv:p,internalValue:p,ev:D,externalValue:D,textValue:u,plainValue:h}}(e,t),o=function(P,q,s){var v=Y(P),y=v.searchable,d=(v.id,z(null)),m=M(function(){return y.value?-1:0});return{multiselect:d,tabindex:m,focusInput:function(){d.value.querySelector(".multiselect-input").focus()},blurInput:function(){d.value.querySelector(".multiselect-input").blur()}}}(e),O={pointer:z(null)},S=function(P,q,s){var v=Y(P),y=v.object,d=v.valueProp,m=v.mode,p=s.iv,D=function(u){return y.value||N(u)?u:Array.isArray(u)?u.map(function(b){return b[d.value]}):u[d.value]},h=function(u){return N(u)?m.value==="single"?{}:[]:u};return{update:function(u){p.value=h(u);var b=D(u);q.emit("change",b),q.emit("input",b),q.emit("update:modelValue",b)}}}(e,t,{iv:l.iv}),n=function(P,q,s){var v=Y(P),y=v.searchable,d=v.mode,m=s.iv,p=z(null),D=z(null),h=M(function(){return p.value?"".concat(p.value.length,"ch"):d.value==="tags"&&[null,void 0].indexOf(m.value)===-1&&m.value.length?"1ch":"100%"});return ne(p,function(u){q.emit("search-change",u)}),{search:p,input:D,tagsSearchWidth:h,clearSearch:function(){p.value=""},focusSearch:function(){D.value.focus()},blurSearch:function(){y.value&&D.value.blur()}}}(e,t,{iv:l.iv}),I=function(P,q,s){var v=Y(P),y=v.maxHeight,d=v.disabled,m=v.searchable,p=s.multiselect,D=s.blurInput,h=s.blurSearch,u=s.focusInput,b=s.focusSearch,T=z(!1),r=M(function(){return"".concat(y.value,"px")});return{isOpen:T,contentMaxHeight:r,openDropdown:function(){d.value||(T.value=!0,q.emit("open"))},closeDropdown:function(){T.value=!1,q.emit("close")},open:function(){m&&m.value?b():u()},close:function(){m&&m.value?h():D()},handleInputMousedown:function(x){T.value&&!m.value&&(p.value.querySelector(".multiselect-input").dispatchEvent(new Event("blur")),p.value.querySelector(".multiselect-input").blur(),x.preventDefault())}}}(e,t,{multiselect:o.multiselect,blurInput:o.blurInput,blurSearch:n.blurSearch,focusInput:o.focusInput,focusSearch:n.focusSearch}),L=Ye(e,t,{ev:l.ev,iv:l.iv,search:n.search,blurSearch:n.blurSearch,clearSearch:n.clearSearch,update:S.update,blurInput:o.blurInput,pointer:O.pointer}),$=function(P,q,s){var v=Y(P),y=v.id,d=v.valueProp,m=s.fo,p=s.handleOptionClick,D=s.search,h=s.pointer,u=M(function(){return m.value.filter(function(i){return i.disabled!==!0})}),b=function(i){h.value=i},T=function(){h.value=u.value[0]||null},r=function(){h.value=null},x=function(){var i=document.getElementById(y.value).querySelector(".is-pointed");if(i){var F=i.parentElement;i.offsetTop+i.offsetHeight>F.clientHeight+F.scrollTop&&(F.scrollTop=i.offsetTop+i.offsetHeight-F.clientHeight),i.offsetTop{},["prevent"]),["enter"])),ref:"multiselect"},[_("div",{class:"multiselect-input",tabindex:e.tabindex,onMousedown:t[20]||(t[20]=(...n)=>e.handleInputMousedown&&e.handleInputMousedown(...n)),onFocus:t[21]||(t[21]=(...n)=>e.openDropdown&&e.openDropdown(...n)),onBlur:t[22]||(t[22]=(...n)=>e.closeDropdown&&e.closeDropdown(...n)),onKeyup:[t[23]||(t[23]=C((...n)=>e.handleEsc&&e.handleEsc(...n),["esc"])),t[24]||(t[24]=C((...n)=>e.selectPointer&&e.selectPointer(...n),["enter"]))],onKeydown:[t[25]||(t[25]=C(w((...n)=>e.handleBackspace&&e.handleBackspace(...n),["prevent"]),["delete"])),t[26]||(t[26]=C(w(n=>l.openDirection==="top"?e.forwardPointer():e.backwardPointer(),["prevent"]),["up"])),t[27]||(t[27]=C(w(n=>l.openDirection==="top"?e.backwardPointer():e.forwardPointer(),["prevent"]),["down"]))]},[g(" Single label "),l.mode=="single"&&e.hasSelected&&!e.search&&e.iv?E(e.$slots,"singlelabel",{key:0,value:e.iv},()=>[_("div",Je,A(e.iv[l.label]),1)]):g("v-if",!0),g(" Multiple label "),l.mode=="multiple"&&e.hasSelected&&!e.search?E(e.$slots,"multiplelabel",{key:1,values:e.iv},()=>[_("div",Xe,A(e.multipleLabelText),1)]):g("v-if",!0),g(" Search "),l.mode!=="tags"&&l.searchable&&!l.disabled?(f(),k("div",et,[_("input",{modelValue:e.search,value:e.search,onFocus:t[1]||(t[1]=w((...n)=>e.openDropdown&&e.openDropdown(...n),["stop"])),onBlur:t[2]||(t[2]=w((...n)=>e.closeDropdown&&e.closeDropdown(...n),["stop"])),onKeyup:[t[3]||(t[3]=C(w((...n)=>e.handleEsc&&e.handleEsc(...n),["stop"]),["esc"])),t[4]||(t[4]=C(w((...n)=>e.selectPointer&&e.selectPointer(...n),["stop"]),["enter"]))],onKeydown:[t[5]||(t[5]=C((...n)=>e.handleSearchBackspace&&e.handleSearchBackspace(...n),["delete"])),t[6]||(t[6]=C(w(n=>l.openDirection==="top"?e.forwardPointer():e.backwardPointer(),["stop"]),["up"])),t[7]||(t[7]=C(w(n=>l.openDirection==="top"?e.backwardPointer():e.forwardPointer(),["stop"]),["down"]))],onInput:t[8]||(t[8]=(...n)=>e.handleSearchInput&&e.handleSearchInput(...n)),ref:"input"},null,40,["modelValue","value"])])):g("v-if",!0),g(" Tags (with search) "),l.mode=="tags"?(f(),k("div",tt,[(f(!0),k(le,null,fe(e.iv,(n,I,L)=>(f(),k("span",{key:L},[E(e.$slots,"tag",{option:n,handleTagRemove:e.handleTagRemove,disabled:l.disabled},()=>[_("div",at,[_e(A(n[l.label])+" ",1),l.disabled?g("v-if",!0):(f(),k("i",{key:0,onClick:t[9]||(t[9]=w(()=>{},["prevent"])),onMousedown:w($=>e.handleTagRemove(n,$),["prevent","stop"])},null,40,["onMousedown"]))])])]))),128)),l.searchable&&!l.disabled?(f(),k("div",{key:0,class:"multiselect-search",style:{width:e.tagsSearchWidth}},[_("input",{modelValue:e.search,value:e.search,onFocus:t[10]||(t[10]=w((...n)=>e.openDropdown&&e.openDropdown(...n),["stop"])),onBlur:t[11]||(t[11]=w((...n)=>e.closeDropdown&&e.closeDropdown(...n),["stop"])),onKeyup:[t[12]||(t[12]=C(w((...n)=>e.handleEsc&&e.handleEsc(...n),["stop"]),["esc"])),t[13]||(t[13]=C(w((...n)=>e.handleAddTag&&e.handleAddTag(...n),["stop"]),["enter"])),t[14]||(t[14]=C(w((...n)=>e.handleAddTag&&e.handleAddTag(...n),["stop"]),["space"]))],onKeydown:[t[15]||(t[15]=C((...n)=>e.handleSearchBackspace&&e.handleSearchBackspace(...n),["delete"])),t[16]||(t[16]=C(w(n=>l.openDirection==="top"?e.forwardPointer():e.backwardPointer(),["stop"]),["up"])),t[17]||(t[17]=C(w(n=>l.openDirection==="top"?e.backwardPointer():e.forwardPointer(),["stop"]),["down"]))],onInput:t[18]||(t[18]=(...n)=>e.handleSearchInput&&e.handleSearchInput(...n)),style:{width:e.tagsSearchWidth},ref:"input"},null,44,["modelValue","value"])],4)):g("v-if",!0)])):g("v-if",!0),g(" Placeholder "),!l.placeholder||e.hasSelected||e.search?g("v-if",!0):E(e.$slots,"placeholder",{key:4},()=>[_("div",lt,A(l.placeholder),1)]),e.hasSelected||!l.caret||e.busy?g("v-if",!0):E(e.$slots,"caret",{key:5},()=>[nt]),e.hasSelected&&!l.disabled&&!e.busy&&l.canDeselect?E(e.$slots,"clear",{key:6,clear:e.clear},()=>[_("a",{class:"multiselect-clear",onClick:t[19]||(t[19]=w((...n)=>e.clear&&e.clear(...n),["prevent"]))})]):g("v-if",!0),_(Ve,{name:"multiselect-loading"},{default:J(()=>[e.busy?(f(),k("span",ut,[E(e.$slots,"spinner",{},()=>[rt])])):g("v-if",!0)]),_:1})],40,["tabindex"]),g(" Options "),e.resolving&&l.clearOnSearch?g("v-if",!0):(f(),k(Ve,{key:0,name:"multiselect",onAfterLeave:e.clearSearch},{default:J(()=>[we(_("div",{class:"multiselect-options",style:{maxHeight:e.contentMaxHeight}},[E(e.$slots,"beforelist"),(f(!0),k(le,null,fe(e.fo,(n,I,L)=>(f(),k("span",{tabindex:-1,class:["multiselect-option",{"is-pointed":e.isPointed(n),"is-selected":e.isSelected(n),"is-disabled":e.isDisabled(n)}],key:L,onMousedown:t[28]||(t[28]=w(()=>{},["prevent"])),onMouseenter:$=>e.setPointer(n),onClick:w($=>e.handleOptionClick(n),["stop","prevent"])},[E(e.$slots,"option",{option:n,search:e.search},()=>[_("span",null,A(n[l.label]),1)])],42,["onMouseenter","onClick"]))),128)),we(_("span",null,[E(e.$slots,"nooptions",{},()=>[_("div",ot,A(l.noOptionsText),1)])],512),[[ke,e.noOptions]]),we(_("span",null,[E(e.$slots,"noresults",{},()=>[_("div",it,A(l.noResultsText),1)])],512),[[ke,e.noResults]]),E(e.$slots,"afterlist")],4),[[ke,e.isOpen&&l.showOptions]])]),_:3},8,["onAfterLeave"])),g(" Hacky input element to show HTML5 required warning "),l.required?(f(),k("input",{key:1,class:"multiselect-fake-input",tabindex:"-1",value:e.textValue,required:""},null,8,["value"])):g("v-if",!0),l.nativeSupport?(f(),k(le,{key:2},[l.mode=="single"?(f(),k("input",{key:0,type:"hidden",name:l.name,value:e.plainValue!==void 0?e.plainValue:""},null,8,["name","value"])):(f(!0),k(le,{key:1},fe(e.plainValue,(n,I)=>(f(),k("input",{type:"hidden",name:`${l.name}[]`,value:n,key:I},null,8,["name","value"]))),128))],64)):g("v-if",!0)],42,["id"])},qe.__file="src/Multiselect.vue";const st={name:"CustomSelect",components:{Multiselect:qe},props:{type:{type:String,default:"text"},value:{type:String,default:""},name:{type:String,required:!0},rules:{type:String,default:""},options:{type:Array,required:!0}},setup(e){const{value:t,errorMessage:l,handleBlur:o,handleChange:O,meta:S}=Ke(e.name,e.rules,{initialValue:e.value});return{handleChange:O,handleBlur:o,errorMessage:l,inputValue:t,meta:S}}};function ct(e,t,l,o,O,S){const n=ee("Multiselect");return f(),k(n,{name:l.name,id:l.name,modelValue:o.inputValue,"onUpdate:modelValue":t[0]||(t[0]=I=>o.inputValue=I),options:l.options,searchable:""},null,8,["name","id","modelValue","options"])}const Ie=Ce(st,[["render",ct]]),dt={name:"DynamicForm",components:{Form:Ge,Field:Ue,ErrorMessage:ze,CustomSelect:Ie,RiQuestionLine:Qe,RiErrorWarningLine:We},props:{fields:{type:Array,required:!0},initialValues:{type:Object,default:()=>({})}},emits:["submit"],setup(e,{emit:t}){const l={...e.initialValues};l.cronTrigger??(l.cronTrigger="* * * * * *");function o(O){t("submit",O)}return{initialValues:l,onSubmit:o}}},vt={class:"grid grid-cols-2 gap-6"},ft=["for"],pt={key:0,class:"text-red-500 ml-1"},ht={key:0,class:"text-sm text-gray-500"},mt={class:"flex items-start gap-3"},bt={class:"flex items-center h-5"},gt=["checked","disabled"],yt={key:0,class:"text-sm"},St=["for"],wt={key:0,class:"text-gray-500"},kt=["placeholder","disabled","rows"],xt={key:0,class:"relative"},_t=["type","placeholder","disabled"],qt={class:"absolute inset-y-0 right-0 flex items-center pr-3"},Ot=["type","placeholder","disabled"];function Pt(e,t,l,o,O,S){const n=Ie,I=ee("Field"),L=ee("RiQuestionLine"),$=ee("RiErrorWarningLine"),j=ee("ErrorMessage"),P=ee("Form");return f(),k(P,{onSubmit:o.onSubmit,"initial-values":o.initialValues,class:"space-y-6"},{default:J(()=>[W("div",vt,[(f(!0),R(le,null,fe(l.fields,({as:q,inputType:s,name:v,rules:y,info:d,group:m,disabled:p,classes:D,label:h,placeholder:u,description:b,fullWidth:T,...r})=>(f(),R("div",{key:v,class:de(["space-y-2",T?"md:col-span-2":""])},[W("label",{for:v,class:"block text-sm font-medium text-gray-700"},[_e(A(h||v)+" ",1),y&&y.includes("required")?(f(),R("span",pt,"*")):g("",!0)],8,ft),b?(f(),R("p",ht,A(b),1)):g("",!0),q==="select"?(f(),k(n,G({key:1,id:v,name:v,rules:y,options:r.options,placeholder:u,disabled:p,class:"w-full px-3 py-2 border border-gray-300 rounded-lg shadow-sm focus:ring-2 focus:ring-blue-500 focus:border-blue-500 transition-colors disabled:bg-gray-50 disabled:text-gray-500"},{ref_for:!0},r),null,16,["id","name","rules","options","placeholder","disabled"])):s==="checkbox"?(f(),k(I,G({key:2,name:v,rules:y},{ref_for:!0},r,{type:"checkbox",value:!0}),{default:J(({field:x,value:i})=>[W("div",mt,[W("div",bt,[W("input",G({type:"checkbox",value:!0,checked:i,disabled:p},{ref_for:!0},x,{class:"w-4 h-4 text-blue-600 bg-gray-100 border-gray-300 rounded focus:ring-blue-500 focus:ring-2 disabled:opacity-50"}),null,16,gt)]),r.checkboxLabel?(f(),R("div",yt,[W("label",{for:v,class:"font-medium text-gray-700"},A(r.checkboxLabel),9,St),r.checkboxDescription?(f(),R("p",wt,A(r.checkboxDescription),1)):g("",!0)])):g("",!0)]),d?(f(),R("div",{key:0,class:de(["mt-2 text-sm",d.class||"text-blue-600"])},A(d.message(i)),3)):g("",!0)]),_:2},1040,["name","rules"])):s==="textarea"?(f(),k(I,G({key:3,name:v,rules:y},{ref_for:!0},r),{default:J(({field:x,value:i})=>[W("textarea",G({ref_for:!0},x,{placeholder:u,disabled:p,rows:r.rows||4,class:"w-full px-3 py-2 border border-gray-300 rounded-lg shadow-sm focus:ring-2 focus:ring-blue-500 focus:border-blue-500 transition-colors resize-vertical disabled:bg-gray-50 disabled:text-gray-500"}),null,16,kt),d?(f(),R("div",{key:0,class:de(["mt-2 text-sm",d.class||"text-blue-600"])},A(d.message(i)),3)):g("",!0)]),_:2},1040,["name","rules"])):(f(),k(I,G({key:4,name:v,rules:y},{ref_for:!0},r),{default:J(({field:x,value:i})=>[m?(f(),R("div",xt,[W("input",G({type:s},{ref_for:!0},x,{placeholder:u,disabled:p,autocomplete:"off",class:"w-full pl-3 pr-10 py-2 border border-gray-300 rounded-lg shadow-sm focus:ring-2 focus:ring-blue-500 focus:border-blue-500 transition-colors disabled:bg-gray-50 disabled:text-gray-500"}),null,16,_t),W("div",qt,[_(L,{class:"w-5 h-5 text-gray-400 hover:text-blue-600 cursor-pointer transition-colors",onClick:m},null,8,["onClick"])])])):(f(),R("input",G({key:1,type:s},{ref_for:!0},x,{placeholder:u,disabled:p,autocomplete:"off",class:"w-full px-3 py-2 border border-gray-300 rounded-lg shadow-sm focus:ring-2 focus:ring-blue-500 focus:border-blue-500 transition-colors disabled:bg-gray-50 disabled:text-gray-500"}),null,16,Ot)),d?(f(),R("div",{key:2,class:de(["mt-2 text-sm",d.class||"text-blue-600"])},A(d.message(i)),3)):g("",!0)]),_:2},1040,["name","rules"])),_(j,{name:v,as:"div",class:"text-sm text-red-600 font-medium flex items-center gap-1"},{default:J(({message:x})=>[_($,{class:"w-4 h-4 flex-shrink-0"}),_e(" "+A(x),1)]),_:2},1032,["name"])],2))),128))]),E(e.$slots,"default",{},void 0,!0)]),_:3},8,["onSubmit","initial-values"])}const Tt=Ce(dt,[["render",Pt],["__scopeId","data-v-4fa0371f"]]);export{Tt as _}; +import{t as Y,b as z,a as M,w as ne,W as Se,i as _,c as k,o as p,L as g,p as E,m as A,Y as C,x as w,F as le,j as pe,k as _e,Z as Ve,h as J,C as we,G as ke,_ as Ce,a0 as Ke,r as ee,Q as We,a1 as Qe,a2 as ze,a3 as Ue,a4 as Ge,l as W,f as R,n as de,a5 as G}from"./index-CjLz75tu.js";function N(e){return[null,void 0,!1].indexOf(e)!==-1}function ve(e){return String(e).toLowerCase().trim()}function fe(e){return(fe=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(e)}function Q(e,t,l){return t in e?Object.defineProperty(e,t,{value:l,enumerable:!0,configurable:!0,writable:!0}):e[t]=l,e}function Ye(e,t,l){var o=Y(e),O=o.options,S=o.mode,n=o.trackBy,I=o.limit,L=o.hideSelected,$=o.createTag,j=o.label,P=o.appendNewTag,q=o.multipleLabel,s=o.object,v=o.loading,y=o.delay,d=o.resolveOnLoad,m=o.minChars,f=o.filterResults,D=o.clearOnSearch,h=o.clearOnSelect,u=o.valueProp,b=o.canDeselect,T=o.max,r=l.iv,x=l.ev,i=l.search,F=l.blurSearch,he=l.clearSearch,ue=l.update,Me=l.blurInput,Ae=l.pointer,me=z([]),X=z([]),Z=z(!1),U=M(function(){var a,c=X.value||[];return a=c,Object.prototype.toString.call(a)==="[object Object]"&&(c=Object.keys(c).map(function(B){var K,V=c[B];return Q(K={},u.value,B),Q(K,n.value,V),Q(K,j.value,V),K})),c=c.map(function(B,K){var V;return fe(B)==="object"?B:(Q(V={},u.value,B),Q(V,n.value,B),Q(V,j.value,B),V)}),me.value.length&&(c=c.concat(me.value)),c}),re=M(function(){var a=U.value;return Oe.value.length&&(a=Oe.value.concat(a)),i.value&&f.value&&(a=a.filter(function(c){return ve(c[n.value]).indexOf(ve(i.value))!==-1})),L.value&&(a=a.filter(function(c){return!Ne(c)})),I.value>0&&(a=a.slice(0,I.value)),a}),be=M(function(){switch(S.value){case"single":return!N(r.value[u.value]);case"multiple":case"tags":return!N(r.value)&&r.value.length>0}}),je=M(function(){return q!==void 0&&q.value!==void 0?q.value(r.value):r.value&&r.value.length>1?"".concat(r.value.length," options selected"):"1 option selected"}),Ee=M(function(){return!U.value.length&&!Z.value}),Le=M(function(){return U.value.length>0&&re.value.length==0}),Oe=M(function(){var a;return $.value!==!1&&i.value?Re(i.value)!==-1?[]:[(a={},Q(a,u.value,i.value),Q(a,j.value,i.value),Q(a,n.value,i.value),a)]:[]}),$e=M(function(){switch(S.value){case"single":return null;case"multiple":case"tags":return[]}}),Fe=M(function(){return v.value||Z.value}),oe=function(a){switch(fe(a)!=="object"&&(a=H(a)),S.value){case"single":ue(a);break;case"multiple":case"tags":ue(r.value.concat(a))}t.emit("select",Pe(a),a)},te=function(a){switch(fe(a)!=="object"&&(a=H(a)),S.value){case"single":Te();break;case"tags":case"multiple":ue(r.value.filter(function(c){return c[u.value]!=a[u.value]}))}t.emit("deselect",Pe(a),a)},Pe=function(a){return s.value?a:a[u.value]},De=function(a){te(a)},Te=function(){t.emit("clear"),ue($e.value)},ae=function(a){switch(S.value){case"single":return!N(r.value)&&r.value[u.value]==a[u.value];case"tags":case"multiple":return!N(r.value)&&r.value.map(function(c){return c[u.value]}).indexOf(a[u.value])!==-1}},Be=function(a){return a.disabled===!0},ge=function(){return!(T===void 0||T.value===-1||!be.value&&T.value>0)&&r.value.length>=T.value},H=function(a){return U.value[U.value.map(function(c){return String(c[u.value])}).indexOf(String(a))]},Re=function(a){return U.value.map(function(c){return ve(c[n.value])}).indexOf(ve(a))},Ne=function(a){return S.value==="tags"&&L.value&&ae(a)},He=function(a){me.value.push(a)},ie=function(){N(x.value)||(r.value=se(x.value))},ye=function(a){Z.value=!0,O.value(i.value).then(function(c){X.value=c,typeof a=="function"&&a(c),Z.value=!1})},se=function(a){return N(a)?S.value==="single"?{}:[]:s.value?a:S.value==="single"?H(a)||{}:a.filter(function(c){return!!H(c)}).map(function(c){return H(c)})};if(S.value!=="single"&&!N(x.value)&&!Array.isArray(x.value))throw new Error('v-model must be an array when using "'.concat(S.value,'" mode'));return O&&typeof O.value=="function"?d.value?ye(ie):s.value==1&&ie():(X.value=O.value,ie()),y.value>-1&&ne(i,function(a){a.lengthe.length)&&(t=e.length);for(var l=0,o=new Array(t);l[]},id:{type:[String,Number],required:!1,default:"multiselect"},name:{type:[String,Number],required:!1,default:"multiselect"},disabled:{type:Boolean,required:!1,default:!1},label:{type:String,required:!1,default:"label"},trackBy:{type:String,required:!1,default:"label"},valueProp:{type:String,required:!1,default:"value"},placeholder:{type:String,required:!1,default:null},mode:{type:String,required:!1,default:"single"},searchable:{type:Boolean,required:!1,default:!1},limit:{type:Number,required:!1,default:-1},maxHeight:{type:Number,required:!1,default:160},hideSelected:{type:Boolean,required:!1,default:!0},createTag:{type:Boolean,required:!1,default:!1},appendNewTag:{type:Boolean,required:!1,default:!0},caret:{type:Boolean,required:!1,default:!0},loading:{type:Boolean,required:!1,default:!1},noOptionsText:{type:String,required:!1,default:"The list is empty"},noResultsText:{type:String,required:!1,default:"No results found"},multipleLabel:{type:Function,required:!1},object:{type:Boolean,required:!1,default:!1},delay:{type:Number,required:!1,default:-1},minChars:{type:Number,required:!1,default:0},resolveOnLoad:{type:Boolean,required:!1,default:!0},filterResults:{type:Boolean,required:!1,default:!0},clearOnSearch:{type:Boolean,required:!1,default:!1},clearOnSelect:{type:Boolean,required:!1,default:!0},canDeselect:{type:Boolean,required:!1,default:!0},max:{type:Number,required:!1,default:-1},showOptions:{type:Boolean,required:!1,default:!0},addTagOn:{type:Array,required:!1,default:()=>["enter"]},required:{type:Boolean,required:!1,default:!1},openDirection:{type:String,required:!1,default:"bottom"},nativeSupport:{type:Boolean,required:!1,default:!1}},setup(e,t){const l=function(P,q){var s=Y(P),v=s.value,y=s.modelValue,d=s.mode,m=s.valueProp,f=z(d.value!=="single"?[]:{}),D=q.expose!==void 0?y:v,h=M(function(){return d.value==="single"?f.value[m.value]:f.value.map(function(b){return b[m.value]})}),u=M(function(){return d.value!=="single"?f.value.map(function(b){return b[m.value]}).join(","):f.value[m.value]});return{iv:f,internalValue:f,ev:D,externalValue:D,textValue:u,plainValue:h}}(e,t),o=function(P,q,s){var v=Y(P),y=v.searchable,d=(v.id,z(null)),m=M(function(){return y.value?-1:0});return{multiselect:d,tabindex:m,focusInput:function(){d.value.querySelector(".multiselect-input").focus()},blurInput:function(){d.value.querySelector(".multiselect-input").blur()}}}(e),O={pointer:z(null)},S=function(P,q,s){var v=Y(P),y=v.object,d=v.valueProp,m=v.mode,f=s.iv,D=function(u){return y.value||N(u)?u:Array.isArray(u)?u.map(function(b){return b[d.value]}):u[d.value]},h=function(u){return N(u)?m.value==="single"?{}:[]:u};return{update:function(u){f.value=h(u);var b=D(u);q.emit("change",b),q.emit("input",b),q.emit("update:modelValue",b)}}}(e,t,{iv:l.iv}),n=function(P,q,s){var v=Y(P),y=v.searchable,d=v.mode,m=s.iv,f=z(null),D=z(null),h=M(function(){return f.value?"".concat(f.value.length,"ch"):d.value==="tags"&&[null,void 0].indexOf(m.value)===-1&&m.value.length?"1ch":"100%"});return ne(f,function(u){q.emit("search-change",u)}),{search:f,input:D,tagsSearchWidth:h,clearSearch:function(){f.value=""},focusSearch:function(){D.value.focus()},blurSearch:function(){y.value&&D.value.blur()}}}(e,t,{iv:l.iv}),I=function(P,q,s){var v=Y(P),y=v.maxHeight,d=v.disabled,m=v.searchable,f=s.multiselect,D=s.blurInput,h=s.blurSearch,u=s.focusInput,b=s.focusSearch,T=z(!1),r=M(function(){return"".concat(y.value,"px")});return{isOpen:T,contentMaxHeight:r,openDropdown:function(){d.value||(T.value=!0,q.emit("open"))},closeDropdown:function(){T.value=!1,q.emit("close")},open:function(){m&&m.value?b():u()},close:function(){m&&m.value?h():D()},handleInputMousedown:function(x){T.value&&!m.value&&(f.value.querySelector(".multiselect-input").dispatchEvent(new Event("blur")),f.value.querySelector(".multiselect-input").blur(),x.preventDefault())}}}(e,t,{multiselect:o.multiselect,blurInput:o.blurInput,blurSearch:n.blurSearch,focusInput:o.focusInput,focusSearch:n.focusSearch}),L=Ye(e,t,{ev:l.ev,iv:l.iv,search:n.search,blurSearch:n.blurSearch,clearSearch:n.clearSearch,update:S.update,blurInput:o.blurInput,pointer:O.pointer}),$=function(P,q,s){var v=Y(P),y=v.id,d=v.valueProp,m=s.fo,f=s.handleOptionClick,D=s.search,h=s.pointer,u=M(function(){return m.value.filter(function(i){return i.disabled!==!0})}),b=function(i){h.value=i},T=function(){h.value=u.value[0]||null},r=function(){h.value=null},x=function(){var i=document.getElementById(y.value).querySelector(".is-pointed");if(i){var F=i.parentElement;i.offsetTop+i.offsetHeight>F.clientHeight+F.scrollTop&&(F.scrollTop=i.offsetTop+i.offsetHeight-F.clientHeight),i.offsetTop{},["prevent"]),["enter"])),ref:"multiselect"},[_("div",{class:"multiselect-input",tabindex:e.tabindex,onMousedown:t[20]||(t[20]=(...n)=>e.handleInputMousedown&&e.handleInputMousedown(...n)),onFocus:t[21]||(t[21]=(...n)=>e.openDropdown&&e.openDropdown(...n)),onBlur:t[22]||(t[22]=(...n)=>e.closeDropdown&&e.closeDropdown(...n)),onKeyup:[t[23]||(t[23]=C((...n)=>e.handleEsc&&e.handleEsc(...n),["esc"])),t[24]||(t[24]=C((...n)=>e.selectPointer&&e.selectPointer(...n),["enter"]))],onKeydown:[t[25]||(t[25]=C(w((...n)=>e.handleBackspace&&e.handleBackspace(...n),["prevent"]),["delete"])),t[26]||(t[26]=C(w(n=>l.openDirection==="top"?e.forwardPointer():e.backwardPointer(),["prevent"]),["up"])),t[27]||(t[27]=C(w(n=>l.openDirection==="top"?e.backwardPointer():e.forwardPointer(),["prevent"]),["down"]))]},[g(" Single label "),l.mode=="single"&&e.hasSelected&&!e.search&&e.iv?E(e.$slots,"singlelabel",{key:0,value:e.iv},()=>[_("div",Je,A(e.iv[l.label]),1)]):g("v-if",!0),g(" Multiple label "),l.mode=="multiple"&&e.hasSelected&&!e.search?E(e.$slots,"multiplelabel",{key:1,values:e.iv},()=>[_("div",Xe,A(e.multipleLabelText),1)]):g("v-if",!0),g(" Search "),l.mode!=="tags"&&l.searchable&&!l.disabled?(p(),k("div",et,[_("input",{modelValue:e.search,value:e.search,onFocus:t[1]||(t[1]=w((...n)=>e.openDropdown&&e.openDropdown(...n),["stop"])),onBlur:t[2]||(t[2]=w((...n)=>e.closeDropdown&&e.closeDropdown(...n),["stop"])),onKeyup:[t[3]||(t[3]=C(w((...n)=>e.handleEsc&&e.handleEsc(...n),["stop"]),["esc"])),t[4]||(t[4]=C(w((...n)=>e.selectPointer&&e.selectPointer(...n),["stop"]),["enter"]))],onKeydown:[t[5]||(t[5]=C((...n)=>e.handleSearchBackspace&&e.handleSearchBackspace(...n),["delete"])),t[6]||(t[6]=C(w(n=>l.openDirection==="top"?e.forwardPointer():e.backwardPointer(),["stop"]),["up"])),t[7]||(t[7]=C(w(n=>l.openDirection==="top"?e.backwardPointer():e.forwardPointer(),["stop"]),["down"]))],onInput:t[8]||(t[8]=(...n)=>e.handleSearchInput&&e.handleSearchInput(...n)),ref:"input"},null,40,["modelValue","value"])])):g("v-if",!0),g(" Tags (with search) "),l.mode=="tags"?(p(),k("div",tt,[(p(!0),k(le,null,pe(e.iv,(n,I,L)=>(p(),k("span",{key:L},[E(e.$slots,"tag",{option:n,handleTagRemove:e.handleTagRemove,disabled:l.disabled},()=>[_("div",at,[_e(A(n[l.label])+" ",1),l.disabled?g("v-if",!0):(p(),k("i",{key:0,onClick:t[9]||(t[9]=w(()=>{},["prevent"])),onMousedown:w($=>e.handleTagRemove(n,$),["prevent","stop"])},null,40,["onMousedown"]))])])]))),128)),l.searchable&&!l.disabled?(p(),k("div",{key:0,class:"multiselect-search",style:{width:e.tagsSearchWidth}},[_("input",{modelValue:e.search,value:e.search,onFocus:t[10]||(t[10]=w((...n)=>e.openDropdown&&e.openDropdown(...n),["stop"])),onBlur:t[11]||(t[11]=w((...n)=>e.closeDropdown&&e.closeDropdown(...n),["stop"])),onKeyup:[t[12]||(t[12]=C(w((...n)=>e.handleEsc&&e.handleEsc(...n),["stop"]),["esc"])),t[13]||(t[13]=C(w((...n)=>e.handleAddTag&&e.handleAddTag(...n),["stop"]),["enter"])),t[14]||(t[14]=C(w((...n)=>e.handleAddTag&&e.handleAddTag(...n),["stop"]),["space"]))],onKeydown:[t[15]||(t[15]=C((...n)=>e.handleSearchBackspace&&e.handleSearchBackspace(...n),["delete"])),t[16]||(t[16]=C(w(n=>l.openDirection==="top"?e.forwardPointer():e.backwardPointer(),["stop"]),["up"])),t[17]||(t[17]=C(w(n=>l.openDirection==="top"?e.backwardPointer():e.forwardPointer(),["stop"]),["down"]))],onInput:t[18]||(t[18]=(...n)=>e.handleSearchInput&&e.handleSearchInput(...n)),style:{width:e.tagsSearchWidth},ref:"input"},null,44,["modelValue","value"])],4)):g("v-if",!0)])):g("v-if",!0),g(" Placeholder "),!l.placeholder||e.hasSelected||e.search?g("v-if",!0):E(e.$slots,"placeholder",{key:4},()=>[_("div",lt,A(l.placeholder),1)]),e.hasSelected||!l.caret||e.busy?g("v-if",!0):E(e.$slots,"caret",{key:5},()=>[nt]),e.hasSelected&&!l.disabled&&!e.busy&&l.canDeselect?E(e.$slots,"clear",{key:6,clear:e.clear},()=>[_("a",{class:"multiselect-clear",onClick:t[19]||(t[19]=w((...n)=>e.clear&&e.clear(...n),["prevent"]))})]):g("v-if",!0),_(Ve,{name:"multiselect-loading"},{default:J(()=>[e.busy?(p(),k("span",ut,[E(e.$slots,"spinner",{},()=>[rt])])):g("v-if",!0)]),_:1})],40,["tabindex"]),g(" Options "),e.resolving&&l.clearOnSearch?g("v-if",!0):(p(),k(Ve,{key:0,name:"multiselect",onAfterLeave:e.clearSearch},{default:J(()=>[we(_("div",{class:"multiselect-options",style:{maxHeight:e.contentMaxHeight}},[E(e.$slots,"beforelist"),(p(!0),k(le,null,pe(e.fo,(n,I,L)=>(p(),k("span",{tabindex:-1,class:["multiselect-option",{"is-pointed":e.isPointed(n),"is-selected":e.isSelected(n),"is-disabled":e.isDisabled(n)}],key:L,onMousedown:t[28]||(t[28]=w(()=>{},["prevent"])),onMouseenter:$=>e.setPointer(n),onClick:w($=>e.handleOptionClick(n),["stop","prevent"])},[E(e.$slots,"option",{option:n,search:e.search},()=>[_("span",null,A(n[l.label]),1)])],42,["onMouseenter","onClick"]))),128)),we(_("span",null,[E(e.$slots,"nooptions",{},()=>[_("div",ot,A(l.noOptionsText),1)])],512),[[ke,e.noOptions]]),we(_("span",null,[E(e.$slots,"noresults",{},()=>[_("div",it,A(l.noResultsText),1)])],512),[[ke,e.noResults]]),E(e.$slots,"afterlist")],4),[[ke,e.isOpen&&l.showOptions]])]),_:3},8,["onAfterLeave"])),g(" Hacky input element to show HTML5 required warning "),l.required?(p(),k("input",{key:1,class:"multiselect-fake-input",tabindex:"-1",value:e.textValue,required:""},null,8,["value"])):g("v-if",!0),l.nativeSupport?(p(),k(le,{key:2},[l.mode=="single"?(p(),k("input",{key:0,type:"hidden",name:l.name,value:e.plainValue!==void 0?e.plainValue:""},null,8,["name","value"])):(p(!0),k(le,{key:1},pe(e.plainValue,(n,I)=>(p(),k("input",{type:"hidden",name:`${l.name}[]`,value:n,key:I},null,8,["name","value"]))),128))],64)):g("v-if",!0)],42,["id"])},qe.__file="src/Multiselect.vue";const st={name:"CustomSelect",components:{Multiselect:qe},props:{type:{type:String,default:"text"},value:{type:String,default:""},name:{type:String,required:!0},rules:{type:String,default:""},options:{type:Array,required:!0}},setup(e){const{value:t,errorMessage:l,handleBlur:o,handleChange:O,meta:S}=Ke(e.name,e.rules,{initialValue:e.value});return{handleChange:O,handleBlur:o,errorMessage:l,inputValue:t,meta:S}}};function ct(e,t,l,o,O,S){const n=ee("Multiselect");return p(),k(n,{name:l.name,id:l.name,modelValue:o.inputValue,"onUpdate:modelValue":t[0]||(t[0]=I=>o.inputValue=I),options:l.options,searchable:""},null,8,["name","id","modelValue","options"])}const Ie=Ce(st,[["render",ct]]),dt={name:"DynamicForm",components:{Form:Ge,Field:Ue,ErrorMessage:ze,CustomSelect:Ie,RiQuestionLine:Qe,RiErrorWarningLine:We},props:{fields:{type:Array,required:!0},initialValues:{type:Object,default:()=>({})}},emits:["submit"],setup(e,{emit:t}){const l={...e.initialValues};l.cronTrigger??(l.cronTrigger="* * * * * *");function o(O){t("submit",O)}return{initialValues:l,onSubmit:o}}},vt={class:"grid grid-cols-2 gap-6"},pt=["for"],ft={key:0,class:"text-red-500 ml-1"},ht={key:0,class:"text-sm text-gray-500"},mt={class:"flex items-start gap-3"},bt={class:"flex items-center h-5"},gt=["checked","disabled"],yt={key:0,class:"text-sm"},St=["for"],wt={key:0,class:"text-gray-500"},kt=["placeholder","disabled","rows"],xt={key:0,class:"relative"},_t=["type","placeholder","disabled"],qt={class:"absolute inset-y-0 right-0 flex items-center pr-3"},Ot=["type","placeholder","disabled"];function Pt(e,t,l,o,O,S){const n=Ie,I=ee("Field"),L=ee("RiQuestionLine"),$=ee("RiErrorWarningLine"),j=ee("ErrorMessage"),P=ee("Form");return p(),k(P,{onSubmit:o.onSubmit,"initial-values":o.initialValues,class:"space-y-6"},{default:J(()=>[W("div",vt,[(p(!0),R(le,null,pe(l.fields,({as:q,inputType:s,name:v,rules:y,info:d,group:m,disabled:f,classes:D,label:h,placeholder:u,description:b,fullWidth:T,...r})=>(p(),R("div",{key:v,class:de(["space-y-2",T?"md:col-span-2":""])},[W("label",{for:v,class:"block text-sm font-medium text-gray-700"},[_e(A(h||v)+" ",1),y&&y.includes("required")?(p(),R("span",ft,"*")):g("",!0)],8,pt),b?(p(),R("p",ht,A(b),1)):g("",!0),q==="select"?(p(),k(n,G({key:1,id:v,name:v,rules:y,options:r.options,placeholder:u,disabled:f,class:"w-full px-3 py-2 border border-gray-300 rounded-lg shadow-sm focus:ring-2 focus:ring-blue-500 focus:border-blue-500 transition-colors disabled:bg-gray-50 disabled:text-gray-500"},{ref_for:!0},r),null,16,["id","name","rules","options","placeholder","disabled"])):s==="checkbox"?(p(),k(I,G({key:2,name:v,rules:y},{ref_for:!0},r,{type:"checkbox",value:!0}),{default:J(({field:x,value:i})=>[W("div",mt,[W("div",bt,[W("input",G({type:"checkbox",value:!0,checked:i,disabled:f},{ref_for:!0},x,{class:"w-5 h-5 text-blue-600 border-gray-300 rounded focus:ring-blue-500 focus:ring-2 disabled:opacity-50"}),null,16,gt)]),r.checkboxLabel?(p(),R("div",yt,[W("label",{for:v,class:"font-medium text-gray-700"},A(r.checkboxLabel),9,St),r.checkboxDescription?(p(),R("p",wt,A(r.checkboxDescription),1)):g("",!0)])):g("",!0)]),d?(p(),R("div",{key:0,class:de(["mt-2 text-sm",d.class||"text-blue-600"])},A(d.message(i)),3)):g("",!0)]),_:2},1040,["name","rules"])):s==="textarea"?(p(),k(I,G({key:3,name:v,rules:y},{ref_for:!0},r),{default:J(({field:x,value:i})=>[W("textarea",G({ref_for:!0},x,{placeholder:u,disabled:f,rows:r.rows||4,class:"w-full px-3 py-2 border border-gray-300 rounded-lg shadow-sm focus:ring-2 focus:ring-blue-500 focus:border-blue-500 transition-colors resize-vertical disabled:bg-gray-50 disabled:text-gray-500"}),null,16,kt),d?(p(),R("div",{key:0,class:de(["mt-2 text-sm",d.class||"text-blue-600"])},A(d.message(i)),3)):g("",!0)]),_:2},1040,["name","rules"])):(p(),k(I,G({key:4,name:v,rules:y},{ref_for:!0},r),{default:J(({field:x,value:i})=>[m?(p(),R("div",xt,[W("input",G({type:s},{ref_for:!0},x,{placeholder:u,disabled:f,autocomplete:"off",class:"w-full pl-3 pr-10 py-2 border border-gray-300 rounded-lg shadow-sm focus:ring-2 focus:ring-blue-500 focus:border-blue-500 transition-colors disabled:bg-gray-50 disabled:text-gray-500"}),null,16,_t),W("div",qt,[_(L,{class:"w-5 h-5 text-gray-400 hover:text-blue-600 cursor-pointer transition-colors",onClick:m},null,8,["onClick"])])])):(p(),R("input",G({key:1,type:s},{ref_for:!0},x,{placeholder:u,disabled:f,autocomplete:"off",class:"w-full px-3 py-2 border border-gray-300 rounded-lg shadow-sm focus:ring-2 focus:ring-blue-500 focus:border-blue-500 transition-colors disabled:bg-gray-50 disabled:text-gray-500"}),null,16,Ot)),d?(p(),R("div",{key:2,class:de(["mt-2 text-sm",d.class||"text-blue-600"])},A(d.message(i)),3)):g("",!0)]),_:2},1040,["name","rules"])),_(j,{name:v,as:"div",class:"text-sm text-red-600 font-medium flex items-center gap-1"},{default:J(({message:x})=>[_($,{class:"w-4 h-4 flex-shrink-0"}),_e(" "+A(x),1)]),_:2},1032,["name"])],2))),128))]),E(e.$slots,"default",{},void 0,!0)]),_:3},8,["onSubmit","initial-values"])}const Tt=Ce(dt,[["render",Pt],["__scopeId","data-v-379ea0b4"]]);export{Tt as _}; diff --git a/ems-engine/src/main/webapp/assets/Edit-DW9sMVCT.js b/ems-engine/src/main/webapp/assets/Edit-F4sVz2t7.js similarity index 97% rename from ems-engine/src/main/webapp/assets/Edit-DW9sMVCT.js rename to ems-engine/src/main/webapp/assets/Edit-F4sVz2t7.js index 4cf664d370..61ede718e4 100644 --- a/ems-engine/src/main/webapp/assets/Edit-DW9sMVCT.js +++ b/ems-engine/src/main/webapp/assets/Edit-F4sVz2t7.js @@ -1 +1 @@ -import{_ as B}from"./DynamicForm-CXexLuSl.js";import{_ as V,d as P,r as d,f as A,o as w,l as t,i as o,L as S,m as l,h as f,k as E,E as F,c as $,M as j,N as W,U as J,X as T,Q as X,R as q,V as I,J as O,T as Q,u as U,a as n,b as x,w as k}from"./index-BNu-F4v_.js";const z=P({name:"SchedulerEdit",components:{DynamicForm:B,RiEditBoxLine:I,RiArrowRightSLine:q,RiErrorWarningLine:X,RiArrowLeftLine:T,RiSaveLine:J,RiCheckLine:W},setup(){const e=O(),i=Q(),s=U(),a=n(()=>e.params.type),h=n(()=>e.params.id),L=n(()=>e.name),g=n(()=>L.value==="scheduler.edit"),r=x(!1);k(a,()=>_()),k(h,()=>m()),_(),v(),m();async function v(){await s.dispatch("scheduler/fetchAutomations",a.value)}function _(){s.dispatch("scheduler/setCurrentCategory",a.value)}function m(){s.dispatch("scheduler/setCurrentAutomation",h.value)}const y=n(()=>s.getters["scheduler/getCurrentCategory"]),R=n(()=>s.getters["scheduler/getCurrentAutomation"]),c=x(R.value);c.value&&L.value==="scheduler.duplicate"&&(c.value.id=void 0);const b=n(()=>s.getters["main/isLoading"]),u=n(()=>s.getters["scheduler/getError"]);async function C(p){console.log("Submitting values:",p),await s.dispatch("scheduler/saveAutomation",{category:a.value,...p}),u.value||await i.push({name:"scheduler.show",params:{type:a.value}})}async function M(){if(g.value){r.value=!0;try{const p=document.querySelector("form");if(p){const D=new FormData(p),N=Object.fromEntries(D);await s.dispatch("scheduler/saveAutomation",{category:a.value,...c.value,...N}),u.value||(s.dispatch("main/showNotification",{type:"success",message:"Pianificata salvata con successo"}),await v(),m())}}finally{r.value=!1}}}return{type:a,id:h,isEditMode:g,currentCategory:y,currentAutomation:c,onSubmit:C,onSaveAndContinue:M,isLoading:b,isSavingAndContinuing:r,error:u}}}),G={class:"view-container"},H={class:"view-card"},K={class:"card-header p-4 border-b border-gray-200"},Y={class:"flex items-center justify-between"},Z={class:"flex items-center gap-3"},ee={class:"text-xl font-semibold text-gray-900"},te={key:0,class:"text-sm text-gray-500 mt-1"},se={class:"flex items-center space-x-2 text-sm text-gray-500"},oe={class:"text-gray-900"},ae={class:"card-body p-4 !overflow-auto"},ne={key:0,class:"mb-6 p-4 bg-red-50 border border-red-200 rounded-lg flex items-start gap-3"},ie={class:"text-sm text-red-700 mt-1"},re={class:"p-8"},ce={class:"flex items-center justify-between pt-6 border-t border-gray-200"},ue={class:"flex items-center gap-3"};function de(e,i,s,a,h,L){var u;const g=d("RiEditBoxLine"),r=d("RouterLink"),v=d("RiArrowRightSLine"),_=d("RiErrorWarningLine"),m=d("RiArrowLeftLine"),y=F,R=d("RiSaveLine"),c=j,b=B;return w(),A("div",G,[t("div",H,[t("div",K,[t("div",Y,[t("div",Z,[o(g,{class:"w-6 h-6 text-blue-600"}),t("div",null,[t("h1",ee,l(e.isEditMode?"Modifica Pianificata":"Duplica Pianificata"),1),(u=e.currentAutomation)!=null&&u.name?(w(),A("p",te,l(e.currentAutomation.name),1)):S("",!0)])]),t("nav",se,[o(r,{to:{name:"scheduler.show",params:{type:e.type}},class:"hover:text-blue-600 transition-colors"},{default:f(()=>[E(" Pianificate "+l(e.type),1)]),_:1},8,["to"]),o(v,{class:"w-4 h-4"}),t("span",oe,l(e.isEditMode?"Modifica":"Duplica"),1)])])]),t("div",ae,[e.error?(w(),A("div",ne,[o(_,{class:"w-5 h-5 text-red-600 mt-0.5 flex-shrink-0"}),t("div",null,[i[0]||(i[0]=t("h3",{class:"text-sm font-medium text-red-800"},"Errore durante il salvataggio",-1)),t("p",ie,l(e.error.message),1)])])):S("",!0),t("div",re,[o(b,{fields:e.currentCategory,"initial-values":e.currentAutomation,onSubmit:e.onSubmit,class:"space-y-6"},{default:f(()=>[t("div",ce,[o(r,{to:{name:"scheduler.show",params:{type:e.type}},custom:""},{default:f(({navigate:C})=>[o(y,{severity:"secondary",loading:e.isLoading,outlined:"",onClick:C},{default:f(()=>[o(m,{class:"w-4 h-4 mr-2"}),i[1]||(i[1]=E(" Annulla ",-1))]),_:2,__:[1]},1032,["loading","onClick"])]),_:1},8,["to"]),t("div",ue,[o(y,{type:"submit",severity:"primary",outlined:"",loading:e.isLoading},{default:f(()=>[o(R,{class:"w-4 h-4 mr-2"}),E(" "+l(e.isEditMode?"Salva Modifiche":"Crea Pianificata")+" ",1),e.isLoading&&!e.isSavingAndContinuing?(w(),$(c,{key:0,icon:"oval",color:"white",class:"w-4 h-4 ml-2"})):S("",!0)]),_:1},8,["loading"])])])]),_:1},8,["fields","initial-values","onSubmit"])])])])])}const pe=V(z,[["render",de]]);export{pe as default}; +import{_ as B}from"./DynamicForm-DWX-KwGX.js";import{_ as V,d as P,r as d,f as A,o as w,l as t,i as o,L as S,m as l,h as f,k as E,E as F,c as $,M as j,N as W,U as J,X as T,Q as X,R as q,V as I,J as O,T as Q,u as U,a as n,b as x,w as k}from"./index-CjLz75tu.js";const z=P({name:"SchedulerEdit",components:{DynamicForm:B,RiEditBoxLine:I,RiArrowRightSLine:q,RiErrorWarningLine:X,RiArrowLeftLine:T,RiSaveLine:J,RiCheckLine:W},setup(){const e=O(),i=Q(),s=U(),a=n(()=>e.params.type),h=n(()=>e.params.id),L=n(()=>e.name),g=n(()=>L.value==="scheduler.edit"),r=x(!1);k(a,()=>_()),k(h,()=>m()),_(),v(),m();async function v(){await s.dispatch("scheduler/fetchAutomations",a.value)}function _(){s.dispatch("scheduler/setCurrentCategory",a.value)}function m(){s.dispatch("scheduler/setCurrentAutomation",h.value)}const y=n(()=>s.getters["scheduler/getCurrentCategory"]),R=n(()=>s.getters["scheduler/getCurrentAutomation"]),c=x(R.value);c.value&&L.value==="scheduler.duplicate"&&(c.value.id=void 0);const b=n(()=>s.getters["main/isLoading"]),u=n(()=>s.getters["scheduler/getError"]);async function C(p){console.log("Submitting values:",p),await s.dispatch("scheduler/saveAutomation",{category:a.value,...p}),u.value||await i.push({name:"scheduler.show",params:{type:a.value}})}async function M(){if(g.value){r.value=!0;try{const p=document.querySelector("form");if(p){const D=new FormData(p),N=Object.fromEntries(D);await s.dispatch("scheduler/saveAutomation",{category:a.value,...c.value,...N}),u.value||(s.dispatch("main/showNotification",{type:"success",message:"Pianificata salvata con successo"}),await v(),m())}}finally{r.value=!1}}}return{type:a,id:h,isEditMode:g,currentCategory:y,currentAutomation:c,onSubmit:C,onSaveAndContinue:M,isLoading:b,isSavingAndContinuing:r,error:u}}}),G={class:"view-container"},H={class:"view-card"},K={class:"card-header p-4 border-b border-gray-200"},Y={class:"flex items-center justify-between"},Z={class:"flex items-center gap-3"},ee={class:"text-xl font-semibold text-gray-900"},te={key:0,class:"text-sm text-gray-500 mt-1"},se={class:"flex items-center space-x-2 text-sm text-gray-500"},oe={class:"text-gray-900"},ae={class:"card-body p-4 !overflow-auto"},ne={key:0,class:"mb-6 p-4 bg-red-50 border border-red-200 rounded-lg flex items-start gap-3"},ie={class:"text-sm text-red-700 mt-1"},re={class:"p-8"},ce={class:"flex items-center justify-between pt-6 border-t border-gray-200"},ue={class:"flex items-center gap-3"};function de(e,i,s,a,h,L){var u;const g=d("RiEditBoxLine"),r=d("RouterLink"),v=d("RiArrowRightSLine"),_=d("RiErrorWarningLine"),m=d("RiArrowLeftLine"),y=F,R=d("RiSaveLine"),c=j,b=B;return w(),A("div",G,[t("div",H,[t("div",K,[t("div",Y,[t("div",Z,[o(g,{class:"w-6 h-6 text-blue-600"}),t("div",null,[t("h1",ee,l(e.isEditMode?"Modifica Pianificata":"Duplica Pianificata"),1),(u=e.currentAutomation)!=null&&u.name?(w(),A("p",te,l(e.currentAutomation.name),1)):S("",!0)])]),t("nav",se,[o(r,{to:{name:"scheduler.show",params:{type:e.type}},class:"hover:text-blue-600 transition-colors"},{default:f(()=>[E(" Pianificate "+l(e.type),1)]),_:1},8,["to"]),o(v,{class:"w-4 h-4"}),t("span",oe,l(e.isEditMode?"Modifica":"Duplica"),1)])])]),t("div",ae,[e.error?(w(),A("div",ne,[o(_,{class:"w-5 h-5 text-red-600 mt-0.5 flex-shrink-0"}),t("div",null,[i[0]||(i[0]=t("h3",{class:"text-sm font-medium text-red-800"},"Errore durante il salvataggio",-1)),t("p",ie,l(e.error.message),1)])])):S("",!0),t("div",re,[o(b,{fields:e.currentCategory,"initial-values":e.currentAutomation,onSubmit:e.onSubmit,class:"space-y-6"},{default:f(()=>[t("div",ce,[o(r,{to:{name:"scheduler.show",params:{type:e.type}},custom:""},{default:f(({navigate:C})=>[o(y,{severity:"secondary",loading:e.isLoading,outlined:"",onClick:C},{default:f(()=>[o(m,{class:"w-4 h-4 mr-2"}),i[1]||(i[1]=E(" Annulla ",-1))]),_:2,__:[1]},1032,["loading","onClick"])]),_:1},8,["to"]),t("div",ue,[o(y,{type:"submit",severity:"primary",outlined:"",loading:e.isLoading},{default:f(()=>[o(R,{class:"w-4 h-4 mr-2"}),E(" "+l(e.isEditMode?"Salva Modifiche":"Crea Pianificata")+" ",1),e.isLoading&&!e.isSavingAndContinuing?(w(),$(c,{key:0,icon:"oval",color:"white",class:"w-4 h-4 ml-2"})):S("",!0)]),_:1},8,["loading"])])])]),_:1},8,["fields","initial-values","onSubmit"])])])])])}const pe=V(z,[["render",de]]);export{pe as default}; diff --git a/ems-engine/src/main/webapp/assets/Index-MhLTwvCo.js b/ems-engine/src/main/webapp/assets/Index-B6nSF9i_.js similarity index 90% rename from ems-engine/src/main/webapp/assets/Index-MhLTwvCo.js rename to ems-engine/src/main/webapp/assets/Index-B6nSF9i_.js index 3c5fb7f8a3..76d2bed3bf 100644 --- a/ems-engine/src/main/webapp/assets/Index-MhLTwvCo.js +++ b/ems-engine/src/main/webapp/assets/Index-B6nSF9i_.js @@ -1 +1 @@ -import{_ as s,d as n,r,c as i,o as u,u as d,a as p,w as l}from"./index-BNu-F4v_.js";const h=n({name:"SchedulerIndex",setup(){const e=d(),o=p(()=>e.getters["scheduler/getAutomationCategories"]);e.dispatch("scheduler/initStore"),l(()=>o.value,()=>{e.dispatch("main/clearMenuButton",{button:"Pianificate",child:!0}),Object.keys(o.value).forEach(t=>{e.dispatch("main/addMenuButton",{child:"Pianificate",button:{title:t,icon:"ActivityIcon",routeName:"scheduler.show",params:{type:t},child:[{routeName:"scheduler.create",params:{type:t}}]}})})})}});function m(e,o,a,t,_,f){const c=r("router-view");return u(),i(c)}const w=s(h,[["render",m]]);export{w as default}; +import{_ as s,d as n,r,c as i,o as u,u as d,a as p,w as l}from"./index-CjLz75tu.js";const h=n({name:"SchedulerIndex",setup(){const e=d(),o=p(()=>e.getters["scheduler/getAutomationCategories"]);e.dispatch("scheduler/initStore"),l(()=>o.value,()=>{e.dispatch("main/clearMenuButton",{button:"Pianificate",child:!0}),Object.keys(o.value).forEach(t=>{e.dispatch("main/addMenuButton",{child:"Pianificate",button:{title:t,icon:"ActivityIcon",routeName:"scheduler.show",params:{type:t},child:[{routeName:"scheduler.create",params:{type:t}}]}})})})}});function m(e,o,a,t,_,f){const c=r("router-view");return u(),i(c)}const w=s(h,[["render",m]]);export{w as default}; diff --git a/ems-engine/src/main/webapp/assets/Logs-DBkArgPL.js b/ems-engine/src/main/webapp/assets/Logs-BXHYXSnL.js similarity index 99% rename from ems-engine/src/main/webapp/assets/Logs-DBkArgPL.js rename to ems-engine/src/main/webapp/assets/Logs-BXHYXSnL.js index 80f5a6e675..6c64fa049c 100644 --- a/ems-engine/src/main/webapp/assets/Logs-DBkArgPL.js +++ b/ems-engine/src/main/webapp/assets/Logs-BXHYXSnL.js @@ -1,4 +1,4 @@ -import{d as Ve,e as Ie,O as Ee,b as Be,c as Pe,s as Le,f as Oe,a as Ye}from"./inputicon.esm-E72BkL95.js";import{a6 as fe,f,o as h,a5 as d,l as g,a7 as Fe,a8 as He,a9 as Ae,E as Me,aa as Ke,ab as re,ac as y,ad as Ne,ae as $,r as ve,af as Re,L as D,c as L,p as I,i as C,h as E,n as Y,v as A,Z as Ue,F as R,j as G,C as O,G as ye,m as w,k as W,ag as ae,ah as oe,Y as M,u as ze,ai as je,a as se,b as be,w as We,aj as J,ak as qe,al as Ze,A as Ge,H as Je,am as ge,P as Qe,an as Xe,q as Q,ao as _,ap as xe}from"./index-BNu-F4v_.js";var Se={name:"CalendarIcon",extends:fe},$e=g("path",{d:"M10.7838 1.51351H9.83783V0.567568C9.83783 0.417039 9.77804 0.272676 9.6716 0.166237C9.56516 0.0597971 9.42079 0 9.27027 0C9.11974 0 8.97538 0.0597971 8.86894 0.166237C8.7625 0.272676 8.7027 0.417039 8.7027 0.567568V1.51351H5.29729V0.567568C5.29729 0.417039 5.2375 0.272676 5.13106 0.166237C5.02462 0.0597971 4.88025 0 4.72973 0C4.5792 0 4.43484 0.0597971 4.3284 0.166237C4.22196 0.272676 4.16216 0.417039 4.16216 0.567568V1.51351H3.21621C2.66428 1.51351 2.13494 1.73277 1.74467 2.12305C1.35439 2.51333 1.13513 3.04266 1.13513 3.59459V11.9189C1.13513 12.4709 1.35439 13.0002 1.74467 13.3905C2.13494 13.7807 2.66428 14 3.21621 14H10.7838C11.3357 14 11.865 13.7807 12.2553 13.3905C12.6456 13.0002 12.8649 12.4709 12.8649 11.9189V3.59459C12.8649 3.04266 12.6456 2.51333 12.2553 2.12305C11.865 1.73277 11.3357 1.51351 10.7838 1.51351ZM3.21621 2.64865H4.16216V3.59459C4.16216 3.74512 4.22196 3.88949 4.3284 3.99593C4.43484 4.10237 4.5792 4.16216 4.72973 4.16216C4.88025 4.16216 5.02462 4.10237 5.13106 3.99593C5.2375 3.88949 5.29729 3.74512 5.29729 3.59459V2.64865H8.7027V3.59459C8.7027 3.74512 8.7625 3.88949 8.86894 3.99593C8.97538 4.10237 9.11974 4.16216 9.27027 4.16216C9.42079 4.16216 9.56516 4.10237 9.6716 3.99593C9.77804 3.88949 9.83783 3.74512 9.83783 3.59459V2.64865H10.7838C11.0347 2.64865 11.2753 2.74831 11.4527 2.92571C11.6301 3.10311 11.7297 3.34371 11.7297 3.59459V5.67568H2.27027V3.59459C2.27027 3.34371 2.36993 3.10311 2.54733 2.92571C2.72473 2.74831 2.96533 2.64865 3.21621 2.64865ZM10.7838 12.8649H3.21621C2.96533 12.8649 2.72473 12.7652 2.54733 12.5878C2.36993 12.4104 2.27027 12.1698 2.27027 11.9189V6.81081H11.7297V11.9189C11.7297 12.1698 11.6301 12.4104 11.4527 12.5878C11.2753 12.7652 11.0347 12.8649 10.7838 12.8649Z",fill:"currentColor"},null,-1),_e=[$e];function et(t,e,n,r,a,i){return h(),f("svg",d({width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},t.pti()),_e,16)}Se.render=et;var De={name:"ChevronLeftIcon",extends:fe},tt=g("path",{d:"M9.61296 13C9.50997 13.0005 9.40792 12.9804 9.3128 12.9409C9.21767 12.9014 9.13139 12.8433 9.05902 12.7701L3.83313 7.54416C3.68634 7.39718 3.60388 7.19795 3.60388 6.99022C3.60388 6.78249 3.68634 6.58325 3.83313 6.43628L9.05902 1.21039C9.20762 1.07192 9.40416 0.996539 9.60724 1.00012C9.81032 1.00371 10.0041 1.08597 10.1477 1.22959C10.2913 1.37322 10.3736 1.56698 10.3772 1.77005C10.3808 1.97313 10.3054 2.16968 10.1669 2.31827L5.49496 6.99022L10.1669 11.6622C10.3137 11.8091 10.3962 12.0084 10.3962 12.2161C10.3962 12.4238 10.3137 12.6231 10.1669 12.7701C10.0945 12.8433 10.0083 12.9014 9.91313 12.9409C9.81801 12.9804 9.71596 13.0005 9.61296 13Z",fill:"currentColor"},null,-1),nt=[tt];function it(t,e,n,r,a,i){return h(),f("svg",d({width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},t.pti()),nt,16)}De.render=it;var Ce={name:"ChevronUpIcon",extends:fe},rt=g("path",{d:"M12.2097 10.4113C12.1057 10.4118 12.0027 10.3915 11.9067 10.3516C11.8107 10.3118 11.7237 10.2532 11.6506 10.1792L6.93602 5.46461L2.22139 10.1476C2.07272 10.244 1.89599 10.2877 1.71953 10.2717C1.54307 10.2556 1.3771 10.1808 1.24822 10.0593C1.11933 9.93766 1.035 9.77633 1.00874 9.6011C0.982477 9.42587 1.0158 9.2469 1.10338 9.09287L6.37701 3.81923C6.52533 3.6711 6.72639 3.58789 6.93602 3.58789C7.14565 3.58789 7.3467 3.6711 7.49502 3.81923L12.7687 9.09287C12.9168 9.24119 13 9.44225 13 9.65187C13 9.8615 12.9168 10.0626 12.7687 10.2109C12.616 10.3487 12.4151 10.4207 12.2097 10.4113Z",fill:"currentColor"},null,-1),at=[rt];function ot(t,e,n,r,a,i){return h(),f("svg",d({width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},t.pti()),at,16)}Ce.render=ot;var st={root:function(e){var n=e.props;return{position:n.appendTo==="self"?"relative":void 0}}},lt={root:function(e){var n=e.props,r=e.state;return["p-calendar p-component p-inputwrapper",{"p-calendar-w-btn":n.showIcon&&n.iconDisplay==="button","p-icon-field p-icon-field-right":n.showIcon&&n.iconDisplay==="input","p-calendar-timeonly":n.timeOnly,"p-calendar-disabled":n.disabled,"p-invalid":n.invalid,"p-inputwrapper-filled":n.modelValue,"p-inputwrapper-focus":r.focused,"p-focus":r.focused||r.overlayVisible}]},input:function(e){var n=e.props,r=e.instance;return["p-inputtext p-component",{"p-variant-filled":n.variant?n.variant==="filled":r.$primevue.config.inputStyle==="filled"}]},dropdownButton:"p-datepicker-trigger",inputIcon:"p-datepicker-trigger-icon p-input-icon",panel:function(e){var n=e.instance,r=e.props,a=e.state;return["p-datepicker p-component",{"p-datepicker-mobile":n.queryMatches,"p-datepicker-inline":r.inline,"p-disabled":r.disabled,"p-datepicker-timeonly":r.timeOnly,"p-datepicker-multiple-month":r.numberOfMonths>1,"p-datepicker-monthpicker":a.currentView==="month","p-datepicker-yearpicker":a.currentView==="year","p-datepicker-touch-ui":r.touchUI,"p-ripple-disabled":n.$primevue.config.ripple===!1}]},groupContainer:"p-datepicker-group-container",group:"p-datepicker-group",header:"p-datepicker-header",previousButton:"p-datepicker-prev p-link",previousIcon:"p-datepicker-prev-icon",title:"p-datepicker-title",monthTitle:"p-datepicker-month p-link",yearTitle:"p-datepicker-year p-link",decadeTitle:"p-datepicker-decade",nextButton:"p-datepicker-next p-link",nextIcon:"p-datepicker-next-icon",container:"p-datepicker-calendar-container",table:"p-datepicker-calendar",weekHeader:"p-datepicker-weekheader p-disabled",weekNumber:"p-datepicker-weeknumber",weekLabelContainer:"p-disabled",day:function(e){var n=e.date;return[{"p-datepicker-other-month":n.otherMonth,"p-datepicker-today":n.today}]},dayLabel:function(e){var n=e.instance,r=e.date;return[{"p-highlight":n.isSelected(r)&&r.selectable,"p-disabled":!r.selectable}]},monthPicker:"p-monthpicker",month:function(e){var n=e.instance,r=e.month,a=e.index;return["p-monthpicker-month",{"p-highlight":n.isMonthSelected(a),"p-disabled":!r.selectable}]},yearPicker:"p-yearpicker",year:function(e){var n=e.instance,r=e.year;return["p-yearpicker-year",{"p-highlight":n.isYearSelected(r.value),"p-disabled":!r.selectable}]},timePicker:"p-timepicker",hourPicker:"p-hour-picker",incrementButton:"p-link",decrementButton:"p-link",separatorContainer:"p-separator",minutePicker:"p-minute-picker",secondPicker:"p-second-picker",ampmPicker:"p-ampm-picker",buttonbar:"p-datepicker-buttonbar",todayButton:"p-button-text",clearButton:"p-button-text"},ut=Fe.extend({name:"calendar",classes:lt,inlineStyles:st}),ct={name:"BaseCalendar",extends:Ke,props:{modelValue:null,selectionMode:{type:String,default:"single"},dateFormat:{type:String,default:null},inline:{type:Boolean,default:!1},showOtherMonths:{type:Boolean,default:!0},selectOtherMonths:{type:Boolean,default:!1},showIcon:{type:Boolean,default:!1},iconDisplay:{type:String,default:"button"},icon:{type:String,default:void 0},previousIcon:{type:String,default:void 0},nextIcon:{type:String,default:void 0},incrementIcon:{type:String,default:void 0},decrementIcon:{type:String,default:void 0},numberOfMonths:{type:Number,default:1},responsiveOptions:Array,breakpoint:{type:String,default:"769px"},view:{type:String,default:"date"},touchUI:{type:Boolean,default:!1},monthNavigator:{type:Boolean,default:!1},yearNavigator:{type:Boolean,default:!1},yearRange:{type:String,default:null},minDate:{type:Date,value:null},maxDate:{type:Date,value:null},disabledDates:{type:Array,value:null},disabledDays:{type:Array,value:null},maxDateCount:{type:Number,value:null},showOnFocus:{type:Boolean,default:!0},autoZIndex:{type:Boolean,default:!0},baseZIndex:{type:Number,default:0},showButtonBar:{type:Boolean,default:!1},shortYearCutoff:{type:String,default:"+10"},showTime:{type:Boolean,default:!1},timeOnly:{type:Boolean,default:!1},hourFormat:{type:String,default:"24"},stepHour:{type:Number,default:1},stepMinute:{type:Number,default:1},stepSecond:{type:Number,default:1},showSeconds:{type:Boolean,default:!1},hideOnDateTimeSelect:{type:Boolean,default:!1},hideOnRangeSelection:{type:Boolean,default:!1},timeSeparator:{type:String,default:":"},showWeek:{type:Boolean,default:!1},manualInput:{type:Boolean,default:!0},appendTo:{type:[String,Object],default:"body"},variant:{type:String,default:null},invalid:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},readonly:{type:Boolean,default:!1},placeholder:{type:String,default:null},id:{type:String,default:null},inputId:{type:String,default:null},inputClass:{type:[String,Object],default:null},inputStyle:{type:Object,default:null},inputProps:{type:null,default:null},panelClass:{type:[String,Object],default:null},panelStyle:{type:Object,default:null},panelProps:{type:null,default:null},name:{type:String,default:null},ariaLabelledby:{type:String,default:null},ariaLabel:{type:String,default:null}},style:ut,provide:function(){return{$parentInstance:this}}};function de(t){"@babel/helpers - typeof";return de=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},de(t)}function le(t){return ft(t)||ht(t)||pe(t)||dt()}function dt(){throw new TypeError(`Invalid attempt to spread non-iterable instance. +import{d as Ve,e as Ie,O as Ee,b as Be,c as Pe,s as Le,f as Oe,a as Ye}from"./inputicon.esm-C6x9HzWS.js";import{a6 as fe,f,o as h,a5 as d,l as g,a7 as Fe,a8 as He,a9 as Ae,E as Me,aa as Ke,ab as re,ac as y,ad as Ne,ae as $,r as ve,af as Re,L as D,c as L,p as I,i as C,h as E,n as Y,v as A,Z as Ue,F as R,j as G,C as O,G as ye,m as w,k as W,ag as ae,ah as oe,Y as M,u as ze,ai as je,a as se,b as be,w as We,aj as J,ak as qe,al as Ze,A as Ge,H as Je,am as ge,P as Qe,an as Xe,q as Q,ao as _,ap as xe}from"./index-CjLz75tu.js";var Se={name:"CalendarIcon",extends:fe},$e=g("path",{d:"M10.7838 1.51351H9.83783V0.567568C9.83783 0.417039 9.77804 0.272676 9.6716 0.166237C9.56516 0.0597971 9.42079 0 9.27027 0C9.11974 0 8.97538 0.0597971 8.86894 0.166237C8.7625 0.272676 8.7027 0.417039 8.7027 0.567568V1.51351H5.29729V0.567568C5.29729 0.417039 5.2375 0.272676 5.13106 0.166237C5.02462 0.0597971 4.88025 0 4.72973 0C4.5792 0 4.43484 0.0597971 4.3284 0.166237C4.22196 0.272676 4.16216 0.417039 4.16216 0.567568V1.51351H3.21621C2.66428 1.51351 2.13494 1.73277 1.74467 2.12305C1.35439 2.51333 1.13513 3.04266 1.13513 3.59459V11.9189C1.13513 12.4709 1.35439 13.0002 1.74467 13.3905C2.13494 13.7807 2.66428 14 3.21621 14H10.7838C11.3357 14 11.865 13.7807 12.2553 13.3905C12.6456 13.0002 12.8649 12.4709 12.8649 11.9189V3.59459C12.8649 3.04266 12.6456 2.51333 12.2553 2.12305C11.865 1.73277 11.3357 1.51351 10.7838 1.51351ZM3.21621 2.64865H4.16216V3.59459C4.16216 3.74512 4.22196 3.88949 4.3284 3.99593C4.43484 4.10237 4.5792 4.16216 4.72973 4.16216C4.88025 4.16216 5.02462 4.10237 5.13106 3.99593C5.2375 3.88949 5.29729 3.74512 5.29729 3.59459V2.64865H8.7027V3.59459C8.7027 3.74512 8.7625 3.88949 8.86894 3.99593C8.97538 4.10237 9.11974 4.16216 9.27027 4.16216C9.42079 4.16216 9.56516 4.10237 9.6716 3.99593C9.77804 3.88949 9.83783 3.74512 9.83783 3.59459V2.64865H10.7838C11.0347 2.64865 11.2753 2.74831 11.4527 2.92571C11.6301 3.10311 11.7297 3.34371 11.7297 3.59459V5.67568H2.27027V3.59459C2.27027 3.34371 2.36993 3.10311 2.54733 2.92571C2.72473 2.74831 2.96533 2.64865 3.21621 2.64865ZM10.7838 12.8649H3.21621C2.96533 12.8649 2.72473 12.7652 2.54733 12.5878C2.36993 12.4104 2.27027 12.1698 2.27027 11.9189V6.81081H11.7297V11.9189C11.7297 12.1698 11.6301 12.4104 11.4527 12.5878C11.2753 12.7652 11.0347 12.8649 10.7838 12.8649Z",fill:"currentColor"},null,-1),_e=[$e];function et(t,e,n,r,a,i){return h(),f("svg",d({width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},t.pti()),_e,16)}Se.render=et;var De={name:"ChevronLeftIcon",extends:fe},tt=g("path",{d:"M9.61296 13C9.50997 13.0005 9.40792 12.9804 9.3128 12.9409C9.21767 12.9014 9.13139 12.8433 9.05902 12.7701L3.83313 7.54416C3.68634 7.39718 3.60388 7.19795 3.60388 6.99022C3.60388 6.78249 3.68634 6.58325 3.83313 6.43628L9.05902 1.21039C9.20762 1.07192 9.40416 0.996539 9.60724 1.00012C9.81032 1.00371 10.0041 1.08597 10.1477 1.22959C10.2913 1.37322 10.3736 1.56698 10.3772 1.77005C10.3808 1.97313 10.3054 2.16968 10.1669 2.31827L5.49496 6.99022L10.1669 11.6622C10.3137 11.8091 10.3962 12.0084 10.3962 12.2161C10.3962 12.4238 10.3137 12.6231 10.1669 12.7701C10.0945 12.8433 10.0083 12.9014 9.91313 12.9409C9.81801 12.9804 9.71596 13.0005 9.61296 13Z",fill:"currentColor"},null,-1),nt=[tt];function it(t,e,n,r,a,i){return h(),f("svg",d({width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},t.pti()),nt,16)}De.render=it;var Ce={name:"ChevronUpIcon",extends:fe},rt=g("path",{d:"M12.2097 10.4113C12.1057 10.4118 12.0027 10.3915 11.9067 10.3516C11.8107 10.3118 11.7237 10.2532 11.6506 10.1792L6.93602 5.46461L2.22139 10.1476C2.07272 10.244 1.89599 10.2877 1.71953 10.2717C1.54307 10.2556 1.3771 10.1808 1.24822 10.0593C1.11933 9.93766 1.035 9.77633 1.00874 9.6011C0.982477 9.42587 1.0158 9.2469 1.10338 9.09287L6.37701 3.81923C6.52533 3.6711 6.72639 3.58789 6.93602 3.58789C7.14565 3.58789 7.3467 3.6711 7.49502 3.81923L12.7687 9.09287C12.9168 9.24119 13 9.44225 13 9.65187C13 9.8615 12.9168 10.0626 12.7687 10.2109C12.616 10.3487 12.4151 10.4207 12.2097 10.4113Z",fill:"currentColor"},null,-1),at=[rt];function ot(t,e,n,r,a,i){return h(),f("svg",d({width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},t.pti()),at,16)}Ce.render=ot;var st={root:function(e){var n=e.props;return{position:n.appendTo==="self"?"relative":void 0}}},lt={root:function(e){var n=e.props,r=e.state;return["p-calendar p-component p-inputwrapper",{"p-calendar-w-btn":n.showIcon&&n.iconDisplay==="button","p-icon-field p-icon-field-right":n.showIcon&&n.iconDisplay==="input","p-calendar-timeonly":n.timeOnly,"p-calendar-disabled":n.disabled,"p-invalid":n.invalid,"p-inputwrapper-filled":n.modelValue,"p-inputwrapper-focus":r.focused,"p-focus":r.focused||r.overlayVisible}]},input:function(e){var n=e.props,r=e.instance;return["p-inputtext p-component",{"p-variant-filled":n.variant?n.variant==="filled":r.$primevue.config.inputStyle==="filled"}]},dropdownButton:"p-datepicker-trigger",inputIcon:"p-datepicker-trigger-icon p-input-icon",panel:function(e){var n=e.instance,r=e.props,a=e.state;return["p-datepicker p-component",{"p-datepicker-mobile":n.queryMatches,"p-datepicker-inline":r.inline,"p-disabled":r.disabled,"p-datepicker-timeonly":r.timeOnly,"p-datepicker-multiple-month":r.numberOfMonths>1,"p-datepicker-monthpicker":a.currentView==="month","p-datepicker-yearpicker":a.currentView==="year","p-datepicker-touch-ui":r.touchUI,"p-ripple-disabled":n.$primevue.config.ripple===!1}]},groupContainer:"p-datepicker-group-container",group:"p-datepicker-group",header:"p-datepicker-header",previousButton:"p-datepicker-prev p-link",previousIcon:"p-datepicker-prev-icon",title:"p-datepicker-title",monthTitle:"p-datepicker-month p-link",yearTitle:"p-datepicker-year p-link",decadeTitle:"p-datepicker-decade",nextButton:"p-datepicker-next p-link",nextIcon:"p-datepicker-next-icon",container:"p-datepicker-calendar-container",table:"p-datepicker-calendar",weekHeader:"p-datepicker-weekheader p-disabled",weekNumber:"p-datepicker-weeknumber",weekLabelContainer:"p-disabled",day:function(e){var n=e.date;return[{"p-datepicker-other-month":n.otherMonth,"p-datepicker-today":n.today}]},dayLabel:function(e){var n=e.instance,r=e.date;return[{"p-highlight":n.isSelected(r)&&r.selectable,"p-disabled":!r.selectable}]},monthPicker:"p-monthpicker",month:function(e){var n=e.instance,r=e.month,a=e.index;return["p-monthpicker-month",{"p-highlight":n.isMonthSelected(a),"p-disabled":!r.selectable}]},yearPicker:"p-yearpicker",year:function(e){var n=e.instance,r=e.year;return["p-yearpicker-year",{"p-highlight":n.isYearSelected(r.value),"p-disabled":!r.selectable}]},timePicker:"p-timepicker",hourPicker:"p-hour-picker",incrementButton:"p-link",decrementButton:"p-link",separatorContainer:"p-separator",minutePicker:"p-minute-picker",secondPicker:"p-second-picker",ampmPicker:"p-ampm-picker",buttonbar:"p-datepicker-buttonbar",todayButton:"p-button-text",clearButton:"p-button-text"},ut=Fe.extend({name:"calendar",classes:lt,inlineStyles:st}),ct={name:"BaseCalendar",extends:Ke,props:{modelValue:null,selectionMode:{type:String,default:"single"},dateFormat:{type:String,default:null},inline:{type:Boolean,default:!1},showOtherMonths:{type:Boolean,default:!0},selectOtherMonths:{type:Boolean,default:!1},showIcon:{type:Boolean,default:!1},iconDisplay:{type:String,default:"button"},icon:{type:String,default:void 0},previousIcon:{type:String,default:void 0},nextIcon:{type:String,default:void 0},incrementIcon:{type:String,default:void 0},decrementIcon:{type:String,default:void 0},numberOfMonths:{type:Number,default:1},responsiveOptions:Array,breakpoint:{type:String,default:"769px"},view:{type:String,default:"date"},touchUI:{type:Boolean,default:!1},monthNavigator:{type:Boolean,default:!1},yearNavigator:{type:Boolean,default:!1},yearRange:{type:String,default:null},minDate:{type:Date,value:null},maxDate:{type:Date,value:null},disabledDates:{type:Array,value:null},disabledDays:{type:Array,value:null},maxDateCount:{type:Number,value:null},showOnFocus:{type:Boolean,default:!0},autoZIndex:{type:Boolean,default:!0},baseZIndex:{type:Number,default:0},showButtonBar:{type:Boolean,default:!1},shortYearCutoff:{type:String,default:"+10"},showTime:{type:Boolean,default:!1},timeOnly:{type:Boolean,default:!1},hourFormat:{type:String,default:"24"},stepHour:{type:Number,default:1},stepMinute:{type:Number,default:1},stepSecond:{type:Number,default:1},showSeconds:{type:Boolean,default:!1},hideOnDateTimeSelect:{type:Boolean,default:!1},hideOnRangeSelection:{type:Boolean,default:!1},timeSeparator:{type:String,default:":"},showWeek:{type:Boolean,default:!1},manualInput:{type:Boolean,default:!0},appendTo:{type:[String,Object],default:"body"},variant:{type:String,default:null},invalid:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},readonly:{type:Boolean,default:!1},placeholder:{type:String,default:null},id:{type:String,default:null},inputId:{type:String,default:null},inputClass:{type:[String,Object],default:null},inputStyle:{type:Object,default:null},inputProps:{type:null,default:null},panelClass:{type:[String,Object],default:null},panelStyle:{type:Object,default:null},panelProps:{type:null,default:null},name:{type:String,default:null},ariaLabelledby:{type:String,default:null},ariaLabel:{type:String,default:null}},style:ut,provide:function(){return{$parentInstance:this}}};function de(t){"@babel/helpers - typeof";return de=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},de(t)}function le(t){return ft(t)||ht(t)||pe(t)||dt()}function dt(){throw new TypeError(`Invalid attempt to spread non-iterable instance. In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function ht(t){if(typeof Symbol<"u"&&t[Symbol.iterator]!=null||t["@@iterator"]!=null)return Array.from(t)}function ft(t){if(Array.isArray(t))return he(t)}function pt(t,e){return yt(t)||vt(t,e)||pe(t,e)||mt()}function mt(){throw new TypeError(`Invalid attempt to destructure non-iterable instance. In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function vt(t,e){var n=t==null?null:typeof Symbol<"u"&&t[Symbol.iterator]||t["@@iterator"];if(n!=null){var r,a,i,s,u=[],l=!0,o=!1;try{if(i=(n=n.call(t)).next,e!==0)for(;!(l=(r=i.call(n)).done)&&(u.push(r.value),u.length!==e);l=!0);}catch(p){o=!0,a=p}finally{try{if(!l&&n.return!=null&&(s=n.return(),Object(s)!==s))return}finally{if(o)throw a}}return u}}function yt(t){if(Array.isArray(t))return t}function ue(t,e){var n=typeof Symbol<"u"&&t[Symbol.iterator]||t["@@iterator"];if(!n){if(Array.isArray(t)||(n=pe(t))||e){n&&(t=n);var r=0,a=function(){};return{s:a,n:function(){return r>=t.length?{done:!0}:{done:!1,value:t[r++]}},e:function(o){throw o},f:a}}throw new TypeError(`Invalid attempt to iterate non-iterable instance. In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}var i=!0,s=!1,u;return{s:function(){n=n.call(t)},n:function(){var o=n.next();return i=o.done,o},e:function(o){s=!0,u=o},f:function(){try{!i&&n.return!=null&&n.return()}finally{if(s)throw u}}}}function pe(t,e){if(t){if(typeof t=="string")return he(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);if(n==="Object"&&t.constructor&&(n=t.constructor.name),n==="Map"||n==="Set")return Array.from(t);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return he(t,e)}}function he(t,e){(e==null||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);n=b&&p<=S}else return s===this.currentYear&&l===e}else return this.modelValue.getMonth()===e&&this.modelValue.getFullYear()===this.currentYear},isYearSelected:function(e){if(!this.isComparable())return!1;if(this.isMultipleSelection())return this.modelValue.some(function(a){return a.getFullYear()===e});if(this.isRangeSelection()){var n=this.modelValue[0]?this.modelValue[0].getFullYear():null,r=this.modelValue[1]?this.modelValue[1].getFullYear():null;return n===e||r===e||ne}else return this.modelValue.getFullYear()===e},isDateEquals:function(e,n){return e?e.getDate()===n.day&&e.getMonth()===n.month&&e.getFullYear()===n.year:!1},isDateBetween:function(e,n,r){var a=!1;if(e&&n){var i=new Date(r.year,r.month,r.day);return e.getTime()<=i.getTime()&&n.getTime()>=i.getTime()}return a},getFirstDayOfMonthIndex:function(e,n){var r=new Date;r.setDate(1),r.setMonth(e),r.setFullYear(n);var a=r.getDay()+this.sundayIndex;return a>=7?a-7:a},getDaysCountInMonth:function(e,n){return 32-this.daylightSavingAdjust(new Date(n,e,32)).getDate()},getDaysCountInPrevMonth:function(e,n){var r=this.getPreviousMonthAndYear(e,n);return this.getDaysCountInMonth(r.month,r.year)},getPreviousMonthAndYear:function(e,n){var r,a;return e===0?(r=11,a=n-1):(r=e-1,a=n),{month:r,year:a}},getNextMonthAndYear:function(e,n){var r,a;return e===11?(r=0,a=n+1):(r=e+1,a=n),{month:r,year:a}},daylightSavingAdjust:function(e){return e?(e.setHours(e.getHours()>12?e.getHours()+2:0),e):null},isToday:function(e,n,r,a){return e.getDate()===n&&e.getMonth()===r&&e.getFullYear()===a},isSelectable:function(e,n,r,a){var i=!0,s=!0,u=!0,l=!0;return a&&!this.selectOtherMonths?!1:(this.minDate&&(this.minDate.getFullYear()>r||this.minDate.getFullYear()===r&&(this.minDate.getMonth()>n||this.minDate.getMonth()===n&&this.minDate.getDate()>e))&&(i=!1),this.maxDate&&(this.maxDate.getFullYear()11,n>=12?n=n==12?12:n-12:n=n==0?12:n),this.currentHour=Math.floor(n/this.stepHour)*this.stepHour,this.currentMinute=Math.floor(e.getMinutes()/this.stepMinute)*this.stepMinute,this.currentSecond=Math.floor(e.getSeconds()/this.stepSecond)*this.stepSecond},bindOutsideClickListener:function(){var e=this;this.outsideClickListener||(this.outsideClickListener=function(n){e.overlayVisible&&e.isOutsideClicked(n)&&(e.overlayVisible=!1)},document.addEventListener("mousedown",this.outsideClickListener))},unbindOutsideClickListener:function(){this.outsideClickListener&&(document.removeEventListener("mousedown",this.outsideClickListener),this.outsideClickListener=null)},bindScrollListener:function(){var e=this;this.scrollHandler||(this.scrollHandler=new Ne(this.$refs.container,function(){e.overlayVisible&&(e.overlayVisible=!1)})),this.scrollHandler.bindScrollListener()},unbindScrollListener:function(){this.scrollHandler&&this.scrollHandler.unbindScrollListener()},bindResizeListener:function(){var e=this;this.resizeListener||(this.resizeListener=function(){e.overlayVisible&&!y.isTouchDevice()&&(e.overlayVisible=!1)},window.addEventListener("resize",this.resizeListener))},unbindResizeListener:function(){this.resizeListener&&(window.removeEventListener("resize",this.resizeListener),this.resizeListener=null)},bindMatchMediaListener:function(){var e=this;if(!this.matchMediaListener){var n=matchMedia("(max-width: ".concat(this.breakpoint,")"));this.query=n,this.queryMatches=n.matches,this.matchMediaListener=function(){e.queryMatches=n.matches,e.mobileActive=!1},this.query.addEventListener("change",this.matchMediaListener)}},unbindMatchMediaListener:function(){this.matchMediaListener&&(this.query.removeEventListener("change",this.matchMediaListener),this.matchMediaListener=null)},isOutsideClicked:function(e){return!(this.$el.isSameNode(e.target)||this.isNavIconClicked(e)||this.$el.contains(e.target)||this.overlay&&this.overlay.contains(e.target))},isNavIconClicked:function(e){return this.previousButton&&(this.previousButton.isSameNode(e.target)||this.previousButton.contains(e.target))||this.nextButton&&(this.nextButton.isSameNode(e.target)||this.nextButton.contains(e.target))},alignOverlay:function(){this.touchUI?this.enableModality():this.overlay&&(this.appendTo==="self"||this.inline?y.relativePosition(this.overlay,this.$el):(this.view==="date"?(this.overlay.style.width=y.getOuterWidth(this.overlay)+"px",this.overlay.style.minWidth=y.getOuterWidth(this.$el)+"px"):this.overlay.style.width=y.getOuterWidth(this.$el)+"px",y.absolutePosition(this.overlay,this.$el)))},onButtonClick:function(){this.isEnabled()&&(this.overlayVisible?this.overlayVisible=!1:(this.input.focus(),this.overlayVisible=!0))},isDateDisabled:function(e,n,r){if(this.disabledDates){var a=ue(this.disabledDates),i;try{for(a.s();!(i=a.n()).done;){var s=i.value;if(s.getFullYear()===r&&s.getMonth()===n&&s.getDate()===e)return!0}}catch(u){a.e(u)}finally{a.f()}}return!1},isDayDisabled:function(e,n,r){if(this.disabledDays){var a=new Date(r,n,e),i=a.getDay();return this.disabledDays.indexOf(i)!==-1}return!1},onMonthDropdownChange:function(e){this.currentMonth=parseInt(e),this.$emit("month-change",{month:this.currentMonth+1,year:this.currentYear})},onYearDropdownChange:function(e){this.currentYear=parseInt(e),this.$emit("year-change",{month:this.currentMonth+1,year:this.currentYear})},onDateSelect:function(e,n){var r=this;if(!(this.disabled||!n.selectable)){if(y.find(this.overlay,'table td span:not([data-p-disabled="true"])').forEach(function(i){return i.tabIndex=-1}),e&&e.currentTarget.focus(),this.isMultipleSelection()&&this.isSelected(n)){var a=this.modelValue.filter(function(i){return!r.isDateEquals(i,n)});this.updateModel(a)}else this.shouldSelectDate(n)&&(n.otherMonth?(this.currentMonth=n.month,this.currentYear=n.year,this.selectDate(n)):this.selectDate(n));this.isSingleSelection()&&(!this.showTime||this.hideOnDateTimeSelect)&&setTimeout(function(){r.input&&r.input.focus(),r.overlayVisible=!1},150)}},selectDate:function(e){var n=this,r=new Date(e.year,e.month,e.day);this.showTime&&(this.hourFormat==="12"&&this.currentHour!==12&&this.pm?r.setHours(this.currentHour+12):r.setHours(this.currentHour),r.setMinutes(this.currentMinute),r.setSeconds(this.currentSecond)),this.minDate&&this.minDate>r&&(r=this.minDate,this.currentHour=r.getHours(),this.currentMinute=r.getMinutes(),this.currentSecond=r.getSeconds()),this.maxDate&&this.maxDate=i.getTime()?s=r:(i=r,s=null),a=[i,s]}else a=[r,null];a!==null&&this.updateModel(a),this.isRangeSelection()&&this.hideOnRangeSelection&&a[1]!==null&&setTimeout(function(){n.overlayVisible=!1},150),this.$emit("date-select",r)},updateModel:function(e){this.$emit("update:modelValue",e)},shouldSelectDate:function(){return this.isMultipleSelection()&&this.maxDateCount!=null?this.maxDateCount>(this.modelValue?this.modelValue.length:0):!0},isSingleSelection:function(){return this.selectionMode==="single"},isRangeSelection:function(){return this.selectionMode==="range"},isMultipleSelection:function(){return this.selectionMode==="multiple"},formatValue:function(e){if(typeof e=="string")return e;var n="";if(e)try{if(this.isSingleSelection())n=this.formatDateTime(e);else if(this.isMultipleSelection())for(var r=0;r11&&r!==12&&(r-=12),this.hourFormat==="12"?n+=r===0?12:r<10?"0"+r:r:n+=r<10?"0"+r:r,n+=":",n+=a<10?"0"+a:a,this.showSeconds&&(n+=":",n+=i<10?"0"+i:i),this.hourFormat==="12"&&(n+=e.getHours()>11?" ".concat(this.$primevue.config.locale.pm):" ".concat(this.$primevue.config.locale.am)),n},onTodayButtonClick:function(e){var n=new Date,r={day:n.getDate(),month:n.getMonth(),year:n.getFullYear(),otherMonth:n.getMonth()!==this.currentMonth||n.getFullYear()!==this.currentYear,today:!0,selectable:!0};this.onDateSelect(null,r),this.$emit("today-click",n),e.preventDefault()},onClearButtonClick:function(e){this.updateModel(null),this.overlayVisible=!1,this.$emit("clear-click",e),e.preventDefault()},onTimePickerElementMouseDown:function(e,n,r){this.isEnabled()&&(this.repeat(e,null,n,r),e.preventDefault())},onTimePickerElementMouseUp:function(e){this.isEnabled()&&(this.clearTimePickerTimer(),this.updateModelTime(),e.preventDefault())},onTimePickerElementMouseLeave:function(){this.clearTimePickerTimer()},repeat:function(e,n,r,a){var i=this,s=n||500;switch(this.clearTimePickerTimer(),this.timePickerTimer=setTimeout(function(){i.repeat(e,100,r,a)},s),r){case 0:a===1?this.incrementHour(e):this.decrementHour(e);break;case 1:a===1?this.incrementMinute(e):this.decrementMinute(e);break;case 2:a===1?this.incrementSecond(e):this.decrementSecond(e);break}},convertTo24Hour:function(e,n){return this.hourFormat=="12"?e===12?n?12:0:n?e+12:e:e},validateTime:function(e,n,r,a){var i=this.isComparable()?this.modelValue:this.viewDate,s=this.convertTo24Hour(e,a);this.isRangeSelection()&&(i=this.modelValue[1]||this.modelValue[0]),this.isMultipleSelection()&&(i=this.modelValue[this.modelValue.length-1]);var u=i?i.toDateString():null;return!(this.minDate&&u&&this.minDate.toDateString()===u&&(this.minDate.getHours()>s||this.minDate.getHours()===s&&(this.minDate.getMinutes()>n||this.minDate.getMinutes()===n&&this.minDate.getSeconds()>r))||this.maxDate&&u&&this.maxDate.toDateString()===u&&(this.maxDate.getHours()=24?r-24:r:this.hourFormat=="12"&&(n<12&&r>11&&(a=!this.pm),r=r>=13?r-12:r),this.validateTime(r,this.currentMinute,this.currentSecond,a)&&(this.currentHour=r,this.pm=a),e.preventDefault()},decrementHour:function(e){var n=this.currentHour-this.stepHour,r=this.pm;this.hourFormat=="24"?n=n<0?24+n:n:this.hourFormat=="12"&&(this.currentHour===12&&(r=!this.pm),n=n<=0?12+n:n),this.validateTime(n,this.currentMinute,this.currentSecond,r)&&(this.currentHour=n,this.pm=r),e.preventDefault()},incrementMinute:function(e){var n=this.currentMinute+Number(this.stepMinute);this.validateTime(this.currentHour,n,this.currentSecond,this.pm)&&(this.currentMinute=n>59?n-60:n),e.preventDefault()},decrementMinute:function(e){var n=this.currentMinute-this.stepMinute;n=n<0?60+n:n,this.validateTime(this.currentHour,n,this.currentSecond,this.pm)&&(this.currentMinute=n),e.preventDefault()},incrementSecond:function(e){var n=this.currentSecond+Number(this.stepSecond);this.validateTime(this.currentHour,this.currentMinute,n,this.pm)&&(this.currentSecond=n>59?n-60:n),e.preventDefault()},decrementSecond:function(e){var n=this.currentSecond-this.stepSecond;n=n<0?60+n:n,this.validateTime(this.currentHour,this.currentMinute,n,this.pm)&&(this.currentSecond=n),e.preventDefault()},updateModelTime:function(){var e=this;this.timePickerChange=!0;var n=this.isComparable()?this.modelValue:this.viewDate;this.isRangeSelection()&&(n=this.modelValue[1]||this.modelValue[0]),this.isMultipleSelection()&&(n=this.modelValue[this.modelValue.length-1]),n=n?new Date(n.getTime()):new Date,this.hourFormat=="12"?this.currentHour===12?n.setHours(this.pm?12:0):n.setHours(this.pm?this.currentHour+12:this.currentHour):n.setHours(this.currentHour),n.setMinutes(this.currentMinute),n.setSeconds(this.currentSecond),this.isRangeSelection()&&(this.modelValue[1]?n=[this.modelValue[0],n]:n=[n,null]),this.isMultipleSelection()&&(n=[].concat(le(this.modelValue.slice(0,-1)),[n])),this.updateModel(n),this.$emit("date-select",n),setTimeout(function(){return e.timePickerChange=!1},0)},toggleAMPM:function(e){var n=this.validateTime(this.currentHour,this.currentMinute,this.currentSecond,!this.pm);!n&&(this.maxDate||this.minDate)||(this.pm=!this.pm,this.updateModelTime(),e.preventDefault())},clearTimePickerTimer:function(){this.timePickerTimer&&clearInterval(this.timePickerTimer)},onMonthSelect:function(e,n){this.view==="month"?this.onDateSelect(e,{year:this.currentYear,month:n,day:1,selectable:!0}):(this.currentMonth=n,this.currentView="date",this.$emit("month-change",{month:this.currentMonth+1,year:this.currentYear})),setTimeout(this.updateFocus,0)},onYearSelect:function(e,n){this.view==="year"?this.onDateSelect(e,{year:n.value,month:0,day:1,selectable:!0}):(this.currentYear=n.value,this.currentView="month",this.$emit("year-change",{month:this.currentMonth+1,year:this.currentYear})),setTimeout(this.updateFocus,0)},enableModality:function(){var e=this;if(!this.mask){var n="p-datepicker-mask p-datepicker-mask-scrollblocker p-component-overlay p-component-overlay-enter";this.mask=y.createElement("div",{class:!this.isUnstyled&&n,"p-bind":this.ptm("datepickermask")}),this.mask.style.zIndex=String(parseInt(this.overlay.style.zIndex,10)-1),this.maskClickListener=function(){e.overlayVisible=!1},this.mask.addEventListener("click",this.maskClickListener),document.body.appendChild(this.mask),y.blockBodyScroll()}},disableModality:function(){var e=this;this.mask&&(this.isUnstyled?this.destroyMask():(y.addClass(this.mask,"p-component-overlay-leave"),this.mask.addEventListener("animationend",function(){e.destroyMask()})))},destroyMask:function(){this.mask.removeEventListener("click",this.maskClickListener),this.maskClickListener=null,document.body.removeChild(this.mask),this.mask=null;for(var e=document.body.children,n,r=0;r1&&e[1]>e[0]),r},parseValue:function(e){if(!e||e.trim().length===0)return null;var n;if(this.isSingleSelection())n=this.parseDateTime(e);else if(this.isMultipleSelection()){var r=e.split(",");n=[];var a=ue(r),i;try{for(a.s();!(i=a.n()).done;){var s=i.value;n.push(this.parseDateTime(s.trim()))}}catch(o){a.e(o)}finally{a.f()}}else if(this.isRangeSelection()){var u=e.split(" - ");n=[];for(var l=0;l23||s>59||this.hourFormat=="12"&&i>12||this.showSeconds&&(isNaN(u)||u>59))throw"Invalid time";return this.hourFormat=="12"&&i!==12&&this.pm?i+=12:this.hourFormat=="12"&&i==12&&!this.pm&&(i=0),{hour:i,minute:s,second:u}},parseDate:function(e,n){if(n==null||e==null)throw"Invalid arguments";if(e=de(e)==="object"?e.toString():e+"",e==="")return null;var r,a,i,s=0,u=typeof this.shortYearCutoff!="string"?this.shortYearCutoff:new Date().getFullYear()%100+parseInt(this.shortYearCutoff,10),l=-1,o=-1,p=-1,b=-1,S=!1,c,v=function(B){var V=r+1-1){o=1,p=b;do{if(a=this.getDaysCountInMonth(l,o-1),p<=a)break;o++,p-=a}while(!0)}if(c=this.daylightSavingAdjust(new Date(l,o-1,p)),c.getFullYear()!==l||c.getMonth()+1!==o||c.getDate()!==p)throw"Invalid date";return c},getWeekNumber:function(e){var n=new Date(e.getTime());n.setDate(n.getDate()+4-(n.getDay()||7));var r=n.getTime();return n.setMonth(0),n.setDate(1),Math.floor(Math.round((r-n.getTime())/864e5)/7)+1},onDateCellKeydown:function(e,n,r){var a=e.currentTarget,i=a.parentElement,s=y.index(i);switch(e.code){case"ArrowDown":{a.tabIndex="-1";var u=i.parentElement.nextElementSibling;if(u){var l=y.index(i.parentElement),o=Array.from(i.parentElement.parentElement.children),p=o.slice(l+1),b=p.find(function(z){var j=z.children[s].children[0];return!y.getAttribute(j,"data-p-disabled")});if(b){var S=b.children[s].children[0];S.tabIndex="0",S.focus()}else this.navigationState={backward:!1},this.navForward(e)}else this.navigationState={backward:!1},this.navForward(e);e.preventDefault();break}case"ArrowUp":{if(a.tabIndex="-1",e.altKey)this.overlayVisible=!1,this.focused=!0;else{var c=i.parentElement.previousElementSibling;if(c){var v=y.index(i.parentElement),T=Array.from(i.parentElement.parentElement.children),P=T.slice(0,v).reverse(),F=P.find(function(z){var j=z.children[s].children[0];return!y.getAttribute(j,"data-p-disabled")});if(F){var K=F.children[s].children[0];K.tabIndex="0",K.focus()}else this.navigationState={backward:!0},this.navBackward(e)}else this.navigationState={backward:!0},this.navBackward(e)}e.preventDefault();break}case"ArrowLeft":{a.tabIndex="-1";var B=i.previousElementSibling;if(B){var V=Array.from(i.parentElement.children),U=V.slice(0,s).reverse(),N=U.find(function(z){var j=z.children[0];return!y.getAttribute(j,"data-p-disabled")});if(N){var m=N.children[0];m.tabIndex="0",m.focus()}else this.navigateToMonth(e,!0,r)}else this.navigateToMonth(e,!0,r);e.preventDefault();break}case"ArrowRight":{a.tabIndex="-1";var k=i.nextElementSibling;if(k){var H=Array.from(i.parentElement.children),q=H.slice(s+1),Z=q.find(function(z){var j=z.children[0];return!y.getAttribute(j,"data-p-disabled")});if(Z){var x=Z.children[0];x.tabIndex="0",x.focus()}else this.navigateToMonth(e,!1,r)}else this.navigateToMonth(e,!1,r);e.preventDefault();break}case"Enter":case"NumpadEnter":case"Space":{this.onDateSelect(e,n),e.preventDefault();break}case"Escape":{this.overlayVisible=!1,e.preventDefault();break}case"Tab":{this.inline||this.trapFocus(e);break}case"Home":{a.tabIndex="-1";var te=i.parentElement,ne=te.children[0].children[0];y.getAttribute(ne,"data-p-disabled")?this.navigateToMonth(e,!0,r):(ne.tabIndex="0",ne.focus()),e.preventDefault();break}case"End":{a.tabIndex="-1";var me=i.parentElement,ie=me.children[me.children.length-1].children[0];y.getAttribute(ie,"data-p-disabled")?this.navigateToMonth(e,!1,r):(ie.tabIndex="0",ie.focus()),e.preventDefault();break}case"PageUp":{a.tabIndex="-1",e.shiftKey?(this.navigationState={backward:!0},this.navBackward(e)):this.navigateToMonth(e,!0,r),e.preventDefault();break}case"PageDown":{a.tabIndex="-1",e.shiftKey?(this.navigationState={backward:!1},this.navForward(e)):this.navigateToMonth(e,!1,r),e.preventDefault();break}}},navigateToMonth:function(e,n,r){if(n)if(this.numberOfMonths===1||r===0)this.navigationState={backward:!0},this.navBackward(e);else{var a=this.overlay.children[r-1],i=y.find(a,'table td span:not([data-p-disabled="true"]):not([data-p-ink="true"])'),s=i[i.length-1];s.tabIndex="0",s.focus()}else if(this.numberOfMonths===1||r===this.numberOfMonths-1)this.navigationState={backward:!1},this.navForward(e);else{var u=this.overlay.children[r+1],l=y.findSingle(u,'table td span:not([data-p-disabled="true"]):not([data-p-ink="true"])');l.tabIndex="0",l.focus()}},onMonthCellKeydown:function(e,n){var r=e.currentTarget;switch(e.code){case"ArrowUp":case"ArrowDown":{r.tabIndex="-1";var a=r.parentElement.children,i=y.index(r),s=a[e.code==="ArrowDown"?i+3:i-3];s&&(s.tabIndex="0",s.focus()),e.preventDefault();break}case"ArrowLeft":{r.tabIndex="-1";var u=r.previousElementSibling;u?(u.tabIndex="0",u.focus()):(this.navigationState={backward:!0},this.navBackward(e)),e.preventDefault();break}case"ArrowRight":{r.tabIndex="-1";var l=r.nextElementSibling;l?(l.tabIndex="0",l.focus()):(this.navigationState={backward:!1},this.navForward(e)),e.preventDefault();break}case"PageUp":{if(e.shiftKey)return;this.navigationState={backward:!0},this.navBackward(e);break}case"PageDown":{if(e.shiftKey)return;this.navigationState={backward:!1},this.navForward(e);break}case"Enter":case"NumpadEnter":case"Space":{this.onMonthSelect(e,n),e.preventDefault();break}case"Escape":{this.overlayVisible=!1,e.preventDefault();break}case"Tab":{this.trapFocus(e);break}}},onYearCellKeydown:function(e,n){var r=e.currentTarget;switch(e.code){case"ArrowUp":case"ArrowDown":{r.tabIndex="-1";var a=r.parentElement.children,i=y.index(r),s=a[e.code==="ArrowDown"?i+2:i-2];s&&(s.tabIndex="0",s.focus()),e.preventDefault();break}case"ArrowLeft":{r.tabIndex="-1";var u=r.previousElementSibling;u?(u.tabIndex="0",u.focus()):(this.navigationState={backward:!0},this.navBackward(e)),e.preventDefault();break}case"ArrowRight":{r.tabIndex="-1";var l=r.nextElementSibling;l?(l.tabIndex="0",l.focus()):(this.navigationState={backward:!1},this.navForward(e)),e.preventDefault();break}case"PageUp":{if(e.shiftKey)return;this.navigationState={backward:!0},this.navBackward(e);break}case"PageDown":{if(e.shiftKey)return;this.navigationState={backward:!1},this.navForward(e);break}case"Enter":case"NumpadEnter":case"Space":{this.onYearSelect(e,n),e.preventDefault();break}case"Escape":{this.overlayVisible=!1,e.preventDefault();break}case"Tab":{this.trapFocus(e);break}}},updateFocus:function(){var e;if(this.navigationState){if(this.navigationState.button)this.initFocusableCell(),this.navigationState.backward?this.previousButton.focus():this.nextButton.focus();else{if(this.navigationState.backward){var n;this.currentView==="month"?n=y.find(this.overlay,'[data-pc-section="monthpicker"] [data-pc-section="month"]:not([data-p-disabled="true"])'):this.currentView==="year"?n=y.find(this.overlay,'[data-pc-section="yearpicker"] [data-pc-section="year"]:not([data-p-disabled="true"])'):n=y.find(this.overlay,'table td span:not([data-p-disabled="true"]):not([data-p-ink="true"])'),n&&n.length>0&&(e=n[n.length-1])}else this.currentView==="month"?e=y.findSingle(this.overlay,'[data-pc-section="monthpicker"] [data-pc-section="month"]:not([data-p-disabled="true"])'):this.currentView==="year"?e=y.findSingle(this.overlay,'[data-pc-section="yearpicker"] [data-pc-section="year"]:not([data-p-disabled="true"])'):e=y.findSingle(this.overlay,'table td span:not([data-p-disabled="true"]):not([data-p-ink="true"])');e&&(e.tabIndex="0",e.focus())}this.navigationState=null}else this.initFocusableCell()},initFocusableCell:function(){var e;if(this.currentView==="month"){var n=y.find(this.overlay,'[data-pc-section="monthpicker"] [data-pc-section="month"]'),r=y.findSingle(this.overlay,'[data-pc-section="monthpicker"] [data-pc-section="month"][data-p-highlight="true"]');n.forEach(function(u){return u.tabIndex=-1}),e=r||n[0]}else if(this.currentView==="year"){var a=y.find(this.overlay,'[data-pc-section="yearpicker"] [data-pc-section="year"]'),i=y.findSingle(this.overlay,'[data-pc-section="yearpicker"] [data-pc-section="year"][data-p-highlight="true"]');a.forEach(function(u){return u.tabIndex=-1}),e=i||a[0]}else if(e=y.findSingle(this.overlay,'span[data-p-highlight="true"]'),!e){var s=y.findSingle(this.overlay,'td.p-datepicker-today span:not([data-p-disabled="true"]):not([data-p-ink="true"])');s?e=s:e=y.findSingle(this.overlay,'.p-datepicker-calendar td span:not([data-p-disabled="true"]):not([data-p-ink="true"])')}e&&(e.tabIndex="0",!this.inline&&(!this.navigationState||!this.navigationState.button)&&!this.timePickerChange&&(this.manualInput||e.focus()),this.preventFocus=!1)},trapFocus:function(e){e.preventDefault();var n=y.getFocusableElements(this.overlay);if(n&&n.length>0)if(!document.activeElement)n[0].focus();else{var r=n.indexOf(document.activeElement);if(e.shiftKey)r===-1||r===0?n[n.length-1].focus():n[r-1].focus();else if(r===-1)if(this.timeOnly)n[0].focus();else{for(var a=null,i=0;i1&&this.responsiveOptions&&!this.isUnstyled){if(!this.responsiveStyleElement){var e;this.responsiveStyleElement=document.createElement("style"),this.responsiveStyleElement.type="text/css",y.setAttribute(this.responsiveStyleElement,"nonce",(e=this.$primevue)===null||e===void 0||(e=e.config)===null||e===void 0||(e=e.csp)===null||e===void 0?void 0:e.nonce),document.body.appendChild(this.responsiveStyleElement)}var n="";if(this.responsiveOptions)for(var r=ObjectUtils.localeComparator(),a=le(this.responsiveOptions).filter(function(b){return!!(b.breakpoint&&b.numMonths)}).sort(function(b,S){return-1*r(b.breakpoint,S.breakpoint)}),i=0;im.getters["main/isLoading"]),b=S(()=>m.getters["main/getMigrations"]),I=S(()=>{var i,t;return((i=b.value)==null?void 0:i.length)>0&&((t=b.value)==null?void 0:t.length)||0}),c=T();W(c,()=>c.value?localStorage.setItem(N,JSON.stringify(c.value)):localStorage.removeItem(N),{deep:!0});const L=(i=!1)=>{const t=JSON.parse(localStorage.getItem(N));!t||i?c.value={global:{value:null,matchMode:h.CONTAINS},profileDb:{operator:E.AND,constraints:[{value:null,matchMode:h.CONTAINS}]},migrationCode:{operator:E.AND,constraints:[{value:null,matchMode:h.CONTAINS}]},status:{operator:E.OR,constraints:[{value:null,matchMode:h.EQUALS}]}}:c.value=t,x({filters:c.value,multiSortMeta:C.value})},C=T([{field:"migrationCode",order:-1}]),z=["COMPLETED","PENDING","SKIPPED","ERROR"],x=async(i=void 0)=>{await m.dispatch("main/fetchMigrations",{action:_.SET_MIGRATIONS,params:{page:(i==null?void 0:i.page)+1||1,pageSize:(i==null?void 0:i.rows)||R},data:i}),window.scrollTo(0,0)},U=async()=>{try{m.commit(`main/${_.SET_LOADING}`,!0);const i=await F.get("system/migration/setup/executeAll");await x()}finally{m.commit(`main/${_.SET_LOADING}`,!1)}},M=async(i,t)=>{try{m.commit(`main/${_.SET_LOADING}`,!0);const p=await F.post(`system/migration/setup/${t.migrationCode}/${i}?profileDb=${t.profileDb}`);await x()}finally{m.commit(`main/${_.SET_LOADING}`,!1)}};return L(),(i,t)=>{const p=ee,K=j,k=oe,P=q,w=J,B=le,G=Y,H=Z;return n(),y("div",pe,[o("div",ge,[o("div",ve,[o("div",fe,[o("div",ye,[s(p,{severity:"secondary",outlined:"",loading:v.value,onClick:t[0]||(t[0]=e=>L(!0))},{default:l(()=>[s(r(X),{class:"w-4 h-4 mr-1"}),t[4]||(t[4]=g(" Azzera Filtri ",-1))]),_:1,__:[4]},8,["loading"]),s(p,{severity:"primary",onClick:U,loading:v.value},{default:l(()=>[s(r(A),{class:"w-4 h-4 mr-1"}),t[5]||(t[5]=g(" Esegui Tutte le Migrazioni ",-1))]),_:1,__:[5]},8,["loading"]),o("div",_e,[s(r(te),{class:"w-4 h-4 mr-1"}),g(" "+d(I.value)+" migrazioni totali ",1)])]),s(P,{"icon-position":"left"},{default:l(()=>[s(K,null,{default:l(()=>[s(r(se),{size:"16"})]),_:1}),s(k,{modelValue:c.value.global.value,"onUpdate:modelValue":t[1]||(t[1]=e=>c.value.global.value=e),placeholder:"Cerca migrazioni...",onKeyup:t[2]||(t[2]=$(e=>x({filters:c.value,multiSortMeta:C.value}),["enter"]))},null,8,["modelValue"])]),_:1})])]),o("div",xe,[s(H,{value:b.value,paginator:!0,rows:R,totalRecords:I.value,rowsPerPageOptions:[20,50,100,500],loading:v.value,sortMode:"multiple",scrollable:"",scrollHeight:"flex","striped-rows":!0,multiSortMeta:C.value,dataKey:"id",filterDisplay:"menu",filters:c.value,"onUpdate:filters":t[3]||(t[3]=e=>c.value=e),globalFilterFields:["profileDb","migrationCode"],class:"p-datatable-sm"},{empty:l(()=>[o("div",we,[s(r(me),{class:"w-12 h-12 text-gray-400 mx-auto mb-4"}),t[6]||(t[6]=o("p",{class:"text-gray-500 text-lg"},"Nessuna migrazione trovata",-1)),t[7]||(t[7]=o("p",{class:"text-gray-400 text-sm mt-1"},"Prova a modificare i filtri di ricerca",-1))])]),default:l(()=>[s(w,{field:"profileDb",header:"Profile DB",filterField:"profileDb",sortable:!0,style:{"min-width":"120px"}},{body:l(({data:e})=>[o("span",he,d(e.profileDb),1)]),filter:l(({filterModel:e,filterCallback:a})=>[s(k,{type:"text",modelValue:e.value,"onUpdate:modelValue":f=>e.value=f,onKeydown:$(f=>a(),["enter"]),class:"p-column-filter",placeholder:"Filtra Profile DB..."},null,8,["modelValue","onUpdate:modelValue","onKeydown"])]),_:1}),s(w,{field:"migrationCode",header:"Codice Migrazione",sortable:!0,style:{"min-width":"200px"}},{body:l(({data:e})=>[o("div",be,[e.errorMessage?(n(),y(ae,{key:0},[s(r(V),{class:"w-4 h-4 text-red-500 mr-1 flex-shrink-0"}),o("button",{onClick:a=>e.displayStacktrace=!0,class:"text-left text-sm text-red-600 hover:text-red-800 underline cursor-pointer transition-colors"},d(e.migrationCode),9,Ce),s(B,{header:"Dettagli Errore",visible:e.displayStacktrace,"onUpdate:visible":a=>e.displayStacktrace=a,style:{width:"90vw"},modal:!0,dismissableMask:!0,class:"error-dialog"},{footer:l(()=>[s(p,{label:"Chiudi",icon:"pi pi-times",onClick:a=>e.displayStacktrace=!1,class:"p-button-secondary",autofocus:""},null,8,["onClick"])]),default:l(()=>[o("div",ke,[o("div",Se,[s(r(V),{class:"w-5 h-5 text-red-400 mr-3 flex-shrink-0"}),o("div",$e,[o("h3",De," Errore nella migrazione: "+d(e.migrationCode),1),o("div",Ee,[o("code",{class:"text-red-100 text-sm font-mono whitespace-pre-wrap",innerHTML:e.errorMessage.replaceAll(/^\tat it\.integry.*$/gm,'$&')},null,8,Ne)])])])])]),_:2},1032,["visible","onUpdate:visible"])],64)):(n(),y("span",Ie,d(e.migrationCode),1))])]),filter:l(({filterModel:e,filterCallback:a})=>[s(k,{type:"text",modelValue:e.value,"onUpdate:modelValue":f=>e.value=f,onKeydown:$(f=>a(),["enter"]),class:"p-column-filter",placeholder:"Filtra codice..."},null,8,["modelValue","onUpdate:modelValue","onKeydown"])]),_:1}),s(w,{field:"status",header:"Stato",style:{"min-width":"120px"}},{body:l(({data:e})=>[o("span",{class:D(`status-badge ${e.status.toLowerCase()}`)},[e.status==="COMPLETED"?(n(),u(r(ie),{key:0,class:"w-3 h-3 mr-1"})):e.status==="ERROR"?(n(),u(r(re),{key:1,class:"w-3 h-3 mr-1"})):e.status==="PENDING"?(n(),u(r(ne),{key:2,class:"w-3 h-3 mr-1"})):(n(),u(r(ce),{key:3,class:"w-3 h-3 mr-1"})),g(" "+d(e.status),1)],2)]),filter:l(({filterModel:e})=>[s(G,{modelValue:e.value,"onUpdate:modelValue":a=>e.value=a,options:z,placeholder:"Tutti",class:"p-column-filter",showClear:!0},{value:l(a=>[a.value?(n(),y("span",{key:0,class:D(`status-badge ${a.value.toLowerCase()}`)},d(a.value),3)):(n(),y("span",Le,d(a.placeholder),1))]),option:l(a=>[o("span",{class:D(`status-badge ${a.option.toLowerCase()}`)},d(a.option),3)]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:1}),s(w,{header:"Azioni",style:{"min-width":"180px"}},{body:l(({data:e})=>[o("div",Me,[["completed","skipped"].includes(e.status.toLowerCase())?O("",!0):(n(),u(p,{key:0,severity:"primary",outlined:"",size:"small",class:"py-0.5 px-2",onClick:a=>M("retry",e),loading:v.value},{default:l(()=>[e.status.toLowerCase()==="error"?(n(),u(r(de),{key:0,class:"w-4 h-4 mr-1"})):(n(),u(r(A),{key:1,class:"w-4 h-4 mr-1"})),g(" "+d(e.status.toLowerCase()==="error"?"Riprova":"Esegui"),1)]),_:2},1032,["onClick","loading"])),e.status.toLowerCase()==="error"?(n(),u(p,{key:1,severity:"secondary",onClick:a=>M("skip",e),loading:v.value},{default:l(()=>[s(r(ue),{class:"w-3 h-3 mr-1"}),t[8]||(t[8]=g(" Salta ",-1))]),_:2,__:[8]},1032,["onClick","loading"])):O("",!0)])]),_:1})]),_:1},8,["value","totalRecords","loading","multiSortMeta","filters"])])])])}}};export{Oe as default}; +import{b as j,c as q,s as J,f as Y,a as Z}from"./inputicon.esm-C6x9HzWS.js";import{u as Q,a as S,b as T,w as W,f as y,o as n,l as o,i as s,h as l,k as g,aj as r,ak as X,E as ee,aq as A,al as te,m as d,A as se,H as oe,Y as $,F as ae,ar as V,I as le,n as D,c as u,N as ie,as as re,at as ne,au as ce,L as O,av as de,aw as ue,P as me,q as h,ao as E,ap as _,ax as F}from"./index-CjLz75tu.js";const pe={class:"view-container"},ge={class:"view-card"},ve={class:"card-header p-2"},fe={class:"flex flex-col sm:flex-row sm:items-center sm:justify-between gap-4"},ye={class:"flex items-center gap-3"},_e={class:"text-sm text-gray-500 flex items-center"},xe={class:"card-body"},we={class:"text-center py-8 flex-1"},he={class:"inline-flex items-center px-2.5 py-0.5 rounded-lg text-xs font-medium bg-gray-100 text-gray-800"},be={class:"flex items-center"},Ce=["onClick"],ke={class:"bg-red-50 border border-red-200 rounded-lg p-4"},Se={class:"flex"},$e={class:"flex-1"},De={class:"text-sm font-medium text-red-800 mb-2"},Ee={class:"bg-red-900 rounded-lg p-4 overflow-auto max-h-96"},Ne=["innerHTML"],Ie={key:1,class:"text-sm text-gray-700 font-mono"},Le={key:1,class:"text-gray-500"},Me={class:"flex items-center gap-2"},N="MIGRATIONS_FILTERS",R=20,Oe={__name:"Migrations",setup(Te){const m=Q(),v=S(()=>m.getters["main/isLoading"]),b=S(()=>m.getters["main/getMigrations"]),I=S(()=>{var i,t;return((i=b.value)==null?void 0:i.length)>0&&((t=b.value)==null?void 0:t.length)||0}),c=T();W(c,()=>c.value?localStorage.setItem(N,JSON.stringify(c.value)):localStorage.removeItem(N),{deep:!0});const L=(i=!1)=>{const t=JSON.parse(localStorage.getItem(N));!t||i?c.value={global:{value:null,matchMode:h.CONTAINS},profileDb:{operator:E.AND,constraints:[{value:null,matchMode:h.CONTAINS}]},migrationCode:{operator:E.AND,constraints:[{value:null,matchMode:h.CONTAINS}]},status:{operator:E.OR,constraints:[{value:null,matchMode:h.EQUALS}]}}:c.value=t,x({filters:c.value,multiSortMeta:C.value})},C=T([{field:"migrationCode",order:-1}]),z=["COMPLETED","PENDING","SKIPPED","ERROR"],x=async(i=void 0)=>{await m.dispatch("main/fetchMigrations",{action:_.SET_MIGRATIONS,params:{page:(i==null?void 0:i.page)+1||1,pageSize:(i==null?void 0:i.rows)||R},data:i}),window.scrollTo(0,0)},U=async()=>{try{m.commit(`main/${_.SET_LOADING}`,!0);const i=await F.get("system/migration/setup/executeAll");await x()}finally{m.commit(`main/${_.SET_LOADING}`,!1)}},M=async(i,t)=>{try{m.commit(`main/${_.SET_LOADING}`,!0);const p=await F.post(`system/migration/setup/${t.migrationCode}/${i}?profileDb=${t.profileDb}`);await x()}finally{m.commit(`main/${_.SET_LOADING}`,!1)}};return L(),(i,t)=>{const p=ee,K=j,k=oe,P=q,w=J,B=le,G=Y,H=Z;return n(),y("div",pe,[o("div",ge,[o("div",ve,[o("div",fe,[o("div",ye,[s(p,{severity:"secondary",outlined:"",loading:v.value,onClick:t[0]||(t[0]=e=>L(!0))},{default:l(()=>[s(r(X),{class:"w-4 h-4 mr-1"}),t[4]||(t[4]=g(" Azzera Filtri ",-1))]),_:1,__:[4]},8,["loading"]),s(p,{severity:"primary",onClick:U,loading:v.value},{default:l(()=>[s(r(A),{class:"w-4 h-4 mr-1"}),t[5]||(t[5]=g(" Esegui Tutte le Migrazioni ",-1))]),_:1,__:[5]},8,["loading"]),o("div",_e,[s(r(te),{class:"w-4 h-4 mr-1"}),g(" "+d(I.value)+" migrazioni totali ",1)])]),s(P,{"icon-position":"left"},{default:l(()=>[s(K,null,{default:l(()=>[s(r(se),{size:"16"})]),_:1}),s(k,{modelValue:c.value.global.value,"onUpdate:modelValue":t[1]||(t[1]=e=>c.value.global.value=e),placeholder:"Cerca migrazioni...",onKeyup:t[2]||(t[2]=$(e=>x({filters:c.value,multiSortMeta:C.value}),["enter"]))},null,8,["modelValue"])]),_:1})])]),o("div",xe,[s(H,{value:b.value,paginator:!0,rows:R,totalRecords:I.value,rowsPerPageOptions:[20,50,100,500],loading:v.value,sortMode:"multiple",scrollable:"",scrollHeight:"flex","striped-rows":!0,multiSortMeta:C.value,dataKey:"id",filterDisplay:"menu",filters:c.value,"onUpdate:filters":t[3]||(t[3]=e=>c.value=e),globalFilterFields:["profileDb","migrationCode"],class:"p-datatable-sm"},{empty:l(()=>[o("div",we,[s(r(me),{class:"w-12 h-12 text-gray-400 mx-auto mb-4"}),t[6]||(t[6]=o("p",{class:"text-gray-500 text-lg"},"Nessuna migrazione trovata",-1)),t[7]||(t[7]=o("p",{class:"text-gray-400 text-sm mt-1"},"Prova a modificare i filtri di ricerca",-1))])]),default:l(()=>[s(w,{field:"profileDb",header:"Profile DB",filterField:"profileDb",sortable:!0,style:{"min-width":"120px"}},{body:l(({data:e})=>[o("span",he,d(e.profileDb),1)]),filter:l(({filterModel:e,filterCallback:a})=>[s(k,{type:"text",modelValue:e.value,"onUpdate:modelValue":f=>e.value=f,onKeydown:$(f=>a(),["enter"]),class:"p-column-filter",placeholder:"Filtra Profile DB..."},null,8,["modelValue","onUpdate:modelValue","onKeydown"])]),_:1}),s(w,{field:"migrationCode",header:"Codice Migrazione",sortable:!0,style:{"min-width":"200px"}},{body:l(({data:e})=>[o("div",be,[e.errorMessage?(n(),y(ae,{key:0},[s(r(V),{class:"w-4 h-4 text-red-500 mr-1 flex-shrink-0"}),o("button",{onClick:a=>e.displayStacktrace=!0,class:"text-left text-sm text-red-600 hover:text-red-800 underline cursor-pointer transition-colors"},d(e.migrationCode),9,Ce),s(B,{header:"Dettagli Errore",visible:e.displayStacktrace,"onUpdate:visible":a=>e.displayStacktrace=a,style:{width:"90vw"},modal:!0,dismissableMask:!0,class:"error-dialog"},{footer:l(()=>[s(p,{label:"Chiudi",icon:"pi pi-times",onClick:a=>e.displayStacktrace=!1,class:"p-button-secondary",autofocus:""},null,8,["onClick"])]),default:l(()=>[o("div",ke,[o("div",Se,[s(r(V),{class:"w-5 h-5 text-red-400 mr-3 flex-shrink-0"}),o("div",$e,[o("h3",De," Errore nella migrazione: "+d(e.migrationCode),1),o("div",Ee,[o("code",{class:"text-red-100 text-sm font-mono whitespace-pre-wrap",innerHTML:e.errorMessage.replaceAll(/^\tat it\.integry.*$/gm,'$&')},null,8,Ne)])])])])]),_:2},1032,["visible","onUpdate:visible"])],64)):(n(),y("span",Ie,d(e.migrationCode),1))])]),filter:l(({filterModel:e,filterCallback:a})=>[s(k,{type:"text",modelValue:e.value,"onUpdate:modelValue":f=>e.value=f,onKeydown:$(f=>a(),["enter"]),class:"p-column-filter",placeholder:"Filtra codice..."},null,8,["modelValue","onUpdate:modelValue","onKeydown"])]),_:1}),s(w,{field:"status",header:"Stato",style:{"min-width":"120px"}},{body:l(({data:e})=>[o("span",{class:D(`status-badge ${e.status.toLowerCase()}`)},[e.status==="COMPLETED"?(n(),u(r(ie),{key:0,class:"w-3 h-3 mr-1"})):e.status==="ERROR"?(n(),u(r(re),{key:1,class:"w-3 h-3 mr-1"})):e.status==="PENDING"?(n(),u(r(ne),{key:2,class:"w-3 h-3 mr-1"})):(n(),u(r(ce),{key:3,class:"w-3 h-3 mr-1"})),g(" "+d(e.status),1)],2)]),filter:l(({filterModel:e})=>[s(G,{modelValue:e.value,"onUpdate:modelValue":a=>e.value=a,options:z,placeholder:"Tutti",class:"p-column-filter",showClear:!0},{value:l(a=>[a.value?(n(),y("span",{key:0,class:D(`status-badge ${a.value.toLowerCase()}`)},d(a.value),3)):(n(),y("span",Le,d(a.placeholder),1))]),option:l(a=>[o("span",{class:D(`status-badge ${a.option.toLowerCase()}`)},d(a.option),3)]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:1}),s(w,{header:"Azioni",style:{"min-width":"180px"}},{body:l(({data:e})=>[o("div",Me,[["completed","skipped"].includes(e.status.toLowerCase())?O("",!0):(n(),u(p,{key:0,severity:"primary",outlined:"",size:"small",class:"py-0.5 px-2",onClick:a=>M("retry",e),loading:v.value},{default:l(()=>[e.status.toLowerCase()==="error"?(n(),u(r(de),{key:0,class:"w-4 h-4 mr-1"})):(n(),u(r(A),{key:1,class:"w-4 h-4 mr-1"})),g(" "+d(e.status.toLowerCase()==="error"?"Riprova":"Esegui"),1)]),_:2},1032,["onClick","loading"])),e.status.toLowerCase()==="error"?(n(),u(p,{key:1,severity:"secondary",onClick:a=>M("skip",e),loading:v.value},{default:l(()=>[s(r(ue),{class:"w-3 h-3 mr-1"}),t[8]||(t[8]=g(" Salta ",-1))]),_:2,__:[8]},1032,["onClick","loading"])):O("",!0)])]),_:1})]),_:1},8,["value","totalRecords","loading","multiSortMeta","filters"])])])])}}};export{Oe as default}; diff --git a/ems-engine/src/main/webapp/assets/Show-Dt5Jwlxb.js b/ems-engine/src/main/webapp/assets/Show-Dt5Jwlxb.js deleted file mode 100644 index 9ae069d085..0000000000 --- a/ems-engine/src/main/webapp/assets/Show-Dt5Jwlxb.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as S,g as X,P as G,a as v,t as z,b as $,w as E,e as P,r as y,c as M,f as d,o as r,h as u,i,F as A,j as F,n as q,k as _,l as o,m as x,p as N,q as H,s as J,d as Y,v as Z,x as W,y as ee,z as te,A as se,B as oe,$ as ne,D as ie,C as re,E as ae,G as le,H as de,I as ce,J as ue,u as fe,K as me}from"./index-BNu-F4v_.js";import{s as O,a as B,b as pe,c as ge}from"./inputicon.esm-E72BkL95.js";const ye={name:"DynamicTablePrime",components:{RiCloseCircleFill:G,RiCheckboxCircleFill:X,DataTable:B,Column:O},props:{rows:{type:Array,required:!0},search:{type:String,default:void 0}},emits:["update:search"],setup:function(n,{emit:e}){const f=v(()=>{const{rows:a}=z(n);let l=a.value;return Array.isArray(l)&&(l=l.map(p=>{const{password:t,...g}=p;return g})),l}),s=v(()=>{if(!Array.isArray(f.value)||f.value.length===0)return[];const a=f.value[0];return Object.keys(a).map(l=>({field:l,header:l.replace(/([A-Z])/g," $1").replace(/^./,p=>p.toUpperCase())}))}),h=v(()=>s.value.map(a=>a.field)),{search:m}=z(n),c=$({global:{value:m,matchMode:H.CONTAINS}});return E(m,a=>{c.value.global.value=a}),{toHumanString:P,filteredRows:f,dynamicColumns:s,globalFilterFields:h,search:m,filters:c}}},ve={key:0},_e={key:0,class:"text-green-600 text-sm flex flex-col items-center justify-center"},he={key:1,class:"text-red-600 text-sm flex flex-col items-center justify-center"},be={key:1,class:"!whitespace-pre-wrap"},we={class:"text-sm font-mono text-center"},xe={class:"text-gray-500"},Ce={class:"flex items-center gap-2 flex-nowrap whitespace-nowrap"},ke={key:1,class:"text-center py-8 flex-1"};function Re(n,e,f,s,h,m){const c=y("RiCheckboxCircleFill"),a=y("RiCloseCircleFill"),l=O,p=B;return Array.isArray(n.filteredRows)&&n.filteredRows.length>0?(r(),M(p,{key:0,value:n.filteredRows,paginator:!0,rows:100,rowsPerPageOptions:[50,100,250,500],globalFilterFields:n.globalFilterFields,globalFilter:f.search,filters:n.filters,"onUpdate:filters":e[0]||(e[0]=t=>n.filters=t),tableStyle:"min-width: 50rem",stripedRows:"",scrollable:"",scrollHeight:"flex",responsiveLayout:"scroll",resizableColumns:"",columnResizeMode:"expand",class:"p-datatable-sm"},{empty:u(()=>e[4]||(e[4]=[o("div",{class:"text-center p-4 text-lg"}," Nessun elemento ",-1)])),default:u(()=>[(r(!0),d(A,null,F(n.dynamicColumns,t=>(r(),M(l,{key:t.field,field:t.field,header:t.header,sortable:!0,class:q(["",{"!w-24 !flex-none justify-center":t.field==="active","!w-56 !flex-none justify-center":t.field==="deleteAfterImport"}])},{body:u(g=>[typeof g.data[t.field]=="boolean"?(r(),d("div",ve,[g.data[t.field]?(r(),d("div",_e,[i(c,{class:"w-5 h-5"}),e[1]||(e[1]=_(" Attivo ",-1))])):(r(),d("div",he,[i(a,{class:"w-5 h-5"}),e[2]||(e[2]=_(" Non attivo ",-1))]))])):t.field==="cronTrigger"?(r(),d("div",be,[o("span",we,x(g.data[t.field]),1),e[3]||(e[3]=o("br",null,null,-1)),o("small",xe,x(n.toHumanString(g.data[t.field])),1)])):(r(),d("div",{key:2,class:q({"text-xs !whitespace-pre-wrap":t.field==="id","text-sm font-mono":t.field==="type"||t.field==="format","text-sm !whitespace-pre-wrap line-clamp-3":t.field==="name"||t.field==="queryParams"||t.field==="methodName"||t.field==="body"||t.field==="whereCond"||t.field==="jsonRequest"||t.field==="rawContent","font-mono":t.field==="profileDb"})},x(g.data[t.field]),3))]),_:2},1032,["field","header","class"]))),128)),i(l,{header:"Azioni",class:"!w-64 !flex-none"},{body:u(t=>[o("div",Ce,[N(n.$slots,"default",{row:t.data})])]),_:3})]),_:3},8,["value","globalFilterFields","globalFilter","filters"])):(r(),d("div",ke,[i(a,{class:"w-12 h-12 text-gray-400 mx-auto mb-4"}),e[5]||(e[5]=o("p",{class:"text-gray-500 text-lg"},"Nessuna pianificata trovata",-1)),e[6]||(e[6]=o("p",{class:"text-gray-400 text-sm mt-1"},"Prova a modificare i filtri di ricerca o ad aggiungerne una",-1))]))}const U=S(ye,[["render",Re]]),$e={name:"DynamicTable",props:{rows:{type:Array,required:!0},search:{type:String,default:void 0}},emits:["search"],setup(n,{emit:e}){const f=v({get(){return n.search},set(h){e("update:search",h)}}),s=v(()=>{const{rows:h}=z(n);let m=h.value;return Array.isArray(m)&&(m=m.map(c=>(delete c.password,c)),f.value&&(m=m.filter(c=>{const a=new RegExp(J(f.value),"i");return Object.values(c).some(l=>a.test(l))}))),m});return{toHumanString:P,filteredRows:s}}},Ae={key:0,class:"overflow-x-auto"},Fe={class:"table table-report"},Se={key:0},Le={key:0,class:"text-theme-9"},De={key:1,class:"text-theme-6"},Ie={key:1},Te={key:2},je={class:"table-report__action w-56"},ze={class:"flex justify-center items-center"},Ee={key:1,class:"intro-x m-6 text-lg"};function Me(n,e,f,s,h,m){const c=y("CheckSquareIcon"),a=y("XSquareIcon");return Array.isArray(s.filteredRows)&&s.filteredRows.length>0?(r(),d("div",Ae,[o("table",Fe,[o("thead",null,[o("tr",null,[(r(!0),d(A,null,F(Object.keys(s.filteredRows[0]),(l,p)=>(r(),d("th",{class:"text-center whitespace-nowrap",key:p},x(l),1))),128)),e[0]||(e[0]=o("th",{class:"text-center whitespace-nowrap"}," Azioni ",-1))])]),o("tbody",null,[(r(!0),d(A,null,F(s.filteredRows,(l,p)=>(r(),d("tr",{class:"intro-x",key:p},[(r(!0),d(A,null,F(l,(t,g)=>(r(),d("td",{class:"text-center",key:g},[typeof t=="boolean"?(r(),d("div",Se,[t?(r(),d("div",Le,[i(c,{class:"mx-auto"}),e[1]||(e[1]=_(" Attivo ",-1))])):(r(),d("div",De,[i(a,{class:"mx-auto"}),e[2]||(e[2]=_(" Non attivo ",-1))]))])):g==="cronTrigger"?(r(),d("div",Ie,[_(x(t),1),e[3]||(e[3]=o("br",null,null,-1)),_(" "+x(s.toHumanString(t)),1)])):(r(),d("div",Te,x(t),1))]))),128)),o("td",je,[o("div",ze,[N(n.$slots,"default",{row:l})])])]))),128))])])])):(r(),d("div",Ee," Nessun elemento "))}const qe=S($e,[["render",Me]]),Ne=Y({name:"Modal",props:{showing:{type:Boolean,required:!0},icon:{type:String,default:"info"},title:{type:String,default:""},message:{type:String,default:"Messaggio informativo"}},emits:["showing"],setup(n,{emit:e}){return{showing:v({get(){return n.showing},set(s){e("update:showing",s)}})}}}),Pe={class:"modal-content"},He={class:"modal-body p-0"},Oe={class:"p-5 text-center"},Be={class:"text-3xl mt-5"},Ue=["innerHTML"],Ve={class:"px-5 pb-8 text-center"};function Ke(n,e,f,s,h,m){return r(),d("div",{class:q([{show:n.showing},"modal overflow-y-auto"]),style:{"margin-top":"0","margin-left":"0","padding-left":"0","z-index":"10000"},onClick:e[2]||(e[2]=c=>n.showing=!1)},[o("div",{class:"modal-dialog",onClick:e[1]||(e[1]=W(()=>{},["stop"]))},[o("div",Pe,[o("div",He,[o("div",Oe,[(r(),M(Z(n.icon),{class:"w-16 h-16 text-theme-6 mx-auto mt-3"})),o("div",Be,x(n.title),1),o("div",{class:"text-gray-600 mt-2",innerHTML:n.message},null,8,Ue)]),o("div",Ve,[N(n.$slots,"default",{},()=>[o("button",{onClick:e[0]||(e[0]=c=>n.showing=!1),type:"button",class:"btn w-24 btn-primary"}," Ok ")])])])])])],2)}const Qe=S(Ne,[["render",Ke]]),j="search",Xe={name:"SchedulerShow",components:{RiCloseCircleLine:ie,RiFilter2Fill:ne,RiFilter2Line:oe,RiSearchLine:se,RiAddLine:te,RiAddLargeLine:ee,DynamicTable:qe,DynamicTablePrime:U,Modal:Qe},setup(){const n=ue(),e=fe(),f=me(),s=$(localStorage.getItem(j));E(v(()=>s.value),()=>{s.value?localStorage.setItem(j,s.value):localStorage.removeItem(j)});const h=v(()=>e.getters["main/isLoading"]),m=v(()=>e.getters["scheduler/getError"]),c=v(()=>n.params.type);E(c,()=>a());async function a(){await e.dispatch("scheduler/fetchAutomations",c.value)}a();const l=v(()=>e.getters["scheduler/getAutomations"]),p=$(!1),t=$(void 0);async function g(w){if(h.value)return;const C=f.warning(`Eseguo Pianificata ${w}`,{timeout:!1});await e.dispatch("scheduler/runAutomation",w),m.value?f.update(C,{content:`Errore pianificata: ${m.value.message}`,options:{type:"error",timeout:!1}}):f.update(C,{content:"Pianificata eseguita correttamente.",options:{type:"success",timeout:!1}})}function L(w){p.value=!0,t.value=w}async function D(){await e.dispatch("scheduler/deleteAutomation",t.value),await a(),p.value=!1}const I={active:{value:null,matchMode:H.EQUALS}},k=v(()=>l.value?Object.keys(l.value[0]):[]),R=v(()=>{let w=[];return Object.entries(I).forEach(([C,T])=>{k.value.includes(C)&&w.push({[C]:T})}),w});return{search:s,isLoading:h,type:c,automations:l,showDelete:p,onRun:g,onDelete:L,onConfirmDelete:D,automationKeys:k,computedFilters:R}}},Ge={class:"view-container"},Je={class:"view-card"},Ye={class:"card-header p-2"},Ze={class:"flex flex-col sm:flex-row sm:items-center sm:justify-between gap-4"},We={class:"card-body"},et={class:"inline-flex overflow-hidden shadow-sm"},tt={class:"inline-flex items-center justify-center gap-1"},st={class:"flex items-center gap-3 pt-4"};function ot(n,e,f,s,h,m){const c=y("RiAddLine"),a=ae,l=y("router-link"),p=y("RiFilter2Fill"),t=y("RiSearchLine"),g=pe,L=de,D=ge,I=y("PlayCircleIcon"),k=y("EditIcon"),R=y("RouterLink"),w=y("CopyIcon"),C=y("Trash2Icon"),T=U,V=y("RiCloseCircleLine"),K=ce;return r(),d("div",Ge,[o("div",Je,[o("div",Ye,[o("div",Ze,[i(l,{to:{name:"scheduler.create"}},{default:u(()=>[i(a,{outlined:""},{default:u(()=>[i(c,{class:"w-5 h-5 mr-1"}),e[5]||(e[5]=_(" Crea Nuova Pianificata ",-1))]),_:1,__:[5]})]),_:1}),re(o("div",{onClick:e[0]||(e[0]=b=>s.search=void 0),class:"inline-flex items-center px-3 py-1.5 text-sm font-medium text-amber-700 bg-amber-50 border border-amber-200 rounded-lg cursor-pointer hover:bg-amber-100 transition-colors"},[i(p,{class:"w-4 h-4 mr-2"}),e[6]||(e[6]=_(" Filtro attivo - Clicca per rimuovere ",-1))],512),[[le,s.search]]),i(D,{"icon-position":"left"},{default:u(()=>[i(g,null,{default:u(()=>[i(t,{size:"16"})]),_:1}),i(L,{modelValue:s.search,"onUpdate:modelValue":e[1]||(e[1]=b=>s.search=b),placeholder:"Cerca nelle pianificate..."},null,8,["modelValue"])]),_:1})])]),o("div",We,[i(T,{rows:s.automations||[],search:s.search,"onUpdate:search":e[2]||(e[2]=b=>s.search=b)},{default:u(({row:b})=>[o("div",et,[i(a,{isLoading:s.isLoading,onClick:Q=>s.onRun(b.id),unstyled:"",class:"inline-flex items-center px-3 py-1.5 text-sm font-medium text-green-700 bg-green-50 border border-green-200 hover:bg-green-100 focus:ring-2 focus:ring-green-500 disabled:opacity-50 disabled:cursor-not-allowed transition-colors rounded-l-md border-r-0"},{default:u(()=>[i(I,{class:"mr-1",size:"14"}),e[7]||(e[7]=_(" Esegui ",-1))]),_:2,__:[7]},1032,["isLoading","onClick"]),i(R,{to:{name:"scheduler.edit",params:{type:s.type,id:b.id}},class:"inline-flex items-center px-3 py-1.5 text-xs font-medium text-blue-700 bg-blue-50 border border-blue-200 hover:bg-blue-100 focus:ring-2 focus:ring-blue-500 transition-colors border-r-0"},{default:u(()=>[i(k,{class:"",size:"14"})]),_:2},1032,["to"]),i(R,{to:{name:"scheduler.duplicate",params:{type:s.type,id:b.id}},class:"inline-flex items-center px-3 py-1.5 text-xs font-medium text-purple-700 bg-purple-50 border border-purple-200 hover:bg-purple-100 focus:ring-2 focus:ring-purple-500 transition-colors border-r-0"},{default:u(()=>[i(w,{class:"",size:"14"})]),_:2},1032,["to"]),i(a,{onClick:Q=>s.onDelete(b.id),loading:s.isLoading,unstyled:"",class:"inline-flex items-center px-3 py-1.5 text-xs font-medium text-red-700 bg-red-50 border border-red-200 hover:bg-red-100 focus:ring-2 focus:ring-red-500 transition-colors rounded-r-md"},{default:u(()=>[i(C,{class:"",size:"14"})]),_:2},1032,["onClick","loading"])])]),_:1},8,["rows","search"])])]),i(K,{visible:s.showDelete,"onUpdate:visible":e[4]||(e[4]=b=>s.showDelete=b),modal:"",dismissableMask:""},{header:u(()=>[o("div",tt,[i(V,{class:"w-5 h-5 mx-auto text-red-600"}),e[8]||(e[8]=o("span",{class:"font-bold whitespace-nowrap"},"Conferma Eliminazione",-1))])]),footer:u(()=>[o("div",st,[i(a,{severity:"secondary",onClick:e[3]||(e[3]=b=>s.showDelete=!1)},{default:u(()=>e[9]||(e[9]=[_(" Annulla ",-1)])),_:1,__:[9]}),i(a,{severity:"danger",onClick:s.onConfirmDelete},{default:u(()=>e[10]||(e[10]=[_(" Elimina ",-1)])),_:1,__:[10]},8,["onClick"])])]),default:u(()=>[e[11]||(e[11]=o("div",{class:"p-2 text-center"},[o("span",{class:"text-gray-600 mt-2"},[_("Sei sicuro di voler eliminare questa pianificazione?"),o("br"),_("Questa operazione non può essere annullata.")])],-1))]),_:1,__:[11]},8,["visible"])])}const rt=S(Xe,[["render",ot]]);export{rt as default}; diff --git a/ems-engine/src/main/webapp/assets/Show-fp2Rf64Q.js b/ems-engine/src/main/webapp/assets/Show-fp2Rf64Q.js new file mode 100644 index 0000000000..a6c7f95c7a --- /dev/null +++ b/ems-engine/src/main/webapp/assets/Show-fp2Rf64Q.js @@ -0,0 +1 @@ +import{_ as S,g as X,P as G,a as v,t as z,b as $,w as E,e as P,r as y,c as M,f as d,o as r,h as u,i,F as A,j as F,n as q,k as _,l as o,m as x,p as N,q as H,s as J,d as Y,v as Z,x as W,y as ee,z as te,A as se,B as oe,$ as ne,D as ie,C as re,E as ae,G as le,H as de,I as ce,J as ue,u as fe,K as pe}from"./index-CjLz75tu.js";import{s as O,a as B,b as me,c as ge}from"./inputicon.esm-C6x9HzWS.js";const ye={name:"DynamicTablePrime",components:{RiCloseCircleFill:G,RiCheckboxCircleFill:X,DataTable:B,Column:O},props:{rows:{type:Array,required:!0},search:{type:String,default:void 0}},emits:["update:search"],setup:function(n,{emit:e}){const f=v(()=>{const{rows:a}=z(n);let l=a.value;return Array.isArray(l)&&(l=l.map(m=>{const{password:t,...g}=m;return g})),l}),s=v(()=>{if(!Array.isArray(f.value)||f.value.length===0)return[];const a=f.value[0];return Object.keys(a).map(l=>({field:l,header:l.replace(/([A-Z])/g," $1").replace(/^./,m=>m.toUpperCase())}))}),h=v(()=>s.value.map(a=>a.field)),{search:p}=z(n),c=$({global:{value:p,matchMode:H.CONTAINS}});return E(p,a=>{c.value.global.value=a}),{toHumanString:P,filteredRows:f,dynamicColumns:s,globalFilterFields:h,search:p,filters:c}}},ve={key:0},_e={key:0,class:"text-green-600 text-sm flex flex-col items-center justify-center"},he={key:1,class:"text-red-600 text-sm flex flex-col items-center justify-center"},be={key:1,class:"!whitespace-pre-wrap"},we={class:"text-sm font-mono text-center"},xe={class:"text-gray-500"},Ce={class:"flex items-center gap-2 flex-nowrap whitespace-nowrap"},ke={key:1,class:"text-center py-8 flex-1"};function Re(n,e,f,s,h,p){const c=y("RiCheckboxCircleFill"),a=y("RiCloseCircleFill"),l=O,m=B;return Array.isArray(n.filteredRows)&&n.filteredRows.length>0?(r(),M(m,{key:0,value:n.filteredRows,paginator:!0,rows:100,rowsPerPageOptions:[50,100,250,500],globalFilterFields:n.globalFilterFields,globalFilter:f.search,filters:n.filters,"onUpdate:filters":e[0]||(e[0]=t=>n.filters=t),tableStyle:"min-width: 50rem",stripedRows:"",scrollable:"",scrollHeight:"flex",responsiveLayout:"scroll",resizableColumns:"",columnResizeMode:"expand",class:"p-datatable-sm"},{empty:u(()=>e[4]||(e[4]=[o("div",{class:"text-center p-4 text-lg"}," Nessun elemento ",-1)])),default:u(()=>[(r(!0),d(A,null,F(n.dynamicColumns,t=>(r(),M(l,{key:t.field,field:t.field,header:t.header,sortable:!0,class:q(["",{"!w-24 !flex-none justify-center":t.field==="active","!w-56 !flex-none justify-center":t.field==="deleteAfterImport"||t.field==="backupAfterImport"}])},{body:u(g=>[typeof g.data[t.field]=="boolean"?(r(),d("div",ve,[g.data[t.field]?(r(),d("div",_e,[i(c,{class:"w-5 h-5"}),e[1]||(e[1]=_(" Attivo ",-1))])):(r(),d("div",he,[i(a,{class:"w-5 h-5"}),e[2]||(e[2]=_(" Non attivo ",-1))]))])):t.field==="cronTrigger"?(r(),d("div",be,[o("span",we,x(g.data[t.field]),1),e[3]||(e[3]=o("br",null,null,-1)),o("small",xe,x(n.toHumanString(g.data[t.field])),1)])):(r(),d("div",{key:2,class:q({"text-xs !whitespace-pre-wrap":t.field==="id","text-sm font-mono":t.field==="type"||t.field==="format","text-sm !whitespace-pre-wrap line-clamp-3":t.field==="name"||t.field==="queryParams"||t.field==="methodName"||t.field==="body"||t.field==="whereCond"||t.field==="jsonRequest"||t.field==="rawContent","font-mono":t.field==="profileDb"})},x(g.data[t.field]),3))]),_:2},1032,["field","header","class"]))),128)),i(l,{header:"Azioni",class:"!w-64 !flex-none"},{body:u(t=>[o("div",Ce,[N(n.$slots,"default",{row:t.data})])]),_:3})]),_:3},8,["value","globalFilterFields","globalFilter","filters"])):(r(),d("div",ke,[i(a,{class:"w-12 h-12 text-gray-400 mx-auto mb-4"}),e[5]||(e[5]=o("p",{class:"text-gray-500 text-lg"},"Nessuna pianificata trovata",-1)),e[6]||(e[6]=o("p",{class:"text-gray-400 text-sm mt-1"},"Prova a modificare i filtri di ricerca o ad aggiungerne una",-1))]))}const U=S(ye,[["render",Re]]),$e={name:"DynamicTable",props:{rows:{type:Array,required:!0},search:{type:String,default:void 0}},emits:["search"],setup(n,{emit:e}){const f=v({get(){return n.search},set(h){e("update:search",h)}}),s=v(()=>{const{rows:h}=z(n);let p=h.value;return Array.isArray(p)&&(p=p.map(c=>(delete c.password,c)),f.value&&(p=p.filter(c=>{const a=new RegExp(J(f.value),"i");return Object.values(c).some(l=>a.test(l))}))),p});return{toHumanString:P,filteredRows:s}}},Ae={key:0,class:"overflow-x-auto"},Fe={class:"table table-report"},Se={key:0},Le={key:0,class:"text-theme-9"},Ie={key:1,class:"text-theme-6"},De={key:1},Te={key:2},je={class:"table-report__action w-56"},ze={class:"flex justify-center items-center"},Ee={key:1,class:"intro-x m-6 text-lg"};function Me(n,e,f,s,h,p){const c=y("CheckSquareIcon"),a=y("XSquareIcon");return Array.isArray(s.filteredRows)&&s.filteredRows.length>0?(r(),d("div",Ae,[o("table",Fe,[o("thead",null,[o("tr",null,[(r(!0),d(A,null,F(Object.keys(s.filteredRows[0]),(l,m)=>(r(),d("th",{class:"text-center whitespace-nowrap",key:m},x(l),1))),128)),e[0]||(e[0]=o("th",{class:"text-center whitespace-nowrap"}," Azioni ",-1))])]),o("tbody",null,[(r(!0),d(A,null,F(s.filteredRows,(l,m)=>(r(),d("tr",{class:"intro-x",key:m},[(r(!0),d(A,null,F(l,(t,g)=>(r(),d("td",{class:"text-center",key:g},[typeof t=="boolean"?(r(),d("div",Se,[t?(r(),d("div",Le,[i(c,{class:"mx-auto"}),e[1]||(e[1]=_(" Attivo ",-1))])):(r(),d("div",Ie,[i(a,{class:"mx-auto"}),e[2]||(e[2]=_(" Non attivo ",-1))]))])):g==="cronTrigger"?(r(),d("div",De,[_(x(t),1),e[3]||(e[3]=o("br",null,null,-1)),_(" "+x(s.toHumanString(t)),1)])):(r(),d("div",Te,x(t),1))]))),128)),o("td",je,[o("div",ze,[N(n.$slots,"default",{row:l})])])]))),128))])])])):(r(),d("div",Ee," Nessun elemento "))}const qe=S($e,[["render",Me]]),Ne=Y({name:"Modal",props:{showing:{type:Boolean,required:!0},icon:{type:String,default:"info"},title:{type:String,default:""},message:{type:String,default:"Messaggio informativo"}},emits:["showing"],setup(n,{emit:e}){return{showing:v({get(){return n.showing},set(s){e("update:showing",s)}})}}}),Pe={class:"modal-content"},He={class:"modal-body p-0"},Oe={class:"p-5 text-center"},Be={class:"text-3xl mt-5"},Ue=["innerHTML"],Ve={class:"px-5 pb-8 text-center"};function Ke(n,e,f,s,h,p){return r(),d("div",{class:q([{show:n.showing},"modal overflow-y-auto"]),style:{"margin-top":"0","margin-left":"0","padding-left":"0","z-index":"10000"},onClick:e[2]||(e[2]=c=>n.showing=!1)},[o("div",{class:"modal-dialog",onClick:e[1]||(e[1]=W(()=>{},["stop"]))},[o("div",Pe,[o("div",He,[o("div",Oe,[(r(),M(Z(n.icon),{class:"w-16 h-16 text-theme-6 mx-auto mt-3"})),o("div",Be,x(n.title),1),o("div",{class:"text-gray-600 mt-2",innerHTML:n.message},null,8,Ue)]),o("div",Ve,[N(n.$slots,"default",{},()=>[o("button",{onClick:e[0]||(e[0]=c=>n.showing=!1),type:"button",class:"btn w-24 btn-primary"}," Ok ")])])])])])],2)}const Qe=S(Ne,[["render",Ke]]),j="search",Xe={name:"SchedulerShow",components:{RiCloseCircleLine:ie,RiFilter2Fill:ne,RiFilter2Line:oe,RiSearchLine:se,RiAddLine:te,RiAddLargeLine:ee,DynamicTable:qe,DynamicTablePrime:U,Modal:Qe},setup(){const n=ue(),e=fe(),f=pe(),s=$(localStorage.getItem(j));E(v(()=>s.value),()=>{s.value?localStorage.setItem(j,s.value):localStorage.removeItem(j)});const h=v(()=>e.getters["main/isLoading"]),p=v(()=>e.getters["scheduler/getError"]),c=v(()=>n.params.type);E(c,()=>a());async function a(){await e.dispatch("scheduler/fetchAutomations",c.value)}a();const l=v(()=>e.getters["scheduler/getAutomations"]),m=$(!1),t=$(void 0);async function g(w){if(h.value)return;const C=f.warning(`Eseguo Pianificata ${w}`,{timeout:!1});await e.dispatch("scheduler/runAutomation",w),p.value?f.update(C,{content:`Errore pianificata: ${p.value.message}`,options:{type:"error",timeout:!1}}):f.update(C,{content:"Pianificata eseguita correttamente.",options:{type:"success",timeout:!1}})}function L(w){m.value=!0,t.value=w}async function I(){await e.dispatch("scheduler/deleteAutomation",t.value),await a(),m.value=!1}const D={active:{value:null,matchMode:H.EQUALS}},k=v(()=>l.value?Object.keys(l.value[0]):[]),R=v(()=>{let w=[];return Object.entries(D).forEach(([C,T])=>{k.value.includes(C)&&w.push({[C]:T})}),w});return{search:s,isLoading:h,type:c,automations:l,showDelete:m,onRun:g,onDelete:L,onConfirmDelete:I,automationKeys:k,computedFilters:R}}},Ge={class:"view-container"},Je={class:"view-card"},Ye={class:"card-header p-2"},Ze={class:"flex flex-col sm:flex-row sm:items-center sm:justify-between gap-4"},We={class:"card-body"},et={class:"inline-flex overflow-hidden shadow-sm"},tt={class:"inline-flex items-center justify-center gap-1"},st={class:"flex items-center gap-3 pt-4"};function ot(n,e,f,s,h,p){const c=y("RiAddLine"),a=ae,l=y("router-link"),m=y("RiFilter2Fill"),t=y("RiSearchLine"),g=me,L=de,I=ge,D=y("PlayCircleIcon"),k=y("EditIcon"),R=y("RouterLink"),w=y("CopyIcon"),C=y("Trash2Icon"),T=U,V=y("RiCloseCircleLine"),K=ce;return r(),d("div",Ge,[o("div",Je,[o("div",Ye,[o("div",Ze,[i(l,{to:{name:"scheduler.create"}},{default:u(()=>[i(a,{outlined:""},{default:u(()=>[i(c,{class:"w-5 h-5 mr-1"}),e[5]||(e[5]=_(" Crea Nuova Pianificata ",-1))]),_:1,__:[5]})]),_:1}),re(o("div",{onClick:e[0]||(e[0]=b=>s.search=void 0),class:"inline-flex items-center px-3 py-1.5 text-sm font-medium text-amber-700 bg-amber-50 border border-amber-200 rounded-lg cursor-pointer hover:bg-amber-100 transition-colors"},[i(m,{class:"w-4 h-4 mr-2"}),e[6]||(e[6]=_(" Filtro attivo - Clicca per rimuovere ",-1))],512),[[le,s.search]]),i(I,{"icon-position":"left"},{default:u(()=>[i(g,null,{default:u(()=>[i(t,{size:"16"})]),_:1}),i(L,{modelValue:s.search,"onUpdate:modelValue":e[1]||(e[1]=b=>s.search=b),placeholder:"Cerca nelle pianificate..."},null,8,["modelValue"])]),_:1})])]),o("div",We,[i(T,{rows:s.automations||[],search:s.search,"onUpdate:search":e[2]||(e[2]=b=>s.search=b)},{default:u(({row:b})=>[o("div",et,[i(a,{isLoading:s.isLoading,onClick:Q=>s.onRun(b.id),unstyled:"",class:"inline-flex items-center px-3 py-1.5 text-sm font-medium text-green-700 bg-green-50 border border-green-200 hover:bg-green-100 focus:ring-2 focus:ring-green-500 disabled:opacity-50 disabled:cursor-not-allowed transition-colors rounded-l-md border-r-0"},{default:u(()=>[i(D,{class:"mr-1",size:"14"}),e[7]||(e[7]=_(" Esegui ",-1))]),_:2,__:[7]},1032,["isLoading","onClick"]),i(R,{to:{name:"scheduler.edit",params:{type:s.type,id:b.id}},class:"inline-flex items-center px-3 py-1.5 text-xs font-medium text-blue-700 bg-blue-50 border border-blue-200 hover:bg-blue-100 focus:ring-2 focus:ring-blue-500 transition-colors border-r-0"},{default:u(()=>[i(k,{class:"",size:"14"})]),_:2},1032,["to"]),i(R,{to:{name:"scheduler.duplicate",params:{type:s.type,id:b.id}},class:"inline-flex items-center px-3 py-1.5 text-xs font-medium text-purple-700 bg-purple-50 border border-purple-200 hover:bg-purple-100 focus:ring-2 focus:ring-purple-500 transition-colors border-r-0"},{default:u(()=>[i(w,{class:"",size:"14"})]),_:2},1032,["to"]),i(a,{onClick:Q=>s.onDelete(b.id),loading:s.isLoading,unstyled:"",class:"inline-flex items-center px-3 py-1.5 text-xs font-medium text-red-700 bg-red-50 border border-red-200 hover:bg-red-100 focus:ring-2 focus:ring-red-500 transition-colors rounded-r-md"},{default:u(()=>[i(C,{class:"",size:"14"})]),_:2},1032,["onClick","loading"])])]),_:1},8,["rows","search"])])]),i(K,{visible:s.showDelete,"onUpdate:visible":e[4]||(e[4]=b=>s.showDelete=b),modal:"",dismissableMask:""},{header:u(()=>[o("div",tt,[i(V,{class:"w-5 h-5 mx-auto text-red-600"}),e[8]||(e[8]=o("span",{class:"font-bold whitespace-nowrap"},"Conferma Eliminazione",-1))])]),footer:u(()=>[o("div",st,[i(a,{severity:"secondary",onClick:e[3]||(e[3]=b=>s.showDelete=!1)},{default:u(()=>e[9]||(e[9]=[_(" Annulla ",-1)])),_:1,__:[9]}),i(a,{severity:"danger",onClick:s.onConfirmDelete},{default:u(()=>e[10]||(e[10]=[_(" Elimina ",-1)])),_:1,__:[10]},8,["onClick"])])]),default:u(()=>[e[11]||(e[11]=o("div",{class:"p-2 text-center"},[o("span",{class:"text-gray-600 mt-2"},[_("Sei sicuro di voler eliminare questa pianificazione?"),o("br"),_("Questa operazione non può essere annullata.")])],-1))]),_:1,__:[11]},8,["visible"])])}const rt=S(Xe,[["render",ot]]);export{rt as default}; diff --git a/ems-engine/src/main/webapp/assets/auto-BhKXhXEV.js b/ems-engine/src/main/webapp/assets/auto-BhKXhXEV.js deleted file mode 100644 index 9af0e3b777..0000000000 --- a/ems-engine/src/main/webapp/assets/auto-BhKXhXEV.js +++ /dev/null @@ -1 +0,0 @@ -import{aI as a,aJ as r}from"./index-BNu-F4v_.js";a.register(...r);export{a as default}; diff --git a/ems-engine/src/main/webapp/assets/auto-IuxBkHCG.js b/ems-engine/src/main/webapp/assets/auto-IuxBkHCG.js new file mode 100644 index 0000000000..8148aff03b --- /dev/null +++ b/ems-engine/src/main/webapp/assets/auto-IuxBkHCG.js @@ -0,0 +1 @@ +import{aI as a,aJ as r}from"./index-CjLz75tu.js";a.register(...r);export{a as default}; diff --git a/ems-engine/src/main/webapp/assets/index-BNu-F4v_.js b/ems-engine/src/main/webapp/assets/index-CjLz75tu.js similarity index 99% rename from ems-engine/src/main/webapp/assets/index-BNu-F4v_.js rename to ems-engine/src/main/webapp/assets/index-CjLz75tu.js index a0d149322b..9cc1da9337 100644 --- a/ems-engine/src/main/webapp/assets/index-BNu-F4v_.js +++ b/ems-engine/src/main/webapp/assets/index-CjLz75tu.js @@ -1,4 +1,4 @@ -const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["./Show-Dt5Jwlxb.js","./inputicon.esm-E72BkL95.js","./Create-5nY6itgI.js","./DynamicForm-CXexLuSl.js","./DynamicForm-DIkU8B8M.css","./Edit-DW9sMVCT.js","./Logs-DBkArgPL.js","./Logs-DuUL4Ses.css","./Migrations-B5ntuiU0.js","./Migrations-Chjo_uO6.css"])))=>i.map(i=>d[i]); +const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["./Show-fp2Rf64Q.js","./inputicon.esm-C6x9HzWS.js","./Create-Df0N-lQr.js","./DynamicForm-DWX-KwGX.js","./DynamicForm-Crr4ugnC.css","./Edit-F4sVz2t7.js","./Logs-BXHYXSnL.js","./Logs-DuUL4Ses.css","./Migrations-BDJEuV9K.js","./Migrations-Chjo_uO6.css"])))=>i.map(i=>d[i]); var rw=Object.defineProperty;var iw=(e,t,n)=>t in e?rw(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;var tu=(e,t,n)=>iw(e,typeof t!="symbol"?t+"":t,n);(function(){const t=document.createElement("link").relList;if(t&&t.supports&&t.supports("modulepreload"))return;for(const i of document.querySelectorAll('link[rel="modulepreload"]'))r(i);new MutationObserver(i=>{for(const o of i)if(o.type==="childList")for(const s of o.addedNodes)s.tagName==="LINK"&&s.rel==="modulepreload"&&r(s)}).observe(document,{childList:!0,subtree:!0});function n(i){const o={};return i.integrity&&(o.integrity=i.integrity),i.referrerPolicy&&(o.referrerPolicy=i.referrerPolicy),i.crossOrigin==="use-credentials"?o.credentials="include":i.crossOrigin==="anonymous"?o.credentials="omit":o.credentials="same-origin",o}function r(i){if(i.ep)return;i.ep=!0;const o=n(i);fetch(i.href,o)}})();/** * @vue/shared v3.5.18 * (c) 2018-present Yuxi (Evan) You and Vue contributors @@ -113,7 +113,7 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho } } `);this.styleElement.innerHTML=n}},destroyStyle:function(){this.styleElement&&(document.head.removeChild(this.styleElement),this.styleElement=null)},initDrag:function(t){t.target.closest("div").getAttribute("data-pc-section")!=="icons"&&this.draggable&&(this.dragging=!0,this.lastPageX=t.pageX,this.lastPageY=t.pageY,this.container.style.margin="0",document.body.setAttribute("data-p-unselectable-text","true"),!this.isUnstyled&&me.addClass(document.body,"p-unselectable-text"))},bindGlobalListeners:function(){this.draggable&&(this.bindDocumentDragListener(),this.bindDocumentDragEndListener()),this.closeOnEscape&&this.closable&&this.bindDocumentKeyDownListener()},unbindGlobalListeners:function(){this.unbindDocumentDragListener(),this.unbindDocumentDragEndListener(),this.unbindDocumentKeyDownListener()},bindDocumentDragListener:function(){var t=this;this.documentDragListener=function(n){if(t.dragging){var r=me.getOuterWidth(t.container),i=me.getOuterHeight(t.container),o=n.pageX-t.lastPageX,s=n.pageY-t.lastPageY,a=t.container.getBoundingClientRect(),l=a.left+o,u=a.top+s,c=me.getViewport(),f=getComputedStyle(t.container),d=parseFloat(f.marginLeft),p=parseFloat(f.marginTop);t.container.style.position="fixed",t.keepInViewport?(l>=t.minX&&l+r=t.minY&&u+i0}}},E5=["value","aria-invalid"];function A5(e,t,n,r,i,o){return F(),K("input",b({class:e.cx("root"),value:e.modelValue,"aria-invalid":e.invalid||void 0,onInput:t[0]||(t[0]=function(){return o.onInput&&o.onInput.apply(o,arguments)})},o.getPTOptions("root")),null,16,E5)}Hh.render=A5;const I5={class:"flex flex-col items-center text-center"},P5={class:"w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mb-4"},j5={class:"px-6"},D5={class:"mb-6 flex flex-col gap-2"},$5={key:0,class:"mt-2 flex items-center text-sm text-red-600"},L5={class:"flex flex-col space-y-3"},R5={__name:"LoginModal",props:["visible"],emits:["update:visible"],setup(e,{emit:t}){const n=Bt({user:{password:void 0}}),r=Bi(),i=fe(()=>r.getters["main/isLoading"]),o=fe(()=>r.getters["main/getError"]),s=e,a=t,l=rt(null),u=fe({get(){return s.visible},set(d){a("update:visible",d)}});function c(){u.value=!1}async function f(){await r.dispatch("main/login",n.user),o.value?l.value.$el.focus():(n.user.password=void 0,c())}return(d,p)=>{const g=Hh,m=Sl,y=Vh;return F(),Te(y,{visible:u.value,"onUpdate:visible":p[1]||(p[1]=v=>u.value=v),modal:!0,dismissableMask:!0,draggable:!1,closable:!1,class:"modern-login-dialog",style:{width:"400px"},maskStyle:{backgroundColor:"rgba(0, 0, 0, 0.5)"}},{header:Ue(()=>[k("div",I5,[k("div",P5,[h(ee(A6),{class:"text-blue-600",size:"26"})]),p[2]||(p[2]=k("h2",{class:"text-xl font-bold mb-2"},"Accesso al Sistema",-1)),p[3]||(p[3]=k("p",{class:"text-sm p-text-secondary"},"Inserisci la password per accedere al pannello di gestione",-1))])]),default:Ue(()=>[k("div",j5,[k("div",D5,[p[4]||(p[4]=k("label",{for:"password"},"Password",-1)),h(g,{type:"password",modelValue:n.user.password,"onUpdate:modelValue":p[0]||(p[0]=v=>n.user.password=v),onKeyup:fc(f,["enter"]),id:"password",ref_key:"passwordInput",ref:l,autofocus:"",placeholder:"Inserisci la tua password",invalid:o.value},null,8,["modelValue","invalid"]),o.value?(F(),K("div",$5,[h(ee(u2),{class:"w-4 h-4 mr-2"}),lt(" "+Se(o.value.message),1)])):ze("",!0)]),k("div",L5,[h(m,{onClick:f,disabled:!n.user.password,loading:i.value,class:"justify-center"},{default:Ue(()=>[i.value?(F(),Te(ee(Sc),{key:0,size:"16",class:"animate-spin mr-2"})):(F(),Te(ee(h2),{key:1,class:"mr-2",size:"16"})),lt(" "+Se(i.value?"Verifica in corso...":"Accedi al Sistema"),1)]),_:1},8,["disabled","loading"]),h(m,{onClick:c,disabled:i.value,severity:"secondary",class:"justify-center"},{default:Ue(()=>p[5]||(p[5]=[lt(" Annulla ",-1)])),_:1,__:[5]},8,["disabled"])]),p[6]||(p[6]=k("div",{class:"mt-6 pt-4 border-t border-gray-100"},[k("p",{class:"text-xs text-gray-500 text-center"}," Accesso sicuro al pannello di gestione ")],-1))])]),_:1},8,["visible"])}}};var kc={name:"CheckIcon",extends:Sr},B5=k("path",{d:"M4.86199 11.5948C4.78717 11.5923 4.71366 11.5745 4.64596 11.5426C4.57826 11.5107 4.51779 11.4652 4.46827 11.4091L0.753985 7.69483C0.683167 7.64891 0.623706 7.58751 0.580092 7.51525C0.536478 7.44299 0.509851 7.36177 0.502221 7.27771C0.49459 7.19366 0.506156 7.10897 0.536046 7.03004C0.565935 6.95111 0.613367 6.88 0.674759 6.82208C0.736151 6.76416 0.8099 6.72095 0.890436 6.69571C0.970973 6.67046 1.05619 6.66385 1.13966 6.67635C1.22313 6.68886 1.30266 6.72017 1.37226 6.76792C1.44186 6.81567 1.4997 6.8786 1.54141 6.95197L4.86199 10.2503L12.6397 2.49483C12.7444 2.42694 12.8689 2.39617 12.9932 2.40745C13.1174 2.41873 13.2343 2.47141 13.3251 2.55705C13.4159 2.64268 13.4753 2.75632 13.4938 2.87973C13.5123 3.00315 13.4888 3.1292 13.4271 3.23768L5.2557 11.4091C5.20618 11.4652 5.14571 11.5107 5.07801 11.5426C5.01031 11.5745 4.9368 11.5923 4.86199 11.5948Z",fill:"currentColor"},null,-1),X5=[B5];function F5(e,t,n,r,i,o){return F(),K("svg",b({width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},e.pti()),X5,16)}kc.render=F5;var Tc={name:"ExclamationTriangleIcon",extends:Sr},V5=k("path",{d:"M13.4018 13.1893H0.598161C0.49329 13.189 0.390283 13.1615 0.299143 13.1097C0.208003 13.0578 0.131826 12.9832 0.0780112 12.8932C0.0268539 12.8015 0 12.6982 0 12.5931C0 12.4881 0.0268539 12.3848 0.0780112 12.293L6.47985 1.08982C6.53679 1.00399 6.61408 0.933574 6.70484 0.884867C6.7956 0.836159 6.897 0.810669 7 0.810669C7.103 0.810669 7.2044 0.836159 7.29516 0.884867C7.38592 0.933574 7.46321 1.00399 7.52015 1.08982L13.922 12.293C13.9731 12.3848 14 12.4881 14 12.5931C14 12.6982 13.9731 12.8015 13.922 12.8932C13.8682 12.9832 13.792 13.0578 13.7009 13.1097C13.6097 13.1615 13.5067 13.189 13.4018 13.1893ZM1.63046 11.989H12.3695L7 2.59425L1.63046 11.989Z",fill:"currentColor"},null,-1),H5=k("path",{d:"M6.99996 8.78801C6.84143 8.78594 6.68997 8.72204 6.57787 8.60993C6.46576 8.49782 6.40186 8.34637 6.39979 8.18784V5.38703C6.39979 5.22786 6.46302 5.0752 6.57557 4.96265C6.68813 4.85009 6.84078 4.78686 6.99996 4.78686C7.15914 4.78686 7.31179 4.85009 7.42435 4.96265C7.5369 5.0752 7.60013 5.22786 7.60013 5.38703V8.18784C7.59806 8.34637 7.53416 8.49782 7.42205 8.60993C7.30995 8.72204 7.15849 8.78594 6.99996 8.78801Z",fill:"currentColor"},null,-1),W5=k("path",{d:"M6.99996 11.1887C6.84143 11.1866 6.68997 11.1227 6.57787 11.0106C6.46576 10.8985 6.40186 10.7471 6.39979 10.5885V10.1884C6.39979 10.0292 6.46302 9.87658 6.57557 9.76403C6.68813 9.65147 6.84078 9.58824 6.99996 9.58824C7.15914 9.58824 7.31179 9.65147 7.42435 9.76403C7.5369 9.87658 7.60013 10.0292 7.60013 10.1884V10.5885C7.59806 10.7471 7.53416 10.8985 7.42205 11.0106C7.30995 11.1227 7.15849 11.1866 6.99996 11.1887Z",fill:"currentColor"},null,-1),U5=[V5,H5,W5];function Y5(e,t,n,r,i,o){return F(),K("svg",b({width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},e.pti()),U5,16)}Tc.render=Y5;var Cc={name:"InfoCircleIcon",extends:Sr},G5=k("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M3.11101 12.8203C4.26215 13.5895 5.61553 14 7 14C8.85652 14 10.637 13.2625 11.9497 11.9497C13.2625 10.637 14 8.85652 14 7C14 5.61553 13.5895 4.26215 12.8203 3.11101C12.0511 1.95987 10.9579 1.06266 9.67879 0.532846C8.3997 0.00303296 6.99224 -0.13559 5.63437 0.134506C4.2765 0.404603 3.02922 1.07129 2.05026 2.05026C1.07129 3.02922 0.404603 4.2765 0.134506 5.63437C-0.13559 6.99224 0.00303296 8.3997 0.532846 9.67879C1.06266 10.9579 1.95987 12.0511 3.11101 12.8203ZM3.75918 2.14976C4.71846 1.50879 5.84628 1.16667 7 1.16667C8.5471 1.16667 10.0308 1.78125 11.1248 2.87521C12.2188 3.96918 12.8333 5.45291 12.8333 7C12.8333 8.15373 12.4912 9.28154 11.8502 10.2408C11.2093 11.2001 10.2982 11.9478 9.23232 12.3893C8.16642 12.8308 6.99353 12.9463 5.86198 12.7212C4.73042 12.4962 3.69102 11.9406 2.87521 11.1248C2.05941 10.309 1.50384 9.26958 1.27876 8.13803C1.05367 7.00647 1.16919 5.83358 1.61071 4.76768C2.05222 3.70178 2.79989 2.79074 3.75918 2.14976ZM7.00002 4.8611C6.84594 4.85908 6.69873 4.79698 6.58977 4.68801C6.48081 4.57905 6.4187 4.43185 6.41669 4.27776V3.88888C6.41669 3.73417 6.47815 3.58579 6.58754 3.4764C6.69694 3.367 6.84531 3.30554 7.00002 3.30554C7.15473 3.30554 7.3031 3.367 7.4125 3.4764C7.52189 3.58579 7.58335 3.73417 7.58335 3.88888V4.27776C7.58134 4.43185 7.51923 4.57905 7.41027 4.68801C7.30131 4.79698 7.1541 4.85908 7.00002 4.8611ZM7.00002 10.6945C6.84594 10.6925 6.69873 10.6304 6.58977 10.5214C6.48081 10.4124 6.4187 10.2652 6.41669 10.1111V6.22225C6.41669 6.06754 6.47815 5.91917 6.58754 5.80977C6.69694 5.70037 6.84531 5.63892 7.00002 5.63892C7.15473 5.63892 7.3031 5.70037 7.4125 5.80977C7.52189 5.91917 7.58335 6.06754 7.58335 6.22225V10.1111C7.58134 10.2652 7.51923 10.4124 7.41027 10.5214C7.30131 10.6304 7.1541 10.6925 7.00002 10.6945Z",fill:"currentColor"},null,-1),q5=[G5];function Z5(e,t,n,r,i,o){return F(),K("svg",b({width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},e.pti()),q5,16)}Cc.render=Z5;var Mc={name:"TimesCircleIcon",extends:Sr},K5=k("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M7 14C5.61553 14 4.26215 13.5895 3.11101 12.8203C1.95987 12.0511 1.06266 10.9579 0.532846 9.67879C0.00303296 8.3997 -0.13559 6.99224 0.134506 5.63437C0.404603 4.2765 1.07129 3.02922 2.05026 2.05026C3.02922 1.07129 4.2765 0.404603 5.63437 0.134506C6.99224 -0.13559 8.3997 0.00303296 9.67879 0.532846C10.9579 1.06266 12.0511 1.95987 12.8203 3.11101C13.5895 4.26215 14 5.61553 14 7C14 8.85652 13.2625 10.637 11.9497 11.9497C10.637 13.2625 8.85652 14 7 14ZM7 1.16667C5.84628 1.16667 4.71846 1.50879 3.75918 2.14976C2.79989 2.79074 2.05222 3.70178 1.61071 4.76768C1.16919 5.83358 1.05367 7.00647 1.27876 8.13803C1.50384 9.26958 2.05941 10.309 2.87521 11.1248C3.69102 11.9406 4.73042 12.4962 5.86198 12.7212C6.99353 12.9463 8.16642 12.8308 9.23232 12.3893C10.2982 11.9478 11.2093 11.2001 11.8502 10.2408C12.4912 9.28154 12.8333 8.15373 12.8333 7C12.8333 5.45291 12.2188 3.96918 11.1248 2.87521C10.0308 1.78125 8.5471 1.16667 7 1.16667ZM4.66662 9.91668C4.58998 9.91704 4.51404 9.90209 4.44325 9.87271C4.37246 9.84333 4.30826 9.8001 4.2544 9.74557C4.14516 9.6362 4.0838 9.48793 4.0838 9.33335C4.0838 9.17876 4.14516 9.0305 4.2544 8.92113L6.17553 7L4.25443 5.07891C4.15139 4.96832 4.09529 4.82207 4.09796 4.67094C4.10063 4.51982 4.16185 4.37563 4.26872 4.26876C4.3756 4.16188 4.51979 4.10066 4.67091 4.09799C4.82204 4.09532 4.96829 4.15142 5.07887 4.25446L6.99997 6.17556L8.92106 4.25446C9.03164 4.15142 9.1779 4.09532 9.32903 4.09799C9.48015 4.10066 9.62434 4.16188 9.73121 4.26876C9.83809 4.37563 9.89931 4.51982 9.90198 4.67094C9.90464 4.82207 9.84855 4.96832 9.74551 5.07891L7.82441 7L9.74554 8.92113C9.85478 9.0305 9.91614 9.17876 9.91614 9.33335C9.91614 9.48793 9.85478 9.6362 9.74554 9.74557C9.69168 9.8001 9.62748 9.84333 9.55669 9.87271C9.4859 9.90209 9.40996 9.91704 9.33332 9.91668C9.25668 9.91704 9.18073 9.90209 9.10995 9.87271C9.03916 9.84333 8.97495 9.8001 8.9211 9.74557L6.99997 7.82444L5.07884 9.74557C5.02499 9.8001 4.96078 9.84333 4.88999 9.87271C4.81921 9.90209 4.74326 9.91704 4.66662 9.91668Z",fill:"currentColor"},null,-1),J5=[K5];function Q5(e,t,n,r,i,o){return F(),K("svg",b({width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},e.pti()),J5,16)}Mc.render=Q5;var eS={root:function(t){var n=t.props;return"p-message p-component p-message-"+n.severity},wrapper:"p-message-wrapper",icon:"p-message-icon",text:"p-message-text",closeButton:"p-message-close p-link",closeIcon:"p-message-close-icon"},tS=rn.extend({name:"message",classes:eS}),nS={name:"BaseMessage",extends:ri,props:{severity:{type:String,default:"info"},closable:{type:Boolean,default:!0},sticky:{type:Boolean,default:!0},life:{type:Number,default:3e3},icon:{type:String,default:void 0},closeIcon:{type:String,default:void 0},closeButtonProps:{type:null,default:null}},style:tS,provide:function(){return{$parentInstance:this}}},m2={name:"Message",extends:nS,inheritAttrs:!1,emits:["close","life-end"],timeout:null,data:function(){return{visible:!0}},watch:{sticky:function(t){t||this.closeAfterDelay()}},mounted:function(){this.sticky||this.closeAfterDelay()},methods:{close:function(t){this.visible=!1,this.$emit("close",t)},closeAfterDelay:function(){var t=this;setTimeout(function(){t.visible=!1,t.$emit("life-end")},this.life)}},computed:{iconComponent:function(){return{info:Cc,success:kc,warn:Tc,error:Mc}[this.severity]},closeAriaLabel:function(){return this.$primevue.config.locale.aria?this.$primevue.config.locale.aria.close:void 0}},directives:{ripple:Ph},components:{TimesIcon:Fh,InfoCircleIcon:Cc,CheckIcon:kc,ExclamationTriangleIcon:Tc,TimesCircleIcon:Mc}};function Js(e){"@babel/helpers - typeof";return Js=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Js(e)}function pp(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(e,i).enumerable})),n.push.apply(n,r)}return n}function Er(e){for(var t=1;tr.getters["main/isLoading"]),o=fe(()=>r.getters["main/getError"]),s=e,a=t,l=rt(null),u=fe({get(){return s.visible},set(d){a("update:visible",d)}});function c(){u.value=!1}async function f(){await r.dispatch("main/changePassword",n),o.value?l.value.$el.focus():(n.oldPassword=void 0,n.newPassword=void 0,c())}return(d,p)=>{const g=Hh,m=Sl,y=m2,v=Vh;return F(),Te(v,{header:"Cambio Password",visible:u.value,"onUpdate:visible":p[2]||(p[2]=w=>u.value=w),modal:!0,dismissableMask:!0,contentStyle:{"padding-top":"2rem"}},{footer:Ue(()=>[h(m,{label:"Annulla",onClick:c,class:"p-button-text"}),h(m,{label:"Cambia Password",onClick:f,loading:i.value},null,8,["loading"]),o.value?(F(),Te(y,{key:0,severity:"error",closable:!1},{default:Ue(()=>[lt(Se(o.value.message),1)]),_:1})):ze("",!0)]),default:Ue(()=>[k("div",lS,[k("span",uS,[h(g,{type:"password",modelValue:n.oldPassword,"onUpdate:modelValue":p[0]||(p[0]=w=>n.oldPassword=w),onKeyup:fc(f,["enter",""]),class:"p-column-filter w-full",id:"oldPassword",ref_key:"oldPasswordInput",ref:l,disabled:i.value,autofocus:""},null,8,["modelValue","disabled"]),p[3]||(p[3]=k("label",{for:"oldPassword"},"Vecchia Password",-1))]),k("span",cS,[h(g,{type:"password",modelValue:n.newPassword,"onUpdate:modelValue":p[1]||(p[1]=w=>n.newPassword=w),onKeyup:fc(f,["enter",""]),class:"p-column-filter w-full",id:"newPassword",disabled:i.value},null,8,["modelValue","disabled"]),p[4]||(p[4]=k("label",{for:"newPassword"},"Nuova Password",-1))])])]),_:1},8,["visible"])}}};var xt={STARTS_WITH:"startsWith",CONTAINS:"contains",NOT_CONTAINS:"notContains",ENDS_WITH:"endsWith",EQUALS:"equals",NOT_EQUALS:"notEquals",LESS_THAN:"lt",LESS_THAN_OR_EQUAL_TO:"lte",GREATER_THAN:"gt",GREATER_THAN_OR_EQUAL_TO:"gte",DATE_IS:"dateIs",DATE_IS_NOT:"dateIsNot",DATE_BEFORE:"dateBefore",DATE_AFTER:"dateAfter"},SZ={AND:"and",OR:"or"};function gp(e,t){var n=typeof Symbol<"u"&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=fS(e))||t){n&&(e=n);var r=0,i=function(){};return{s:i,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(u){throw u},f:i}}throw new TypeError(`Invalid attempt to iterate non-iterable instance. -In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}var o=!0,s=!1,a;return{s:function(){n=n.call(e)},n:function(){var u=n.next();return o=u.done,u},e:function(u){s=!0,a=u},f:function(){try{!o&&n.return!=null&&n.return()}finally{if(s)throw a}}}}function fS(e,t){if(e){if(typeof e=="string")return mp(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(e);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return mp(e,t)}}function mp(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);nn.getTime():t>n},gte:function(t,n){return n==null?!0:t==null?!1:t.getTime&&n.getTime?t.getTime()>=n.getTime():t>=n},dateIs:function(t,n){return n==null?!0:t==null?!1:t.toDateString()===n.toDateString()},dateIsNot:function(t,n){return n==null?!0:t==null?!1:t.toDateString()!==n.toDateString()},dateBefore:function(t,n){return n==null?!0:t==null?!1:t.getTime()n.getTime()}},register:function(t,n){this.filters[t]=n}};function Qs(e){"@babel/helpers - typeof";return Qs=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Qs(e)}function yp(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(e,i).enumerable})),n.push.apply(n,r)}return n}function Su(e){for(var t=1;tt.getters["main/isSystemOkInError"]),r=fe(()=>t.getters["main/getSystemOkStatus"]),i=fe(()=>t.getters["main/getSystemOkStatusCode"]),o=fe(()=>t.getters["main/getSystemOkStatusErrorMessage"]);fe(()=>t.getters["main/isLoading"]);const s=fe(()=>t.getters["main/isAuthenticated"]),a=rt(!1),l=rt(!1),u=Bh();function c(){t.dispatch("main/logout"),u.push({name:"dashboard"})}return(f,d)=>{var m,y,v;const p=Sl,g=wt("router-view");return F(),K("main",null,[h(S6),k("div",bS,[h(Q6),k("header",wS,[k("div",xS,[f.$route.meta.title?(F(),K("div",_S,[k("span",OS,Se(f.$route.meta.title),1),k("p",SS,Se(f.$route.meta.subtitle),1)])):ze("",!0),d[4]||(d[4]=k("h1",{class:"page-title"},null,-1))]),k("div",kS,[k("div",{class:Re({"status-indicator-small ":!0,"bg-green-200":i.value===200,"bg-yellow-200 animate-pulse":!((m=r.value)!=null&&m.response)||i.value>400&&i.value<500,"bg-red-200 animate-pulse":i.value>500})},[k("div",{class:Re({"status-dot-small":!0,"status-dot--success animate-pulse":i.value===200,"status-dot--warning":!((y=r.value)!=null&&y.response)||i.value>400&&i.value<500,"status-dot--error":i.value>500})},null,2),k("span",{class:Re({"status-text-small":!0,"text-green-700 font-medium":i.value===200,"text-yellow-700 font-bold":!((v=r.value)!=null&&v.response)||i.value>400&&i.value<500,"text-red-700 font-bold":i.value>500})},Se(n.value?o.value:"Online"),3)],2),k("div",TS,[s.value?(F(),K("div",MS,[h(p,{severity:"secondary",onClick:d[1]||(d[1]=w=>l.value=!0),outlined:""},{default:Ue(()=>[h(ee(N6),{class:"mr-2",size:"16"}),d[6]||(d[6]=lt(" Cambia Password ",-1))]),_:1,__:[6]}),h(p,{severity:"danger",onClick:c,outlined:""},{default:Ue(()=>[h(ee(I6),{class:"mr-2",size:"16"}),d[7]||(d[7]=lt(" Esci ",-1))]),_:1,__:[7]})])):(F(),K("div",CS,[h(p,{severity:"primary",onClick:d[0]||(d[0]=w=>l.value=!0)},{default:Ue(()=>[h(ee(h2),{class:"mr-2",size:"16"}),d[5]||(d[5]=lt(" Accedi ",-1))]),_:1,__:[5]})]))])])]),k("main",zS,[h(g)])]),h(R5,{visible:l.value,"onUpdate:visible":d[2]||(d[2]=w=>l.value=w)},null,8,["visible"]),h(hS,{visible:a.value,"onUpdate:visible":d[3]||(d[3]=w=>a.value=w)},null,8,["visible"])])}}},ES="modulepreload",AS=function(e,t){return new URL(e,t).href},bp={},ar=function(t,n,r){let i=Promise.resolve();if(n&&n.length>0){const s=document.getElementsByTagName("link"),a=document.querySelector("meta[property=csp-nonce]"),l=(a==null?void 0:a.nonce)||(a==null?void 0:a.getAttribute("nonce"));i=Promise.allSettled(n.map(u=>{if(u=AS(u,r),u in bp)return;bp[u]=!0;const c=u.endsWith(".css"),f=c?'[rel="stylesheet"]':"";if(!!r)for(let g=s.length-1;g>=0;g--){const m=s[g];if(m.href===u&&(!c||m.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${u}"]${f}`))return;const p=document.createElement("link");if(p.rel=c?"stylesheet":ES,c||(p.as="script"),p.crossOrigin="",p.href=u,l&&p.setAttribute("nonce",l),document.head.appendChild(p),c)return new Promise((g,m)=>{p.addEventListener("load",g),p.addEventListener("error",()=>m(new Error(`Unable to preload CSS for ${u}`)))})}))}function o(s){const a=new Event("vite:preloadError",{cancelable:!0});if(a.payload=s,window.dispatchEvent(a),!a.defaultPrevented)throw s}return i.then(s=>{for(const a of s||[])a.status==="rejected"&&o(a.reason);return t().catch(o)})};var IS={root:{position:"relative"}},PS={root:"p-chart"},jS=rn.extend({name:"chart",inlineStyles:IS,classes:PS}),DS={name:"BaseChart",extends:ri,props:{type:String,data:null,options:null,plugins:null,width:{type:Number,default:300},height:{type:Number,default:150},canvasProps:{type:null,default:null}},style:jS,provide:function(){return{$parentInstance:this}}},y2={name:"Chart",extends:DS,inheritAttrs:!1,emits:["select","loaded"],chart:null,watch:{data:{handler:function(){this.reinit()},deep:!0},type:function(){this.reinit()},options:function(){this.reinit()}},mounted:function(){this.initChart()},beforeUnmount:function(){this.chart&&(this.chart.destroy(),this.chart=null)},methods:{initChart:function(){var t=this;ar(()=>import("./auto-BhKXhXEV.js"),[],import.meta.url).then(function(n){t.chart&&(t.chart.destroy(),t.chart=null),n&&n.default&&(t.chart=new n.default(t.$refs.canvas,{type:t.type,data:t.data,options:t.options,plugins:t.plugins})),t.$emit("loaded",t.chart)})},getCanvas:function(){return this.$canvas},getChart:function(){return this.chart},getBase64Image:function(){return this.chart.toBase64Image()},refresh:function(){this.chart&&this.chart.update()},reinit:function(){this.initChart()},onCanvasClick:function(t){if(this.chart){var n=this.chart.getElementsAtEventForMode(t,"nearest",{intersect:!0},!1),r=this.chart.getElementsAtEventForMode(t,"dataset",{intersect:!0},!1);n&&n[0]&&r&&this.$emit("select",{originalEvent:t,element:n[0],dataset:r})}},generateLegend:function(){if(this.chart)return this.chart.generateLegend()}}};function eo(e){"@babel/helpers - typeof";return eo=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},eo(e)}function wp(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(e,i).enumerable})),n.push.apply(n,r)}return n}function xp(e){for(var t=1;t',1)]),8,VS)):e.icon=="ball-triangle"?(F(),K("svg",{key:1,width:e.size,viewBox:"0 0 57 57",xmlns:"http://www.w3.org/2000/svg"},[k("g",WS,[k("g",US,[k("circle",{cx:"5",cy:"50",r:"5",fill:e.color},t[1]||(t[1]=[k("animate",{attributeName:"cy",begin:"0s",dur:"2.2s",values:"50;5;50;50",calcMode:"linear",repeatCount:"indefinite"},null,-1),k("animate",{attributeName:"cx",begin:"0s",dur:"2.2s",values:"5;27;49;5",calcMode:"linear",repeatCount:"indefinite"},null,-1)]),8,YS),k("circle",{cx:"27",cy:"5",r:"5",fill:e.color},t[2]||(t[2]=[k("animate",{attributeName:"cy",begin:"0s",dur:"2.2s",from:"5",to:"5",values:"5;50;50;5",calcMode:"linear",repeatCount:"indefinite"},null,-1),k("animate",{attributeName:"cx",begin:"0s",dur:"2.2s",from:"27",to:"27",values:"27;49;5;27",calcMode:"linear",repeatCount:"indefinite"},null,-1)]),8,GS),k("circle",{cx:"49",cy:"50",r:"5",fill:e.color},t[3]||(t[3]=[k("animate",{attributeName:"cy",begin:"0s",dur:"2.2s",values:"50;50;5;50",calcMode:"linear",repeatCount:"indefinite"},null,-1),k("animate",{attributeName:"cx",from:"49",to:"49",begin:"0s",dur:"2.2s",values:"49;5;27;49",calcMode:"linear",repeatCount:"indefinite"},null,-1)]),8,qS)])])],8,HS)):e.icon=="bars"?(F(),K("svg",{key:2,width:e.size,viewBox:"0 0 135 140",xmlns:"http://www.w3.org/2000/svg",fill:e.color},t[4]||(t[4]=[Ln('',5)]),8,ZS)):e.icon=="circles"?(F(),K("svg",{key:3,width:e.size,viewBox:"0 0 135 135",xmlns:"http://www.w3.org/2000/svg",fill:e.color},t[5]||(t[5]=[k("path",{d:"M67.447 58c5.523 0 10-4.477 10-10s-4.477-10-10-10-10 4.477-10 10 4.477 10 10 10zm9.448 9.447c0 5.523 4.477 10 10 10 5.522 0 10-4.477 10-10s-4.478-10-10-10c-5.523 0-10 4.477-10 10zm-9.448 9.448c-5.523 0-10 4.477-10 10 0 5.522 4.477 10 10 10s10-4.478 10-10c0-5.523-4.477-10-10-10zM58 67.447c0-5.523-4.477-10-10-10s-10 4.477-10 10 4.477 10 10 10 10-4.477 10-10z"},[k("animateTransform",{attributeName:"transform",type:"rotate",from:"0 67 67",to:"-360 67 67",dur:"2.5s",repeatCount:"indefinite"})],-1),k("path",{d:"M28.19 40.31c6.627 0 12-5.374 12-12 0-6.628-5.373-12-12-12-6.628 0-12 5.372-12 12 0 6.626 5.372 12 12 12zm30.72-19.825c4.686 4.687 12.284 4.687 16.97 0 4.686-4.686 4.686-12.284 0-16.97-4.686-4.687-12.284-4.687-16.97 0-4.687 4.686-4.687 12.284 0 16.97zm35.74 7.705c0 6.627 5.37 12 12 12 6.626 0 12-5.373 12-12 0-6.628-5.374-12-12-12-6.63 0-12 5.372-12 12zm19.822 30.72c-4.686 4.686-4.686 12.284 0 16.97 4.687 4.686 12.285 4.686 16.97 0 4.687-4.686 4.687-12.284 0-16.97-4.685-4.687-12.283-4.687-16.97 0zm-7.704 35.74c-6.627 0-12 5.37-12 12 0 6.626 5.373 12 12 12s12-5.374 12-12c0-6.63-5.373-12-12-12zm-30.72 19.822c-4.686-4.686-12.284-4.686-16.97 0-4.686 4.687-4.686 12.285 0 16.97 4.686 4.687 12.284 4.687 16.97 0 4.687-4.685 4.687-12.283 0-16.97zm-35.74-7.704c0-6.627-5.372-12-12-12-6.626 0-12 5.373-12 12s5.374 12 12 12c6.628 0 12-5.373 12-12zm-19.823-30.72c4.687-4.686 4.687-12.284 0-16.97-4.686-4.686-12.284-4.686-16.97 0-4.687 4.686-4.687 12.284 0 16.97 4.686 4.687 12.284 4.687 16.97 0z"},[k("animateTransform",{attributeName:"transform",type:"rotate",from:"0 67 67",to:"360 67 67",dur:"8s",repeatCount:"indefinite"})],-1)]),8,KS)):e.icon=="grid"?(F(),K("svg",{key:4,width:e.size,viewBox:"0 0 105 105",xmlns:"http://www.w3.org/2000/svg",fill:e.color},t[6]||(t[6]=[Ln('',9)]),8,JS)):e.icon=="hearts"?(F(),K("svg",{key:5,width:e.size,viewBox:"0 0 140 64",xmlns:"http://www.w3.org/2000/svg",fill:e.color},t[7]||(t[7]=[Ln('',3)]),8,QS)):e.icon=="oval"?(F(),K("svg",{key:6,width:e.size,viewBox:"-2 -2 42 42",xmlns:"http://www.w3.org/2000/svg",stroke:e.color},t[8]||(t[8]=[Ln('',1)]),8,ek)):e.icon=="puff"?(F(),K("svg",{key:7,width:e.size,viewBox:"0 0 44 44",xmlns:"http://www.w3.org/2000/svg",stroke:e.color},t[9]||(t[9]=[Ln('',1)]),8,tk)):e.icon=="rings"?(F(),K("svg",{key:8,width:e.size,viewBox:"0 0 45 45",xmlns:"http://www.w3.org/2000/svg",stroke:e.color},t[10]||(t[10]=[Ln('',1)]),8,nk)):e.icon=="spinning-circles"?(F(),K("svg",{key:9,width:e.size,viewBox:"0 0 58 58",xmlns:"http://www.w3.org/2000/svg"},[k("g",ik,[k("g",{transform:"translate(2 1)",stroke:e.color,"stroke-width":"1.5"},[k("circle",{cx:"42.601",cy:"11.462",r:"5","fill-opacity":"1",fill:e.color},t[11]||(t[11]=[k("animate",{attributeName:"fill-opacity",begin:"0s",dur:"1.3s",values:"1;0;0;0;0;0;0;0",calcMode:"linear",repeatCount:"indefinite"},null,-1)]),8,ok),k("circle",{cx:"49.063",cy:"27.063",r:"5","fill-opacity":"0",fill:e.color},t[12]||(t[12]=[k("animate",{attributeName:"fill-opacity",begin:"0s",dur:"1.3s",values:"0;1;0;0;0;0;0;0",calcMode:"linear",repeatCount:"indefinite"},null,-1)]),8,ak),k("circle",{cx:"42.601",cy:"42.663",r:"5","fill-opacity":"0",fill:e.color},t[13]||(t[13]=[k("animate",{attributeName:"fill-opacity",begin:"0s",dur:"1.3s",values:"0;0;1;0;0;0;0;0",calcMode:"linear",repeatCount:"indefinite"},null,-1)]),8,lk),k("circle",{cx:"27",cy:"49.125",r:"5","fill-opacity":"0",fill:e.color},t[14]||(t[14]=[k("animate",{attributeName:"fill-opacity",begin:"0s",dur:"1.3s",values:"0;0;0;1;0;0;0;0",calcMode:"linear",repeatCount:"indefinite"},null,-1)]),8,uk),k("circle",{cx:"11.399",cy:"42.663",r:"5","fill-opacity":"0",fill:e.color},t[15]||(t[15]=[k("animate",{attributeName:"fill-opacity",begin:"0s",dur:"1.3s",values:"0;0;0;0;1;0;0;0",calcMode:"linear",repeatCount:"indefinite"},null,-1)]),8,ck),k("circle",{cx:"4.938",cy:"27.063",r:"5","fill-opacity":"0",fill:e.color},t[16]||(t[16]=[k("animate",{attributeName:"fill-opacity",begin:"0s",dur:"1.3s",values:"0;0;0;0;0;1;0;0",calcMode:"linear",repeatCount:"indefinite"},null,-1)]),8,hk),k("circle",{cx:"11.399",cy:"11.462",r:"5","fill-opacity":"0",fill:e.color},t[17]||(t[17]=[k("animate",{attributeName:"fill-opacity",begin:"0s",dur:"1.3s",values:"0;0;0;0;0;0;1;0",calcMode:"linear",repeatCount:"indefinite"},null,-1)]),8,fk),k("circle",{cx:"27",cy:"5",r:"5","fill-opacity":"0",fill:e.color},t[18]||(t[18]=[k("animate",{attributeName:"fill-opacity",begin:"0s",dur:"1.3s",values:"0;0;0;0;0;0;0;1",calcMode:"linear",repeatCount:"indefinite"},null,-1)]),8,dk)],8,sk)])],8,rk)):e.icon=="tail-spin"?(F(),K("svg",{key:10,width:e.size,viewBox:"0 0 38 38",xmlns:"http://www.w3.org/2000/svg"},[k("defs",null,[k("linearGradient",gk,[k("stop",{"stop-color":e.color,"stop-opacity":"0",offset:"0%"},null,8,mk),k("stop",{"stop-color":e.color,offset:"100%"},null,8,yk),k("stop",{"stop-color":e.color,"stop-opacity":".631",offset:"63.146%"},null,8,vk)])]),k("g",bk,[k("g",wk,[t[20]||(t[20]=k("path",{id:"Oval-2",d:"M36 18c0-9.94-8.06-18-18-18",stroke:"url(#a)","stroke-width":"3"},[k("animateTransform",{attributeName:"transform",type:"rotate",from:"0 18 18",to:"360 18 18",dur:"0.9s",repeatCount:"indefinite"})],-1)),k("circle",{fill:e.color,cx:"36",cy:"18",r:"1"},t[19]||(t[19]=[k("animateTransform",{attributeName:"transform",type:"rotate",from:"0 18 18",to:"360 18 18",dur:"0.9s",repeatCount:"indefinite"},null,-1)]),8,xk)])])],8,pk)):e.icon=="three-dots"?(F(),K("svg",{key:11,width:e.size,viewBox:"0 0 120 30",xmlns:"http://www.w3.org/2000/svg",fill:e.color},t[21]||(t[21]=[Ln('',3)]),8,_k)):ze("",!0)])}const v2=Xh(FS,[["render",Ok]]);function b2(e,t){return function(){return e.apply(t,arguments)}}const{toString:Sk}=Object.prototype,{getPrototypeOf:Wh}=Object,{iterator:Ml,toStringTag:w2}=Symbol,zl=(e=>t=>{const n=Sk.call(t);return e[n]||(e[n]=n.slice(8,-1).toLowerCase())})(Object.create(null)),wn=e=>(e=e.toLowerCase(),t=>zl(t)===e),Nl=e=>t=>typeof t===e,{isArray:Fi}=Array,to=Nl("undefined");function fo(e){return e!==null&&!to(e)&&e.constructor!==null&&!to(e.constructor)&&Lt(e.constructor.isBuffer)&&e.constructor.isBuffer(e)}const x2=wn("ArrayBuffer");function kk(e){let t;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?t=ArrayBuffer.isView(e):t=e&&e.buffer&&x2(e.buffer),t}const Tk=Nl("string"),Lt=Nl("function"),_2=Nl("number"),po=e=>e!==null&&typeof e=="object",Ck=e=>e===!0||e===!1,Oa=e=>{if(zl(e)!=="object")return!1;const t=Wh(e);return(t===null||t===Object.prototype||Object.getPrototypeOf(t)===null)&&!(w2 in e)&&!(Ml in e)},Mk=e=>{if(!po(e)||fo(e))return!1;try{return Object.keys(e).length===0&&Object.getPrototypeOf(e)===Object.prototype}catch{return!1}},zk=wn("Date"),Nk=wn("File"),Ek=wn("Blob"),Ak=wn("FileList"),Ik=e=>po(e)&&Lt(e.pipe),Pk=e=>{let t;return e&&(typeof FormData=="function"&&e instanceof FormData||Lt(e.append)&&((t=zl(e))==="formdata"||t==="object"&&Lt(e.toString)&&e.toString()==="[object FormData]"))},jk=wn("URLSearchParams"),[Dk,$k,Lk,Rk]=["ReadableStream","Request","Response","Headers"].map(wn),Bk=e=>e.trim?e.trim():e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function go(e,t,{allOwnKeys:n=!1}={}){if(e===null||typeof e>"u")return;let r,i;if(typeof e!="object"&&(e=[e]),Fi(e))for(r=0,i=e.length;r0;)if(i=n[r],t===i.toLowerCase())return i;return null}const Xr=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global,S2=e=>!to(e)&&e!==Xr;function zc(){const{caseless:e}=S2(this)&&this||{},t={},n=(r,i)=>{const o=e&&O2(t,i)||i;Oa(t[o])&&Oa(r)?t[o]=zc(t[o],r):Oa(r)?t[o]=zc({},r):Fi(r)?t[o]=r.slice():t[o]=r};for(let r=0,i=arguments.length;r(go(t,(i,o)=>{n&&Lt(i)?e[o]=b2(i,n):e[o]=i},{allOwnKeys:r}),e),Fk=e=>(e.charCodeAt(0)===65279&&(e=e.slice(1)),e),Vk=(e,t,n,r)=>{e.prototype=Object.create(t.prototype,r),e.prototype.constructor=e,Object.defineProperty(e,"super",{value:t.prototype}),n&&Object.assign(e.prototype,n)},Hk=(e,t,n,r)=>{let i,o,s;const a={};if(t=t||{},e==null)return t;do{for(i=Object.getOwnPropertyNames(e),o=i.length;o-- >0;)s=i[o],(!r||r(s,e,t))&&!a[s]&&(t[s]=e[s],a[s]=!0);e=n!==!1&&Wh(e)}while(e&&(!n||n(e,t))&&e!==Object.prototype);return t},Wk=(e,t,n)=>{e=String(e),(n===void 0||n>e.length)&&(n=e.length),n-=t.length;const r=e.indexOf(t,n);return r!==-1&&r===n},Uk=e=>{if(!e)return null;if(Fi(e))return e;let t=e.length;if(!_2(t))return null;const n=new Array(t);for(;t-- >0;)n[t]=e[t];return n},Yk=(e=>t=>e&&t instanceof e)(typeof Uint8Array<"u"&&Wh(Uint8Array)),Gk=(e,t)=>{const r=(e&&e[Ml]).call(e);let i;for(;(i=r.next())&&!i.done;){const o=i.value;t.call(e,o[0],o[1])}},qk=(e,t)=>{let n;const r=[];for(;(n=e.exec(t))!==null;)r.push(n);return r},Zk=wn("HTMLFormElement"),Kk=e=>e.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(n,r,i){return r.toUpperCase()+i}),_p=(({hasOwnProperty:e})=>(t,n)=>e.call(t,n))(Object.prototype),Jk=wn("RegExp"),k2=(e,t)=>{const n=Object.getOwnPropertyDescriptors(e),r={};go(n,(i,o)=>{let s;(s=t(i,o,e))!==!1&&(r[o]=s||i)}),Object.defineProperties(e,r)},Qk=e=>{k2(e,(t,n)=>{if(Lt(e)&&["arguments","caller","callee"].indexOf(n)!==-1)return!1;const r=e[n];if(Lt(r)){if(t.enumerable=!1,"writable"in t){t.writable=!1;return}t.set||(t.set=()=>{throw Error("Can not rewrite read-only method '"+n+"'")})}})},e8=(e,t)=>{const n={},r=i=>{i.forEach(o=>{n[o]=!0})};return Fi(e)?r(e):r(String(e).split(t)),n},t8=()=>{},n8=(e,t)=>e!=null&&Number.isFinite(e=+e)?e:t;function r8(e){return!!(e&&Lt(e.append)&&e[w2]==="FormData"&&e[Ml])}const i8=e=>{const t=new Array(10),n=(r,i)=>{if(po(r)){if(t.indexOf(r)>=0)return;if(fo(r))return r;if(!("toJSON"in r)){t[i]=r;const o=Fi(r)?[]:{};return go(r,(s,a)=>{const l=n(s,i+1);!to(l)&&(o[a]=l)}),t[i]=void 0,o}}return r};return n(e,0)},s8=wn("AsyncFunction"),o8=e=>e&&(po(e)||Lt(e))&&Lt(e.then)&&Lt(e.catch),T2=((e,t)=>e?setImmediate:t?((n,r)=>(Xr.addEventListener("message",({source:i,data:o})=>{i===Xr&&o===n&&r.length&&r.shift()()},!1),i=>{r.push(i),Xr.postMessage(n,"*")}))(`axios@${Math.random()}`,[]):n=>setTimeout(n))(typeof setImmediate=="function",Lt(Xr.postMessage)),a8=typeof queueMicrotask<"u"?queueMicrotask.bind(Xr):typeof process<"u"&&process.nextTick||T2,l8=e=>e!=null&&Lt(e[Ml]),L={isArray:Fi,isArrayBuffer:x2,isBuffer:fo,isFormData:Pk,isArrayBufferView:kk,isString:Tk,isNumber:_2,isBoolean:Ck,isObject:po,isPlainObject:Oa,isEmptyObject:Mk,isReadableStream:Dk,isRequest:$k,isResponse:Lk,isHeaders:Rk,isUndefined:to,isDate:zk,isFile:Nk,isBlob:Ek,isRegExp:Jk,isFunction:Lt,isStream:Ik,isURLSearchParams:jk,isTypedArray:Yk,isFileList:Ak,forEach:go,merge:zc,extend:Xk,trim:Bk,stripBOM:Fk,inherits:Vk,toFlatObject:Hk,kindOf:zl,kindOfTest:wn,endsWith:Wk,toArray:Uk,forEachEntry:Gk,matchAll:qk,isHTMLForm:Zk,hasOwnProperty:_p,hasOwnProp:_p,reduceDescriptors:k2,freezeMethods:Qk,toObjectSet:e8,toCamelCase:Kk,noop:t8,toFiniteNumber:n8,findKey:O2,global:Xr,isContextDefined:S2,isSpecCompliantForm:r8,toJSONObject:i8,isAsyncFn:s8,isThenable:o8,setImmediate:T2,asap:a8,isIterable:l8};function we(e,t,n,r,i){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=e,this.name="AxiosError",t&&(this.code=t),n&&(this.config=n),r&&(this.request=r),i&&(this.response=i,this.status=i.status?i.status:null)}L.inherits(we,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:L.toJSONObject(this.config),code:this.code,status:this.status}}});const C2=we.prototype,M2={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(e=>{M2[e]={value:e}});Object.defineProperties(we,M2);Object.defineProperty(C2,"isAxiosError",{value:!0});we.from=(e,t,n,r,i,o)=>{const s=Object.create(C2);return L.toFlatObject(e,s,function(l){return l!==Error.prototype},a=>a!=="isAxiosError"),we.call(s,e.message,t,n,r,i),s.cause=e,s.name=e.name,o&&Object.assign(s,o),s};const u8=null;function Nc(e){return L.isPlainObject(e)||L.isArray(e)}function z2(e){return L.endsWith(e,"[]")?e.slice(0,-2):e}function Op(e,t,n){return e?e.concat(t).map(function(i,o){return i=z2(i),!n&&o?"["+i+"]":i}).join(n?".":""):t}function c8(e){return L.isArray(e)&&!e.some(Nc)}const h8=L.toFlatObject(L,{},null,function(t){return/^is[A-Z]/.test(t)});function El(e,t,n){if(!L.isObject(e))throw new TypeError("target must be an object");t=t||new FormData,n=L.toFlatObject(n,{metaTokens:!0,dots:!1,indexes:!1},!1,function(m,y){return!L.isUndefined(y[m])});const r=n.metaTokens,i=n.visitor||c,o=n.dots,s=n.indexes,l=(n.Blob||typeof Blob<"u"&&Blob)&&L.isSpecCompliantForm(t);if(!L.isFunction(i))throw new TypeError("visitor must be a function");function u(g){if(g===null)return"";if(L.isDate(g))return g.toISOString();if(L.isBoolean(g))return g.toString();if(!l&&L.isBlob(g))throw new we("Blob is not supported. Use a Buffer instead.");return L.isArrayBuffer(g)||L.isTypedArray(g)?l&&typeof Blob=="function"?new Blob([g]):Buffer.from(g):g}function c(g,m,y){let v=g;if(g&&!y&&typeof g=="object"){if(L.endsWith(m,"{}"))m=r?m:m.slice(0,-2),g=JSON.stringify(g);else if(L.isArray(g)&&c8(g)||(L.isFileList(g)||L.endsWith(m,"[]"))&&(v=L.toArray(g)))return m=z2(m),v.forEach(function(_,x){!(L.isUndefined(_)||_===null)&&t.append(s===!0?Op([m],x,o):s===null?m:m+"[]",u(_))}),!1}return Nc(g)?!0:(t.append(Op(y,m,o),u(g)),!1)}const f=[],d=Object.assign(h8,{defaultVisitor:c,convertValue:u,isVisitable:Nc});function p(g,m){if(!L.isUndefined(g)){if(f.indexOf(g)!==-1)throw Error("Circular reference detected in "+m.join("."));f.push(g),L.forEach(g,function(v,w){(!(L.isUndefined(v)||v===null)&&i.call(t,v,L.isString(w)?w.trim():w,m,d))===!0&&p(v,m?m.concat(w):[w])}),f.pop()}}if(!L.isObject(e))throw new TypeError("data must be an object");return p(e),t}function Sp(e){const t={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(e).replace(/[!'()~]|%20|%00/g,function(r){return t[r]})}function Uh(e,t){this._pairs=[],e&&El(e,this,t)}const N2=Uh.prototype;N2.append=function(t,n){this._pairs.push([t,n])};N2.toString=function(t){const n=t?function(r){return t.call(this,r,Sp)}:Sp;return this._pairs.map(function(i){return n(i[0])+"="+n(i[1])},"").join("&")};function f8(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function E2(e,t,n){if(!t)return e;const r=n&&n.encode||f8;L.isFunction(n)&&(n={serialize:n});const i=n&&n.serialize;let o;if(i?o=i(t,n):o=L.isURLSearchParams(t)?t.toString():new Uh(t,n).toString(r),o){const s=e.indexOf("#");s!==-1&&(e=e.slice(0,s)),e+=(e.indexOf("?")===-1?"?":"&")+o}return e}class kp{constructor(){this.handlers=[]}use(t,n,r){return this.handlers.push({fulfilled:t,rejected:n,synchronous:r?r.synchronous:!1,runWhen:r?r.runWhen:null}),this.handlers.length-1}eject(t){this.handlers[t]&&(this.handlers[t]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(t){L.forEach(this.handlers,function(r){r!==null&&t(r)})}}const A2={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},d8=typeof URLSearchParams<"u"?URLSearchParams:Uh,p8=typeof FormData<"u"?FormData:null,g8=typeof Blob<"u"?Blob:null,m8={isBrowser:!0,classes:{URLSearchParams:d8,FormData:p8,Blob:g8},protocols:["http","https","file","blob","url","data"]},Yh=typeof window<"u"&&typeof document<"u",Ec=typeof navigator=="object"&&navigator||void 0,y8=Yh&&(!Ec||["ReactNative","NativeScript","NS"].indexOf(Ec.product)<0),v8=typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function",b8=Yh&&window.location.href||"http://localhost",w8=Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:Yh,hasStandardBrowserEnv:y8,hasStandardBrowserWebWorkerEnv:v8,navigator:Ec,origin:b8},Symbol.toStringTag,{value:"Module"})),Ct={...w8,...m8};function x8(e,t){return El(e,new Ct.classes.URLSearchParams,{visitor:function(n,r,i,o){return Ct.isNode&&L.isBuffer(n)?(this.append(r,n.toString("base64")),!1):o.defaultVisitor.apply(this,arguments)},...t})}function _8(e){return L.matchAll(/\w+|\[(\w*)]/g,e).map(t=>t[0]==="[]"?"":t[1]||t[0])}function O8(e){const t={},n=Object.keys(e);let r;const i=n.length;let o;for(r=0;r=n.length;return s=!s&&L.isArray(i)?i.length:s,l?(L.hasOwnProp(i,s)?i[s]=[i[s],r]:i[s]=r,!a):((!i[s]||!L.isObject(i[s]))&&(i[s]=[]),t(n,r,i[s],o)&&L.isArray(i[s])&&(i[s]=O8(i[s])),!a)}if(L.isFormData(e)&&L.isFunction(e.entries)){const n={};return L.forEachEntry(e,(r,i)=>{t(_8(r),i,n,0)}),n}return null}function S8(e,t,n){if(L.isString(e))try{return(t||JSON.parse)(e),L.trim(e)}catch(r){if(r.name!=="SyntaxError")throw r}return(n||JSON.stringify)(e)}const mo={transitional:A2,adapter:["xhr","http","fetch"],transformRequest:[function(t,n){const r=n.getContentType()||"",i=r.indexOf("application/json")>-1,o=L.isObject(t);if(o&&L.isHTMLForm(t)&&(t=new FormData(t)),L.isFormData(t))return i?JSON.stringify(I2(t)):t;if(L.isArrayBuffer(t)||L.isBuffer(t)||L.isStream(t)||L.isFile(t)||L.isBlob(t)||L.isReadableStream(t))return t;if(L.isArrayBufferView(t))return t.buffer;if(L.isURLSearchParams(t))return n.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),t.toString();let a;if(o){if(r.indexOf("application/x-www-form-urlencoded")>-1)return x8(t,this.formSerializer).toString();if((a=L.isFileList(t))||r.indexOf("multipart/form-data")>-1){const l=this.env&&this.env.FormData;return El(a?{"files[]":t}:t,l&&new l,this.formSerializer)}}return o||i?(n.setContentType("application/json",!1),S8(t)):t}],transformResponse:[function(t){const n=this.transitional||mo.transitional,r=n&&n.forcedJSONParsing,i=this.responseType==="json";if(L.isResponse(t)||L.isReadableStream(t))return t;if(t&&L.isString(t)&&(r&&!this.responseType||i)){const s=!(n&&n.silentJSONParsing)&&i;try{return JSON.parse(t)}catch(a){if(s)throw a.name==="SyntaxError"?we.from(a,we.ERR_BAD_RESPONSE,this,null,this.response):a}}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:Ct.classes.FormData,Blob:Ct.classes.Blob},validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};L.forEach(["delete","get","head","post","put","patch"],e=>{mo.headers[e]={}});const k8=L.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),T8=e=>{const t={};let n,r,i;return e&&e.split(` +In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}var o=!0,s=!1,a;return{s:function(){n=n.call(e)},n:function(){var u=n.next();return o=u.done,u},e:function(u){s=!0,a=u},f:function(){try{!o&&n.return!=null&&n.return()}finally{if(s)throw a}}}}function fS(e,t){if(e){if(typeof e=="string")return mp(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(e);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return mp(e,t)}}function mp(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);nn.getTime():t>n},gte:function(t,n){return n==null?!0:t==null?!1:t.getTime&&n.getTime?t.getTime()>=n.getTime():t>=n},dateIs:function(t,n){return n==null?!0:t==null?!1:t.toDateString()===n.toDateString()},dateIsNot:function(t,n){return n==null?!0:t==null?!1:t.toDateString()!==n.toDateString()},dateBefore:function(t,n){return n==null?!0:t==null?!1:t.getTime()n.getTime()}},register:function(t,n){this.filters[t]=n}};function Qs(e){"@babel/helpers - typeof";return Qs=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Qs(e)}function yp(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(e,i).enumerable})),n.push.apply(n,r)}return n}function Su(e){for(var t=1;tt.getters["main/isSystemOkInError"]),r=fe(()=>t.getters["main/getSystemOkStatus"]),i=fe(()=>t.getters["main/getSystemOkStatusCode"]),o=fe(()=>t.getters["main/getSystemOkStatusErrorMessage"]);fe(()=>t.getters["main/isLoading"]);const s=fe(()=>t.getters["main/isAuthenticated"]),a=rt(!1),l=rt(!1),u=Bh();function c(){t.dispatch("main/logout"),u.push({name:"dashboard"})}return(f,d)=>{var m,y,v;const p=Sl,g=wt("router-view");return F(),K("main",null,[h(S6),k("div",bS,[h(Q6),k("header",wS,[k("div",xS,[f.$route.meta.title?(F(),K("div",_S,[k("span",OS,Se(f.$route.meta.title),1),k("p",SS,Se(f.$route.meta.subtitle),1)])):ze("",!0),d[4]||(d[4]=k("h1",{class:"page-title"},null,-1))]),k("div",kS,[k("div",{class:Re({"status-indicator-small ":!0,"bg-green-200":i.value===200,"bg-yellow-200 animate-pulse":!((m=r.value)!=null&&m.response)||i.value>400&&i.value<500,"bg-red-200 animate-pulse":i.value>500})},[k("div",{class:Re({"status-dot-small":!0,"status-dot--success animate-pulse":i.value===200,"status-dot--warning":!((y=r.value)!=null&&y.response)||i.value>400&&i.value<500,"status-dot--error":i.value>500})},null,2),k("span",{class:Re({"status-text-small":!0,"text-green-700 font-medium":i.value===200,"text-yellow-700 font-bold":!((v=r.value)!=null&&v.response)||i.value>400&&i.value<500,"text-red-700 font-bold":i.value>500})},Se(n.value?o.value:"Online"),3)],2),k("div",TS,[s.value?(F(),K("div",MS,[h(p,{severity:"secondary",onClick:d[1]||(d[1]=w=>l.value=!0),outlined:""},{default:Ue(()=>[h(ee(N6),{class:"mr-2",size:"16"}),d[6]||(d[6]=lt(" Cambia Password ",-1))]),_:1,__:[6]}),h(p,{severity:"danger",onClick:c,outlined:""},{default:Ue(()=>[h(ee(I6),{class:"mr-2",size:"16"}),d[7]||(d[7]=lt(" Esci ",-1))]),_:1,__:[7]})])):(F(),K("div",CS,[h(p,{severity:"primary",onClick:d[0]||(d[0]=w=>l.value=!0)},{default:Ue(()=>[h(ee(h2),{class:"mr-2",size:"16"}),d[5]||(d[5]=lt(" Accedi ",-1))]),_:1,__:[5]})]))])])]),k("main",zS,[h(g)])]),h(R5,{visible:l.value,"onUpdate:visible":d[2]||(d[2]=w=>l.value=w)},null,8,["visible"]),h(hS,{visible:a.value,"onUpdate:visible":d[3]||(d[3]=w=>a.value=w)},null,8,["visible"])])}}},ES="modulepreload",AS=function(e,t){return new URL(e,t).href},bp={},ar=function(t,n,r){let i=Promise.resolve();if(n&&n.length>0){const s=document.getElementsByTagName("link"),a=document.querySelector("meta[property=csp-nonce]"),l=(a==null?void 0:a.nonce)||(a==null?void 0:a.getAttribute("nonce"));i=Promise.allSettled(n.map(u=>{if(u=AS(u,r),u in bp)return;bp[u]=!0;const c=u.endsWith(".css"),f=c?'[rel="stylesheet"]':"";if(!!r)for(let g=s.length-1;g>=0;g--){const m=s[g];if(m.href===u&&(!c||m.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${u}"]${f}`))return;const p=document.createElement("link");if(p.rel=c?"stylesheet":ES,c||(p.as="script"),p.crossOrigin="",p.href=u,l&&p.setAttribute("nonce",l),document.head.appendChild(p),c)return new Promise((g,m)=>{p.addEventListener("load",g),p.addEventListener("error",()=>m(new Error(`Unable to preload CSS for ${u}`)))})}))}function o(s){const a=new Event("vite:preloadError",{cancelable:!0});if(a.payload=s,window.dispatchEvent(a),!a.defaultPrevented)throw s}return i.then(s=>{for(const a of s||[])a.status==="rejected"&&o(a.reason);return t().catch(o)})};var IS={root:{position:"relative"}},PS={root:"p-chart"},jS=rn.extend({name:"chart",inlineStyles:IS,classes:PS}),DS={name:"BaseChart",extends:ri,props:{type:String,data:null,options:null,plugins:null,width:{type:Number,default:300},height:{type:Number,default:150},canvasProps:{type:null,default:null}},style:jS,provide:function(){return{$parentInstance:this}}},y2={name:"Chart",extends:DS,inheritAttrs:!1,emits:["select","loaded"],chart:null,watch:{data:{handler:function(){this.reinit()},deep:!0},type:function(){this.reinit()},options:function(){this.reinit()}},mounted:function(){this.initChart()},beforeUnmount:function(){this.chart&&(this.chart.destroy(),this.chart=null)},methods:{initChart:function(){var t=this;ar(()=>import("./auto-IuxBkHCG.js"),[],import.meta.url).then(function(n){t.chart&&(t.chart.destroy(),t.chart=null),n&&n.default&&(t.chart=new n.default(t.$refs.canvas,{type:t.type,data:t.data,options:t.options,plugins:t.plugins})),t.$emit("loaded",t.chart)})},getCanvas:function(){return this.$canvas},getChart:function(){return this.chart},getBase64Image:function(){return this.chart.toBase64Image()},refresh:function(){this.chart&&this.chart.update()},reinit:function(){this.initChart()},onCanvasClick:function(t){if(this.chart){var n=this.chart.getElementsAtEventForMode(t,"nearest",{intersect:!0},!1),r=this.chart.getElementsAtEventForMode(t,"dataset",{intersect:!0},!1);n&&n[0]&&r&&this.$emit("select",{originalEvent:t,element:n[0],dataset:r})}},generateLegend:function(){if(this.chart)return this.chart.generateLegend()}}};function eo(e){"@babel/helpers - typeof";return eo=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},eo(e)}function wp(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(i){return Object.getOwnPropertyDescriptor(e,i).enumerable})),n.push.apply(n,r)}return n}function xp(e){for(var t=1;t',1)]),8,VS)):e.icon=="ball-triangle"?(F(),K("svg",{key:1,width:e.size,viewBox:"0 0 57 57",xmlns:"http://www.w3.org/2000/svg"},[k("g",WS,[k("g",US,[k("circle",{cx:"5",cy:"50",r:"5",fill:e.color},t[1]||(t[1]=[k("animate",{attributeName:"cy",begin:"0s",dur:"2.2s",values:"50;5;50;50",calcMode:"linear",repeatCount:"indefinite"},null,-1),k("animate",{attributeName:"cx",begin:"0s",dur:"2.2s",values:"5;27;49;5",calcMode:"linear",repeatCount:"indefinite"},null,-1)]),8,YS),k("circle",{cx:"27",cy:"5",r:"5",fill:e.color},t[2]||(t[2]=[k("animate",{attributeName:"cy",begin:"0s",dur:"2.2s",from:"5",to:"5",values:"5;50;50;5",calcMode:"linear",repeatCount:"indefinite"},null,-1),k("animate",{attributeName:"cx",begin:"0s",dur:"2.2s",from:"27",to:"27",values:"27;49;5;27",calcMode:"linear",repeatCount:"indefinite"},null,-1)]),8,GS),k("circle",{cx:"49",cy:"50",r:"5",fill:e.color},t[3]||(t[3]=[k("animate",{attributeName:"cy",begin:"0s",dur:"2.2s",values:"50;50;5;50",calcMode:"linear",repeatCount:"indefinite"},null,-1),k("animate",{attributeName:"cx",from:"49",to:"49",begin:"0s",dur:"2.2s",values:"49;5;27;49",calcMode:"linear",repeatCount:"indefinite"},null,-1)]),8,qS)])])],8,HS)):e.icon=="bars"?(F(),K("svg",{key:2,width:e.size,viewBox:"0 0 135 140",xmlns:"http://www.w3.org/2000/svg",fill:e.color},t[4]||(t[4]=[Ln('',5)]),8,ZS)):e.icon=="circles"?(F(),K("svg",{key:3,width:e.size,viewBox:"0 0 135 135",xmlns:"http://www.w3.org/2000/svg",fill:e.color},t[5]||(t[5]=[k("path",{d:"M67.447 58c5.523 0 10-4.477 10-10s-4.477-10-10-10-10 4.477-10 10 4.477 10 10 10zm9.448 9.447c0 5.523 4.477 10 10 10 5.522 0 10-4.477 10-10s-4.478-10-10-10c-5.523 0-10 4.477-10 10zm-9.448 9.448c-5.523 0-10 4.477-10 10 0 5.522 4.477 10 10 10s10-4.478 10-10c0-5.523-4.477-10-10-10zM58 67.447c0-5.523-4.477-10-10-10s-10 4.477-10 10 4.477 10 10 10 10-4.477 10-10z"},[k("animateTransform",{attributeName:"transform",type:"rotate",from:"0 67 67",to:"-360 67 67",dur:"2.5s",repeatCount:"indefinite"})],-1),k("path",{d:"M28.19 40.31c6.627 0 12-5.374 12-12 0-6.628-5.373-12-12-12-6.628 0-12 5.372-12 12 0 6.626 5.372 12 12 12zm30.72-19.825c4.686 4.687 12.284 4.687 16.97 0 4.686-4.686 4.686-12.284 0-16.97-4.686-4.687-12.284-4.687-16.97 0-4.687 4.686-4.687 12.284 0 16.97zm35.74 7.705c0 6.627 5.37 12 12 12 6.626 0 12-5.373 12-12 0-6.628-5.374-12-12-12-6.63 0-12 5.372-12 12zm19.822 30.72c-4.686 4.686-4.686 12.284 0 16.97 4.687 4.686 12.285 4.686 16.97 0 4.687-4.686 4.687-12.284 0-16.97-4.685-4.687-12.283-4.687-16.97 0zm-7.704 35.74c-6.627 0-12 5.37-12 12 0 6.626 5.373 12 12 12s12-5.374 12-12c0-6.63-5.373-12-12-12zm-30.72 19.822c-4.686-4.686-12.284-4.686-16.97 0-4.686 4.687-4.686 12.285 0 16.97 4.686 4.687 12.284 4.687 16.97 0 4.687-4.685 4.687-12.283 0-16.97zm-35.74-7.704c0-6.627-5.372-12-12-12-6.626 0-12 5.373-12 12s5.374 12 12 12c6.628 0 12-5.373 12-12zm-19.823-30.72c4.687-4.686 4.687-12.284 0-16.97-4.686-4.686-12.284-4.686-16.97 0-4.687 4.686-4.687 12.284 0 16.97 4.686 4.687 12.284 4.687 16.97 0z"},[k("animateTransform",{attributeName:"transform",type:"rotate",from:"0 67 67",to:"360 67 67",dur:"8s",repeatCount:"indefinite"})],-1)]),8,KS)):e.icon=="grid"?(F(),K("svg",{key:4,width:e.size,viewBox:"0 0 105 105",xmlns:"http://www.w3.org/2000/svg",fill:e.color},t[6]||(t[6]=[Ln('',9)]),8,JS)):e.icon=="hearts"?(F(),K("svg",{key:5,width:e.size,viewBox:"0 0 140 64",xmlns:"http://www.w3.org/2000/svg",fill:e.color},t[7]||(t[7]=[Ln('',3)]),8,QS)):e.icon=="oval"?(F(),K("svg",{key:6,width:e.size,viewBox:"-2 -2 42 42",xmlns:"http://www.w3.org/2000/svg",stroke:e.color},t[8]||(t[8]=[Ln('',1)]),8,ek)):e.icon=="puff"?(F(),K("svg",{key:7,width:e.size,viewBox:"0 0 44 44",xmlns:"http://www.w3.org/2000/svg",stroke:e.color},t[9]||(t[9]=[Ln('',1)]),8,tk)):e.icon=="rings"?(F(),K("svg",{key:8,width:e.size,viewBox:"0 0 45 45",xmlns:"http://www.w3.org/2000/svg",stroke:e.color},t[10]||(t[10]=[Ln('',1)]),8,nk)):e.icon=="spinning-circles"?(F(),K("svg",{key:9,width:e.size,viewBox:"0 0 58 58",xmlns:"http://www.w3.org/2000/svg"},[k("g",ik,[k("g",{transform:"translate(2 1)",stroke:e.color,"stroke-width":"1.5"},[k("circle",{cx:"42.601",cy:"11.462",r:"5","fill-opacity":"1",fill:e.color},t[11]||(t[11]=[k("animate",{attributeName:"fill-opacity",begin:"0s",dur:"1.3s",values:"1;0;0;0;0;0;0;0",calcMode:"linear",repeatCount:"indefinite"},null,-1)]),8,ok),k("circle",{cx:"49.063",cy:"27.063",r:"5","fill-opacity":"0",fill:e.color},t[12]||(t[12]=[k("animate",{attributeName:"fill-opacity",begin:"0s",dur:"1.3s",values:"0;1;0;0;0;0;0;0",calcMode:"linear",repeatCount:"indefinite"},null,-1)]),8,ak),k("circle",{cx:"42.601",cy:"42.663",r:"5","fill-opacity":"0",fill:e.color},t[13]||(t[13]=[k("animate",{attributeName:"fill-opacity",begin:"0s",dur:"1.3s",values:"0;0;1;0;0;0;0;0",calcMode:"linear",repeatCount:"indefinite"},null,-1)]),8,lk),k("circle",{cx:"27",cy:"49.125",r:"5","fill-opacity":"0",fill:e.color},t[14]||(t[14]=[k("animate",{attributeName:"fill-opacity",begin:"0s",dur:"1.3s",values:"0;0;0;1;0;0;0;0",calcMode:"linear",repeatCount:"indefinite"},null,-1)]),8,uk),k("circle",{cx:"11.399",cy:"42.663",r:"5","fill-opacity":"0",fill:e.color},t[15]||(t[15]=[k("animate",{attributeName:"fill-opacity",begin:"0s",dur:"1.3s",values:"0;0;0;0;1;0;0;0",calcMode:"linear",repeatCount:"indefinite"},null,-1)]),8,ck),k("circle",{cx:"4.938",cy:"27.063",r:"5","fill-opacity":"0",fill:e.color},t[16]||(t[16]=[k("animate",{attributeName:"fill-opacity",begin:"0s",dur:"1.3s",values:"0;0;0;0;0;1;0;0",calcMode:"linear",repeatCount:"indefinite"},null,-1)]),8,hk),k("circle",{cx:"11.399",cy:"11.462",r:"5","fill-opacity":"0",fill:e.color},t[17]||(t[17]=[k("animate",{attributeName:"fill-opacity",begin:"0s",dur:"1.3s",values:"0;0;0;0;0;0;1;0",calcMode:"linear",repeatCount:"indefinite"},null,-1)]),8,fk),k("circle",{cx:"27",cy:"5",r:"5","fill-opacity":"0",fill:e.color},t[18]||(t[18]=[k("animate",{attributeName:"fill-opacity",begin:"0s",dur:"1.3s",values:"0;0;0;0;0;0;0;1",calcMode:"linear",repeatCount:"indefinite"},null,-1)]),8,dk)],8,sk)])],8,rk)):e.icon=="tail-spin"?(F(),K("svg",{key:10,width:e.size,viewBox:"0 0 38 38",xmlns:"http://www.w3.org/2000/svg"},[k("defs",null,[k("linearGradient",gk,[k("stop",{"stop-color":e.color,"stop-opacity":"0",offset:"0%"},null,8,mk),k("stop",{"stop-color":e.color,offset:"100%"},null,8,yk),k("stop",{"stop-color":e.color,"stop-opacity":".631",offset:"63.146%"},null,8,vk)])]),k("g",bk,[k("g",wk,[t[20]||(t[20]=k("path",{id:"Oval-2",d:"M36 18c0-9.94-8.06-18-18-18",stroke:"url(#a)","stroke-width":"3"},[k("animateTransform",{attributeName:"transform",type:"rotate",from:"0 18 18",to:"360 18 18",dur:"0.9s",repeatCount:"indefinite"})],-1)),k("circle",{fill:e.color,cx:"36",cy:"18",r:"1"},t[19]||(t[19]=[k("animateTransform",{attributeName:"transform",type:"rotate",from:"0 18 18",to:"360 18 18",dur:"0.9s",repeatCount:"indefinite"},null,-1)]),8,xk)])])],8,pk)):e.icon=="three-dots"?(F(),K("svg",{key:11,width:e.size,viewBox:"0 0 120 30",xmlns:"http://www.w3.org/2000/svg",fill:e.color},t[21]||(t[21]=[Ln('',3)]),8,_k)):ze("",!0)])}const v2=Xh(FS,[["render",Ok]]);function b2(e,t){return function(){return e.apply(t,arguments)}}const{toString:Sk}=Object.prototype,{getPrototypeOf:Wh}=Object,{iterator:Ml,toStringTag:w2}=Symbol,zl=(e=>t=>{const n=Sk.call(t);return e[n]||(e[n]=n.slice(8,-1).toLowerCase())})(Object.create(null)),wn=e=>(e=e.toLowerCase(),t=>zl(t)===e),Nl=e=>t=>typeof t===e,{isArray:Fi}=Array,to=Nl("undefined");function fo(e){return e!==null&&!to(e)&&e.constructor!==null&&!to(e.constructor)&&Lt(e.constructor.isBuffer)&&e.constructor.isBuffer(e)}const x2=wn("ArrayBuffer");function kk(e){let t;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?t=ArrayBuffer.isView(e):t=e&&e.buffer&&x2(e.buffer),t}const Tk=Nl("string"),Lt=Nl("function"),_2=Nl("number"),po=e=>e!==null&&typeof e=="object",Ck=e=>e===!0||e===!1,Oa=e=>{if(zl(e)!=="object")return!1;const t=Wh(e);return(t===null||t===Object.prototype||Object.getPrototypeOf(t)===null)&&!(w2 in e)&&!(Ml in e)},Mk=e=>{if(!po(e)||fo(e))return!1;try{return Object.keys(e).length===0&&Object.getPrototypeOf(e)===Object.prototype}catch{return!1}},zk=wn("Date"),Nk=wn("File"),Ek=wn("Blob"),Ak=wn("FileList"),Ik=e=>po(e)&&Lt(e.pipe),Pk=e=>{let t;return e&&(typeof FormData=="function"&&e instanceof FormData||Lt(e.append)&&((t=zl(e))==="formdata"||t==="object"&&Lt(e.toString)&&e.toString()==="[object FormData]"))},jk=wn("URLSearchParams"),[Dk,$k,Lk,Rk]=["ReadableStream","Request","Response","Headers"].map(wn),Bk=e=>e.trim?e.trim():e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function go(e,t,{allOwnKeys:n=!1}={}){if(e===null||typeof e>"u")return;let r,i;if(typeof e!="object"&&(e=[e]),Fi(e))for(r=0,i=e.length;r0;)if(i=n[r],t===i.toLowerCase())return i;return null}const Xr=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global,S2=e=>!to(e)&&e!==Xr;function zc(){const{caseless:e}=S2(this)&&this||{},t={},n=(r,i)=>{const o=e&&O2(t,i)||i;Oa(t[o])&&Oa(r)?t[o]=zc(t[o],r):Oa(r)?t[o]=zc({},r):Fi(r)?t[o]=r.slice():t[o]=r};for(let r=0,i=arguments.length;r(go(t,(i,o)=>{n&&Lt(i)?e[o]=b2(i,n):e[o]=i},{allOwnKeys:r}),e),Fk=e=>(e.charCodeAt(0)===65279&&(e=e.slice(1)),e),Vk=(e,t,n,r)=>{e.prototype=Object.create(t.prototype,r),e.prototype.constructor=e,Object.defineProperty(e,"super",{value:t.prototype}),n&&Object.assign(e.prototype,n)},Hk=(e,t,n,r)=>{let i,o,s;const a={};if(t=t||{},e==null)return t;do{for(i=Object.getOwnPropertyNames(e),o=i.length;o-- >0;)s=i[o],(!r||r(s,e,t))&&!a[s]&&(t[s]=e[s],a[s]=!0);e=n!==!1&&Wh(e)}while(e&&(!n||n(e,t))&&e!==Object.prototype);return t},Wk=(e,t,n)=>{e=String(e),(n===void 0||n>e.length)&&(n=e.length),n-=t.length;const r=e.indexOf(t,n);return r!==-1&&r===n},Uk=e=>{if(!e)return null;if(Fi(e))return e;let t=e.length;if(!_2(t))return null;const n=new Array(t);for(;t-- >0;)n[t]=e[t];return n},Yk=(e=>t=>e&&t instanceof e)(typeof Uint8Array<"u"&&Wh(Uint8Array)),Gk=(e,t)=>{const r=(e&&e[Ml]).call(e);let i;for(;(i=r.next())&&!i.done;){const o=i.value;t.call(e,o[0],o[1])}},qk=(e,t)=>{let n;const r=[];for(;(n=e.exec(t))!==null;)r.push(n);return r},Zk=wn("HTMLFormElement"),Kk=e=>e.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(n,r,i){return r.toUpperCase()+i}),_p=(({hasOwnProperty:e})=>(t,n)=>e.call(t,n))(Object.prototype),Jk=wn("RegExp"),k2=(e,t)=>{const n=Object.getOwnPropertyDescriptors(e),r={};go(n,(i,o)=>{let s;(s=t(i,o,e))!==!1&&(r[o]=s||i)}),Object.defineProperties(e,r)},Qk=e=>{k2(e,(t,n)=>{if(Lt(e)&&["arguments","caller","callee"].indexOf(n)!==-1)return!1;const r=e[n];if(Lt(r)){if(t.enumerable=!1,"writable"in t){t.writable=!1;return}t.set||(t.set=()=>{throw Error("Can not rewrite read-only method '"+n+"'")})}})},e8=(e,t)=>{const n={},r=i=>{i.forEach(o=>{n[o]=!0})};return Fi(e)?r(e):r(String(e).split(t)),n},t8=()=>{},n8=(e,t)=>e!=null&&Number.isFinite(e=+e)?e:t;function r8(e){return!!(e&&Lt(e.append)&&e[w2]==="FormData"&&e[Ml])}const i8=e=>{const t=new Array(10),n=(r,i)=>{if(po(r)){if(t.indexOf(r)>=0)return;if(fo(r))return r;if(!("toJSON"in r)){t[i]=r;const o=Fi(r)?[]:{};return go(r,(s,a)=>{const l=n(s,i+1);!to(l)&&(o[a]=l)}),t[i]=void 0,o}}return r};return n(e,0)},s8=wn("AsyncFunction"),o8=e=>e&&(po(e)||Lt(e))&&Lt(e.then)&&Lt(e.catch),T2=((e,t)=>e?setImmediate:t?((n,r)=>(Xr.addEventListener("message",({source:i,data:o})=>{i===Xr&&o===n&&r.length&&r.shift()()},!1),i=>{r.push(i),Xr.postMessage(n,"*")}))(`axios@${Math.random()}`,[]):n=>setTimeout(n))(typeof setImmediate=="function",Lt(Xr.postMessage)),a8=typeof queueMicrotask<"u"?queueMicrotask.bind(Xr):typeof process<"u"&&process.nextTick||T2,l8=e=>e!=null&&Lt(e[Ml]),L={isArray:Fi,isArrayBuffer:x2,isBuffer:fo,isFormData:Pk,isArrayBufferView:kk,isString:Tk,isNumber:_2,isBoolean:Ck,isObject:po,isPlainObject:Oa,isEmptyObject:Mk,isReadableStream:Dk,isRequest:$k,isResponse:Lk,isHeaders:Rk,isUndefined:to,isDate:zk,isFile:Nk,isBlob:Ek,isRegExp:Jk,isFunction:Lt,isStream:Ik,isURLSearchParams:jk,isTypedArray:Yk,isFileList:Ak,forEach:go,merge:zc,extend:Xk,trim:Bk,stripBOM:Fk,inherits:Vk,toFlatObject:Hk,kindOf:zl,kindOfTest:wn,endsWith:Wk,toArray:Uk,forEachEntry:Gk,matchAll:qk,isHTMLForm:Zk,hasOwnProperty:_p,hasOwnProp:_p,reduceDescriptors:k2,freezeMethods:Qk,toObjectSet:e8,toCamelCase:Kk,noop:t8,toFiniteNumber:n8,findKey:O2,global:Xr,isContextDefined:S2,isSpecCompliantForm:r8,toJSONObject:i8,isAsyncFn:s8,isThenable:o8,setImmediate:T2,asap:a8,isIterable:l8};function we(e,t,n,r,i){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=e,this.name="AxiosError",t&&(this.code=t),n&&(this.config=n),r&&(this.request=r),i&&(this.response=i,this.status=i.status?i.status:null)}L.inherits(we,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:L.toJSONObject(this.config),code:this.code,status:this.status}}});const C2=we.prototype,M2={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(e=>{M2[e]={value:e}});Object.defineProperties(we,M2);Object.defineProperty(C2,"isAxiosError",{value:!0});we.from=(e,t,n,r,i,o)=>{const s=Object.create(C2);return L.toFlatObject(e,s,function(l){return l!==Error.prototype},a=>a!=="isAxiosError"),we.call(s,e.message,t,n,r,i),s.cause=e,s.name=e.name,o&&Object.assign(s,o),s};const u8=null;function Nc(e){return L.isPlainObject(e)||L.isArray(e)}function z2(e){return L.endsWith(e,"[]")?e.slice(0,-2):e}function Op(e,t,n){return e?e.concat(t).map(function(i,o){return i=z2(i),!n&&o?"["+i+"]":i}).join(n?".":""):t}function c8(e){return L.isArray(e)&&!e.some(Nc)}const h8=L.toFlatObject(L,{},null,function(t){return/^is[A-Z]/.test(t)});function El(e,t,n){if(!L.isObject(e))throw new TypeError("target must be an object");t=t||new FormData,n=L.toFlatObject(n,{metaTokens:!0,dots:!1,indexes:!1},!1,function(m,y){return!L.isUndefined(y[m])});const r=n.metaTokens,i=n.visitor||c,o=n.dots,s=n.indexes,l=(n.Blob||typeof Blob<"u"&&Blob)&&L.isSpecCompliantForm(t);if(!L.isFunction(i))throw new TypeError("visitor must be a function");function u(g){if(g===null)return"";if(L.isDate(g))return g.toISOString();if(L.isBoolean(g))return g.toString();if(!l&&L.isBlob(g))throw new we("Blob is not supported. Use a Buffer instead.");return L.isArrayBuffer(g)||L.isTypedArray(g)?l&&typeof Blob=="function"?new Blob([g]):Buffer.from(g):g}function c(g,m,y){let v=g;if(g&&!y&&typeof g=="object"){if(L.endsWith(m,"{}"))m=r?m:m.slice(0,-2),g=JSON.stringify(g);else if(L.isArray(g)&&c8(g)||(L.isFileList(g)||L.endsWith(m,"[]"))&&(v=L.toArray(g)))return m=z2(m),v.forEach(function(_,x){!(L.isUndefined(_)||_===null)&&t.append(s===!0?Op([m],x,o):s===null?m:m+"[]",u(_))}),!1}return Nc(g)?!0:(t.append(Op(y,m,o),u(g)),!1)}const f=[],d=Object.assign(h8,{defaultVisitor:c,convertValue:u,isVisitable:Nc});function p(g,m){if(!L.isUndefined(g)){if(f.indexOf(g)!==-1)throw Error("Circular reference detected in "+m.join("."));f.push(g),L.forEach(g,function(v,w){(!(L.isUndefined(v)||v===null)&&i.call(t,v,L.isString(w)?w.trim():w,m,d))===!0&&p(v,m?m.concat(w):[w])}),f.pop()}}if(!L.isObject(e))throw new TypeError("data must be an object");return p(e),t}function Sp(e){const t={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(e).replace(/[!'()~]|%20|%00/g,function(r){return t[r]})}function Uh(e,t){this._pairs=[],e&&El(e,this,t)}const N2=Uh.prototype;N2.append=function(t,n){this._pairs.push([t,n])};N2.toString=function(t){const n=t?function(r){return t.call(this,r,Sp)}:Sp;return this._pairs.map(function(i){return n(i[0])+"="+n(i[1])},"").join("&")};function f8(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function E2(e,t,n){if(!t)return e;const r=n&&n.encode||f8;L.isFunction(n)&&(n={serialize:n});const i=n&&n.serialize;let o;if(i?o=i(t,n):o=L.isURLSearchParams(t)?t.toString():new Uh(t,n).toString(r),o){const s=e.indexOf("#");s!==-1&&(e=e.slice(0,s)),e+=(e.indexOf("?")===-1?"?":"&")+o}return e}class kp{constructor(){this.handlers=[]}use(t,n,r){return this.handlers.push({fulfilled:t,rejected:n,synchronous:r?r.synchronous:!1,runWhen:r?r.runWhen:null}),this.handlers.length-1}eject(t){this.handlers[t]&&(this.handlers[t]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(t){L.forEach(this.handlers,function(r){r!==null&&t(r)})}}const A2={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},d8=typeof URLSearchParams<"u"?URLSearchParams:Uh,p8=typeof FormData<"u"?FormData:null,g8=typeof Blob<"u"?Blob:null,m8={isBrowser:!0,classes:{URLSearchParams:d8,FormData:p8,Blob:g8},protocols:["http","https","file","blob","url","data"]},Yh=typeof window<"u"&&typeof document<"u",Ec=typeof navigator=="object"&&navigator||void 0,y8=Yh&&(!Ec||["ReactNative","NativeScript","NS"].indexOf(Ec.product)<0),v8=typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function",b8=Yh&&window.location.href||"http://localhost",w8=Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:Yh,hasStandardBrowserEnv:y8,hasStandardBrowserWebWorkerEnv:v8,navigator:Ec,origin:b8},Symbol.toStringTag,{value:"Module"})),Ct={...w8,...m8};function x8(e,t){return El(e,new Ct.classes.URLSearchParams,{visitor:function(n,r,i,o){return Ct.isNode&&L.isBuffer(n)?(this.append(r,n.toString("base64")),!1):o.defaultVisitor.apply(this,arguments)},...t})}function _8(e){return L.matchAll(/\w+|\[(\w*)]/g,e).map(t=>t[0]==="[]"?"":t[1]||t[0])}function O8(e){const t={},n=Object.keys(e);let r;const i=n.length;let o;for(r=0;r=n.length;return s=!s&&L.isArray(i)?i.length:s,l?(L.hasOwnProp(i,s)?i[s]=[i[s],r]:i[s]=r,!a):((!i[s]||!L.isObject(i[s]))&&(i[s]=[]),t(n,r,i[s],o)&&L.isArray(i[s])&&(i[s]=O8(i[s])),!a)}if(L.isFormData(e)&&L.isFunction(e.entries)){const n={};return L.forEachEntry(e,(r,i)=>{t(_8(r),i,n,0)}),n}return null}function S8(e,t,n){if(L.isString(e))try{return(t||JSON.parse)(e),L.trim(e)}catch(r){if(r.name!=="SyntaxError")throw r}return(n||JSON.stringify)(e)}const mo={transitional:A2,adapter:["xhr","http","fetch"],transformRequest:[function(t,n){const r=n.getContentType()||"",i=r.indexOf("application/json")>-1,o=L.isObject(t);if(o&&L.isHTMLForm(t)&&(t=new FormData(t)),L.isFormData(t))return i?JSON.stringify(I2(t)):t;if(L.isArrayBuffer(t)||L.isBuffer(t)||L.isStream(t)||L.isFile(t)||L.isBlob(t)||L.isReadableStream(t))return t;if(L.isArrayBufferView(t))return t.buffer;if(L.isURLSearchParams(t))return n.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),t.toString();let a;if(o){if(r.indexOf("application/x-www-form-urlencoded")>-1)return x8(t,this.formSerializer).toString();if((a=L.isFileList(t))||r.indexOf("multipart/form-data")>-1){const l=this.env&&this.env.FormData;return El(a?{"files[]":t}:t,l&&new l,this.formSerializer)}}return o||i?(n.setContentType("application/json",!1),S8(t)):t}],transformResponse:[function(t){const n=this.transitional||mo.transitional,r=n&&n.forcedJSONParsing,i=this.responseType==="json";if(L.isResponse(t)||L.isReadableStream(t))return t;if(t&&L.isString(t)&&(r&&!this.responseType||i)){const s=!(n&&n.silentJSONParsing)&&i;try{return JSON.parse(t)}catch(a){if(s)throw a.name==="SyntaxError"?we.from(a,we.ERR_BAD_RESPONSE,this,null,this.response):a}}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:Ct.classes.FormData,Blob:Ct.classes.Blob},validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};L.forEach(["delete","get","head","post","put","patch"],e=>{mo.headers[e]={}});const k8=L.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),T8=e=>{const t={};let n,r,i;return e&&e.split(` `).forEach(function(s){i=s.indexOf(":"),n=s.substring(0,i).trim().toLowerCase(),r=s.substring(i+1).trim(),!(!n||t[n]&&k8[n])&&(n==="set-cookie"?t[n]?t[n].push(r):t[n]=[r]:t[n]=t[n]?t[n]+", "+r:r)}),t},Tp=Symbol("internals");function is(e){return e&&String(e).trim().toLowerCase()}function Sa(e){return e===!1||e==null?e:L.isArray(e)?e.map(Sa):String(e)}function C8(e){const t=Object.create(null),n=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let r;for(;r=n.exec(e);)t[r[1]]=r[2];return t}const M8=e=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(e.trim());function ku(e,t,n,r,i){if(L.isFunction(r))return r.call(this,t,n);if(i&&(t=n),!!L.isString(t)){if(L.isString(r))return t.indexOf(r)!==-1;if(L.isRegExp(r))return r.test(t)}}function z8(e){return e.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(t,n,r)=>n.toUpperCase()+r)}function N8(e,t){const n=L.toCamelCase(" "+t);["get","set","has"].forEach(r=>{Object.defineProperty(e,r+n,{value:function(i,o,s){return this[r].call(this,t,i,o,s)},configurable:!0})})}let Rt=class{constructor(t){t&&this.set(t)}set(t,n,r){const i=this;function o(a,l,u){const c=is(l);if(!c)throw new Error("header name must be a non-empty string");const f=L.findKey(i,c);(!f||i[f]===void 0||u===!0||u===void 0&&i[f]!==!1)&&(i[f||l]=Sa(a))}const s=(a,l)=>L.forEach(a,(u,c)=>o(u,c,l));if(L.isPlainObject(t)||t instanceof this.constructor)s(t,n);else if(L.isString(t)&&(t=t.trim())&&!M8(t))s(T8(t),n);else if(L.isObject(t)&&L.isIterable(t)){let a={},l,u;for(const c of t){if(!L.isArray(c))throw TypeError("Object iterator must return a key-value pair");a[u=c[0]]=(l=a[u])?L.isArray(l)?[...l,c[1]]:[l,c[1]]:c[1]}s(a,n)}else t!=null&&o(n,t,r);return this}get(t,n){if(t=is(t),t){const r=L.findKey(this,t);if(r){const i=this[r];if(!n)return i;if(n===!0)return C8(i);if(L.isFunction(n))return n.call(this,i,r);if(L.isRegExp(n))return n.exec(i);throw new TypeError("parser must be boolean|regexp|function")}}}has(t,n){if(t=is(t),t){const r=L.findKey(this,t);return!!(r&&this[r]!==void 0&&(!n||ku(this,this[r],r,n)))}return!1}delete(t,n){const r=this;let i=!1;function o(s){if(s=is(s),s){const a=L.findKey(r,s);a&&(!n||ku(r,r[a],a,n))&&(delete r[a],i=!0)}}return L.isArray(t)?t.forEach(o):o(t),i}clear(t){const n=Object.keys(this);let r=n.length,i=!1;for(;r--;){const o=n[r];(!t||ku(this,this[o],o,t,!0))&&(delete this[o],i=!0)}return i}normalize(t){const n=this,r={};return L.forEach(this,(i,o)=>{const s=L.findKey(r,o);if(s){n[s]=Sa(i),delete n[o];return}const a=t?z8(o):String(o).trim();a!==o&&delete n[o],n[a]=Sa(i),r[a]=!0}),this}concat(...t){return this.constructor.concat(this,...t)}toJSON(t){const n=Object.create(null);return L.forEach(this,(r,i)=>{r!=null&&r!==!1&&(n[i]=t&&L.isArray(r)?r.join(", "):r)}),n}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([t,n])=>t+": "+n).join(` `)}getSetCookie(){return this.get("set-cookie")||[]}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(t){return t instanceof this?t:new this(t)}static concat(t,...n){const r=new this(t);return n.forEach(i=>r.set(i)),r}static accessor(t){const r=(this[Tp]=this[Tp]={accessors:{}}).accessors,i=this.prototype;function o(s){const a=is(s);r[a]||(N8(i,s),r[a]=!0)}return L.isArray(t)?t.forEach(o):o(t),this}};Rt.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]);L.reduceDescriptors(Rt.prototype,({value:e},t)=>{let n=t[0].toUpperCase()+t.slice(1);return{get:()=>e,set(r){this[n]=r}}});L.freezeMethods(Rt);function Tu(e,t){const n=this||mo,r=t||n,i=Rt.from(r.headers);let o=r.data;return L.forEach(e,function(a){o=a.call(n,o,i.normalize(),t?t.status:void 0)}),i.normalize(),o}function P2(e){return!!(e&&e.__CANCEL__)}function Vi(e,t,n){we.call(this,e??"canceled",we.ERR_CANCELED,t,n),this.name="CanceledError"}L.inherits(Vi,we,{__CANCEL__:!0});function j2(e,t,n){const r=n.config.validateStatus;!n.status||!r||r(n.status)?e(n):t(new we("Request failed with status code "+n.status,[we.ERR_BAD_REQUEST,we.ERR_BAD_RESPONSE][Math.floor(n.status/100)-4],n.config,n.request,n))}function E8(e){const t=/^([-+\w]{1,25})(:?\/\/|:)/.exec(e);return t&&t[1]||""}function A8(e,t){e=e||10;const n=new Array(e),r=new Array(e);let i=0,o=0,s;return t=t!==void 0?t:1e3,function(l){const u=Date.now(),c=r[o];s||(s=u),n[i]=l,r[i]=u;let f=o,d=0;for(;f!==i;)d+=n[f++],f=f%e;if(i=(i+1)%e,i===o&&(o=(o+1)%e),u-s{n=c,i=null,o&&(clearTimeout(o),o=null),e(...u)};return[(...u)=>{const c=Date.now(),f=c-n;f>=r?s(u,c):(i=u,o||(o=setTimeout(()=>{o=null,s(i)},r-f)))},()=>i&&s(i)]}const Va=(e,t,n=3)=>{let r=0;const i=A8(50,250);return I8(o=>{const s=o.loaded,a=o.lengthComputable?o.total:void 0,l=s-r,u=i(l),c=s<=a;r=s;const f={loaded:s,total:a,progress:a?s/a:void 0,bytes:l,rate:u||void 0,estimated:u&&a&&c?(a-s)/u:void 0,event:o,lengthComputable:a!=null,[t?"download":"upload"]:!0};e(f)},n)},Cp=(e,t)=>{const n=e!=null;return[r=>t[0]({lengthComputable:n,total:e,loaded:r}),t[1]]},Mp=e=>(...t)=>L.asap(()=>e(...t)),P8=Ct.hasStandardBrowserEnv?((e,t)=>n=>(n=new URL(n,Ct.origin),e.protocol===n.protocol&&e.host===n.host&&(t||e.port===n.port)))(new URL(Ct.origin),Ct.navigator&&/(msie|trident)/i.test(Ct.navigator.userAgent)):()=>!0,j8=Ct.hasStandardBrowserEnv?{write(e,t,n,r,i,o){const s=[e+"="+encodeURIComponent(t)];L.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),L.isString(r)&&s.push("path="+r),L.isString(i)&&s.push("domain="+i),o===!0&&s.push("secure"),document.cookie=s.join("; ")},read(e){const t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove(e){this.write(e,"",Date.now()-864e5)}}:{write(){},read(){return null},remove(){}};function D8(e){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(e)}function $8(e,t){return t?e.replace(/\/?\/$/,"")+"/"+t.replace(/^\/+/,""):e}function D2(e,t,n){let r=!D8(t);return e&&(r||n==!1)?$8(e,t):t}const zp=e=>e instanceof Rt?{...e}:e;function Zr(e,t){t=t||{};const n={};function r(u,c,f,d){return L.isPlainObject(u)&&L.isPlainObject(c)?L.merge.call({caseless:d},u,c):L.isPlainObject(c)?L.merge({},c):L.isArray(c)?c.slice():c}function i(u,c,f,d){if(L.isUndefined(c)){if(!L.isUndefined(u))return r(void 0,u,f,d)}else return r(u,c,f,d)}function o(u,c){if(!L.isUndefined(c))return r(void 0,c)}function s(u,c){if(L.isUndefined(c)){if(!L.isUndefined(u))return r(void 0,u)}else return r(void 0,c)}function a(u,c,f){if(f in t)return r(u,c);if(f in e)return r(void 0,u)}const l={url:o,method:o,data:o,baseURL:s,transformRequest:s,transformResponse:s,paramsSerializer:s,timeout:s,timeoutMessage:s,withCredentials:s,withXSRFToken:s,adapter:s,responseType:s,xsrfCookieName:s,xsrfHeaderName:s,onUploadProgress:s,onDownloadProgress:s,decompress:s,maxContentLength:s,maxBodyLength:s,beforeRedirect:s,transport:s,httpAgent:s,httpsAgent:s,cancelToken:s,socketPath:s,responseEncoding:s,validateStatus:a,headers:(u,c,f)=>i(zp(u),zp(c),f,!0)};return L.forEach(Object.keys({...e,...t}),function(c){const f=l[c]||i,d=f(e[c],t[c],c);L.isUndefined(d)&&f!==a||(n[c]=d)}),n}const $2=e=>{const t=Zr({},e);let{data:n,withXSRFToken:r,xsrfHeaderName:i,xsrfCookieName:o,headers:s,auth:a}=t;t.headers=s=Rt.from(s),t.url=E2(D2(t.baseURL,t.url,t.allowAbsoluteUrls),e.params,e.paramsSerializer),a&&s.set("Authorization","Basic "+btoa((a.username||"")+":"+(a.password?unescape(encodeURIComponent(a.password)):"")));let l;if(L.isFormData(n)){if(Ct.hasStandardBrowserEnv||Ct.hasStandardBrowserWebWorkerEnv)s.setContentType(void 0);else if((l=s.getContentType())!==!1){const[u,...c]=l?l.split(";").map(f=>f.trim()).filter(Boolean):[];s.setContentType([u||"multipart/form-data",...c].join("; "))}}if(Ct.hasStandardBrowserEnv&&(r&&L.isFunction(r)&&(r=r(t)),r||r!==!1&&P8(t.url))){const u=i&&o&&j8.read(o);u&&s.set(i,u)}return t},L8=typeof XMLHttpRequest<"u",R8=L8&&function(e){return new Promise(function(n,r){const i=$2(e);let o=i.data;const s=Rt.from(i.headers).normalize();let{responseType:a,onUploadProgress:l,onDownloadProgress:u}=i,c,f,d,p,g;function m(){p&&p(),g&&g(),i.cancelToken&&i.cancelToken.unsubscribe(c),i.signal&&i.signal.removeEventListener("abort",c)}let y=new XMLHttpRequest;y.open(i.method.toUpperCase(),i.url,!0),y.timeout=i.timeout;function v(){if(!y)return;const _=Rt.from("getAllResponseHeaders"in y&&y.getAllResponseHeaders()),S={data:!a||a==="text"||a==="json"?y.responseText:y.response,status:y.status,statusText:y.statusText,headers:_,config:e,request:y};j2(function(E){n(E),m()},function(E){r(E),m()},S),y=null}"onloadend"in y?y.onloadend=v:y.onreadystatechange=function(){!y||y.readyState!==4||y.status===0&&!(y.responseURL&&y.responseURL.indexOf("file:")===0)||setTimeout(v)},y.onabort=function(){y&&(r(new we("Request aborted",we.ECONNABORTED,e,y)),y=null)},y.onerror=function(){r(new we("Network Error",we.ERR_NETWORK,e,y)),y=null},y.ontimeout=function(){let x=i.timeout?"timeout of "+i.timeout+"ms exceeded":"timeout exceeded";const S=i.transitional||A2;i.timeoutErrorMessage&&(x=i.timeoutErrorMessage),r(new we(x,S.clarifyTimeoutError?we.ETIMEDOUT:we.ECONNABORTED,e,y)),y=null},o===void 0&&s.setContentType(null),"setRequestHeader"in y&&L.forEach(s.toJSON(),function(x,S){y.setRequestHeader(S,x)}),L.isUndefined(i.withCredentials)||(y.withCredentials=!!i.withCredentials),a&&a!=="json"&&(y.responseType=i.responseType),u&&([d,g]=Va(u,!0),y.addEventListener("progress",d)),l&&y.upload&&([f,p]=Va(l),y.upload.addEventListener("progress",f),y.upload.addEventListener("loadend",p)),(i.cancelToken||i.signal)&&(c=_=>{y&&(r(!_||_.type?new Vi(null,e,y):_),y.abort(),y=null)},i.cancelToken&&i.cancelToken.subscribe(c),i.signal&&(i.signal.aborted?c():i.signal.addEventListener("abort",c)));const w=E8(i.url);if(w&&Ct.protocols.indexOf(w)===-1){r(new we("Unsupported protocol "+w+":",we.ERR_BAD_REQUEST,e));return}y.send(o||null)})},B8=(e,t)=>{const{length:n}=e=e?e.filter(Boolean):[];if(t||n){let r=new AbortController,i;const o=function(u){if(!i){i=!0,a();const c=u instanceof Error?u:this.reason;r.abort(c instanceof we?c:new Vi(c instanceof Error?c.message:c))}};let s=t&&setTimeout(()=>{s=null,o(new we(`timeout ${t} of ms exceeded`,we.ETIMEDOUT))},t);const a=()=>{e&&(s&&clearTimeout(s),s=null,e.forEach(u=>{u.unsubscribe?u.unsubscribe(o):u.removeEventListener("abort",o)}),e=null)};e.forEach(u=>u.addEventListener("abort",o));const{signal:l}=r;return l.unsubscribe=()=>L.asap(a),l}},X8=function*(e,t){let n=e.byteLength;if(n{const i=F8(e,t);let o=0,s,a=l=>{s||(s=!0,r&&r(l))};return new ReadableStream({async pull(l){try{const{done:u,value:c}=await i.next();if(u){a(),l.close();return}let f=c.byteLength;if(n){let d=o+=f;n(d)}l.enqueue(new Uint8Array(c))}catch(u){throw a(u),u}},cancel(l){return a(l),i.return()}},{highWaterMark:2})},Al=typeof fetch=="function"&&typeof Request=="function"&&typeof Response=="function",L2=Al&&typeof ReadableStream=="function",H8=Al&&(typeof TextEncoder=="function"?(e=>t=>e.encode(t))(new TextEncoder):async e=>new Uint8Array(await new Response(e).arrayBuffer())),R2=(e,...t)=>{try{return!!e(...t)}catch{return!1}},W8=L2&&R2(()=>{let e=!1;const t=new Request(Ct.origin,{body:new ReadableStream,method:"POST",get duplex(){return e=!0,"half"}}).headers.has("Content-Type");return e&&!t}),Ep=64*1024,Ac=L2&&R2(()=>L.isReadableStream(new Response("").body)),Ha={stream:Ac&&(e=>e.body)};Al&&(e=>{["text","arrayBuffer","blob","formData","stream"].forEach(t=>{!Ha[t]&&(Ha[t]=L.isFunction(e[t])?n=>n[t]():(n,r)=>{throw new we(`Response type '${t}' is not supported`,we.ERR_NOT_SUPPORT,r)})})})(new Response);const U8=async e=>{if(e==null)return 0;if(L.isBlob(e))return e.size;if(L.isSpecCompliantForm(e))return(await new Request(Ct.origin,{method:"POST",body:e}).arrayBuffer()).byteLength;if(L.isArrayBufferView(e)||L.isArrayBuffer(e))return e.byteLength;if(L.isURLSearchParams(e)&&(e=e+""),L.isString(e))return(await H8(e)).byteLength},Y8=async(e,t)=>{const n=L.toFiniteNumber(e.getContentLength());return n??U8(t)},G8=Al&&(async e=>{let{url:t,method:n,data:r,signal:i,cancelToken:o,timeout:s,onDownloadProgress:a,onUploadProgress:l,responseType:u,headers:c,withCredentials:f="same-origin",fetchOptions:d}=$2(e);u=u?(u+"").toLowerCase():"text";let p=B8([i,o&&o.toAbortSignal()],s),g;const m=p&&p.unsubscribe&&(()=>{p.unsubscribe()});let y;try{if(l&&W8&&n!=="get"&&n!=="head"&&(y=await Y8(c,r))!==0){let S=new Request(t,{method:"POST",body:r,duplex:"half"}),z;if(L.isFormData(r)&&(z=S.headers.get("content-type"))&&c.setContentType(z),S.body){const[E,P]=Cp(y,Va(Mp(l)));r=Np(S.body,Ep,E,P)}}L.isString(f)||(f=f?"include":"omit");const v="credentials"in Request.prototype;g=new Request(t,{...d,signal:p,method:n.toUpperCase(),headers:c.normalize().toJSON(),body:r,duplex:"half",credentials:v?f:void 0});let w=await fetch(g,d);const _=Ac&&(u==="stream"||u==="response");if(Ac&&(a||_&&m)){const S={};["status","statusText","headers"].forEach(M=>{S[M]=w[M]});const z=L.toFiniteNumber(w.headers.get("content-length")),[E,P]=a&&Cp(z,Va(Mp(a),!0))||[];w=new Response(Np(w.body,Ep,E,()=>{P&&P(),m&&m()}),S)}u=u||"text";let x=await Ha[L.findKey(Ha,u)||"text"](w,e);return!_&&m&&m(),await new Promise((S,z)=>{j2(S,z,{data:x,headers:Rt.from(w.headers),status:w.status,statusText:w.statusText,config:e,request:g})})}catch(v){throw m&&m(),v&&v.name==="TypeError"&&/Load failed|fetch/i.test(v.message)?Object.assign(new we("Network Error",we.ERR_NETWORK,e,g),{cause:v.cause||v}):we.from(v,v&&v.code,e,g)}}),Ic={http:u8,xhr:R8,fetch:G8};L.forEach(Ic,(e,t)=>{if(e){try{Object.defineProperty(e,"name",{value:t})}catch{}Object.defineProperty(e,"adapterName",{value:t})}});const Ap=e=>`- ${e}`,q8=e=>L.isFunction(e)||e===null||e===!1,B2={getAdapter:e=>{e=L.isArray(e)?e:[e];const{length:t}=e;let n,r;const i={};for(let o=0;o`adapter ${a} `+(l===!1?"is not supported by the environment":"is not available in the build"));let s=t?o.length>1?`since : `+o.map(Ap).join(` @@ -140,7 +140,7 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho * https://www.chartjs.org * (c) 2019 Chart.js Contributors * Released under the MIT license - */(function(e,t){(function(n,r){r(FM,Gh(),W2(),VM(),HM(),Y2(),WM())})(ke,function(n,r,i,o,s,a,l){r=r&&r.hasOwnProperty("default")?r.default:r,i=i&&i.hasOwnProperty("default")?i.default:i,o=o&&o.hasOwnProperty("default")?o.default:o,s=s&&s.hasOwnProperty("default")?s.default:s,a=a&&a.hasOwnProperty("default")?a.default:a,l=l&&l.hasOwnProperty("default")?l.default:l;const u={datetime:"MMM D, YYYY, h:mm:ss a",millisecond:"h:mm:ss.SSS a",second:"h:mm:ss a",minute:"h:mm a",hour:"hA",day:"MMM D",week:"ll",month:"MMM YYYY",quarter:"[Q]Q - YYYY",year:"YYYY"};n._adapters._date.override({_id:"dayjs",_create:function(c){return r.extend(i),r.utc(c)},formats:function(){return u},parse:function(c,f){return r.extend(i),typeof c=="string"&&typeof f=="string"?c=r.utc(c,f):c instanceof r||(c=r.utc(c)),c.isValid()?c.valueOf():null},format:function(c,f){return r.extend(i),r.extend(s),r.extend(a),r.extend(l),r.utc(c).format(f)},add:function(c,f,d){return r.extend(i),r.utc(c).add(f,d).valueOf()},diff:function(c,f,d){return r.extend(i),r.utc(c).diff(r(f),d)},startOf:function(c,f,d){return r.extend(i),r.extend(o),c=r.utc(c),f==="isoWeek"?c.weekday(d).valueOf():c.startOf(f).valueOf()},endOf:function(c,f){return r.extend(i),r.utc(c).endOf(f).valueOf()}})})})();const ye={SET_LOADING:"SET_LOADING",SET_ERROR:"SET_ERROR",ADD_MENU_BUTTON:"ADD_MENU_BUTTON",CLEAR_MENU_BUTTON:"CLEAR_MENU_BUTTON",ADD_LOGS:"ADD_LOGS",SET_LOGS:"SET_LOGS",SET_LOG_POLL_TIME:"SET_LOG_POLL_TIME",SET_USER:"SET_USER",SET_MIGRATIONS:"SET_MIGRATIONS",SET_SYSTEM_OK_STATUS:"SET_SYSTEM_OK_STATUS",SET_SYSTEM_OK_LOADING:"SET_SYSTEM_OK_LOADING"},UM=()=>({loading:!0,error:void 0,menu:[{routeName:"dashboard",title:"Pannello di Controllo",icon:"HomeIcon"},{routeName:"logs",title:"Logs",icon:"MonitorIcon",mustAuth:!0},{routeName:"scheduler.index",title:"Pianificate",icon:"ClockIcon",mustAuth:!0},{routeName:"migrations",title:"Migrazioni",icon:"DatabaseIcon",mustAuth:!0}],startPolling:!1,logs:[],logPollTime:3e3,user:void 0,migrations:[],systemOkStatus:void 0,systemOkLoading:!1}),YM={isLoading:e=>e.loading,getError:e=>e.error,menu:(e,t)=>e.menu.filter(n=>t.isAuthenticated||!n.mustAuth),getLogs:e=>e.logs,getLogPollTime:e=>e.logPollTime,getUser:e=>e.user,isAuthenticated:e=>!!e.user,getMigrations:e=>e.migrations,getSystemOkStatus:e=>e.systemOkStatus,getSystemOkStatusCode:(e,t)=>{var n,r;return((r=(n=t.getSystemOkStatus)==null?void 0:n.response)==null?void 0:r.status)??void 0},getSystemOkStatusErrorMessage:(e,t)=>{var n,r;switch(t.getSystemOkStatusCode){case 404:return"Il servizio non è raggiungibile. Verifica che il server sia attivo";case 551:return"Sistema non ancora inizializzato";case 552:return"Alcune migrazioni non sono andate a buon fine";default:return((r=(n=t.getSystemOkStatus)==null?void 0:n.data)==null?void 0:r.errorMessage)??"Impossibile contattare il server"}},isSystemOkInError:(e,t)=>t.getSystemOkStatusCode!==200,isSystemOkLoading:e=>e.systemOkLoading},GM={[ye.SET_LOADING](e,t){e.loading=t},[ye.SET_ERROR](e,t){e.error=t},[ye.ADD_MENU_BUTTON](e,t){if(t.child){const n=e.menu.find(r=>r.title.toLowerCase()===t.child.toLowerCase());n&&(n.child?n.child.push(t.button):n.child=[t.button])}else e.menu.push(t.button)},[ye.CLEAR_MENU_BUTTON](e,t){if(t.button)if(t.child){const n=e.menu.find(r=>r.title.toLowerCase()===t.button.toLowerCase());n&&delete n.child}else e.menu=e.menu.filter(n=>n.title.toLowerCase()!==t.button.toLowerCase())},[ye.ADD_LOGS](e,t){t&&(e.logs=[...t,...e.logs])},[ye.SET_LOGS](e,t){e.logs=t},[ye.SET_LOG_POLL_TIME](e,t){e.logPollTime=t},[ye.SET_USER](e,t){e.user=t},[ye.SET_MIGRATIONS](e,t){e.migrations=t},[ye.SET_SYSTEM_OK_STATUS](e,t){e.systemOkStatus=t},[ye.SET_SYSTEM_OK_LOADING](e,t){e.systemOkLoading=t}},qM={addMenuButton({commit:e},t){e(ye.ADD_MENU_BUTTON,t)},clearMenuButton({commit:e},t){e(ye.CLEAR_MENU_BUTTON,t)},async fetchLogs({commit:e},{action:t,params:n,data:r}){var i;e(ye.SET_LOADING,!0);try{const o=await ct.post("logs",r||void 0,{params:n||{}});if(o.data.esito===-1)throw Error(o.data.errorMessage);e(t||ye.SET_LOGS,(i=o.data.dto)==null?void 0:i.map(s=>(s.entryDate=new Date(s.entryDate),s))),e(ye.SET_LOG_POLL_TIME,o.headers["Request-Duration"])}catch(o){console.error(o)}finally{e(ye.SET_LOADING,!1)}},async login({commit:e},t){e(ye.SET_LOADING,!0),e(ye.SET_ERROR,void 0);try{const n=await ct.post("system/login",t||void 0);if(n.data.esito===-1)throw new Error(n.data.errorMessage);e(ye.SET_USER,t)}catch(n){e(ye.SET_ERROR,n),console.error(n)}finally{e(ye.SET_LOADING,!1)}},logout({commit:e}){e(ye.SET_USER,void 0)},async changePassword({commit:e,dispatch:t},n){e(ye.SET_LOADING,!0),e(ye.SET_ERROR,void 0);try{const r=await ct.post("system/change",n);if(r.data.esito===-1)throw new Error(r.data.errorMessage);t("logout")}catch(r){e(ye.SET_ERROR,r),console.error(r)}finally{e(ye.SET_LOADING,!1)}},async fetchMigrations({commit:e},{action:t,params:n}){e(ye.SET_LOADING,!0);try{const r=await ct.get("system/migration/setup",{params:n||{}});if(r.data.esito===-1)throw Error(r.data.errorMessage);e(t||ye.SET_MIGRATIONS,r.data.dto)}catch(r){console.error(r)}finally{e(ye.SET_LOADING,!1)}},async checkSystemOk({commit:e,dispatch:t}){try{e(ye.SET_SYSTEM_OK_LOADING,!1),await ct.get("system/ok"),e(ye.SET_SYSTEM_OK_STATUS,{response:{status:200}})}catch(n){e(ye.SET_SYSTEM_OK_STATUS,n),console.error(n)}finally{e(ye.SET_SYSTEM_OK_LOADING,!1)}await f7(5*1e3),await t("checkSystemOk")}},ZM={namespaced:!0,state:UM,getters:YM,mutations:GM,actions:qM},KM={class:"flex min-h-full items-center justify-center p-4"},JM={class:"px-6 py-4 border-b border-gray-200"},QM={class:"flex items-center space-x-3"},ez={key:0,class:"text-sm text-gray-500"},tz={class:"px-6 py-4 overflow-y-auto max-h-[70vh]"},nz={key:0,class:"space-y-6"},rz={class:"bg-gray-50 rounded-lg p-4"},iz={class:"text-sm font-medium text-gray-900 mb-3 flex items-center"},sz={class:"grid grid-cols-1 md:grid-cols-2 gap-4"},oz={class:"text-sm font-mono text-gray-900 bg-white px-2 py-1 rounded border"},az={class:"text-sm text-gray-900 bg-white px-2 py-1 rounded border"},lz={class:"text-sm font-mono text-gray-900 bg-white px-2 py-1 rounded border overflow-x-auto"},uz={class:"bg-gray-50 rounded-lg p-4"},cz={class:"text-sm font-medium text-gray-900 mb-3 flex items-center"},hz={class:"bg-white rounded border p-3"},fz={class:"text-sm text-gray-900 leading-relaxed whitespace-pre-wrap break-words"},dz={key:0,class:"bg-gray-50 rounded-lg p-4"},pz={class:"text-sm font-medium text-gray-900 mb-3 flex items-center"},gz={class:"bg-red-50 border border-red-200 rounded p-3"},mz=["innerHTML"],yz={__name:"LogDetailModal",props:{show:{type:Boolean,default:!1},logItem:{type:Object,default:{}}},emits:["close"],setup(e){return(t,n)=>{var r,i,o,s,a,l,u;return F(),Te(Y0,{to:"body"},[e.show?(F(),K("div",{key:0,class:"fixed inset-0 z-50 overflow-y-auto",onClick:n[2]||(n[2]=c=>t.$emit("close"))},[n[12]||(n[12]=k("div",{class:"fixed inset-0 bg-black bg-opacity-50 transition-opacity"},null,-1)),k("div",KM,[k("div",{class:"relative bg-white rounded-lg shadow-xl max-w-7xl w-full max-h-[90vh] overflow-hidden",onClick:n[1]||(n[1]=Im(()=>{},["stop"]))},[k("div",JM,[k("div",QM,[k("div",{class:Re(["w-8 h-8 rounded-lg flex items-center justify-center",{"bg-red-100":((r=e.logItem)==null?void 0:r.level)==="ERROR","bg-yellow-100":((i=e.logItem)==null?void 0:i.level)==="WARN","bg-blue-100":((o=e.logItem)==null?void 0:o.level)==="INFO","bg-gray-100":!["ERROR","WARN","INFO"].includes((s=e.logItem)==null?void 0:s.level)}])},[((a=e.logItem)==null?void 0:a.level)==="ERROR"?(F(),Te(ee(ap),{key:0,class:"w-4 h-4 text-red-600"})):((l=e.logItem)==null?void 0:l.level)==="WARN"?(F(),Te(ee(c2),{key:1,class:"w-4 h-4 text-yellow-600"})):((u=e.logItem)==null?void 0:u.level)==="INFO"?(F(),Te(ee(up),{key:2,class:"w-4 h-4 text-blue-600"})):(F(),Te(ee(z6),{key:3,class:"w-4 h-4 text-gray-600"}))],2),k("div",null,[n[3]||(n[3]=k("h3",{class:"text-lg font-semibold text-gray-900"},"Dettagli Log",-1)),e.logItem?(F(),K("p",ez,Se(e.logItem.level)+" • "+Se(ee(Vt)(e.logItem.entryDate).format("DD/MM/YYYY HH:mm:ss")),1)):ze("",!0)])])]),k("div",tz,[e.logItem?(F(),K("div",nz,[k("div",rz,[k("h4",iz,[h(ee(f2),{class:"w-4 h-4 mr-2 text-gray-600"}),n[4]||(n[4]=lt(" Informazioni Generali ",-1))]),k("div",sz,[k("div",null,[n[5]||(n[5]=k("label",{class:"block text-xs font-medium text-gray-600 mb-1"},"ID Log",-1)),k("p",oz,Se(e.logItem.id),1)]),k("div",null,[n[6]||(n[6]=k("label",{class:"block text-xs font-medium text-gray-600 mb-1"},"Data e Ora",-1)),k("p",az,Se(ee(Vt)(e.logItem.entryDate).format("DD/MM/YYYY HH:mm:ss.SSS")),1)]),k("div",null,[n[7]||(n[7]=k("label",{class:"block text-xs font-medium text-gray-600 mb-1"},"Livello",-1)),k("span",{class:Re(["inline-flex items-center px-2 py-1 rounded text-sm font-medium",{"bg-red-100 text-red-800":e.logItem.level==="ERROR","bg-yellow-100 text-yellow-800":e.logItem.level==="WARN","bg-blue-100 text-blue-800":e.logItem.level==="INFO","bg-gray-100 text-gray-800":!["ERROR","WARN","INFO"].includes(e.logItem.level)}])},Se(e.logItem.level),3)]),k("div",null,[n[8]||(n[8]=k("label",{class:"block text-xs font-medium text-gray-600 mb-1"},"Logger",-1)),k("p",lz,Se(e.logItem.logger),1)])])]),k("div",uz,[k("h4",cz,[h(ee(up),{class:"w-4 h-4 mr-2 text-gray-600"}),n[9]||(n[9]=lt(" Messaggio ",-1))]),k("div",hz,[k("p",fz,Se(e.logItem.message),1)])]),e.logItem.exception?(F(),K("div",dz,[k("h4",pz,[h(ee(ap),{class:"w-4 h-4 mr-2 text-red-600"}),n[10]||(n[10]=lt(" Stack Trace ",-1))]),k("div",gz,[k("pre",{class:"text-xs font-mono text-red-900 whitespace-pre-wrap overflow-x-auto leading-relaxed",innerHTML:e.logItem.exception.replaceAll(/^\tat it\.integry.*$/gm,'$&')},null,8,mz)])])):ze("",!0)])):ze("",!0)]),k("button",{onClick:n[0]||(n[0]=c=>t.$emit("close")),class:"absolute top-4 right-4 text-gray-400 hover:text-gray-600 transition-colors"},n[11]||(n[11]=[k("svg",{class:"w-6 h-6",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24"},[k("path",{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M6 18L18 6M6 6l12 12"})],-1)]))])])])):ze("",!0)])}}},vz={key:0,class:"bg-white rounded-xl border border-red-200 p-8 text-center mx-6 my-6"},bz={class:"w-16 h-16 bg-red-100 rounded-full flex items-center justify-center mx-auto mb-4"},wz={key:0,class:"text-red-700"},xz={key:1,class:"bg-white rounded-xl border border-blue-200 p-8 text-center mx-6 my-6"},_z={class:"w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mx-auto mb-4"},Oz={class:"text-blue-700"},Sz={key:2,class:"grid grid-cols-1 lg:grid-cols-2 gap-6 px-6 pt-6",style:{height:"40rem"}},kz={class:"modern-card"},Tz={class:"card-header"},Cz={class:"flex items-center justify-between"},Mz={class:"flex items-center space-x-3"},zz={key:0,class:"flex items-center"},Nz={class:"w-8 h-8 bg-red-100 rounded-lg flex items-center justify-center"},Ez={key:0,class:"mt-2 flex items-center text-xs",style:{color:"var(--surface-500)"}},Az={class:"card-body"},Iz={class:"grid grid-cols-3 gap-4"},Pz={class:"text-center"},jz={class:"text-2xl font-bold",style:{color:"var(--surface-900)"}},Dz={class:"text-xs flex items-center justify-center mt-1",style:{color:"var(--surface-500)"}},$z={class:"text-center"},Lz={class:"text-xs flex items-center justify-center mt-1",style:{color:"var(--surface-500)"}},Rz={class:"text-center"},Bz={class:"flex items-center justify-center space-x-1"},Xz={key:0,class:"flex items-center text-red-600"},Fz={class:"text-lg font-bold"},Vz={key:1,class:"flex items-center text-green-600"},Hz={class:"text-lg font-bold"},Wz={key:2,class:"flex items-center text-gray-600"},Uz={key:0,class:"mt-4 p-3 bg-red-50 rounded-lg border border-red-100"},Yz={class:"flex items-center justify-between text-sm"},Gz={class:"text-red-900"},qz={class:"font-bold"},Zz={class:"text-red-600 ml-2"},Kz={class:"p-6"},Jz={class:"relative"},Qz={key:0,class:"absolute inset-0 bg-opacity-75 flex items-center justify-center z-10 rounded",style:{"background-color":"var(--surface-0)"}},eN={class:"flex flex-col items-center"},tN={class:"modern-card flex flex-col"},nN={class:"card-header"},rN={class:"flex items-center justify-between"},iN={class:"w-8 h-8 bg-blue-100 rounded-lg flex items-center justify-center"},sN={class:"card-body h-full"},oN={class:"space-y-3"},aN={key:0,class:"flex items-center justify-center h-full"},lN={class:"text-center"},uN=["onClick"],cN={class:"flex items-center justify-between mb-1"},hN={class:"flex items-center space-x-2"},fN={class:"text-xs text-gray-600 font-mono"},dN={class:"text-xs text-gray-600 font-medium"},pN={class:"flex items-center space-x-1"},gN={class:"text-gray-700 text-xs font-mono break-words leading-relaxed pl-1"},mN={class:"pt-3 border-t border-gray-100 mt-3"},yN={__name:"Home",setup(e){const t=Bi(),n=fe(()=>t.getters["main/getSystemOkStatusCode"]),r=fe(()=>t.getters["main/getSystemOkStatus"]),i=fe(()=>t.getters["main/getSystemOkStatusErrorMessage"]),o=fe(()=>!t.getters["main/isSystemOkInError"]&&u.readyToStartPolling),s=fe(()=>t.getters["main/getLogs"]),a=fe(()=>t.getters["main/getLogPollTime"]),l=fe(()=>s.value.length>0?s.value[0].entryDate:void 0),u=Bt({readyToStartPolling:!1,logsPolling:!1,stats:{min:50,max:0,delay:10},selectedLog:null,showLogModal:!1,errorStats:{loading:!0,lastUpdate:null,totalErrors:0,todayErrors:0,trend:"stable",trendPercentage:0,peakDay:null,peakCount:0}}),c=rt({}),f={responsive:!0,maintainAspectRatio:!1,interaction:{intersect:!1,mode:"index"},plugins:{legend:{display:!1},tooltip:{backgroundColor:"rgba(0, 0, 0, 0.8)",titleColor:"#fff",bodyColor:"#fff",borderColor:"rgba(255, 255, 255, 0.1)",borderWidth:1,cornerRadius:8,displayColors:!1,callbacks:{title:function(_){return Vt(_[0].parsed.x).format("DD/MM/YYYY")},label:function(_){return`Errori: ${_.parsed.y}`},afterLabel:function(_){const x=Vt(_.parsed.x),S=x.isSame(Vt(),"day"),z=x.isSame(Vt().subtract(1,"day"),"day");return S?"Oggi":z?"Ieri":x.format("dddd")}}}},scales:{x:{type:"time",time:{unit:"day",displayFormats:{day:"DD/MM"}},grid:{display:!1},ticks:{maxTicksLimit:7,color:"#6B7280"}},y:{beginAtZero:!0,grid:{color:"rgba(107, 114, 128, 0.1)"},ticks:{color:"#6B7280",precision:0}}},elements:{point:{radius:4,hoverRadius:6,backgroundColor:"#EF4444",borderColor:"#FFFFFF",borderWidth:2},line:{tension:.3}}};async function d(){try{u.errorStats.loading=!0;const _=await ct.get("logs/readErrorStats");if(_.data.esito===-1)throw Error(_.data.errorMessage);const x=_.data.dto||[];p(x),c.value={datasets:[{type:"line",label:"Errori giornalieri",data:x,backgroundColor:g(),borderColor:"#EF4444",borderWidth:2,fill:!0,pointBackgroundColor:x.map(S=>{const z=Vt(S.x).isSame(Vt(),"day");return S.y===u.errorStats.peakCount?"#DC2626":z?"#F59E0B":"#EF4444"}),pointBorderColor:"#FFFFFF",pointBorderWidth:2,pointRadius:x.map(S=>S.y===u.errorStats.peakCount?6:4),pointHoverRadius:8,tension:.3}]},u.errorStats.lastUpdate=new Date}catch(_){console.error("Errore nel caricamento delle statistiche errori:",_)}finally{u.errorStats.loading=!1}}function p(_){if(!_||_.length===0){u.errorStats={...u.errorStats,totalErrors:0,todayErrors:0,trend:"stable",trendPercentage:0,peakDay:null,peakCount:0};return}const x=_.reduce((A,U)=>A+U.y,0),S=Vt(),z=_.find(A=>Vt(A.x).isSame(S,"day")),E=z?z.y:0,P=_.reduce((A,U)=>U.y>A.y?U:A,{y:0,x:null}),M=_.slice(-3),D=_.slice(-6,-3),Z=M.reduce((A,U)=>A+U.y,0)/Math.max(M.length,1),j=D.reduce((A,U)=>A+U.y,0)/Math.max(D.length,1);let Y="stable",V=0;if(j>0){const A=(Z-j)/j*100;V=Math.abs(A),A>10?Y="up":A<-10?Y="down":Y="stable"}u.errorStats={...u.errorStats,totalErrors:x,todayErrors:E,trend:Y,trendPercentage:Math.round(V),peakDay:P.x,peakCount:P.y}}function g(){const S=document.createElement("canvas").getContext("2d").createLinearGradient(0,0,0,400);return S.addColorStop(0,"rgba(239, 68, 68, 0.3)"),S.addColorStop(.5,"rgba(239, 68, 68, 0.1)"),S.addColorStop(1,"rgba(239, 68, 68, 0.05)"),S}let m;async function y(){if(await t.dispatch("main/fetchLogs",{action:ye.ADD_LOGS,data:{filters:{entryDate:{operator:"and",constraints:[{value:l.value,matchMode:"dateAfter"}]}}}}),o.value&&u.logsPolling){await d();const _=a.value*5,x=15*1e3;m=d7(_{o.value?u.logsPolling||(y(),u.logsPolling=!0):(u.logsPolling=!1,m&&(m.cancel(),m=void 0))}),ti(()=>{u.readyToStartPolling=!0}),wl(()=>{u.readyToStartPolling=!1}),document.addEventListener("visibilitychange",()=>{u.readyToStartPolling=!document.hidden},!1),rt({});function v(_){u.selectedLog=_,u.showLogModal=!0}function w(){u.showLogModal=!1,u.selectedLog=null}return(_,x)=>{var P;const S=v2,z=y2,E=wt("router-link");return F(),K(Xe,null,[k("div",null,[n.value>=500?(F(),K("div",vz,[k("div",bz,[h(ee(u2),{class:"w-8 h-8 text-red-600"})]),x[0]||(x[0]=k("h2",{class:"text-xl font-semibold text-red-900 mb-2"},"Errore di Sistema",-1)),i.value?(F(),K("p",wz,Se(i.value),1)):ze("",!0)])):!((P=r.value)!=null&&P.response)||n.value>400&&n.value<500?(F(),K("div",xz,[k("div",_z,[h(S,{icon:"oval",color:"blue",size:"35"})]),x[1]||(x[1]=k("h2",{class:"text-xl font-semibold text-blue-900 mb-2"},"Caricamento Sistema",-1)),k("p",Oz,Se(i.value),1)])):(F(),K("div",Sz,[k("div",kz,[k("div",Tz,[k("div",Cz,[k("div",Mz,[x[2]||(x[2]=k("h3",{class:"text-lg font-semibold"},"Report Errori (14 giorni)",-1)),u.errorStats.loading?(F(),K("div",zz,[h(ee(Sc),{class:"w-4 h-4 animate-spin",style:{color:"var(--surface-400)"}})])):ze("",!0)]),k("div",Nz,[h(ee(c2),{class:"w-5 h-5 text-red-600"})])]),u.errorStats.lastUpdate?(F(),K("div",Ez,[h(ee(f2),{class:"w-3 h-3 mr-1"}),lt(" Ultimo aggiornamento: "+Se(ee(Vt)(u.errorStats.lastUpdate).format("HH:mm:ss")),1)])):ze("",!0)]),k("div",Az,[k("div",Iz,[k("div",Pz,[k("div",jz,Se(u.errorStats.totalErrors),1),k("div",Dz,[h(ee(lp),{class:"w-3 h-3 mr-1"}),x[3]||(x[3]=lt(" Totali ",-1))])]),k("div",$z,[k("div",{class:Re(["text-2xl font-bold",{"text-red-600":u.errorStats.todayErrors>0,"text-green-600":u.errorStats.todayErrors===0}])},Se(u.errorStats.todayErrors),3),k("div",Lz,[h(ee(M6),{class:"w-3 h-3 mr-1"}),x[4]||(x[4]=lt(" Oggi ",-1))])]),k("div",Rz,[k("div",Bz,[u.errorStats.trend==="up"?(F(),K("div",Xz,[h(ee(C6),{class:"w-4 h-4 mr-1"}),k("span",Fz,"+"+Se(u.errorStats.trendPercentage)+"%",1)])):u.errorStats.trend==="down"?(F(),K("div",Vz,[h(ee(T6),{class:"w-4 h-4 mr-1"}),k("span",Hz,"-"+Se(u.errorStats.trendPercentage)+"%",1)])):(F(),K("div",Wz,[h(ee(lp),{class:"w-4 h-4 mr-1"}),x[5]||(x[5]=k("span",{class:"text-lg font-bold"},"Stabile",-1))]))]),x[6]||(x[6]=k("div",{class:"text-xs mt-1",style:{color:"var(--surface-500)"}},"Trend 3gg",-1))])]),u.errorStats.peakDay&&u.errorStats.peakCount>0?(F(),K("div",Uz,[k("div",Yz,[x[7]||(x[7]=k("span",{class:"text-red-700 font-medium"},"Picco massimo:",-1)),k("div",Gz,[k("span",qz,Se(u.errorStats.peakCount)+" errori",1),k("span",Zz,Se(ee(Vt)(u.errorStats.peakDay).format("DD/MM")),1)])])])):ze("",!0)]),k("div",Kz,[k("div",Jz,[u.errorStats.loading?(F(),K("div",Qz,[k("div",eN,[h(ee(Sc),{class:"w-6 h-6 text-red-600 animate-spin"}),x[8]||(x[8]=k("p",{class:"text-sm mt-2",style:{color:"var(--surface-500)"}},"Caricamento dati...",-1))])])):ze("",!0),h(z,{type:"line",data:c.value,options:f,class:"h-64"},null,8,["data"])]),x[9]||(x[9]=Ln('
Errori giornalieri
Oggi
Picco massimo
',1))])]),k("div",tN,[k("div",nN,[k("div",rN,[x[10]||(x[10]=k("h3",{class:"text-lg font-semibold"},"Log Sistema",-1)),k("div",iN,[h(ee(P6),{class:"w-5 h-5 text-blue-600"})])])]),k("div",sN,[k("div",oN,[s.value.length===0?(F(),K("div",aN,[k("div",lN,[h(S,{icon:"oval",color:"blue",size:"40"}),x[11]||(x[11]=k("p",{class:"mt-2"},"Caricamento logs...",-1))])])):(F(),K(Xe,{key:1},[(F(!0),K(Xe,null,Gr(s.value,M=>(F(),K("div",{key:M.id,onClick:D=>v(M),class:Re(["bg-gray-50 rounded-md p-2 text-xs border-l-3 hover:bg-gray-100 transition-colors cursor-pointer",{"border-l-red-500 bg-red-100":M.level==="ERROR","border-l-yellow-500 bg-yellow-100":M.level==="WARN","border-l-blue-500 bg-blue-100":M.level==="INFO","border-l-gray-300":!["ERROR","WARN","INFO"].includes(M.level)}])},[k("div",cN,[k("div",hN,[k("span",fN,Se(ee(Vt)(M.entryDate).format("HH:mm:ss")),1),x[12]||(x[12]=k("span",{class:"text-xs text-gray-500"},"•",-1)),k("span",dN,Se(M.logger),1)]),k("div",pN,[k("div",{class:Re(["w-2 h-2 rounded-full",{"bg-red-500":M.level==="ERROR","bg-yellow-500":M.level==="WARN","bg-blue-500":M.level==="INFO","bg-gray-400":!["ERROR","WARN","INFO"].includes(M.level)}])},null,2),k("span",{class:Re(["text-xs font-medium",{"text-red-700":M.level==="ERROR","text-yellow-700":M.level==="WARN","text-blue-700":M.level==="INFO","text-gray-600":!["ERROR","WARN","INFO"].includes(M.level)}])},Se(M.level),3)])]),k("p",gN,Se(M.message),1)],10,uN))),128)),k("div",mN,[h(E,{to:{name:"logs"},class:"inline-flex items-center px-3 py-2 text-xs font-medium text-blue-600 bg-blue-50 rounded-md hover:bg-blue-100 transition-colors"},{default:Ue(()=>[h(ee(E6),{class:"w-3 h-3 mr-1 text-blue-600"}),x[13]||(x[13]=lt(" Visualizza tutti i log ",-1))]),_:1,__:[13]})])],64))])])])]))]),h(yz,{show:u.showLogModal,"log-item":u.selectedLog,onClose:w},null,8,["show","log-item"])],64)}}},vN={},bN={class:"bg-white shadow"};function wN(e,t){return F(),K("header",bN,t[0]||(t[0]=[k("div",{class:"max-w-7xl mx-auto py-6 px-4 sm:px-6 lg:px-8"},[k("h1",{class:"text-3xl font-bold leading-tight text-gray-900"},"Not Found")],-1)]))}const xN=Xh(vN,[["render",wN]]),_N=[{path:"/",name:"dashboard",meta:{title:"Dashboard Sistema",subtitle:"Monitoraggio in tempo reale dello stato dell'applicazione"},component:yN},{path:"/scheduler",name:"scheduler.index",meta:{title:"Pianificate",subtitle:"Visualizza e gestisci le attività pianificate del sistema",mustAuth:!0},component:()=>ar(()=>import("./Index-MhLTwvCo.js"),[],import.meta.url),children:[{path:":type",name:"scheduler.show",component:()=>ar(()=>import("./Show-Dt5Jwlxb.js"),__vite__mapDeps([0,1]),import.meta.url)},{path:":type/create",name:"scheduler.create",component:()=>ar(()=>import("./Create-5nY6itgI.js"),__vite__mapDeps([2,3,4]),import.meta.url)},{path:":type/:id/edit",name:"scheduler.edit",component:()=>ar(()=>import("./Edit-DW9sMVCT.js"),__vite__mapDeps([5,3,4]),import.meta.url)},{path:":type/:id/duplicate",name:"scheduler.duplicate",component:()=>ar(()=>import("./Edit-DW9sMVCT.js"),__vite__mapDeps([5,3,4]),import.meta.url)}]},{path:"/logs",name:"logs",meta:{title:"Logs",subtitle:"Monitora i log del sistema"},component:()=>ar(()=>import("./Logs-DBkArgPL.js"),__vite__mapDeps([6,1,7]),import.meta.url)},{path:"/migrations",name:"migrations",meta:{title:"Migrazioni",subtitle:"Monitora e gestisci le migrazioni del database"},component:()=>ar(()=>import("./Migrations-B5ntuiU0.js"),__vite__mapDeps([8,1,9]),import.meta.url)},{path:"/:path(.*)",component:xN}],et={SET_INITIALIZED:"SET_INITIALIZED",SET_ERROR:"SET_ERROR",SET_AUTOMATION_CATEGORIES:"SET_AUTOMATION_CATEGORIES",SET_CURRENT_CATEGORY:"SET_CURRENT_CATEGORY",SET_AUTOMATIONS:"SET_AUTOMATIONS",SET_CURRENT_AUTOMATION:"SET_CURRENT_AUTOMATION"},ON=()=>({initialized:!1,error:void 0,automation_categories:[],current_category:void 0,automations:[],current_automation:void 0}),SN={isInitialized:e=>e.initialized,getError:e=>e.error,getAutomationCategories:e=>e.automation_categories,getAutomations:e=>e.automations,getCurrentCategory:e=>{if(e.current_category){const t=e.automation_categories[e.current_category];return t&&t.forEach(n=>{switch(n.type){case"boolean":n.as="input",n.inputType="checkbox",n.classes="form-check-switch";break;case"Enum":n.as="select",delete n.inputType,n.options=n.defaultValues;break;default:n.as="input",n.inputType="text";break}switch(n.classes??(n.classes="form-control w-full"),n.name){case"id":n.disabled=!0;break;case"profileDb":n.as="select",delete n.inputType,n.options=n.defaultValues;break;case"cronTrigger":n.autocomplete="off",n.classes="form-control w-full",n.info={class:"text-md",message:p7},n.group=()=>window.open("http://www.cronmaker.com/","_blank");break}n.required&&(n.rules="required"),n.password&&(n.inputType="password"),n.name==="cronTrigger"&&(n.rules&&n.rules.length>0?n.rules+="|cron":n.rules="cron")}),t}return[]},getCurrentCategoryKey:e=>e.current_category,getCurrentAutomation:e=>e.current_automation?e.automations.find(t=>t.id===e.current_automation):[]},kN={[et.SET_INITIALIZED](e,t){e.initialized=t},[et.SET_ERROR](e,t){e.error=t},[et.SET_AUTOMATION_CATEGORIES](e,t){e.automation_categories=t},[et.SET_CURRENT_CATEGORY](e,t){e.current_category=t},[et.SET_AUTOMATIONS](e,t){e.automations=t},[et.SET_CURRENT_AUTOMATION](e,t){e.current_automation=t}},TN={async initStore({commit:e,dispatch:t,getters:n}){n.isInitialized||(await t("fetchAutomationCategories"),e(et.SET_INITIALIZED,!0))},async fetchAutomationCategories({commit:e}){e(`main/${ye.SET_LOADING}`,!0,{root:!0}),e(et.SET_ERROR,void 0);try{const t=await ct.get("automation/category");if(t.data.esito===-1)throw Error(t.data.errorMessage);e(et.SET_AUTOMATION_CATEGORIES,t.data.dto)}catch(t){e(et.SET_ERROR,t),console.error(t)}finally{e(`main/${ye.SET_LOADING}`,!1,{root:!0})}},setCurrentCategory({commit:e},t){e(et.SET_CURRENT_CATEGORY,t)},async fetchAutomations({commit:e},t=""){e(`main/${ye.SET_LOADING}`,!0,{root:!0}),e(et.SET_ERROR,void 0);try{const n=await ct.get("automation",{params:{categoryFilter:t},headers:{include_nulls:!0}});if(n.data.esito===-1)throw Error(n.data.errorMessage);t?e(et.SET_AUTOMATIONS,n.data.dto[t]):e(et.SET_AUTOMATIONS,n.data.dto)}catch(n){e(et.SET_ERROR,n),console.error(n)}finally{e(`main/${ye.SET_LOADING}`,!1,{root:!0})}},async saveAutomation({commit:e},t){e(`main/${ye.SET_LOADING}`,!0,{root:!0}),e(et.SET_ERROR,void 0);try{let n;if(t.active?t.active=!0:t.active=!1,t.id?n=await ct.put("automation",t):n=await ct.post("automation",t),n.data.esito===-1)throw Error(n.data.errorMessage);return n.data}catch(n){e(et.SET_ERROR,n),console.error(n)}finally{e(`main/${ye.SET_LOADING}`,!1,{root:!0})}},async deleteAutomation({commit:e},t){e(`main/${ye.SET_LOADING}`,!0,{root:!0}),e(et.SET_ERROR,void 0);try{const n=await ct.delete(`automation/${t}`);if(n.data.esito===-1)throw Error(n.data.errorMessage);return n.data}catch(n){e(et.SET_ERROR,n),console.error(n)}finally{e(`main/${ye.SET_LOADING}`,!1,{root:!0})}},setCurrentAutomation({commit:e},t){e(et.SET_CURRENT_AUTOMATION,t)},async runAutomation({commit:e},t){e(`main/${ye.SET_LOADING}`,!0,{root:!0}),e(et.SET_ERROR,void 0);try{const n=await ct.get(`automation/run/${t}`);if(n.data.esito===-1)throw Error(n.data.errorMessage);return n.data}catch(n){e(et.SET_ERROR,n),console.error(n)}finally{e(`main/${ye.SET_LOADING}`,!1,{root:!0})}}},CN={namespaced:!0,state:ON,getters:SN,actions:TN,mutations:kN},df=rO({modules:{main:ZM,scheduler:CN}});df.dispatch("main/checkSystemOk");var MN={name:"ActivityIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-activity"},Object.assign({},i)),[h("polyline",{points:"22 12 18 12 15 21 9 3 6 12 2 12"})])}}},zN={name:"AirplayIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-airplay"},Object.assign({},i)),[h("path",{d:"M5 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-1"}),h("polygon",{points:"12 15 17 21 7 21 12 15"})])}}},NN={name:"AlertCircleIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-alert-circle"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("line",{x1:"12",y1:"8",x2:"12",y2:"12"}),h("line",{x1:"12",y1:"16",x2:"12.01",y2:"16"})])}}},EN={name:"AlertOctagonIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-alert-octagon"},Object.assign({},i)),[h("polygon",{points:"7.86 2 16.14 2 22 7.86 22 16.14 16.14 22 7.86 22 2 16.14 2 7.86 7.86 2"}),h("line",{x1:"12",y1:"8",x2:"12",y2:"12"}),h("line",{x1:"12",y1:"16",x2:"12.01",y2:"16"})])}}},AN={name:"AlertTriangleIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-alert-triangle"},Object.assign({},i)),[h("path",{d:"M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z"}),h("line",{x1:"12",y1:"9",x2:"12",y2:"13"}),h("line",{x1:"12",y1:"17",x2:"12.01",y2:"17"})])}}},IN={name:"AlignCenterIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-align-center"},Object.assign({},i)),[h("line",{x1:"18",y1:"10",x2:"6",y2:"10"}),h("line",{x1:"21",y1:"6",x2:"3",y2:"6"}),h("line",{x1:"21",y1:"14",x2:"3",y2:"14"}),h("line",{x1:"18",y1:"18",x2:"6",y2:"18"})])}}},PN={name:"AlignJustifyIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-align-justify"},Object.assign({},i)),[h("line",{x1:"21",y1:"10",x2:"3",y2:"10"}),h("line",{x1:"21",y1:"6",x2:"3",y2:"6"}),h("line",{x1:"21",y1:"14",x2:"3",y2:"14"}),h("line",{x1:"21",y1:"18",x2:"3",y2:"18"})])}}},jN={name:"AlignLeftIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-align-left"},Object.assign({},i)),[h("line",{x1:"17",y1:"10",x2:"3",y2:"10"}),h("line",{x1:"21",y1:"6",x2:"3",y2:"6"}),h("line",{x1:"21",y1:"14",x2:"3",y2:"14"}),h("line",{x1:"17",y1:"18",x2:"3",y2:"18"})])}}},DN={name:"AlignRightIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-align-right"},Object.assign({},i)),[h("line",{x1:"21",y1:"10",x2:"7",y2:"10"}),h("line",{x1:"21",y1:"6",x2:"3",y2:"6"}),h("line",{x1:"21",y1:"14",x2:"3",y2:"14"}),h("line",{x1:"21",y1:"18",x2:"7",y2:"18"})])}}},$N={name:"AnchorIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-anchor"},Object.assign({},i)),[h("circle",{cx:"12",cy:"5",r:"3"}),h("line",{x1:"12",y1:"22",x2:"12",y2:"8"}),h("path",{d:"M5 12H2a10 10 0 0 0 20 0h-3"})])}}},LN={name:"ApertureIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-aperture"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("line",{x1:"14.31",y1:"8",x2:"20.05",y2:"17.94"}),h("line",{x1:"9.69",y1:"8",x2:"21.17",y2:"8"}),h("line",{x1:"7.38",y1:"12",x2:"13.12",y2:"2.06"}),h("line",{x1:"9.69",y1:"16",x2:"3.95",y2:"6.06"}),h("line",{x1:"14.31",y1:"16",x2:"2.83",y2:"16"}),h("line",{x1:"16.62",y1:"12",x2:"10.88",y2:"21.94"})])}}},RN={name:"ArchiveIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-archive"},Object.assign({},i)),[h("polyline",{points:"21 8 21 21 3 21 3 8"}),h("rect",{x:"1",y:"3",width:"22",height:"5"}),h("line",{x1:"10",y1:"12",x2:"14",y2:"12"})])}}},BN={name:"ArrowDownCircleIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-arrow-down-circle"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("polyline",{points:"8 12 12 16 16 12"}),h("line",{x1:"12",y1:"8",x2:"12",y2:"16"})])}}},XN={name:"ArrowDownLeftIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-arrow-down-left"},Object.assign({},i)),[h("line",{x1:"17",y1:"7",x2:"7",y2:"17"}),h("polyline",{points:"17 17 7 17 7 7"})])}}},FN={name:"ArrowDownRightIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-arrow-down-right"},Object.assign({},i)),[h("line",{x1:"7",y1:"7",x2:"17",y2:"17"}),h("polyline",{points:"17 7 17 17 7 17"})])}}},VN={name:"ArrowDownIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-arrow-down"},Object.assign({},i)),[h("line",{x1:"12",y1:"5",x2:"12",y2:"19"}),h("polyline",{points:"19 12 12 19 5 12"})])}}},HN={name:"ArrowLeftCircleIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-arrow-left-circle"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("polyline",{points:"12 8 8 12 12 16"}),h("line",{x1:"16",y1:"12",x2:"8",y2:"12"})])}}},WN={name:"ArrowLeftIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-arrow-left"},Object.assign({},i)),[h("line",{x1:"19",y1:"12",x2:"5",y2:"12"}),h("polyline",{points:"12 19 5 12 12 5"})])}}},UN={name:"ArrowRightCircleIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-arrow-right-circle"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("polyline",{points:"12 16 16 12 12 8"}),h("line",{x1:"8",y1:"12",x2:"16",y2:"12"})])}}},YN={name:"ArrowRightIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-arrow-right"},Object.assign({},i)),[h("line",{x1:"5",y1:"12",x2:"19",y2:"12"}),h("polyline",{points:"12 5 19 12 12 19"})])}}},GN={name:"ArrowUpCircleIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-arrow-up-circle"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("polyline",{points:"16 12 12 8 8 12"}),h("line",{x1:"12",y1:"16",x2:"12",y2:"8"})])}}},qN={name:"ArrowUpLeftIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-arrow-up-left"},Object.assign({},i)),[h("line",{x1:"17",y1:"17",x2:"7",y2:"7"}),h("polyline",{points:"7 17 7 7 17 7"})])}}},ZN={name:"ArrowUpRightIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-arrow-up-right"},Object.assign({},i)),[h("line",{x1:"7",y1:"17",x2:"17",y2:"7"}),h("polyline",{points:"7 7 17 7 17 17"})])}}},KN={name:"ArrowUpIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-arrow-up"},Object.assign({},i)),[h("line",{x1:"12",y1:"19",x2:"12",y2:"5"}),h("polyline",{points:"5 12 12 5 19 12"})])}}},JN={name:"AtSignIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-at-sign"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"4"}),h("path",{d:"M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-3.92 7.94"})])}}},QN={name:"AwardIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-award"},Object.assign({},i)),[h("circle",{cx:"12",cy:"8",r:"7"}),h("polyline",{points:"8.21 13.89 7 23 12 20 17 23 15.79 13.88"})])}}},eE={name:"BarChart2Icon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-bar-chart-2"},Object.assign({},i)),[h("line",{x1:"18",y1:"20",x2:"18",y2:"10"}),h("line",{x1:"12",y1:"20",x2:"12",y2:"4"}),h("line",{x1:"6",y1:"20",x2:"6",y2:"14"})])}}},tE={name:"BarChartIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-bar-chart"},Object.assign({},i)),[h("line",{x1:"12",y1:"20",x2:"12",y2:"10"}),h("line",{x1:"18",y1:"20",x2:"18",y2:"4"}),h("line",{x1:"6",y1:"20",x2:"6",y2:"16"})])}}},nE={name:"BatteryChargingIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-battery-charging"},Object.assign({},i)),[h("path",{d:"M5 18H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3.19M15 6h2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-3.19"}),h("line",{x1:"23",y1:"13",x2:"23",y2:"11"}),h("polyline",{points:"11 6 7 12 13 12 9 18"})])}}},rE={name:"BatteryIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-battery"},Object.assign({},i)),[h("rect",{x:"1",y:"6",width:"18",height:"12",rx:"2",ry:"2"}),h("line",{x1:"23",y1:"13",x2:"23",y2:"11"})])}}},iE={name:"BellOffIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-bell-off"},Object.assign({},i)),[h("path",{d:"M13.73 21a2 2 0 0 1-3.46 0"}),h("path",{d:"M18.63 13A17.89 17.89 0 0 1 18 8"}),h("path",{d:"M6.26 6.26A5.86 5.86 0 0 0 6 8c0 7-3 9-3 9h14"}),h("path",{d:"M18 8a6 6 0 0 0-9.33-5"}),h("line",{x1:"1",y1:"1",x2:"23",y2:"23"})])}}},sE={name:"BellIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-bell"},Object.assign({},i)),[h("path",{d:"M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9"}),h("path",{d:"M13.73 21a2 2 0 0 1-3.46 0"})])}}},oE={name:"BluetoothIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-bluetooth"},Object.assign({},i)),[h("polyline",{points:"6.5 6.5 17.5 17.5 12 23 12 1 17.5 6.5 6.5 17.5"})])}}},aE={name:"BoldIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-bold"},Object.assign({},i)),[h("path",{d:"M6 4h8a4 4 0 0 1 4 4 4 4 0 0 1-4 4H6z"}),h("path",{d:"M6 12h9a4 4 0 0 1 4 4 4 4 0 0 1-4 4H6z"})])}}},lE={name:"BookOpenIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-book-open"},Object.assign({},i)),[h("path",{d:"M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z"}),h("path",{d:"M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z"})])}}},uE={name:"BookIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-book"},Object.assign({},i)),[h("path",{d:"M4 19.5A2.5 2.5 0 0 1 6.5 17H20"}),h("path",{d:"M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z"})])}}},cE={name:"BookmarkIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-bookmark"},Object.assign({},i)),[h("path",{d:"M19 21l-7-5-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z"})])}}},hE={name:"BoxIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-box"},Object.assign({},i)),[h("path",{d:"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"}),h("polyline",{points:"3.27 6.96 12 12.01 20.73 6.96"}),h("line",{x1:"12",y1:"22.08",x2:"12",y2:"12"})])}}},fE={name:"BriefcaseIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-briefcase"},Object.assign({},i)),[h("rect",{x:"2",y:"7",width:"20",height:"14",rx:"2",ry:"2"}),h("path",{d:"M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"})])}}},dE={name:"CalendarIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-calendar"},Object.assign({},i)),[h("rect",{x:"3",y:"4",width:"18",height:"18",rx:"2",ry:"2"}),h("line",{x1:"16",y1:"2",x2:"16",y2:"6"}),h("line",{x1:"8",y1:"2",x2:"8",y2:"6"}),h("line",{x1:"3",y1:"10",x2:"21",y2:"10"})])}}},pE={name:"CameraOffIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-camera-off"},Object.assign({},i)),[h("line",{x1:"1",y1:"1",x2:"23",y2:"23"}),h("path",{d:"M21 21H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3m3-3h6l2 3h4a2 2 0 0 1 2 2v9.34m-7.72-2.06a4 4 0 1 1-5.56-5.56"})])}}},gE={name:"CameraIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-camera"},Object.assign({},i)),[h("path",{d:"M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z"}),h("circle",{cx:"12",cy:"13",r:"4"})])}}},mE={name:"CastIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-cast"},Object.assign({},i)),[h("path",{d:"M2 16.1A5 5 0 0 1 5.9 20M2 12.05A9 9 0 0 1 9.95 20M2 8V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6"}),h("line",{x1:"2",y1:"20",x2:"2.01",y2:"20"})])}}},yE={name:"CheckCircleIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-check-circle"},Object.assign({},i)),[h("path",{d:"M22 11.08V12a10 10 0 1 1-5.93-9.14"}),h("polyline",{points:"22 4 12 14.01 9 11.01"})])}}},vE={name:"CheckSquareIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-check-square"},Object.assign({},i)),[h("polyline",{points:"9 11 12 14 22 4"}),h("path",{d:"M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11"})])}}},bE={name:"CheckIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-check"},Object.assign({},i)),[h("polyline",{points:"20 6 9 17 4 12"})])}}},wE={name:"ChevronDownIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-chevron-down"},Object.assign({},i)),[h("polyline",{points:"6 9 12 15 18 9"})])}}},xE={name:"ChevronLeftIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-chevron-left"},Object.assign({},i)),[h("polyline",{points:"15 18 9 12 15 6"})])}}},_E={name:"ChevronRightIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-chevron-right"},Object.assign({},i)),[h("polyline",{points:"9 18 15 12 9 6"})])}}},OE={name:"ChevronUpIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-chevron-up"},Object.assign({},i)),[h("polyline",{points:"18 15 12 9 6 15"})])}}},SE={name:"ChevronsDownIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-chevrons-down"},Object.assign({},i)),[h("polyline",{points:"7 13 12 18 17 13"}),h("polyline",{points:"7 6 12 11 17 6"})])}}},kE={name:"ChevronsLeftIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-chevrons-left"},Object.assign({},i)),[h("polyline",{points:"11 17 6 12 11 7"}),h("polyline",{points:"18 17 13 12 18 7"})])}}},TE={name:"ChevronsRightIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-chevrons-right"},Object.assign({},i)),[h("polyline",{points:"13 17 18 12 13 7"}),h("polyline",{points:"6 17 11 12 6 7"})])}}},CE={name:"ChevronsUpIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-chevrons-up"},Object.assign({},i)),[h("polyline",{points:"17 11 12 6 7 11"}),h("polyline",{points:"17 18 12 13 7 18"})])}}},ME={name:"ChromeIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-chrome"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("circle",{cx:"12",cy:"12",r:"4"}),h("line",{x1:"21.17",y1:"8",x2:"12",y2:"8"}),h("line",{x1:"3.95",y1:"6.06",x2:"8.54",y2:"14"}),h("line",{x1:"10.88",y1:"21.94",x2:"15.46",y2:"14"})])}}},zE={name:"CircleIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-circle"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"})])}}},NE={name:"ClipboardIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-clipboard"},Object.assign({},i)),[h("path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"}),h("rect",{x:"8",y:"2",width:"8",height:"4",rx:"1",ry:"1"})])}}},EE={name:"ClockIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-clock"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("polyline",{points:"12 6 12 12 16 14"})])}}},AE={name:"CloudDrizzleIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-cloud-drizzle"},Object.assign({},i)),[h("line",{x1:"8",y1:"19",x2:"8",y2:"21"}),h("line",{x1:"8",y1:"13",x2:"8",y2:"15"}),h("line",{x1:"16",y1:"19",x2:"16",y2:"21"}),h("line",{x1:"16",y1:"13",x2:"16",y2:"15"}),h("line",{x1:"12",y1:"21",x2:"12",y2:"23"}),h("line",{x1:"12",y1:"15",x2:"12",y2:"17"}),h("path",{d:"M20 16.58A5 5 0 0 0 18 7h-1.26A8 8 0 1 0 4 15.25"})])}}},IE={name:"CloudLightningIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-cloud-lightning"},Object.assign({},i)),[h("path",{d:"M19 16.9A5 5 0 0 0 18 7h-1.26a8 8 0 1 0-11.62 9"}),h("polyline",{points:"13 11 9 17 15 17 11 23"})])}}},PE={name:"CloudOffIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-cloud-off"},Object.assign({},i)),[h("path",{d:"M22.61 16.95A5 5 0 0 0 18 10h-1.26a8 8 0 0 0-7.05-6M5 5a8 8 0 0 0 4 15h9a5 5 0 0 0 1.7-.3"}),h("line",{x1:"1",y1:"1",x2:"23",y2:"23"})])}}},jE={name:"CloudRainIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-cloud-rain"},Object.assign({},i)),[h("line",{x1:"16",y1:"13",x2:"16",y2:"21"}),h("line",{x1:"8",y1:"13",x2:"8",y2:"21"}),h("line",{x1:"12",y1:"15",x2:"12",y2:"23"}),h("path",{d:"M20 16.58A5 5 0 0 0 18 7h-1.26A8 8 0 1 0 4 15.25"})])}}},DE={name:"CloudSnowIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-cloud-snow"},Object.assign({},i)),[h("path",{d:"M20 17.58A5 5 0 0 0 18 8h-1.26A8 8 0 1 0 4 16.25"}),h("line",{x1:"8",y1:"16",x2:"8.01",y2:"16"}),h("line",{x1:"8",y1:"20",x2:"8.01",y2:"20"}),h("line",{x1:"12",y1:"18",x2:"12.01",y2:"18"}),h("line",{x1:"12",y1:"22",x2:"12.01",y2:"22"}),h("line",{x1:"16",y1:"16",x2:"16.01",y2:"16"}),h("line",{x1:"16",y1:"20",x2:"16.01",y2:"20"})])}}},$E={name:"CloudIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-cloud"},Object.assign({},i)),[h("path",{d:"M18 10h-1.26A8 8 0 1 0 9 20h9a5 5 0 0 0 0-10z"})])}}},LE={name:"CodeIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-code"},Object.assign({},i)),[h("polyline",{points:"16 18 22 12 16 6"}),h("polyline",{points:"8 6 2 12 8 18"})])}}},RE={name:"CodepenIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-codepen"},Object.assign({},i)),[h("polygon",{points:"12 2 22 8.5 22 15.5 12 22 2 15.5 2 8.5 12 2"}),h("line",{x1:"12",y1:"22",x2:"12",y2:"15.5"}),h("polyline",{points:"22 8.5 12 15.5 2 8.5"}),h("polyline",{points:"2 15.5 12 8.5 22 15.5"}),h("line",{x1:"12",y1:"2",x2:"12",y2:"8.5"})])}}},BE={name:"CodesandboxIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-codesandbox"},Object.assign({},i)),[h("path",{d:"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"}),h("polyline",{points:"7.5 4.21 12 6.81 16.5 4.21"}),h("polyline",{points:"7.5 19.79 7.5 14.6 3 12"}),h("polyline",{points:"21 12 16.5 14.6 16.5 19.79"}),h("polyline",{points:"3.27 6.96 12 12.01 20.73 6.96"}),h("line",{x1:"12",y1:"22.08",x2:"12",y2:"12"})])}}},XE={name:"CoffeeIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-coffee"},Object.assign({},i)),[h("path",{d:"M18 8h1a4 4 0 0 1 0 8h-1"}),h("path",{d:"M2 8h16v9a4 4 0 0 1-4 4H6a4 4 0 0 1-4-4V8z"}),h("line",{x1:"6",y1:"1",x2:"6",y2:"4"}),h("line",{x1:"10",y1:"1",x2:"10",y2:"4"}),h("line",{x1:"14",y1:"1",x2:"14",y2:"4"})])}}},FE={name:"ColumnsIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-columns"},Object.assign({},i)),[h("path",{d:"M12 3h7a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-7m0-18H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7m0-18v18"})])}}},VE={name:"CommandIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-command"},Object.assign({},i)),[h("path",{d:"M18 3a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3H6a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3V6a3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3h12a3 3 0 0 0 3-3 3 3 0 0 0-3-3z"})])}}},HE={name:"CompassIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-compass"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("polygon",{points:"16.24 7.76 14.12 14.12 7.76 16.24 9.88 9.88 16.24 7.76"})])}}},WE={name:"CopyIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-copy"},Object.assign({},i)),[h("rect",{x:"9",y:"9",width:"13",height:"13",rx:"2",ry:"2"}),h("path",{d:"M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"})])}}},UE={name:"CornerDownLeftIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-corner-down-left"},Object.assign({},i)),[h("polyline",{points:"9 10 4 15 9 20"}),h("path",{d:"M20 4v7a4 4 0 0 1-4 4H4"})])}}},YE={name:"CornerDownRightIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-corner-down-right"},Object.assign({},i)),[h("polyline",{points:"15 10 20 15 15 20"}),h("path",{d:"M4 4v7a4 4 0 0 0 4 4h12"})])}}},GE={name:"CornerLeftDownIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-corner-left-down"},Object.assign({},i)),[h("polyline",{points:"14 15 9 20 4 15"}),h("path",{d:"M20 4h-7a4 4 0 0 0-4 4v12"})])}}},qE={name:"CornerLeftUpIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-corner-left-up"},Object.assign({},i)),[h("polyline",{points:"14 9 9 4 4 9"}),h("path",{d:"M20 20h-7a4 4 0 0 1-4-4V4"})])}}},ZE={name:"CornerRightDownIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-corner-right-down"},Object.assign({},i)),[h("polyline",{points:"10 15 15 20 20 15"}),h("path",{d:"M4 4h7a4 4 0 0 1 4 4v12"})])}}},KE={name:"CornerRightUpIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-corner-right-up"},Object.assign({},i)),[h("polyline",{points:"10 9 15 4 20 9"}),h("path",{d:"M4 20h7a4 4 0 0 0 4-4V4"})])}}},JE={name:"CornerUpLeftIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-corner-up-left"},Object.assign({},i)),[h("polyline",{points:"9 14 4 9 9 4"}),h("path",{d:"M20 20v-7a4 4 0 0 0-4-4H4"})])}}},QE={name:"CornerUpRightIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-corner-up-right"},Object.assign({},i)),[h("polyline",{points:"15 14 20 9 15 4"}),h("path",{d:"M4 20v-7a4 4 0 0 1 4-4h12"})])}}},eA={name:"CpuIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-cpu"},Object.assign({},i)),[h("rect",{x:"4",y:"4",width:"16",height:"16",rx:"2",ry:"2"}),h("rect",{x:"9",y:"9",width:"6",height:"6"}),h("line",{x1:"9",y1:"1",x2:"9",y2:"4"}),h("line",{x1:"15",y1:"1",x2:"15",y2:"4"}),h("line",{x1:"9",y1:"20",x2:"9",y2:"23"}),h("line",{x1:"15",y1:"20",x2:"15",y2:"23"}),h("line",{x1:"20",y1:"9",x2:"23",y2:"9"}),h("line",{x1:"20",y1:"14",x2:"23",y2:"14"}),h("line",{x1:"1",y1:"9",x2:"4",y2:"9"}),h("line",{x1:"1",y1:"14",x2:"4",y2:"14"})])}}},tA={name:"CreditCardIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-credit-card"},Object.assign({},i)),[h("rect",{x:"1",y:"4",width:"22",height:"16",rx:"2",ry:"2"}),h("line",{x1:"1",y1:"10",x2:"23",y2:"10"})])}}},nA={name:"CropIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-crop"},Object.assign({},i)),[h("path",{d:"M6.13 1L6 16a2 2 0 0 0 2 2h15"}),h("path",{d:"M1 6.13L16 6a2 2 0 0 1 2 2v15"})])}}},rA={name:"CrosshairIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-crosshair"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("line",{x1:"22",y1:"12",x2:"18",y2:"12"}),h("line",{x1:"6",y1:"12",x2:"2",y2:"12"}),h("line",{x1:"12",y1:"6",x2:"12",y2:"2"}),h("line",{x1:"12",y1:"22",x2:"12",y2:"18"})])}}},iA={name:"DatabaseIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-database"},Object.assign({},i)),[h("ellipse",{cx:"12",cy:"5",rx:"9",ry:"3"}),h("path",{d:"M21 12c0 1.66-4 3-9 3s-9-1.34-9-3"}),h("path",{d:"M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5"})])}}},sA={name:"DeleteIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-delete"},Object.assign({},i)),[h("path",{d:"M21 4H8l-7 8 7 8h13a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2z"}),h("line",{x1:"18",y1:"9",x2:"12",y2:"15"}),h("line",{x1:"12",y1:"9",x2:"18",y2:"15"})])}}},oA={name:"DiscIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-disc"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("circle",{cx:"12",cy:"12",r:"3"})])}}},aA={name:"DivideCircleIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-divide-circle"},Object.assign({},i)),[h("line",{x1:"8",y1:"12",x2:"16",y2:"12"}),h("line",{x1:"12",y1:"16",x2:"12",y2:"16"}),h("line",{x1:"12",y1:"8",x2:"12",y2:"8"}),h("circle",{cx:"12",cy:"12",r:"10"})])}}},lA={name:"DivideSquareIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-divide-square"},Object.assign({},i)),[h("rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}),h("line",{x1:"8",y1:"12",x2:"16",y2:"12"}),h("line",{x1:"12",y1:"16",x2:"12",y2:"16"}),h("line",{x1:"12",y1:"8",x2:"12",y2:"8"})])}}},uA={name:"DivideIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-divide"},Object.assign({},i)),[h("circle",{cx:"12",cy:"6",r:"2"}),h("line",{x1:"5",y1:"12",x2:"19",y2:"12"}),h("circle",{cx:"12",cy:"18",r:"2"})])}}},cA={name:"DollarSignIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-dollar-sign"},Object.assign({},i)),[h("line",{x1:"12",y1:"1",x2:"12",y2:"23"}),h("path",{d:"M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6"})])}}},hA={name:"DownloadCloudIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-download-cloud"},Object.assign({},i)),[h("polyline",{points:"8 17 12 21 16 17"}),h("line",{x1:"12",y1:"12",x2:"12",y2:"21"}),h("path",{d:"M20.88 18.09A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.29"})])}}},fA={name:"DownloadIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-download"},Object.assign({},i)),[h("path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"}),h("polyline",{points:"7 10 12 15 17 10"}),h("line",{x1:"12",y1:"15",x2:"12",y2:"3"})])}}},dA={name:"DribbbleIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-dribbble"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("path",{d:"M8.56 2.75c4.37 6.03 6.02 9.42 8.03 17.72m2.54-15.38c-3.72 4.35-8.94 5.66-16.88 5.85m19.5 1.9c-3.5-.93-6.63-.82-8.94 0-2.58.92-5.01 2.86-7.44 6.32"})])}}},pA={name:"DropletIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-droplet"},Object.assign({},i)),[h("path",{d:"M12 2.69l5.66 5.66a8 8 0 1 1-11.31 0z"})])}}},gA={name:"Edit2Icon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-edit-2"},Object.assign({},i)),[h("path",{d:"M17 3a2.828 2.828 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5L17 3z"})])}}},mA={name:"Edit3Icon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-edit-3"},Object.assign({},i)),[h("path",{d:"M12 20h9"}),h("path",{d:"M16.5 3.5a2.121 2.121 0 0 1 3 3L7 19l-4 1 1-4L16.5 3.5z"})])}}},yA={name:"EditIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-edit"},Object.assign({},i)),[h("path",{d:"M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7"}),h("path",{d:"M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z"})])}}},vA={name:"ExternalLinkIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-external-link"},Object.assign({},i)),[h("path",{d:"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"}),h("polyline",{points:"15 3 21 3 21 9"}),h("line",{x1:"10",y1:"14",x2:"21",y2:"3"})])}}},bA={name:"EyeOffIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-eye-off"},Object.assign({},i)),[h("path",{d:"M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24"}),h("line",{x1:"1",y1:"1",x2:"23",y2:"23"})])}}},wA={name:"EyeIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-eye"},Object.assign({},i)),[h("path",{d:"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"}),h("circle",{cx:"12",cy:"12",r:"3"})])}}},xA={name:"FacebookIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-facebook"},Object.assign({},i)),[h("path",{d:"M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z"})])}}},_A={name:"FastForwardIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-fast-forward"},Object.assign({},i)),[h("polygon",{points:"13 19 22 12 13 5 13 19"}),h("polygon",{points:"2 19 11 12 2 5 2 19"})])}}},OA={name:"FeatherIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-feather"},Object.assign({},i)),[h("path",{d:"M20.24 12.24a6 6 0 0 0-8.49-8.49L5 10.5V19h8.5z"}),h("line",{x1:"16",y1:"8",x2:"2",y2:"22"}),h("line",{x1:"17.5",y1:"15",x2:"9",y2:"15"})])}}},SA={name:"FigmaIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-figma"},Object.assign({},i)),[h("path",{d:"M5 5.5A3.5 3.5 0 0 1 8.5 2H12v7H8.5A3.5 3.5 0 0 1 5 5.5z"}),h("path",{d:"M12 2h3.5a3.5 3.5 0 1 1 0 7H12V2z"}),h("path",{d:"M12 12.5a3.5 3.5 0 1 1 7 0 3.5 3.5 0 1 1-7 0z"}),h("path",{d:"M5 19.5A3.5 3.5 0 0 1 8.5 16H12v3.5a3.5 3.5 0 1 1-7 0z"}),h("path",{d:"M5 12.5A3.5 3.5 0 0 1 8.5 9H12v7H8.5A3.5 3.5 0 0 1 5 12.5z"})])}}},kA={name:"FileMinusIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-file-minus"},Object.assign({},i)),[h("path",{d:"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"}),h("polyline",{points:"14 2 14 8 20 8"}),h("line",{x1:"9",y1:"15",x2:"15",y2:"15"})])}}},TA={name:"FilePlusIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-file-plus"},Object.assign({},i)),[h("path",{d:"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"}),h("polyline",{points:"14 2 14 8 20 8"}),h("line",{x1:"12",y1:"18",x2:"12",y2:"12"}),h("line",{x1:"9",y1:"15",x2:"15",y2:"15"})])}}},CA={name:"FileTextIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-file-text"},Object.assign({},i)),[h("path",{d:"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"}),h("polyline",{points:"14 2 14 8 20 8"}),h("line",{x1:"16",y1:"13",x2:"8",y2:"13"}),h("line",{x1:"16",y1:"17",x2:"8",y2:"17"}),h("polyline",{points:"10 9 9 9 8 9"})])}}},MA={name:"FileIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-file"},Object.assign({},i)),[h("path",{d:"M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z"}),h("polyline",{points:"13 2 13 9 20 9"})])}}},zA={name:"FilmIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-film"},Object.assign({},i)),[h("rect",{x:"2",y:"2",width:"20",height:"20",rx:"2.18",ry:"2.18"}),h("line",{x1:"7",y1:"2",x2:"7",y2:"22"}),h("line",{x1:"17",y1:"2",x2:"17",y2:"22"}),h("line",{x1:"2",y1:"12",x2:"22",y2:"12"}),h("line",{x1:"2",y1:"7",x2:"7",y2:"7"}),h("line",{x1:"2",y1:"17",x2:"7",y2:"17"}),h("line",{x1:"17",y1:"17",x2:"22",y2:"17"}),h("line",{x1:"17",y1:"7",x2:"22",y2:"7"})])}}},NA={name:"FilterIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-filter"},Object.assign({},i)),[h("polygon",{points:"22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3"})])}}},EA={name:"FlagIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-flag"},Object.assign({},i)),[h("path",{d:"M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z"}),h("line",{x1:"4",y1:"22",x2:"4",y2:"15"})])}}},AA={name:"FolderMinusIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-folder-minus"},Object.assign({},i)),[h("path",{d:"M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"}),h("line",{x1:"9",y1:"14",x2:"15",y2:"14"})])}}},IA={name:"FolderPlusIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-folder-plus"},Object.assign({},i)),[h("path",{d:"M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"}),h("line",{x1:"12",y1:"11",x2:"12",y2:"17"}),h("line",{x1:"9",y1:"14",x2:"15",y2:"14"})])}}},PA={name:"FolderIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-folder"},Object.assign({},i)),[h("path",{d:"M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"})])}}},jA={name:"FramerIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-framer"},Object.assign({},i)),[h("path",{d:"M5 16V9h14V2H5l14 14h-7m-7 0l7 7v-7m-7 0h7"})])}}},DA={name:"FrownIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-frown"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("path",{d:"M16 16s-1.5-2-4-2-4 2-4 2"}),h("line",{x1:"9",y1:"9",x2:"9.01",y2:"9"}),h("line",{x1:"15",y1:"9",x2:"15.01",y2:"9"})])}}},$A={name:"GiftIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-gift"},Object.assign({},i)),[h("polyline",{points:"20 12 20 22 4 22 4 12"}),h("rect",{x:"2",y:"7",width:"20",height:"5"}),h("line",{x1:"12",y1:"22",x2:"12",y2:"7"}),h("path",{d:"M12 7H7.5a2.5 2.5 0 0 1 0-5C11 2 12 7 12 7z"}),h("path",{d:"M12 7h4.5a2.5 2.5 0 0 0 0-5C13 2 12 7 12 7z"})])}}},LA={name:"GitBranchIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-git-branch"},Object.assign({},i)),[h("line",{x1:"6",y1:"3",x2:"6",y2:"15"}),h("circle",{cx:"18",cy:"6",r:"3"}),h("circle",{cx:"6",cy:"18",r:"3"}),h("path",{d:"M18 9a9 9 0 0 1-9 9"})])}}},RA={name:"GitCommitIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-git-commit"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"4"}),h("line",{x1:"1.05",y1:"12",x2:"7",y2:"12"}),h("line",{x1:"17.01",y1:"12",x2:"22.96",y2:"12"})])}}},BA={name:"GitMergeIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-git-merge"},Object.assign({},i)),[h("circle",{cx:"18",cy:"18",r:"3"}),h("circle",{cx:"6",cy:"6",r:"3"}),h("path",{d:"M6 21V9a9 9 0 0 0 9 9"})])}}},XA={name:"GitPullRequestIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-git-pull-request"},Object.assign({},i)),[h("circle",{cx:"18",cy:"18",r:"3"}),h("circle",{cx:"6",cy:"6",r:"3"}),h("path",{d:"M13 6h3a2 2 0 0 1 2 2v7"}),h("line",{x1:"6",y1:"9",x2:"6",y2:"21"})])}}},FA={name:"GithubIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-github"},Object.assign({},i)),[h("path",{d:"M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22"})])}}},VA={name:"GitlabIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-gitlab"},Object.assign({},i)),[h("path",{d:"M22.65 14.39L12 22.13 1.35 14.39a.84.84 0 0 1-.3-.94l1.22-3.78 2.44-7.51A.42.42 0 0 1 4.82 2a.43.43 0 0 1 .58 0 .42.42 0 0 1 .11.18l2.44 7.49h8.1l2.44-7.51A.42.42 0 0 1 18.6 2a.43.43 0 0 1 .58 0 .42.42 0 0 1 .11.18l2.44 7.51L23 13.45a.84.84 0 0 1-.35.94z"})])}}},HA={name:"GlobeIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-globe"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("line",{x1:"2",y1:"12",x2:"22",y2:"12"}),h("path",{d:"M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"})])}}},WA={name:"GridIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-grid"},Object.assign({},i)),[h("rect",{x:"3",y:"3",width:"7",height:"7"}),h("rect",{x:"14",y:"3",width:"7",height:"7"}),h("rect",{x:"14",y:"14",width:"7",height:"7"}),h("rect",{x:"3",y:"14",width:"7",height:"7"})])}}},UA={name:"HardDriveIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-hard-drive"},Object.assign({},i)),[h("line",{x1:"22",y1:"12",x2:"2",y2:"12"}),h("path",{d:"M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z"}),h("line",{x1:"6",y1:"16",x2:"6.01",y2:"16"}),h("line",{x1:"10",y1:"16",x2:"10.01",y2:"16"})])}}},YA={name:"HashIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-hash"},Object.assign({},i)),[h("line",{x1:"4",y1:"9",x2:"20",y2:"9"}),h("line",{x1:"4",y1:"15",x2:"20",y2:"15"}),h("line",{x1:"10",y1:"3",x2:"8",y2:"21"}),h("line",{x1:"16",y1:"3",x2:"14",y2:"21"})])}}},GA={name:"HeadphonesIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-headphones"},Object.assign({},i)),[h("path",{d:"M3 18v-6a9 9 0 0 1 18 0v6"}),h("path",{d:"M21 19a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3zM3 19a2 2 0 0 0 2 2h1a2 2 0 0 0 2-2v-3a2 2 0 0 0-2-2H3z"})])}}},qA={name:"HeartIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-heart"},Object.assign({},i)),[h("path",{d:"M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"})])}}},ZA={name:"HelpCircleIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-help-circle"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"}),h("line",{x1:"12",y1:"17",x2:"12.01",y2:"17"})])}}},KA={name:"HexagonIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-hexagon"},Object.assign({},i)),[h("path",{d:"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"})])}}},JA={name:"HomeIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-home"},Object.assign({},i)),[h("path",{d:"M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"}),h("polyline",{points:"9 22 9 12 15 12 15 22"})])}}},QA={name:"ImageIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-image"},Object.assign({},i)),[h("rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}),h("circle",{cx:"8.5",cy:"8.5",r:"1.5"}),h("polyline",{points:"21 15 16 10 5 21"})])}}},eI={name:"InboxIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-inbox"},Object.assign({},i)),[h("polyline",{points:"22 12 16 12 14 15 10 15 8 12 2 12"}),h("path",{d:"M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z"})])}}},tI={name:"InfoIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-info"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("line",{x1:"12",y1:"16",x2:"12",y2:"12"}),h("line",{x1:"12",y1:"8",x2:"12.01",y2:"8"})])}}},nI={name:"InstagramIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-instagram"},Object.assign({},i)),[h("rect",{x:"2",y:"2",width:"20",height:"20",rx:"5",ry:"5"}),h("path",{d:"M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"}),h("line",{x1:"17.5",y1:"6.5",x2:"17.51",y2:"6.5"})])}}},rI={name:"ItalicIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-italic"},Object.assign({},i)),[h("line",{x1:"19",y1:"4",x2:"10",y2:"4"}),h("line",{x1:"14",y1:"20",x2:"5",y2:"20"}),h("line",{x1:"15",y1:"4",x2:"9",y2:"20"})])}}},iI={name:"KeyIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-key"},Object.assign({},i)),[h("path",{d:"M21 2l-2 2m-7.61 7.61a5.5 5.5 0 1 1-7.778 7.778 5.5 5.5 0 0 1 7.777-7.777zm0 0L15.5 7.5m0 0l3 3L22 7l-3-3m-3.5 3.5L19 4"})])}}},sI={name:"LayersIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-layers"},Object.assign({},i)),[h("polygon",{points:"12 2 2 7 12 12 22 7 12 2"}),h("polyline",{points:"2 17 12 22 22 17"}),h("polyline",{points:"2 12 12 17 22 12"})])}}},oI={name:"LayoutIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-layout"},Object.assign({},i)),[h("rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}),h("line",{x1:"3",y1:"9",x2:"21",y2:"9"}),h("line",{x1:"9",y1:"21",x2:"9",y2:"9"})])}}},aI={name:"LifeBuoyIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-life-buoy"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("circle",{cx:"12",cy:"12",r:"4"}),h("line",{x1:"4.93",y1:"4.93",x2:"9.17",y2:"9.17"}),h("line",{x1:"14.83",y1:"14.83",x2:"19.07",y2:"19.07"}),h("line",{x1:"14.83",y1:"9.17",x2:"19.07",y2:"4.93"}),h("line",{x1:"14.83",y1:"9.17",x2:"18.36",y2:"5.64"}),h("line",{x1:"4.93",y1:"19.07",x2:"9.17",y2:"14.83"})])}}},lI={name:"Link2Icon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-link-2"},Object.assign({},i)),[h("path",{d:"M15 7h3a5 5 0 0 1 5 5 5 5 0 0 1-5 5h-3m-6 0H6a5 5 0 0 1-5-5 5 5 0 0 1 5-5h3"}),h("line",{x1:"8",y1:"12",x2:"16",y2:"12"})])}}},uI={name:"LinkIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-link"},Object.assign({},i)),[h("path",{d:"M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"}),h("path",{d:"M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"})])}}},cI={name:"LinkedinIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-linkedin"},Object.assign({},i)),[h("path",{d:"M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"}),h("rect",{x:"2",y:"9",width:"4",height:"12"}),h("circle",{cx:"4",cy:"4",r:"2"})])}}},hI={name:"ListIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-list"},Object.assign({},i)),[h("line",{x1:"8",y1:"6",x2:"21",y2:"6"}),h("line",{x1:"8",y1:"12",x2:"21",y2:"12"}),h("line",{x1:"8",y1:"18",x2:"21",y2:"18"}),h("line",{x1:"3",y1:"6",x2:"3.01",y2:"6"}),h("line",{x1:"3",y1:"12",x2:"3.01",y2:"12"}),h("line",{x1:"3",y1:"18",x2:"3.01",y2:"18"})])}}},fI={name:"LoaderIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-loader"},Object.assign({},i)),[h("line",{x1:"12",y1:"2",x2:"12",y2:"6"}),h("line",{x1:"12",y1:"18",x2:"12",y2:"22"}),h("line",{x1:"4.93",y1:"4.93",x2:"7.76",y2:"7.76"}),h("line",{x1:"16.24",y1:"16.24",x2:"19.07",y2:"19.07"}),h("line",{x1:"2",y1:"12",x2:"6",y2:"12"}),h("line",{x1:"18",y1:"12",x2:"22",y2:"12"}),h("line",{x1:"4.93",y1:"19.07",x2:"7.76",y2:"16.24"}),h("line",{x1:"16.24",y1:"7.76",x2:"19.07",y2:"4.93"})])}}},dI={name:"LockIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-lock"},Object.assign({},i)),[h("rect",{x:"3",y:"11",width:"18",height:"11",rx:"2",ry:"2"}),h("path",{d:"M7 11V7a5 5 0 0 1 10 0v4"})])}}},pI={name:"LogInIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-log-in"},Object.assign({},i)),[h("path",{d:"M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4"}),h("polyline",{points:"10 17 15 12 10 7"}),h("line",{x1:"15",y1:"12",x2:"3",y2:"12"})])}}},gI={name:"LogOutIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-log-out"},Object.assign({},i)),[h("path",{d:"M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"}),h("polyline",{points:"16 17 21 12 16 7"}),h("line",{x1:"21",y1:"12",x2:"9",y2:"12"})])}}},mI={name:"MailIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-mail"},Object.assign({},i)),[h("path",{d:"M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"}),h("polyline",{points:"22,6 12,13 2,6"})])}}},yI={name:"MapPinIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-map-pin"},Object.assign({},i)),[h("path",{d:"M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"}),h("circle",{cx:"12",cy:"10",r:"3"})])}}},vI={name:"MapIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-map"},Object.assign({},i)),[h("polygon",{points:"1 6 1 22 8 18 16 22 23 18 23 2 16 6 8 2 1 6"}),h("line",{x1:"8",y1:"2",x2:"8",y2:"18"}),h("line",{x1:"16",y1:"6",x2:"16",y2:"22"})])}}},bI={name:"Maximize2Icon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-maximize-2"},Object.assign({},i)),[h("polyline",{points:"15 3 21 3 21 9"}),h("polyline",{points:"9 21 3 21 3 15"}),h("line",{x1:"21",y1:"3",x2:"14",y2:"10"}),h("line",{x1:"3",y1:"21",x2:"10",y2:"14"})])}}},wI={name:"MaximizeIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-maximize"},Object.assign({},i)),[h("path",{d:"M8 3H5a2 2 0 0 0-2 2v3m18 0V5a2 2 0 0 0-2-2h-3m0 18h3a2 2 0 0 0 2-2v-3M3 16v3a2 2 0 0 0 2 2h3"})])}}},xI={name:"MehIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-meh"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("line",{x1:"8",y1:"15",x2:"16",y2:"15"}),h("line",{x1:"9",y1:"9",x2:"9.01",y2:"9"}),h("line",{x1:"15",y1:"9",x2:"15.01",y2:"9"})])}}},_I={name:"MenuIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-menu"},Object.assign({},i)),[h("line",{x1:"3",y1:"12",x2:"21",y2:"12"}),h("line",{x1:"3",y1:"6",x2:"21",y2:"6"}),h("line",{x1:"3",y1:"18",x2:"21",y2:"18"})])}}},OI={name:"MessageCircleIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-message-circle"},Object.assign({},i)),[h("path",{d:"M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z"})])}}},SI={name:"MessageSquareIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-message-square"},Object.assign({},i)),[h("path",{d:"M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"})])}}},kI={name:"MicOffIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-mic-off"},Object.assign({},i)),[h("line",{x1:"1",y1:"1",x2:"23",y2:"23"}),h("path",{d:"M9 9v3a3 3 0 0 0 5.12 2.12M15 9.34V4a3 3 0 0 0-5.94-.6"}),h("path",{d:"M17 16.95A7 7 0 0 1 5 12v-2m14 0v2a7 7 0 0 1-.11 1.23"}),h("line",{x1:"12",y1:"19",x2:"12",y2:"23"}),h("line",{x1:"8",y1:"23",x2:"16",y2:"23"})])}}},TI={name:"MicIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-mic"},Object.assign({},i)),[h("path",{d:"M12 1a3 3 0 0 0-3 3v8a3 3 0 0 0 6 0V4a3 3 0 0 0-3-3z"}),h("path",{d:"M19 10v2a7 7 0 0 1-14 0v-2"}),h("line",{x1:"12",y1:"19",x2:"12",y2:"23"}),h("line",{x1:"8",y1:"23",x2:"16",y2:"23"})])}}},CI={name:"Minimize2Icon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-minimize-2"},Object.assign({},i)),[h("polyline",{points:"4 14 10 14 10 20"}),h("polyline",{points:"20 10 14 10 14 4"}),h("line",{x1:"14",y1:"10",x2:"21",y2:"3"}),h("line",{x1:"3",y1:"21",x2:"10",y2:"14"})])}}},MI={name:"MinimizeIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-minimize"},Object.assign({},i)),[h("path",{d:"M8 3v3a2 2 0 0 1-2 2H3m18 0h-3a2 2 0 0 1-2-2V3m0 18v-3a2 2 0 0 1 2-2h3M3 16h3a2 2 0 0 1 2 2v3"})])}}},zI={name:"MinusCircleIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-minus-circle"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("line",{x1:"8",y1:"12",x2:"16",y2:"12"})])}}},NI={name:"MinusSquareIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-minus-square"},Object.assign({},i)),[h("rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}),h("line",{x1:"8",y1:"12",x2:"16",y2:"12"})])}}},EI={name:"MinusIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-minus"},Object.assign({},i)),[h("line",{x1:"5",y1:"12",x2:"19",y2:"12"})])}}},AI={name:"MonitorIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-monitor"},Object.assign({},i)),[h("rect",{x:"2",y:"3",width:"20",height:"14",rx:"2",ry:"2"}),h("line",{x1:"8",y1:"21",x2:"16",y2:"21"}),h("line",{x1:"12",y1:"17",x2:"12",y2:"21"})])}}},II={name:"MoonIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-moon"},Object.assign({},i)),[h("path",{d:"M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"})])}}},PI={name:"MoreHorizontalIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-more-horizontal"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"1"}),h("circle",{cx:"19",cy:"12",r:"1"}),h("circle",{cx:"5",cy:"12",r:"1"})])}}},jI={name:"MoreVerticalIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-more-vertical"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"1"}),h("circle",{cx:"12",cy:"5",r:"1"}),h("circle",{cx:"12",cy:"19",r:"1"})])}}},DI={name:"MousePointerIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-mouse-pointer"},Object.assign({},i)),[h("path",{d:"M3 3l7.07 16.97 2.51-7.39 7.39-2.51L3 3z"}),h("path",{d:"M13 13l6 6"})])}}},$I={name:"MoveIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-move"},Object.assign({},i)),[h("polyline",{points:"5 9 2 12 5 15"}),h("polyline",{points:"9 5 12 2 15 5"}),h("polyline",{points:"15 19 12 22 9 19"}),h("polyline",{points:"19 9 22 12 19 15"}),h("line",{x1:"2",y1:"12",x2:"22",y2:"12"}),h("line",{x1:"12",y1:"2",x2:"12",y2:"22"})])}}},LI={name:"MusicIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-music"},Object.assign({},i)),[h("path",{d:"M9 18V5l12-2v13"}),h("circle",{cx:"6",cy:"18",r:"3"}),h("circle",{cx:"18",cy:"16",r:"3"})])}}},RI={name:"Navigation2Icon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-navigation-2"},Object.assign({},i)),[h("polygon",{points:"12 2 19 21 12 17 5 21 12 2"})])}}},BI={name:"NavigationIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-navigation"},Object.assign({},i)),[h("polygon",{points:"3 11 22 2 13 21 11 13 3 11"})])}}},XI={name:"OctagonIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-octagon"},Object.assign({},i)),[h("polygon",{points:"7.86 2 16.14 2 22 7.86 22 16.14 16.14 22 7.86 22 2 16.14 2 7.86 7.86 2"})])}}},FI={name:"PackageIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-package"},Object.assign({},i)),[h("line",{x1:"16.5",y1:"9.4",x2:"7.5",y2:"4.21"}),h("path",{d:"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"}),h("polyline",{points:"3.27 6.96 12 12.01 20.73 6.96"}),h("line",{x1:"12",y1:"22.08",x2:"12",y2:"12"})])}}},VI={name:"PaperclipIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-paperclip"},Object.assign({},i)),[h("path",{d:"M21.44 11.05l-9.19 9.19a6 6 0 0 1-8.49-8.49l9.19-9.19a4 4 0 0 1 5.66 5.66l-9.2 9.19a2 2 0 0 1-2.83-2.83l8.49-8.48"})])}}},HI={name:"PauseCircleIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-pause-circle"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("line",{x1:"10",y1:"15",x2:"10",y2:"9"}),h("line",{x1:"14",y1:"15",x2:"14",y2:"9"})])}}},WI={name:"PauseIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-pause"},Object.assign({},i)),[h("rect",{x:"6",y:"4",width:"4",height:"16"}),h("rect",{x:"14",y:"4",width:"4",height:"16"})])}}},UI={name:"PenToolIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-pen-tool"},Object.assign({},i)),[h("path",{d:"M12 19l7-7 3 3-7 7-3-3z"}),h("path",{d:"M18 13l-1.5-7.5L2 2l3.5 14.5L13 18l5-5z"}),h("path",{d:"M2 2l7.586 7.586"}),h("circle",{cx:"11",cy:"11",r:"2"})])}}},YI={name:"PercentIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-percent"},Object.assign({},i)),[h("line",{x1:"19",y1:"5",x2:"5",y2:"19"}),h("circle",{cx:"6.5",cy:"6.5",r:"2.5"}),h("circle",{cx:"17.5",cy:"17.5",r:"2.5"})])}}},GI={name:"PhoneCallIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-phone-call"},Object.assign({},i)),[h("path",{d:"M15.05 5A5 5 0 0 1 19 8.95M15.05 1A9 9 0 0 1 23 8.94m-1 7.98v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"})])}}},qI={name:"PhoneForwardedIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-phone-forwarded"},Object.assign({},i)),[h("polyline",{points:"19 1 23 5 19 9"}),h("line",{x1:"15",y1:"5",x2:"23",y2:"5"}),h("path",{d:"M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"})])}}},ZI={name:"PhoneIncomingIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-phone-incoming"},Object.assign({},i)),[h("polyline",{points:"16 2 16 8 22 8"}),h("line",{x1:"23",y1:"1",x2:"16",y2:"8"}),h("path",{d:"M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"})])}}},KI={name:"PhoneMissedIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-phone-missed"},Object.assign({},i)),[h("line",{x1:"23",y1:"1",x2:"17",y2:"7"}),h("line",{x1:"17",y1:"1",x2:"23",y2:"7"}),h("path",{d:"M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"})])}}},JI={name:"PhoneOffIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-phone-off"},Object.assign({},i)),[h("path",{d:"M10.68 13.31a16 16 0 0 0 3.41 2.6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7 2 2 0 0 1 1.72 2v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.42 19.42 0 0 1-3.33-2.67m-2.67-3.34a19.79 19.79 0 0 1-3.07-8.63A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91"}),h("line",{x1:"23",y1:"1",x2:"1",y2:"23"})])}}},QI={name:"PhoneOutgoingIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-phone-outgoing"},Object.assign({},i)),[h("polyline",{points:"23 7 23 1 17 1"}),h("line",{x1:"16",y1:"8",x2:"23",y2:"1"}),h("path",{d:"M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"})])}}},eP={name:"PhoneIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-phone"},Object.assign({},i)),[h("path",{d:"M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"})])}}},tP={name:"PieChartIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-pie-chart"},Object.assign({},i)),[h("path",{d:"M21.21 15.89A10 10 0 1 1 8 2.83"}),h("path",{d:"M22 12A10 10 0 0 0 12 2v10z"})])}}},nP={name:"PlayCircleIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-play-circle"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("polygon",{points:"10 8 16 12 10 16 10 8"})])}}},rP={name:"PlayIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-play"},Object.assign({},i)),[h("polygon",{points:"5 3 19 12 5 21 5 3"})])}}},iP={name:"PlusCircleIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-plus-circle"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("line",{x1:"12",y1:"8",x2:"12",y2:"16"}),h("line",{x1:"8",y1:"12",x2:"16",y2:"12"})])}}},sP={name:"PlusSquareIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-plus-square"},Object.assign({},i)),[h("rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}),h("line",{x1:"12",y1:"8",x2:"12",y2:"16"}),h("line",{x1:"8",y1:"12",x2:"16",y2:"12"})])}}},oP={name:"PlusIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-plus"},Object.assign({},i)),[h("line",{x1:"12",y1:"5",x2:"12",y2:"19"}),h("line",{x1:"5",y1:"12",x2:"19",y2:"12"})])}}},aP={name:"PocketIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-pocket"},Object.assign({},i)),[h("path",{d:"M4 3h16a2 2 0 0 1 2 2v6a10 10 0 0 1-10 10A10 10 0 0 1 2 11V5a2 2 0 0 1 2-2z"}),h("polyline",{points:"8 10 12 14 16 10"})])}}},lP={name:"PowerIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-power"},Object.assign({},i)),[h("path",{d:"M18.36 6.64a9 9 0 1 1-12.73 0"}),h("line",{x1:"12",y1:"2",x2:"12",y2:"12"})])}}},uP={name:"PrinterIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-printer"},Object.assign({},i)),[h("polyline",{points:"6 9 6 2 18 2 18 9"}),h("path",{d:"M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2"}),h("rect",{x:"6",y:"14",width:"12",height:"8"})])}}},cP={name:"RadioIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-radio"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"2"}),h("path",{d:"M16.24 7.76a6 6 0 0 1 0 8.49m-8.48-.01a6 6 0 0 1 0-8.49m11.31-2.82a10 10 0 0 1 0 14.14m-14.14 0a10 10 0 0 1 0-14.14"})])}}},hP={name:"RefreshCcwIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-refresh-ccw"},Object.assign({},i)),[h("polyline",{points:"1 4 1 10 7 10"}),h("polyline",{points:"23 20 23 14 17 14"}),h("path",{d:"M20.49 9A9 9 0 0 0 5.64 5.64L1 10m22 4l-4.64 4.36A9 9 0 0 1 3.51 15"})])}}},fP={name:"RefreshCwIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-refresh-cw"},Object.assign({},i)),[h("polyline",{points:"23 4 23 10 17 10"}),h("polyline",{points:"1 20 1 14 7 14"}),h("path",{d:"M3.51 9a9 9 0 0 1 14.85-3.36L23 10M1 14l4.64 4.36A9 9 0 0 0 20.49 15"})])}}},dP={name:"RepeatIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-repeat"},Object.assign({},i)),[h("polyline",{points:"17 1 21 5 17 9"}),h("path",{d:"M3 11V9a4 4 0 0 1 4-4h14"}),h("polyline",{points:"7 23 3 19 7 15"}),h("path",{d:"M21 13v2a4 4 0 0 1-4 4H3"})])}}},pP={name:"RewindIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-rewind"},Object.assign({},i)),[h("polygon",{points:"11 19 2 12 11 5 11 19"}),h("polygon",{points:"22 19 13 12 22 5 22 19"})])}}},gP={name:"RotateCcwIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-rotate-ccw"},Object.assign({},i)),[h("polyline",{points:"1 4 1 10 7 10"}),h("path",{d:"M3.51 15a9 9 0 1 0 2.13-9.36L1 10"})])}}},mP={name:"RotateCwIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-rotate-cw"},Object.assign({},i)),[h("polyline",{points:"23 4 23 10 17 10"}),h("path",{d:"M20.49 15a9 9 0 1 1-2.12-9.36L23 10"})])}}},yP={name:"RssIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-rss"},Object.assign({},i)),[h("path",{d:"M4 11a9 9 0 0 1 9 9"}),h("path",{d:"M4 4a16 16 0 0 1 16 16"}),h("circle",{cx:"5",cy:"19",r:"1"})])}}},vP={name:"SaveIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-save"},Object.assign({},i)),[h("path",{d:"M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11l5 5v11a2 2 0 0 1-2 2z"}),h("polyline",{points:"17 21 17 13 7 13 7 21"}),h("polyline",{points:"7 3 7 8 15 8"})])}}},bP={name:"ScissorsIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-scissors"},Object.assign({},i)),[h("circle",{cx:"6",cy:"6",r:"3"}),h("circle",{cx:"6",cy:"18",r:"3"}),h("line",{x1:"20",y1:"4",x2:"8.12",y2:"15.88"}),h("line",{x1:"14.47",y1:"14.48",x2:"20",y2:"20"}),h("line",{x1:"8.12",y1:"8.12",x2:"12",y2:"12"})])}}},wP={name:"SearchIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-search"},Object.assign({},i)),[h("circle",{cx:"11",cy:"11",r:"8"}),h("line",{x1:"21",y1:"21",x2:"16.65",y2:"16.65"})])}}},xP={name:"SendIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-send"},Object.assign({},i)),[h("line",{x1:"22",y1:"2",x2:"11",y2:"13"}),h("polygon",{points:"22 2 15 22 11 13 2 9 22 2"})])}}},_P={name:"ServerIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-server"},Object.assign({},i)),[h("rect",{x:"2",y:"2",width:"20",height:"8",rx:"2",ry:"2"}),h("rect",{x:"2",y:"14",width:"20",height:"8",rx:"2",ry:"2"}),h("line",{x1:"6",y1:"6",x2:"6.01",y2:"6"}),h("line",{x1:"6",y1:"18",x2:"6.01",y2:"18"})])}}},OP={name:"SettingsIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-settings"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"3"}),h("path",{d:"M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z"})])}}},SP={name:"Share2Icon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-share-2"},Object.assign({},i)),[h("circle",{cx:"18",cy:"5",r:"3"}),h("circle",{cx:"6",cy:"12",r:"3"}),h("circle",{cx:"18",cy:"19",r:"3"}),h("line",{x1:"8.59",y1:"13.51",x2:"15.42",y2:"17.49"}),h("line",{x1:"15.41",y1:"6.51",x2:"8.59",y2:"10.49"})])}}},kP={name:"ShareIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-share"},Object.assign({},i)),[h("path",{d:"M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8"}),h("polyline",{points:"16 6 12 2 8 6"}),h("line",{x1:"12",y1:"2",x2:"12",y2:"15"})])}}},TP={name:"ShieldOffIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-shield-off"},Object.assign({},i)),[h("path",{d:"M19.69 14a6.9 6.9 0 0 0 .31-2V5l-8-3-3.16 1.18"}),h("path",{d:"M4.73 4.73L4 5v7c0 6 8 10 8 10a20.29 20.29 0 0 0 5.62-4.38"}),h("line",{x1:"1",y1:"1",x2:"23",y2:"23"})])}}},CP={name:"ShieldIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-shield"},Object.assign({},i)),[h("path",{d:"M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"})])}}},MP={name:"ShoppingBagIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-shopping-bag"},Object.assign({},i)),[h("path",{d:"M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z"}),h("line",{x1:"3",y1:"6",x2:"21",y2:"6"}),h("path",{d:"M16 10a4 4 0 0 1-8 0"})])}}},zP={name:"ShoppingCartIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-shopping-cart"},Object.assign({},i)),[h("circle",{cx:"9",cy:"21",r:"1"}),h("circle",{cx:"20",cy:"21",r:"1"}),h("path",{d:"M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6"})])}}},NP={name:"ShuffleIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-shuffle"},Object.assign({},i)),[h("polyline",{points:"16 3 21 3 21 8"}),h("line",{x1:"4",y1:"20",x2:"21",y2:"3"}),h("polyline",{points:"21 16 21 21 16 21"}),h("line",{x1:"15",y1:"15",x2:"21",y2:"21"}),h("line",{x1:"4",y1:"4",x2:"9",y2:"9"})])}}},EP={name:"SidebarIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-sidebar"},Object.assign({},i)),[h("rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}),h("line",{x1:"9",y1:"3",x2:"9",y2:"21"})])}}},AP={name:"SkipBackIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-skip-back"},Object.assign({},i)),[h("polygon",{points:"19 20 9 12 19 4 19 20"}),h("line",{x1:"5",y1:"19",x2:"5",y2:"5"})])}}},IP={name:"SkipForwardIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-skip-forward"},Object.assign({},i)),[h("polygon",{points:"5 4 15 12 5 20 5 4"}),h("line",{x1:"19",y1:"5",x2:"19",y2:"19"})])}}},PP={name:"SlackIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-slack"},Object.assign({},i)),[h("path",{d:"M14.5 10c-.83 0-1.5-.67-1.5-1.5v-5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v5c0 .83-.67 1.5-1.5 1.5z"}),h("path",{d:"M20.5 10H19V8.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z"}),h("path",{d:"M9.5 14c.83 0 1.5.67 1.5 1.5v5c0 .83-.67 1.5-1.5 1.5S8 21.33 8 20.5v-5c0-.83.67-1.5 1.5-1.5z"}),h("path",{d:"M3.5 14H5v1.5c0 .83-.67 1.5-1.5 1.5S2 16.33 2 15.5 2.67 14 3.5 14z"}),h("path",{d:"M14 14.5c0-.83.67-1.5 1.5-1.5h5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-5c-.83 0-1.5-.67-1.5-1.5z"}),h("path",{d:"M15.5 19H14v1.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z"}),h("path",{d:"M10 9.5C10 8.67 9.33 8 8.5 8h-5C2.67 8 2 8.67 2 9.5S2.67 11 3.5 11h5c.83 0 1.5-.67 1.5-1.5z"}),h("path",{d:"M8.5 5H10V3.5C10 2.67 9.33 2 8.5 2S7 2.67 7 3.5 7.67 5 8.5 5z"})])}}},jP={name:"SlashIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-slash"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("line",{x1:"4.93",y1:"4.93",x2:"19.07",y2:"19.07"})])}}},DP={name:"SlidersIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-sliders"},Object.assign({},i)),[h("line",{x1:"4",y1:"21",x2:"4",y2:"14"}),h("line",{x1:"4",y1:"10",x2:"4",y2:"3"}),h("line",{x1:"12",y1:"21",x2:"12",y2:"12"}),h("line",{x1:"12",y1:"8",x2:"12",y2:"3"}),h("line",{x1:"20",y1:"21",x2:"20",y2:"16"}),h("line",{x1:"20",y1:"12",x2:"20",y2:"3"}),h("line",{x1:"1",y1:"14",x2:"7",y2:"14"}),h("line",{x1:"9",y1:"8",x2:"15",y2:"8"}),h("line",{x1:"17",y1:"16",x2:"23",y2:"16"})])}}},$P={name:"SmartphoneIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-smartphone"},Object.assign({},i)),[h("rect",{x:"5",y:"2",width:"14",height:"20",rx:"2",ry:"2"}),h("line",{x1:"12",y1:"18",x2:"12.01",y2:"18"})])}}},LP={name:"SmileIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-smile"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("path",{d:"M8 14s1.5 2 4 2 4-2 4-2"}),h("line",{x1:"9",y1:"9",x2:"9.01",y2:"9"}),h("line",{x1:"15",y1:"9",x2:"15.01",y2:"9"})])}}},RP={name:"SpeakerIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-speaker"},Object.assign({},i)),[h("rect",{x:"4",y:"2",width:"16",height:"20",rx:"2",ry:"2"}),h("circle",{cx:"12",cy:"14",r:"4"}),h("line",{x1:"12",y1:"6",x2:"12.01",y2:"6"})])}}},BP={name:"SquareIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-square"},Object.assign({},i)),[h("rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"})])}}},XP={name:"StarIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-star"},Object.assign({},i)),[h("polygon",{points:"12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"})])}}},FP={name:"StopCircleIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-stop-circle"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("rect",{x:"9",y:"9",width:"6",height:"6"})])}}},VP={name:"SunIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-sun"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"5"}),h("line",{x1:"12",y1:"1",x2:"12",y2:"3"}),h("line",{x1:"12",y1:"21",x2:"12",y2:"23"}),h("line",{x1:"4.22",y1:"4.22",x2:"5.64",y2:"5.64"}),h("line",{x1:"18.36",y1:"18.36",x2:"19.78",y2:"19.78"}),h("line",{x1:"1",y1:"12",x2:"3",y2:"12"}),h("line",{x1:"21",y1:"12",x2:"23",y2:"12"}),h("line",{x1:"4.22",y1:"19.78",x2:"5.64",y2:"18.36"}),h("line",{x1:"18.36",y1:"5.64",x2:"19.78",y2:"4.22"})])}}},HP={name:"SunriseIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-sunrise"},Object.assign({},i)),[h("path",{d:"M17 18a5 5 0 0 0-10 0"}),h("line",{x1:"12",y1:"2",x2:"12",y2:"9"}),h("line",{x1:"4.22",y1:"10.22",x2:"5.64",y2:"11.64"}),h("line",{x1:"1",y1:"18",x2:"3",y2:"18"}),h("line",{x1:"21",y1:"18",x2:"23",y2:"18"}),h("line",{x1:"18.36",y1:"11.64",x2:"19.78",y2:"10.22"}),h("line",{x1:"23",y1:"22",x2:"1",y2:"22"}),h("polyline",{points:"8 6 12 2 16 6"})])}}},WP={name:"SunsetIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-sunset"},Object.assign({},i)),[h("path",{d:"M17 18a5 5 0 0 0-10 0"}),h("line",{x1:"12",y1:"9",x2:"12",y2:"2"}),h("line",{x1:"4.22",y1:"10.22",x2:"5.64",y2:"11.64"}),h("line",{x1:"1",y1:"18",x2:"3",y2:"18"}),h("line",{x1:"21",y1:"18",x2:"23",y2:"18"}),h("line",{x1:"18.36",y1:"11.64",x2:"19.78",y2:"10.22"}),h("line",{x1:"23",y1:"22",x2:"1",y2:"22"}),h("polyline",{points:"16 5 12 9 8 5"})])}}},UP={name:"TabletIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-tablet"},Object.assign({},i)),[h("rect",{x:"4",y:"2",width:"16",height:"20",rx:"2",ry:"2"}),h("line",{x1:"12",y1:"18",x2:"12.01",y2:"18"})])}}},YP={name:"TagIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-tag"},Object.assign({},i)),[h("path",{d:"M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z"}),h("line",{x1:"7",y1:"7",x2:"7.01",y2:"7"})])}}},GP={name:"TargetIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-target"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("circle",{cx:"12",cy:"12",r:"6"}),h("circle",{cx:"12",cy:"12",r:"2"})])}}},qP={name:"TerminalIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-terminal"},Object.assign({},i)),[h("polyline",{points:"4 17 10 11 4 5"}),h("line",{x1:"12",y1:"19",x2:"20",y2:"19"})])}}},ZP={name:"ThermometerIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-thermometer"},Object.assign({},i)),[h("path",{d:"M14 14.76V3.5a2.5 2.5 0 0 0-5 0v11.26a4.5 4.5 0 1 0 5 0z"})])}}},KP={name:"ThumbsDownIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-thumbs-down"},Object.assign({},i)),[h("path",{d:"M10 15v4a3 3 0 0 0 3 3l4-9V2H5.72a2 2 0 0 0-2 1.7l-1.38 9a2 2 0 0 0 2 2.3zm7-13h2.67A2.31 2.31 0 0 1 22 4v7a2.31 2.31 0 0 1-2.33 2H17"})])}}},JP={name:"ThumbsUpIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-thumbs-up"},Object.assign({},i)),[h("path",{d:"M14 9V5a3 3 0 0 0-3-3l-4 9v11h11.28a2 2 0 0 0 2-1.7l1.38-9a2 2 0 0 0-2-2.3zM7 22H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h3"})])}}},QP={name:"ToggleLeftIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-toggle-left"},Object.assign({},i)),[h("rect",{x:"1",y:"5",width:"22",height:"14",rx:"7",ry:"7"}),h("circle",{cx:"8",cy:"12",r:"3"})])}}},ej={name:"ToggleRightIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-toggle-right"},Object.assign({},i)),[h("rect",{x:"1",y:"5",width:"22",height:"14",rx:"7",ry:"7"}),h("circle",{cx:"16",cy:"12",r:"3"})])}}},tj={name:"ToolIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-tool"},Object.assign({},i)),[h("path",{d:"M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z"})])}}},nj={name:"Trash2Icon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-trash-2"},Object.assign({},i)),[h("polyline",{points:"3 6 5 6 21 6"}),h("path",{d:"M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"}),h("line",{x1:"10",y1:"11",x2:"10",y2:"17"}),h("line",{x1:"14",y1:"11",x2:"14",y2:"17"})])}}},rj={name:"TrashIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-trash"},Object.assign({},i)),[h("polyline",{points:"3 6 5 6 21 6"}),h("path",{d:"M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"})])}}},ij={name:"TrelloIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-trello"},Object.assign({},i)),[h("rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}),h("rect",{x:"7",y:"7",width:"3",height:"9"}),h("rect",{x:"14",y:"7",width:"3",height:"5"})])}}},sj={name:"TrendingDownIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-trending-down"},Object.assign({},i)),[h("polyline",{points:"23 18 13.5 8.5 8.5 13.5 1 6"}),h("polyline",{points:"17 18 23 18 23 12"})])}}},oj={name:"TrendingUpIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-trending-up"},Object.assign({},i)),[h("polyline",{points:"23 6 13.5 15.5 8.5 10.5 1 18"}),h("polyline",{points:"17 6 23 6 23 12"})])}}},aj={name:"TriangleIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-triangle"},Object.assign({},i)),[h("path",{d:"M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z"})])}}},lj={name:"TruckIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-truck"},Object.assign({},i)),[h("rect",{x:"1",y:"3",width:"15",height:"13"}),h("polygon",{points:"16 8 20 8 23 11 23 16 16 16 16 8"}),h("circle",{cx:"5.5",cy:"18.5",r:"2.5"}),h("circle",{cx:"18.5",cy:"18.5",r:"2.5"})])}}},uj={name:"TvIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-tv"},Object.assign({},i)),[h("rect",{x:"2",y:"7",width:"20",height:"15",rx:"2",ry:"2"}),h("polyline",{points:"17 2 12 7 7 2"})])}}},cj={name:"TwitchIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-twitch"},Object.assign({},i)),[h("path",{d:"M21 2H3v16h5v4l4-4h5l4-4V2zm-10 9V7m5 4V7"})])}}},hj={name:"TwitterIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-twitter"},Object.assign({},i)),[h("path",{d:"M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z"})])}}},fj={name:"TypeIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-type"},Object.assign({},i)),[h("polyline",{points:"4 7 4 4 20 4 20 7"}),h("line",{x1:"9",y1:"20",x2:"15",y2:"20"}),h("line",{x1:"12",y1:"4",x2:"12",y2:"20"})])}}},dj={name:"UmbrellaIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-umbrella"},Object.assign({},i)),[h("path",{d:"M23 12a11.05 11.05 0 0 0-22 0zm-5 7a3 3 0 0 1-6 0v-7"})])}}},pj={name:"UnderlineIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-underline"},Object.assign({},i)),[h("path",{d:"M6 3v7a6 6 0 0 0 6 6 6 6 0 0 0 6-6V3"}),h("line",{x1:"4",y1:"21",x2:"20",y2:"21"})])}}},gj={name:"UnlockIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-unlock"},Object.assign({},i)),[h("rect",{x:"3",y:"11",width:"18",height:"11",rx:"2",ry:"2"}),h("path",{d:"M7 11V7a5 5 0 0 1 9.9-1"})])}}},mj={name:"UploadCloudIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-upload-cloud"},Object.assign({},i)),[h("polyline",{points:"16 16 12 12 8 16"}),h("line",{x1:"12",y1:"12",x2:"12",y2:"21"}),h("path",{d:"M20.39 18.39A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.3"}),h("polyline",{points:"16 16 12 12 8 16"})])}}},yj={name:"UploadIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-upload"},Object.assign({},i)),[h("path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"}),h("polyline",{points:"17 8 12 3 7 8"}),h("line",{x1:"12",y1:"3",x2:"12",y2:"15"})])}}},vj={name:"UserCheckIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-user-check"},Object.assign({},i)),[h("path",{d:"M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"}),h("circle",{cx:"8.5",cy:"7",r:"4"}),h("polyline",{points:"17 11 19 13 23 9"})])}}},bj={name:"UserMinusIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-user-minus"},Object.assign({},i)),[h("path",{d:"M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"}),h("circle",{cx:"8.5",cy:"7",r:"4"}),h("line",{x1:"23",y1:"11",x2:"17",y2:"11"})])}}},wj={name:"UserPlusIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-user-plus"},Object.assign({},i)),[h("path",{d:"M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"}),h("circle",{cx:"8.5",cy:"7",r:"4"}),h("line",{x1:"20",y1:"8",x2:"20",y2:"14"}),h("line",{x1:"23",y1:"11",x2:"17",y2:"11"})])}}},xj={name:"UserXIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-user-x"},Object.assign({},i)),[h("path",{d:"M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"}),h("circle",{cx:"8.5",cy:"7",r:"4"}),h("line",{x1:"18",y1:"8",x2:"23",y2:"13"}),h("line",{x1:"23",y1:"8",x2:"18",y2:"13"})])}}},_j={name:"UserIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-user"},Object.assign({},i)),[h("path",{d:"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"}),h("circle",{cx:"12",cy:"7",r:"4"})])}}},Oj={name:"UsersIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-users"},Object.assign({},i)),[h("path",{d:"M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"}),h("circle",{cx:"9",cy:"7",r:"4"}),h("path",{d:"M23 21v-2a4 4 0 0 0-3-3.87"}),h("path",{d:"M16 3.13a4 4 0 0 1 0 7.75"})])}}},Sj={name:"VideoOffIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-video-off"},Object.assign({},i)),[h("path",{d:"M16 16v1a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h2m5.66 0H14a2 2 0 0 1 2 2v3.34l1 1L23 7v10"}),h("line",{x1:"1",y1:"1",x2:"23",y2:"23"})])}}},kj={name:"VideoIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-video"},Object.assign({},i)),[h("polygon",{points:"23 7 16 12 23 17 23 7"}),h("rect",{x:"1",y:"5",width:"15",height:"14",rx:"2",ry:"2"})])}}},Tj={name:"VoicemailIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-voicemail"},Object.assign({},i)),[h("circle",{cx:"5.5",cy:"11.5",r:"4.5"}),h("circle",{cx:"18.5",cy:"11.5",r:"4.5"}),h("line",{x1:"5.5",y1:"16",x2:"18.5",y2:"16"})])}}},Cj={name:"Volume1Icon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-volume-1"},Object.assign({},i)),[h("polygon",{points:"11 5 6 9 2 9 2 15 6 15 11 19 11 5"}),h("path",{d:"M15.54 8.46a5 5 0 0 1 0 7.07"})])}}},Mj={name:"Volume2Icon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-volume-2"},Object.assign({},i)),[h("polygon",{points:"11 5 6 9 2 9 2 15 6 15 11 19 11 5"}),h("path",{d:"M19.07 4.93a10 10 0 0 1 0 14.14M15.54 8.46a5 5 0 0 1 0 7.07"})])}}},zj={name:"VolumeXIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-volume-x"},Object.assign({},i)),[h("polygon",{points:"11 5 6 9 2 9 2 15 6 15 11 19 11 5"}),h("line",{x1:"23",y1:"9",x2:"17",y2:"15"}),h("line",{x1:"17",y1:"9",x2:"23",y2:"15"})])}}},Nj={name:"VolumeIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-volume"},Object.assign({},i)),[h("polygon",{points:"11 5 6 9 2 9 2 15 6 15 11 19 11 5"})])}}},Ej={name:"WatchIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-watch"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"7"}),h("polyline",{points:"12 9 12 12 13.5 13.5"}),h("path",{d:"M16.51 17.35l-.35 3.83a2 2 0 0 1-2 1.82H9.83a2 2 0 0 1-2-1.82l-.35-3.83m.01-10.7l.35-3.83A2 2 0 0 1 9.83 1h4.35a2 2 0 0 1 2 1.82l.35 3.83"})])}}},Aj={name:"WifiOffIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-wifi-off"},Object.assign({},i)),[h("line",{x1:"1",y1:"1",x2:"23",y2:"23"}),h("path",{d:"M16.72 11.06A10.94 10.94 0 0 1 19 12.55"}),h("path",{d:"M5 12.55a10.94 10.94 0 0 1 5.17-2.39"}),h("path",{d:"M10.71 5.05A16 16 0 0 1 22.58 9"}),h("path",{d:"M1.42 9a15.91 15.91 0 0 1 4.7-2.88"}),h("path",{d:"M8.53 16.11a6 6 0 0 1 6.95 0"}),h("line",{x1:"12",y1:"20",x2:"12.01",y2:"20"})])}}},Ij={name:"WifiIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-wifi"},Object.assign({},i)),[h("path",{d:"M5 12.55a11 11 0 0 1 14.08 0"}),h("path",{d:"M1.42 9a16 16 0 0 1 21.16 0"}),h("path",{d:"M8.53 16.11a6 6 0 0 1 6.95 0"}),h("line",{x1:"12",y1:"20",x2:"12.01",y2:"20"})])}}},Pj={name:"WindIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-wind"},Object.assign({},i)),[h("path",{d:"M9.59 4.59A2 2 0 1 1 11 8H2m10.59 11.41A2 2 0 1 0 14 16H2m15.73-8.27A2.5 2.5 0 1 1 19.5 12H2"})])}}},jj={name:"XCircleIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-x-circle"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("line",{x1:"15",y1:"9",x2:"9",y2:"15"}),h("line",{x1:"9",y1:"9",x2:"15",y2:"15"})])}}},Dj={name:"XOctagonIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-x-octagon"},Object.assign({},i)),[h("polygon",{points:"7.86 2 16.14 2 22 7.86 22 16.14 16.14 22 7.86 22 2 16.14 2 7.86 7.86 2"}),h("line",{x1:"15",y1:"9",x2:"9",y2:"15"}),h("line",{x1:"9",y1:"9",x2:"15",y2:"15"})])}}},$j={name:"XSquareIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-x-square"},Object.assign({},i)),[h("rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}),h("line",{x1:"9",y1:"9",x2:"15",y2:"15"}),h("line",{x1:"15",y1:"9",x2:"9",y2:"15"})])}}},Lj={name:"XIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-x"},Object.assign({},i)),[h("line",{x1:"18",y1:"6",x2:"6",y2:"18"}),h("line",{x1:"6",y1:"6",x2:"18",y2:"18"})])}}},Rj={name:"YoutubeIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-youtube"},Object.assign({},i)),[h("path",{d:"M22.54 6.42a2.78 2.78 0 0 0-1.94-2C18.88 4 12 4 12 4s-6.88 0-8.6.46a2.78 2.78 0 0 0-1.94 2A29 29 0 0 0 1 11.75a29 29 0 0 0 .46 5.33A2.78 2.78 0 0 0 3.4 19c1.72.46 8.6.46 8.6.46s6.88 0 8.6-.46a2.78 2.78 0 0 0 1.94-2 29 29 0 0 0 .46-5.25 29 29 0 0 0-.46-5.33z"}),h("polygon",{points:"9.75 15.02 15.5 11.75 9.75 8.48 9.75 15.02"})])}}},Bj={name:"ZapOffIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-zap-off"},Object.assign({},i)),[h("polyline",{points:"12.41 6.75 13 2 10.57 4.92"}),h("polyline",{points:"18.57 12.91 21 10 15.66 10"}),h("polyline",{points:"8 8 3 14 12 14 11 22 16 16"}),h("line",{x1:"1",y1:"1",x2:"23",y2:"23"})])}}},Xj={name:"ZapIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-zap"},Object.assign({},i)),[h("polygon",{points:"13 2 3 14 12 14 11 22 21 10 12 10 13 2"})])}}},Fj={name:"ZoomInIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-zoom-in"},Object.assign({},i)),[h("circle",{cx:"11",cy:"11",r:"8"}),h("line",{x1:"21",y1:"21",x2:"16.65",y2:"16.65"}),h("line",{x1:"11",y1:"8",x2:"11",y2:"14"}),h("line",{x1:"8",y1:"11",x2:"14",y2:"11"})])}}},Vj={name:"ZoomOutIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-zoom-out"},Object.assign({},i)),[h("circle",{cx:"11",cy:"11",r:"8"}),h("line",{x1:"21",y1:"21",x2:"16.65",y2:"16.65"}),h("line",{x1:"8",y1:"11",x2:"14",y2:"11"})])}}};const Hj=Object.freeze(Object.defineProperty({__proto__:null,ActivityIcon:MN,AirplayIcon:zN,AlertCircleIcon:NN,AlertOctagonIcon:EN,AlertTriangleIcon:AN,AlignCenterIcon:IN,AlignJustifyIcon:PN,AlignLeftIcon:jN,AlignRightIcon:DN,AnchorIcon:$N,ApertureIcon:LN,ArchiveIcon:RN,ArrowDownCircleIcon:BN,ArrowDownIcon:VN,ArrowDownLeftIcon:XN,ArrowDownRightIcon:FN,ArrowLeftCircleIcon:HN,ArrowLeftIcon:WN,ArrowRightCircleIcon:UN,ArrowRightIcon:YN,ArrowUpCircleIcon:GN,ArrowUpIcon:KN,ArrowUpLeftIcon:qN,ArrowUpRightIcon:ZN,AtSignIcon:JN,AwardIcon:QN,BarChart2Icon:eE,BarChartIcon:tE,BatteryChargingIcon:nE,BatteryIcon:rE,BellIcon:sE,BellOffIcon:iE,BluetoothIcon:oE,BoldIcon:aE,BookIcon:uE,BookOpenIcon:lE,BookmarkIcon:cE,BoxIcon:hE,BriefcaseIcon:fE,CalendarIcon:dE,CameraIcon:gE,CameraOffIcon:pE,CastIcon:mE,CheckCircleIcon:yE,CheckIcon:bE,CheckSquareIcon:vE,ChevronDownIcon:wE,ChevronLeftIcon:xE,ChevronRightIcon:_E,ChevronUpIcon:OE,ChevronsDownIcon:SE,ChevronsLeftIcon:kE,ChevronsRightIcon:TE,ChevronsUpIcon:CE,ChromeIcon:ME,CircleIcon:zE,ClipboardIcon:NE,ClockIcon:EE,CloudDrizzleIcon:AE,CloudIcon:$E,CloudLightningIcon:IE,CloudOffIcon:PE,CloudRainIcon:jE,CloudSnowIcon:DE,CodeIcon:LE,CodepenIcon:RE,CodesandboxIcon:BE,CoffeeIcon:XE,ColumnsIcon:FE,CommandIcon:VE,CompassIcon:HE,CopyIcon:WE,CornerDownLeftIcon:UE,CornerDownRightIcon:YE,CornerLeftDownIcon:GE,CornerLeftUpIcon:qE,CornerRightDownIcon:ZE,CornerRightUpIcon:KE,CornerUpLeftIcon:JE,CornerUpRightIcon:QE,CpuIcon:eA,CreditCardIcon:tA,CropIcon:nA,CrosshairIcon:rA,DatabaseIcon:iA,DeleteIcon:sA,DiscIcon:oA,DivideCircleIcon:aA,DivideIcon:uA,DivideSquareIcon:lA,DollarSignIcon:cA,DownloadCloudIcon:hA,DownloadIcon:fA,DribbbleIcon:dA,DropletIcon:pA,Edit2Icon:gA,Edit3Icon:mA,EditIcon:yA,ExternalLinkIcon:vA,EyeIcon:wA,EyeOffIcon:bA,FacebookIcon:xA,FastForwardIcon:_A,FeatherIcon:OA,FigmaIcon:SA,FileIcon:MA,FileMinusIcon:kA,FilePlusIcon:TA,FileTextIcon:CA,FilmIcon:zA,FilterIcon:NA,FlagIcon:EA,FolderIcon:PA,FolderMinusIcon:AA,FolderPlusIcon:IA,FramerIcon:jA,FrownIcon:DA,GiftIcon:$A,GitBranchIcon:LA,GitCommitIcon:RA,GitMergeIcon:BA,GitPullRequestIcon:XA,GithubIcon:FA,GitlabIcon:VA,GlobeIcon:HA,GridIcon:WA,HardDriveIcon:UA,HashIcon:YA,HeadphonesIcon:GA,HeartIcon:qA,HelpCircleIcon:ZA,HexagonIcon:KA,HomeIcon:JA,ImageIcon:QA,InboxIcon:eI,InfoIcon:tI,InstagramIcon:nI,ItalicIcon:rI,KeyIcon:iI,LayersIcon:sI,LayoutIcon:oI,LifeBuoyIcon:aI,Link2Icon:lI,LinkIcon:uI,LinkedinIcon:cI,ListIcon:hI,LoaderIcon:fI,LockIcon:dI,LogInIcon:pI,LogOutIcon:gI,MailIcon:mI,MapIcon:vI,MapPinIcon:yI,Maximize2Icon:bI,MaximizeIcon:wI,MehIcon:xI,MenuIcon:_I,MessageCircleIcon:OI,MessageSquareIcon:SI,MicIcon:TI,MicOffIcon:kI,Minimize2Icon:CI,MinimizeIcon:MI,MinusCircleIcon:zI,MinusIcon:EI,MinusSquareIcon:NI,MonitorIcon:AI,MoonIcon:II,MoreHorizontalIcon:PI,MoreVerticalIcon:jI,MousePointerIcon:DI,MoveIcon:$I,MusicIcon:LI,Navigation2Icon:RI,NavigationIcon:BI,OctagonIcon:XI,PackageIcon:FI,PaperclipIcon:VI,PauseCircleIcon:HI,PauseIcon:WI,PenToolIcon:UI,PercentIcon:YI,PhoneCallIcon:GI,PhoneForwardedIcon:qI,PhoneIcon:eP,PhoneIncomingIcon:ZI,PhoneMissedIcon:KI,PhoneOffIcon:JI,PhoneOutgoingIcon:QI,PieChartIcon:tP,PlayCircleIcon:nP,PlayIcon:rP,PlusCircleIcon:iP,PlusIcon:oP,PlusSquareIcon:sP,PocketIcon:aP,PowerIcon:lP,PrinterIcon:uP,RadioIcon:cP,RefreshCcwIcon:hP,RefreshCwIcon:fP,RepeatIcon:dP,RewindIcon:pP,RotateCcwIcon:gP,RotateCwIcon:mP,RssIcon:yP,SaveIcon:vP,ScissorsIcon:bP,SearchIcon:wP,SendIcon:xP,ServerIcon:_P,SettingsIcon:OP,Share2Icon:SP,ShareIcon:kP,ShieldIcon:CP,ShieldOffIcon:TP,ShoppingBagIcon:MP,ShoppingCartIcon:zP,ShuffleIcon:NP,SidebarIcon:EP,SkipBackIcon:AP,SkipForwardIcon:IP,SlackIcon:PP,SlashIcon:jP,SlidersIcon:DP,SmartphoneIcon:$P,SmileIcon:LP,SpeakerIcon:RP,SquareIcon:BP,StarIcon:XP,StopCircleIcon:FP,SunIcon:VP,SunriseIcon:HP,SunsetIcon:WP,TabletIcon:UP,TagIcon:YP,TargetIcon:GP,TerminalIcon:qP,ThermometerIcon:ZP,ThumbsDownIcon:KP,ThumbsUpIcon:JP,ToggleLeftIcon:QP,ToggleRightIcon:ej,ToolIcon:tj,Trash2Icon:nj,TrashIcon:rj,TrelloIcon:ij,TrendingDownIcon:sj,TrendingUpIcon:oj,TriangleIcon:aj,TruckIcon:lj,TvIcon:uj,TwitchIcon:cj,TwitterIcon:hj,TypeIcon:fj,UmbrellaIcon:dj,UnderlineIcon:pj,UnlockIcon:gj,UploadCloudIcon:mj,UploadIcon:yj,UserCheckIcon:vj,UserIcon:_j,UserMinusIcon:bj,UserPlusIcon:wj,UserXIcon:xj,UsersIcon:Oj,VideoIcon:kj,VideoOffIcon:Sj,VoicemailIcon:Tj,Volume1Icon:Cj,Volume2Icon:Mj,VolumeIcon:Nj,VolumeXIcon:zj,WatchIcon:Ej,WifiIcon:Ij,WifiOffIcon:Aj,WindIcon:Pj,XCircleIcon:jj,XIcon:Lj,XOctagonIcon:Dj,XSquareIcon:$j,YoutubeIcon:Rj,ZapIcon:Xj,ZapOffIcon:Bj,ZoomInIcon:Fj,ZoomOutIcon:Vj},Symbol.toStringTag,{value:"Module"}));/** + */(function(e,t){(function(n,r){r(FM,Gh(),W2(),VM(),HM(),Y2(),WM())})(ke,function(n,r,i,o,s,a,l){r=r&&r.hasOwnProperty("default")?r.default:r,i=i&&i.hasOwnProperty("default")?i.default:i,o=o&&o.hasOwnProperty("default")?o.default:o,s=s&&s.hasOwnProperty("default")?s.default:s,a=a&&a.hasOwnProperty("default")?a.default:a,l=l&&l.hasOwnProperty("default")?l.default:l;const u={datetime:"MMM D, YYYY, h:mm:ss a",millisecond:"h:mm:ss.SSS a",second:"h:mm:ss a",minute:"h:mm a",hour:"hA",day:"MMM D",week:"ll",month:"MMM YYYY",quarter:"[Q]Q - YYYY",year:"YYYY"};n._adapters._date.override({_id:"dayjs",_create:function(c){return r.extend(i),r.utc(c)},formats:function(){return u},parse:function(c,f){return r.extend(i),typeof c=="string"&&typeof f=="string"?c=r.utc(c,f):c instanceof r||(c=r.utc(c)),c.isValid()?c.valueOf():null},format:function(c,f){return r.extend(i),r.extend(s),r.extend(a),r.extend(l),r.utc(c).format(f)},add:function(c,f,d){return r.extend(i),r.utc(c).add(f,d).valueOf()},diff:function(c,f,d){return r.extend(i),r.utc(c).diff(r(f),d)},startOf:function(c,f,d){return r.extend(i),r.extend(o),c=r.utc(c),f==="isoWeek"?c.weekday(d).valueOf():c.startOf(f).valueOf()},endOf:function(c,f){return r.extend(i),r.utc(c).endOf(f).valueOf()}})})})();const ye={SET_LOADING:"SET_LOADING",SET_ERROR:"SET_ERROR",ADD_MENU_BUTTON:"ADD_MENU_BUTTON",CLEAR_MENU_BUTTON:"CLEAR_MENU_BUTTON",ADD_LOGS:"ADD_LOGS",SET_LOGS:"SET_LOGS",SET_LOG_POLL_TIME:"SET_LOG_POLL_TIME",SET_USER:"SET_USER",SET_MIGRATIONS:"SET_MIGRATIONS",SET_SYSTEM_OK_STATUS:"SET_SYSTEM_OK_STATUS",SET_SYSTEM_OK_LOADING:"SET_SYSTEM_OK_LOADING"},UM=()=>({loading:!0,error:void 0,menu:[{routeName:"dashboard",title:"Pannello di Controllo",icon:"HomeIcon"},{routeName:"logs",title:"Logs",icon:"MonitorIcon",mustAuth:!0},{routeName:"scheduler.index",title:"Pianificate",icon:"ClockIcon",mustAuth:!0},{routeName:"migrations",title:"Migrazioni",icon:"DatabaseIcon",mustAuth:!0}],startPolling:!1,logs:[],logPollTime:3e3,user:void 0,migrations:[],systemOkStatus:void 0,systemOkLoading:!1}),YM={isLoading:e=>e.loading,getError:e=>e.error,menu:(e,t)=>e.menu.filter(n=>t.isAuthenticated||!n.mustAuth),getLogs:e=>e.logs,getLogPollTime:e=>e.logPollTime,getUser:e=>e.user,isAuthenticated:e=>!!e.user,getMigrations:e=>e.migrations,getSystemOkStatus:e=>e.systemOkStatus,getSystemOkStatusCode:(e,t)=>{var n,r;return((r=(n=t.getSystemOkStatus)==null?void 0:n.response)==null?void 0:r.status)??void 0},getSystemOkStatusErrorMessage:(e,t)=>{var n,r;switch(t.getSystemOkStatusCode){case 404:return"Il servizio non è raggiungibile. Verifica che il server sia attivo";case 551:return"Sistema non ancora inizializzato";case 552:return"Alcune migrazioni non sono andate a buon fine";default:return((r=(n=t.getSystemOkStatus)==null?void 0:n.data)==null?void 0:r.errorMessage)??"Impossibile contattare il server"}},isSystemOkInError:(e,t)=>t.getSystemOkStatusCode!==200,isSystemOkLoading:e=>e.systemOkLoading},GM={[ye.SET_LOADING](e,t){e.loading=t},[ye.SET_ERROR](e,t){e.error=t},[ye.ADD_MENU_BUTTON](e,t){if(t.child){const n=e.menu.find(r=>r.title.toLowerCase()===t.child.toLowerCase());n&&(n.child?n.child.push(t.button):n.child=[t.button])}else e.menu.push(t.button)},[ye.CLEAR_MENU_BUTTON](e,t){if(t.button)if(t.child){const n=e.menu.find(r=>r.title.toLowerCase()===t.button.toLowerCase());n&&delete n.child}else e.menu=e.menu.filter(n=>n.title.toLowerCase()!==t.button.toLowerCase())},[ye.ADD_LOGS](e,t){t&&(e.logs=[...t,...e.logs])},[ye.SET_LOGS](e,t){e.logs=t},[ye.SET_LOG_POLL_TIME](e,t){e.logPollTime=t},[ye.SET_USER](e,t){e.user=t},[ye.SET_MIGRATIONS](e,t){e.migrations=t},[ye.SET_SYSTEM_OK_STATUS](e,t){e.systemOkStatus=t},[ye.SET_SYSTEM_OK_LOADING](e,t){e.systemOkLoading=t}},qM={addMenuButton({commit:e},t){e(ye.ADD_MENU_BUTTON,t)},clearMenuButton({commit:e},t){e(ye.CLEAR_MENU_BUTTON,t)},async fetchLogs({commit:e},{action:t,params:n,data:r}){var i;e(ye.SET_LOADING,!0);try{const o=await ct.post("logs",r||void 0,{params:n||{}});if(o.data.esito===-1)throw Error(o.data.errorMessage);e(t||ye.SET_LOGS,(i=o.data.dto)==null?void 0:i.map(s=>(s.entryDate=new Date(s.entryDate),s))),e(ye.SET_LOG_POLL_TIME,o.headers["Request-Duration"])}catch(o){console.error(o)}finally{e(ye.SET_LOADING,!1)}},async login({commit:e},t){e(ye.SET_LOADING,!0),e(ye.SET_ERROR,void 0);try{const n=await ct.post("system/login",t||void 0);if(n.data.esito===-1)throw new Error(n.data.errorMessage);e(ye.SET_USER,t)}catch(n){e(ye.SET_ERROR,n),console.error(n)}finally{e(ye.SET_LOADING,!1)}},logout({commit:e}){e(ye.SET_USER,void 0)},async changePassword({commit:e,dispatch:t},n){e(ye.SET_LOADING,!0),e(ye.SET_ERROR,void 0);try{const r=await ct.post("system/change",n);if(r.data.esito===-1)throw new Error(r.data.errorMessage);t("logout")}catch(r){e(ye.SET_ERROR,r),console.error(r)}finally{e(ye.SET_LOADING,!1)}},async fetchMigrations({commit:e},{action:t,params:n}){e(ye.SET_LOADING,!0);try{const r=await ct.get("system/migration/setup",{params:n||{}});if(r.data.esito===-1)throw Error(r.data.errorMessage);e(t||ye.SET_MIGRATIONS,r.data.dto)}catch(r){console.error(r)}finally{e(ye.SET_LOADING,!1)}},async checkSystemOk({commit:e,dispatch:t}){try{e(ye.SET_SYSTEM_OK_LOADING,!1),await ct.get("system/ok"),e(ye.SET_SYSTEM_OK_STATUS,{response:{status:200}})}catch(n){e(ye.SET_SYSTEM_OK_STATUS,n),console.error(n)}finally{e(ye.SET_SYSTEM_OK_LOADING,!1)}await f7(5*1e3),await t("checkSystemOk")}},ZM={namespaced:!0,state:UM,getters:YM,mutations:GM,actions:qM},KM={class:"flex min-h-full items-center justify-center p-4"},JM={class:"px-6 py-4 border-b border-gray-200"},QM={class:"flex items-center space-x-3"},ez={key:0,class:"text-sm text-gray-500"},tz={class:"px-6 py-4 overflow-y-auto max-h-[70vh]"},nz={key:0,class:"space-y-6"},rz={class:"bg-gray-50 rounded-lg p-4"},iz={class:"text-sm font-medium text-gray-900 mb-3 flex items-center"},sz={class:"grid grid-cols-1 md:grid-cols-2 gap-4"},oz={class:"text-sm font-mono text-gray-900 bg-white px-2 py-1 rounded border"},az={class:"text-sm text-gray-900 bg-white px-2 py-1 rounded border"},lz={class:"text-sm font-mono text-gray-900 bg-white px-2 py-1 rounded border overflow-x-auto"},uz={class:"bg-gray-50 rounded-lg p-4"},cz={class:"text-sm font-medium text-gray-900 mb-3 flex items-center"},hz={class:"bg-white rounded border p-3"},fz={class:"text-sm text-gray-900 leading-relaxed whitespace-pre-wrap break-words"},dz={key:0,class:"bg-gray-50 rounded-lg p-4"},pz={class:"text-sm font-medium text-gray-900 mb-3 flex items-center"},gz={class:"bg-red-50 border border-red-200 rounded p-3"},mz=["innerHTML"],yz={__name:"LogDetailModal",props:{show:{type:Boolean,default:!1},logItem:{type:Object,default:{}}},emits:["close"],setup(e){return(t,n)=>{var r,i,o,s,a,l,u;return F(),Te(Y0,{to:"body"},[e.show?(F(),K("div",{key:0,class:"fixed inset-0 z-50 overflow-y-auto",onClick:n[2]||(n[2]=c=>t.$emit("close"))},[n[12]||(n[12]=k("div",{class:"fixed inset-0 bg-black bg-opacity-50 transition-opacity"},null,-1)),k("div",KM,[k("div",{class:"relative bg-white rounded-lg shadow-xl max-w-7xl w-full max-h-[90vh] overflow-hidden",onClick:n[1]||(n[1]=Im(()=>{},["stop"]))},[k("div",JM,[k("div",QM,[k("div",{class:Re(["w-8 h-8 rounded-lg flex items-center justify-center",{"bg-red-100":((r=e.logItem)==null?void 0:r.level)==="ERROR","bg-yellow-100":((i=e.logItem)==null?void 0:i.level)==="WARN","bg-blue-100":((o=e.logItem)==null?void 0:o.level)==="INFO","bg-gray-100":!["ERROR","WARN","INFO"].includes((s=e.logItem)==null?void 0:s.level)}])},[((a=e.logItem)==null?void 0:a.level)==="ERROR"?(F(),Te(ee(ap),{key:0,class:"w-4 h-4 text-red-600"})):((l=e.logItem)==null?void 0:l.level)==="WARN"?(F(),Te(ee(c2),{key:1,class:"w-4 h-4 text-yellow-600"})):((u=e.logItem)==null?void 0:u.level)==="INFO"?(F(),Te(ee(up),{key:2,class:"w-4 h-4 text-blue-600"})):(F(),Te(ee(z6),{key:3,class:"w-4 h-4 text-gray-600"}))],2),k("div",null,[n[3]||(n[3]=k("h3",{class:"text-lg font-semibold text-gray-900"},"Dettagli Log",-1)),e.logItem?(F(),K("p",ez,Se(e.logItem.level)+" • "+Se(ee(Vt)(e.logItem.entryDate).format("DD/MM/YYYY HH:mm:ss")),1)):ze("",!0)])])]),k("div",tz,[e.logItem?(F(),K("div",nz,[k("div",rz,[k("h4",iz,[h(ee(f2),{class:"w-4 h-4 mr-2 text-gray-600"}),n[4]||(n[4]=lt(" Informazioni Generali ",-1))]),k("div",sz,[k("div",null,[n[5]||(n[5]=k("label",{class:"block text-xs font-medium text-gray-600 mb-1"},"ID Log",-1)),k("p",oz,Se(e.logItem.id),1)]),k("div",null,[n[6]||(n[6]=k("label",{class:"block text-xs font-medium text-gray-600 mb-1"},"Data e Ora",-1)),k("p",az,Se(ee(Vt)(e.logItem.entryDate).format("DD/MM/YYYY HH:mm:ss.SSS")),1)]),k("div",null,[n[7]||(n[7]=k("label",{class:"block text-xs font-medium text-gray-600 mb-1"},"Livello",-1)),k("span",{class:Re(["inline-flex items-center px-2 py-1 rounded text-sm font-medium",{"bg-red-100 text-red-800":e.logItem.level==="ERROR","bg-yellow-100 text-yellow-800":e.logItem.level==="WARN","bg-blue-100 text-blue-800":e.logItem.level==="INFO","bg-gray-100 text-gray-800":!["ERROR","WARN","INFO"].includes(e.logItem.level)}])},Se(e.logItem.level),3)]),k("div",null,[n[8]||(n[8]=k("label",{class:"block text-xs font-medium text-gray-600 mb-1"},"Logger",-1)),k("p",lz,Se(e.logItem.logger),1)])])]),k("div",uz,[k("h4",cz,[h(ee(up),{class:"w-4 h-4 mr-2 text-gray-600"}),n[9]||(n[9]=lt(" Messaggio ",-1))]),k("div",hz,[k("p",fz,Se(e.logItem.message),1)])]),e.logItem.exception?(F(),K("div",dz,[k("h4",pz,[h(ee(ap),{class:"w-4 h-4 mr-2 text-red-600"}),n[10]||(n[10]=lt(" Stack Trace ",-1))]),k("div",gz,[k("pre",{class:"text-xs font-mono text-red-900 whitespace-pre-wrap overflow-x-auto leading-relaxed",innerHTML:e.logItem.exception.replaceAll(/^\tat it\.integry.*$/gm,'$&')},null,8,mz)])])):ze("",!0)])):ze("",!0)]),k("button",{onClick:n[0]||(n[0]=c=>t.$emit("close")),class:"absolute top-4 right-4 text-gray-400 hover:text-gray-600 transition-colors"},n[11]||(n[11]=[k("svg",{class:"w-6 h-6",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24"},[k("path",{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M6 18L18 6M6 6l12 12"})],-1)]))])])])):ze("",!0)])}}},vz={key:0,class:"bg-white rounded-xl border border-red-200 p-8 text-center mx-6 my-6"},bz={class:"w-16 h-16 bg-red-100 rounded-full flex items-center justify-center mx-auto mb-4"},wz={key:0,class:"text-red-700"},xz={key:1,class:"bg-white rounded-xl border border-blue-200 p-8 text-center mx-6 my-6"},_z={class:"w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mx-auto mb-4"},Oz={class:"text-blue-700"},Sz={key:2,class:"grid grid-cols-1 lg:grid-cols-2 gap-6 px-6 pt-6",style:{height:"40rem"}},kz={class:"modern-card"},Tz={class:"card-header"},Cz={class:"flex items-center justify-between"},Mz={class:"flex items-center space-x-3"},zz={key:0,class:"flex items-center"},Nz={class:"w-8 h-8 bg-red-100 rounded-lg flex items-center justify-center"},Ez={key:0,class:"mt-2 flex items-center text-xs",style:{color:"var(--surface-500)"}},Az={class:"card-body"},Iz={class:"grid grid-cols-3 gap-4"},Pz={class:"text-center"},jz={class:"text-2xl font-bold",style:{color:"var(--surface-900)"}},Dz={class:"text-xs flex items-center justify-center mt-1",style:{color:"var(--surface-500)"}},$z={class:"text-center"},Lz={class:"text-xs flex items-center justify-center mt-1",style:{color:"var(--surface-500)"}},Rz={class:"text-center"},Bz={class:"flex items-center justify-center space-x-1"},Xz={key:0,class:"flex items-center text-red-600"},Fz={class:"text-lg font-bold"},Vz={key:1,class:"flex items-center text-green-600"},Hz={class:"text-lg font-bold"},Wz={key:2,class:"flex items-center text-gray-600"},Uz={key:0,class:"mt-4 p-3 bg-red-50 rounded-lg border border-red-100"},Yz={class:"flex items-center justify-between text-sm"},Gz={class:"text-red-900"},qz={class:"font-bold"},Zz={class:"text-red-600 ml-2"},Kz={class:"p-6"},Jz={class:"relative"},Qz={key:0,class:"absolute inset-0 bg-opacity-75 flex items-center justify-center z-10 rounded",style:{"background-color":"var(--surface-0)"}},eN={class:"flex flex-col items-center"},tN={class:"modern-card flex flex-col"},nN={class:"card-header"},rN={class:"flex items-center justify-between"},iN={class:"w-8 h-8 bg-blue-100 rounded-lg flex items-center justify-center"},sN={class:"card-body h-full"},oN={class:"space-y-3"},aN={key:0,class:"flex items-center justify-center h-full"},lN={class:"text-center"},uN=["onClick"],cN={class:"flex items-center justify-between mb-1"},hN={class:"flex items-center space-x-2"},fN={class:"text-xs text-gray-600 font-mono"},dN={class:"text-xs text-gray-600 font-medium"},pN={class:"flex items-center space-x-1"},gN={class:"text-gray-700 text-xs font-mono break-words leading-relaxed pl-1"},mN={class:"pt-3 border-t border-gray-100 mt-3"},yN={__name:"Home",setup(e){const t=Bi(),n=fe(()=>t.getters["main/getSystemOkStatusCode"]),r=fe(()=>t.getters["main/getSystemOkStatus"]),i=fe(()=>t.getters["main/getSystemOkStatusErrorMessage"]),o=fe(()=>!t.getters["main/isSystemOkInError"]&&u.readyToStartPolling),s=fe(()=>t.getters["main/getLogs"]),a=fe(()=>t.getters["main/getLogPollTime"]),l=fe(()=>s.value.length>0?s.value[0].entryDate:void 0),u=Bt({readyToStartPolling:!1,logsPolling:!1,stats:{min:50,max:0,delay:10},selectedLog:null,showLogModal:!1,errorStats:{loading:!0,lastUpdate:null,totalErrors:0,todayErrors:0,trend:"stable",trendPercentage:0,peakDay:null,peakCount:0}}),c=rt({}),f={responsive:!0,maintainAspectRatio:!1,interaction:{intersect:!1,mode:"index"},plugins:{legend:{display:!1},tooltip:{backgroundColor:"rgba(0, 0, 0, 0.8)",titleColor:"#fff",bodyColor:"#fff",borderColor:"rgba(255, 255, 255, 0.1)",borderWidth:1,cornerRadius:8,displayColors:!1,callbacks:{title:function(_){return Vt(_[0].parsed.x).format("DD/MM/YYYY")},label:function(_){return`Errori: ${_.parsed.y}`},afterLabel:function(_){const x=Vt(_.parsed.x),S=x.isSame(Vt(),"day"),z=x.isSame(Vt().subtract(1,"day"),"day");return S?"Oggi":z?"Ieri":x.format("dddd")}}}},scales:{x:{type:"time",time:{unit:"day",displayFormats:{day:"DD/MM"}},grid:{display:!1},ticks:{maxTicksLimit:7,color:"#6B7280"}},y:{beginAtZero:!0,grid:{color:"rgba(107, 114, 128, 0.1)"},ticks:{color:"#6B7280",precision:0}}},elements:{point:{radius:4,hoverRadius:6,backgroundColor:"#EF4444",borderColor:"#FFFFFF",borderWidth:2},line:{tension:.3}}};async function d(){try{u.errorStats.loading=!0;const _=await ct.get("logs/readErrorStats");if(_.data.esito===-1)throw Error(_.data.errorMessage);const x=_.data.dto||[];p(x),c.value={datasets:[{type:"line",label:"Errori giornalieri",data:x,backgroundColor:g(),borderColor:"#EF4444",borderWidth:2,fill:!0,pointBackgroundColor:x.map(S=>{const z=Vt(S.x).isSame(Vt(),"day");return S.y===u.errorStats.peakCount?"#DC2626":z?"#F59E0B":"#EF4444"}),pointBorderColor:"#FFFFFF",pointBorderWidth:2,pointRadius:x.map(S=>S.y===u.errorStats.peakCount?6:4),pointHoverRadius:8,tension:.3}]},u.errorStats.lastUpdate=new Date}catch(_){console.error("Errore nel caricamento delle statistiche errori:",_)}finally{u.errorStats.loading=!1}}function p(_){if(!_||_.length===0){u.errorStats={...u.errorStats,totalErrors:0,todayErrors:0,trend:"stable",trendPercentage:0,peakDay:null,peakCount:0};return}const x=_.reduce((A,U)=>A+U.y,0),S=Vt(),z=_.find(A=>Vt(A.x).isSame(S,"day")),E=z?z.y:0,P=_.reduce((A,U)=>U.y>A.y?U:A,{y:0,x:null}),M=_.slice(-3),D=_.slice(-6,-3),Z=M.reduce((A,U)=>A+U.y,0)/Math.max(M.length,1),j=D.reduce((A,U)=>A+U.y,0)/Math.max(D.length,1);let Y="stable",V=0;if(j>0){const A=(Z-j)/j*100;V=Math.abs(A),A>10?Y="up":A<-10?Y="down":Y="stable"}u.errorStats={...u.errorStats,totalErrors:x,todayErrors:E,trend:Y,trendPercentage:Math.round(V),peakDay:P.x,peakCount:P.y}}function g(){const S=document.createElement("canvas").getContext("2d").createLinearGradient(0,0,0,400);return S.addColorStop(0,"rgba(239, 68, 68, 0.3)"),S.addColorStop(.5,"rgba(239, 68, 68, 0.1)"),S.addColorStop(1,"rgba(239, 68, 68, 0.05)"),S}let m;async function y(){if(await t.dispatch("main/fetchLogs",{action:ye.ADD_LOGS,data:{filters:{entryDate:{operator:"and",constraints:[{value:l.value,matchMode:"dateAfter"}]}}}}),o.value&&u.logsPolling){await d();const _=a.value*5,x=15*1e3;m=d7(_{o.value?u.logsPolling||(y(),u.logsPolling=!0):(u.logsPolling=!1,m&&(m.cancel(),m=void 0))}),ti(()=>{u.readyToStartPolling=!0}),wl(()=>{u.readyToStartPolling=!1}),document.addEventListener("visibilitychange",()=>{u.readyToStartPolling=!document.hidden},!1),rt({});function v(_){u.selectedLog=_,u.showLogModal=!0}function w(){u.showLogModal=!1,u.selectedLog=null}return(_,x)=>{var P;const S=v2,z=y2,E=wt("router-link");return F(),K(Xe,null,[k("div",null,[n.value>=500?(F(),K("div",vz,[k("div",bz,[h(ee(u2),{class:"w-8 h-8 text-red-600"})]),x[0]||(x[0]=k("h2",{class:"text-xl font-semibold text-red-900 mb-2"},"Errore di Sistema",-1)),i.value?(F(),K("p",wz,Se(i.value),1)):ze("",!0)])):!((P=r.value)!=null&&P.response)||n.value>400&&n.value<500?(F(),K("div",xz,[k("div",_z,[h(S,{icon:"oval",color:"blue",size:"35"})]),x[1]||(x[1]=k("h2",{class:"text-xl font-semibold text-blue-900 mb-2"},"Caricamento Sistema",-1)),k("p",Oz,Se(i.value),1)])):(F(),K("div",Sz,[k("div",kz,[k("div",Tz,[k("div",Cz,[k("div",Mz,[x[2]||(x[2]=k("h3",{class:"text-lg font-semibold"},"Report Errori (14 giorni)",-1)),u.errorStats.loading?(F(),K("div",zz,[h(ee(Sc),{class:"w-4 h-4 animate-spin",style:{color:"var(--surface-400)"}})])):ze("",!0)]),k("div",Nz,[h(ee(c2),{class:"w-5 h-5 text-red-600"})])]),u.errorStats.lastUpdate?(F(),K("div",Ez,[h(ee(f2),{class:"w-3 h-3 mr-1"}),lt(" Ultimo aggiornamento: "+Se(ee(Vt)(u.errorStats.lastUpdate).format("HH:mm:ss")),1)])):ze("",!0)]),k("div",Az,[k("div",Iz,[k("div",Pz,[k("div",jz,Se(u.errorStats.totalErrors),1),k("div",Dz,[h(ee(lp),{class:"w-3 h-3 mr-1"}),x[3]||(x[3]=lt(" Totali ",-1))])]),k("div",$z,[k("div",{class:Re(["text-2xl font-bold",{"text-red-600":u.errorStats.todayErrors>0,"text-green-600":u.errorStats.todayErrors===0}])},Se(u.errorStats.todayErrors),3),k("div",Lz,[h(ee(M6),{class:"w-3 h-3 mr-1"}),x[4]||(x[4]=lt(" Oggi ",-1))])]),k("div",Rz,[k("div",Bz,[u.errorStats.trend==="up"?(F(),K("div",Xz,[h(ee(C6),{class:"w-4 h-4 mr-1"}),k("span",Fz,"+"+Se(u.errorStats.trendPercentage)+"%",1)])):u.errorStats.trend==="down"?(F(),K("div",Vz,[h(ee(T6),{class:"w-4 h-4 mr-1"}),k("span",Hz,"-"+Se(u.errorStats.trendPercentage)+"%",1)])):(F(),K("div",Wz,[h(ee(lp),{class:"w-4 h-4 mr-1"}),x[5]||(x[5]=k("span",{class:"text-lg font-bold"},"Stabile",-1))]))]),x[6]||(x[6]=k("div",{class:"text-xs mt-1",style:{color:"var(--surface-500)"}},"Trend 3gg",-1))])]),u.errorStats.peakDay&&u.errorStats.peakCount>0?(F(),K("div",Uz,[k("div",Yz,[x[7]||(x[7]=k("span",{class:"text-red-700 font-medium"},"Picco massimo:",-1)),k("div",Gz,[k("span",qz,Se(u.errorStats.peakCount)+" errori",1),k("span",Zz,Se(ee(Vt)(u.errorStats.peakDay).format("DD/MM")),1)])])])):ze("",!0)]),k("div",Kz,[k("div",Jz,[u.errorStats.loading?(F(),K("div",Qz,[k("div",eN,[h(ee(Sc),{class:"w-6 h-6 text-red-600 animate-spin"}),x[8]||(x[8]=k("p",{class:"text-sm mt-2",style:{color:"var(--surface-500)"}},"Caricamento dati...",-1))])])):ze("",!0),h(z,{type:"line",data:c.value,options:f,class:"h-64"},null,8,["data"])]),x[9]||(x[9]=Ln('
Errori giornalieri
Oggi
Picco massimo
',1))])]),k("div",tN,[k("div",nN,[k("div",rN,[x[10]||(x[10]=k("h3",{class:"text-lg font-semibold"},"Log Sistema",-1)),k("div",iN,[h(ee(P6),{class:"w-5 h-5 text-blue-600"})])])]),k("div",sN,[k("div",oN,[s.value.length===0?(F(),K("div",aN,[k("div",lN,[h(S,{icon:"oval",color:"blue",size:"40"}),x[11]||(x[11]=k("p",{class:"mt-2"},"Caricamento logs...",-1))])])):(F(),K(Xe,{key:1},[(F(!0),K(Xe,null,Gr(s.value,M=>(F(),K("div",{key:M.id,onClick:D=>v(M),class:Re(["bg-gray-50 rounded-md p-2 text-xs border-l-3 hover:bg-gray-100 transition-colors cursor-pointer",{"border-l-red-500 bg-red-100":M.level==="ERROR","border-l-yellow-500 bg-yellow-100":M.level==="WARN","border-l-blue-500 bg-blue-100":M.level==="INFO","border-l-gray-300":!["ERROR","WARN","INFO"].includes(M.level)}])},[k("div",cN,[k("div",hN,[k("span",fN,Se(ee(Vt)(M.entryDate).format("HH:mm:ss")),1),x[12]||(x[12]=k("span",{class:"text-xs text-gray-500"},"•",-1)),k("span",dN,Se(M.logger),1)]),k("div",pN,[k("div",{class:Re(["w-2 h-2 rounded-full",{"bg-red-500":M.level==="ERROR","bg-yellow-500":M.level==="WARN","bg-blue-500":M.level==="INFO","bg-gray-400":!["ERROR","WARN","INFO"].includes(M.level)}])},null,2),k("span",{class:Re(["text-xs font-medium",{"text-red-700":M.level==="ERROR","text-yellow-700":M.level==="WARN","text-blue-700":M.level==="INFO","text-gray-600":!["ERROR","WARN","INFO"].includes(M.level)}])},Se(M.level),3)])]),k("p",gN,Se(M.message),1)],10,uN))),128)),k("div",mN,[h(E,{to:{name:"logs"},class:"inline-flex items-center px-3 py-2 text-xs font-medium text-blue-600 bg-blue-50 rounded-md hover:bg-blue-100 transition-colors"},{default:Ue(()=>[h(ee(E6),{class:"w-3 h-3 mr-1 text-blue-600"}),x[13]||(x[13]=lt(" Visualizza tutti i log ",-1))]),_:1,__:[13]})])],64))])])])]))]),h(yz,{show:u.showLogModal,"log-item":u.selectedLog,onClose:w},null,8,["show","log-item"])],64)}}},vN={},bN={class:"bg-white shadow"};function wN(e,t){return F(),K("header",bN,t[0]||(t[0]=[k("div",{class:"max-w-7xl mx-auto py-6 px-4 sm:px-6 lg:px-8"},[k("h1",{class:"text-3xl font-bold leading-tight text-gray-900"},"Not Found")],-1)]))}const xN=Xh(vN,[["render",wN]]),_N=[{path:"/",name:"dashboard",meta:{title:"Dashboard Sistema",subtitle:"Monitoraggio in tempo reale dello stato dell'applicazione"},component:yN},{path:"/scheduler",name:"scheduler.index",meta:{title:"Pianificate",subtitle:"Visualizza e gestisci le attività pianificate del sistema",mustAuth:!0},component:()=>ar(()=>import("./Index-B6nSF9i_.js"),[],import.meta.url),children:[{path:":type",name:"scheduler.show",component:()=>ar(()=>import("./Show-fp2Rf64Q.js"),__vite__mapDeps([0,1]),import.meta.url)},{path:":type/create",name:"scheduler.create",component:()=>ar(()=>import("./Create-Df0N-lQr.js"),__vite__mapDeps([2,3,4]),import.meta.url)},{path:":type/:id/edit",name:"scheduler.edit",component:()=>ar(()=>import("./Edit-F4sVz2t7.js"),__vite__mapDeps([5,3,4]),import.meta.url)},{path:":type/:id/duplicate",name:"scheduler.duplicate",component:()=>ar(()=>import("./Edit-F4sVz2t7.js"),__vite__mapDeps([5,3,4]),import.meta.url)}]},{path:"/logs",name:"logs",meta:{title:"Logs",subtitle:"Monitora i log del sistema"},component:()=>ar(()=>import("./Logs-BXHYXSnL.js"),__vite__mapDeps([6,1,7]),import.meta.url)},{path:"/migrations",name:"migrations",meta:{title:"Migrazioni",subtitle:"Monitora e gestisci le migrazioni del database"},component:()=>ar(()=>import("./Migrations-BDJEuV9K.js"),__vite__mapDeps([8,1,9]),import.meta.url)},{path:"/:path(.*)",component:xN}],et={SET_INITIALIZED:"SET_INITIALIZED",SET_ERROR:"SET_ERROR",SET_AUTOMATION_CATEGORIES:"SET_AUTOMATION_CATEGORIES",SET_CURRENT_CATEGORY:"SET_CURRENT_CATEGORY",SET_AUTOMATIONS:"SET_AUTOMATIONS",SET_CURRENT_AUTOMATION:"SET_CURRENT_AUTOMATION"},ON=()=>({initialized:!1,error:void 0,automation_categories:[],current_category:void 0,automations:[],current_automation:void 0}),SN={isInitialized:e=>e.initialized,getError:e=>e.error,getAutomationCategories:e=>e.automation_categories,getAutomations:e=>e.automations,getCurrentCategory:e=>{if(e.current_category){const t=e.automation_categories[e.current_category];return t&&t.forEach(n=>{switch(n.type){case"boolean":n.as="input",n.inputType="checkbox",n.classes="form-check-switch";break;case"Enum":n.as="select",delete n.inputType,n.options=n.defaultValues;break;default:n.as="input",n.inputType="text";break}switch(n.classes??(n.classes="form-control w-full"),n.name){case"id":n.disabled=!0;break;case"profileDb":n.as="select",delete n.inputType,n.options=n.defaultValues;break;case"cronTrigger":n.autocomplete="off",n.classes="form-control w-full",n.info={class:"text-md",message:p7},n.group=()=>window.open("http://www.cronmaker.com/","_blank");break}n.required&&(n.rules="required"),n.password&&(n.inputType="password"),n.name==="cronTrigger"&&(n.rules&&n.rules.length>0?n.rules+="|cron":n.rules="cron")}),t}return[]},getCurrentCategoryKey:e=>e.current_category,getCurrentAutomation:e=>e.current_automation?e.automations.find(t=>t.id===e.current_automation):[]},kN={[et.SET_INITIALIZED](e,t){e.initialized=t},[et.SET_ERROR](e,t){e.error=t},[et.SET_AUTOMATION_CATEGORIES](e,t){e.automation_categories=t},[et.SET_CURRENT_CATEGORY](e,t){e.current_category=t},[et.SET_AUTOMATIONS](e,t){e.automations=t},[et.SET_CURRENT_AUTOMATION](e,t){e.current_automation=t}},TN={async initStore({commit:e,dispatch:t,getters:n}){n.isInitialized||(await t("fetchAutomationCategories"),e(et.SET_INITIALIZED,!0))},async fetchAutomationCategories({commit:e}){e(`main/${ye.SET_LOADING}`,!0,{root:!0}),e(et.SET_ERROR,void 0);try{const t=await ct.get("automation/category");if(t.data.esito===-1)throw Error(t.data.errorMessage);e(et.SET_AUTOMATION_CATEGORIES,t.data.dto)}catch(t){e(et.SET_ERROR,t),console.error(t)}finally{e(`main/${ye.SET_LOADING}`,!1,{root:!0})}},setCurrentCategory({commit:e},t){e(et.SET_CURRENT_CATEGORY,t)},async fetchAutomations({commit:e},t=""){e(`main/${ye.SET_LOADING}`,!0,{root:!0}),e(et.SET_ERROR,void 0);try{const n=await ct.get("automation",{params:{categoryFilter:t},headers:{include_nulls:!0}});if(n.data.esito===-1)throw Error(n.data.errorMessage);t?e(et.SET_AUTOMATIONS,n.data.dto[t]):e(et.SET_AUTOMATIONS,n.data.dto)}catch(n){e(et.SET_ERROR,n),console.error(n)}finally{e(`main/${ye.SET_LOADING}`,!1,{root:!0})}},async saveAutomation({commit:e},t){e(`main/${ye.SET_LOADING}`,!0,{root:!0}),e(et.SET_ERROR,void 0);try{let n;if(t.active?t.active=!0:t.active=!1,t.id?n=await ct.put("automation",t):n=await ct.post("automation",t),n.data.esito===-1)throw Error(n.data.errorMessage);return n.data}catch(n){e(et.SET_ERROR,n),console.error(n)}finally{e(`main/${ye.SET_LOADING}`,!1,{root:!0})}},async deleteAutomation({commit:e},t){e(`main/${ye.SET_LOADING}`,!0,{root:!0}),e(et.SET_ERROR,void 0);try{const n=await ct.delete(`automation/${t}`);if(n.data.esito===-1)throw Error(n.data.errorMessage);return n.data}catch(n){e(et.SET_ERROR,n),console.error(n)}finally{e(`main/${ye.SET_LOADING}`,!1,{root:!0})}},setCurrentAutomation({commit:e},t){e(et.SET_CURRENT_AUTOMATION,t)},async runAutomation({commit:e},t){e(`main/${ye.SET_LOADING}`,!0,{root:!0}),e(et.SET_ERROR,void 0);try{const n=await ct.get(`automation/run/${t}`);if(n.data.esito===-1)throw Error(n.data.errorMessage);return n.data}catch(n){e(et.SET_ERROR,n),console.error(n)}finally{e(`main/${ye.SET_LOADING}`,!1,{root:!0})}}},CN={namespaced:!0,state:ON,getters:SN,actions:TN,mutations:kN},df=rO({modules:{main:ZM,scheduler:CN}});df.dispatch("main/checkSystemOk");var MN={name:"ActivityIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-activity"},Object.assign({},i)),[h("polyline",{points:"22 12 18 12 15 21 9 3 6 12 2 12"})])}}},zN={name:"AirplayIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-airplay"},Object.assign({},i)),[h("path",{d:"M5 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-1"}),h("polygon",{points:"12 15 17 21 7 21 12 15"})])}}},NN={name:"AlertCircleIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-alert-circle"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("line",{x1:"12",y1:"8",x2:"12",y2:"12"}),h("line",{x1:"12",y1:"16",x2:"12.01",y2:"16"})])}}},EN={name:"AlertOctagonIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-alert-octagon"},Object.assign({},i)),[h("polygon",{points:"7.86 2 16.14 2 22 7.86 22 16.14 16.14 22 7.86 22 2 16.14 2 7.86 7.86 2"}),h("line",{x1:"12",y1:"8",x2:"12",y2:"12"}),h("line",{x1:"12",y1:"16",x2:"12.01",y2:"16"})])}}},AN={name:"AlertTriangleIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-alert-triangle"},Object.assign({},i)),[h("path",{d:"M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z"}),h("line",{x1:"12",y1:"9",x2:"12",y2:"13"}),h("line",{x1:"12",y1:"17",x2:"12.01",y2:"17"})])}}},IN={name:"AlignCenterIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-align-center"},Object.assign({},i)),[h("line",{x1:"18",y1:"10",x2:"6",y2:"10"}),h("line",{x1:"21",y1:"6",x2:"3",y2:"6"}),h("line",{x1:"21",y1:"14",x2:"3",y2:"14"}),h("line",{x1:"18",y1:"18",x2:"6",y2:"18"})])}}},PN={name:"AlignJustifyIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-align-justify"},Object.assign({},i)),[h("line",{x1:"21",y1:"10",x2:"3",y2:"10"}),h("line",{x1:"21",y1:"6",x2:"3",y2:"6"}),h("line",{x1:"21",y1:"14",x2:"3",y2:"14"}),h("line",{x1:"21",y1:"18",x2:"3",y2:"18"})])}}},jN={name:"AlignLeftIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-align-left"},Object.assign({},i)),[h("line",{x1:"17",y1:"10",x2:"3",y2:"10"}),h("line",{x1:"21",y1:"6",x2:"3",y2:"6"}),h("line",{x1:"21",y1:"14",x2:"3",y2:"14"}),h("line",{x1:"17",y1:"18",x2:"3",y2:"18"})])}}},DN={name:"AlignRightIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-align-right"},Object.assign({},i)),[h("line",{x1:"21",y1:"10",x2:"7",y2:"10"}),h("line",{x1:"21",y1:"6",x2:"3",y2:"6"}),h("line",{x1:"21",y1:"14",x2:"3",y2:"14"}),h("line",{x1:"21",y1:"18",x2:"7",y2:"18"})])}}},$N={name:"AnchorIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-anchor"},Object.assign({},i)),[h("circle",{cx:"12",cy:"5",r:"3"}),h("line",{x1:"12",y1:"22",x2:"12",y2:"8"}),h("path",{d:"M5 12H2a10 10 0 0 0 20 0h-3"})])}}},LN={name:"ApertureIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-aperture"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("line",{x1:"14.31",y1:"8",x2:"20.05",y2:"17.94"}),h("line",{x1:"9.69",y1:"8",x2:"21.17",y2:"8"}),h("line",{x1:"7.38",y1:"12",x2:"13.12",y2:"2.06"}),h("line",{x1:"9.69",y1:"16",x2:"3.95",y2:"6.06"}),h("line",{x1:"14.31",y1:"16",x2:"2.83",y2:"16"}),h("line",{x1:"16.62",y1:"12",x2:"10.88",y2:"21.94"})])}}},RN={name:"ArchiveIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-archive"},Object.assign({},i)),[h("polyline",{points:"21 8 21 21 3 21 3 8"}),h("rect",{x:"1",y:"3",width:"22",height:"5"}),h("line",{x1:"10",y1:"12",x2:"14",y2:"12"})])}}},BN={name:"ArrowDownCircleIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-arrow-down-circle"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("polyline",{points:"8 12 12 16 16 12"}),h("line",{x1:"12",y1:"8",x2:"12",y2:"16"})])}}},XN={name:"ArrowDownLeftIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-arrow-down-left"},Object.assign({},i)),[h("line",{x1:"17",y1:"7",x2:"7",y2:"17"}),h("polyline",{points:"17 17 7 17 7 7"})])}}},FN={name:"ArrowDownRightIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-arrow-down-right"},Object.assign({},i)),[h("line",{x1:"7",y1:"7",x2:"17",y2:"17"}),h("polyline",{points:"17 7 17 17 7 17"})])}}},VN={name:"ArrowDownIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-arrow-down"},Object.assign({},i)),[h("line",{x1:"12",y1:"5",x2:"12",y2:"19"}),h("polyline",{points:"19 12 12 19 5 12"})])}}},HN={name:"ArrowLeftCircleIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-arrow-left-circle"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("polyline",{points:"12 8 8 12 12 16"}),h("line",{x1:"16",y1:"12",x2:"8",y2:"12"})])}}},WN={name:"ArrowLeftIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-arrow-left"},Object.assign({},i)),[h("line",{x1:"19",y1:"12",x2:"5",y2:"12"}),h("polyline",{points:"12 19 5 12 12 5"})])}}},UN={name:"ArrowRightCircleIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-arrow-right-circle"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("polyline",{points:"12 16 16 12 12 8"}),h("line",{x1:"8",y1:"12",x2:"16",y2:"12"})])}}},YN={name:"ArrowRightIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-arrow-right"},Object.assign({},i)),[h("line",{x1:"5",y1:"12",x2:"19",y2:"12"}),h("polyline",{points:"12 5 19 12 12 19"})])}}},GN={name:"ArrowUpCircleIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-arrow-up-circle"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("polyline",{points:"16 12 12 8 8 12"}),h("line",{x1:"12",y1:"16",x2:"12",y2:"8"})])}}},qN={name:"ArrowUpLeftIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-arrow-up-left"},Object.assign({},i)),[h("line",{x1:"17",y1:"17",x2:"7",y2:"7"}),h("polyline",{points:"7 17 7 7 17 7"})])}}},ZN={name:"ArrowUpRightIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-arrow-up-right"},Object.assign({},i)),[h("line",{x1:"7",y1:"17",x2:"17",y2:"7"}),h("polyline",{points:"7 7 17 7 17 17"})])}}},KN={name:"ArrowUpIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-arrow-up"},Object.assign({},i)),[h("line",{x1:"12",y1:"19",x2:"12",y2:"5"}),h("polyline",{points:"5 12 12 5 19 12"})])}}},JN={name:"AtSignIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-at-sign"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"4"}),h("path",{d:"M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-3.92 7.94"})])}}},QN={name:"AwardIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-award"},Object.assign({},i)),[h("circle",{cx:"12",cy:"8",r:"7"}),h("polyline",{points:"8.21 13.89 7 23 12 20 17 23 15.79 13.88"})])}}},eE={name:"BarChart2Icon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-bar-chart-2"},Object.assign({},i)),[h("line",{x1:"18",y1:"20",x2:"18",y2:"10"}),h("line",{x1:"12",y1:"20",x2:"12",y2:"4"}),h("line",{x1:"6",y1:"20",x2:"6",y2:"14"})])}}},tE={name:"BarChartIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-bar-chart"},Object.assign({},i)),[h("line",{x1:"12",y1:"20",x2:"12",y2:"10"}),h("line",{x1:"18",y1:"20",x2:"18",y2:"4"}),h("line",{x1:"6",y1:"20",x2:"6",y2:"16"})])}}},nE={name:"BatteryChargingIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-battery-charging"},Object.assign({},i)),[h("path",{d:"M5 18H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3.19M15 6h2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-3.19"}),h("line",{x1:"23",y1:"13",x2:"23",y2:"11"}),h("polyline",{points:"11 6 7 12 13 12 9 18"})])}}},rE={name:"BatteryIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-battery"},Object.assign({},i)),[h("rect",{x:"1",y:"6",width:"18",height:"12",rx:"2",ry:"2"}),h("line",{x1:"23",y1:"13",x2:"23",y2:"11"})])}}},iE={name:"BellOffIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-bell-off"},Object.assign({},i)),[h("path",{d:"M13.73 21a2 2 0 0 1-3.46 0"}),h("path",{d:"M18.63 13A17.89 17.89 0 0 1 18 8"}),h("path",{d:"M6.26 6.26A5.86 5.86 0 0 0 6 8c0 7-3 9-3 9h14"}),h("path",{d:"M18 8a6 6 0 0 0-9.33-5"}),h("line",{x1:"1",y1:"1",x2:"23",y2:"23"})])}}},sE={name:"BellIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-bell"},Object.assign({},i)),[h("path",{d:"M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9"}),h("path",{d:"M13.73 21a2 2 0 0 1-3.46 0"})])}}},oE={name:"BluetoothIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-bluetooth"},Object.assign({},i)),[h("polyline",{points:"6.5 6.5 17.5 17.5 12 23 12 1 17.5 6.5 6.5 17.5"})])}}},aE={name:"BoldIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-bold"},Object.assign({},i)),[h("path",{d:"M6 4h8a4 4 0 0 1 4 4 4 4 0 0 1-4 4H6z"}),h("path",{d:"M6 12h9a4 4 0 0 1 4 4 4 4 0 0 1-4 4H6z"})])}}},lE={name:"BookOpenIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-book-open"},Object.assign({},i)),[h("path",{d:"M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z"}),h("path",{d:"M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z"})])}}},uE={name:"BookIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-book"},Object.assign({},i)),[h("path",{d:"M4 19.5A2.5 2.5 0 0 1 6.5 17H20"}),h("path",{d:"M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z"})])}}},cE={name:"BookmarkIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-bookmark"},Object.assign({},i)),[h("path",{d:"M19 21l-7-5-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z"})])}}},hE={name:"BoxIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-box"},Object.assign({},i)),[h("path",{d:"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"}),h("polyline",{points:"3.27 6.96 12 12.01 20.73 6.96"}),h("line",{x1:"12",y1:"22.08",x2:"12",y2:"12"})])}}},fE={name:"BriefcaseIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-briefcase"},Object.assign({},i)),[h("rect",{x:"2",y:"7",width:"20",height:"14",rx:"2",ry:"2"}),h("path",{d:"M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"})])}}},dE={name:"CalendarIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-calendar"},Object.assign({},i)),[h("rect",{x:"3",y:"4",width:"18",height:"18",rx:"2",ry:"2"}),h("line",{x1:"16",y1:"2",x2:"16",y2:"6"}),h("line",{x1:"8",y1:"2",x2:"8",y2:"6"}),h("line",{x1:"3",y1:"10",x2:"21",y2:"10"})])}}},pE={name:"CameraOffIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-camera-off"},Object.assign({},i)),[h("line",{x1:"1",y1:"1",x2:"23",y2:"23"}),h("path",{d:"M21 21H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3m3-3h6l2 3h4a2 2 0 0 1 2 2v9.34m-7.72-2.06a4 4 0 1 1-5.56-5.56"})])}}},gE={name:"CameraIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-camera"},Object.assign({},i)),[h("path",{d:"M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z"}),h("circle",{cx:"12",cy:"13",r:"4"})])}}},mE={name:"CastIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-cast"},Object.assign({},i)),[h("path",{d:"M2 16.1A5 5 0 0 1 5.9 20M2 12.05A9 9 0 0 1 9.95 20M2 8V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6"}),h("line",{x1:"2",y1:"20",x2:"2.01",y2:"20"})])}}},yE={name:"CheckCircleIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-check-circle"},Object.assign({},i)),[h("path",{d:"M22 11.08V12a10 10 0 1 1-5.93-9.14"}),h("polyline",{points:"22 4 12 14.01 9 11.01"})])}}},vE={name:"CheckSquareIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-check-square"},Object.assign({},i)),[h("polyline",{points:"9 11 12 14 22 4"}),h("path",{d:"M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11"})])}}},bE={name:"CheckIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-check"},Object.assign({},i)),[h("polyline",{points:"20 6 9 17 4 12"})])}}},wE={name:"ChevronDownIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-chevron-down"},Object.assign({},i)),[h("polyline",{points:"6 9 12 15 18 9"})])}}},xE={name:"ChevronLeftIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-chevron-left"},Object.assign({},i)),[h("polyline",{points:"15 18 9 12 15 6"})])}}},_E={name:"ChevronRightIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-chevron-right"},Object.assign({},i)),[h("polyline",{points:"9 18 15 12 9 6"})])}}},OE={name:"ChevronUpIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-chevron-up"},Object.assign({},i)),[h("polyline",{points:"18 15 12 9 6 15"})])}}},SE={name:"ChevronsDownIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-chevrons-down"},Object.assign({},i)),[h("polyline",{points:"7 13 12 18 17 13"}),h("polyline",{points:"7 6 12 11 17 6"})])}}},kE={name:"ChevronsLeftIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-chevrons-left"},Object.assign({},i)),[h("polyline",{points:"11 17 6 12 11 7"}),h("polyline",{points:"18 17 13 12 18 7"})])}}},TE={name:"ChevronsRightIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-chevrons-right"},Object.assign({},i)),[h("polyline",{points:"13 17 18 12 13 7"}),h("polyline",{points:"6 17 11 12 6 7"})])}}},CE={name:"ChevronsUpIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-chevrons-up"},Object.assign({},i)),[h("polyline",{points:"17 11 12 6 7 11"}),h("polyline",{points:"17 18 12 13 7 18"})])}}},ME={name:"ChromeIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-chrome"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("circle",{cx:"12",cy:"12",r:"4"}),h("line",{x1:"21.17",y1:"8",x2:"12",y2:"8"}),h("line",{x1:"3.95",y1:"6.06",x2:"8.54",y2:"14"}),h("line",{x1:"10.88",y1:"21.94",x2:"15.46",y2:"14"})])}}},zE={name:"CircleIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-circle"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"})])}}},NE={name:"ClipboardIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-clipboard"},Object.assign({},i)),[h("path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"}),h("rect",{x:"8",y:"2",width:"8",height:"4",rx:"1",ry:"1"})])}}},EE={name:"ClockIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-clock"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("polyline",{points:"12 6 12 12 16 14"})])}}},AE={name:"CloudDrizzleIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-cloud-drizzle"},Object.assign({},i)),[h("line",{x1:"8",y1:"19",x2:"8",y2:"21"}),h("line",{x1:"8",y1:"13",x2:"8",y2:"15"}),h("line",{x1:"16",y1:"19",x2:"16",y2:"21"}),h("line",{x1:"16",y1:"13",x2:"16",y2:"15"}),h("line",{x1:"12",y1:"21",x2:"12",y2:"23"}),h("line",{x1:"12",y1:"15",x2:"12",y2:"17"}),h("path",{d:"M20 16.58A5 5 0 0 0 18 7h-1.26A8 8 0 1 0 4 15.25"})])}}},IE={name:"CloudLightningIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-cloud-lightning"},Object.assign({},i)),[h("path",{d:"M19 16.9A5 5 0 0 0 18 7h-1.26a8 8 0 1 0-11.62 9"}),h("polyline",{points:"13 11 9 17 15 17 11 23"})])}}},PE={name:"CloudOffIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-cloud-off"},Object.assign({},i)),[h("path",{d:"M22.61 16.95A5 5 0 0 0 18 10h-1.26a8 8 0 0 0-7.05-6M5 5a8 8 0 0 0 4 15h9a5 5 0 0 0 1.7-.3"}),h("line",{x1:"1",y1:"1",x2:"23",y2:"23"})])}}},jE={name:"CloudRainIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-cloud-rain"},Object.assign({},i)),[h("line",{x1:"16",y1:"13",x2:"16",y2:"21"}),h("line",{x1:"8",y1:"13",x2:"8",y2:"21"}),h("line",{x1:"12",y1:"15",x2:"12",y2:"23"}),h("path",{d:"M20 16.58A5 5 0 0 0 18 7h-1.26A8 8 0 1 0 4 15.25"})])}}},DE={name:"CloudSnowIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-cloud-snow"},Object.assign({},i)),[h("path",{d:"M20 17.58A5 5 0 0 0 18 8h-1.26A8 8 0 1 0 4 16.25"}),h("line",{x1:"8",y1:"16",x2:"8.01",y2:"16"}),h("line",{x1:"8",y1:"20",x2:"8.01",y2:"20"}),h("line",{x1:"12",y1:"18",x2:"12.01",y2:"18"}),h("line",{x1:"12",y1:"22",x2:"12.01",y2:"22"}),h("line",{x1:"16",y1:"16",x2:"16.01",y2:"16"}),h("line",{x1:"16",y1:"20",x2:"16.01",y2:"20"})])}}},$E={name:"CloudIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-cloud"},Object.assign({},i)),[h("path",{d:"M18 10h-1.26A8 8 0 1 0 9 20h9a5 5 0 0 0 0-10z"})])}}},LE={name:"CodeIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-code"},Object.assign({},i)),[h("polyline",{points:"16 18 22 12 16 6"}),h("polyline",{points:"8 6 2 12 8 18"})])}}},RE={name:"CodepenIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-codepen"},Object.assign({},i)),[h("polygon",{points:"12 2 22 8.5 22 15.5 12 22 2 15.5 2 8.5 12 2"}),h("line",{x1:"12",y1:"22",x2:"12",y2:"15.5"}),h("polyline",{points:"22 8.5 12 15.5 2 8.5"}),h("polyline",{points:"2 15.5 12 8.5 22 15.5"}),h("line",{x1:"12",y1:"2",x2:"12",y2:"8.5"})])}}},BE={name:"CodesandboxIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-codesandbox"},Object.assign({},i)),[h("path",{d:"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"}),h("polyline",{points:"7.5 4.21 12 6.81 16.5 4.21"}),h("polyline",{points:"7.5 19.79 7.5 14.6 3 12"}),h("polyline",{points:"21 12 16.5 14.6 16.5 19.79"}),h("polyline",{points:"3.27 6.96 12 12.01 20.73 6.96"}),h("line",{x1:"12",y1:"22.08",x2:"12",y2:"12"})])}}},XE={name:"CoffeeIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-coffee"},Object.assign({},i)),[h("path",{d:"M18 8h1a4 4 0 0 1 0 8h-1"}),h("path",{d:"M2 8h16v9a4 4 0 0 1-4 4H6a4 4 0 0 1-4-4V8z"}),h("line",{x1:"6",y1:"1",x2:"6",y2:"4"}),h("line",{x1:"10",y1:"1",x2:"10",y2:"4"}),h("line",{x1:"14",y1:"1",x2:"14",y2:"4"})])}}},FE={name:"ColumnsIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-columns"},Object.assign({},i)),[h("path",{d:"M12 3h7a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-7m0-18H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7m0-18v18"})])}}},VE={name:"CommandIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-command"},Object.assign({},i)),[h("path",{d:"M18 3a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3H6a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3V6a3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3h12a3 3 0 0 0 3-3 3 3 0 0 0-3-3z"})])}}},HE={name:"CompassIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-compass"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("polygon",{points:"16.24 7.76 14.12 14.12 7.76 16.24 9.88 9.88 16.24 7.76"})])}}},WE={name:"CopyIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-copy"},Object.assign({},i)),[h("rect",{x:"9",y:"9",width:"13",height:"13",rx:"2",ry:"2"}),h("path",{d:"M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"})])}}},UE={name:"CornerDownLeftIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-corner-down-left"},Object.assign({},i)),[h("polyline",{points:"9 10 4 15 9 20"}),h("path",{d:"M20 4v7a4 4 0 0 1-4 4H4"})])}}},YE={name:"CornerDownRightIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-corner-down-right"},Object.assign({},i)),[h("polyline",{points:"15 10 20 15 15 20"}),h("path",{d:"M4 4v7a4 4 0 0 0 4 4h12"})])}}},GE={name:"CornerLeftDownIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-corner-left-down"},Object.assign({},i)),[h("polyline",{points:"14 15 9 20 4 15"}),h("path",{d:"M20 4h-7a4 4 0 0 0-4 4v12"})])}}},qE={name:"CornerLeftUpIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-corner-left-up"},Object.assign({},i)),[h("polyline",{points:"14 9 9 4 4 9"}),h("path",{d:"M20 20h-7a4 4 0 0 1-4-4V4"})])}}},ZE={name:"CornerRightDownIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-corner-right-down"},Object.assign({},i)),[h("polyline",{points:"10 15 15 20 20 15"}),h("path",{d:"M4 4h7a4 4 0 0 1 4 4v12"})])}}},KE={name:"CornerRightUpIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-corner-right-up"},Object.assign({},i)),[h("polyline",{points:"10 9 15 4 20 9"}),h("path",{d:"M4 20h7a4 4 0 0 0 4-4V4"})])}}},JE={name:"CornerUpLeftIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-corner-up-left"},Object.assign({},i)),[h("polyline",{points:"9 14 4 9 9 4"}),h("path",{d:"M20 20v-7a4 4 0 0 0-4-4H4"})])}}},QE={name:"CornerUpRightIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-corner-up-right"},Object.assign({},i)),[h("polyline",{points:"15 14 20 9 15 4"}),h("path",{d:"M4 20v-7a4 4 0 0 1 4-4h12"})])}}},eA={name:"CpuIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-cpu"},Object.assign({},i)),[h("rect",{x:"4",y:"4",width:"16",height:"16",rx:"2",ry:"2"}),h("rect",{x:"9",y:"9",width:"6",height:"6"}),h("line",{x1:"9",y1:"1",x2:"9",y2:"4"}),h("line",{x1:"15",y1:"1",x2:"15",y2:"4"}),h("line",{x1:"9",y1:"20",x2:"9",y2:"23"}),h("line",{x1:"15",y1:"20",x2:"15",y2:"23"}),h("line",{x1:"20",y1:"9",x2:"23",y2:"9"}),h("line",{x1:"20",y1:"14",x2:"23",y2:"14"}),h("line",{x1:"1",y1:"9",x2:"4",y2:"9"}),h("line",{x1:"1",y1:"14",x2:"4",y2:"14"})])}}},tA={name:"CreditCardIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-credit-card"},Object.assign({},i)),[h("rect",{x:"1",y:"4",width:"22",height:"16",rx:"2",ry:"2"}),h("line",{x1:"1",y1:"10",x2:"23",y2:"10"})])}}},nA={name:"CropIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-crop"},Object.assign({},i)),[h("path",{d:"M6.13 1L6 16a2 2 0 0 0 2 2h15"}),h("path",{d:"M1 6.13L16 6a2 2 0 0 1 2 2v15"})])}}},rA={name:"CrosshairIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-crosshair"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("line",{x1:"22",y1:"12",x2:"18",y2:"12"}),h("line",{x1:"6",y1:"12",x2:"2",y2:"12"}),h("line",{x1:"12",y1:"6",x2:"12",y2:"2"}),h("line",{x1:"12",y1:"22",x2:"12",y2:"18"})])}}},iA={name:"DatabaseIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-database"},Object.assign({},i)),[h("ellipse",{cx:"12",cy:"5",rx:"9",ry:"3"}),h("path",{d:"M21 12c0 1.66-4 3-9 3s-9-1.34-9-3"}),h("path",{d:"M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5"})])}}},sA={name:"DeleteIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-delete"},Object.assign({},i)),[h("path",{d:"M21 4H8l-7 8 7 8h13a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2z"}),h("line",{x1:"18",y1:"9",x2:"12",y2:"15"}),h("line",{x1:"12",y1:"9",x2:"18",y2:"15"})])}}},oA={name:"DiscIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-disc"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("circle",{cx:"12",cy:"12",r:"3"})])}}},aA={name:"DivideCircleIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-divide-circle"},Object.assign({},i)),[h("line",{x1:"8",y1:"12",x2:"16",y2:"12"}),h("line",{x1:"12",y1:"16",x2:"12",y2:"16"}),h("line",{x1:"12",y1:"8",x2:"12",y2:"8"}),h("circle",{cx:"12",cy:"12",r:"10"})])}}},lA={name:"DivideSquareIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-divide-square"},Object.assign({},i)),[h("rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}),h("line",{x1:"8",y1:"12",x2:"16",y2:"12"}),h("line",{x1:"12",y1:"16",x2:"12",y2:"16"}),h("line",{x1:"12",y1:"8",x2:"12",y2:"8"})])}}},uA={name:"DivideIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-divide"},Object.assign({},i)),[h("circle",{cx:"12",cy:"6",r:"2"}),h("line",{x1:"5",y1:"12",x2:"19",y2:"12"}),h("circle",{cx:"12",cy:"18",r:"2"})])}}},cA={name:"DollarSignIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-dollar-sign"},Object.assign({},i)),[h("line",{x1:"12",y1:"1",x2:"12",y2:"23"}),h("path",{d:"M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6"})])}}},hA={name:"DownloadCloudIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-download-cloud"},Object.assign({},i)),[h("polyline",{points:"8 17 12 21 16 17"}),h("line",{x1:"12",y1:"12",x2:"12",y2:"21"}),h("path",{d:"M20.88 18.09A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.29"})])}}},fA={name:"DownloadIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-download"},Object.assign({},i)),[h("path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"}),h("polyline",{points:"7 10 12 15 17 10"}),h("line",{x1:"12",y1:"15",x2:"12",y2:"3"})])}}},dA={name:"DribbbleIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-dribbble"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("path",{d:"M8.56 2.75c4.37 6.03 6.02 9.42 8.03 17.72m2.54-15.38c-3.72 4.35-8.94 5.66-16.88 5.85m19.5 1.9c-3.5-.93-6.63-.82-8.94 0-2.58.92-5.01 2.86-7.44 6.32"})])}}},pA={name:"DropletIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-droplet"},Object.assign({},i)),[h("path",{d:"M12 2.69l5.66 5.66a8 8 0 1 1-11.31 0z"})])}}},gA={name:"Edit2Icon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-edit-2"},Object.assign({},i)),[h("path",{d:"M17 3a2.828 2.828 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5L17 3z"})])}}},mA={name:"Edit3Icon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-edit-3"},Object.assign({},i)),[h("path",{d:"M12 20h9"}),h("path",{d:"M16.5 3.5a2.121 2.121 0 0 1 3 3L7 19l-4 1 1-4L16.5 3.5z"})])}}},yA={name:"EditIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-edit"},Object.assign({},i)),[h("path",{d:"M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7"}),h("path",{d:"M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z"})])}}},vA={name:"ExternalLinkIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-external-link"},Object.assign({},i)),[h("path",{d:"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"}),h("polyline",{points:"15 3 21 3 21 9"}),h("line",{x1:"10",y1:"14",x2:"21",y2:"3"})])}}},bA={name:"EyeOffIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-eye-off"},Object.assign({},i)),[h("path",{d:"M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24"}),h("line",{x1:"1",y1:"1",x2:"23",y2:"23"})])}}},wA={name:"EyeIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-eye"},Object.assign({},i)),[h("path",{d:"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"}),h("circle",{cx:"12",cy:"12",r:"3"})])}}},xA={name:"FacebookIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-facebook"},Object.assign({},i)),[h("path",{d:"M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z"})])}}},_A={name:"FastForwardIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-fast-forward"},Object.assign({},i)),[h("polygon",{points:"13 19 22 12 13 5 13 19"}),h("polygon",{points:"2 19 11 12 2 5 2 19"})])}}},OA={name:"FeatherIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-feather"},Object.assign({},i)),[h("path",{d:"M20.24 12.24a6 6 0 0 0-8.49-8.49L5 10.5V19h8.5z"}),h("line",{x1:"16",y1:"8",x2:"2",y2:"22"}),h("line",{x1:"17.5",y1:"15",x2:"9",y2:"15"})])}}},SA={name:"FigmaIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-figma"},Object.assign({},i)),[h("path",{d:"M5 5.5A3.5 3.5 0 0 1 8.5 2H12v7H8.5A3.5 3.5 0 0 1 5 5.5z"}),h("path",{d:"M12 2h3.5a3.5 3.5 0 1 1 0 7H12V2z"}),h("path",{d:"M12 12.5a3.5 3.5 0 1 1 7 0 3.5 3.5 0 1 1-7 0z"}),h("path",{d:"M5 19.5A3.5 3.5 0 0 1 8.5 16H12v3.5a3.5 3.5 0 1 1-7 0z"}),h("path",{d:"M5 12.5A3.5 3.5 0 0 1 8.5 9H12v7H8.5A3.5 3.5 0 0 1 5 12.5z"})])}}},kA={name:"FileMinusIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-file-minus"},Object.assign({},i)),[h("path",{d:"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"}),h("polyline",{points:"14 2 14 8 20 8"}),h("line",{x1:"9",y1:"15",x2:"15",y2:"15"})])}}},TA={name:"FilePlusIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-file-plus"},Object.assign({},i)),[h("path",{d:"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"}),h("polyline",{points:"14 2 14 8 20 8"}),h("line",{x1:"12",y1:"18",x2:"12",y2:"12"}),h("line",{x1:"9",y1:"15",x2:"15",y2:"15"})])}}},CA={name:"FileTextIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-file-text"},Object.assign({},i)),[h("path",{d:"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"}),h("polyline",{points:"14 2 14 8 20 8"}),h("line",{x1:"16",y1:"13",x2:"8",y2:"13"}),h("line",{x1:"16",y1:"17",x2:"8",y2:"17"}),h("polyline",{points:"10 9 9 9 8 9"})])}}},MA={name:"FileIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-file"},Object.assign({},i)),[h("path",{d:"M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z"}),h("polyline",{points:"13 2 13 9 20 9"})])}}},zA={name:"FilmIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-film"},Object.assign({},i)),[h("rect",{x:"2",y:"2",width:"20",height:"20",rx:"2.18",ry:"2.18"}),h("line",{x1:"7",y1:"2",x2:"7",y2:"22"}),h("line",{x1:"17",y1:"2",x2:"17",y2:"22"}),h("line",{x1:"2",y1:"12",x2:"22",y2:"12"}),h("line",{x1:"2",y1:"7",x2:"7",y2:"7"}),h("line",{x1:"2",y1:"17",x2:"7",y2:"17"}),h("line",{x1:"17",y1:"17",x2:"22",y2:"17"}),h("line",{x1:"17",y1:"7",x2:"22",y2:"7"})])}}},NA={name:"FilterIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-filter"},Object.assign({},i)),[h("polygon",{points:"22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3"})])}}},EA={name:"FlagIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-flag"},Object.assign({},i)),[h("path",{d:"M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z"}),h("line",{x1:"4",y1:"22",x2:"4",y2:"15"})])}}},AA={name:"FolderMinusIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-folder-minus"},Object.assign({},i)),[h("path",{d:"M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"}),h("line",{x1:"9",y1:"14",x2:"15",y2:"14"})])}}},IA={name:"FolderPlusIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-folder-plus"},Object.assign({},i)),[h("path",{d:"M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"}),h("line",{x1:"12",y1:"11",x2:"12",y2:"17"}),h("line",{x1:"9",y1:"14",x2:"15",y2:"14"})])}}},PA={name:"FolderIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-folder"},Object.assign({},i)),[h("path",{d:"M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"})])}}},jA={name:"FramerIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-framer"},Object.assign({},i)),[h("path",{d:"M5 16V9h14V2H5l14 14h-7m-7 0l7 7v-7m-7 0h7"})])}}},DA={name:"FrownIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-frown"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("path",{d:"M16 16s-1.5-2-4-2-4 2-4 2"}),h("line",{x1:"9",y1:"9",x2:"9.01",y2:"9"}),h("line",{x1:"15",y1:"9",x2:"15.01",y2:"9"})])}}},$A={name:"GiftIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-gift"},Object.assign({},i)),[h("polyline",{points:"20 12 20 22 4 22 4 12"}),h("rect",{x:"2",y:"7",width:"20",height:"5"}),h("line",{x1:"12",y1:"22",x2:"12",y2:"7"}),h("path",{d:"M12 7H7.5a2.5 2.5 0 0 1 0-5C11 2 12 7 12 7z"}),h("path",{d:"M12 7h4.5a2.5 2.5 0 0 0 0-5C13 2 12 7 12 7z"})])}}},LA={name:"GitBranchIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-git-branch"},Object.assign({},i)),[h("line",{x1:"6",y1:"3",x2:"6",y2:"15"}),h("circle",{cx:"18",cy:"6",r:"3"}),h("circle",{cx:"6",cy:"18",r:"3"}),h("path",{d:"M18 9a9 9 0 0 1-9 9"})])}}},RA={name:"GitCommitIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-git-commit"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"4"}),h("line",{x1:"1.05",y1:"12",x2:"7",y2:"12"}),h("line",{x1:"17.01",y1:"12",x2:"22.96",y2:"12"})])}}},BA={name:"GitMergeIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-git-merge"},Object.assign({},i)),[h("circle",{cx:"18",cy:"18",r:"3"}),h("circle",{cx:"6",cy:"6",r:"3"}),h("path",{d:"M6 21V9a9 9 0 0 0 9 9"})])}}},XA={name:"GitPullRequestIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-git-pull-request"},Object.assign({},i)),[h("circle",{cx:"18",cy:"18",r:"3"}),h("circle",{cx:"6",cy:"6",r:"3"}),h("path",{d:"M13 6h3a2 2 0 0 1 2 2v7"}),h("line",{x1:"6",y1:"9",x2:"6",y2:"21"})])}}},FA={name:"GithubIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-github"},Object.assign({},i)),[h("path",{d:"M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22"})])}}},VA={name:"GitlabIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-gitlab"},Object.assign({},i)),[h("path",{d:"M22.65 14.39L12 22.13 1.35 14.39a.84.84 0 0 1-.3-.94l1.22-3.78 2.44-7.51A.42.42 0 0 1 4.82 2a.43.43 0 0 1 .58 0 .42.42 0 0 1 .11.18l2.44 7.49h8.1l2.44-7.51A.42.42 0 0 1 18.6 2a.43.43 0 0 1 .58 0 .42.42 0 0 1 .11.18l2.44 7.51L23 13.45a.84.84 0 0 1-.35.94z"})])}}},HA={name:"GlobeIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-globe"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("line",{x1:"2",y1:"12",x2:"22",y2:"12"}),h("path",{d:"M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"})])}}},WA={name:"GridIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-grid"},Object.assign({},i)),[h("rect",{x:"3",y:"3",width:"7",height:"7"}),h("rect",{x:"14",y:"3",width:"7",height:"7"}),h("rect",{x:"14",y:"14",width:"7",height:"7"}),h("rect",{x:"3",y:"14",width:"7",height:"7"})])}}},UA={name:"HardDriveIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-hard-drive"},Object.assign({},i)),[h("line",{x1:"22",y1:"12",x2:"2",y2:"12"}),h("path",{d:"M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z"}),h("line",{x1:"6",y1:"16",x2:"6.01",y2:"16"}),h("line",{x1:"10",y1:"16",x2:"10.01",y2:"16"})])}}},YA={name:"HashIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-hash"},Object.assign({},i)),[h("line",{x1:"4",y1:"9",x2:"20",y2:"9"}),h("line",{x1:"4",y1:"15",x2:"20",y2:"15"}),h("line",{x1:"10",y1:"3",x2:"8",y2:"21"}),h("line",{x1:"16",y1:"3",x2:"14",y2:"21"})])}}},GA={name:"HeadphonesIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-headphones"},Object.assign({},i)),[h("path",{d:"M3 18v-6a9 9 0 0 1 18 0v6"}),h("path",{d:"M21 19a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3zM3 19a2 2 0 0 0 2 2h1a2 2 0 0 0 2-2v-3a2 2 0 0 0-2-2H3z"})])}}},qA={name:"HeartIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-heart"},Object.assign({},i)),[h("path",{d:"M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"})])}}},ZA={name:"HelpCircleIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-help-circle"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"}),h("line",{x1:"12",y1:"17",x2:"12.01",y2:"17"})])}}},KA={name:"HexagonIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-hexagon"},Object.assign({},i)),[h("path",{d:"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"})])}}},JA={name:"HomeIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-home"},Object.assign({},i)),[h("path",{d:"M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"}),h("polyline",{points:"9 22 9 12 15 12 15 22"})])}}},QA={name:"ImageIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-image"},Object.assign({},i)),[h("rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}),h("circle",{cx:"8.5",cy:"8.5",r:"1.5"}),h("polyline",{points:"21 15 16 10 5 21"})])}}},eI={name:"InboxIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-inbox"},Object.assign({},i)),[h("polyline",{points:"22 12 16 12 14 15 10 15 8 12 2 12"}),h("path",{d:"M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z"})])}}},tI={name:"InfoIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-info"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("line",{x1:"12",y1:"16",x2:"12",y2:"12"}),h("line",{x1:"12",y1:"8",x2:"12.01",y2:"8"})])}}},nI={name:"InstagramIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-instagram"},Object.assign({},i)),[h("rect",{x:"2",y:"2",width:"20",height:"20",rx:"5",ry:"5"}),h("path",{d:"M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"}),h("line",{x1:"17.5",y1:"6.5",x2:"17.51",y2:"6.5"})])}}},rI={name:"ItalicIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-italic"},Object.assign({},i)),[h("line",{x1:"19",y1:"4",x2:"10",y2:"4"}),h("line",{x1:"14",y1:"20",x2:"5",y2:"20"}),h("line",{x1:"15",y1:"4",x2:"9",y2:"20"})])}}},iI={name:"KeyIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-key"},Object.assign({},i)),[h("path",{d:"M21 2l-2 2m-7.61 7.61a5.5 5.5 0 1 1-7.778 7.778 5.5 5.5 0 0 1 7.777-7.777zm0 0L15.5 7.5m0 0l3 3L22 7l-3-3m-3.5 3.5L19 4"})])}}},sI={name:"LayersIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-layers"},Object.assign({},i)),[h("polygon",{points:"12 2 2 7 12 12 22 7 12 2"}),h("polyline",{points:"2 17 12 22 22 17"}),h("polyline",{points:"2 12 12 17 22 12"})])}}},oI={name:"LayoutIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-layout"},Object.assign({},i)),[h("rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}),h("line",{x1:"3",y1:"9",x2:"21",y2:"9"}),h("line",{x1:"9",y1:"21",x2:"9",y2:"9"})])}}},aI={name:"LifeBuoyIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-life-buoy"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("circle",{cx:"12",cy:"12",r:"4"}),h("line",{x1:"4.93",y1:"4.93",x2:"9.17",y2:"9.17"}),h("line",{x1:"14.83",y1:"14.83",x2:"19.07",y2:"19.07"}),h("line",{x1:"14.83",y1:"9.17",x2:"19.07",y2:"4.93"}),h("line",{x1:"14.83",y1:"9.17",x2:"18.36",y2:"5.64"}),h("line",{x1:"4.93",y1:"19.07",x2:"9.17",y2:"14.83"})])}}},lI={name:"Link2Icon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-link-2"},Object.assign({},i)),[h("path",{d:"M15 7h3a5 5 0 0 1 5 5 5 5 0 0 1-5 5h-3m-6 0H6a5 5 0 0 1-5-5 5 5 0 0 1 5-5h3"}),h("line",{x1:"8",y1:"12",x2:"16",y2:"12"})])}}},uI={name:"LinkIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-link"},Object.assign({},i)),[h("path",{d:"M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"}),h("path",{d:"M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"})])}}},cI={name:"LinkedinIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-linkedin"},Object.assign({},i)),[h("path",{d:"M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"}),h("rect",{x:"2",y:"9",width:"4",height:"12"}),h("circle",{cx:"4",cy:"4",r:"2"})])}}},hI={name:"ListIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-list"},Object.assign({},i)),[h("line",{x1:"8",y1:"6",x2:"21",y2:"6"}),h("line",{x1:"8",y1:"12",x2:"21",y2:"12"}),h("line",{x1:"8",y1:"18",x2:"21",y2:"18"}),h("line",{x1:"3",y1:"6",x2:"3.01",y2:"6"}),h("line",{x1:"3",y1:"12",x2:"3.01",y2:"12"}),h("line",{x1:"3",y1:"18",x2:"3.01",y2:"18"})])}}},fI={name:"LoaderIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-loader"},Object.assign({},i)),[h("line",{x1:"12",y1:"2",x2:"12",y2:"6"}),h("line",{x1:"12",y1:"18",x2:"12",y2:"22"}),h("line",{x1:"4.93",y1:"4.93",x2:"7.76",y2:"7.76"}),h("line",{x1:"16.24",y1:"16.24",x2:"19.07",y2:"19.07"}),h("line",{x1:"2",y1:"12",x2:"6",y2:"12"}),h("line",{x1:"18",y1:"12",x2:"22",y2:"12"}),h("line",{x1:"4.93",y1:"19.07",x2:"7.76",y2:"16.24"}),h("line",{x1:"16.24",y1:"7.76",x2:"19.07",y2:"4.93"})])}}},dI={name:"LockIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-lock"},Object.assign({},i)),[h("rect",{x:"3",y:"11",width:"18",height:"11",rx:"2",ry:"2"}),h("path",{d:"M7 11V7a5 5 0 0 1 10 0v4"})])}}},pI={name:"LogInIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-log-in"},Object.assign({},i)),[h("path",{d:"M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4"}),h("polyline",{points:"10 17 15 12 10 7"}),h("line",{x1:"15",y1:"12",x2:"3",y2:"12"})])}}},gI={name:"LogOutIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-log-out"},Object.assign({},i)),[h("path",{d:"M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"}),h("polyline",{points:"16 17 21 12 16 7"}),h("line",{x1:"21",y1:"12",x2:"9",y2:"12"})])}}},mI={name:"MailIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-mail"},Object.assign({},i)),[h("path",{d:"M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"}),h("polyline",{points:"22,6 12,13 2,6"})])}}},yI={name:"MapPinIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-map-pin"},Object.assign({},i)),[h("path",{d:"M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"}),h("circle",{cx:"12",cy:"10",r:"3"})])}}},vI={name:"MapIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-map"},Object.assign({},i)),[h("polygon",{points:"1 6 1 22 8 18 16 22 23 18 23 2 16 6 8 2 1 6"}),h("line",{x1:"8",y1:"2",x2:"8",y2:"18"}),h("line",{x1:"16",y1:"6",x2:"16",y2:"22"})])}}},bI={name:"Maximize2Icon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-maximize-2"},Object.assign({},i)),[h("polyline",{points:"15 3 21 3 21 9"}),h("polyline",{points:"9 21 3 21 3 15"}),h("line",{x1:"21",y1:"3",x2:"14",y2:"10"}),h("line",{x1:"3",y1:"21",x2:"10",y2:"14"})])}}},wI={name:"MaximizeIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-maximize"},Object.assign({},i)),[h("path",{d:"M8 3H5a2 2 0 0 0-2 2v3m18 0V5a2 2 0 0 0-2-2h-3m0 18h3a2 2 0 0 0 2-2v-3M3 16v3a2 2 0 0 0 2 2h3"})])}}},xI={name:"MehIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-meh"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("line",{x1:"8",y1:"15",x2:"16",y2:"15"}),h("line",{x1:"9",y1:"9",x2:"9.01",y2:"9"}),h("line",{x1:"15",y1:"9",x2:"15.01",y2:"9"})])}}},_I={name:"MenuIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-menu"},Object.assign({},i)),[h("line",{x1:"3",y1:"12",x2:"21",y2:"12"}),h("line",{x1:"3",y1:"6",x2:"21",y2:"6"}),h("line",{x1:"3",y1:"18",x2:"21",y2:"18"})])}}},OI={name:"MessageCircleIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-message-circle"},Object.assign({},i)),[h("path",{d:"M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z"})])}}},SI={name:"MessageSquareIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-message-square"},Object.assign({},i)),[h("path",{d:"M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"})])}}},kI={name:"MicOffIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-mic-off"},Object.assign({},i)),[h("line",{x1:"1",y1:"1",x2:"23",y2:"23"}),h("path",{d:"M9 9v3a3 3 0 0 0 5.12 2.12M15 9.34V4a3 3 0 0 0-5.94-.6"}),h("path",{d:"M17 16.95A7 7 0 0 1 5 12v-2m14 0v2a7 7 0 0 1-.11 1.23"}),h("line",{x1:"12",y1:"19",x2:"12",y2:"23"}),h("line",{x1:"8",y1:"23",x2:"16",y2:"23"})])}}},TI={name:"MicIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-mic"},Object.assign({},i)),[h("path",{d:"M12 1a3 3 0 0 0-3 3v8a3 3 0 0 0 6 0V4a3 3 0 0 0-3-3z"}),h("path",{d:"M19 10v2a7 7 0 0 1-14 0v-2"}),h("line",{x1:"12",y1:"19",x2:"12",y2:"23"}),h("line",{x1:"8",y1:"23",x2:"16",y2:"23"})])}}},CI={name:"Minimize2Icon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-minimize-2"},Object.assign({},i)),[h("polyline",{points:"4 14 10 14 10 20"}),h("polyline",{points:"20 10 14 10 14 4"}),h("line",{x1:"14",y1:"10",x2:"21",y2:"3"}),h("line",{x1:"3",y1:"21",x2:"10",y2:"14"})])}}},MI={name:"MinimizeIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-minimize"},Object.assign({},i)),[h("path",{d:"M8 3v3a2 2 0 0 1-2 2H3m18 0h-3a2 2 0 0 1-2-2V3m0 18v-3a2 2 0 0 1 2-2h3M3 16h3a2 2 0 0 1 2 2v3"})])}}},zI={name:"MinusCircleIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-minus-circle"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("line",{x1:"8",y1:"12",x2:"16",y2:"12"})])}}},NI={name:"MinusSquareIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-minus-square"},Object.assign({},i)),[h("rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}),h("line",{x1:"8",y1:"12",x2:"16",y2:"12"})])}}},EI={name:"MinusIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-minus"},Object.assign({},i)),[h("line",{x1:"5",y1:"12",x2:"19",y2:"12"})])}}},AI={name:"MonitorIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-monitor"},Object.assign({},i)),[h("rect",{x:"2",y:"3",width:"20",height:"14",rx:"2",ry:"2"}),h("line",{x1:"8",y1:"21",x2:"16",y2:"21"}),h("line",{x1:"12",y1:"17",x2:"12",y2:"21"})])}}},II={name:"MoonIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-moon"},Object.assign({},i)),[h("path",{d:"M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"})])}}},PI={name:"MoreHorizontalIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-more-horizontal"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"1"}),h("circle",{cx:"19",cy:"12",r:"1"}),h("circle",{cx:"5",cy:"12",r:"1"})])}}},jI={name:"MoreVerticalIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-more-vertical"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"1"}),h("circle",{cx:"12",cy:"5",r:"1"}),h("circle",{cx:"12",cy:"19",r:"1"})])}}},DI={name:"MousePointerIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-mouse-pointer"},Object.assign({},i)),[h("path",{d:"M3 3l7.07 16.97 2.51-7.39 7.39-2.51L3 3z"}),h("path",{d:"M13 13l6 6"})])}}},$I={name:"MoveIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-move"},Object.assign({},i)),[h("polyline",{points:"5 9 2 12 5 15"}),h("polyline",{points:"9 5 12 2 15 5"}),h("polyline",{points:"15 19 12 22 9 19"}),h("polyline",{points:"19 9 22 12 19 15"}),h("line",{x1:"2",y1:"12",x2:"22",y2:"12"}),h("line",{x1:"12",y1:"2",x2:"12",y2:"22"})])}}},LI={name:"MusicIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-music"},Object.assign({},i)),[h("path",{d:"M9 18V5l12-2v13"}),h("circle",{cx:"6",cy:"18",r:"3"}),h("circle",{cx:"18",cy:"16",r:"3"})])}}},RI={name:"Navigation2Icon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-navigation-2"},Object.assign({},i)),[h("polygon",{points:"12 2 19 21 12 17 5 21 12 2"})])}}},BI={name:"NavigationIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-navigation"},Object.assign({},i)),[h("polygon",{points:"3 11 22 2 13 21 11 13 3 11"})])}}},XI={name:"OctagonIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-octagon"},Object.assign({},i)),[h("polygon",{points:"7.86 2 16.14 2 22 7.86 22 16.14 16.14 22 7.86 22 2 16.14 2 7.86 7.86 2"})])}}},FI={name:"PackageIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-package"},Object.assign({},i)),[h("line",{x1:"16.5",y1:"9.4",x2:"7.5",y2:"4.21"}),h("path",{d:"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"}),h("polyline",{points:"3.27 6.96 12 12.01 20.73 6.96"}),h("line",{x1:"12",y1:"22.08",x2:"12",y2:"12"})])}}},VI={name:"PaperclipIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-paperclip"},Object.assign({},i)),[h("path",{d:"M21.44 11.05l-9.19 9.19a6 6 0 0 1-8.49-8.49l9.19-9.19a4 4 0 0 1 5.66 5.66l-9.2 9.19a2 2 0 0 1-2.83-2.83l8.49-8.48"})])}}},HI={name:"PauseCircleIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-pause-circle"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("line",{x1:"10",y1:"15",x2:"10",y2:"9"}),h("line",{x1:"14",y1:"15",x2:"14",y2:"9"})])}}},WI={name:"PauseIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-pause"},Object.assign({},i)),[h("rect",{x:"6",y:"4",width:"4",height:"16"}),h("rect",{x:"14",y:"4",width:"4",height:"16"})])}}},UI={name:"PenToolIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-pen-tool"},Object.assign({},i)),[h("path",{d:"M12 19l7-7 3 3-7 7-3-3z"}),h("path",{d:"M18 13l-1.5-7.5L2 2l3.5 14.5L13 18l5-5z"}),h("path",{d:"M2 2l7.586 7.586"}),h("circle",{cx:"11",cy:"11",r:"2"})])}}},YI={name:"PercentIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-percent"},Object.assign({},i)),[h("line",{x1:"19",y1:"5",x2:"5",y2:"19"}),h("circle",{cx:"6.5",cy:"6.5",r:"2.5"}),h("circle",{cx:"17.5",cy:"17.5",r:"2.5"})])}}},GI={name:"PhoneCallIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-phone-call"},Object.assign({},i)),[h("path",{d:"M15.05 5A5 5 0 0 1 19 8.95M15.05 1A9 9 0 0 1 23 8.94m-1 7.98v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"})])}}},qI={name:"PhoneForwardedIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-phone-forwarded"},Object.assign({},i)),[h("polyline",{points:"19 1 23 5 19 9"}),h("line",{x1:"15",y1:"5",x2:"23",y2:"5"}),h("path",{d:"M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"})])}}},ZI={name:"PhoneIncomingIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-phone-incoming"},Object.assign({},i)),[h("polyline",{points:"16 2 16 8 22 8"}),h("line",{x1:"23",y1:"1",x2:"16",y2:"8"}),h("path",{d:"M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"})])}}},KI={name:"PhoneMissedIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-phone-missed"},Object.assign({},i)),[h("line",{x1:"23",y1:"1",x2:"17",y2:"7"}),h("line",{x1:"17",y1:"1",x2:"23",y2:"7"}),h("path",{d:"M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"})])}}},JI={name:"PhoneOffIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-phone-off"},Object.assign({},i)),[h("path",{d:"M10.68 13.31a16 16 0 0 0 3.41 2.6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7 2 2 0 0 1 1.72 2v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.42 19.42 0 0 1-3.33-2.67m-2.67-3.34a19.79 19.79 0 0 1-3.07-8.63A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91"}),h("line",{x1:"23",y1:"1",x2:"1",y2:"23"})])}}},QI={name:"PhoneOutgoingIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-phone-outgoing"},Object.assign({},i)),[h("polyline",{points:"23 7 23 1 17 1"}),h("line",{x1:"16",y1:"8",x2:"23",y2:"1"}),h("path",{d:"M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"})])}}},eP={name:"PhoneIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-phone"},Object.assign({},i)),[h("path",{d:"M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"})])}}},tP={name:"PieChartIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-pie-chart"},Object.assign({},i)),[h("path",{d:"M21.21 15.89A10 10 0 1 1 8 2.83"}),h("path",{d:"M22 12A10 10 0 0 0 12 2v10z"})])}}},nP={name:"PlayCircleIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-play-circle"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("polygon",{points:"10 8 16 12 10 16 10 8"})])}}},rP={name:"PlayIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-play"},Object.assign({},i)),[h("polygon",{points:"5 3 19 12 5 21 5 3"})])}}},iP={name:"PlusCircleIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-plus-circle"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("line",{x1:"12",y1:"8",x2:"12",y2:"16"}),h("line",{x1:"8",y1:"12",x2:"16",y2:"12"})])}}},sP={name:"PlusSquareIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-plus-square"},Object.assign({},i)),[h("rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}),h("line",{x1:"12",y1:"8",x2:"12",y2:"16"}),h("line",{x1:"8",y1:"12",x2:"16",y2:"12"})])}}},oP={name:"PlusIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-plus"},Object.assign({},i)),[h("line",{x1:"12",y1:"5",x2:"12",y2:"19"}),h("line",{x1:"5",y1:"12",x2:"19",y2:"12"})])}}},aP={name:"PocketIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-pocket"},Object.assign({},i)),[h("path",{d:"M4 3h16a2 2 0 0 1 2 2v6a10 10 0 0 1-10 10A10 10 0 0 1 2 11V5a2 2 0 0 1 2-2z"}),h("polyline",{points:"8 10 12 14 16 10"})])}}},lP={name:"PowerIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-power"},Object.assign({},i)),[h("path",{d:"M18.36 6.64a9 9 0 1 1-12.73 0"}),h("line",{x1:"12",y1:"2",x2:"12",y2:"12"})])}}},uP={name:"PrinterIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-printer"},Object.assign({},i)),[h("polyline",{points:"6 9 6 2 18 2 18 9"}),h("path",{d:"M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2"}),h("rect",{x:"6",y:"14",width:"12",height:"8"})])}}},cP={name:"RadioIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-radio"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"2"}),h("path",{d:"M16.24 7.76a6 6 0 0 1 0 8.49m-8.48-.01a6 6 0 0 1 0-8.49m11.31-2.82a10 10 0 0 1 0 14.14m-14.14 0a10 10 0 0 1 0-14.14"})])}}},hP={name:"RefreshCcwIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-refresh-ccw"},Object.assign({},i)),[h("polyline",{points:"1 4 1 10 7 10"}),h("polyline",{points:"23 20 23 14 17 14"}),h("path",{d:"M20.49 9A9 9 0 0 0 5.64 5.64L1 10m22 4l-4.64 4.36A9 9 0 0 1 3.51 15"})])}}},fP={name:"RefreshCwIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-refresh-cw"},Object.assign({},i)),[h("polyline",{points:"23 4 23 10 17 10"}),h("polyline",{points:"1 20 1 14 7 14"}),h("path",{d:"M3.51 9a9 9 0 0 1 14.85-3.36L23 10M1 14l4.64 4.36A9 9 0 0 0 20.49 15"})])}}},dP={name:"RepeatIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-repeat"},Object.assign({},i)),[h("polyline",{points:"17 1 21 5 17 9"}),h("path",{d:"M3 11V9a4 4 0 0 1 4-4h14"}),h("polyline",{points:"7 23 3 19 7 15"}),h("path",{d:"M21 13v2a4 4 0 0 1-4 4H3"})])}}},pP={name:"RewindIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-rewind"},Object.assign({},i)),[h("polygon",{points:"11 19 2 12 11 5 11 19"}),h("polygon",{points:"22 19 13 12 22 5 22 19"})])}}},gP={name:"RotateCcwIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-rotate-ccw"},Object.assign({},i)),[h("polyline",{points:"1 4 1 10 7 10"}),h("path",{d:"M3.51 15a9 9 0 1 0 2.13-9.36L1 10"})])}}},mP={name:"RotateCwIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-rotate-cw"},Object.assign({},i)),[h("polyline",{points:"23 4 23 10 17 10"}),h("path",{d:"M20.49 15a9 9 0 1 1-2.12-9.36L23 10"})])}}},yP={name:"RssIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-rss"},Object.assign({},i)),[h("path",{d:"M4 11a9 9 0 0 1 9 9"}),h("path",{d:"M4 4a16 16 0 0 1 16 16"}),h("circle",{cx:"5",cy:"19",r:"1"})])}}},vP={name:"SaveIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-save"},Object.assign({},i)),[h("path",{d:"M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11l5 5v11a2 2 0 0 1-2 2z"}),h("polyline",{points:"17 21 17 13 7 13 7 21"}),h("polyline",{points:"7 3 7 8 15 8"})])}}},bP={name:"ScissorsIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-scissors"},Object.assign({},i)),[h("circle",{cx:"6",cy:"6",r:"3"}),h("circle",{cx:"6",cy:"18",r:"3"}),h("line",{x1:"20",y1:"4",x2:"8.12",y2:"15.88"}),h("line",{x1:"14.47",y1:"14.48",x2:"20",y2:"20"}),h("line",{x1:"8.12",y1:"8.12",x2:"12",y2:"12"})])}}},wP={name:"SearchIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-search"},Object.assign({},i)),[h("circle",{cx:"11",cy:"11",r:"8"}),h("line",{x1:"21",y1:"21",x2:"16.65",y2:"16.65"})])}}},xP={name:"SendIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-send"},Object.assign({},i)),[h("line",{x1:"22",y1:"2",x2:"11",y2:"13"}),h("polygon",{points:"22 2 15 22 11 13 2 9 22 2"})])}}},_P={name:"ServerIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-server"},Object.assign({},i)),[h("rect",{x:"2",y:"2",width:"20",height:"8",rx:"2",ry:"2"}),h("rect",{x:"2",y:"14",width:"20",height:"8",rx:"2",ry:"2"}),h("line",{x1:"6",y1:"6",x2:"6.01",y2:"6"}),h("line",{x1:"6",y1:"18",x2:"6.01",y2:"18"})])}}},OP={name:"SettingsIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-settings"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"3"}),h("path",{d:"M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z"})])}}},SP={name:"Share2Icon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-share-2"},Object.assign({},i)),[h("circle",{cx:"18",cy:"5",r:"3"}),h("circle",{cx:"6",cy:"12",r:"3"}),h("circle",{cx:"18",cy:"19",r:"3"}),h("line",{x1:"8.59",y1:"13.51",x2:"15.42",y2:"17.49"}),h("line",{x1:"15.41",y1:"6.51",x2:"8.59",y2:"10.49"})])}}},kP={name:"ShareIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-share"},Object.assign({},i)),[h("path",{d:"M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8"}),h("polyline",{points:"16 6 12 2 8 6"}),h("line",{x1:"12",y1:"2",x2:"12",y2:"15"})])}}},TP={name:"ShieldOffIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-shield-off"},Object.assign({},i)),[h("path",{d:"M19.69 14a6.9 6.9 0 0 0 .31-2V5l-8-3-3.16 1.18"}),h("path",{d:"M4.73 4.73L4 5v7c0 6 8 10 8 10a20.29 20.29 0 0 0 5.62-4.38"}),h("line",{x1:"1",y1:"1",x2:"23",y2:"23"})])}}},CP={name:"ShieldIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-shield"},Object.assign({},i)),[h("path",{d:"M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"})])}}},MP={name:"ShoppingBagIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-shopping-bag"},Object.assign({},i)),[h("path",{d:"M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z"}),h("line",{x1:"3",y1:"6",x2:"21",y2:"6"}),h("path",{d:"M16 10a4 4 0 0 1-8 0"})])}}},zP={name:"ShoppingCartIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-shopping-cart"},Object.assign({},i)),[h("circle",{cx:"9",cy:"21",r:"1"}),h("circle",{cx:"20",cy:"21",r:"1"}),h("path",{d:"M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6"})])}}},NP={name:"ShuffleIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-shuffle"},Object.assign({},i)),[h("polyline",{points:"16 3 21 3 21 8"}),h("line",{x1:"4",y1:"20",x2:"21",y2:"3"}),h("polyline",{points:"21 16 21 21 16 21"}),h("line",{x1:"15",y1:"15",x2:"21",y2:"21"}),h("line",{x1:"4",y1:"4",x2:"9",y2:"9"})])}}},EP={name:"SidebarIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-sidebar"},Object.assign({},i)),[h("rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}),h("line",{x1:"9",y1:"3",x2:"9",y2:"21"})])}}},AP={name:"SkipBackIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-skip-back"},Object.assign({},i)),[h("polygon",{points:"19 20 9 12 19 4 19 20"}),h("line",{x1:"5",y1:"19",x2:"5",y2:"5"})])}}},IP={name:"SkipForwardIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-skip-forward"},Object.assign({},i)),[h("polygon",{points:"5 4 15 12 5 20 5 4"}),h("line",{x1:"19",y1:"5",x2:"19",y2:"19"})])}}},PP={name:"SlackIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-slack"},Object.assign({},i)),[h("path",{d:"M14.5 10c-.83 0-1.5-.67-1.5-1.5v-5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v5c0 .83-.67 1.5-1.5 1.5z"}),h("path",{d:"M20.5 10H19V8.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z"}),h("path",{d:"M9.5 14c.83 0 1.5.67 1.5 1.5v5c0 .83-.67 1.5-1.5 1.5S8 21.33 8 20.5v-5c0-.83.67-1.5 1.5-1.5z"}),h("path",{d:"M3.5 14H5v1.5c0 .83-.67 1.5-1.5 1.5S2 16.33 2 15.5 2.67 14 3.5 14z"}),h("path",{d:"M14 14.5c0-.83.67-1.5 1.5-1.5h5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-5c-.83 0-1.5-.67-1.5-1.5z"}),h("path",{d:"M15.5 19H14v1.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z"}),h("path",{d:"M10 9.5C10 8.67 9.33 8 8.5 8h-5C2.67 8 2 8.67 2 9.5S2.67 11 3.5 11h5c.83 0 1.5-.67 1.5-1.5z"}),h("path",{d:"M8.5 5H10V3.5C10 2.67 9.33 2 8.5 2S7 2.67 7 3.5 7.67 5 8.5 5z"})])}}},jP={name:"SlashIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-slash"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("line",{x1:"4.93",y1:"4.93",x2:"19.07",y2:"19.07"})])}}},DP={name:"SlidersIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-sliders"},Object.assign({},i)),[h("line",{x1:"4",y1:"21",x2:"4",y2:"14"}),h("line",{x1:"4",y1:"10",x2:"4",y2:"3"}),h("line",{x1:"12",y1:"21",x2:"12",y2:"12"}),h("line",{x1:"12",y1:"8",x2:"12",y2:"3"}),h("line",{x1:"20",y1:"21",x2:"20",y2:"16"}),h("line",{x1:"20",y1:"12",x2:"20",y2:"3"}),h("line",{x1:"1",y1:"14",x2:"7",y2:"14"}),h("line",{x1:"9",y1:"8",x2:"15",y2:"8"}),h("line",{x1:"17",y1:"16",x2:"23",y2:"16"})])}}},$P={name:"SmartphoneIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-smartphone"},Object.assign({},i)),[h("rect",{x:"5",y:"2",width:"14",height:"20",rx:"2",ry:"2"}),h("line",{x1:"12",y1:"18",x2:"12.01",y2:"18"})])}}},LP={name:"SmileIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-smile"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("path",{d:"M8 14s1.5 2 4 2 4-2 4-2"}),h("line",{x1:"9",y1:"9",x2:"9.01",y2:"9"}),h("line",{x1:"15",y1:"9",x2:"15.01",y2:"9"})])}}},RP={name:"SpeakerIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-speaker"},Object.assign({},i)),[h("rect",{x:"4",y:"2",width:"16",height:"20",rx:"2",ry:"2"}),h("circle",{cx:"12",cy:"14",r:"4"}),h("line",{x1:"12",y1:"6",x2:"12.01",y2:"6"})])}}},BP={name:"SquareIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-square"},Object.assign({},i)),[h("rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"})])}}},XP={name:"StarIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-star"},Object.assign({},i)),[h("polygon",{points:"12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"})])}}},FP={name:"StopCircleIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-stop-circle"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("rect",{x:"9",y:"9",width:"6",height:"6"})])}}},VP={name:"SunIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-sun"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"5"}),h("line",{x1:"12",y1:"1",x2:"12",y2:"3"}),h("line",{x1:"12",y1:"21",x2:"12",y2:"23"}),h("line",{x1:"4.22",y1:"4.22",x2:"5.64",y2:"5.64"}),h("line",{x1:"18.36",y1:"18.36",x2:"19.78",y2:"19.78"}),h("line",{x1:"1",y1:"12",x2:"3",y2:"12"}),h("line",{x1:"21",y1:"12",x2:"23",y2:"12"}),h("line",{x1:"4.22",y1:"19.78",x2:"5.64",y2:"18.36"}),h("line",{x1:"18.36",y1:"5.64",x2:"19.78",y2:"4.22"})])}}},HP={name:"SunriseIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-sunrise"},Object.assign({},i)),[h("path",{d:"M17 18a5 5 0 0 0-10 0"}),h("line",{x1:"12",y1:"2",x2:"12",y2:"9"}),h("line",{x1:"4.22",y1:"10.22",x2:"5.64",y2:"11.64"}),h("line",{x1:"1",y1:"18",x2:"3",y2:"18"}),h("line",{x1:"21",y1:"18",x2:"23",y2:"18"}),h("line",{x1:"18.36",y1:"11.64",x2:"19.78",y2:"10.22"}),h("line",{x1:"23",y1:"22",x2:"1",y2:"22"}),h("polyline",{points:"8 6 12 2 16 6"})])}}},WP={name:"SunsetIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-sunset"},Object.assign({},i)),[h("path",{d:"M17 18a5 5 0 0 0-10 0"}),h("line",{x1:"12",y1:"9",x2:"12",y2:"2"}),h("line",{x1:"4.22",y1:"10.22",x2:"5.64",y2:"11.64"}),h("line",{x1:"1",y1:"18",x2:"3",y2:"18"}),h("line",{x1:"21",y1:"18",x2:"23",y2:"18"}),h("line",{x1:"18.36",y1:"11.64",x2:"19.78",y2:"10.22"}),h("line",{x1:"23",y1:"22",x2:"1",y2:"22"}),h("polyline",{points:"16 5 12 9 8 5"})])}}},UP={name:"TabletIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-tablet"},Object.assign({},i)),[h("rect",{x:"4",y:"2",width:"16",height:"20",rx:"2",ry:"2"}),h("line",{x1:"12",y1:"18",x2:"12.01",y2:"18"})])}}},YP={name:"TagIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-tag"},Object.assign({},i)),[h("path",{d:"M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z"}),h("line",{x1:"7",y1:"7",x2:"7.01",y2:"7"})])}}},GP={name:"TargetIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-target"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("circle",{cx:"12",cy:"12",r:"6"}),h("circle",{cx:"12",cy:"12",r:"2"})])}}},qP={name:"TerminalIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-terminal"},Object.assign({},i)),[h("polyline",{points:"4 17 10 11 4 5"}),h("line",{x1:"12",y1:"19",x2:"20",y2:"19"})])}}},ZP={name:"ThermometerIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-thermometer"},Object.assign({},i)),[h("path",{d:"M14 14.76V3.5a2.5 2.5 0 0 0-5 0v11.26a4.5 4.5 0 1 0 5 0z"})])}}},KP={name:"ThumbsDownIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-thumbs-down"},Object.assign({},i)),[h("path",{d:"M10 15v4a3 3 0 0 0 3 3l4-9V2H5.72a2 2 0 0 0-2 1.7l-1.38 9a2 2 0 0 0 2 2.3zm7-13h2.67A2.31 2.31 0 0 1 22 4v7a2.31 2.31 0 0 1-2.33 2H17"})])}}},JP={name:"ThumbsUpIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-thumbs-up"},Object.assign({},i)),[h("path",{d:"M14 9V5a3 3 0 0 0-3-3l-4 9v11h11.28a2 2 0 0 0 2-1.7l1.38-9a2 2 0 0 0-2-2.3zM7 22H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h3"})])}}},QP={name:"ToggleLeftIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-toggle-left"},Object.assign({},i)),[h("rect",{x:"1",y:"5",width:"22",height:"14",rx:"7",ry:"7"}),h("circle",{cx:"8",cy:"12",r:"3"})])}}},ej={name:"ToggleRightIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-toggle-right"},Object.assign({},i)),[h("rect",{x:"1",y:"5",width:"22",height:"14",rx:"7",ry:"7"}),h("circle",{cx:"16",cy:"12",r:"3"})])}}},tj={name:"ToolIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-tool"},Object.assign({},i)),[h("path",{d:"M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z"})])}}},nj={name:"Trash2Icon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-trash-2"},Object.assign({},i)),[h("polyline",{points:"3 6 5 6 21 6"}),h("path",{d:"M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"}),h("line",{x1:"10",y1:"11",x2:"10",y2:"17"}),h("line",{x1:"14",y1:"11",x2:"14",y2:"17"})])}}},rj={name:"TrashIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-trash"},Object.assign({},i)),[h("polyline",{points:"3 6 5 6 21 6"}),h("path",{d:"M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"})])}}},ij={name:"TrelloIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-trello"},Object.assign({},i)),[h("rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}),h("rect",{x:"7",y:"7",width:"3",height:"9"}),h("rect",{x:"14",y:"7",width:"3",height:"5"})])}}},sj={name:"TrendingDownIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-trending-down"},Object.assign({},i)),[h("polyline",{points:"23 18 13.5 8.5 8.5 13.5 1 6"}),h("polyline",{points:"17 18 23 18 23 12"})])}}},oj={name:"TrendingUpIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-trending-up"},Object.assign({},i)),[h("polyline",{points:"23 6 13.5 15.5 8.5 10.5 1 18"}),h("polyline",{points:"17 6 23 6 23 12"})])}}},aj={name:"TriangleIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-triangle"},Object.assign({},i)),[h("path",{d:"M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z"})])}}},lj={name:"TruckIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-truck"},Object.assign({},i)),[h("rect",{x:"1",y:"3",width:"15",height:"13"}),h("polygon",{points:"16 8 20 8 23 11 23 16 16 16 16 8"}),h("circle",{cx:"5.5",cy:"18.5",r:"2.5"}),h("circle",{cx:"18.5",cy:"18.5",r:"2.5"})])}}},uj={name:"TvIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-tv"},Object.assign({},i)),[h("rect",{x:"2",y:"7",width:"20",height:"15",rx:"2",ry:"2"}),h("polyline",{points:"17 2 12 7 7 2"})])}}},cj={name:"TwitchIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-twitch"},Object.assign({},i)),[h("path",{d:"M21 2H3v16h5v4l4-4h5l4-4V2zm-10 9V7m5 4V7"})])}}},hj={name:"TwitterIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-twitter"},Object.assign({},i)),[h("path",{d:"M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z"})])}}},fj={name:"TypeIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-type"},Object.assign({},i)),[h("polyline",{points:"4 7 4 4 20 4 20 7"}),h("line",{x1:"9",y1:"20",x2:"15",y2:"20"}),h("line",{x1:"12",y1:"4",x2:"12",y2:"20"})])}}},dj={name:"UmbrellaIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-umbrella"},Object.assign({},i)),[h("path",{d:"M23 12a11.05 11.05 0 0 0-22 0zm-5 7a3 3 0 0 1-6 0v-7"})])}}},pj={name:"UnderlineIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-underline"},Object.assign({},i)),[h("path",{d:"M6 3v7a6 6 0 0 0 6 6 6 6 0 0 0 6-6V3"}),h("line",{x1:"4",y1:"21",x2:"20",y2:"21"})])}}},gj={name:"UnlockIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-unlock"},Object.assign({},i)),[h("rect",{x:"3",y:"11",width:"18",height:"11",rx:"2",ry:"2"}),h("path",{d:"M7 11V7a5 5 0 0 1 9.9-1"})])}}},mj={name:"UploadCloudIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-upload-cloud"},Object.assign({},i)),[h("polyline",{points:"16 16 12 12 8 16"}),h("line",{x1:"12",y1:"12",x2:"12",y2:"21"}),h("path",{d:"M20.39 18.39A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.3"}),h("polyline",{points:"16 16 12 12 8 16"})])}}},yj={name:"UploadIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-upload"},Object.assign({},i)),[h("path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"}),h("polyline",{points:"17 8 12 3 7 8"}),h("line",{x1:"12",y1:"3",x2:"12",y2:"15"})])}}},vj={name:"UserCheckIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-user-check"},Object.assign({},i)),[h("path",{d:"M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"}),h("circle",{cx:"8.5",cy:"7",r:"4"}),h("polyline",{points:"17 11 19 13 23 9"})])}}},bj={name:"UserMinusIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-user-minus"},Object.assign({},i)),[h("path",{d:"M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"}),h("circle",{cx:"8.5",cy:"7",r:"4"}),h("line",{x1:"23",y1:"11",x2:"17",y2:"11"})])}}},wj={name:"UserPlusIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-user-plus"},Object.assign({},i)),[h("path",{d:"M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"}),h("circle",{cx:"8.5",cy:"7",r:"4"}),h("line",{x1:"20",y1:"8",x2:"20",y2:"14"}),h("line",{x1:"23",y1:"11",x2:"17",y2:"11"})])}}},xj={name:"UserXIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-user-x"},Object.assign({},i)),[h("path",{d:"M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"}),h("circle",{cx:"8.5",cy:"7",r:"4"}),h("line",{x1:"18",y1:"8",x2:"23",y2:"13"}),h("line",{x1:"23",y1:"8",x2:"18",y2:"13"})])}}},_j={name:"UserIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-user"},Object.assign({},i)),[h("path",{d:"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"}),h("circle",{cx:"12",cy:"7",r:"4"})])}}},Oj={name:"UsersIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-users"},Object.assign({},i)),[h("path",{d:"M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"}),h("circle",{cx:"9",cy:"7",r:"4"}),h("path",{d:"M23 21v-2a4 4 0 0 0-3-3.87"}),h("path",{d:"M16 3.13a4 4 0 0 1 0 7.75"})])}}},Sj={name:"VideoOffIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-video-off"},Object.assign({},i)),[h("path",{d:"M16 16v1a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h2m5.66 0H14a2 2 0 0 1 2 2v3.34l1 1L23 7v10"}),h("line",{x1:"1",y1:"1",x2:"23",y2:"23"})])}}},kj={name:"VideoIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-video"},Object.assign({},i)),[h("polygon",{points:"23 7 16 12 23 17 23 7"}),h("rect",{x:"1",y:"5",width:"15",height:"14",rx:"2",ry:"2"})])}}},Tj={name:"VoicemailIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-voicemail"},Object.assign({},i)),[h("circle",{cx:"5.5",cy:"11.5",r:"4.5"}),h("circle",{cx:"18.5",cy:"11.5",r:"4.5"}),h("line",{x1:"5.5",y1:"16",x2:"18.5",y2:"16"})])}}},Cj={name:"Volume1Icon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-volume-1"},Object.assign({},i)),[h("polygon",{points:"11 5 6 9 2 9 2 15 6 15 11 19 11 5"}),h("path",{d:"M15.54 8.46a5 5 0 0 1 0 7.07"})])}}},Mj={name:"Volume2Icon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-volume-2"},Object.assign({},i)),[h("polygon",{points:"11 5 6 9 2 9 2 15 6 15 11 19 11 5"}),h("path",{d:"M19.07 4.93a10 10 0 0 1 0 14.14M15.54 8.46a5 5 0 0 1 0 7.07"})])}}},zj={name:"VolumeXIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-volume-x"},Object.assign({},i)),[h("polygon",{points:"11 5 6 9 2 9 2 15 6 15 11 19 11 5"}),h("line",{x1:"23",y1:"9",x2:"17",y2:"15"}),h("line",{x1:"17",y1:"9",x2:"23",y2:"15"})])}}},Nj={name:"VolumeIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-volume"},Object.assign({},i)),[h("polygon",{points:"11 5 6 9 2 9 2 15 6 15 11 19 11 5"})])}}},Ej={name:"WatchIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-watch"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"7"}),h("polyline",{points:"12 9 12 12 13.5 13.5"}),h("path",{d:"M16.51 17.35l-.35 3.83a2 2 0 0 1-2 1.82H9.83a2 2 0 0 1-2-1.82l-.35-3.83m.01-10.7l.35-3.83A2 2 0 0 1 9.83 1h4.35a2 2 0 0 1 2 1.82l.35 3.83"})])}}},Aj={name:"WifiOffIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-wifi-off"},Object.assign({},i)),[h("line",{x1:"1",y1:"1",x2:"23",y2:"23"}),h("path",{d:"M16.72 11.06A10.94 10.94 0 0 1 19 12.55"}),h("path",{d:"M5 12.55a10.94 10.94 0 0 1 5.17-2.39"}),h("path",{d:"M10.71 5.05A16 16 0 0 1 22.58 9"}),h("path",{d:"M1.42 9a15.91 15.91 0 0 1 4.7-2.88"}),h("path",{d:"M8.53 16.11a6 6 0 0 1 6.95 0"}),h("line",{x1:"12",y1:"20",x2:"12.01",y2:"20"})])}}},Ij={name:"WifiIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-wifi"},Object.assign({},i)),[h("path",{d:"M5 12.55a11 11 0 0 1 14.08 0"}),h("path",{d:"M1.42 9a16 16 0 0 1 21.16 0"}),h("path",{d:"M8.53 16.11a6 6 0 0 1 6.95 0"}),h("line",{x1:"12",y1:"20",x2:"12.01",y2:"20"})])}}},Pj={name:"WindIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-wind"},Object.assign({},i)),[h("path",{d:"M9.59 4.59A2 2 0 1 1 11 8H2m10.59 11.41A2 2 0 1 0 14 16H2m15.73-8.27A2.5 2.5 0 1 1 19.5 12H2"})])}}},jj={name:"XCircleIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-x-circle"},Object.assign({},i)),[h("circle",{cx:"12",cy:"12",r:"10"}),h("line",{x1:"15",y1:"9",x2:"9",y2:"15"}),h("line",{x1:"9",y1:"9",x2:"15",y2:"15"})])}}},Dj={name:"XOctagonIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-x-octagon"},Object.assign({},i)),[h("polygon",{points:"7.86 2 16.14 2 22 7.86 22 16.14 16.14 22 7.86 22 2 16.14 2 7.86 7.86 2"}),h("line",{x1:"15",y1:"9",x2:"9",y2:"15"}),h("line",{x1:"9",y1:"9",x2:"15",y2:"15"})])}}},$j={name:"XSquareIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-x-square"},Object.assign({},i)),[h("rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}),h("line",{x1:"9",y1:"9",x2:"15",y2:"15"}),h("line",{x1:"15",y1:"9",x2:"9",y2:"15"})])}}},Lj={name:"XIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-x"},Object.assign({},i)),[h("line",{x1:"18",y1:"6",x2:"6",y2:"18"}),h("line",{x1:"6",y1:"6",x2:"18",y2:"18"})])}}},Rj={name:"YoutubeIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-youtube"},Object.assign({},i)),[h("path",{d:"M22.54 6.42a2.78 2.78 0 0 0-1.94-2C18.88 4 12 4 12 4s-6.88 0-8.6.46a2.78 2.78 0 0 0-1.94 2A29 29 0 0 0 1 11.75a29 29 0 0 0 .46 5.33A2.78 2.78 0 0 0 3.4 19c1.72.46 8.6.46 8.6.46s6.88 0 8.6-.46a2.78 2.78 0 0 0 1.94-2 29 29 0 0 0 .46-5.25 29 29 0 0 0-.46-5.33z"}),h("polygon",{points:"9.75 15.02 15.5 11.75 9.75 8.48 9.75 15.02"})])}}},Bj={name:"ZapOffIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-zap-off"},Object.assign({},i)),[h("polyline",{points:"12.41 6.75 13 2 10.57 4.92"}),h("polyline",{points:"18.57 12.91 21 10 15.66 10"}),h("polyline",{points:"8 8 3 14 12 14 11 22 16 16"}),h("line",{x1:"1",y1:"1",x2:"23",y2:"23"})])}}},Xj={name:"ZapIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-zap"},Object.assign({},i)),[h("polygon",{points:"13 2 3 14 12 14 11 22 21 10 12 10 13 2"})])}}},Fj={name:"ZoomInIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-zoom-in"},Object.assign({},i)),[h("circle",{cx:"11",cy:"11",r:"8"}),h("line",{x1:"21",y1:"21",x2:"16.65",y2:"16.65"}),h("line",{x1:"11",y1:"8",x2:"11",y2:"14"}),h("line",{x1:"8",y1:"11",x2:"14",y2:"11"})])}}},Vj={name:"ZoomOutIcon",props:{size:{type:String,default:"16",validator:function(e){return!isNaN(e)||e.length>=2&&!isNaN(e.slice(0,e.length-1))&&e.slice(-1)==="x"}}},setup:function(t,n){var r=t.size.slice(-1)==="x"?t.size.slice(0,t.size.length-1)+"em":parseInt(t.size)+"px",i=Object.assign({},n.attrs);return i.width=i.width||r,i.height=i.height||r,function(){return h("svg",b({xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"feather feather-zoom-out"},Object.assign({},i)),[h("circle",{cx:"11",cy:"11",r:"8"}),h("line",{x1:"21",y1:"21",x2:"16.65",y2:"16.65"}),h("line",{x1:"8",y1:"11",x2:"14",y2:"11"})])}}};const Hj=Object.freeze(Object.defineProperty({__proto__:null,ActivityIcon:MN,AirplayIcon:zN,AlertCircleIcon:NN,AlertOctagonIcon:EN,AlertTriangleIcon:AN,AlignCenterIcon:IN,AlignJustifyIcon:PN,AlignLeftIcon:jN,AlignRightIcon:DN,AnchorIcon:$N,ApertureIcon:LN,ArchiveIcon:RN,ArrowDownCircleIcon:BN,ArrowDownIcon:VN,ArrowDownLeftIcon:XN,ArrowDownRightIcon:FN,ArrowLeftCircleIcon:HN,ArrowLeftIcon:WN,ArrowRightCircleIcon:UN,ArrowRightIcon:YN,ArrowUpCircleIcon:GN,ArrowUpIcon:KN,ArrowUpLeftIcon:qN,ArrowUpRightIcon:ZN,AtSignIcon:JN,AwardIcon:QN,BarChart2Icon:eE,BarChartIcon:tE,BatteryChargingIcon:nE,BatteryIcon:rE,BellIcon:sE,BellOffIcon:iE,BluetoothIcon:oE,BoldIcon:aE,BookIcon:uE,BookOpenIcon:lE,BookmarkIcon:cE,BoxIcon:hE,BriefcaseIcon:fE,CalendarIcon:dE,CameraIcon:gE,CameraOffIcon:pE,CastIcon:mE,CheckCircleIcon:yE,CheckIcon:bE,CheckSquareIcon:vE,ChevronDownIcon:wE,ChevronLeftIcon:xE,ChevronRightIcon:_E,ChevronUpIcon:OE,ChevronsDownIcon:SE,ChevronsLeftIcon:kE,ChevronsRightIcon:TE,ChevronsUpIcon:CE,ChromeIcon:ME,CircleIcon:zE,ClipboardIcon:NE,ClockIcon:EE,CloudDrizzleIcon:AE,CloudIcon:$E,CloudLightningIcon:IE,CloudOffIcon:PE,CloudRainIcon:jE,CloudSnowIcon:DE,CodeIcon:LE,CodepenIcon:RE,CodesandboxIcon:BE,CoffeeIcon:XE,ColumnsIcon:FE,CommandIcon:VE,CompassIcon:HE,CopyIcon:WE,CornerDownLeftIcon:UE,CornerDownRightIcon:YE,CornerLeftDownIcon:GE,CornerLeftUpIcon:qE,CornerRightDownIcon:ZE,CornerRightUpIcon:KE,CornerUpLeftIcon:JE,CornerUpRightIcon:QE,CpuIcon:eA,CreditCardIcon:tA,CropIcon:nA,CrosshairIcon:rA,DatabaseIcon:iA,DeleteIcon:sA,DiscIcon:oA,DivideCircleIcon:aA,DivideIcon:uA,DivideSquareIcon:lA,DollarSignIcon:cA,DownloadCloudIcon:hA,DownloadIcon:fA,DribbbleIcon:dA,DropletIcon:pA,Edit2Icon:gA,Edit3Icon:mA,EditIcon:yA,ExternalLinkIcon:vA,EyeIcon:wA,EyeOffIcon:bA,FacebookIcon:xA,FastForwardIcon:_A,FeatherIcon:OA,FigmaIcon:SA,FileIcon:MA,FileMinusIcon:kA,FilePlusIcon:TA,FileTextIcon:CA,FilmIcon:zA,FilterIcon:NA,FlagIcon:EA,FolderIcon:PA,FolderMinusIcon:AA,FolderPlusIcon:IA,FramerIcon:jA,FrownIcon:DA,GiftIcon:$A,GitBranchIcon:LA,GitCommitIcon:RA,GitMergeIcon:BA,GitPullRequestIcon:XA,GithubIcon:FA,GitlabIcon:VA,GlobeIcon:HA,GridIcon:WA,HardDriveIcon:UA,HashIcon:YA,HeadphonesIcon:GA,HeartIcon:qA,HelpCircleIcon:ZA,HexagonIcon:KA,HomeIcon:JA,ImageIcon:QA,InboxIcon:eI,InfoIcon:tI,InstagramIcon:nI,ItalicIcon:rI,KeyIcon:iI,LayersIcon:sI,LayoutIcon:oI,LifeBuoyIcon:aI,Link2Icon:lI,LinkIcon:uI,LinkedinIcon:cI,ListIcon:hI,LoaderIcon:fI,LockIcon:dI,LogInIcon:pI,LogOutIcon:gI,MailIcon:mI,MapIcon:vI,MapPinIcon:yI,Maximize2Icon:bI,MaximizeIcon:wI,MehIcon:xI,MenuIcon:_I,MessageCircleIcon:OI,MessageSquareIcon:SI,MicIcon:TI,MicOffIcon:kI,Minimize2Icon:CI,MinimizeIcon:MI,MinusCircleIcon:zI,MinusIcon:EI,MinusSquareIcon:NI,MonitorIcon:AI,MoonIcon:II,MoreHorizontalIcon:PI,MoreVerticalIcon:jI,MousePointerIcon:DI,MoveIcon:$I,MusicIcon:LI,Navigation2Icon:RI,NavigationIcon:BI,OctagonIcon:XI,PackageIcon:FI,PaperclipIcon:VI,PauseCircleIcon:HI,PauseIcon:WI,PenToolIcon:UI,PercentIcon:YI,PhoneCallIcon:GI,PhoneForwardedIcon:qI,PhoneIcon:eP,PhoneIncomingIcon:ZI,PhoneMissedIcon:KI,PhoneOffIcon:JI,PhoneOutgoingIcon:QI,PieChartIcon:tP,PlayCircleIcon:nP,PlayIcon:rP,PlusCircleIcon:iP,PlusIcon:oP,PlusSquareIcon:sP,PocketIcon:aP,PowerIcon:lP,PrinterIcon:uP,RadioIcon:cP,RefreshCcwIcon:hP,RefreshCwIcon:fP,RepeatIcon:dP,RewindIcon:pP,RotateCcwIcon:gP,RotateCwIcon:mP,RssIcon:yP,SaveIcon:vP,ScissorsIcon:bP,SearchIcon:wP,SendIcon:xP,ServerIcon:_P,SettingsIcon:OP,Share2Icon:SP,ShareIcon:kP,ShieldIcon:CP,ShieldOffIcon:TP,ShoppingBagIcon:MP,ShoppingCartIcon:zP,ShuffleIcon:NP,SidebarIcon:EP,SkipBackIcon:AP,SkipForwardIcon:IP,SlackIcon:PP,SlashIcon:jP,SlidersIcon:DP,SmartphoneIcon:$P,SmileIcon:LP,SpeakerIcon:RP,SquareIcon:BP,StarIcon:XP,StopCircleIcon:FP,SunIcon:VP,SunriseIcon:HP,SunsetIcon:WP,TabletIcon:UP,TagIcon:YP,TargetIcon:GP,TerminalIcon:qP,ThermometerIcon:ZP,ThumbsDownIcon:KP,ThumbsUpIcon:JP,ToggleLeftIcon:QP,ToggleRightIcon:ej,ToolIcon:tj,Trash2Icon:nj,TrashIcon:rj,TrelloIcon:ij,TrendingDownIcon:sj,TrendingUpIcon:oj,TriangleIcon:aj,TruckIcon:lj,TvIcon:uj,TwitchIcon:cj,TwitterIcon:hj,TypeIcon:fj,UmbrellaIcon:dj,UnderlineIcon:pj,UnlockIcon:gj,UploadCloudIcon:mj,UploadIcon:yj,UserCheckIcon:vj,UserIcon:_j,UserMinusIcon:bj,UserPlusIcon:wj,UserXIcon:xj,UsersIcon:Oj,VideoIcon:kj,VideoOffIcon:Sj,VoicemailIcon:Tj,Volume1Icon:Cj,Volume2Icon:Mj,VolumeIcon:Nj,VolumeXIcon:zj,WatchIcon:Ej,WifiIcon:Ij,WifiOffIcon:Aj,WindIcon:Pj,XCircleIcon:jj,XIcon:Lj,XOctagonIcon:Dj,XSquareIcon:$j,YoutubeIcon:Rj,ZapIcon:Xj,ZapOffIcon:Bj,ZoomInIcon:Fj,ZoomOutIcon:Vj},Symbol.toStringTag,{value:"Module"}));/** * vee-validate v4.6.6 * (c) 2022 Abdelrahman Awad * @license MIT diff --git a/ems-engine/src/main/webapp/assets/inputicon.esm-E72BkL95.js b/ems-engine/src/main/webapp/assets/inputicon.esm-C6x9HzWS.js similarity index 99% rename from ems-engine/src/main/webapp/assets/inputicon.esm-E72BkL95.js rename to ems-engine/src/main/webapp/assets/inputicon.esm-C6x9HzWS.js index 024e7a0503..a25cdf69d1 100644 --- a/ems-engine/src/main/webapp/assets/inputicon.esm-E72BkL95.js +++ b/ems-engine/src/main/webapp/assets/inputicon.esm-C6x9HzWS.js @@ -1,4 +1,4 @@ -import{a6 as z,f as h,o as u,a5 as c,l as C,a7 as X,ay as kn,az as _e,aa as F,ac as y,r as P,p as I,L as w,F as T,j,i as G,aA as Te,aB as Bt,a9 as Ft,a8 as oe,aC as b,aD as Ne,ad as At,ae as se,ab as _,af as ee,k as ue,m as K,c as v,v as k,n as E,h as L,Z as zt,aE as me,C as W,E as Vt,H as Mn,aF as Fe,ag as he,aG as Dn,q as lt,ao as Ve,aH as de,x as Kt,ah as He,Y as Ge}from"./index-BNu-F4v_.js";var jt={name:"ArrowDownIcon",extends:z},xn=C("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M6.99994 14C6.91097 14.0004 6.82281 13.983 6.74064 13.9489C6.65843 13.9148 6.58387 13.8646 6.52133 13.8013L1.10198 8.38193C0.982318 8.25351 0.917175 8.08367 0.920272 7.90817C0.923368 7.73267 0.994462 7.56523 1.11858 7.44111C1.24269 7.317 1.41014 7.2459 1.58563 7.2428C1.76113 7.23971 1.93098 7.30485 2.0594 7.42451L6.32263 11.6877V0.677419C6.32263 0.497756 6.394 0.325452 6.52104 0.198411C6.64808 0.0713706 6.82039 0 7.00005 0C7.17971 0 7.35202 0.0713706 7.47906 0.198411C7.6061 0.325452 7.67747 0.497756 7.67747 0.677419V11.6877L11.9407 7.42451C12.0691 7.30485 12.2389 7.23971 12.4144 7.2428C12.5899 7.2459 12.7574 7.317 12.8815 7.44111C13.0056 7.56523 13.0767 7.73267 13.0798 7.90817C13.0829 8.08367 13.0178 8.25351 12.8981 8.38193L7.47875 13.8013C7.41621 13.8646 7.34164 13.9148 7.25944 13.9489C7.17727 13.983 7.08912 14.0004 7.00015 14C7.00012 14 7.00009 14 7.00005 14C7.00001 14 6.99998 14 6.99994 14Z",fill:"currentColor"},null,-1),En=[xn];function Tn(t,e,n,r,o,i){return u(),h("svg",c({width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},t.pti()),En,16)}jt.render=Tn;var Ht={name:"ArrowUpIcon",extends:z},Ln=C("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M6.51551 13.799C6.64205 13.9255 6.813 13.9977 6.99193 14C7.17087 13.9977 7.34182 13.9255 7.46835 13.799C7.59489 13.6725 7.66701 13.5015 7.66935 13.3226V2.31233L11.9326 6.57554C11.9951 6.63887 12.0697 6.68907 12.1519 6.72319C12.2341 6.75731 12.3223 6.77467 12.4113 6.77425C12.5003 6.77467 12.5885 6.75731 12.6707 6.72319C12.7529 6.68907 12.8274 6.63887 12.89 6.57554C13.0168 6.44853 13.0881 6.27635 13.0881 6.09683C13.0881 5.91732 13.0168 5.74514 12.89 5.61812L7.48846 0.216594C7.48274 0.210436 7.4769 0.204374 7.47094 0.198411C7.3439 0.0713707 7.1716 0 6.99193 0C6.81227 0 6.63997 0.0713707 6.51293 0.198411C6.50704 0.204296 6.50128 0.210278 6.49563 0.216354L1.09386 5.61812C0.974201 5.74654 0.909057 5.91639 0.912154 6.09189C0.91525 6.26738 0.986345 6.43483 1.11046 6.55894C1.23457 6.68306 1.40202 6.75415 1.57752 6.75725C1.75302 6.76035 1.92286 6.6952 2.05128 6.57554L6.31451 2.31231V13.3226C6.31685 13.5015 6.38898 13.6725 6.51551 13.799Z",fill:"currentColor"},null,-1),Bn=[Ln];function Fn(t,e,n,r,o,i){return u(),h("svg",c({width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},t.pti()),Bn,16)}Ht.render=Fn;function ge(t){"@babel/helpers - typeof";return ge=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},ge(t)}function An(t,e,n){return e=zn(e),e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function zn(t){var e=Vn(t,"string");return ge(e)=="symbol"?e:String(e)}function Vn(t,e){if(ge(t)!="object"||!t)return t;var n=t[Symbol.toPrimitive];if(n!==void 0){var r=n.call(t,e);if(ge(r)!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}var Kn={paginator:function(e){var n=e.instance,r=e.key;return["p-paginator p-component",An({"p-paginator-default":!n.hasBreakpoints()},"p-paginator-".concat(r),n.hasBreakpoints())]},start:"p-paginator-left-content",end:"p-paginator-right-content",firstPageButton:function(e){var n=e.instance;return["p-paginator-first p-paginator-element p-link",{"p-disabled":n.$attrs.disabled}]},firstPageIcon:"p-paginator-icon",previousPageButton:function(e){var n=e.instance;return["p-paginator-prev p-paginator-element p-link",{"p-disabled":n.$attrs.disabled}]},previousPageIcon:"p-paginator-icon",nextPageButton:function(e){var n=e.instance;return["p-paginator-next p-paginator-element p-link",{"p-disabled":n.$attrs.disabled}]},nextPageIcon:"p-paginator-icon",lastPageButton:function(e){var n=e.instance;return["p-paginator-last p-paginator-element p-link",{"p-disabled":n.$attrs.disabled}]},lastPageIcon:"p-paginator-icon",pages:"p-paginator-pages",pageButton:function(e){var n=e.props,r=e.pageLink;return["p-paginator-page p-paginator-element p-link",{"p-highlight":r-1===n.page}]},current:"p-paginator-current",rowPerPageDropdown:"p-paginator-rpp-options",jumpToPageDropdown:"p-paginator-page-options",jumpToPageInput:"p-paginator-page-input"},jn=X.extend({name:"paginator",classes:Kn}),Gt={name:"AngleDoubleLeftIcon",extends:z},Hn=C("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M5.71602 11.164C5.80782 11.2021 5.9063 11.2215 6.00569 11.221C6.20216 11.2301 6.39427 11.1612 6.54025 11.0294C6.68191 10.8875 6.76148 10.6953 6.76148 10.4948C6.76148 10.2943 6.68191 10.1021 6.54025 9.96024L3.51441 6.9344L6.54025 3.90855C6.624 3.76126 6.65587 3.59011 6.63076 3.42254C6.60564 3.25498 6.525 3.10069 6.40175 2.98442C6.2785 2.86815 6.11978 2.79662 5.95104 2.7813C5.78229 2.76598 5.61329 2.80776 5.47112 2.89994L1.97123 6.39983C1.82957 6.54167 1.75 6.73393 1.75 6.9344C1.75 7.13486 1.82957 7.32712 1.97123 7.46896L5.47112 10.9991C5.54096 11.0698 5.62422 11.1259 5.71602 11.164ZM11.0488 10.9689C11.1775 11.1156 11.3585 11.2061 11.5531 11.221C11.7477 11.2061 11.9288 11.1156 12.0574 10.9689C12.1815 10.8302 12.25 10.6506 12.25 10.4645C12.25 10.2785 12.1815 10.0989 12.0574 9.96024L9.03158 6.93439L12.0574 3.90855C12.1248 3.76739 12.1468 3.60881 12.1204 3.45463C12.0939 3.30045 12.0203 3.15826 11.9097 3.04765C11.7991 2.93703 11.6569 2.86343 11.5027 2.83698C11.3486 2.81053 11.19 2.83252 11.0488 2.89994L7.51865 6.36957C7.37699 6.51141 7.29742 6.70367 7.29742 6.90414C7.29742 7.1046 7.37699 7.29686 7.51865 7.4387L11.0488 10.9689Z",fill:"currentColor"},null,-1),Gn=[Hn];function Nn(t,e,n,r,o,i){return u(),h("svg",c({width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},t.pti()),Gn,16)}Gt.render=Nn;var Nt={name:"BlankIcon",extends:z},$n=C("rect",{width:"1",height:"1",fill:"currentColor","fill-opacity":"0"},null,-1),Un=[$n];function Wn(t,e,n,r,o,i){return u(),h("svg",c({width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},t.pti()),Un,16)}Nt.render=Wn;var Ke={name:"ChevronDownIcon",extends:z},Zn=C("path",{d:"M7.01744 10.398C6.91269 10.3985 6.8089 10.378 6.71215 10.3379C6.61541 10.2977 6.52766 10.2386 6.45405 10.1641L1.13907 4.84913C1.03306 4.69404 0.985221 4.5065 1.00399 4.31958C1.02276 4.13266 1.10693 3.95838 1.24166 3.82747C1.37639 3.69655 1.55301 3.61742 1.74039 3.60402C1.92777 3.59062 2.11386 3.64382 2.26584 3.75424L7.01744 8.47394L11.769 3.75424C11.9189 3.65709 12.097 3.61306 12.2748 3.62921C12.4527 3.64535 12.6199 3.72073 12.7498 3.84328C12.8797 3.96582 12.9647 4.12842 12.9912 4.30502C13.0177 4.48162 12.9841 4.662 12.8958 4.81724L7.58083 10.1322C7.50996 10.2125 7.42344 10.2775 7.32656 10.3232C7.22968 10.3689 7.12449 10.3944 7.01744 10.398Z",fill:"currentColor"},null,-1),qn=[Zn];function Jn(t,e,n,r,o,i){return u(),h("svg",c({width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},t.pti()),qn,16)}Ke.render=Jn;var $t={name:"SearchIcon",extends:z},Xn=C("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M2.67602 11.0265C3.6661 11.688 4.83011 12.0411 6.02086 12.0411C6.81149 12.0411 7.59438 11.8854 8.32483 11.5828C8.87005 11.357 9.37808 11.0526 9.83317 10.6803L12.9769 13.8241C13.0323 13.8801 13.0983 13.9245 13.171 13.9548C13.2438 13.985 13.3219 14.0003 13.4007 14C13.4795 14.0003 13.5575 13.985 13.6303 13.9548C13.7031 13.9245 13.7691 13.8801 13.8244 13.8241C13.9367 13.7116 13.9998 13.5592 13.9998 13.4003C13.9998 13.2414 13.9367 13.089 13.8244 12.9765L10.6807 9.8328C11.053 9.37773 11.3573 8.86972 11.5831 8.32452C11.8857 7.59408 12.0414 6.81119 12.0414 6.02056C12.0414 4.8298 11.6883 3.66579 11.0268 2.67572C10.3652 1.68564 9.42494 0.913972 8.32483 0.45829C7.22472 0.00260857 6.01418 -0.116618 4.84631 0.115686C3.67844 0.34799 2.60568 0.921393 1.76369 1.76338C0.921698 2.60537 0.348296 3.67813 0.115991 4.84601C-0.116313 6.01388 0.00291375 7.22441 0.458595 8.32452C0.914277 9.42464 1.68595 10.3649 2.67602 11.0265ZM3.35565 2.0158C4.14456 1.48867 5.07206 1.20731 6.02086 1.20731C7.29317 1.20731 8.51338 1.71274 9.41304 2.6124C10.3127 3.51206 10.8181 4.73226 10.8181 6.00457C10.8181 6.95337 10.5368 7.88088 10.0096 8.66978C9.48251 9.45868 8.73328 10.0736 7.85669 10.4367C6.98011 10.7997 6.01554 10.8947 5.08496 10.7096C4.15439 10.5245 3.2996 10.0676 2.62869 9.39674C1.95778 8.72583 1.50089 7.87104 1.31579 6.94046C1.13068 6.00989 1.22568 5.04532 1.58878 4.16874C1.95187 3.29215 2.56675 2.54292 3.35565 2.0158Z",fill:"currentColor"},null,-1),Yn=[Xn];function Qn(t,e,n,r,o,i){return u(),h("svg",c({width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},t.pti()),Yn,16)}$t.render=Qn;var Q=kn(),_n=` +import{a6 as z,f as h,o as u,a5 as c,l as C,a7 as X,ay as kn,az as _e,aa as F,ac as y,r as P,p as I,L as w,F as T,j,i as G,aA as Te,aB as Bt,a9 as Ft,a8 as oe,aC as b,aD as Ne,ad as At,ae as se,ab as _,af as ee,k as ue,m as K,c as v,v as k,n as E,h as L,Z as zt,aE as me,C as W,E as Vt,H as Mn,aF as Fe,ag as he,aG as Dn,q as lt,ao as Ve,aH as de,x as Kt,ah as He,Y as Ge}from"./index-CjLz75tu.js";var jt={name:"ArrowDownIcon",extends:z},xn=C("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M6.99994 14C6.91097 14.0004 6.82281 13.983 6.74064 13.9489C6.65843 13.9148 6.58387 13.8646 6.52133 13.8013L1.10198 8.38193C0.982318 8.25351 0.917175 8.08367 0.920272 7.90817C0.923368 7.73267 0.994462 7.56523 1.11858 7.44111C1.24269 7.317 1.41014 7.2459 1.58563 7.2428C1.76113 7.23971 1.93098 7.30485 2.0594 7.42451L6.32263 11.6877V0.677419C6.32263 0.497756 6.394 0.325452 6.52104 0.198411C6.64808 0.0713706 6.82039 0 7.00005 0C7.17971 0 7.35202 0.0713706 7.47906 0.198411C7.6061 0.325452 7.67747 0.497756 7.67747 0.677419V11.6877L11.9407 7.42451C12.0691 7.30485 12.2389 7.23971 12.4144 7.2428C12.5899 7.2459 12.7574 7.317 12.8815 7.44111C13.0056 7.56523 13.0767 7.73267 13.0798 7.90817C13.0829 8.08367 13.0178 8.25351 12.8981 8.38193L7.47875 13.8013C7.41621 13.8646 7.34164 13.9148 7.25944 13.9489C7.17727 13.983 7.08912 14.0004 7.00015 14C7.00012 14 7.00009 14 7.00005 14C7.00001 14 6.99998 14 6.99994 14Z",fill:"currentColor"},null,-1),En=[xn];function Tn(t,e,n,r,o,i){return u(),h("svg",c({width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},t.pti()),En,16)}jt.render=Tn;var Ht={name:"ArrowUpIcon",extends:z},Ln=C("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M6.51551 13.799C6.64205 13.9255 6.813 13.9977 6.99193 14C7.17087 13.9977 7.34182 13.9255 7.46835 13.799C7.59489 13.6725 7.66701 13.5015 7.66935 13.3226V2.31233L11.9326 6.57554C11.9951 6.63887 12.0697 6.68907 12.1519 6.72319C12.2341 6.75731 12.3223 6.77467 12.4113 6.77425C12.5003 6.77467 12.5885 6.75731 12.6707 6.72319C12.7529 6.68907 12.8274 6.63887 12.89 6.57554C13.0168 6.44853 13.0881 6.27635 13.0881 6.09683C13.0881 5.91732 13.0168 5.74514 12.89 5.61812L7.48846 0.216594C7.48274 0.210436 7.4769 0.204374 7.47094 0.198411C7.3439 0.0713707 7.1716 0 6.99193 0C6.81227 0 6.63997 0.0713707 6.51293 0.198411C6.50704 0.204296 6.50128 0.210278 6.49563 0.216354L1.09386 5.61812C0.974201 5.74654 0.909057 5.91639 0.912154 6.09189C0.91525 6.26738 0.986345 6.43483 1.11046 6.55894C1.23457 6.68306 1.40202 6.75415 1.57752 6.75725C1.75302 6.76035 1.92286 6.6952 2.05128 6.57554L6.31451 2.31231V13.3226C6.31685 13.5015 6.38898 13.6725 6.51551 13.799Z",fill:"currentColor"},null,-1),Bn=[Ln];function Fn(t,e,n,r,o,i){return u(),h("svg",c({width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},t.pti()),Bn,16)}Ht.render=Fn;function ge(t){"@babel/helpers - typeof";return ge=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},ge(t)}function An(t,e,n){return e=zn(e),e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function zn(t){var e=Vn(t,"string");return ge(e)=="symbol"?e:String(e)}function Vn(t,e){if(ge(t)!="object"||!t)return t;var n=t[Symbol.toPrimitive];if(n!==void 0){var r=n.call(t,e);if(ge(r)!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}var Kn={paginator:function(e){var n=e.instance,r=e.key;return["p-paginator p-component",An({"p-paginator-default":!n.hasBreakpoints()},"p-paginator-".concat(r),n.hasBreakpoints())]},start:"p-paginator-left-content",end:"p-paginator-right-content",firstPageButton:function(e){var n=e.instance;return["p-paginator-first p-paginator-element p-link",{"p-disabled":n.$attrs.disabled}]},firstPageIcon:"p-paginator-icon",previousPageButton:function(e){var n=e.instance;return["p-paginator-prev p-paginator-element p-link",{"p-disabled":n.$attrs.disabled}]},previousPageIcon:"p-paginator-icon",nextPageButton:function(e){var n=e.instance;return["p-paginator-next p-paginator-element p-link",{"p-disabled":n.$attrs.disabled}]},nextPageIcon:"p-paginator-icon",lastPageButton:function(e){var n=e.instance;return["p-paginator-last p-paginator-element p-link",{"p-disabled":n.$attrs.disabled}]},lastPageIcon:"p-paginator-icon",pages:"p-paginator-pages",pageButton:function(e){var n=e.props,r=e.pageLink;return["p-paginator-page p-paginator-element p-link",{"p-highlight":r-1===n.page}]},current:"p-paginator-current",rowPerPageDropdown:"p-paginator-rpp-options",jumpToPageDropdown:"p-paginator-page-options",jumpToPageInput:"p-paginator-page-input"},jn=X.extend({name:"paginator",classes:Kn}),Gt={name:"AngleDoubleLeftIcon",extends:z},Hn=C("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M5.71602 11.164C5.80782 11.2021 5.9063 11.2215 6.00569 11.221C6.20216 11.2301 6.39427 11.1612 6.54025 11.0294C6.68191 10.8875 6.76148 10.6953 6.76148 10.4948C6.76148 10.2943 6.68191 10.1021 6.54025 9.96024L3.51441 6.9344L6.54025 3.90855C6.624 3.76126 6.65587 3.59011 6.63076 3.42254C6.60564 3.25498 6.525 3.10069 6.40175 2.98442C6.2785 2.86815 6.11978 2.79662 5.95104 2.7813C5.78229 2.76598 5.61329 2.80776 5.47112 2.89994L1.97123 6.39983C1.82957 6.54167 1.75 6.73393 1.75 6.9344C1.75 7.13486 1.82957 7.32712 1.97123 7.46896L5.47112 10.9991C5.54096 11.0698 5.62422 11.1259 5.71602 11.164ZM11.0488 10.9689C11.1775 11.1156 11.3585 11.2061 11.5531 11.221C11.7477 11.2061 11.9288 11.1156 12.0574 10.9689C12.1815 10.8302 12.25 10.6506 12.25 10.4645C12.25 10.2785 12.1815 10.0989 12.0574 9.96024L9.03158 6.93439L12.0574 3.90855C12.1248 3.76739 12.1468 3.60881 12.1204 3.45463C12.0939 3.30045 12.0203 3.15826 11.9097 3.04765C11.7991 2.93703 11.6569 2.86343 11.5027 2.83698C11.3486 2.81053 11.19 2.83252 11.0488 2.89994L7.51865 6.36957C7.37699 6.51141 7.29742 6.70367 7.29742 6.90414C7.29742 7.1046 7.37699 7.29686 7.51865 7.4387L11.0488 10.9689Z",fill:"currentColor"},null,-1),Gn=[Hn];function Nn(t,e,n,r,o,i){return u(),h("svg",c({width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},t.pti()),Gn,16)}Gt.render=Nn;var Nt={name:"BlankIcon",extends:z},$n=C("rect",{width:"1",height:"1",fill:"currentColor","fill-opacity":"0"},null,-1),Un=[$n];function Wn(t,e,n,r,o,i){return u(),h("svg",c({width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},t.pti()),Un,16)}Nt.render=Wn;var Ke={name:"ChevronDownIcon",extends:z},Zn=C("path",{d:"M7.01744 10.398C6.91269 10.3985 6.8089 10.378 6.71215 10.3379C6.61541 10.2977 6.52766 10.2386 6.45405 10.1641L1.13907 4.84913C1.03306 4.69404 0.985221 4.5065 1.00399 4.31958C1.02276 4.13266 1.10693 3.95838 1.24166 3.82747C1.37639 3.69655 1.55301 3.61742 1.74039 3.60402C1.92777 3.59062 2.11386 3.64382 2.26584 3.75424L7.01744 8.47394L11.769 3.75424C11.9189 3.65709 12.097 3.61306 12.2748 3.62921C12.4527 3.64535 12.6199 3.72073 12.7498 3.84328C12.8797 3.96582 12.9647 4.12842 12.9912 4.30502C13.0177 4.48162 12.9841 4.662 12.8958 4.81724L7.58083 10.1322C7.50996 10.2125 7.42344 10.2775 7.32656 10.3232C7.22968 10.3689 7.12449 10.3944 7.01744 10.398Z",fill:"currentColor"},null,-1),qn=[Zn];function Jn(t,e,n,r,o,i){return u(),h("svg",c({width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},t.pti()),qn,16)}Ke.render=Jn;var $t={name:"SearchIcon",extends:z},Xn=C("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M2.67602 11.0265C3.6661 11.688 4.83011 12.0411 6.02086 12.0411C6.81149 12.0411 7.59438 11.8854 8.32483 11.5828C8.87005 11.357 9.37808 11.0526 9.83317 10.6803L12.9769 13.8241C13.0323 13.8801 13.0983 13.9245 13.171 13.9548C13.2438 13.985 13.3219 14.0003 13.4007 14C13.4795 14.0003 13.5575 13.985 13.6303 13.9548C13.7031 13.9245 13.7691 13.8801 13.8244 13.8241C13.9367 13.7116 13.9998 13.5592 13.9998 13.4003C13.9998 13.2414 13.9367 13.089 13.8244 12.9765L10.6807 9.8328C11.053 9.37773 11.3573 8.86972 11.5831 8.32452C11.8857 7.59408 12.0414 6.81119 12.0414 6.02056C12.0414 4.8298 11.6883 3.66579 11.0268 2.67572C10.3652 1.68564 9.42494 0.913972 8.32483 0.45829C7.22472 0.00260857 6.01418 -0.116618 4.84631 0.115686C3.67844 0.34799 2.60568 0.921393 1.76369 1.76338C0.921698 2.60537 0.348296 3.67813 0.115991 4.84601C-0.116313 6.01388 0.00291375 7.22441 0.458595 8.32452C0.914277 9.42464 1.68595 10.3649 2.67602 11.0265ZM3.35565 2.0158C4.14456 1.48867 5.07206 1.20731 6.02086 1.20731C7.29317 1.20731 8.51338 1.71274 9.41304 2.6124C10.3127 3.51206 10.8181 4.73226 10.8181 6.00457C10.8181 6.95337 10.5368 7.88088 10.0096 8.66978C9.48251 9.45868 8.73328 10.0736 7.85669 10.4367C6.98011 10.7997 6.01554 10.8947 5.08496 10.7096C4.15439 10.5245 3.2996 10.0676 2.62869 9.39674C1.95778 8.72583 1.50089 7.87104 1.31579 6.94046C1.13068 6.00989 1.22568 5.04532 1.58878 4.16874C1.95187 3.29215 2.56675 2.54292 3.35565 2.0158Z",fill:"currentColor"},null,-1),Yn=[Xn];function Qn(t,e,n,r,o,i){return u(),h("svg",c({width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},t.pti()),Yn,16)}$t.render=Qn;var Q=kn(),_n=` @layer primevue { .p-virtualscroller { position: relative; diff --git a/ems-engine/src/main/webapp/index.html b/ems-engine/src/main/webapp/index.html index 267ee63555..2b9e2b5da3 100644 --- a/ems-engine/src/main/webapp/index.html +++ b/ems-engine/src/main/webapp/index.html @@ -1,27 +1,28 @@ - - - - - - Servizi Integry - - - - - + + + + + + Servizi Integry + + + + + - - - -
- - + + + +
+ + +